/* =====================================================================
   PKMG Ads — glassmorphism, gray/steel palette
   Display: Archivo (heavy sans-serif)
   Body:    Geist
   Mono:    Geist Mono
   ===================================================================== */

:root {
  /* Graphite / steel base */
  --bg-0: #07090c;
  --bg-1: #0d1015;
  --bg-2: #14181f;

  /* Steel gray palette — desaturated, cool.
     Variable names kept for compatibility. */
  --c-cyan:    #aab4be;   /* primary — light steel */
  --c-magenta: #6e7884;   /* secondary — mid steel */
  --c-amber:   #98876c;   /* accent — warm steel (subtle gunmetal/bronze) */
  --c-violet:  #353c46;   /* tertiary — dark slate */

  /* Glass surfaces */
  --glass-bg:       rgba(255, 255, 255, 0.035);
  --glass-bg-high:  rgba(255, 255, 255, 0.06);
  --glass-border:   rgba(255, 255, 255, 0.10);
  --glass-hi:       rgba(255, 255, 255, 0.22); /* light edge */
  --glass-blur:     28px;

  /* Text — neutral cool gray */
  --t-primary:   rgba(255, 255, 255, 0.96);
  --t-secondary: rgba(220, 228, 236, 0.62);
  --t-muted:     rgba(220, 228, 236, 0.38);

  /* Layout */
  --max-w: 1280px;
  --pad-x: clamp(20px, 4vw, 56px);

  /* Motion */
  --ease-out: cubic-bezier(.2, .7, .2, 1);
  --ease-io:  cubic-bezier(.65, 0, .35, 1);
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html, body { margin: 0; padding: 0; }

body {
  font-family: 'Geist', ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--t-primary);
  background: var(--bg-0);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  letter-spacing: -0.005em;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { list-style: none; margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; }
em { font-style: normal; }

::selection {
  background: rgba(58, 102, 136, 0.35);
  color: #fff;
}

/* =====================================================================
   Atmosphere: orbs + noise + grid
   ===================================================================== */
.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(42, 66, 88, 0.22), transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(110, 165, 196, 0.10), transparent 50%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 40%, #04020a 100%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.32;
  will-change: transform;
  mix-blend-mode: screen;
  transition: transform 1.8s var(--ease-out);
}
.orb--cyan    { width: 520px; height: 520px; background: var(--c-cyan);    top: -120px; left: -120px; opacity: 0.30; animation: drift1 24s ease-in-out infinite; }
.orb--magenta { width: 620px; height: 620px; background: var(--c-magenta); top: 28vh;   right: -180px; opacity: 0.34; animation: drift2 28s ease-in-out infinite; }
.orb--amber   { width: 420px; height: 420px; background: var(--c-amber);   top: 120vh;  left: 10vw;    opacity: 0.18; animation: drift3 30s ease-in-out infinite; }
.orb--violet  { width: 700px; height: 700px; background: var(--c-violet);  top: 210vh;  right: 0;      opacity: 0.36; animation: drift4 34s ease-in-out infinite; }

@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(60px, 80px) scale(1.08); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-80px, 60px) scale(1.1); } }
@keyframes drift3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(100px,-50px) scale(1.05); } }
@keyframes drift4 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-120px,-90px) scale(1.12); } }

.grain {
  position: absolute;
  inset: -50%;
  opacity: 0.16;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 85%);
}

/* =====================================================================
   Core glass primitive
   ===================================================================== */
.glass {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow:
    0 1px 0 var(--glass-hi) inset,
    0 -1px 0 rgba(0,0,0,0.3) inset,
    0 24px 60px -24px rgba(0,0,0,0.55);
}
.glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.22), rgba(255,255,255,0.04) 35%, transparent 55%, rgba(255,255,255,0.08));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.glass--pill {
  border-radius: 999px;
}

/* =====================================================================
   Typography helpers
   ===================================================================== */
.section-head {
  max-width: 820px;
  margin: 0 auto 72px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.section-head__eyebrow {
  display: inline-block;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--t-secondary);
  padding: 6px 14px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  margin-bottom: 28px;
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(10px);
}
.section-head__title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
  color: var(--t-primary);
  text-transform: none;
}
.section-head__title em {
  font-weight: 800;
  color: var(--c-amber);
}
.section-head__sub {
  font-size: 17px;
  color: var(--t-secondary);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.55;
}

/* =====================================================================
   Buttons
   ===================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), background .4s var(--ease-out);
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.btn--primary {
  color: #0a0514;
  background: linear-gradient(100deg, #fff 0%, #e8edf2 60%, #dde4ec 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.8) inset,
    0 -1px 0 rgba(0,0,0,0.1) inset,
    0 18px 40px -12px rgba(110, 165, 196, 0.35),
    0 12px 28px -10px rgba(58, 102, 136, 0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 -1px 0 rgba(0,0,0,0.1) inset,
    0 22px 50px -10px rgba(110, 165, 196, 0.5),
    0 14px 36px -8px rgba(58, 102, 136, 0.5);
}
.btn--ghost {
  color: var(--t-primary);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(18px);
  border-color: var(--glass-border);
  box-shadow: 0 1px 0 var(--glass-hi) inset;
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-2px);
}

/* =====================================================================
   NAV
   ===================================================================== */
.nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 10px 10px 10px 20px;
  border-radius: 999px;
  background: rgba(10, 6, 28, 0.55);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 1px 0 var(--glass-hi) inset,
    0 20px 44px -18px rgba(0,0,0,0.7);
  width: min(960px, calc(100vw - 32px));
  max-width: 960px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
}
.nav__brand-word {
  font-family: 'Geist Mono', monospace;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.nav__brand-dot {
  background: linear-gradient(135deg, var(--c-cyan), var(--c-magenta));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav__links {
  display: flex;
  gap: 28px;
  font-size: 13.5px;
  color: var(--t-secondary);
}
.nav__links a {
  transition: color .25s;
  position: relative;
}
.nav__links a:hover { color: var(--t-primary); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: #0a0514;
  background: linear-gradient(100deg, #fff 0%, #e1e8ef 100%);
  box-shadow: 0 8px 22px -10px rgba(110, 165, 196, 0.4), 0 1px 0 rgba(255,255,255,0.8) inset;
  transition: transform .3s var(--ease-out);
  white-space: nowrap;
  margin-left: auto;
}
.nav__cta:hover { transform: translateY(-1px); }

@media (max-width: 840px) {
  .nav__links { display: none; }
  .nav { gap: 16px; padding: 8px 8px 8px 16px; }
  .nav__brand-word { font-size: 13px; }
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 180px var(--pad-x) 120px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
}

.hero__eyebrow {
  grid-column: 1 / -1;
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--t-secondary);
  animation: reveal 1s var(--ease-out) .1s both;
}

.status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-cyan);
  box-shadow: 0 0 10px var(--c-cyan), 0 0 20px rgba(170, 180, 190, 0.4);
  animation: pulse 2.4s ease-in-out infinite;
}
.status-dot--green {
  background: #5dff9b;
  box-shadow: 0 0 8px #5dff9b;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.85); }
}

.hero__title {
  grid-column: 1;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(46px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0;
  text-transform: none;
}
.hero__line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: reveal 1.1s var(--ease-out) forwards;
}
.hero__line:nth-child(1) { animation-delay: .25s; color: var(--t-secondary); font-weight: 700; }
.hero__line:nth-child(2) { animation-delay: .4s; }
.hero__line--accent em {
  font-weight: 800;
  color: var(--c-amber);
}

.hero__sub {
  grid-column: 1;
  max-width: 540px;
  font-size: 18px;
  line-height: 1.5;
  color: var(--t-secondary);
  margin: 20px 0 0;
  opacity: 0;
  animation: reveal 1s var(--ease-out) .75s forwards;
}

.hero__actions {
  grid-column: 1;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
  opacity: 0;
  animation: reveal 1s var(--ease-out) .9s forwards;
}

.hero__specimen {
  grid-column: 2;
  grid-row: 2 / span 3;
  align-self: center;
  opacity: 0;
  animation: reveal 1.2s var(--ease-out) 1.05s forwards;
}

.specimen {
  width: 100%;
  padding: 22px;
}

.specimen__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 8px;
}
.specimen__title {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--t-secondary);
}
.specimen__meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: #5dff9b;
}
.specimen__feed { display: flex; flex-direction: column; }
.specimen__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.06);
  font-size: 13px;
  animation: feed-in .6s var(--ease-out) both;
}
.specimen__row:nth-child(1) { animation-delay: 1.2s; }
.specimen__row:nth-child(2) { animation-delay: 1.35s; }
.specimen__row:nth-child(3) { animation-delay: 1.5s; }
.specimen__row:nth-child(4) { animation-delay: 1.65s; }
.specimen__row:nth-child(5) { animation-delay: 1.8s; }
@keyframes feed-in {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.specimen__loc {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: var(--t-secondary);
}
.specimen__score {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--c-cyan);
}

.tag {
  font-size: 10.5px;
  font-weight: 500;
  font-family: 'Geist Mono', monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
}
.tag--insurance { color: #b6d2e0; border-color: rgba(110,165,196,0.35); }
.tag--legal     { color: #d6c89a; border-color: rgba(201,169,106,0.4); }
.tag--subprime  { color: #9ab4c8; border-color: rgba(58,102,136,0.5); }
.tag--solar     { color: #8aa0b4; border-color: rgba(42,66,88,0.6); }
.tag--medicare  { color: #a8c0d0; border-color: rgba(110,165,196,0.3); }

.specimen__footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.specimen__footer-label {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--t-secondary);
}
.specimen__footer-value {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: var(--t-primary);
}

.scroll-ind {
  grid-column: 1 / -1;
  margin-top: 80px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--t-muted);
}
.scroll-ind__line {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--t-muted), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-ind__line::after {
  content: '';
  position: absolute;
  width: 20px; height: 100%;
  background: var(--c-cyan);
  animation: scroll-trail 2.4s linear infinite;
}
@keyframes scroll-trail {
  0%   { transform: translateX(-20px); }
  100% { transform: translateX(60px); }
}

@keyframes reveal {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 130px var(--pad-x) 70px;
    gap: 32px;
  }
  .hero__specimen {
    grid-column: 1;
    grid-row: auto;
    min-height: 0;
    margin-top: 24px;
  }
  .scroll-ind { margin-top: 40px; }
}

@media (max-width: 900px) {
  .marquee     { margin-bottom: 80px; }
  .verticals   { padding-bottom: 80px; }
  .process     { padding-bottom: 80px; }
  .proof       { padding-bottom: 80px; }
  .contact     { padding-bottom: 80px; }
}

/* =====================================================================
   MARQUEE
   ===================================================================== */
.marquee {
  position: relative;
  z-index: 2;
  margin: 0 auto 140px;
  padding: 18px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.015);
  backdrop-filter: blur(12px);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__inner { display: flex; }
.marquee__track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--t-secondary);
}
.marquee__track span {
  display: inline-block;
}
.marquee__track span:nth-child(even) {
  color: var(--t-muted);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =====================================================================
   VERTICALS
   ===================================================================== */
.verticals {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px var(--pad-x) 140px;
}

.verticals__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.v-card {
  padding: 32px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform .55s var(--ease-out), border-color .4s;
}
.v-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity .5s;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(255,255,255,0.09), transparent 60%);
  pointer-events: none;
}
.v-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.2);
}
.v-card:hover::after { opacity: 1; }

.v-card[data-tint="cyan"]    { --tint: rgba(110, 165, 196, 0.55); }
.v-card[data-tint="magenta"] { --tint: rgba(58, 102, 136, 0.55); }
.v-card[data-tint="amber"]   { --tint: rgba(201, 169, 106, 0.55); }
.v-card[data-tint="violet"]  { --tint: rgba(42, 66, 88, 0.55); }

.v-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: #fff;
  box-shadow: 0 0 32px -8px var(--tint), 0 1px 0 rgba(255,255,255,0.18) inset;
  margin-bottom: 6px;
}
.v-card__title {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0;
}
.v-card__desc {
  margin: 0;
  color: var(--t-secondary);
  font-size: 14.5px;
  line-height: 1.55;
}
.v-card__tags {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px dashed rgba(255,255,255,0.07);
}
.v-card__tags li {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--t-secondary);
  letter-spacing: 0.04em;
}
.v-card__num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--t-muted);
}

.verticals__footnote {
  margin: 48px auto 0;
  text-align: center;
  color: var(--t-secondary);
  font-size: 15px;
}
.verticals__footnote a {
  color: var(--c-amber);
  font-weight: 600;
  border-bottom: 1px solid rgba(152, 135, 108, 0.5);
  padding-bottom: 1px;
}

@media (max-width: 900px) {
  .verticals__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .verticals__grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   PROCESS
   ===================================================================== */
.process {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px var(--pad-x) 140px;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
.p-step {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: transform .5s var(--ease-out);
}
.p-step:nth-child(2) { transform: translateY(24px); }
.p-step:nth-child(3) { transform: translateY(48px); }
.p-step:nth-child(4) { transform: translateY(72px); }
.p-step:hover { transform: translateY(-8px) !important; }

.p-step__num {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--c-cyan);
  opacity: 0.85;
}
.p-step__title {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}
.p-step__desc {
  color: var(--t-secondary);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
  flex-grow: 1;
}
.p-step__duration {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--t-muted);
  padding-top: 14px;
  border-top: 1px dashed rgba(255,255,255,0.08);
}

@media (max-width: 1000px) {
  .process__steps { grid-template-columns: 1fr 1fr; }
  .p-step:nth-child(2),
  .p-step:nth-child(3),
  .p-step:nth-child(4) { transform: translateY(0); }
}
@media (max-width: 600px) {
  .process__steps { grid-template-columns: 1fr; }
}

/* =====================================================================
   PROOF / STATS
   ===================================================================== */
.proof {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x) 140px;
}
.proof__panel {
  padding: clamp(40px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.proof__panel::after {
  content: '';
  position: absolute;
  inset: -1px;
  background: radial-gradient(ellipse at 85% 30%, rgba(110, 120, 132, 0.18), transparent 55%),
              radial-gradient(ellipse at 15% 80%, rgba(170, 180, 190, 0.14), transparent 55%);
  pointer-events: none;
  border-radius: inherit;
  opacity: .9;
  z-index: -1;
}

.proof__head { text-align: center; margin-bottom: 60px; }

.proof__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 72px;
}
.stat {
  padding: 28px 24px;
  border-left: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.stat:first-child { border-left: 0; }
.stat__num {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.6) 110%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat__label {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--t-secondary);
}

.quote {
  margin: 0;
  max-width: 780px;
  padding: 32px 0 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.quote blockquote {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin: 0 0 22px;
  color: var(--t-primary);
  position: relative;
}
.quote__mark {
  font-size: 1.4em;
  background: linear-gradient(100deg, var(--c-cyan), var(--c-magenta));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 2px;
}
.quote figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.quote__author {
  font-weight: 500;
  font-size: 14px;
}
.quote__role {
  font-family: 'Geist Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--t-secondary);
  text-transform: uppercase;
}

@media (max-width: 800px) {
  .proof__stats { grid-template-columns: 1fr 1fr; }
  .stat { border-left: 0; border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-top: 0; }
}

/* =====================================================================
   CONTACT
   ===================================================================== */
.contact {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x) 140px;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.contact__intro { padding-top: 20px; }
.contact__intro .section-head__title { text-align: left; }
.contact__copy {
  color: var(--t-secondary);
  font-size: 17px;
  line-height: 1.55;
  max-width: 440px;
  margin: 0 0 40px;
}

.contact__facts {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.contact__facts li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact__facts-k {
  font-family: 'Geist Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t-secondary);
}
.contact__facts-v {
  font-family: 'Archivo', sans-serif;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--t-primary);
}

/* The form panel */
.contact__form {
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.field {
  position: relative;
  padding: 22px 0 12px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  padding: 10px 0 8px;
  font-family: 'Geist', sans-serif;
  font-size: 16px;
  color: var(--t-primary);
  outline: none;
  transition: border-color .35s;
  resize: none;
  appearance: none;
}
.field textarea { min-height: 100px; line-height: 1.45; }
.field select {
  cursor: pointer;
  padding-right: 24px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'><path d='M3 5.5l4 4 4-4' stroke='rgba(235,230,255,0.45)' stroke-width='1.3' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 2px center;
}
.field select option {
  background: #0c0722;
  color: #fff;
}

.field label {
  position: absolute;
  top: 30px;
  left: 0;
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  color: var(--t-muted);
  pointer-events: none;
  transition: top .3s var(--ease-out), font-size .3s var(--ease-out), color .3s;
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field select:focus + label,
.field select:valid + label {
  top: 4px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: 'Geist Mono', monospace;
  color: var(--c-cyan);
}

.field__line {
  position: absolute;
  bottom: 12px; left: 0;
  height: 1px;
  width: 0;
  background: linear-gradient(90deg, var(--c-cyan), var(--c-magenta));
  transition: width .45s var(--ease-out);
  pointer-events: none;
}
.field input:focus ~ .field__line,
.field textarea:focus ~ .field__line,
.field select:focus ~ .field__line {
  width: 100%;
}

.field.field--error input,
.field.field--error select,
.field.field--error textarea {
  border-bottom-color: var(--c-magenta);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.sms-consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
  margin: 28px 0 4px;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.025);
  cursor: pointer;
  transition: border-color .25s, background .25s;
}
.sms-consent:hover {
  border-color: rgba(110, 165, 196, 0.3);
  background: rgba(110, 165, 196, 0.04);
}
.sms-consent input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.sms-consent__box {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.03);
  display: grid;
  place-items: center;
  color: transparent;
  transition: all .25s var(--ease-out);
  margin-top: 2px;
}
.sms-consent input:checked + .sms-consent__box {
  background: linear-gradient(135deg, var(--c-cyan), var(--c-magenta));
  border-color: transparent;
  color: #0a0514;
  box-shadow: 0 0 18px -4px rgba(110, 165, 196, 0.55);
}
.sms-consent input:focus-visible + .sms-consent__box {
  outline: 2px solid var(--c-cyan);
  outline-offset: 2px;
}
.sms-consent__text {
  font-family: 'Geist', sans-serif;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--t-secondary);
  letter-spacing: 0.005em;
}
.sms-consent__text strong {
  color: var(--t-primary);
  font-weight: 500;
}
.sms-consent__text a {
  color: var(--t-primary);
  border-bottom: 1px solid rgba(170, 180, 190, 0.45);
  padding-bottom: 1px;
  transition: border-color .2s;
}
.sms-consent__text a:hover { border-bottom-color: var(--c-magenta); }

.sms-consent.sms-consent--error {
  border-color: rgba(58, 102, 136, 0.5);
  background: rgba(58, 102, 136, 0.05);
}

.btn--submit {
  width: 100%;
  margin-top: 20px;
  justify-content: center;
  padding: 18px 22px;
  font-size: 15px;
  overflow: hidden;
  position: relative;
}
.btn--submit .btn__arrow {
  display: inline-flex;
  align-items: center;
  transition: transform .4s var(--ease-out);
}
.btn--submit:hover .btn__arrow {
  transform: translateX(4px);
}

.contact__legal {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--t-muted);
  margin: 18px 0 0;
  text-align: center;
}

.contact__success {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(93, 255, 155, 0.08);
  border: 1px solid rgba(93, 255, 155, 0.3);
  color: #b5ffd0;
  font-size: 14px;
}
.contact__success.is-visible { display: inline-flex; }

@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .field-row { grid-template-columns: 1fr; }
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x) 40px;
}
.footer__panel {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  padding: clamp(32px, 4vw, 56px);
}
.footer__brand { max-width: 320px; }
.footer__word {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.02em;
}
.footer__dot {
  background: linear-gradient(135deg, var(--c-cyan), var(--c-magenta));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer__tag {
  color: var(--t-secondary);
  font-size: 14.5px;
  margin: 10px 0 0;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__head {
  display: block;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--t-muted);
  margin-bottom: 14px;
}
.footer__cols ul { display: flex; flex-direction: column; gap: 10px; }
.footer__cols a {
  font-size: 14px;
  color: var(--t-secondary);
  transition: color .2s;
}
.footer__cols a:hover { color: var(--t-primary); }

.footer__meta {
  margin-top: 24px;
  padding: 0 8px;
  display: flex;
  justify-content: space-between;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--t-muted);
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 800px) {
  .footer__panel { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 500px) {
  .footer__cols { grid-template-columns: 1fr 1fr; }
}

/* =====================================================================
   Reveal-on-scroll utility
   ===================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile: smaller pre-reveal offset and a hard fallback if the
   IntersectionObserver hasn't fired yet, so users never see empty space. */
@media (max-width: 900px) {
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .orb { animation: none !important; }
}

/* =====================================================================
   Legal pages (privacy, terms)
   ===================================================================== */
.legal {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  padding: 160px var(--pad-x) 100px;
}
.legal__head {
  text-align: left;
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--glass-border);
}
.legal__eyebrow {
  display: inline-block;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--t-secondary);
  padding: 6px 14px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  margin-bottom: 24px;
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(10px);
}
.legal__title {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.legal__effective {
  font-family: 'Geist Mono', monospace;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--t-secondary);
}

.legal__panel {
  padding: clamp(32px, 4vw, 56px);
}
.legal__panel h2 {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 48px 0 14px;
  color: var(--t-primary);
}
.legal__panel h2:first-child { margin-top: 0; }
.legal__panel h3 {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  margin: 26px 0 8px;
  color: var(--t-primary);
}
.legal__panel p,
.legal__panel li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--t-secondary);
}
.legal__panel p { margin: 0 0 14px; }
.legal__panel ul,
.legal__panel ol {
  margin: 0 0 16px;
  padding-left: 22px;
  list-style: disc;
}
.legal__panel ol { list-style: decimal; }
.legal__panel li { margin-bottom: 8px; }
.legal__panel a {
  color: var(--t-primary);
  border-bottom: 1px solid rgba(170, 180, 190, 0.5);
  padding-bottom: 1px;
  transition: border-color .2s;
}
.legal__panel a:hover { border-bottom-color: var(--c-magenta); }
.legal__panel strong { color: var(--t-primary); font-weight: 600; }

.legal__callout {
  margin: 22px 0;
  padding: 18px 22px;
  border-radius: 14px;
  border: 1px solid rgba(110, 165, 196, 0.25);
  background: rgba(110, 165, 196, 0.05);
  font-size: 14.5px;
  line-height: 1.6;
}
.legal__callout strong {
  display: block;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-cyan);
  margin-bottom: 6px;
}

.legal__address {
  font-family: 'Geist Mono', monospace;
  font-size: 13px;
  line-height: 1.7;
  color: var(--t-primary);
  background: rgba(255,255,255,0.03);
  padding: 16px 20px;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  margin: 14px 0 24px;
  white-space: pre-line;
}

.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t-secondary);
  transition: color .2s;
}
.legal__back:hover { color: var(--t-primary); }
.legal__back svg { transition: transform .3s var(--ease-out); }
.legal__back:hover svg { transform: translateX(-3px); }
