@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap");

:root {
  --lime: #b8ff5a;
  --lime-hot: #c8ff3a;
  --lime-deep: #8fe01e;
  --yellow: #f3ffc2;
  --cream: #f7ffd8;
  --ink: #0c1204;
  --ink-soft: #243014;
  --olive: #3d4d22;
  --dark: #0b0d0a;
  --card: #141814;
  --card-2: #1a1f16;
  --line: rgba(12, 18, 4, 0.12);
  --line-light: rgba(255, 255, 255, 0.12);
  --glass: rgba(255, 255, 255, 0.28);
  --muted-on-lime: rgba(12, 18, 4, 0.68);
  --muted-on-dark: rgba(247, 255, 216, 0.68);
  --soft-on-dark: rgba(247, 255, 216, 0.42);
  --radius: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --page-grad: linear-gradient(180deg, #f6ffd4 0%, #d8ff72 38%, #b4f53a 68%, #96e018 100%);
}

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

html { scroll-behavior: smooth; background: #8edb14; }

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--page-grad);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.28;
  background: url("../images/glow-bg.jpg") center / cover no-repeat;
  mix-blend-mode: overlay;
}

body::after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28vh;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 10px,
      rgba(12, 18, 4, 0.08) 10px 12px
    ),
    linear-gradient(180deg, transparent, rgba(12, 18, 4, 0.12));
  mask-image: linear-gradient(180deg, transparent, #000 55%);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 55%);
  opacity: 0.45;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; color: inherit; cursor: pointer; }

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 400;
  background: linear-gradient(90deg, #0c1204, var(--lime-hot));
  box-shadow: 0 0 18px rgba(184, 255, 90, 0.7);
}

.cursor-glow {
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  z-index: 50;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(184, 255, 90, 0.28), transparent 68%);
  filter: blur(12px);
  transition: opacity 0.25s ease;
}

.ambient-orb {
  position: fixed;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(70px);
}

.ambient-orb-one {
  width: 340px;
  height: 340px;
  top: -60px;
  right: 8%;
  background: rgba(255, 255, 180, 0.55);
  animation: floatOrb 12s ease-in-out infinite;
}

.ambient-orb-two {
  width: 380px;
  height: 380px;
  bottom: 6%;
  left: -90px;
  background: rgba(80, 160, 10, 0.28);
  animation: floatOrb 14s ease-in-out infinite reverse;
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-22px) scale(1.06); }
}

.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 16px 20px;
  background: transparent;
}

.nav > * {
  position: relative;
  z-index: 1;
}

.nav::before,
.nav::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 168px;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.nav::before {
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  mask-image: linear-gradient(180deg, #000 0%, #000 32%, rgba(0, 0, 0, 0.45) 62%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 32%, rgba(0, 0, 0, 0.45) 62%, transparent 100%);
}

.nav::after {
  background: linear-gradient(
    180deg,
    rgba(246, 255, 212, 0.88) 0%,
    rgba(246, 255, 212, 0.5) 38%,
    rgba(216, 255, 114, 0.16) 68%,
    transparent 100%
  );
}

.nav.scrolled::before,
.nav.scrolled::after {
  opacity: 1;
}

@media (min-width: 1220px) {
  .nav { padding-inline: calc((100% - 1180px) / 2); }
}

.nav-back,
.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-back svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-back:hover,
.nav-links a:hover { color: var(--ink); }

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.nav-brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(12, 18, 4, 0.22);
}

.nav-links { display: flex; gap: 18px; }

.hero {
  padding: 36px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(12, 18, 4, 0.06);
  border: 1px solid var(--line);
  color: var(--olive);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 10px rgba(12, 18, 4, 0.45);
}

.hero h1 {
  margin: 18px 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6.4vw, 5rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.hero h1 span {
  display: block;
  color: var(--ink);
}

.hero-lead {
  margin: 0 0 28px;
  max-width: 36rem;
  color: var(--muted-on-lime);
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--ink);
  color: var(--lime);
  box-shadow: 0 14px 36px rgba(12, 18, 4, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 18px 44px rgba(12, 18, 4, 0.3);
}

.btn-ghost {
  border: 1px solid var(--line);
  background: var(--glass);
  color: var(--ink);
  backdrop-filter: blur(12px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-stats span {
  padding: 14px 12px;
  border-radius: 18px;
  background: rgba(12, 18, 4, 0.06);
  border: 1px solid var(--line);
  color: var(--olive);
  font-size: 12px;
  line-height: 1.35;
}

.hero-stats strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 460px;
}

.icon-stage {
  position: relative;
  width: min(420px, 100%);
  margin: 0 auto;
  aspect-ratio: 1;
}

.icon-glow {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 255, 90, 0.95), rgba(12, 18, 4, 0.18) 62%, transparent 74%);
  filter: blur(18px);
  animation: pulseGlow 4.8s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

.hero-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58%;
  height: 58%;
  transform: translate(-50%, -50%);
  border-radius: 28%;
  box-shadow:
    0 28px 70px rgba(12, 18, 4, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.18);
  animation: iconFloat 5.5s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, calc(-50% - 10px)); }
}

.float-chip {
  position: absolute;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(11, 13, 10, 0.88);
  color: var(--lime);
  border: 1px solid rgba(184, 255, 90, 0.28);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(12, 18, 4, 0.22);
  animation: chipFloat 5s ease-in-out infinite;
}

.float-chip.a { top: 10%; left: -2%; }
.float-chip.b { top: 38%; right: -6%; animation-delay: -1.4s; }
.float-chip.c { bottom: 14%; left: 2%; animation-delay: -2.8s; }

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

.section { padding: 72px 0; }

.section-head {
  max-width: 680px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-head h2 {
  margin: 12px 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.section-head p {
  margin: 0 auto;
  color: var(--muted-on-lime);
  line-height: 1.65;
  max-width: 54ch;
}

.showcase-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.shot-card {
  border-radius: 26px;
  overflow: hidden;
  background: rgba(12, 18, 4, 0.08);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(12, 18, 4, 0.12);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.shot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 54px rgba(12, 18, 4, 0.18);
}

.shot-card img {
  width: 100%;
  aspect-ratio: 473 / 1024;
  object-fit: cover;
  object-position: top center;
}

.playground {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
  padding: 22px;
  border-radius: calc(var(--radius) + 10px);
  background: var(--dark);
  color: var(--cream);
  border: 1px solid rgba(184, 255, 90, 0.16);
  box-shadow: 0 30px 80px rgba(12, 18, 4, 0.28);
}

.play-stage {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #10140c;
  border: 1px solid var(--line-light);
}

.play-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}

.play-stage img.is-on { opacity: 1; }

.play-controls {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 8px 6px 6px;
}

.play-controls h3 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: -0.04em;
}

.play-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
}

.play-copy {
  color: var(--muted-on-dark);
  line-height: 1.65;
  font-size: 15px;
}

.chip-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-on-dark);
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s var(--ease);
}

.chip:hover { color: var(--cream); border-color: rgba(184, 255, 90, 0.35); }

.chip.active {
  color: var(--ink);
  background: var(--lime);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(184, 255, 90, 0.28);
}

.play-note {
  color: var(--soft-on-dark);
  font-size: 13px;
  line-height: 1.5;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  position: relative;
  padding: 24px;
  border-radius: 24px;
  background: var(--dark);
  color: var(--cream);
  border: 1px solid rgba(184, 255, 90, 0.12);
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 255, 90, 0.38);
}

.feature-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -40px;
  top: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 255, 90, 0.28), transparent 68%);
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  background: rgba(184, 255, 90, 0.12);
  border: 1px solid rgba(184, 255, 90, 0.22);
  color: var(--lime);
  font-size: 18px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.feature-card p {
  margin: 0;
  color: var(--muted-on-dark);
  font-size: 14px;
  line-height: 1.6;
}

.story-grid {
  display: grid;
  gap: 18px;
}

.story-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  overflow: hidden;
  border-radius: 32px;
  background: var(--dark);
  color: var(--cream);
  border: 1px solid rgba(184, 255, 90, 0.14);
  min-height: 420px;
}

.story-row.reverse { grid-template-columns: 0.95fr 1.05fr; }
.story-row.reverse .story-copy { order: -1; }

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  min-height: 420px;
}

.story-copy {
  padding: clamp(24px, 4vw, 42px);
  display: grid;
  align-content: center;
  gap: 12px;
}

.story-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.story-copy p {
  color: var(--muted-on-dark);
  line-height: 1.7;
}

.access-band {
  margin-top: 18px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(12, 18, 4, 0.08);
  border: 1px solid var(--line);
}

.access-band h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.access-band p {
  margin: 0;
  color: var(--muted-on-lime);
  line-height: 1.65;
  max-width: 72ch;
}

.about-prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 36px 32px;
  border-radius: 28px;
  background: rgba(12, 18, 4, 0.08);
  border: 1px solid var(--line);
}

.about-prose p,
.about-prose li {
  color: var(--muted-on-lime);
  line-height: 1.7;
  font-size: 1.05rem;
}

.about-prose p {
  margin: 0;
}

.about-prose p + p,
.about-prose ul,
.about-prose ol,
.about-prose h3 {
  margin-top: 18px;
}

.about-prose h3 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.about-prose ul {
  margin-bottom: 0;
  padding-left: 1.15em;
}

.about-prose li + li {
  margin-top: 8px;
}

.about-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
  padding: 0;
  counter-reset: motion-step;
}

.about-flow li {
  counter-increment: motion-step;
  padding: 14px 12px;
  border-radius: 16px;
  background: rgba(247, 255, 216, 0.55);
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.35;
}

.about-flow li::before {
  content: counter(motion-step);
  display: block;
  margin-bottom: 6px;
  color: var(--olive);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.about-tagline {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--ink) !important;
}

.about-note {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

@media (max-width: 720px) {
  .about-prose { padding: 26px 20px; }
  .about-flow { grid-template-columns: 1fr 1fr; }
}

.cta {
  margin: 8px 0 72px;
  padding: 48px 36px;
  border-radius: 32px;
  background: var(--dark);
  color: var(--cream);
  border: 1px solid rgba(184, 255, 90, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 24px 70px rgba(12, 18, 4, 0.2);
}

.cta h2 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.04em;
}

.cta p {
  margin: 0;
  color: var(--muted-on-dark);
  max-width: 42ch;
  line-height: 1.6;
}

.privacy-note {
  width: min(920px, 100%);
  margin: 0 auto 80px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(12, 18, 4, 0.06);
  color: var(--muted-on-lime);
  line-height: 1.7;
}

.privacy-note a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
}

.footer-logo img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
}

.footer-links a:hover { color: var(--ink); }

.footer-copy {
  width: 100%;
  color: var(--olive);
  font-size: 13px;
}

.privacy-page-wrap {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 80px;
}

.privacy-title {
  margin: 10px 0 8px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: -0.045em;
}

.privacy-subtitle {
  text-align: center;
  color: var(--olive);
  margin: 0 0 28px;
}

.policy-card {
  padding: 28px;
  border-radius: 28px;
  background: var(--dark);
  color: var(--cream);
  border: 1px solid rgba(184, 255, 90, 0.16);
}

.policy-card h2 {
  margin: 28px 0 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.policy-card h2:first-child { margin-top: 0; }

.policy-card p,
.policy-card li {
  color: var(--muted-on-dark);
  line-height: 1.7;
}

.policy-card ul { padding-left: 1.2rem; margin: 10px 0 16px; }
.policy-card strong { color: var(--cream); }
.policy-card a {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }

@media (max-width: 980px) {
  .hero-grid,
  .playground,
  .features-grid,
  .story-row,
  .story-row.reverse { grid-template-columns: 1fr; }
  .story-row.reverse .story-copy { order: 0; }
  .showcase-strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 8px;
  }
  .showcase-strip::-webkit-scrollbar { display: none; }
  .shot-card {
    min-width: 210px;
    scroll-snap-align: start;
  }
  .hero-visual { min-height: 380px; }
  .nav-links { display: none; }
  .hero-stats { grid-template-columns: 1fr; }
  .play-stage { min-height: 420px; }
  .story-media img { min-height: 360px; }
  .cta { padding: 32px 22px; }
}

@media (max-width: 560px) {
  .float-chip { display: none; }
  .hero-actions .btn { width: 100%; }
  .container { width: min(1180px, calc(100% - 28px)); }
  .nav { padding-inline: 14px; }
}
