/* ============================================================
   GreenZone — "Ink & Gilt"
   Deep ink-green atmosphere · gold-leaf accents · editorial serif
   ============================================================ */

:root {
  --ink: #0a130d;
  --ink-2: #0e1a12;
  --ink-3: #13241a;
  --cream: #f2ecdd;
  --cream-dim: rgba(242, 236, 221, .62);
  --cream-faint: rgba(242, 236, 221, .38);
  --gold: #d6b15e;
  --gold-hi: #e9c878;
  --gold-lo: #8f6a24;
  --green: #3f9a63;
  --green-hi: #78c896;
  --hairline: rgba(233, 200, 120, .16);
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Archivo", "Helvetica Neue", sans-serif;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --nav-h: 76px;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }
html:focus-within { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--ink); }

a { color: inherit; }

/* ---------- atmosphere ---------- */

.grain {
  position: fixed; inset: -50%;
  pointer-events: none; z-index: 90;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 9s steps(6) infinite;
}
@keyframes grainShift {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 3%); }
}

.progress-bar {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  z-index: 200; background: rgba(233, 200, 120, .08);
}
.progress-bar span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--gold-lo), var(--gold-hi));
}

/* ---------- nav ---------- */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 120;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 56px);
  transition: background .45s var(--ease-out), backdrop-filter .45s, border-color .45s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 19, 13, .82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--hairline);
}

.nav__brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav__word {
  font-family: var(--serif);
  font-size: 1.35rem; font-weight: 600; letter-spacing: .01em;
}
.nav__word em { font-style: italic; font-weight: 400; color: var(--gold-hi); }
.nav__word--lg { font-size: 1.9rem; }

.nav__links { display: flex; align-items: center; gap: clamp(18px, 3vw, 40px); }
.nav__links a {
  font-size: .8rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none; color: var(--cream-dim);
  transition: color .3s;
  position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__cta {
  border: 1px solid var(--hairline);
  padding: 10px 22px; border-radius: 999px;
  color: var(--gold-hi) !important;
}
.nav__cta::after { display: none; }
.nav__cta:hover { border-color: var(--gold); }

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  background: none; border: 0; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 7px;
}
.nav__burger span {
  display: block; width: 26px; height: 1.5px;
  background: var(--cream);
  transition: transform .4s var(--ease-out), opacity .3s;
}
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(4.25px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-4.25px) rotate(-45deg); }

/* mobile menu */
.mmenu {
  position: fixed; inset: 0; z-index: 110;
  background: rgba(10, 19, 13, .97);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 32px;
  opacity: 0; visibility: hidden;
  transition: opacity .5s var(--ease-out), visibility .5s;
}
.mmenu.is-open { opacity: 1; visibility: visible; }
.mmenu__list { display: flex; flex-direction: column; gap: 6px; }
.mmenu__list a {
  font-family: var(--serif); font-size: clamp(2.2rem, 9vw, 3.4rem);
  font-weight: 500; text-decoration: none;
  padding: 10px 0; border-bottom: 1px solid var(--hairline);
  display: flex; align-items: baseline; gap: 18px;
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out), color .3s;
}
.mmenu__list a small {
  font-family: var(--sans); font-size: .8rem;
  color: var(--gold); letter-spacing: .2em;
}
.mmenu__list a:hover { color: var(--gold-hi); }
.mmenu.is-open .mmenu__list a { opacity: 1; transform: none; }
.mmenu.is-open .mmenu__list a:nth-child(1) { transition-delay: .10s; }
.mmenu.is-open .mmenu__list a:nth-child(2) { transition-delay: .18s; }
.mmenu.is-open .mmenu__list a:nth-child(3) { transition-delay: .26s; }
.mmenu.is-open .mmenu__list a:nth-child(4) { transition-delay: .34s; }
.mmenu__foot {
  margin-top: 48px; display: flex; flex-direction: column; gap: 4px;
  font-size: .85rem; color: var(--cream-faint);
}
.mmenu__foot a { color: var(--gold-hi); text-decoration: none; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 34px; border-radius: 999px;
  font-family: var(--sans); font-size: .82rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none;
  transition: transform .35s var(--ease-out), box-shadow .35s, background .35s, color .35s, border-color .35s;
  will-change: transform;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-hi), var(--gold) 55%, var(--gold-lo));
  color: #241a06;
  box-shadow: 0 6px 30px rgba(214, 177, 94, .22);
}
.btn--gold:hover { box-shadow: 0 10px 44px rgba(214, 177, 94, .38); }
.btn--ghost {
  border: 1px solid var(--hairline); color: var(--cream-dim);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--cream); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 40px) 24px 120px;
  overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; pointer-events: none; }

.orb {
  position: absolute; border-radius: 50%;
  filter: blur(70px);
  will-change: transform;
}
.orb--a {
  width: 54vmax; height: 54vmax; left: -18vmax; top: -14vmax;
  background: radial-gradient(circle at 35% 35%, rgba(47, 122, 79, .34), transparent 65%);
}
.orb--b {
  width: 44vmax; height: 44vmax; right: -16vmax; bottom: -18vmax;
  background: radial-gradient(circle at 60% 40%, rgba(214, 177, 94, .16), transparent 62%);
}
.orb--c {
  width: 30vmax; height: 30vmax; right: 6vmax; top: -8vmax;
  background: radial-gradient(circle, rgba(120, 200, 150, .10), transparent 60%);
}

.hero__rings {
  position: absolute; width: 130vmin; height: 130vmin;
  left: 50%; top: 50%;
  translate: -50% -50%;
  animation: slowSpin 90s linear infinite;
}
@keyframes slowSpin { to { rotate: 360deg; } }

.dust { position: absolute; inset: 0; }
.dust i {
  position: absolute;
  left: var(--x); top: var(--y);
  width: var(--s); height: var(--s);
  border-radius: 50%;
  background: var(--gold-hi);
  opacity: .5;
  box-shadow: 0 0 12px 2px rgba(233, 200, 120, .35);
  animation: floatDust 7s ease-in-out infinite;
  animation-delay: var(--d);
}
@keyframes floatDust {
  0%, 100% { transform: translateY(0); opacity: .5; }
  50% { transform: translateY(-26px); opacity: .9; }
}

.hero__inner { position: relative; max-width: 1060px; }

.hero__eyebrow {
  font-size: .78rem; font-weight: 500;
  letter-spacing: .34em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: clamp(24px, 4vh, 44px);
}

.hero__title {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(2.55rem, 9.2vw, 7.6rem);
  line-height: 1.02;
  letter-spacing: -.015em;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .reveal-line {
  display: inline-block;
  transform: translateY(110%);
  animation: lineUp 1.1s var(--ease-out) forwards;
}
.hero__title .line:nth-child(2) .reveal-line { animation-delay: .12s; }
.hero__title .line:nth-child(3) .reveal-line { animation-delay: .24s; }
@keyframes lineUp { to { transform: translateY(0); } }

.hero__title em {
  font-style: italic; font-weight: 300;
  background: linear-gradient(100deg, var(--gold-hi) 10%, var(--gold) 45%, #f4e3b0 70%, var(--gold-lo));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 0; }
  50% { background-position: 100% 0; }
}
.hero__title strong { font-weight: 550; }

.hero__sub {
  max-width: 640px; margin: clamp(26px, 4vh, 40px) auto 0;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--cream-dim);
}
.hero__sub a { color: var(--gold-hi); text-decoration-color: rgba(233, 200, 120, .4); text-underline-offset: 4px; }

.hero__actions {
  margin-top: clamp(34px, 5vh, 52px);
  display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
}

.hero__scroll {
  position: absolute; bottom: 34px; left: 50%; translate: -50%;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-decoration: none;
}
.hero__scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(var(--gold), transparent);
  overflow: hidden; position: relative;
}
.hero__scroll-line::after {
  content: ""; position: absolute; left: 0; top: -100%;
  width: 100%; height: 100%;
  background: var(--cream);
  animation: scrollDrip 2.2s var(--ease-out) infinite;
}
@keyframes scrollDrip { to { top: 100%; } }
.hero__scroll-txt {
  font-size: .68rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--cream-faint);
}

/* ---------- marquee ---------- */

.marquee {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 22px 0;
  overflow: hidden;
  background: var(--ink-2);
}
.marquee__track {
  display: flex; align-items: center; gap: 44px;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee span {
  font-family: var(--serif); font-style: italic;
  font-size: 1.15rem; color: var(--cream-faint);
  white-space: nowrap;
}
.marquee i { color: var(--gold); font-style: normal; font-size: .7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- chapters ---------- */

.chapter {
  padding: clamp(90px, 14vh, 170px) clamp(20px, 6vw, 96px);
  max-width: 1400px; margin: 0 auto;
}

.chapter__head {
  display: flex; align-items: center; gap: 22px;
  margin-bottom: clamp(48px, 8vh, 88px);
}
.chapter__no {
  font-family: var(--serif); font-style: italic;
  font-size: 1.1rem; color: var(--gold);
}
.chapter__rule { flex: 0 0 clamp(40px, 8vw, 120px); height: 1px; background: var(--hairline); }
.chapter__label {
  font-size: .75rem; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--cream-dim);
}

/* ---------- chapter 01 · house ---------- */

.house__title {
  font-family: var(--serif); font-weight: 350;
  font-size: clamp(1.8rem, 4.4vw, 3.6rem);
  line-height: 1.18; letter-spacing: -.01em;
  max-width: 20ch;
}
.house__title em { font-style: italic; color: var(--gold-hi); }

.house__cols {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  margin-top: clamp(40px, 6vh, 64px);
  color: var(--cream-dim);
  font-size: 1.02rem;
}

.house__facts {
  list-style: none;
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(56px, 9vh, 96px);
  border-top: 1px solid var(--hairline);
}
.house__facts li {
  padding: 30px 22px 4px;
  border-left: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: 6px;
}
.house__facts li:first-child { border-left: 0; padding-left: 0; }
.house__facts strong {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  color: var(--gold-hi);
}
.house__facts span { font-size: .85rem; color: var(--cream-faint); }

/* ---------- chapter 02 · goldwise ---------- */

.chapter--gold {
  position: relative;
  max-width: none;
  background:
    radial-gradient(60% 50% at 78% 26%, rgba(214, 177, 94, .07), transparent 70%),
    radial-gradient(50% 45% at 12% 80%, rgba(47, 122, 79, .12), transparent 70%),
    var(--ink-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.chapter--gold > * { max-width: 1400px; margin-left: auto; margin-right: auto; }
.chapter--gold .chapter__head { margin-bottom: clamp(48px, 8vh, 88px); }

.gw {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.gw__title {
  font-family: var(--serif); font-weight: 350;
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  line-height: 1.12; letter-spacing: -.01em;
}
.gw__title em { font-style: italic; color: var(--gold-hi); }

.gw__lede {
  margin-top: 26px;
  color: var(--cream-dim);
  font-size: 1.05rem;
  max-width: 56ch;
}
.gw__lede b { color: var(--cream); font-weight: 500; }

.gw__features {
  list-style: none;
  margin-top: clamp(36px, 5vh, 52px);
  display: grid; gap: 26px;
}
.gw__features li { display: flex; gap: 18px; align-items: flex-start; }
.gw__ficon {
  flex: 0 0 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid var(--hairline); border-radius: 12px;
  color: var(--gold-hi); font-size: 1.1rem;
  background: rgba(233, 200, 120, .05);
}
.gw__features h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 1.15rem; margin-bottom: 4px;
}
.gw__features p { font-size: .95rem; color: var(--cream-dim); }

.gw__stores {
  margin-top: clamp(36px, 5vh, 52px);
  display: flex; gap: 14px; flex-wrap: wrap;
}
.storebadge {
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid var(--hairline); border-radius: 14px;
  padding: 10px 20px;
  color: var(--cream);
  background: rgba(242, 236, 221, .03);
}
.storebadge small {
  display: block; font-size: .62rem;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--cream-faint);
}
.storebadge span:last-child { font-weight: 600; font-size: .95rem; line-height: 1.25; }
.storebadge svg { color: var(--gold-hi); }

/* device */
.gw__device {
  position: relative;
  display: flex; justify-content: center;
  perspective: 1200px;
}
.gw__halo {
  position: absolute; inset: -8% -20%;
  background: radial-gradient(50% 50% at 50% 45%, rgba(214, 177, 94, .16), transparent 70%);
  filter: blur(20px);
  z-index: 0;
}
.gw__phone {
  position: relative; z-index: 1;
  width: min(340px, 78vw);
  height: auto;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, .55));
  transition: transform .2s ease-out;
  transform-style: preserve-3d;
}

/* phone SVG text */
.ps {
  font-family: var(--sans); font-size: 15px; font-weight: 500;
  fill: var(--cream);
}
.ps--dim { fill: rgba(242, 236, 221, .5); font-size: 13px; }
.ps--brand { font-family: var(--serif); font-size: 24px; font-weight: 600; fill: #e9c878; }
.ps--verdict { font-family: var(--serif); font-size: 26px; font-weight: 550; fill: #78c896; }
.ps--chip { fill: #241a06; font-weight: 700; font-size: 14px; letter-spacing: .02em; }

.needle {
  transform-origin: 0 0;
  animation: needleSwing 3.2s var(--ease-out) both paused;
}
.gw__device.in-view .needle { animation-play-state: running; }
@keyframes needleSwing {
  0% { transform: rotate(-118deg); }
  55% { transform: rotate(14deg); }
  75% { transform: rotate(-8deg); }
  100% { transform: rotate(0deg); }
}

.gw__float {
  position: absolute; z-index: 2;
  background: rgba(19, 36, 26, .88);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
  animation: floatCard 6s ease-in-out infinite;
}
.gw__float small {
  display: block; font-size: .62rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--cream-faint); margin-bottom: 2px;
}
.gw__float b { font-family: var(--serif); font-size: 1.15rem; color: var(--gold-hi); font-weight: 550; }
.gw__float b span { font-size: .75rem; color: var(--cream-faint); font-family: var(--sans); font-weight: 400; }
.gw__float--price { top: 9%; left: max(-12px, 1%); }
.gw__float--ai { bottom: -14px; right: max(-10px, 1%); animation-delay: 1.6s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* stats */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  overflow: hidden;
  margin-top: clamp(72px, 11vh, 130px);
}
.stat {
  background: var(--ink-2);
  padding: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 10px;
}
.stat b {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1;
  color: var(--gold-hi);
  font-variant-numeric: tabular-nums;
}
.stat span { font-size: .85rem; color: var(--cream-dim); line-height: 1.5; }

/* ---------- chapter 03 · principles ---------- */

.princ {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
.princ__card {
  position: relative;
  border: 1px solid var(--hairline);
  border-radius: 22px;
  padding: clamp(30px, 4vw, 48px);
  background: linear-gradient(160deg, rgba(242, 236, 221, .035), rgba(242, 236, 221, .008));
  overflow: hidden;
  transition: border-color .45s, transform .45s var(--ease-out);
}
.princ__card:hover { border-color: rgba(233, 200, 120, .4); transform: translateY(-6px); }
.princ__card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 20% 0%, rgba(214, 177, 94, .09), transparent 70%);
  opacity: 0; transition: opacity .45s;
}
.princ__card:hover::before { opacity: 1; }
.princ__num {
  font-family: var(--serif); font-style: italic;
  font-size: 3rem; line-height: 1;
  color: rgba(233, 200, 120, .28);
  display: block; margin-bottom: 18px;
}
.princ__card h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 1.4rem; margin-bottom: 10px;
}
.princ__card p { color: var(--cream-dim); font-size: .97rem; position: relative; }
.princ__card a { color: var(--gold-hi); text-underline-offset: 4px; }

/* ---------- chapter 04 · contact ---------- */

.chapter--contact { text-align: center; padding-bottom: clamp(110px, 16vh, 200px); }
.chapter--contact .chapter__head { justify-content: center; }

.contact__title {
  font-family: var(--serif); font-weight: 350;
  font-size: clamp(2rem, 5.4vw, 4.4rem);
  line-height: 1.14;
}
.contact__title em { font-style: italic; color: var(--gold-hi); font-size: .62em; display: inline-block; margin-top: 14px; }

.contact__mail {
  display: inline-block;
  margin-top: clamp(36px, 6vh, 60px);
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.3rem, 3.6vw, 2.6rem);
  color: var(--gold-hi);
  text-decoration: none;
  border-bottom: 1px solid rgba(233, 200, 120, .35);
  padding-bottom: 8px;
  transition: color .35s, border-color .35s;
}
.contact__mail:hover { color: var(--cream); border-color: var(--cream); }

.contact__note { margin-top: 28px; color: var(--cream-faint); font-size: .95rem; }

/* ---------- footer ---------- */

.footer {
  border-top: 1px solid var(--hairline);
  background: var(--ink-2);
  padding: clamp(56px, 8vh, 90px) clamp(20px, 6vw, 96px) 44px;
}
.footer__grid {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: clamp(40px, 6vh, 64px);
  border-bottom: 1px solid var(--hairline);
}
.footer__brand p { margin-top: 14px; color: var(--cream-faint); font-size: .92rem; line-height: 1.55; }
.footer__nav, .footer__legalnav { display: flex; flex-direction: column; gap: 12px; }
.footer__nav a, .footer__legalnav a {
  text-decoration: none; color: var(--cream-dim);
  font-size: .9rem; transition: color .3s;
  width: fit-content;
}
.footer__nav a:hover, .footer__legalnav a:hover { color: var(--gold-hi); }

.footer__legal {
  max-width: 1400px; margin: 0 auto;
  padding-top: 36px;
  display: flex; flex-direction: column; gap: 8px;
}
.footer__name {
  font-size: .78rem; font-weight: 600;
  letter-spacing: .1em;
  color: var(--cream-dim);
}
.footer__addr { font-size: .8rem; color: var(--cream-faint); line-height: 1.7; }
.footer__copy { margin-top: 10px; font-size: .78rem; color: var(--cream-faint); }

/* ---------- reveal system ---------- */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--rd, 0s);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */

@media (max-width: 1060px) {
  .gw { grid-template-columns: 1fr; }
  .gw__device { margin-top: 24px; }
  .princ { grid-template-columns: 1fr; }
  .house__facts { grid-template-columns: repeat(2, 1fr); border-top: 0; }
  .house__facts li { border-top: 1px solid var(--hairline); }
  .house__facts li:first-child { padding-left: 22px; }
  .house__facts li:nth-child(odd) { border-left: 0; padding-left: 0; }
  .house__facts li:nth-child(odd) { padding-left: 0; }
  .footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .house__cols { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); border-radius: 16px; }
  .gw__float--price { top: -14px; left: 0; }
  .gw__float--ai { bottom: -14px; right: 0; }
  .hero__scroll { display: none; }
}

@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stat b { font-size: 2.2rem; }
  .gw__float b { font-size: .95rem; }
  .btn { padding: 15px 26px; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .grain, .hero__rings, .dust i, .gw__float,
  .marquee__track, .hero__scroll-line::after,
  .hero__title em { animation: none !important; }
  .hero__title .reveal-line { transform: none; animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .needle { animation: none; transform: rotate(0deg); }
  .orb, .dust, .hero__rings, .gw__float { will-change: auto; }
  * { transition-duration: .01ms !important; }
}
