:root {
  --bg: #f6f4ef;
  --paper: #fbf9f4;
  --ink: #111110;
  --ink-soft: #1c1b18;
  --muted: #5a564d;
  --gold: #c9a227;
  --gold-2: #e8d48b;
  --gold-3: #a8882a;
  --gold-deep: #8a6d1c;
  --silver: #8a9199;
  --silver-2: #c5cad1;
  --black: #000000;
  --card: #fbf9f4;
  --border: rgba(17, 17, 16, .08);
  --border-strong: rgba(17, 17, 16, .14);
  --c-card: rgba(251, 249, 244, .86);
  --c-border: rgba(17, 17, 16, .1);
  --ink-card: #111110;
  --ink-card-2: #191815;
  --ink-line: rgba(201, 162, 39, .22);
  --ink-muted: #b6b0a4;
  --ink-text: #f4f0e6;
  --glow: linear-gradient(120deg, #d4af37 0%, #c5cad1 48%, #c9a227 100%);
  --metal: linear-gradient(135deg, #d4af37 0%, #f0e6c8 22%, #c0c6ce 52%, #8a9199 78%, #c9a84c 100%);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --header-h: calc(4.25rem + var(--safe-top));
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: "Jost", "Inter", sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  cursor: auto;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed; inset: 0; pointer-events: none; z-index: 2;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
h1, h2, h3, h4 {
  font-family: "Bodoni Moda", "Times New Roman", serif;
  letter-spacing: -.03em;
  font-weight: 600;
  color: var(--ink);
}
a { color: inherit; }
button, a, .lang-btn, .nav-ham, .metal-btn {
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(201, 162, 39, .18);
}

.wrap { width: 100%; max-width: 80rem; margin: 0 auto; padding-left: 1rem; padding-right: 1rem; }
@media (min-width: 768px) { .wrap { padding-left: 2rem; padding-right: 2rem; } }

.kicker {
  display: inline-flex; align-items: center; gap: .65rem;
  font-family: "Jost", sans-serif;
  font-size: .68rem; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold-deep);
}
.kicker::before {
  content: ""; width: 22px; height: 1px; background: var(--gold);
}
.surface-ink .kicker,
.page-band .kicker,
.cta-band .kicker,
.why-card .kicker { color: var(--gold-2); }
.lead { max-width: 40rem; color: var(--muted); line-height: 1.7; font-size: 1.02rem; }

.cursor { display: none !important; }
.pt-overlay {
  position: fixed; inset: 0; background: #000; z-index: 888;
  pointer-events: none; transform-origin: bottom; transform: scaleY(0);
}

.gc {
  position: relative;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 1.35rem;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}
nav.gc { overflow: visible; }
.gc::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle 240px at var(--px, 50%) var(--py, 50%), rgba(201, 162, 39, .08), transparent 70%);
  border-radius: inherit; pointer-events: none; opacity: 0; transition: opacity .4s;
}
.gc:hover::after { opacity: 1; }
.glow-halo {
  position: absolute; inset: -2px; z-index: -1; background: var(--glow);
  filter: blur(38px); opacity: .28; border-radius: inherit; pointer-events: none;
}
.glow-border::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: var(--glow);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .4s; pointer-events: none;
}
.glow-border:hover::before, .glow-border.always::before { opacity: 1; }
.lift { transition: transform .4s cubic-bezier(.22, 1, .36, 1), border-color .4s, box-shadow .4s; }
.lift:hover {
  transform: translateY(-7px) scale(1.013);
  border-color: rgba(201, 162, 39, .45);
  box-shadow: 0 24px 50px rgba(10, 10, 10, .1);
}
.tilt { transform-style: preserve-3d; perspective: 900px; }
.tilt-inner { transform-style: preserve-3d; transition: transform .35s cubic-bezier(.22, 1, .36, 1); }

.surface-ink {
  background:
    radial-gradient(1200px 420px at 0% 0%, rgba(201, 162, 39, .08), transparent 50%),
    linear-gradient(180deg, #161513 0%, #0f0e0c 100%);
  color: var(--ink-text);
  border: 1px solid var(--ink-line);
  border-radius: 1.4rem;
  position: relative;
  overflow: hidden;
}
.surface-ink h1, .surface-ink h2, .surface-ink h3, .surface-ink h4 { color: #f7f3ea; }
.surface-ink .muted, .surface-ink .lead { color: var(--ink-muted); }
.surface-ink .font-semibold { color: #f4f0e6; }
.surface-ink a.block, .surface-ink a.break-all { color: #f4f0e6; }
.surface-ink::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle 240px at var(--px, 80%) var(--py, 20%), rgba(201, 162, 39, .1), transparent 70%);
  pointer-events: none; opacity: 0; transition: opacity .4s;
}
.surface-ink:hover::after { opacity: 1; }

.page-band, .cta-band {
  position: relative;
  background:
    radial-gradient(900px 380px at 12% 0%, rgba(201, 162, 39, .12), transparent 55%),
    linear-gradient(180deg, #0d0c0a 0%, #141310 100%);
  color: var(--ink-text);
  border-top: 1px solid rgba(201, 162, 39, .16);
  border-bottom: 1px solid rgba(201, 162, 39, .16);
}
.page-band h1, .page-band h2, .cta-band h2 { color: #f7f3ea; }
.page-band .lead, .cta-band .lead, .page-band .muted { color: var(--ink-muted); }
.page-band { padding: 4.5rem 0 3.4rem; }
.cta-band { padding: 4rem 0; text-align: center; }

.trust-row {
  display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.8rem;
}
.trust-chip {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem .9rem;
  border: 1px solid rgba(201, 162, 39, .28);
  border-radius: 99px;
  font-size: .78rem; letter-spacing: .04em;
  color: #efe8d4;
  background: rgba(255, 255, 255, .03);
}
.trust-chip i { color: var(--gold-2); width: 14px; height: 14px; }

.nl {
  position: relative; color: rgba(255, 255, 255, .72); font-size: .875rem; font-weight: 500; transition: color .3s;
  text-decoration: none;
}
.nl::after {
  content: ""; position: absolute; left: 0; bottom: -4px; width: 100%; height: 1.5px;
  background: var(--glow); transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.nl:hover { color: #fff; }
.nl:hover::after { transform: scaleX(1); }
.nl.is-active { color: #fff; }
.nl.is-active::after { transform: scaleX(1); }

.shimmer { position: relative; overflow: hidden; isolation: isolate; }
.shimmer::before {
  content: ""; position: absolute; top: -100%; left: -130%; width: 100%; height: 300%;
  background: linear-gradient(100deg, transparent 38%, rgba(255, 255, 255, .45) 50%, transparent 62%);
  animation: shim 2.6s linear infinite; z-index: 1;
}
@keyframes shim { to { left: 140%; } }

.grad-text {
  background: var(--glow);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.silver-text {
  background: linear-gradient(180deg, #e8eaed 0%, #8a9199 55%, #5c636a 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metal-btn {
  background: var(--metal);
  color: #0a0a0a !important;
  border: 1px solid rgba(201, 162, 39, .35);
  box-shadow: 0 8px 24px rgba(201, 162, 39, .22);
  text-decoration: none;
}
.metal-btn:hover { filter: brightness(1.06); }

.ghost-btn {
  display: inline-flex; align-items: center;
  border: 1px solid rgba(201, 162, 39, .32);
  color: #efe8d4; border-radius: 99px;
  padding: .7rem 1.15rem; font-size: .88rem; font-weight: 500;
  text-decoration: none; transition: border-color .25s, background .25s;
}
.ghost-btn:hover { border-color: var(--gold); background: rgba(201, 162, 39, .08); }

.code-block {
  background: linear-gradient(160deg, #141311, #0b0a09);
  border: 1px solid rgba(201, 162, 39, .22);
  border-radius: 1rem;
  padding: 1.1rem 1.2rem;
  font-size: .78rem;
  font-family: "Fira Code", "Cascadia Code", "Consolas", monospace;
  line-height: 1.6;
  white-space: pre;
  overflow: auto;
  color: var(--silver-2);
}
.code-block .kw { color: #d4af37; }
.code-block .fn { color: #c5cad1; }
.code-block .str { color: #e8d48b; }
.code-block .cm { color: #6e757c; }
.code-block .var { color: #f0e6c8; }
.code-block .num { color: #c9a227; }
.code-caret {
  display: inline-block; width: 7px; height: 1em; background: var(--gold);
  margin-left: 1px; vertical-align: text-bottom; animation: blink .9s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.rv { opacity: 0; transform: translateY(38px); }

.about-split {
  display: grid; gap: 1.5rem;
}
@media (min-width: 900px) {
  .about-split { grid-template-columns: 1.05fr .95fr; align-items: stretch; }
}
.about-copy {
  padding: 2rem 1.6rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 1.4rem;
}
.about-copy h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin: .7rem 0 1rem; }
.about-copy p { color: var(--muted); line-height: 1.75; font-size: .98rem; }
.about-code {
  padding: 1.4rem;
  display: flex; flex-direction: column; gap: .85rem;
  justify-content: center;
}

.why-card {
  display: flex; flex-direction: column; gap: .75rem;
  padding: 1.8rem 1.6rem;
  background:
    radial-gradient(420px 180px at 100% 0%, rgba(201, 162, 39, .1), transparent 60%),
    linear-gradient(180deg, #171613 0%, #0f0e0c 100%);
  border: 1px solid var(--ink-line);
  border-radius: 1.25rem;
  min-width: min(440px, 82vw);
  align-self: stretch;
  color: var(--ink-text);
  transition: border-color .4s, transform .4s, box-shadow .4s;
}
.why-card h3 { color: #f7f3ea; }
.why-card .muted { color: var(--ink-muted); }
.why-card > p { flex: 1; }
.why-card:hover {
  border-color: rgba(201, 162, 39, .5);
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .28);
}
.why-num {
  font-family: "Bodoni Moda", serif;
  font-size: 2.4rem; line-height: 1; color: rgba(201, 162, 39, .55);
}
.why-icon {
  width: 38px; height: 38px; border-radius: .75rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201, 162, 39, .12); color: var(--gold-2); flex-shrink: 0;
}

.client-card {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: .85rem; padding: 1.25rem 1.2rem 1.3rem;
  text-align: left; min-height: 300px; height: 100%;
  text-decoration: none; color: inherit;
  transition: transform .4s cubic-bezier(.22, 1, .36, 1), border-color .4s, box-shadow .4s;
}
.client-card .tilt-inner {
  display: flex; flex-direction: column; flex: 1; gap: .85rem; width: 100%;
}
.client-card .client-quote,
.client-card .soon-badge { margin-top: auto; }
.client-card.surface-ink { color: var(--ink-text); }
.client-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, .5);
  box-shadow: 0 24px 50px rgba(0, 0, 0, .22);
}
.client-card.is-disabled { cursor: default; }
.client-card.is-disabled:hover { transform: none; }
.logo-wrap {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 86px;
  background: #f4f1ea;
  border-radius: 1rem;
}
.logo-wrap img, .client-logo { max-height: 58px; max-width: 140px; width: auto; object-fit: contain; transition: transform .35s; }
.client-card:hover .logo-wrap img { transform: scale(1.05); }
.logo-fallback {
  width: 64px; height: 64px; border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  font-family: "Bodoni Moda", serif;
  font-weight: 700; font-size: .78rem;
  background-image: var(--metal);
  color: #0a0a0a;
  letter-spacing: .02em;
}
.stars { display: flex; gap: 3px; color: var(--gold); letter-spacing: .12em; font-size: .9rem; line-height: 1; }
.stars::before { content: "★★★★★"; }
.client-quote { font-size: .82rem; line-height: 1.55; color: var(--ink-muted); }
.client-card .text-sm { color: #f4f0e6; }
.soon-badge {
  display: inline-flex; align-items: center;
  font-size: .68rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-2);
  border: 1px solid rgba(201, 162, 39, .35);
  border-radius: 99px; padding: .28rem .65rem;
  background: rgba(201, 162, 39, .08);
}

footer.site-footer {
  background: #000; border-top: 1px solid rgba(201, 162, 39, .18);
  color: rgba(255, 255, 255, .7);
}
footer.site-footer a { color: rgba(255, 255, 255, .5); transition: color .25s; }
footer.site-footer a:hover { color: var(--gold-2); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #c5cad1; border-radius: 99px; }

.lang-btn {
  background: none; border: none; font-size: .75rem; font-family: inherit;
  min-width: 36px; min-height: 36px; padding: 6px 7px;
  color: rgba(255, 255, 255, .45); transition: color .25s;
}
.lang-btn.active { color: #fff; font-weight: 700; }
.lang-btn:hover { color: var(--gold-2); }

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  padding: calc(.45rem + var(--safe-top)) 1rem 0;
  transition: background .4s ease;
}
.site-header nav.site-nav {
  background: rgba(0, 0, 0, .78);
  border: 1px solid rgba(201, 162, 39, .16);
  color: #fff;
  transition: background .45s ease, box-shadow .45s ease, border-color .45s ease;
}
.site-header.is-scrolled nav.site-nav {
  background: #000;
  border-color: rgba(201, 162, 39, .28);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .28);
}

.site-nav { overflow: visible !important; display: flex; flex-direction: column; gap: .55rem; }
.nav-row1 { display: flex; align-items: center; justify-content: space-between; gap: .6rem; width: 100%; }
.nav-brand { display: flex; align-items: center; gap: .45rem; min-width: 0; flex: 1 1 auto; text-decoration: none; overflow: visible; }
.nav-brand-icon { height: 52px; width: auto; flex-shrink: 0; display: block; object-fit: contain; }
.nav-brand-sig {
  height: 42px; width: auto; max-width: 220px; flex-shrink: 1;
  display: block !important; object-fit: contain; object-position: left center;
}
.nav-desktop-links { display: none; align-items: center; gap: 1.75rem; flex: 1; justify-content: center; }
.nav-row2 { display: flex; align-items: center; justify-content: space-between; gap: .75rem; width: 100%; }
.nav-ham {
  display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  width: 50px; height: 50px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255, 255, 255, .12); border: 2px solid rgba(255, 255, 255, .55);
  z-index: 100; padding: 0;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .45);
  -webkit-tap-highlight-color: transparent;
}
.nav-ham span { display: block; width: 20px; height: 3px; background: #fff; border-radius: 3px; transition: all .35s cubic-bezier(.22, 1, .36, 1); }
.nav-ham.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-ham.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.mob-menu {
  position: fixed; inset: 0; z-index: 40;
  background: #070706;
  display: flex; flex-direction: column; justify-content: center; align-items: stretch;
  gap: .15rem;
  padding: calc(var(--header-h) + 1.2rem) 1.4rem calc(2.2rem + var(--safe-bottom));
  transform: translate3d(100%, 0, 0);
  transition: transform .32s cubic-bezier(.22, 1, .36, 1);
  overscroll-behavior: contain;
}
.mob-menu.open { transform: translate3d(0, 0, 0); }
.mob-link {
  font-size: clamp(1.55rem, 7vw, 2.05rem);
  font-weight: 600; color: #f0f0f6; text-decoration: none;
  letter-spacing: -.02em; font-family: "Bodoni Moda", serif;
  min-height: 52px; display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid rgba(201, 162, 39, .12);
  transition: color .2s;
}
.mob-link:hover, .mob-link:active, .mob-link.is-active { color: var(--gold-2); }
.mob-menu .metal-btn { align-self: center; margin-top: 1.4rem; min-height: 48px; }

.hero-pin { position: relative; }
.hero-sticky {
  height: 100dvh;
  min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  padding: calc(var(--header-h) + .5rem) 1rem calc(1.5rem + var(--safe-bottom));
  background:
    radial-gradient(900px 420px at 50% 18%, rgba(201, 162, 39, .16), transparent 58%),
    linear-gradient(180deg, #070706 0%, #11100c 72%, #16140f 100%);
  overflow: hidden;
}
.hero-stage { position: absolute; inset: 0; pointer-events: none; }
.hero-spot {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55;
}
.hero-spot-1 { width: 420px; height: 420px; background: #d4af37; top: -80px; left: 8%; }
.hero-spot-2 { width: 360px; height: 360px; background: #8a9199; bottom: -40px; right: 6%; opacity: .28; }
.browser {
  width: min(1040px, 100%);
  background: #0b0b0d;
  border-radius: 1.15rem;
  border: 1px solid rgba(201, 162, 39, .34);
  box-shadow:
    0 40px 110px rgba(0, 0, 0, .55),
    0 0 0 1px rgba(255, 255, 255, .05) inset,
    0 0 80px rgba(201, 162, 39, .12);
  overflow: hidden;
  transform: perspective(1400px) rotateX(7deg) scale(.86);
  transform-origin: center 70%;
}
.browser-chrome {
  display: flex; align-items: center; gap: .7rem;
  padding: .7rem 1rem;
  background: #111114;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.chrome-dots { display: flex; gap: .4rem; }
.chrome-dots span { width: 10px; height: 10px; border-radius: 50%; }
.chrome-dots span:nth-child(1) { background: #c9a227; }
.chrome-dots span:nth-child(2) { background: #c5cad1; }
.chrome-dots span:nth-child(3) { background: #8a9199; }
.chrome-url {
  flex: 1; height: 28px; border-radius: 99px;
  background: #1a1a1e; color: rgba(255, 255, 255, .45);
  font-size: .72rem; display: flex; align-items: center; padding: 0 .9rem;
  letter-spacing: .02em;
}
.browser-site { background: var(--bg); min-height: 420px; padding: 1.25rem 1.4rem 1.5rem; }
.mini-nav {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: #000; color: #fff; border-radius: .9rem; padding: .55rem .9rem;
  transform: translateY(-16px); opacity: 0;
}
.mini-nav-brand { display: flex; align-items: center; gap: .4rem; min-width: 0; }
.mini-nav-icon { height: 30px; width: auto; display: block; object-fit: contain; }
.mini-nav-sig { height: 24px; width: auto; max-width: 150px; display: block; object-fit: contain; object-position: left center; }
.mini-nav-links { display: none; gap: 1rem; font-size: .7rem; color: rgba(255, 255, 255, .62); }
.mini-cta {
  font-size: .65rem; font-weight: 700; border-radius: 99px; padding: .35rem .7rem;
  background: var(--metal); color: #0a0a0a;
}
.mini-body { padding: 1.6rem .4rem .4rem; }
.mini-h1 {
  font-family: "Cormorant Garamond", "Bodoni Moda", serif;
  font-size: clamp(2rem, 4.6vw, 3.55rem);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.08;
  opacity: 0; transform: translateY(18px);
}
.mini-sub {
  margin-top: .85rem; max-width: 34rem; font-size: .92rem; color: var(--muted); line-height: 1.6;
  opacity: 0; transform: translateY(14px);
}
.mini-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.2rem; opacity: 0; transform: translateY(12px); }
.mini-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; margin-top: 1.4rem;
  opacity: 0; transform: translateY(12px);
}
.mini-stat {
  background: #111110; border: 1px solid rgba(201, 162, 39, .22); border-radius: .9rem;
  text-align: center; padding: .8rem .4rem; color: #f4f0e6;
}
.mini-stat strong { display: block; font-family: "Bodoni Moda", serif; font-size: 1.2rem; }
.mini-stat span { font-size: .7rem; color: var(--ink-muted); }

.why-pin { position: relative; }
.why-sticky {
  height: 100dvh;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--header-h) + .4rem) 0 1.5rem;
  overflow: hidden;
}
.why-head { padding: 0 1.5rem; max-width: 80rem; margin: 0 auto 1.4rem; width: 100%; }
.why-track-wrap { overflow: hidden; }
.why-track {
  display: flex; align-items: stretch; gap: 1.1rem;
  padding: 0 1.5rem 0.4rem; width: max-content;
}
.why-progress { display: flex; gap: 6px; justify-content: center; margin-top: 1.4rem; }
.why-progress span { width: 28px; height: 3px; border-radius: 99px; background: #d5d7de; }
.why-progress span.on { background: var(--gold); }

.offer-section {
  display: grid; gap: 2rem;
  padding: 3.4rem 0 2rem;
}
@media (min-width: 1024px) {
  .offer-section { grid-template-columns: 220px 1fr; gap: 3rem; align-items: start; }
}
.offer-nav {
  display: flex; flex-direction: column; gap: .35rem;
}
@media (min-width: 1024px) {
  .offer-nav { position: sticky; top: calc(var(--header-h) + 1.4rem); }
}
.offer-nav a {
  display: flex; align-items: baseline; gap: .7rem;
  padding: .55rem 0;
  text-decoration: none;
  color: var(--muted);
  border-bottom: 1px solid transparent;
  font-size: .95rem;
  transition: color .25s, border-color .25s;
}
.offer-nav a span {
  font-family: "Bodoni Moda", serif;
  font-size: .82rem; color: var(--gold-3); min-width: 1.4rem;
}
.offer-nav em { font-style: normal; font-family: inherit; }
.offer-nav a:hover { color: var(--ink); }
.offer-nav a.is-on {
  color: var(--ink);
  border-bottom-color: rgba(201, 162, 39, .45);
}
.offer-list { display: flex; flex-direction: column; gap: 1.15rem; }
.offer {
  display: grid; gap: 1.2rem;
  padding: 1.7rem 1.4rem 1.5rem;
  scroll-margin-top: calc(var(--header-h) + 1.2rem);
  transition: border-color .35s, transform .35s, box-shadow .35s;
}
.offer:hover {
  border-color: rgba(201, 162, 39, .48);
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .22);
}
@media (min-width: 768px) {
  .offer { grid-template-columns: 88px 1fr; padding: 2.1rem 2rem; gap: 1.6rem; }
}
.offer-num {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: .9;
  color: rgba(201, 162, 39, .38);
}
.offer-icon {
  width: 44px; height: 44px; border-radius: .85rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201, 162, 39, .12); color: var(--gold-2);
  margin-bottom: .85rem;
}
.offer h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); margin-bottom: .55rem; }
.offer .offer-copy { color: var(--ink-muted); line-height: 1.7; max-width: 40rem; }

.trait-list { display: grid; gap: .65rem; margin-top: 1.25rem; }
.trait {
  display: flex; align-items: flex-start; gap: .7rem;
  padding: .85rem 1rem;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(201, 162, 39, .14);
  border-left: 2px solid var(--gold);
  border-radius: .85rem;
}
.trait p { color: #d8d2c5; font-size: .9rem; line-height: 1.55; }
.trait p strong { color: #f7f3ea; font-weight: 600; }
.trait-icon { flex-shrink: 0; color: var(--gold-2); margin-top: 2px; }

.process-band { padding: 2.5rem 0 4rem; }
.process-grid {
  display: grid; align-items: stretch; gap: .8rem;
  margin-top: 1.4rem;
}
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(3, 1fr); } }
.process-step {
  display: flex; flex-direction: column; height: 100%;
  padding: 1.3rem 1.2rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 1.1rem;
}
.process-step p { flex: 1; color: var(--muted); font-size: .9rem; }
.process-step b {
  display: block;
  font-family: "Bodoni Moda", serif;
  font-size: 1.7rem; font-weight: 600;
  color: var(--gold-deep); margin-bottom: .35rem;
}

.contact-row {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: .95rem 0; border-bottom: 1px solid rgba(201, 162, 39, .14);
}
.contact-row:last-child { border-bottom: none; }
.contact-icon { flex-shrink: 0; color: var(--gold-2); margin-top: 2px; }
.wa-card {
  background:
    radial-gradient(500px 220px at 0% 0%, rgba(37, 211, 102, .12), transparent 60%),
    linear-gradient(180deg, #151814 0%, #101210 100%);
  border: 1px solid rgba(37, 211, 102, .28);
  color: #f4f0e6;
}
.wa-card h2 { color: #f7f3ea; }
.wa-card .muted { color: #b9c4b8; }
.wa-glow {
  position: absolute; inset: -6px; z-index: -1;
  background: radial-gradient(circle, rgba(37, 211, 102, .28) 0%, transparent 70%);
  filter: blur(24px); opacity: .8; border-radius: inherit; pointer-events: none;
  animation: wa-pulse 2.5s ease-in-out infinite;
}
@keyframes wa-pulse { 0%, 100% { opacity: .45; } 50% { opacity: .9; } }

.muted { color: var(--muted); }
.ink { color: var(--ink); }
.has-top-pad { padding-top: calc(var(--header-h) + 2.4rem) !important; }

@keyframes riseIn {
  from { opacity: 0; transform: translate3d(0, 14px, 0); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1023px) {
  :root { --header-h: calc(3.75rem + var(--safe-top)); }

  .site-header { padding: calc(.38rem + var(--safe-top)) .7rem 0; }

  .site-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: .65rem;
    padding: .45rem .6rem !important;
  }
  .nav-row1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1 1 auto;
    min-width: 0;
    gap: .65rem;
    width: 100%;
  }
  .nav-row2 { display: none !important; }
  .nav-brand {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 52px);
    overflow: hidden;
  }
  .nav-brand-icon { height: 42px; width: auto; flex-shrink: 0; }
  .nav-brand-sig {
    height: 34px;
    max-width: 100%;
    flex: 1 1 auto;
    min-width: 0;
  }
  .nav-ham {
    display: flex !important;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin-left: auto;
  }
  .nav-ham span { width: 18px; height: 2px; }
  .nav-ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-cta, .nav-desktop-links { display: none !important; }
  .mob-langs {
    display: flex !important;
    align-self: center;
    margin-top: 1.15rem;
  }

  body { cursor: auto; }
  body::before { display: none; }
  .glow-halo, .wa-glow { display: none; }
  .shimmer::before { display: none; animation: none; }
  .gc, .surface-ink, nav.site-nav {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  nav.site-nav.gc { background: #000; }

  .code-block { white-space: pre-wrap; word-break: break-word; font-size: .7rem; padding: .9rem 1rem; }
  .logo-wrap { height: 68px; }
  .logo-wrap img, .client-logo { max-height: 44px; max-width: 108px; }
  .client-card { min-height: 260px; padding: 1.05rem 1rem 1.15rem; }
  .page-band { padding: 3.2rem 0 2.4rem; }
  .page-band h1 { font-size: clamp(1.85rem, 8.2vw, 2.55rem); word-break: break-word; }
  .offer { scroll-margin-top: calc(var(--header-h) + 3.6rem); }
  .cta-band { padding: 3rem 0; }
  .has-top-pad { padding-top: calc(var(--header-h) + 1.35rem) !important; }
  .about-copy { padding: 1.45rem 1.2rem; }
  .about-copy h2 { font-size: clamp(1.7rem, 8vw, 2.35rem); }
  .about-copy p { font-size: .94rem; }
  .process-band { padding: 1.6rem 0 3.2rem; }
  .process-step { padding: 1.15rem 1.1rem; }
  .offer { padding: 1.35rem 1.15rem 1.25rem; }
  .offer:hover { transform: none; box-shadow: none; }
  .trait { padding: .75rem .85rem; }
  .lead { font-size: .98rem; }

  .mini-nav-links { display: none !important; }
  .mini-nav {
    gap: .45rem;
    padding: .45rem .55rem;
    overflow: hidden;
  }
  .mini-nav-brand {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
  }
  .mini-nav-icon { height: 22px; flex-shrink: 0; }
  .mini-nav-sig {
    height: 18px;
    max-width: 100%;
    flex: 1 1 auto;
    min-width: 0;
  }
  .mini-cta {
    flex: 0 0 auto;
    max-width: 42%;
    font-size: .58rem;
    padding: .32rem .55rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mini-h1 { font-size: clamp(1.55rem, 7.4vw, 2.15rem); }
  .mini-sub { font-size: .86rem; margin-top: .7rem; }
  .mini-actions { margin-top: 1rem; gap: .55rem; }
  .mini-actions a { min-height: 44px; }
  .mini-stats { gap: .5rem; margin-top: 1.1rem; }
  .mini-stat { padding: .65rem .3rem; }
  .mini-stat strong { font-size: 1.05rem; }
  .browser {
    box-shadow: 0 18px 48px rgba(0, 0, 0, .4);
    border-radius: 1rem;
  }
  .browser-chrome { padding: .55rem .75rem; }
  .chrome-url { height: 24px; font-size: .64rem; }
  .chrome-dots span { width: 8px; height: 8px; }
  .browser-site { min-height: 0; padding: .85rem .8rem 1rem; }
  .hero-sticky {
    height: 100dvh;
    min-height: 100dvh;
    padding: calc(var(--header-h) + .55rem) .75rem calc(1.1rem + var(--safe-bottom));
    background: linear-gradient(180deg, #070706 0%, #12110d 100%);
  }
  .hero-spot { filter: blur(70px); opacity: .32; }
  .hero-spot-1 { width: 220px; height: 220px; }
  .hero-spot-2 { width: 180px; height: 180px; }

  .why-sticky {
    height: 100dvh;
    min-height: 100dvh;
    max-width: 100%;
    min-width: 0;
    padding: calc(var(--header-h) + .3rem) 0 1.2rem;
    overflow: hidden;
  }
  .why-head { padding: 0 1rem; margin-bottom: 1rem; }
  .why-pin {
    max-width: 100%;
    overflow: hidden;
  }
  .why-track-wrap {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    touch-action: pan-y;
    cursor: grab;
  }
  .why-track-wrap.is-dragging {
    cursor: grabbing;
    touch-action: none;
  }
  .why-track {
    display: flex; align-items: stretch; width: max-content;
    gap: .85rem; padding: 0 1rem .35rem;
  }
  .why-card {
    min-width: min(86vw, 340px);
    max-width: 340px;
    flex-shrink: 0;
    align-self: stretch;
    padding: 1.4rem 1.25rem;
    user-select: none;
    -webkit-user-select: none;
  }
  .why-progress { margin-top: 1.05rem; }
  .why-progress span {
    cursor: pointer;
    position: relative;
  }
  .why-progress span::after {
    content: "";
    position: absolute;
    inset: -12px -6px;
  }

  .offer-section { padding: 2rem 0 1.4rem; gap: 1.1rem; }
  .offer-nav {
    position: sticky;
    top: calc(var(--header-h) - 2px);
    z-index: 16;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: .45rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    background: var(--bg);
    margin: 0 -1rem;
    padding: .55rem 1rem .7rem;
    border-bottom: 1px solid var(--border);
  }
  .offer-nav::-webkit-scrollbar { display: none; }
  .offer-nav .kicker { display: none; }
  .offer-nav a {
    flex: 0 0 auto;
    border: 1px solid var(--border);
    border-radius: 99px;
    padding: .48rem .8rem;
    font-size: .78rem;
    min-height: 40px;
    align-items: center;
  }
  .offer-nav a.is-on {
    color: #fff;
    background: #111110;
    border-color: rgba(201, 162, 39, .45);
  }

  .page-band .kicker { animation: riseIn .32s ease both; }
  .page-band h1 { animation: riseIn .4s ease .05s both; }
  .page-band .lead { animation: riseIn .34s ease .1s both; }
  .page-band .trust-row { animation: riseIn .32s ease .16s both; }

  .contact-row a { min-height: 40px; display: flex; align-items: center; }
  footer.site-footer { padding-bottom: calc(1.15rem + var(--safe-bottom)); }
  footer.site-footer a {
    min-width: 44px; min-height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
  }
}

@media (max-width: 380px) {
  .nav-brand-icon { height: 38px; }
  .nav-brand-sig { height: 30px; }
  .nav-ham { flex-basis: 40px; width: 40px; height: 40px; }
  .nav-brand { max-width: calc(100% - 48px); }
  .mini-cta { max-width: 36%; font-size: .54rem; padding: .28rem .45rem; }
}

@media (min-width: 1024px) {
  :root { --header-h: 92px; }
  .site-header { padding-left: 2rem; padding-right: 2rem; }
  .site-nav { flex-direction: row; flex-wrap: wrap; align-items: center; gap: .75rem 1rem; }
  .nav-row1 { flex: 1; min-width: 0; width: auto; }
  .nav-brand { flex: none; }
  .nav-desktop-links { display: flex; }
  .nav-row2 { width: auto; margin-left: auto; flex: none; }
  .nav-ham { display: none !important; }
  .mob-menu { display: none !important; }
  .mob-langs { display: none !important; }
  .mini-nav-links { display: flex; }
}

@media (hover: none) {
  .lift:hover, .offer:hover, .why-card:hover, .client-card:hover, .gc:hover {
    transform: none;
    box-shadow: none;
  }
  .gc:hover::after, .surface-ink:hover::after { opacity: 0; }
  .metal-btn:active { filter: brightness(1.08); }
  .ghost-btn:active { background: rgba(201, 162, 39, .1); }
  .client-card:active, .offer:active, .why-card:active {
    border-color: rgba(201, 162, 39, .5);
  }
}

@media (prefers-reduced-motion: reduce) {
  .browser, .browser-chrome, .mini-nav, .mini-h1, .mini-sub,
  .mini-actions, .mini-stats, .page-band .kicker, .page-band h1, .page-band .lead,
  .page-band .trust-row { animation: none !important; }
  .shimmer::before { animation: none; }
  .rv { opacity: 1; transform: none; }
  .browser, .browser-chrome, .mini-nav, .mini-h1, .mini-sub, .mini-actions, .mini-stats {
    opacity: 1; transform: none;
  }
  .mob-menu { transition: none; }
  html { scroll-behavior: auto; }
}

.footer-nap {
  font-size: .78rem; color: rgba(255, 255, 255, .45);
  margin-top: .4rem; line-height: 1.55;
}
.footer-nap a { color: rgba(255, 255, 255, .55); }
.mob-langs { display: none; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
