/* Robinhood — Forest Art Website */

:root {
  --abyss: #030a06;
  --deep: #07140e;
  --mid: #0e2418;
  --canopy: #163528;
  --mint: #6ef0a8;
  --mint-soft: #9af5c4;
  --mint-glow: rgba(110, 240, 168, 0.28);
  --silver: #c5d8cc;
  --muted: #7f9a8a;
  --cream: #eef6f0;
  --glass: rgba(5, 16, 10, 0.72);
  --line: rgba(110, 240, 168, 0.16);
  --font-display: "Syne", system-ui, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 74px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--cream);
  background: var(--abyss);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, video, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

.container { width: min(1120px, 92vw); margin-inline: auto; }
.page { position: relative; z-index: 2; }

/* ========== FOREST VIDEO BACKGROUND ========== */

.forest {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: var(--abyss);
}

.forest__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%) scale(1.08);
  object-fit: cover;
  filter: saturate(1.15) contrast(1.05) brightness(0.55);
}

.forest__tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 10, 6, 0.55) 0%, rgba(7, 20, 14, 0.35) 40%, rgba(3, 10, 6, 0.75) 100%),
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(22, 53, 40, 0.35), transparent 70%);
}

.forest__mist {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 30% at 20% 80%, rgba(110, 240, 168, 0.06), transparent 60%),
    radial-gradient(ellipse 40% 25% at 85% 30%, rgba(110, 240, 168, 0.05), transparent 55%);
  animation: mistDrift 18s ease-in-out infinite alternate;
}

.forest__grain {
  position: absolute;
  inset: 0;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.forest__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(0, 0, 0, 0.65) 100%);
}

@keyframes mistDrift {
  from { transform: translateX(-2%) translateY(0); opacity: 0.7; }
  to { transform: translateX(2%) translateY(-1%); opacity: 1; }
}

/* ========== NAV ========== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(1120px, 92vw);
  height: 100%;
  margin-inline: auto;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav__logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 22px var(--mint-glow);
}

.nav__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--mint-soft);
}

.nav__links {
  display: flex;
  gap: 1.6rem;
}

.nav__link {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--silver);
  transition: color 0.2s;
}

.nav__link:hover { color: var(--mint); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--silver);
  transition: 0.2s;
}

.nav__icon svg { width: 16px; height: 16px; }
.nav__icon:hover {
  color: var(--mint);
  border-color: rgba(110, 240, 168, 0.4);
  background: rgba(110, 240, 168, 0.08);
}

.nav__cta {
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--mint);
  color: var(--abyss);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}

.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px var(--mint-glow);
}

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
}

.nav__burger span {
  display: block;
  height: 2px;
  background: var(--mint);
  border-radius: 2px;
  transition: 0.25s;
}

.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== HERO ========== */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 2.5rem) 4vw 4rem;
  text-align: center;
  position: relative;
}

.hero__stage { width: min(720px, 100%); }

.hero__eyebrow {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 1rem;
}

.hero__title {
  margin-bottom: 0.75rem;
}

.hero__title-line {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 10vw, 5.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff 10%, var(--mint-soft) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hero__tagline {
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-style: italic;
  color: var(--silver);
  margin-bottom: 2.25rem;
}

.hero__piece {
  position: relative;
  margin: 0 auto 1.75rem;
  width: min(560px, 100%);
}

.hero__banner {
  width: 100%;
  border-radius: 4px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px var(--line),
    0 0 50px var(--mint-glow);
  animation: floatArt 7s ease-in-out infinite;
}

.hero__caption {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__mark {
  margin: 0 auto 2rem;
}

.hero__mark img {
  width: 88px;
  height: 88px;
  margin-inline: auto;
  border-radius: 50%;
  box-shadow: 0 0 40px var(--mint-glow);
  animation: pulseGlow 4s ease-in-out infinite;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.hero__scroll {
  position: absolute;
  bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

.hero__scroll i {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--mint), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

.hero__scroll:hover { color: var(--mint); }

@keyframes floatArt {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 28px var(--mint-glow); }
  50% { box-shadow: 0 0 48px rgba(110, 240, 168, 0.45); }
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ========== BUTTONS ========== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s, border-color 0.2s;
}

.btn--primary {
  background: var(--mint);
  color: var(--abyss);
  box-shadow: 0 6px 24px rgba(110, 240, 168, 0.25);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px var(--mint-glow);
}

.btn--ghost {
  border: 1px solid var(--line);
  color: var(--cream);
  background: rgba(7, 20, 14, 0.45);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  border-color: rgba(110, 240, 168, 0.45);
  background: rgba(110, 240, 168, 0.1);
  transform: translateY(-2px);
}

/* ========== SECTIONS ========== */

.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: 2.75rem;
}

.section-head__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 0.7rem;
}

.section-head__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.section-head__sub {
  max-width: 480px;
  margin-inline: auto;
  font-size: 1.15rem;
  color: var(--muted);
}

/* ========== ART GALLERY ========== */

.gallery {
  background: linear-gradient(180deg, transparent, rgba(3, 10, 6, 0.55) 20%, rgba(3, 10, 6, 0.55) 80%, transparent);
}

.art-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.25rem;
}

.art-frame {
  background: rgba(7, 20, 14, 0.55);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.35s var(--ease);
}

.art-frame:hover {
  border-color: rgba(110, 240, 168, 0.35);
  transform: translateY(-4px);
}

.art-frame--wide { grid-row: span 1; }

.art-frame--square .art-frame__mat img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}

.art-frame__mat {
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(110, 240, 168, 0.06), transparent 40%),
    rgba(3, 10, 6, 0.4);
}

.art-frame__mat img {
  width: 100%;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.art-frame__meta {
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid var(--line);
}

.art-frame__meta h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.art-frame__meta p {
  font-size: 0.95rem;
  color: var(--muted);
}

.art-frame--quote {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem;
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(110, 240, 168, 0.08), transparent 65%),
    rgba(7, 20, 14, 0.6);
}

.art-frame--quote blockquote p {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-style: italic;
  line-height: 1.55;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 1rem;
  color: var(--cream);
}

.art-frame--quote cite {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint);
}

/* ========== FILM ========== */

.film-wrap {
  width: min(920px, 100%);
  margin-inline: auto;
}

.film-frame {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(3, 10, 6, 0.7);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
}

.film-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ========== BUY ========== */

.steps {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.75rem;
}

.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.35rem 1.5rem;
  background: rgba(7, 20, 14, 0.55);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  transition: border-color 0.2s;
}

.step:hover { border-color: rgba(110, 240, 168, 0.3); }

.step__num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--mint);
  opacity: 0.75;
  line-height: 1;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.step p {
  font-size: 1.05rem;
  color: var(--muted);
}

.ca {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.25rem 1.5rem;
  background: rgba(3, 10, 6, 0.75);
  border: 1px solid rgba(110, 240, 168, 0.28);
  margin-bottom: 1.15rem;
  backdrop-filter: blur(10px);
}

.ca__label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 0.35rem;
}

.ca__addr {
  font-family: var(--font-display);
  font-size: clamp(0.75rem, 2.4vw, 0.9rem);
  color: var(--cream);
  word-break: break-all;
}

.ca__copy {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(110, 240, 168, 0.12);
  border: 1px solid rgba(110, 240, 168, 0.3);
  color: var(--mint-soft);
  transition: background 0.2s;
}

.ca__copy:hover { background: rgba(110, 240, 168, 0.22); }
.ca__copy.is-copied { background: rgba(110, 240, 168, 0.32); }

.market-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.9rem;
}

.market-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  background: rgba(7, 20, 14, 0.55);
  backdrop-filter: blur(10px);
  transition: 0.2s var(--ease);
}

.market-link:hover {
  transform: translateY(-2px);
  border-color: rgba(110, 240, 168, 0.4);
}

.market-link--primary {
  background: rgba(110, 240, 168, 0.14);
  border-color: rgba(110, 240, 168, 0.4);
  color: var(--mint-soft);
}

/* ========== CHART ========== */

.chart-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(3, 10, 6, 0.7);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.chart-frame iframe {
  width: 100%;
  height: 520px;
  border: 0;
}

.chart-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

/* ========== SOCIAL ========== */

.social-card {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding: 2.25rem;
  background: rgba(7, 20, 14, 0.6);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.social-card__logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 30px var(--mint-glow);
}

.social-card h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.social-card p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.social-card strong { color: var(--mint-soft); }

/* ========== FOOTER ========== */

.footer {
  padding: 2.75rem 0;
  border-top: 1px solid var(--line);
  background: rgba(3, 10, 6, 0.7);
  backdrop-filter: blur(12px);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.45rem;
}

.footer__inner img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-bottom: 0.3rem;
}

.footer__brand {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--mint-soft);
}

.footer__note {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 420px;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.75rem;
}

.footer__links a {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--mint); }

/* ========== REVEAL ========== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== MOBILE ========== */

@media (max-width: 860px) {
  .art-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__links,
  .nav__actions { display: none; }

  .nav__burger { display: flex; }

  .nav__links.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    padding: 1.25rem 1.5rem;
    gap: 0;
    background: var(--glass);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
  }

  .nav__links.is-open .nav__link {
    display: block;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav__actions.is-open {
    display: flex;
    position: fixed;
    top: calc(var(--nav-h) + 220px);
    left: 0;
    right: 0;
    padding: 0 1.5rem 1.5rem;
    background: var(--glass);
    backdrop-filter: blur(18px);
  }

  .social-card {
    flex-direction: column;
    text-align: center;
  }

  .chart-frame iframe { height: 400px; }
  .hero__scroll { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .forest__mist,
  .hero__banner,
  .hero__mark img,
  .hero__scroll i { animation: none; }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
