/* ============================================================
   OZAI — brand storefront design system
   Warm editorial · OKLCH · grain · generative always-on field
   One stylesheet, shared by index(IT) / en / tr
   ============================================================ */

:root {
  --bone:        oklch(0.965 0.008 83);
  --cream:       oklch(0.945 0.014 80);
  --sand:        oklch(0.908 0.018 78);
  --clay:        oklch(0.84 0.03 70);
  --stone:       oklch(0.62 0.02 60);
  --ink:         oklch(0.205 0.014 56);
  --ink-soft:    oklch(0.34 0.018 52);
  --ink-mute:    oklch(0.47 0.016 56);
  --char:        oklch(0.215 0.018 45);
  --char-2:      oklch(0.26 0.022 42);
  --terra:       oklch(0.585 0.155 38);
  --terra-deep:  oklch(0.47 0.14 36);
  --terra-bright:oklch(0.66 0.17 42);
  --ember:       oklch(0.74 0.145 62);

  --line:        oklch(0.205 0.014 56 / 0.13);
  --line-strong: oklch(0.205 0.014 56 / 0.30);
  --line-light:  oklch(0.965 0.008 83 / 0.16);

  --shadow-sm: 0 2px 8px -4px oklch(0.205 0.014 56 / 0.18);
  --shadow:    0 28px 64px -34px oklch(0.205 0.014 56 / 0.34);
  --shadow-lg: 0 48px 110px -48px oklch(0.205 0.014 56 / 0.46);

  --display: "Fraunces", "Times New Roman", serif;
  --body: "Geist", "Helvetica Neue", system-ui, sans-serif;
  --mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--terra); color: var(--bone); }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg, canvas { display: block; max-width: 100%; }

/* ---------- FILM GRAIN ---------- */
.grain {
  position: fixed; inset: -50%; z-index: 9000; pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ---------- SCROLL PROGRESS ---------- */
.progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 100%;
  transform: scaleX(0); transform-origin: 0 50%;
  background: var(--terra); z-index: 9500; will-change: transform;
}

/* ---------- CUSTOM CURSOR ---------- */
.cursor {
  position: fixed; top: 0; left: 0; width: 30px; height: 30px;
  border: 1px solid var(--terra); border-radius: 999px;
  pointer-events: none; z-index: 9600; transform: translate(-50%, -50%);
  transition: width .3s var(--ease-out-quart), height .3s var(--ease-out-quart), background .3s, border-color .3s, opacity .3s;
  mix-blend-mode: multiply; opacity: 0;
}
.cursor.is-active { width: 56px; height: 56px; background: oklch(0.585 0.155 38 / 0.10); }
.cursor.is-down { width: 22px; height: 22px; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ---------- LAYOUT ---------- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }

/* ---------- NAV ---------- */
nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px) saturate(150%); -webkit-backdrop-filter: blur(16px) saturate(150%);
  background: oklch(0.945 0.014 80 / 0.72); border-bottom: 1px solid var(--line);
  transition: background .4s, border-color .4s;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; font-size: 14px; }
.logo { font-family: var(--display); font-weight: 600; font-size: 23px; letter-spacing: -0.02em; font-variation-settings: "opsz" 14; display: inline-flex; align-items: center; gap: 9px; }
.logo em { font-style: italic; color: var(--terra); }
.logo .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--terra); animation: pulse 2.6s var(--ease-out-quart) infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 oklch(0.585 0.155 38 / 0.45); }
  70% { box-shadow: 0 0 0 9px oklch(0.585 0.155 38 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(0.585 0.155 38 / 0); }
}
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links > a { color: var(--ink-soft); transition: color .2s; font-weight: 500; }
.nav-links > a:hover { color: var(--terra); }
.nav-cta {
  border: 1px solid var(--ink); padding: 9px 18px; border-radius: 999px;
  background: var(--ink); color: var(--bone) !important;
  transition: background .25s var(--ease-out-quart), transform .25s, box-shadow .25s; font-weight: 500;
}
.nav-cta:hover { background: var(--terra); border-color: var(--terra); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.lang { display: inline-flex; gap: 2px; align-items: center; margin-right: 4px; padding-right: 14px; border-right: 1px solid var(--line); font-family: var(--mono); }
.lang a { font-size: 12px; color: var(--ink-mute); transition: color .2s; padding: 3px 7px; border-radius: 6px; letter-spacing: 0.02em; }
.lang a.active { color: var(--terra); background: oklch(0.585 0.155 38 / 0.08); }
.lang a:hover { color: var(--ink); }
@media (max-width: 760px) { .nav-links > a:not(.nav-cta) { display: none; } }

/* ---------- TYPE ATOMS ---------- */
.eyebrow { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-mute); display: inline-flex; align-items: center; gap: 11px; }
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--terra); }

/* ---------- HERO ---------- */
.hero { position: relative; padding: 92px 0 116px; overflow: hidden; }
.hero-canvas {
  position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; opacity: 0.85; pointer-events: none;
  -webkit-mask-image: radial-gradient(120% 90% at 78% 30%, #000 0%, transparent 72%);
  mask-image: radial-gradient(120% 90% at 78% 30%, #000 0%, transparent 72%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.55fr 0.95fr; gap: 56px; align-items: end; }
.hero-status {
  display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em;
  color: var(--ink-soft); margin-bottom: 26px; padding: 6px 13px 6px 11px; border: 1px solid var(--line);
  border-radius: 999px; background: oklch(0.965 0.008 83 / 0.6);
}
.hero-status .live { width: 7px; height: 7px; border-radius: 999px; background: var(--terra); animation: pulse 2.6s infinite; }
h1.hero-title { font-family: var(--display); font-weight: 340; font-size: clamp(52px, 9.2vw, 138px); line-height: 0.9; letter-spacing: -0.045em; margin: 0; font-variation-settings: "opsz" 144; }
h1.hero-title em { font-style: italic; font-weight: 420; color: var(--terra); }
h1.hero-title .light { color: var(--ink-mute); font-weight: 300; }
.w { display: inline-block; overflow: hidden; vertical-align: top; }
.w > span { display: inline-block; }
@keyframes word-rise { to { transform: translateY(0); } }
.hero-sub { margin-top: 34px; font-size: clamp(17px, 1.55vw, 21px); line-height: 1.5; max-width: 540px; color: var(--ink-soft); }
.hero-actions { margin-top: 42px; display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 12px; padding: 16px 28px; background: var(--ink); color: var(--bone);
  border-radius: 999px; font-weight: 500; font-size: 15px;
  transition: transform .3s var(--ease-out-quart), background .3s, box-shadow .3s; position: relative; overflow: hidden;
}
.btn::after { content: ""; position: absolute; inset: 0; background: var(--terra); transform: translateY(101%); transition: transform .4s var(--ease-out-expo); z-index: 0; }
.btn:hover::after { transform: translateY(0); }
.btn > * { position: relative; z-index: 1; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn .arrow { transition: transform .3s var(--ease-out-quart); }
.btn:hover .arrow { transform: translateX(5px); }
.btn-wa { background: var(--terra); }
.btn-wa::after { background: var(--terra-deep); }
.btn-link { color: var(--ink-soft); font-size: 15px; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--line-strong); padding-bottom: 3px; transition: color .2s, border-color .2s; }
.btn-link:hover { color: var(--terra); border-color: var(--terra); }

.hero-meta { border-left: 1px solid var(--line); padding-left: 28px; font-size: 13px; color: var(--ink-mute); line-height: 1.7; }
.hero-meta dt { font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.12em; font-size: 11px; color: var(--ink); margin-top: 18px; margin-bottom: 4px; font-weight: 500; }
.hero-meta dt:first-child { margin-top: 0; }
.hero-meta dd { margin: 0; font-size: 14px; }
@media (max-width: 940px) {
  .hero { padding: 56px 0 76px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-meta { border-left: none; border-top: 1px solid var(--line); padding-left: 0; padding-top: 26px; }
  .hero-canvas { -webkit-mask-image: radial-gradient(140% 60% at 60% 12%, #000 0%, transparent 70%); mask-image: radial-gradient(140% 60% at 60% 12%, #000 0%, transparent 70%); opacity: 0.6; }
}

/* ---------- MARQUEE ---------- */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; overflow: hidden; position: relative; background: var(--bone); }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: slide 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.marquee-item { display: inline-flex; align-items: center; gap: 13px; font-family: var(--display); font-style: italic; font-size: 20px; color: var(--ink-soft); white-space: nowrap; }
.marquee-item::before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--terra); flex: none; }
.marquee-item small { font-family: var(--mono); font-style: normal; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-mute); }

/* ---------- SECTION ---------- */
section { padding: 104px 0; position: relative; }
section.alt { background: var(--sand); }
section.deep { background: var(--char); color: var(--bone); }
section.deep .eyebrow { color: oklch(0.965 0.008 83 / 0.6); }
section.deep .section-title { color: var(--bone); }
.section-head { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: end; margin-bottom: 60px; }
.section-num { font-family: var(--mono); font-size: 13px; color: var(--terra); letter-spacing: 0.1em; }
.section-label { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--ink-mute); margin-top: 10px; }
.section-title { font-family: var(--display); font-weight: 340; font-size: clamp(34px, 5.2vw, 66px); line-height: 1; letter-spacing: -0.028em; margin: 0; font-variation-settings: "opsz" 96; }
.section-title em { font-style: italic; color: var(--terra); font-weight: 420; }
@media (max-width: 720px) { .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; } }

/* ---------- SERVICES ---------- */
.skus { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 22px; }
.sku { background: var(--bone); border: 1px solid var(--line); border-radius: 20px; padding: 34px 32px 30px; display: flex; flex-direction: column; transition: transform .45s var(--ease-out-expo), box-shadow .45s, border-color .45s; position: relative; overflow: hidden; }
.sku::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(130% 80% at 100% 0%, oklch(0.585 0.155 38 / 0.07), transparent 55%); opacity: 0; transition: opacity .45s; }
.sku:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--clay); }
.sku:hover::before { opacity: 1; }
.sku.feature { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.sku.feature .sku-desc { color: oklch(0.965 0.008 83 / 0.72); }
.sku.feature .sku-features { border-color: var(--line-light); }
.sku.feature .sku-features li { color: oklch(0.965 0.008 83 / 0.82); }
.sku.feature .sku-price { border-color: var(--line-light); }
.sku.feature .sku-price-amount { color: var(--bone); }
.sku.feature .sku-num { color: oklch(0.965 0.008 83 / 0.4); }
.sku.feature .sku-name em { color: var(--ember); }
.sku-num { font-family: var(--mono); font-size: 12px; color: var(--ink-mute); letter-spacing: 0.1em; margin-bottom: 18px; }
.sku-name { font-family: var(--display); font-weight: 400; font-size: clamp(26px, 2.4vw, 33px); letter-spacing: -0.02em; line-height: 1.04; margin: 0 0 12px; font-variation-settings: "opsz" 40; }
.sku-name em { font-style: italic; color: var(--terra); }
.sku-desc { color: var(--ink-soft); font-size: 15px; line-height: 1.55; margin: 0 0 26px; }
.sku-features { list-style: none; padding: 0; margin: 0 0 26px; border-top: 1px solid var(--line); padding-top: 20px; }
.sku-features li { font-size: 14px; color: var(--ink-soft); padding: 6px 0; display: flex; gap: 11px; align-items: baseline; }
.sku-features li::before { content: "→"; color: var(--terra); font-weight: 600; flex: none; }
.sku-price { border-top: 1px solid var(--line); padding-top: 20px; display: flex; justify-content: space-between; align-items: baseline; margin-top: auto; }
.sku-price-amount { font-family: var(--display); font-size: 30px; font-weight: 500; color: var(--ink); font-variation-settings: "opsz" 40; }
.sku-price-amount span { font-family: var(--body); font-size: 13px; font-weight: 400; color: var(--ink-mute); margin-left: 4px; }
.sku-price-setup { font-size: 12px; color: var(--ink-mute); text-align: right; font-family: var(--mono); line-height: 1.5; }
@media (max-width: 980px) { .skus { grid-template-columns: 1fr; } }

/* ---------- BUNDLE ---------- */
.bundle { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.bundle-headline { font-family: var(--display); font-weight: 340; font-size: clamp(40px, 6vw, 82px); line-height: 0.96; letter-spacing: -0.035em; color: var(--bone); margin: 0; font-variation-settings: "opsz" 120; }
.bundle-headline em { font-style: italic; color: var(--ember); font-weight: 420; }
.bundle-sub { margin-top: 26px; font-size: 18px; color: oklch(0.965 0.008 83 / 0.74); max-width: 520px; line-height: 1.55; }
.bundle-actions { margin-top: 34px; display: flex; gap: 16px; align-items: center; }
.btn-light { background: var(--bone); color: var(--ink); }
.btn-light::after { background: var(--terra); }
.btn-light:hover { color: var(--bone); }
.btn-link.light { color: oklch(0.965 0.008 83 / 0.7); border-color: oklch(0.965 0.008 83 / 0.25); }
.btn-link.light:hover { color: var(--ember); border-color: var(--ember); }
.bundle-comparison { background: var(--char-2); border: 1px solid var(--line-light); border-radius: 22px; padding: 38px; }
.bundle-row { display: grid; grid-template-columns: 1fr auto; gap: 20px; padding: 20px 0; border-bottom: 1px solid oklch(0.965 0.008 83 / 0.1); align-items: baseline; }
.bundle-row:last-child { border-bottom: none; padding-bottom: 0; }
.bundle-row:first-child { padding-top: 0; }
.bundle-row-label { font-size: 14px; color: oklch(0.965 0.008 83 / 0.66); }
.bundle-row-value { font-family: var(--display); font-size: 25px; color: var(--bone); font-weight: 500; font-variation-settings: "opsz" 40; }
.bundle-row-value.accent { color: var(--ember); font-style: italic; }
.bundle-row-value small { font-family: var(--body); font-size: 12px; font-weight: 400; color: oklch(0.965 0.008 83 / 0.5); margin-left: 4px; }
@media (max-width: 920px) { .bundle { grid-template-columns: 1fr; gap: 44px; } }

/* ---------- HOW ---------- */
.how { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; counter-reset: step; }
.step { counter-increment: step; position: relative; padding-top: 30px; border-top: 1px solid var(--line); }
.step::before { content: counter(step, decimal-leading-zero); font-family: var(--display); font-style: italic; font-size: 54px; color: var(--terra); line-height: 1; display: block; margin-bottom: 18px; font-weight: 400; }
.step h3 { font-family: var(--display); font-weight: 400; font-size: 26px; letter-spacing: -0.02em; margin: 0 0 12px; line-height: 1.15; font-variation-settings: "opsz" 40; }
.step p { color: var(--ink-soft); margin: 0; font-size: 15px; line-height: 1.6; }
@media (max-width: 920px) { .how { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- PRICING ---------- */
.price-table { border-top: 1px solid var(--line); }
.price-row { display: grid; grid-template-columns: 1.5fr 2.5fr 1fr 1fr; gap: 24px; padding: 26px 0; border-bottom: 1px solid var(--line); align-items: baseline; transition: padding-left .3s var(--ease-out-quart), background .3s; }
.price-row:not(.price-head):hover { padding-left: 14px; background: oklch(0.585 0.155 38 / 0.04); }
.price-name { font-family: var(--display); font-size: 22px; font-weight: 500; letter-spacing: -0.01em; font-variation-settings: "opsz" 32; }
.price-name em { font-style: italic; color: var(--terra); }
.price-desc { color: var(--ink-soft); font-size: 14px; line-height: 1.5; }
.price-monthly { font-family: var(--display); font-weight: 500; font-size: 21px; text-align: right; font-variation-settings: "opsz" 32; }
.price-monthly span { font-family: var(--body); font-size: 12px; color: var(--ink-mute); font-weight: 400; }
.price-setup { text-align: right; color: var(--ink-mute); font-size: 13px; font-family: var(--mono); }
.price-head { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-mute); padding: 0 0 16px; border-bottom: 1px solid var(--line-strong); }
.price-row.highlight { background: oklch(0.585 0.155 38 / 0.06); padding-left: 18px; border-radius: 6px; }
.price-row.highlight:hover { padding-left: 22px; }
.price-tag { display: inline-block; margin-left: 10px; font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; background: var(--terra); color: var(--bone); padding: 3px 9px; border-radius: 5px; vertical-align: middle; }
.price-note { margin-top: 30px; font-size: 13px; color: var(--ink-mute); max-width: 680px; line-height: 1.6; }
@media (max-width: 820px) {
  .price-row { grid-template-columns: 1fr 1fr; }
  .price-desc { grid-column: 1 / -1; order: 3; }
  .price-monthly, .price-setup { text-align: left; }
  .price-head { display: none; }
}

/* ---------- WHY ---------- */
.why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }
.why-cell { background: var(--cream); padding: 44px 36px; transition: background .4s; }
section.alt .why-cell { background: var(--bone); }
.why-cell:hover { background: var(--sand); }
.why-num { font-family: var(--mono); font-size: 12px; color: var(--terra); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.1em; }
.why-title { font-family: var(--display); font-weight: 400; font-size: 25px; line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 14px; font-variation-settings: "opsz" 32; }
.why-body { font-size: 14px; line-height: 1.62; color: var(--ink-soft); margin: 0; }
@media (max-width: 920px) { .why { grid-template-columns: 1fr; } }

/* ---------- CONTACT ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: end; }
.contact-title { font-family: var(--display); font-weight: 340; font-size: clamp(46px, 7vw, 100px); line-height: 0.94; letter-spacing: -0.04em; margin: 0; font-variation-settings: "opsz" 120; }
.contact-title em { font-style: italic; color: var(--terra); font-weight: 420; }
.contact-lead { margin-top: 30px; font-size: 17px; line-height: 1.55; color: var(--ink-soft); max-width: 470px; }
.contact-channels { display: flex; flex-direction: column; }
.channel { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; border-top: 1px solid var(--line); transition: padding-left .3s var(--ease-out-quart), color .25s; }
.channel:last-child { border-bottom: 1px solid var(--line); }
.channel:hover { padding-left: 10px; }
.channel-label { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-mute); }
.channel-value { font-family: var(--display); font-size: 22px; font-weight: 500; font-variation-settings: "opsz" 32; transition: color .25s; display: inline-flex; align-items: center; gap: 10px; }
.channel:hover .channel-value { color: var(--terra); }
.channel.primary .channel-value { color: var(--terra); }
.channel .tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bone); background: var(--terra); padding: 3px 8px; border-radius: 5px; }
@media (max-width: 920px) { .contact { grid-template-columns: 1fr; gap: 44px; } }

/* ---------- FOOTER ---------- */
footer { padding: 52px 0 40px; border-top: 1px solid var(--line); background: var(--bone); }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 28px; flex-wrap: wrap; font-size: 13px; color: var(--ink-mute); }
.footer-inner em { font-family: var(--display); font-style: italic; color: var(--terra); }
.footer-legal { max-width: 420px; line-height: 1.6; }
.footer-legal strong { color: var(--ink-soft); font-weight: 500; }
.footer-meta { font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; text-align: right; line-height: 1.8; }

/* ---------- REVEAL ----------
   Progressive enhancement: content is VISIBLE by default. The hidden-then-reveal
   only applies where scripting is available, so no-JS / crawler / slow-JS users
   always get the full offer + pricing. Utility over decoration. */
@media (scripting: enabled) {
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease-out-expo), transform .9s var(--ease-out-expo); }
  .reveal.in { opacity: 1; transform: translateY(0); }
  .stagger > * { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease-out-expo), transform .8s var(--ease-out-expo); }
  .stagger.in > * { opacity: 1; transform: translateY(0); }
  .stagger.in > *:nth-child(2) { transition-delay: .08s; }
  .stagger.in > *:nth-child(3) { transition-delay: .16s; }
  .stagger.in > *:nth-child(4) { transition-delay: .24s; }
  .stagger.in > *:nth-child(5) { transition-delay: .32s; }
  .stagger.in > *:nth-child(6) { transition-delay: .40s; }
  .w > span { transform: translateY(106%); animation: word-rise 0.95s var(--ease-out-expo) forwards; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal, .stagger > * { opacity: 1; transform: none; }
  .w > span { transform: none; }
  .marquee-track { animation: none; }
  .hero-canvas, .grain, .cursor { display: none; }
}

/* ============================================================
   POLISH PASS — the last 5%: focus, balance, touch, legibility
   ============================================================ */

/* on-brand keyboard focus rings (terra works on both cream + espresso) */
a:focus-visible, button:focus-visible,
.btn:focus-visible, .nav-cta:focus-visible, .btn-link:focus-visible,
.lang a:focus-visible, .channel:focus-visible, .logo:focus-visible {
  outline: 2px solid var(--terra);
  outline-offset: 3px;
  border-radius: 10px;
}
/* mouse users keep the clean look; only keyboard gets the ring */
a:focus:not(:focus-visible), button:focus:not(:focus-visible) { outline: none; }

/* kill headline widows/orphans, soften body wrapping */
h1.hero-title, .section-title, .bundle-headline, .contact-title,
.sku-name, .why-title, .step h3, .price-name {
  text-wrap: balance;
}
.hero-sub, .bundle-sub, .contact-lead, .price-note, .why-body, .sku-desc {
  text-wrap: pretty;
}

/* mobile: real 44px touch targets */
@media (max-width: 760px) {
  .lang a { padding: 10px 11px; }
  .nav-cta { padding: 12px 18px; }
  .btn-link { padding: 11px 0; }
  .channel { padding: 22px 0; }
}

/* Futurism-without-slop: instrument precision. Numbers read as a spec sheet,
   not prose. Tabular figures keep every price column optically aligned. */
.sku-price-amount, .price-monthly, .price-setup, .bundle-row-value,
.hero-meta dd, .tier, .lead-rank {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}
