:root {
  color-scheme: dark;
  --bg: #07110f;
  --bg-soft: #0d1817;
  --panel: rgba(12, 23, 22, 0.72);
  --panel-strong: rgba(17, 30, 28, 0.92);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: #f7fbef;
  --muted: rgba(247, 251, 239, 0.72);
  --soft: rgba(247, 251, 239, 0.54);
  --green: #33e285;
  --green-deep: #0b7b4b;
  --gold: #ffc857;
  --amber: #ff9f1c;
  --rose: #ff4d7d;
  --blue: #54b6ff;
  --purple: #9a6cff;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(51, 226, 133, 0.18), transparent 34rem),
    radial-gradient(circle at 85% 8%, rgba(154, 108, 255, 0.23), transparent 30rem),
    radial-gradient(circle at 50% 86%, rgba(255, 200, 87, 0.13), transparent 34rem),
    linear-gradient(180deg, #05090b 0%, var(--bg) 46%, #08110f 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before,
body::after {
  position: fixed;
  inset: auto;
  z-index: -1;
  width: 44rem;
  height: 44rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  content: "";
  filter: blur(2px);
  pointer-events: none;
}

body::before {
  top: -22rem;
  right: -14rem;
  background: radial-gradient(circle, rgba(255, 200, 87, 0.16), transparent 68%);
}

body::after {
  bottom: -28rem;
  left: -20rem;
  background: radial-gradient(circle, rgba(84, 182, 255, 0.14), transparent 68%);
}

.ambient-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.ambient-field span {
  position: absolute;
  left: var(--x);
  bottom: -8vh;
  font-size: calc(18px * var(--s));
  opacity: 0;
  filter: drop-shadow(0 0 18px rgba(255, 200, 87, 0.35));
  animation: float-seed 18s linear infinite;
  animation-delay: var(--d);
}

@keyframes float-seed {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(var(--s));
  }
  12% {
    opacity: 0.42;
  }
  80% {
    opacity: 0.28;
  }
  100% {
    opacity: 0;
    transform: translate3d(28px, -112vh, 0) rotate(280deg) scale(calc(var(--s) * 1.15));
  }
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 34px));
  margin: 14px auto 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 17, 15, 0.72);
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(51, 226, 133, 0.34);
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(135deg, rgba(51, 226, 133, 0.28), rgba(255, 200, 87, 0.18));
  box-shadow: 0 0 34px rgba(51, 226, 133, 0.2);
  font-size: 21px;
  animation: logo-pulse 4.8s ease-in-out infinite;
}

@keyframes logo-pulse {
  0%, 100% {
    box-shadow: 0 0 28px rgba(51, 226, 133, 0.2);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 0 44px rgba(255, 200, 87, 0.28);
    transform: translateY(-1px);
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  padding: 10px 13px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  transition: 180ms ease;
}

.nav a:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.nav .nav-cta {
  border-color: rgba(255, 200, 87, 0.4);
  background: linear-gradient(135deg, rgba(255, 200, 87, 0.24), rgba(51, 226, 133, 0.12));
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: 52px;
  align-items: center;
  min-height: calc(100vh - 86px);
  padding: 76px 0 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin: 0 0 18px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 200, 87, 0.34);
  border-radius: 999px;
  background: rgba(255, 200, 87, 0.1);
  color: #ffe7a8;
  font-size: 13px;
  font-weight: 850;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.12), 0 0 34px rgba(255, 200, 87, 0.08);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6.6vw, 86px);
  line-height: 0.93;
  letter-spacing: -0.075em;
}

.gradient-text {
  background: linear-gradient(110deg, #f9fff2 0%, #b8ffd8 35%, #ffe08b 69%, #ff7ba4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: clamp(17px, 1.72vw, 21px);
  line-height: 1.55;
}

.word-carousel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 22px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(51, 226, 133, 0.12), rgba(255, 200, 87, 0.08)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
  color: var(--muted);
  backdrop-filter: blur(20px);
}

.word-carousel-label {
  color: #b8ffd8;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.word-carousel strong {
  min-width: 130px;
  color: var(--text);
  font-size: 17px;
  letter-spacing: -0.025em;
  transition: transform 180ms ease, opacity 180ms ease, filter 180ms ease;
}

.word-carousel strong.is-changing {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(-8px);
}

.word-carousel-meaning {
  color: var(--soft);
  font-size: 13px;
  font-weight: 760;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  font-weight: 900;
  letter-spacing: -0.02em;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.button.primary {
  border-color: rgba(51, 226, 133, 0.52);
  background: linear-gradient(135deg, var(--green), #1fb5ff);
  color: #04100c;
}

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

.stat-pill {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.stat-pill:hover {
  border-color: rgba(255, 200, 87, 0.35);
  background: rgba(255, 255, 255, 0.075);
  transform: translateY(-3px);
}

.stat-pill strong {
  display: block;
  color: var(--gold);
  font-size: 24px;
  letter-spacing: -0.04em;
}

.stat-pill span {
  color: var(--soft);
  font-size: 13px;
  font-weight: 750;
}

.phone-stage {
  position: relative;
  min-height: 660px;
  --mx: 0;
  --my: 0;
  perspective: 1100px;
}

.phone-stage::before {
  position: absolute;
  inset: 12% 4% 5%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 42% 32%, rgba(255, 200, 87, 0.26), transparent 32%),
    radial-gradient(circle at 62% 52%, rgba(51, 226, 133, 0.2), transparent 36%),
    radial-gradient(circle at 28% 65%, rgba(154, 108, 255, 0.2), transparent 38%);
  content: "";
  filter: blur(16px);
}

.phone-shot {
  position: absolute;
  width: min(285px, 45vw);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 34px;
  background: #07110f;
  box-shadow: var(--shadow);
  transition: transform 320ms ease, filter 320ms ease;
  will-change: transform;
}

.phone-shot img {
  width: 100%;
  height: auto;
}

.phone-shot.main {
  right: 10%;
  top: 0;
  z-index: 3;
  width: min(315px, 52vw);
  animation: phone-float-main 7s ease-in-out infinite;
  transform: rotate(2deg) translate3d(calc(var(--mx) * 10px), calc(var(--my) * 8px), 0);
}

.phone-shot.left {
  left: 0;
  top: 190px;
  z-index: 2;
  animation: phone-float-left 8.6s ease-in-out infinite;
  transform: rotate(-7deg) translate3d(calc(var(--mx) * -12px), calc(var(--my) * 9px), 0);
}

.phone-shot.right {
  right: 0;
  top: 320px;
  z-index: 1;
  animation: phone-float-right 9.2s ease-in-out infinite;
  transform: rotate(7deg) translate3d(calc(var(--mx) * 8px), calc(var(--my) * -10px), 0);
  opacity: 0.92;
}

@keyframes phone-float-main {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -14px; }
}

@keyframes phone-float-left {
  0%, 100% { margin-top: 0; }
  50% { margin-top: 16px; }
}

@keyframes phone-float-right {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -10px; }
}

.floating-card {
  position: absolute;
  right: 7%;
  bottom: 24px;
  z-index: 5;
  max-width: 270px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(10, 21, 19, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  animation: glass-breathe 5.8s ease-in-out infinite;
}

.floating-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
  letter-spacing: -0.035em;
}

.floating-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.harvest-hud {
  position: absolute;
  left: 4%;
  top: 66px;
  z-index: 6;
  width: min(310px, 68vw);
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(51, 226, 133, 0.18), rgba(20, 180, 255, 0.18)),
    rgba(7, 17, 15, 0.68);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(22px);
  animation: hud-slide 7.4s ease-in-out infinite;
}

.harvest-hud-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.harvest-hud-top span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 22px;
}

.harvest-hud-top strong {
  color: var(--text);
  font-size: 25px;
  letter-spacing: -0.05em;
}

.harvest-hud-top em {
  margin-left: auto;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 200, 87, 0.16);
  color: #ffe08b;
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.harvest-meter {
  overflow: hidden;
  height: 8px;
  margin: 14px 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.harvest-meter span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--rose));
  animation: harvest-meter 2.6s ease-in-out infinite;
}

.harvest-hud p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.orbit-chip {
  position: absolute;
  z-index: 6;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(7, 17, 15, 0.68);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.26);
  color: var(--text);
  font-size: 13px;
  font-weight: 950;
  backdrop-filter: blur(18px);
  animation: orbit-chip 6.2s ease-in-out infinite;
}

.chip-quiz {
  right: 4%;
  top: 188px;
}

.chip-farm {
  left: 16%;
  bottom: 198px;
  animation-delay: -2s;
}

.chip-ai {
  right: 16%;
  bottom: 156px;
  animation-delay: -4s;
}

@keyframes hud-slide {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-1deg); }
  50% { transform: translate3d(10px, -10px, 0) rotate(1deg); }
}

@keyframes harvest-meter {
  0%, 100% { width: 52%; }
  50% { width: 94%; }
}

@keyframes orbit-chip {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -14px, 0); }
}

@keyframes glass-breathe {
  0%, 100% {
    border-color: rgba(255, 255, 255, 0.18);
  }
  50% {
    border-color: rgba(51, 226, 133, 0.36);
  }
}

.live-farm-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin-top: 14px;
}

.loop-step {
  position: relative;
  overflow: hidden;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  transition: border-color 220ms ease, transform 220ms ease, background 220ms ease;
}

.loop-step::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  content: "";
  transform: translateX(-120%);
}

.loop-step.is-active {
  border-color: rgba(51, 226, 133, 0.44);
  background: rgba(51, 226, 133, 0.09);
  transform: translateY(-3px);
}

.loop-step.is-active::before {
  animation: sweep 1.3s ease;
}

.loop-step span {
  display: block;
  margin-bottom: 8px;
  font-size: 23px;
}

.loop-step strong,
.loop-step small {
  display: block;
}

.loop-step strong {
  margin-bottom: 3px;
  letter-spacing: -0.03em;
}

.loop-step small {
  color: var(--soft);
  font-size: 12px;
  font-weight: 740;
  line-height: 1.32;
}

@keyframes sweep {
  to { transform: translateX(120%); }
}

.section {
  padding: 70px 0;
}

.motion-story {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 22px;
  align-items: stretch;
  margin: -6px 0 36px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 18% 25%, rgba(51, 226, 133, 0.14), transparent 34%),
    radial-gradient(circle at 80% 20%, rgba(255, 200, 87, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.022));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.26);
  overflow: hidden;
}

.motion-copy {
  align-self: center;
}

.motion-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
}

.motion-board::before {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(51, 226, 133, 0.12), var(--green), var(--gold), rgba(255, 77, 125, 0.22));
  content: "";
  transform: translateY(-50%);
  animation: route-glow 3.8s ease-in-out infinite;
}

.motion-node {
  position: relative;
  z-index: 1;
  min-height: 178px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(7, 17, 15, 0.78);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.motion-node span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid rgba(255, 200, 87, 0.32);
  border-radius: 16px;
  background: rgba(255, 200, 87, 0.13);
  color: #ffe08b;
  font-size: 13px;
  font-weight: 950;
}

.motion-node strong {
  display: block;
  margin-bottom: 8px;
  font-size: 19px;
  letter-spacing: -0.04em;
}

.motion-node small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.42;
}

.motion-connector {
  display: none;
}

@keyframes route-glow {
  0%, 100% {
    opacity: 0.45;
    filter: blur(0);
  }
  50% {
    opacity: 0.95;
    filter: blur(1px);
  }
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section-kicker {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.section-lead {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

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

.feature-card,
.language-card,
.legal-card,
.story-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: 0 20px 68px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(20px);
}

.story-card,
.legal-card {
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.feature-card {
  min-height: 250px;
  padding: 22px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.feature-card::after,
.story-card::after,
.legal-card::after,
.language-card::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--spot-x, 22%) var(--spot-y, 18%), rgba(255, 255, 255, 0.14), transparent 28%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.feature-card:hover,
.story-card:hover,
.legal-card:hover {
  border-color: rgba(255, 255, 255, 0.26);
  transform: translateY(-4px);
}

.feature-card:hover::after,
.story-card:hover::after,
.legal-card:hover::after,
.language-card:hover::before {
  opacity: 1;
}

.feature-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 17px;
  background: rgba(255, 200, 87, 0.13);
  font-size: 25px;
  transition: transform 220ms ease;
}

.feature-card:hover .feature-icon {
  transform: rotate(-5deg) scale(1.06);
}

.feature-card h3,
.language-card h3,
.story-card h3 {
  margin-bottom: 10px;
  font-size: 25px;
  letter-spacing: -0.045em;
}

.feature-card p,
.language-card p,
.story-card p,
.legal-card p {
  color: var(--muted);
  line-height: 1.55;
}

.feature-card.wide {
  display: grid;
  grid-column: span 2;
  grid-template-columns: 1fr 230px;
  gap: 20px;
  align-items: center;
}

.card-screen {
  overflow: hidden;
  max-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 26px;
  transform: translateZ(0);
}

.card-screen img {
  width: 100%;
  transition: transform 900ms ease;
}

.feature-card:hover .card-screen img {
  transform: translateY(-22px) scale(1.02);
}

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

.language-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 22px;
  border-radius: var(--radius-lg);
  transition: transform 180ms ease, border-color 180ms ease;
}

.language-card:hover {
  border-color: rgba(255, 255, 255, 0.26);
  transform: translateY(-4px);
}

.language-card::after {
  position: absolute;
  right: -36px;
  bottom: -48px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: var(--accent, rgba(51, 226, 133, 0.16));
  content: "";
  filter: blur(8px);
  opacity: 0.5;
  transition: transform 260ms ease, opacity 260ms ease;
}

.language-card:hover::after {
  opacity: 0.74;
  transform: translate3d(-16px, -12px, 0) scale(1.08);
}

.language-flag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 31px;
}

.language-flag span:last-child {
  font-size: 14px;
  font-weight: 850;
}

.language-links {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.language-links a {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.showcase {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.story-card {
  padding: 28px;
  border-radius: var(--radius-xl);
}

.story-list {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.story-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 720;
  line-height: 1.45;
}

.story-list li::before {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(51, 226, 133, 0.6);
  content: "";
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.24);
}

.gallery-item img {
  width: 100%;
  transition: transform 900ms ease, filter 300ms ease;
}

.gallery-item:hover img {
  filter: saturate(1.12) contrast(1.05);
  transform: translateY(-28px) scale(1.025);
}

.gallery-item span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(5, 9, 11, 0.68);
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(16px);
}

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

.legal-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.footer {
  padding: 42px 0 52px;
  color: var(--soft);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  font-weight: 750;
}

.variant-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.7fr);
  gap: 46px;
  align-items: center;
  padding: 74px 0 48px;
}

.variant-badge {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-weight: 850;
}

.variant-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

.variant-panel .phone-shot {
  position: static;
  width: min(320px, 100%);
  margin: 0 auto;
  transform: none;
}

.variant-copy {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.58;
}

.variant-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.variant-stack .feature-card {
  min-height: 180px;
}

.reveal-item {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

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

@media (max-width: 980px) {
  .hero,
  .variant-hero,
  .showcase,
  .motion-story {
    grid-template-columns: 1fr;
  }

  .phone-stage {
    min-height: 610px;
  }

  .feature-grid,
  .language-grid,
  .legal-strip,
  .variant-stack,
  .motion-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .motion-board::before {
    display: none;
  }

  .feature-card.wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .topbar {
    align-items: flex-start;
    border-radius: 26px;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    padding-top: 48px;
  }

  h1 {
    font-size: clamp(43px, 14vw, 68px);
  }

  .mini-stats,
  .live-farm-strip,
  .feature-grid,
  .language-grid,
  .legal-strip,
  .screen-gallery,
  .variant-stack,
  .motion-board {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .phone-stage {
    min-height: 560px;
  }

  .phone-shot.main {
    right: 12%;
    width: min(270px, 68vw);
  }

  .phone-shot.left {
    top: 175px;
    width: min(230px, 56vw);
  }

  .phone-shot.right {
    top: 310px;
    width: min(230px, 56vw);
  }

  .floating-card {
    left: 0;
    right: 0;
    bottom: 0;
    max-width: none;
  }

  .harvest-hud {
    left: 0;
    top: 20px;
    width: min(280px, 78vw);
  }

  .orbit-chip {
    display: none;
  }

  .motion-story {
    padding: 20px;
  }

  .gallery-item {
    min-height: 430px;
  }
}

body.editorial-home {
  --paper: #f4f0e7;
  --ink: #050505;
  --ash: rgba(244, 240, 231, 0.72);
  --hair: rgba(244, 240, 231, 0.14);
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 200, 87, 0.12), transparent 28rem),
    radial-gradient(circle at 78% 7%, rgba(51, 226, 133, 0.12), transparent 26rem),
    linear-gradient(180deg, #050505 0%, #0a0a09 48%, #060606 100%);
  color: var(--paper);
}

.editorial-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.11;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 20%, black, transparent 82%);
}

.editorial-home .topbar {
  top: 18px;
  max-width: 1160px;
  border-color: rgba(244, 240, 231, 0.16);
  background: rgba(5, 5, 5, 0.72);
}

.editorial-home .brand-mark {
  border-color: rgba(244, 240, 231, 0.18);
  background:
    radial-gradient(circle at 28% 26%, rgba(244, 240, 231, 0.28), transparent 30%),
    linear-gradient(135deg, rgba(244, 240, 231, 0.1), rgba(51, 226, 133, 0.14));
}

.editorial-home .nav a {
  color: rgba(244, 240, 231, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 12px;
}

.editorial-home .nav .nav-cta {
  border-color: rgba(244, 240, 231, 0.24);
  background: var(--paper);
  color: var(--ink);
}

.editorial-hero,
.editorial-section,
.editorial-footer {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
}

.editorial-hero {
  position: relative;
  min-height: 100vh;
  padding: 104px 0 74px;
  overflow: hidden;
}

.editorial-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding: 12px 0;
  color: var(--ash);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.editorial-kicker span {
  color: var(--gold);
}

.mega-word {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0;
  max-width: none;
  margin: 0 0 26px;
  color: var(--paper);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(84px, 19.8vw, 262px);
  font-stretch: condensed;
  font-weight: 950;
  letter-spacing: -0.095em;
  line-height: 0.72;
  text-transform: uppercase;
}

.mega-word span:nth-child(2) {
  justify-self: end;
  background: linear-gradient(100deg, var(--paper), #c8ffd7 34%, #ffe08b 68%, #ff809e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-editorial-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(360px, 0.9fr) 150px;
  gap: 26px;
  align-items: end;
  margin-top: -18px;
}

.hero-copy-panel {
  align-self: end;
  padding: 22px 0;
}

.hero-index {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy-panel h2 {
  max-width: 590px;
  margin-bottom: 14px;
  color: var(--paper);
  font-size: clamp(30px, 4.5vw, 58px);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.hero-copy-panel p {
  max-width: 560px;
  color: var(--ash);
  font-size: 16px;
  line-height: 1.62;
}

.editorial-word {
  margin-top: 22px;
  border-radius: 6px;
  background: rgba(244, 240, 231, 0.08);
}

.editorial-phone-stack {
  position: relative;
  min-height: 610px;
}

.editorial-phone-stack::before {
  position: absolute;
  inset: 8% 8% 10%;
  border: 1px solid rgba(244, 240, 231, 0.1);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 32%, rgba(244, 240, 231, 0.1), transparent 28%),
    radial-gradient(circle at 50% 58%, rgba(51, 226, 133, 0.16), transparent 42%);
  content: "";
  filter: blur(2px);
  animation: editorial-orbit 9s ease-in-out infinite;
}

.editorial-shot {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(244, 240, 231, 0.18);
  border-radius: 30px;
  background: #050505;
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.52);
}

.editorial-shot img {
  width: 100%;
  filter: saturate(0.96) contrast(1.04);
}

.shot-main {
  right: 9%;
  top: 0;
  z-index: 3;
  width: min(330px, 48vw);
  transform: rotate(2.5deg);
  animation: editorial-float-a 7s ease-in-out infinite;
}

.shot-float-a {
  left: 1%;
  top: 188px;
  z-index: 2;
  width: min(250px, 36vw);
  transform: rotate(-8deg);
  animation: editorial-float-b 8.4s ease-in-out infinite;
}

.shot-float-b {
  right: 0;
  bottom: 26px;
  z-index: 1;
  width: min(245px, 34vw);
  opacity: 0.82;
  transform: rotate(8deg);
  animation: editorial-float-c 8.8s ease-in-out infinite;
}

.editorial-badge {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(244, 240, 231, 0.18);
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(5, 5, 5, 0.74);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.32);
  color: var(--paper);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
}

.badge-top {
  left: 10%;
  top: 92px;
}

.badge-bottom {
  right: 8%;
  bottom: 118px;
  color: #b8ffd8;
}

.hero-side-note {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  border-left: 1px solid var(--hair);
  padding-left: 18px;
  color: var(--ash);
}

.hero-side-note span {
  writing-mode: vertical-rl;
  color: var(--paper);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-side-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

@keyframes editorial-orbit {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.85; }
  50% { transform: scale(1.04) rotate(2deg); opacity: 1; }
}

@keyframes editorial-float-a {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -18px; }
}

@keyframes editorial-float-b {
  0%, 100% { margin-top: 0; }
  50% { margin-top: 18px; }
}

@keyframes editorial-float-c {
  0%, 100% { margin-bottom: 0; }
  50% { margin-bottom: 16px; }
}

.editorial-section {
  padding: 92px 0;
  border-top: 1px solid var(--hair);
}

.editorial-section-head {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 40px;
  margin-bottom: 34px;
}

.editorial-section-head.split {
  grid-template-columns: 190px minmax(0, 1.05fr) minmax(220px, 0.55fr);
}

.editorial-section-head p,
.legal-editorial-grid p {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.editorial-section-head h2,
.legal-editorial-grid h2 {
  max-width: 850px;
  color: var(--paper);
  font-size: clamp(38px, 6.4vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.074em;
}

.editorial-section-head span {
  color: var(--ash);
  font-size: 17px;
  line-height: 1.55;
}

.system-marquee {
  display: flex;
  gap: 18px;
  overflow: hidden;
  margin: 36px 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding: 14px 0;
  color: rgba(244, 240, 231, 0.18);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(48px, 10vw, 132px);
  letter-spacing: -0.06em;
  line-height: 0.82;
  text-transform: uppercase;
  white-space: nowrap;
}

.system-marquee span {
  animation: marquee-drift 16s linear infinite;
}

@keyframes marquee-drift {
  to { transform: translateX(-220px); }
}

.editorial-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--hair);
  border-left: 1px solid var(--hair);
}

.editorial-process article {
  min-height: 250px;
  border-right: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding: 24px;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.editorial-process article:hover {
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-4px);
}

.editorial-process article span {
  display: inline-flex;
  margin-bottom: 52px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
}

.editorial-process article h3 {
  margin-bottom: 12px;
  font-size: 26px;
  letter-spacing: -0.05em;
}

.editorial-process article p {
  color: inherit;
  opacity: 0.7;
  line-height: 1.55;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.work-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--hair);
  border-radius: 2px;
  background: #10100f;
  color: var(--paper);
  isolation: isolate;
}

.work-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 720px;
}

.work-wide {
  grid-column: span 2;
}

.work-card img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  opacity: 0.86;
  filter: grayscale(1) contrast(1.18);
  transform: scale(1.02);
  transition: filter 420ms ease, opacity 420ms ease, transform 900ms ease;
}

.work-card:hover img {
  opacity: 1;
  filter: grayscale(0) contrast(1.04) saturate(1.08);
  transform: scale(1.08);
}

.work-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.74));
  content: "";
}

.work-card div {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 2;
}

.work-card span {
  display: inline-flex;
  margin-bottom: 8px;
  border: 1px solid rgba(244, 240, 231, 0.28);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(5, 5, 5, 0.44);
  color: var(--paper);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.work-card h3 {
  max-width: 520px;
  margin: 0;
  color: var(--paper);
  font-size: clamp(25px, 3.1vw, 48px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.language-table {
  border-top: 1px solid var(--hair);
}

.language-table a {
  display: grid;
  grid-template-columns: 76px minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 20px;
  align-items: center;
  min-height: 88px;
  border-bottom: 1px solid var(--hair);
  color: var(--paper);
  transition: background 220ms ease, color 220ms ease, padding 220ms ease;
}

.language-table a:hover {
  background: var(--paper);
  color: var(--ink);
  padding-left: 18px;
}

.language-table span {
  font-size: 28px;
}

.language-table strong {
  font-size: clamp(25px, 3.3vw, 42px);
  letter-spacing: -0.06em;
}

.language-table em {
  color: currentColor;
  font-style: normal;
  opacity: 0.62;
}

.legal-editorial {
  position: relative;
  overflow: hidden;
  padding-bottom: 120px;
}

.legal-word {
  position: absolute;
  right: -0.08em;
  bottom: -0.26em;
  color: rgba(244, 240, 231, 0.045);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(120px, 24vw, 340px);
  letter-spacing: -0.08em;
  line-height: 1;
  pointer-events: none;
}

.legal-editorial-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 48px;
}

.legal-links-editorial {
  display: grid;
  gap: 12px;
}

.legal-links-editorial a {
  display: grid;
  gap: 7px;
  border: 1px solid var(--hair);
  padding: 20px;
  color: var(--paper);
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.legal-links-editorial a:hover {
  background: var(--paper);
  color: var(--ink);
  transform: translateX(-8px);
}

.legal-links-editorial span {
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.legal-links-editorial em {
  color: currentColor;
  font-style: normal;
  opacity: 0.62;
}

.editorial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--hair);
  padding: 28px 0 42px;
  color: var(--ash);
  font-size: 13px;
}

.editorial-footer nav {
  display: flex;
  gap: 16px;
  font-weight: 850;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .hero-editorial-grid,
  .editorial-section-head,
  .editorial-section-head.split,
  .legal-editorial-grid {
    grid-template-columns: 1fr;
  }

  .editorial-phone-stack {
    min-height: 560px;
  }

  .hero-side-note {
    display: none;
  }

  .editorial-process,
  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-large,
  .work-wide {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .editorial-hero,
  .editorial-section,
  .editorial-footer {
    width: min(100% - 24px, 1180px);
  }

  .editorial-hero {
    padding-top: 128px;
  }

  .mega-word {
    font-size: clamp(66px, 23vw, 112px);
    line-height: 0.82;
  }

  .editorial-phone-stack {
    min-height: 500px;
  }

  .shot-main {
    right: 4%;
    width: min(280px, 72vw);
  }

  .shot-float-a {
    left: 0;
    width: min(210px, 54vw);
  }

  .shot-float-b {
    width: min(205px, 52vw);
  }

  .editorial-process,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-large,
  .work-wide {
    grid-column: auto;
    min-height: 520px;
  }

  .language-table a {
    grid-template-columns: 46px 1fr;
  }

  .language-table em {
    grid-column: 2;
  }

  .editorial-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
