@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

/* ─── TOKENS ──────────────────────────────────────── */
:root {
  --canvas:   #16151A;
  --base:     #100F13;
  --deep:     #0B0A0E;
  --surface:  rgba(255,255,255,0.030);
  --raised:   rgba(255,255,255,0.052);
  --high:     rgba(255,255,255,0.085);
  --lift:     0 18px 40px rgba(0,0,0,0.45);
  --lift-lg:  0 30px 70px rgba(0,0,0,0.55);
  --edge:     inset 0 1px 0 rgba(255,255,255,0.06);
  --gold:     #C9A84C;
  --gold-dim: rgba(201,168,76,0.12);
  --gold-mid: rgba(201,168,76,0.25);
  --white:    #FFFFFF;
  --t1:       rgba(255,255,255,0.92);
  --t2:       rgba(255,255,255,0.55);
  --t3:       rgba(255,255,255,0.30);
  --t4:       rgba(255,255,255,0.12);
  --border:   rgba(255,255,255,0.07);
  --border-g: rgba(201,168,76,0.28);
  --font:     'Montserrat', sans-serif;

  /* legacy compat */
  --black:      #16151A;
  --cream:      #F5EFE0;
  --cream-dark: #EDE5D0;
  --gray:       #6B6B6B;
  --light:      #1C1B21;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--t1);
  background: var(--base);
  line-height: 1.6;
  position: relative;
}

/* ─── AMBIENT ROOM LIGHT ──────────────────────────── */
/* A fixed lighting rig behind every page: a warm key light from the
   upper left, a cooler fill from the lower right, and a deep falloff
   at the edges so the page reads as a dim lit room, not flat black. */
body::before {
  content: '';
  position: fixed;
  inset: -20vh -20vw;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(60vw 55vh at 18% 12%,  rgba(201,168,76,0.22) 0%, rgba(201,168,76,0.07) 38%, transparent 68%),
    radial-gradient(70vw 60vh at 88% 78%,  rgba(120,140,190,0.15) 0%, rgba(120,140,190,0.045) 40%, transparent 70%),
    radial-gradient(90vw 70vh at 50% 46%,  rgba(255,255,255,0.062) 0%, transparent 62%),
    linear-gradient(165deg, #26232C 0%, #1C1A21 40%, #15131A 74%, #100E14 100%);
  animation: room-drift 26s ease-in-out infinite alternate;
}

/* Vignette plus a fine grain that kills gradient banding on dark screens. */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(115vw 105vh at 50% 38%, transparent 38%, rgba(6,5,9,0.34) 74%, rgba(6,5,9,0.60) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
  background-size: cover, 200px 200px;
}

@keyframes room-drift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(2.5%, 1.8%, 0) scale(1.06); }
}

/* Cursor spotlight, injected by main.js. A soft handheld light that
   follows the pointer and lifts whatever it passes over. */
.spotlight {
  position: fixed;
  top: 0;
  left: 0;
  width: 620px;
  height: 620px;
  margin: -310px 0 0 -310px;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.13) 0%, rgba(201,168,76,0.05) 32%, transparent 68%);
  opacity: 0;
  transition: opacity 0.6s ease;
  will-change: transform;
}
.spotlight.on { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  body::before { animation: none; }
  .spotlight { display: none; }
}

/* ─── AURORA GLOW ─────────────────────────────────── */
.aurora {
  position: relative;
}
.aurora::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.09) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.aurora > * { position: relative; z-index: 1; }

/* ─── NAV ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.35s ease;
}

nav.scrolled,
nav.nav-light {
  background: rgba(16,15,19,0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 16px 60px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

/* Served at the exact size it renders, so the emblem stays sharp
   instead of being squeezed down from a 1024px source. */
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
  background: #0E0E0E;
  box-shadow:
    0 0 0 1px rgba(201,168,76,0.22),
    0 4px 14px rgba(0,0,0,0.45),
    0 0 22px rgba(201,168,76,0.10);
  transition: box-shadow 0.45s cubic-bezier(0.16,1,0.3,1), transform 0.45s cubic-bezier(0.16,1,0.3,1);
}

.nav-logo:hover .brand-mark {
  transform: scale(1.05);
  box-shadow:
    0 0 0 1px rgba(201,168,76,0.45),
    0 6px 20px rgba(0,0,0,0.5),
    0 0 32px rgba(201,168,76,0.22);
}

.logo-text {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: var(--t2);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

/* Six items have to hold one line all the way down to the mobile
   breakpoint, so the row tightens rather than wrapping. */
.nav-links a { white-space: nowrap; }

@media (max-width: 1320px) {
  nav, nav.scrolled, nav.nav-light { padding-left: 36px; padding-right: 36px; }
  .nav-links { gap: 24px; }
}

@media (max-width: 1150px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 10px; letter-spacing: 0.08em; }
  .logo-text { font-size: 12px; }
}

@media (max-width: 900px) {
  .nav-links { gap: 12px; }
  .nav-links a { letter-spacing: 0.04em; }
  .logo-text span { display: none; }
  .logo-text { white-space: nowrap; }
}

@media (max-width: 880px) {
  /* Let's Talk is already in the nav here, so the duplicate button goes
     rather than crowding the links. */
  nav .nav-cta { display: none; }
}

.nav-cta { display: flex; align-items: center; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  display: block;
  transition: all 0.25s;
}

/* ─── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 30px;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.22s;
  border-radius: 6px;
}

.btn-gold {
  background: var(--gold);
  color: var(--canvas);
}
.btn-gold:hover { background: #D4B86A; transform: translateY(-1px); }

.btn-outline-white {
  background: transparent;
  color: var(--t1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.4);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border-g);
  border-radius: 6px;
}
.btn-outline-gold:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}

.btn-black {
  background: var(--raised);
  color: var(--t1);
  border: 1px solid var(--border);
  border-radius: 6px;
}
.btn-black:hover { background: var(--high); }

.btn-full { width: 100%; text-align: center; display: block; }

/* ─── HERO ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: transparent;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 60px 100px;
}

#sphere-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(201,168,76,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(201,168,76,0.04) 0%, transparent 45%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.eyebrow::before {
  content: '·';
  font-size: 20px;
  line-height: 1;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}

.hero h1 .gold { color: var(--gold); }

.hero-sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--t2);
  max-width: 480px;
  margin-bottom: 44px;
  line-height: 1.78;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 44px;
  left: 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  color: var(--t3);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.5), transparent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse { 0%,100%{opacity:.4} 50%{opacity:1} }

/* ─── PAGE HEADER ─────────────────────────────────── */
.page-header {
  background: transparent;
  padding: 200px 60px 120px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.05) 0%, transparent 50%);
}

.page-header .eyebrow { margin-bottom: 20px; }

.page-header h1 {
  font-size: clamp(60px, 10vw, 140px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 0.95;
  position: relative;
  z-index: 1;
}

/* ─── LAYOUT ──────────────────────────────────────── */
section { padding: 100px 60px; position: relative; }

/* Anchored sections stop clear of the fixed navbar instead of sliding
   underneath it. */
section[id] { scroll-margin-top: 104px; }

/* Tinted panels are translucent so the room light reads through them,
   with a lit top edge that gives each band a sense of thickness. */
section[style*="--surface"]::before,
section[style*="--canvas"]::before,
.cta-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.10) 22%, rgba(201,168,76,0.22) 50%, rgba(255,255,255,0.10) 78%, transparent 100%);
  pointer-events: none;
}
.section-sm { padding: 70px 60px; }

.container    { max-width: 1200px; margin: 0 auto; }
.container-sm { max-width: 860px;  margin: 0 auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label::before {
  content: '·';
  font-size: 18px;
  line-height: 1;
}

h2.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

h2.section-title.dark { color: var(--canvas); }

.section-body {
  font-size: 16px;
  color: var(--t2);
  max-width: 560px;
  line-height: 1.78;
  margin-bottom: 48px;
}

.gold-bar {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0 40px;
  opacity: 0.8;
}

/* ─── GRIDS ───────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 64px; align-items: center; }
.grid-2-equal { display: grid; grid-template-columns: repeat(2,1fr); gap: 40px; }

/* ─── CARDS ───────────────────────────────────────── */
.card {
  position: relative;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.055) 0%, rgba(255,255,255,0.022) 45%, rgba(255,255,255,0.012) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: var(--edge), var(--lift);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  background:
    linear-gradient(160deg, rgba(255,255,255,0.085) 0%, rgba(255,255,255,0.035) 45%, rgba(255,255,255,0.018) 100%);
  border-color: var(--border-g);
  transform: translateY(-6px);
  box-shadow: var(--edge), var(--lift-lg), 0 0 44px rgba(201,168,76,0.10);
}

.card-dark {
  background:
    linear-gradient(160deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.03) 50%, rgba(255,255,255,0.015) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--edge), var(--lift);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.card-dark:hover {
  border-color: var(--border-g);
  transform: translateY(-4px);
  box-shadow: var(--edge), var(--lift-lg);
}

.card-icon {
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.card p {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.72;
}

/* ─── WORK CARDS ──────────────────────────────────── */
/* Adapts to however many clients are listed: a single card stays a
   card instead of stretching across the row. */
.work-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 380px));
  justify-content: center;
}

.work-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  padding: 0;
  overflow: hidden;
}

/* Live screenshot of the site, lit to sit in the page rather than
   float on top of it. */
.work-shot {
  display: block;
  position: relative;
  aspect-ratio: 360 / 250;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--border);
}

.work-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0;
  display: block;
  filter: saturate(0.92) brightness(0.88);
  transform: scale(1.01);
  transition: transform 0.85s cubic-bezier(0.16,1,0.3,1), filter 0.6s ease;
}

/* A soft top-down shade so the screenshot blends into the card. */
.work-shot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,10,14,0.16) 0%, transparent 34%, rgba(11,10,14,0.44) 100%);
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.work-card:hover .work-shot img {
  transform: scale(1.06);
  filter: saturate(1) brightness(1);
}

.work-card:hover .work-shot::after { opacity: 0.45; }

.work-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 26px 26px 24px;
}

.work-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.work-card h3 { margin-bottom: 10px; }

.work-card p { flex: 1; margin-bottom: 22px; }

.work-url {
  font-size: 12px;
  font-weight: 600;
  color: var(--t2);
  letter-spacing: 0.01em;
  transition: color 0.25s;
}

.work-url i { font-size: 10px; margin-left: 6px; }

.work-card:hover .work-url { color: var(--gold); }

/* ─── STEP LIST ───────────────────────────────────── */
.steps { display: flex; flex-direction: column; }

.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.step:last-child { border-bottom: none; }

.step-num {
  font-size: 48px;
  font-weight: 800;
  color: rgba(201,168,76,0.15);
  letter-spacing: -0.03em;
  line-height: 1;
}

.step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.step p { font-size: 14px; color: var(--t2); line-height: 1.7; }

/* ─── FEATURE BOXES ───────────────────────────────── */
.features { display: grid; grid-template-columns: repeat(2,1fr); gap: 44px; }

.feature { display: flex; gap: 18px; align-items: flex-start; }

.feature-icon {
  width: 42px;
  height: 42px;
  background: var(--gold-dim);
  border: 1px solid var(--border-g);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 17px;
  color: var(--gold);
}

.feature h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--white); }
.feature p  { font-size: 13px; color: var(--t2); line-height: 1.65; }

/* ─── STATS ───────────────────────────────────────── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  padding: 56px 32px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-size: 72px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.stat-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t3);
}

/* ─── PACKAGE CARDS ───────────────────────────────── */
.package-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 36px 40px;
  position: relative;
  transition: background 0.25s, transform 0.25s;
}

.package-card:hover {
  background: var(--raised);
  transform: translateY(-6px);
}

.package-card.featured {
  background: var(--raised);
  border-color: transparent;
  background-clip: padding-box;
  box-shadow: 0 0 0 1px var(--gold);
}

.pkg-tier {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.pkg-name {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.pkg-price {
  font-size: 40px;
  font-weight: 800;
  color: var(--gold);
  margin: 12px 0 4px;
  letter-spacing: -0.02em;
}

.pkg-price span {
  font-size: 15px;
  font-weight: 500;
  color: var(--t3);
  letter-spacing: 0;
}

.pkg-tag {
  font-size: 13px;
  color: var(--t2);
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
}

.pkg-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 38px;
}

.pkg-includes li {
  font-size: 13px;
  color: var(--t2);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.pkg-includes li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 800;
  flex-shrink: 0;
}

.pkg-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--canvas);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 16px;
  white-space: nowrap;
  border-radius: 20px;
}

/* ─── DARK SECTION ───────────────────────────────── */
.section-dark { padding: 100px 60px; background: var(--canvas); }

/* ─── SURFACE SECTIONS ────────────────────────────── */
.bg-surface  { background: var(--surface);  }
.bg-raised   { background: var(--raised);   }

/* ─── CTA SECTION ─────────────────────────────────── */
.cta-section {
  background: var(--surface);
  text-align: center;
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.025em;
  position: relative;
}

.cta-section p {
  font-size: 16px;
  color: var(--t2);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.75;
  position: relative;
}

/* ─── CHECK LIST ──────────────────────────────────── */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-list li {
  font-size: 14px;
  color: var(--t2);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.55;
}

.check-list.light li { color: var(--t2); }

.check-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── TOOLS STRIP ─────────────────────────────────── */
.tools-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 36px;
}

.tool-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
  transition: all 0.2s;
}

.tool-tag:hover {
  background: var(--raised);
  border-color: var(--border-g);
  border-left-color: var(--gold);
}

.tool-tag i {
  color: var(--gold);
  font-size: 15px;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.tool-tag span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t2);
}

/* ─── DIVIDER ─────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ─── PULL QUOTE ──────────────────────────────────── */
.pull-quote {
  border-left: 2px solid var(--gold);
  padding: 8px 0 8px 28px;
  margin: 40px 0;
}

.pull-quote p {
  font-size: 18px;
  font-weight: 600;
  color: var(--t1);
  line-height: 1.55;
  letter-spacing: -0.01em;
}

/* ─── IMPACT STRIP ────────────────────────────────── */
.impact-strip {
  display: grid;
  grid-template-columns: repeat(3,1fr);
}

/* ─── CORNER LINK ─────────────────────────────────── */
.corner-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--border-g);
  border-radius: 6px;
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.corner-link:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}

/* ─── CAROUSEL MOCKUP ─────────────────────────────── */
.carousel-mockup {
  background: var(--raised);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 40px 36px;
  color: #fff;
  transition: border-color 0.25s;
}

.carousel-mockup:hover { border-color: var(--border-g); }

.slide-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.slide-headline {
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.slide-body { font-size: 13px; color: var(--t2); line-height: 1.65; }

.slide-nav {
  display: flex;
  gap: 6px;
  margin-top: 28px;
}

.slide-dot {
  width: 20px;
  height: 2px;
  background: var(--t4);
  border-radius: 2px;
}

.slide-dot.active { background: var(--gold); width: 32px; }

/* ─── CAPTION BLOCKS ──────────────────────────────── */
.caption-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 32px;
  margin-bottom: 16px;
}

.caption-platform {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.caption-text {
  font-size: 14px;
  color: var(--t1);
  line-height: 1.7;
  white-space: pre-line;
}

/* ─── COMPARE TABLE ───────────────────────────────── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
}

.compare-table th {
  padding: 20px 24px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--raised);
  color: var(--t2);
  border-right: 1px solid var(--border);
}

.compare-table th:first-child { text-align: left; color: var(--gold); }
.compare-table th.highlighted { color: var(--gold); }

.compare-table td {
  padding: 16px 24px;
  font-size: 13px;
  color: var(--t2);
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  text-align: center;
}

.compare-table td:first-child { text-align: left; color: var(--t1); font-weight: 500; }

.compare-table td .check { color: var(--gold); font-weight: 800; font-size: 14px; }
.compare-table td .dash  { color: var(--t4); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td.highlighted { background: rgba(201,168,76,0.04); }

/* ─── FAQ ─────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.faq-item:last-child { border-bottom: none; }

.faq-q {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-a {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.75;
}

/* ─── SERVICE BLOCKS ──────────────────────────────── */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-num {
  font-size: 80px;
  font-weight: 800;
  color: rgba(201,168,76,0.12);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.service-block h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.service-block p {
  font-size: 15px;
  color: var(--t2);
  line-height: 1.78;
  margin-bottom: 28px;
}

.service-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 44px 40px;
}

.service-box-dark {
  background: var(--raised);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 44px 40px;
}

/* ─── CONTACT FORM PIECES ─────────────────────────── */
.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 38px;
  height: 38px;
  background: var(--gold-dim);
  border: 1px solid var(--border-g);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
  color: var(--gold);
}

.contact-item h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-item p, .contact-item a {
  font-size: 13px;
  color: var(--t2);
  text-decoration: none;
  line-height: 1.6;
}

.contact-item a:hover { color: var(--white); }

.what-happens {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
}

.what-happens h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.what-happens h4::before { content: '·'; font-size: 18px; }

.what-step {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.what-step:last-child { margin-bottom: 0; }

.what-num {
  width: 26px;
  height: 26px;
  background: var(--gold);
  color: var(--canvas);
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 6px;
}

.what-step p {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.65;
  padding-top: 3px;
}

/* ─── ROUTE SELECTOR ──────────────────────────────── */
.route-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

.route-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
  position: relative;
  background: var(--surface);
}

.route-card:hover {
  border-color: var(--border-g);
  background: var(--raised);
  transform: translateY(-2px);
}

.route-card.selected {
  border-color: var(--gold);
  background: var(--raised);
}

.route-card .route-icon {
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 16px;
}

.route-card h3 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.route-card p {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.65;
}

.route-card .check {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: var(--canvas);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  border-radius: 50%;
}

.route-card.selected .check { display: flex; }

.form-reveal {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.form-reveal.visible {
  display: block;
  opacity: 1;
  transform: none;
}

.route-context {
  background: var(--raised);
  border: 1px solid var(--border-g);
  border-radius: 10px;
  color: var(--t1);
  padding: 16px 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}

.route-context i { color: var(--gold); font-size: 15px; }
.route-context strong { color: var(--gold); }

/* ─── DEMO/BANNER ─────────────────────────────────── */
.demo-banner {
  background: var(--gold);
  padding: 14px 60px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--canvas);
}

/* ─── FOOTER ──────────────────────────────────────── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 88px 60px 44px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--t3);
  line-height: 1.75;
  margin-top: 20px;
  max-width: 220px;
}

.footer-col h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  font-size: 13px;
  color: var(--t3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

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

.footer-copy { font-size: 12px; color: var(--t3); }

/* ─── FADE IN ─────────────────────────────────────── */
/* Expo-out easing: fast to start, long soft landing. Reads smoother
   than a symmetric ease at the same duration. */
.fade-in {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.9s cubic-bezier(0.16,1,0.3,1),
    transform 0.9s cubic-bezier(0.16,1,0.3,1);
  will-change: opacity, transform;
}
.fade-in.visible { opacity: 1; transform: none; }
.fade-in.done { will-change: auto; }

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  .work-shot img, .brand-mark { transition: none; }
}

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  nav, nav.scrolled, nav.nav-light { padding-left: 40px; padding-right: 40px; }
  section, .cta-section, .section-dark { padding-left: 40px; padding-right: 40px; }
  .section-sm { padding-left: 40px; padding-right: 40px; }
  .hero, .page-header { padding-left: 40px; padding-right: 40px; }
  footer { padding-left: 40px; padding-right: 40px; }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  nav, nav.scrolled, nav.nav-light { padding-left: 24px; padding-right: 24px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(16,15,19,0.94);
    backdrop-filter: blur(18px);
    padding: 16px 24px 24px;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--border);
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
  }

  .nav-toggle { display: flex; }
  .nav-cta    { display: none; }

  section, .cta-section, .section-dark { padding: 64px 24px; }
  .section-sm { padding: 50px 24px; }
  .hero { padding: 120px 24px 80px; }
  .page-header { padding: 160px 24px 80px; }
  footer { padding: 70px 24px 40px; }
  .demo-banner { padding: 12px 24px; }

  .grid-3, .grid-2, .grid-2-equal, .features { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .impact-strip { grid-template-columns: 1fr !important; }
  .tools-strip { grid-template-columns: 1fr; }
  .package-card { padding: 36px 24px 32px; }
  .carousel-mockup { padding: 28px 24px; }
  .service-block, .service-block.reverse { grid-template-columns: 1fr; direction: ltr; gap: 32px; padding: 60px 0; }
  .route-selector { grid-template-columns: 1fr; }

  /* Inline grids (e.g. the "How It Works" step strips) can't shrink below their
     content and force horizontal overflow — collapse them to 2 columns here. */
  [style*="repeat(4,1fr)"], [style*="repeat(3,1fr)"] { grid-template-columns: 1fr 1fr !important; }
  [style*="repeat(2,1fr)"] { grid-template-columns: 1fr !important; }
}

/* ─── MOBILE OVERFLOW SAFETY ───────────────────────── */
html, body { overflow-x: hidden; max-width: 100%; }
img, canvas, svg, video, table, iframe { max-width: 100%; }

/* Particle-logo animation is desktop-only — hide it on phones */
@media (max-width: 768px) {
  #sphere-canvas { display: none !important; }
}

@media (max-width: 480px) {
  /* On the smallest screens, stack the step strips fully */
  [style*="repeat(4,1fr)"], [style*="repeat(3,1fr)"] { grid-template-columns: 1fr !important; }
}

/* ─── COMING SOON ─────────────────────────────────── */
.soon-badge {
  display: inline-block;
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid var(--border-g);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  vertical-align: middle;
}
.soon-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
  background: var(--gold-dim);
  border: 1px solid var(--border-g);
  border-radius: 16px;
  padding: 20px 28px;
  margin: 0 auto 48px;
  max-width: 780px;
}
.soon-banner p { font-size: 13px; color: var(--t2); margin: 0; line-height: 1.6; }
.soon-zone { position: relative; opacity: 0.6; filter: grayscale(0.25); pointer-events: none; }
.btn.btn-soon {
  background: transparent !important;
  border: 1px solid var(--border-g) !important;
  color: var(--gold) !important;
  pointer-events: none;
  cursor: default;
  opacity: 0.85;
}
