@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Darker+Grotesque:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.cdnfonts.com/css/monument-extended');

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

/* ============================================================
   ROOT — exact brand identity tokens
============================================================ */
:root {
  --void: #05040c;
  --deep: #080614;
  --panel: #0e0b1e;
  --mid: #16122a;
  --raised: #1e1a35;
  --white: #f8f4ff;
  --off-white: #e8e0f8;
  --cream: #d8c8f8;
  --purple: #5b0fff;
  --purple-mid: #7c2fff;
  --purple-light: #9b55ff;
  --fuchsia: #b830e8;
  --pink: #d8208a;
  --pink-light: #f040a8;
  --text: #ffffff;
  --text-mid: #f0eeff;
  --dim: #5a5080;
  --border: rgba(91,15,255,0.1);
  --border-light: rgba(91,15,255,0.06);
  --grad: linear-gradient(135deg, #5b0fff 0%, #8c28f0 28%, #b830e8 58%, #d8208a 82%, #f040a8 100%);
  --grad-soft: linear-gradient(135deg, rgba(91,15,255,0.14) 0%, rgba(184,48,232,0.08) 58%, rgba(216,32,138,0.06) 100%);
  --grad-h: linear-gradient(90deg, #5b0fff 0%, #b830e8 50%, #f040a8 100%);
  --nav-h: 80px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--void);
  font-family: 'Darker Grotesque', sans-serif;
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   ANIMATIONS — exact from brand identity
============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}
@keyframes gradRotate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes scrollReveal {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   UTILITIES
============================================================ */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.animate-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.animate-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   NAV — stacked lockup, full brand
============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(5,4,12,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 70px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
  line-height: 1;
}

.nav-logo-the {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--dim);
  display: block;
  margin-bottom: 0px;
}

.nav-logo-main {
  font-family: 'Monument Extended', sans-serif;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
}

.nav-logo-tagline {
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #a89ec8;
  margin-top: 2px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { opacity: 1; }

/* CTA — exact brand button */
.nav-cta {
  font-family: 'Monument Extended', sans-serif !important;
  font-weight: 800 !important;
  font-size: 9px !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--void) !important;
  background: var(--grad) !important;
  padding: 13px 26px !important;
  text-decoration: none !important;
  transition: opacity 0.2s, transform 0.2s !important;
  border: none !important;
}
.nav-cta:hover { opacity: 0.88 !important; transform: translateY(-1px) !important; }
.nav-cta::after { display: none !important; }

/* ============================================================
   TICKER — exact from brand identity
============================================================ */
.ticker-bar {
  width: 100%;
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  background: var(--grad);
}
.ticker-inner {
  display: inline-block;
  animation: ticker 34s linear infinite;
}
.ticker-item {
  display: inline-block;
  font-family: 'Monument Extended', sans-serif;
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(5,4,12,0.65);
  margin-right: 44px;
}
.ticker-sep {
  display: inline-block;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(5,4,12,0.22);
  margin-right: 44px;
  vertical-align: middle;
}

/* ============================================================
   SECTION LABEL — from brand identity
============================================================ */
.section-label {
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 20px;
  display: block;
}

/* ============================================================
   BUTTONS — exact brand treatment
============================================================ */
.btn-primary {
  display: inline-block;
  font-family: 'Monument Extended', sans-serif;
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--void);
  background: var(--grad);
  padding: 18px 44px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  font-family: 'Monument Extended', sans-serif;
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(91,15,255,0.35);
  padding: 17px 44px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-ghost:hover { border-color: var(--purple-mid); color: var(--purple-light); transform: translateY(-2px); }

/* ============================================================
   MESH + GRID — exact from brand identity
============================================================ */
.mesh-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 95% 5%, rgba(91,15,255,0.2) 0%, transparent 50%),
    radial-gradient(ellipse 50% 55% at 0% 100%, rgba(216,32,138,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(184,48,232,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(91,15,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,15,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

/* ============================================================
   EYEBROW DOT — from brand identity
============================================================ */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--purple-light);
  animation: pulse 2.5s ease infinite;
  box-shadow: 0 0 12px rgba(155,85,255,0.6);
  flex-shrink: 0;
}
.eyebrow-text {
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--purple-light);
}

/* ============================================================
   QUOTE BLOCK — from brand identity cover
============================================================ */
.quote-block {
  padding: 28px 32px;
  border-left: 3px solid;
  border-image: var(--grad) 1;
  background: rgba(91,15,255,0.08);
}
.quote-block-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: var(--white);
}
.quote-block-answer {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
  font-weight: 600;
}

/* ============================================================
   STORY BODY — from brand identity
============================================================ */
.story-body {
  font-size: 16px;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.85;
}
.story-body p { margin-bottom: 18px; }
.story-body p:last-child { margin-bottom: 0; }
.story-body strong { color: var(--white); font-weight: 500; }

/* ============================================================
   MISSION — from brand identity
============================================================ */
.mission-block {
  background: var(--void);
  border: 1px solid var(--border);
  padding: 44px;
}
.mission-label {
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 20px;
}
.mission-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 32px;
}
.mission-text em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   VALUE PROPS — from brand identity
============================================================ */
.value-props { display: flex; flex-direction: column; gap: 16px; }
.value-prop { display: flex; align-items: flex-start; gap: 14px; }
.vp-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--purple-mid);
  margin-top: 8px;
  flex-shrink: 0;
}
.vp-text {
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.6;
}
.vp-text strong { color: var(--white); font-weight: 500; }

/* ============================================================
   SERVICE ROWS — from brand identity how-it-works
============================================================ */
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  align-items: start;
  padding: 36px 70px;
  border-bottom: 1px solid var(--border);
  gap: 40px;
  transition: background 0.2s;
}
.service-row:hover { background: var(--panel); }
.service-num {
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 11px;
  color: var(--purple-light);
  letter-spacing: 0.1em;
  padding-top: 3px;
  font-weight: 500;
}
.service-title {
  font-family: 'Monument Extended', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.service-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
}

/* ============================================================
   LOGO LOCKUP — from brand identity logo system
============================================================ */
.ll-the {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--dim);
  display: block;
  margin-bottom: 2px;
}
.ll-main {
  font-family: 'Monument Extended', sans-serif;
  font-weight: 800;
  font-size: 42px;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: var(--white);
  display: block;
}
.ll-main .g {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ll-col {
  font-family: 'Darker Grotesque', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--dim);
  display: block;
  margin-top: 8px;
}

/* ============================================================
   TAGLINE ITEMS — from brand identity voice section
============================================================ */
.tagline-item {
  background: var(--void);
  border: 1px solid var(--border-light);
  padding: 28px 32px;
  transition: border-color 0.2s;
}
.tagline-item:hover { border-color: var(--border); }
.tagline-role {
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 10px;
}
.tagline-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--white);
  line-height: 1.35;
}
.tagline-text em {
  font-style: italic;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   DO / DON'T — from brand identity
============================================================ */
.do-dont { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.do-block {
  background: var(--void);
  padding: 32px;
  border: 1px solid var(--border-light);
  border-top: 2px solid var(--purple-mid);
}
.dont-block {
  background: var(--void);
  padding: 32px;
  border: 1px solid var(--border-light);
  border-top: 2px solid rgba(255,40,40,0.3);
}
.dd-label {
  font-family: 'Monument Extended', sans-serif;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.do-block .dd-label { color: var(--purple-light); }
.dont-block .dd-label { color: rgba(255,80,80,0.6); }
.dd-item {
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.5;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}
.dd-item:last-child { border-bottom: none; }
.dd-item strong { color: var(--white); font-weight: 500; }

/* ============================================================
   VOICE ATTRS — from brand identity
============================================================ */
.voice-attrs { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-bottom: 40px; }
.voice-attr {
  background: var(--void);
  padding: 28px 28px;
  border: 1px solid var(--border-light);
}
.va-label {
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 8px;
}
.va-title {
  font-family: 'Monument Extended', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.va-desc {
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.6;
}

/* ============================================================
   INSTAGRAM POST MOCKUPS — exact from brand identity
============================================================ */
.ig-post {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.igp-1 { background: var(--void); border: 1px solid var(--border); }
.igp-2 { background: var(--grad); }
.igp-3 { background: var(--panel); border: 1px solid var(--border); }
.igp-4 { background: var(--void); border: 1px solid var(--border); }
.igp-5 { background: var(--mid); }
.igp-6 { background: var(--white); }

.igp-tag {
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.igp-1 .igp-tag { color: var(--purple-light); }
.igp-2 .igp-tag { color: rgba(5,4,12,0.5); }
.igp-3 .igp-tag { color: var(--purple-light); }
.igp-4 .igp-tag { color: var(--purple-light); }
.igp-5 .igp-tag { color: var(--purple-light); }
.igp-6 .igp-tag { color: #999; }

.igp-headline {
  font-family: 'Monument Extended', sans-serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.igp-1 .igp-headline { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.igp-2 .igp-headline { color: var(--void); }
.igp-3 .igp-headline { color: var(--white); }
.igp-4 .igp-headline { color: var(--white); }
.igp-5 .igp-headline { color: var(--white); }
.igp-6 .igp-headline { color: var(--void); }

.igp-sub {
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 11px;
  font-weight: 300;
  margin-top: 6px;
  letter-spacing: 0.05em;
}
.igp-1 .igp-sub { color: var(--text-mid); }
.igp-2 .igp-sub { color: rgba(5,4,12,0.45); }
.igp-3 .igp-sub { color: var(--text-mid); }
.igp-4 .igp-sub { color: var(--text-mid); }
.igp-5 .igp-sub { color: var(--text-mid); }
.igp-6 .igp-sub { color: #999; }

.igp-logo-corner {
  position: absolute;
  top: 16px; right: 16px;
  font-family: 'Monument Extended', sans-serif;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.05em;
}
.igp-1 .igp-logo-corner, .igp-3 .igp-logo-corner, .igp-4 .igp-logo-corner, .igp-5 .igp-logo-corner { color: var(--dim); }
.igp-2 .igp-logo-corner { color: rgba(5,4,12,0.3); }
.igp-6 .igp-logo-corner { color: #ccc; }

.igp-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.igp-center-num {
  font-family: 'Monument Extended', sans-serif;
  font-weight: 800;
  font-size: 52px;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.igp-center-label {
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-top: 4px;
}

/* ============================================================
   STORY MOCKUP — from brand identity
============================================================ */
.story-mockup {
  aspect-ratio: 9/16;
  background: var(--void);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
}
.story-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 50% 20%, rgba(91,15,255,0.25) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(216,32,138,0.15) 0%, transparent 55%);
  pointer-events: none;
}
.story-logo {
  font-family: 'Monument Extended', sans-serif;
  font-weight: 800;
  font-size: 10px;
  color: var(--dim);
  position: absolute;
  top: 24px; left: 24px;
  letter-spacing: 0.05em;
}
.story-tag {
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.story-headline {
  font-family: 'Monument Extended', sans-serif;
  font-weight: 800;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative; z-index: 1;
}
.story-sub {
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 12px;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.story-cta {
  display: inline-block;
  background: var(--grad);
  font-family: 'Monument Extended', sans-serif;
  font-weight: 800;
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--void);
  padding: 11px 20px;
  position: relative; z-index: 1;
}

/* ============================================================
   PLATFORM BLOCKS — from brand identity
============================================================ */
.platform-block {
  background: var(--panel);
  padding: 32px 28px;
  border: 1px solid var(--border-light);
}
.platform-name {
  font-family: 'Monument Extended', sans-serif;
  font-weight: 800;
  font-size: 12px;
  color: var(--white);
  margin-bottom: 8px;
}
.platform-handle {
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 13px;
  color: var(--purple-light);
  font-weight: 400;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}
.platform-strategy {
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.6;
}

/* ============================================================
   CLOSING HEADLINE — from brand identity
============================================================ */
.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(48px, 6vw, 80px);
  color: var(--white);
  line-height: 1.02;
}
.closing-headline em {
  font-style: italic;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   SWATCH COLORS — from brand identity palette
============================================================ */
.swatch { display: flex; flex-direction: column; }
.swatch-color { height: 100px; margin-bottom: 12px; }
.swatch-grad { background: var(--grad); }
.swatch-purple { background: #5b0fff; }
.swatch-fuchsia { background: #b830e8; }
.swatch-pink { background: #d8208a; }
.swatch-pink-light { background: #f040a8; }
.swatch-name {
  font-family: 'Monument Extended', sans-serif;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.swatch-hex {
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 12px;
  color: var(--text-mid);
  font-weight: 300;
}

/* ============================================================
   SECTION HEADER BAND — from brand identity
============================================================ */
.section-band {
  width: 100%;
  padding: 20px 70px;
  background: var(--panel);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-band-label {
  font-family: 'Monument Extended', sans-serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-band-sub {
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 10px;
  color: var(--text-mid);
  letter-spacing: 0.1em;
  font-weight: 300;
}

/* ============================================================
   FOOTER — brand accurate
============================================================ */
footer {
  background: var(--void);
  border-top: 1px solid var(--border);
}
.footer-top {
  padding: 80px 70px 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  border-bottom: 1px solid var(--border-light);
}
.footer-logo-the {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--dim);
  display: block;
  margin-bottom: 2px;
}
.footer-logo-main {
  font-family: 'Monument Extended', sans-serif;
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.01em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 4px;
}
.footer-logo-tagline {
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 20px;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.5;
  margin-bottom: 16px;
}
.footer-zero {
  font-size: 12px;
  color: var(--dim);
  font-weight: 300;
  letter-spacing: 0.05em;
}
.footer-col-title {
  font-family: 'Monument Extended', sans-serif;
  font-weight: 800;
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 20px;
  display: block;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  font-size: 14px;
  color: var(--text-mid);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  padding: 24px 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 12px;
  color: var(--dim);
  font-weight: 300;
  letter-spacing: 0.05em;
}

.page-wrap { padding-top: var(--nav-h); }

/* ============================================================
   NAV MOBILE
============================================================ */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--white); }

@media (max-width: 1024px) {
  .nav { padding: 0 24px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--deep);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
  }
  .nav-links.open { display: flex; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; padding: 60px 24px; }
  .footer-bottom { padding: 20px 24px; flex-direction: column; gap: 8px; text-align: center; }
  .service-row { grid-template-columns: 1fr; padding: 28px 24px; gap: 12px; }
  .do-dont { grid-template-columns: 1fr; }
  .voice-attrs { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ============================================================
   SOCIAL ICONS
============================================================ */
.social-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-icon {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  flex-shrink: 0;
}

.social-icon:hover {
  border-color: var(--purple-mid);
  color: var(--white);
  background: rgba(91,15,255,0.1);
}

.social-icon svg {
  width: 16px; height: 16px;
  fill: currentColor;
}

/* Footer social row */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social .social-icon {
  width: 34px; height: 34px;
}

/* ============================================================
   PROMISE SECTION — streamlined 4-card layout from brand identity
============================================================ */
.promise-section {
  width: 100%;
  background: var(--void);
  padding: 100px 70px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.promise-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(91,15,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.promise-headline {
  font-family: 'Monument Extended', sans-serif;
  font-weight: 800;
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.promise-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.promise-card {
  background: var(--panel);
  border: 1px solid var(--border-light);
  padding: 36px 28px;
  transition: background 0.2s, border-color 0.2s;
}

.promise-card:hover {
  background: var(--mid);
  border-color: var(--border);
}

.promise-card-num {
  font-family: 'Monument Extended', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.1em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  display: block;
}

.promise-card-title {
  font-size: 15px;
  color: var(--white);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
  font-family: 'Darker Grotesque', sans-serif;
}

.promise-card-desc {
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.7;
}

.promise-banner {
  background: var(--grad);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.promise-banner-main {
  font-family: 'Monument Extended', sans-serif;
  font-weight: 800;
  font-size: clamp(14px, 2vw, 20px);
  color: var(--void);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.promise-banner-sub {
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 13px;
  color: rgba(5,4,12,0.5);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ============================================================
   WIN WHEN YOU WIN BLOCK
============================================================ */
.win-block {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 52px 60px;
  position: relative;
  overflow: hidden;
}

.win-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-soft);
  pointer-events: none;
}

.win-block-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.win-headline {
  font-family: 'Monument Extended', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
}

.win-items {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.win-item {
  background: var(--void);
  border: 1px solid var(--border-light);
  padding: 18px 24px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--white);
  line-height: 1.3;
}

.win-item em {
  font-style: italic;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 900px) {
  .promise-section { padding: 80px 24px; }
  .promise-cards { grid-template-columns: 1fr 1fr; }
  .promise-banner { flex-direction: column; gap: 12px; }
  .win-block { padding: 40px 24px; }
  .win-block-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .promise-cards { grid-template-columns: 1fr; }
}
