/* ------------------------------ tokens ------------------------------ */
:root {
  --bg: #070710;
  --bg-2: #0d0d18;
  --bg-3: #14141f;
  --panel: #0e0e1a;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --fg: #f5f5fa;
  --fg-2: rgba(245, 245, 250, 0.72);
  --fg-3: rgba(245, 245, 250, 0.5);
  --fg-4: rgba(245, 245, 250, 0.32);

  --purple: oklch(0.65 0.22 295);
  --purple-soft: oklch(0.65 0.22 295 / 0.16);
  --orange: oklch(0.72 0.19 45);
  --orange-soft: oklch(0.72 0.19 45 / 0.16);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --maxw: 1200px;
  --pad-section: clamp(72px, 9vw, 140px);
}

[data-density="compact"] { --pad-section: clamp(56px, 7vw, 96px); }
[data-density="wide"] { --pad-section: clamp(96px, 12vw, 180px); }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Geist', ui-sans-serif, system-ui, sans-serif;
  font-feature-settings: "ss01", "ss02", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ambient base — very subtle radial wash so pure-black isn't flat */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 700px at 80% -10%, oklch(0.65 0.22 295 / 0.07), transparent 60%),
    radial-gradient(900px 500px at 0% 110%, oklch(0.72 0.19 45 / 0.05), transparent 60%);
  z-index: 0;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

main { position: relative; z-index: 1; }

/* ------------------------------ reveal ------------------------------ */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ------------------------------ type ------------------------------ */
.section { padding: var(--pad-section) 0; }
.section__head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section__head--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  text-align: left;
  max-width: var(--maxw);
}
.section__head--row .section__title { margin: 0; }
.section__lede {
  color: var(--fg-2);
  font-size: 17px;
  max-width: 460px;
  margin-left: auto;
}

.section__title {
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin: 14px 0 0;
  text-wrap: balance;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}
.kicker::before {
  content: "";
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--purple);
  box-shadow: 0 0 12px var(--purple);
}
.kicker--o::before { background: var(--orange); box-shadow: 0 0 12px var(--orange); }

em {
  font-style: normal;
  background: linear-gradient(120deg, var(--purple), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

s { text-decoration: none; position: relative; color: var(--fg-3); }
s::after {
  content: "";
  position: absolute; left: -2%; right: -2%; top: 55%;
  height: 4px;
  background: var(--orange);
  box-shadow: 0 0 18px var(--orange);
  transform: rotate(-2deg);
}

/* ------------------------------ buttons ------------------------------ */
.btn {
  --btn-bg: rgba(255,255,255,0.05);
  --btn-fg: var(--fg);
  --btn-bd: rgba(255,255,255,0.1);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--btn-bd);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .3s ease;
  position: relative;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--sm { padding: 8px 14px; font-size: 14px; }
.btn--lg { padding: 14px 22px; font-size: 16px; }
.btn--xl { padding: 18px 28px; font-size: 17px; }
.btn--block { width: 100%; }

.btn--primary {
  --btn-bg: var(--fg);
  --btn-fg: #0a0a14;
  --btn-bd: transparent;
  font-weight: 600;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1), 0 10px 30px -10px rgba(255,255,255,0.4);
}
.btn--primary:hover {
  box-shadow: 0 0 0 1px rgba(255,255,255,0.15), 0 18px 40px -12px var(--purple);
}

.btn--secondary {
  --btn-bg: rgba(255,255,255,0.04);
  --btn-bd: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
}
.btn--secondary:hover { --btn-bg: rgba(255,255,255,0.08); --btn-bd: rgba(255,255,255,0.25); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-bd: rgba(255,255,255,0.14);
}
.btn--ghost:hover { --btn-bg: rgba(255,255,255,0.04); }

.btn__arrow {
  display: inline-block;
  transition: transform .25s ease;
}
.btn:hover .btn__arrow { transform: translateX(3px); }

.btn__cal {
  width: 16px; height: 16px;
  border-radius: 4px;
  border: 1.5px solid currentColor;
  position: relative;
  display: inline-block;
}
.btn__cal::before, .btn__cal::after {
  content: ""; position: absolute; top: -3px; width: 2px; height: 4px;
  background: currentColor; border-radius: 1px;
}
.btn__cal::before { left: 3px; }
.btn__cal::after { right: 3px; }
.btn__cal-dot {
  position: absolute; left: 50%; top: 60%;
  width: 4px; height: 4px; border-radius: 999px;
  background: var(--orange);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px var(--orange);
}

/* ------------------------------ nav ------------------------------ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 16px 0;
  transition: padding .25s ease, background .25s ease, border-color .25s ease;
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.nav--scrolled { padding: 10px 0; }
.nav--scrolled .nav__inner {
  background: rgba(10, 10, 18, 0.7);
  backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 8px 8px 20px;
}

.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 15px;
}
.brand__name { white-space: nowrap; }
.brand__accent {
  background: linear-gradient(120deg, var(--purple), var(--orange));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.brand__mark {
  display: inline-flex;
  width: 26px; height: 26px;
  border-radius: 8px;
  background: #14141f;
  border: 1px solid var(--line);
  position: relative;
}
.brand__dot {
  position: absolute;
  width: 8px; height: 8px; border-radius: 999px;
}
.brand__dot--p { background: var(--purple); box-shadow: 0 0 10px var(--purple); top: 6px; left: 6px; }
.brand__dot--o { background: var(--orange); box-shadow: 0 0 10px var(--orange); bottom: 6px; right: 6px; }

.nav__links {
  display: flex; gap: 28px;
  justify-content: center;
}
.nav__links a {
  font-size: 14px;
  color: var(--fg-2);
  transition: color .2s ease;
  position: relative;
}
.nav__links a:hover { color: var(--fg); }
.nav__cta { display: flex; gap: 10px; }

/* nav dropdown */
.nav__dd { position: relative; }
.nav__dd-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: none; padding: 0;
  color: var(--fg-2);
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: color .2s ease;
}
.nav__dd-btn:hover, .nav__dd-btn.is-open { color: var(--fg); }
.nav__dd-btn svg { transition: transform .2s ease; }
.nav__dd-btn.is-open svg { transform: rotate(180deg); }
.nav__dd-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translate(-50%, -8px);
  width: 320px;
  background: rgba(14, 14, 26, 0.95);
  backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  padding: 8px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 60;
}
.nav__dd-panel.is-open {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
.nav__dd-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: var(--r-sm);
  transition: background .2s ease;
}
.nav__dd-item:hover { background: rgba(255,255,255,0.05); }
.nav__dd-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  margin-top: 6px;
}
.nav__dd-dot--purple { background: var(--purple); box-shadow: 0 0 10px var(--purple); }
.nav__dd-dot--orange { background: var(--orange); box-shadow: 0 0 10px var(--orange); }
.nav__dd-t { font-size: 14px; font-weight: 500; color: var(--fg); }
.nav__dd-d { font-size: 12px; color: var(--fg-3); margin-top: 2px; }

@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__inner { grid-template-columns: auto 1fr; }
  .nav__inner > .nav__links { display: none; }
}

/* ------------------------------ hero ------------------------------ */
.hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__grid {
  position: absolute; inset: -100px 0 0 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
  opacity: 0.6;
}
.hero__glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 999px;
  filter: blur(120px);
  opacity: 0.55;
  animation: float 14s ease-in-out infinite;
}
.hero__glow--p {
  background: var(--purple);
  top: -200px; left: -200px;
}
.hero__glow--o {
  background: var(--orange);
  top: -100px; right: -200px;
  animation-delay: -7s;
  opacity: 0.35;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 20px) scale(1.05); }
}

.hero__inner { position: relative; z-index: 1; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--fg-2);
  margin-bottom: 32px;
  transition: background .2s ease, border-color .2s ease;
}
.eyebrow:hover { background: rgba(255,255,255,0.06); border-color: var(--line-2); }
.eyebrow__pill {
  background: linear-gradient(120deg, var(--purple), var(--orange));
  color: #0a0a14;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  letter-spacing: 0.04em;
}
.eyebrow__arrow { transition: transform .2s ease; }
.eyebrow:hover .eyebrow__arrow { transform: translateX(2px); }

.hero__title {
  font-size: clamp(44px, 7.6vw, 92px);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.035em;
  margin: 0 auto 28px;
  max-width: 14ch;
  text-wrap: balance;
}

.hero__sub {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--fg-2);
  max-width: 56ch;
  margin: 0 auto 40px;
  text-wrap: pretty;
}

.hero__ctas {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero__meta {
  display: inline-flex; align-items: center; gap: 16px;
  font-size: 14px;
  color: var(--fg-3);
  font-family: 'Geist Mono', ui-monospace, monospace;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__meta strong { color: var(--fg); font-weight: 500; }
.dot { color: var(--fg-4); }

.hero__visual {
  position: relative;
  margin: 80px auto 0;
  max-width: 980px;
}
.hero__visual-frame {
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-2);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02),
    0 60px 120px -40px oklch(0.65 0.22 295 / 0.4),
    0 30px 60px -30px rgba(0,0,0,0.6);
}
.hero__visual-chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}
.hero__visual-chrome .dot {
  width: 11px; height: 11px; border-radius: 999px;
  background: rgba(255,255,255,0.08);
}
.hero__visual-chrome .dot--r { background: #ff5f57; }
.hero__visual-chrome .dot--y { background: #ffbd2e; }
.hero__visual-chrome .dot--g { background: #28c840; }
.hero__visual-url {
  margin-left: 20px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 12px;
  color: var(--fg-3);
}
.hero__visual-tag {
  position: absolute;
  background: rgba(10, 10, 18, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  padding: 12px 16px;
  display: flex; flex-direction: column; gap: 2px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  animation: bob 6s ease-in-out infinite;
}
.hero__visual-tag-k {
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero__visual-tag-v {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.hero__visual-tag--p {
  top: 20%; left: -40px;
  box-shadow: 0 20px 40px -20px var(--purple), 0 0 0 1px var(--purple-soft);
}
.hero__visual-tag--p .hero__visual-tag-v { color: var(--purple); }
.hero__visual-tag--o {
  bottom: 20%; right: -40px;
  animation-delay: -3s;
  box-shadow: 0 20px 40px -20px var(--orange), 0 0 0 1px var(--orange-soft);
}
.hero__visual-tag--o .hero__visual-tag-v { color: var(--orange); }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (max-width: 720px) {
  .hero__visual-tag { display: none; }
}

.trustbar {
  margin-top: 80px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.trustbar__label {
  display: block;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-4);
  text-align: center;
  margin-bottom: 18px;
}
.trustbar__logos {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 48px;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--fg-3);
}
.trustbar__logos li { transition: color .2s ease; }
.trustbar__logos li:hover { color: var(--fg); }

/* ------------------------------ placeholder ------------------------------ */
.placeholder {
  position: relative;
  width: 100%;
  background: #0c0c16;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.placeholder svg { position: absolute; inset: 0; }
.placeholder__label {
  position: relative;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: 0.04em;
}
.placeholder__corner {
  position: absolute; top: 10px; left: 10px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--fg-4);
}

/* ------------------------------ problem ------------------------------ */
.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 96px;
}
.problem__item {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  transition: border-color .3s ease, transform .3s ease;
}
.problem__item:hover { border-color: var(--line-2); transform: translateY(-2px); }
.problem__num {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 12px;
  color: var(--fg-4);
  letter-spacing: 0.1em;
  margin-bottom: 36px;
}
.problem__t {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 12px;
}
.problem__d { color: var(--fg-2); margin: 0; font-size: 15px; }

.problem__punchline {
  text-align: center;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 0 auto;
  max-width: 18ch;
}

@media (max-width: 820px) {
  .problem__grid { grid-template-columns: 1fr; }
}

/* ------------------------------ solution ------------------------------ */
.solution__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.solution__copy .section__title { margin-top: 18px; }
.solution__lede {
  font-size: 17px;
  color: var(--fg-2);
  margin: 24px 0 28px;
}
.brand-inline {
  background: linear-gradient(120deg, var(--purple), var(--orange));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  white-space: nowrap;
}
.solution__bullets {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 12px;
}
.solution__bullets li {
  display: flex; gap: 12px; align-items: flex-start;
  color: var(--fg-2);
  font-size: 15px;
}
.check {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 999px;
  background: oklch(0.65 0.22 295 / 0.16);
  color: var(--purple);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 600;
  margin-top: 1px;
}

.solution__panel {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow:
    0 60px 100px -50px oklch(0.65 0.22 295 / 0.35),
    0 30px 60px -30px rgba(0,0,0,0.5);
}
.solution__panel-head {
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  margin-bottom: 14px;
}
.solution__panel-title { font-weight: 600; letter-spacing: -0.01em; }
.solution__panel-sub {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 12px;
  color: var(--fg-3);
}
.solution__tasks { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.task {
  display: grid;
  grid-template-columns: 16px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 8px;
  border-radius: var(--r-sm);
  font-size: 14px;
}
.task__bullet {
  width: 14px; height: 14px;
  border-radius: 999px;
  border: 1.5px solid var(--fg-4);
}
.task--done .task__bullet { background: var(--purple); border-color: var(--purple); box-shadow: 0 0 10px var(--purple-soft); }
.task--done .task__t { color: var(--fg-3); text-decoration: line-through; text-decoration-color: var(--fg-4); }
.task--doing { background: rgba(255,255,255,0.03); }
.task--doing .task__bullet { border-color: var(--orange); position: relative; }
.task--doing .task__bullet::before {
  content: ""; position: absolute; inset: 2px; border-radius: 999px; background: var(--orange);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: .4; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1); }
}
.task__s {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  color: var(--fg-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.solution__panel-foot {
  display: flex; align-items: center; gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.solution__avatars { display: flex; }
.solution__avatars span {
  width: 24px; height: 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), var(--orange));
  border: 2px solid var(--bg-2);
  margin-left: -8px;
}
.solution__avatars span:first-child { margin-left: 0; }
.solution__avatars span:nth-child(2) { background: linear-gradient(135deg, var(--orange), #fff); }
.solution__avatars span:nth-child(3) { background: linear-gradient(135deg, #6c63ff, var(--purple)); }
.solution__avatars span:nth-child(4) { background: linear-gradient(135deg, #fff, var(--orange)); }
.solution__panel-meta {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  color: var(--fg-3);
}

@media (max-width: 900px) {
  .solution__inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ------------------------------ services ------------------------------ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.glow-card {
  position: relative;
  border-radius: var(--r-lg);
  background: var(--bg-2);
  border: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
  transition: border-color .3s ease, transform .3s ease;
}
.glow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mx, -200px) var(--my, -200px), var(--purple-soft), transparent 40%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.glow-card:hover { border-color: var(--line-2); transform: translateY(-3px); }
.glow-card:hover::before { opacity: 1; }
.service--orange::before {
  background: radial-gradient(400px circle at var(--mx, -200px) var(--my, -200px), var(--orange-soft), transparent 40%);
}

.service__inner { padding: 28px; display: flex; flex-direction: column; height: 100%; }
.service__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 60px; }
.service__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
}
.service__icon svg { width: 22px; height: 22px; }
.service__icon--purple { color: var(--purple); box-shadow: inset 0 0 30px var(--purple-soft); }
.service__icon--orange { color: var(--orange); box-shadow: inset 0 0 30px var(--orange-soft); }

.service__tag {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.service__title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  line-height: 1.2;
}
.service__desc { color: var(--fg-2); font-size: 15px; margin: 0 0 20px; }
.service__bullets { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 8px; }
.service__bullets li { display: flex; gap: 10px; align-items: center; font-size: 14px; color: var(--fg-2); }
.service__bullets .check { width: 18px; height: 18px; font-size: 11px; background: rgba(255,255,255,0.04); color: var(--fg-3); }
.service--orange .service__bullets .check { background: var(--orange-soft); color: var(--orange); }

.service__foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.service__more { color: var(--fg-3); font-size: 13px; }
.service__more:hover { color: var(--fg); }

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

/* services anchor wrapper */
.service-link { display: block; color: inherit; }
.service-link:hover { text-decoration: none; }

/* ------------------------------ deep dive ------------------------------ */
.deepdive { padding: clamp(80px, 10vw, 140px) 0; position: relative; overflow: hidden; }
.deepdive::before {
  content: "";
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 999px;
  filter: blur(140px);
  opacity: 0.18;
  pointer-events: none;
}
.deepdive--purple::before { background: var(--purple); top: -300px; left: -200px; }
.deepdive--orange::before { background: var(--orange); top: -200px; right: -200px; }

.deepdive__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.deepdive--right .deepdive__inner { grid-template-columns: 1.05fr 1fr; }
.deepdive--right .deepdive__copy { order: 2; }
.deepdive--right .deepdive__visual { order: 1; }

.deepdive__title {
  font-size: clamp(48px, 7vw, 84px);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin: 18px 0 18px;
  text-wrap: balance;
}
.deepdive__lede {
  font-size: 17px;
  color: var(--fg-2);
  margin: 0 0 28px;
  text-wrap: pretty;
}
.deepdive__bullets {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
}
.deepdive__bullets li { padding: 0; }
.deepdive__bullet-k {
  display: flex; align-items: center; gap: 10px;
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 4px;
}
.deepdive__bullet-v { color: var(--fg-3); font-size: 13px; padding-left: 28px; }
.deepdive__check {
  width: 18px; height: 18px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 600;
  flex: none;
}
.deepdive__check--purple { background: var(--purple-soft); color: var(--purple); }
.deepdive__check--orange { background: var(--orange-soft); color: var(--orange); }

.deepdive__stat {
  display: flex; align-items: baseline; gap: 14px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: 28px;
}
.deepdive__stat-k {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}
.deepdive__stat-k--purple { color: var(--purple); }
.deepdive__stat-k--orange { color: var(--orange); }
.deepdive__stat-l { color: var(--fg-2); font-size: 14px; }

.deepdive__ctas { display: flex; gap: 10px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .deepdive__inner, .deepdive--right .deepdive__inner { grid-template-columns: 1fr; gap: 48px; }
  .deepdive--right .deepdive__copy { order: 1; }
  .deepdive--right .deepdive__visual { order: 2; }
  .deepdive__bullets { grid-template-columns: 1fr; }
}

/* ----- web preview ----- */
.dd-web { position: relative; }
.dd-web__frame {
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-2);
  box-shadow: 0 50px 100px -40px var(--purple), 0 30px 60px -30px rgba(0,0,0,0.6);
}
.dd-chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
}
.dd-chrome .dot { width: 10px; height: 10px; border-radius: 999px; }
.dd-chrome__url {
  margin-left: 16px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  color: var(--fg-3);
}
.dd-web__body { padding: 18px; }
.dd-web__nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.dd-web__logo { display: inline-block; width: 56px; height: 10px; border-radius: 4px; background: var(--fg-2); }
.dd-web__nav-links { display: flex; gap: 14px; }
.dd-web__nav-links span { width: 30px; height: 6px; border-radius: 3px; background: rgba(255,255,255,0.12); }
.dd-web__cta { width: 60px; height: 22px; border-radius: 999px; background: var(--purple); box-shadow: 0 0 16px var(--purple-soft); }
.dd-web__hero { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.dd-web__h1 { height: 14px; border-radius: 4px; background: rgba(255,255,255,0.18); width: 80%; }
.dd-web__h1--short { width: 50%; }
.dd-web__sub { height: 8px; border-radius: 3px; background: rgba(255,255,255,0.08); width: 70%; margin-top: 6px; }
.dd-web__buttons { display: flex; gap: 6px; margin-top: 8px; }
.dd-web__buttons span {
  width: 70px; height: 22px; border-radius: 999px;
  background: var(--fg);
}
.dd-web__buttons span.ghost { background: rgba(255,255,255,0.06); border: 1px solid var(--line); }

.dd-web__metric {
  position: absolute;
  bottom: -28px; right: -20px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  padding: 14px 16px;
  width: 240px;
  box-shadow: 0 30px 60px -30px var(--purple), 0 0 0 1px var(--purple-soft);
  animation: bob 6s ease-in-out infinite;
}
.dd-web__metric-h {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  color: var(--fg-3);
  margin-bottom: 6px;
  font-family: 'Geist Mono', ui-monospace, monospace;
}
.dd-web__metric-trend { color: var(--purple); font-weight: 600; }
.dd-web__spark { width: 100%; height: 50px; display: block; }

@media (max-width: 720px) {
  .dd-web__metric { position: relative; bottom: 0; right: 0; margin: 16px auto 0; }
}

/* ----- ecom preview ----- */
.dd-ecom { position: relative; }
.dd-ecom__panel {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: 0 50px 100px -40px var(--orange), 0 30px 60px -30px rgba(0,0,0,0.6);
}
.dd-ecom__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.dd-ecom__title { font-family: 'Geist Mono', ui-monospace, monospace; font-size: 11px; color: var(--fg-3); text-transform: uppercase; letter-spacing: 0.08em; }
.dd-ecom__amt { font-size: 28px; font-weight: 600; letter-spacing: -0.02em; margin-top: 4px; color: var(--orange); }
.dd-ecom__live {
  display: inline-flex; align-items: center; gap: 6px;
  flex-shrink: 0;
  white-space: nowrap;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.dd-ecom__live span {
  width: 6px; height: 6px; border-radius: 999px; background: var(--orange);
  box-shadow: 0 0 8px var(--orange);
  animation: pulse 1.6s ease-in-out infinite;
}
.dd-ecom__list { display: grid; gap: 10px; }
.dd-ecom__row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 8px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  transition: border-color .2s ease, background .2s ease;
}
.dd-ecom__row:hover { border-color: var(--line-2); background: rgba(255,255,255,0.04); }
.dd-ecom__thumb { width: 36px; height: 36px; border-radius: var(--r-sm); overflow: hidden; }
.dd-ecom__thumb .placeholder__corner, .dd-ecom__thumb .placeholder__label { display: none; }
.dd-ecom__n { font-size: 14px; font-weight: 500; }
.dd-ecom__s { font-size: 11px; color: var(--fg-3); font-family: 'Geist Mono', ui-monospace, monospace; }
.dd-ecom__p { font-size: 14px; font-weight: 600; font-family: 'Geist Mono', ui-monospace, monospace; }
.dd-ecom__foot {
  display: flex; gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  color: var(--fg-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.dd-ecom__notif {
  position: absolute;
  top: -16px; left: -24px;
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  padding: 12px 16px;
  box-shadow: 0 20px 40px -20px var(--orange), 0 0 0 1px var(--orange-soft);
  animation: bob 6s ease-in-out infinite;
  animation-delay: -2s;
}
.dd-ecom__notif-dot {
  width: 8px; height: 8px; border-radius: 999px; background: var(--orange); box-shadow: 0 0 12px var(--orange);
  animation: pulse 1.6s ease-in-out infinite;
}
.dd-ecom__notif-t { font-size: 13px; font-weight: 600; }
.dd-ecom__notif-s { font-size: 11px; color: var(--fg-3); font-family: 'Geist Mono', ui-monospace, monospace; }

@media (max-width: 720px) {
  .dd-ecom__notif { position: relative; top: 0; left: 0; margin-bottom: 12px; }
}

/* ----- auto preview ----- */
.dd-auto__panel {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: 0 50px 100px -40px var(--purple), 0 30px 60px -30px rgba(0,0,0,0.6);
}
.dd-auto__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.dd-auto__title { font-weight: 600; letter-spacing: -0.01em; font-size: 15px; }
.dd-auto__pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  color: var(--purple);
  background: var(--purple-soft);
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.dd-auto__pill::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--purple);
  box-shadow: 0 0 8px var(--purple);
  animation: pulse 1.6s ease-in-out infinite;
}
.dd-auto__flow { display: grid; gap: 0; }
.dd-auto__step {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  padding: 12px 0;
  position: relative;
  opacity: 0;
  animation: dd-step-in 0.5s cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes dd-step-in {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: none; }
}
.dd-auto__node {
  width: 14px; height: 14px;
  border-radius: 999px;
  background: var(--purple);
  box-shadow: 0 0 12px var(--purple);
  margin-top: 6px;
  margin-left: 5px;
  position: relative;
  z-index: 1;
}
.dd-auto__step--ai .dd-auto__node, .dd-auto__step--out .dd-auto__node { background: var(--orange); box-shadow: 0 0 12px var(--orange); }
.dd-auto__step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 11px; top: 26px; bottom: -6px;
  width: 1px;
  background: var(--line-2);
}
.dd-auto__step-h { display: flex; justify-content: space-between; align-items: baseline; }
.dd-auto__step-t { font-size: 14px; font-weight: 500; }
.dd-auto__step-c {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  color: var(--fg-3);
}
.dd-auto__step-s { font-size: 12px; color: var(--fg-3); margin-top: 2px; }

.dd-auto__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.dd-auto__metrics > div { display: flex; flex-direction: column; gap: 4px; }
.dd-auto__metrics span {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 10px;
  color: var(--fg-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.dd-auto__metrics strong { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; color: var(--purple); }

/* ------------------------------ results ------------------------------ */
.results__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 60px;
}
.result {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
}
.result__k {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 600;
  background: linear-gradient(135deg, var(--purple), var(--orange));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 18px;
}
.result__l { font-size: 15px; color: var(--fg); font-weight: 500; margin-bottom: 8px; }
.result__d { font-size: 13px; color: var(--fg-3); }

.results__chart {
  margin-top: 48px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg-2);
}
.chart { width: 100%; height: auto; display: block; }

@media (max-width: 820px) {
  .results__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ------------------------------ process ------------------------------ */
.process__list {
  list-style: none; padding: 0; margin: 60px 0 0;
  display: grid; gap: 0;
  max-width: 820px; margin-left: auto; margin-right: auto;
}
.process__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding-bottom: 40px;
  position: relative;
}
.process__item:last-child { padding-bottom: 0; }
.process__rail { position: relative; display: flex; flex-direction: column; align-items: center; }
.process__node {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 13px;
  font-weight: 600;
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  color: var(--fg);
  position: relative;
  z-index: 1;
}
.process__item:nth-child(odd) .process__node {
  box-shadow: 0 0 30px var(--purple-soft), inset 0 0 0 1px var(--purple-soft);
}
.process__item:nth-child(even) .process__node {
  box-shadow: 0 0 30px var(--orange-soft), inset 0 0 0 1px var(--orange-soft);
}
.process__line {
  position: absolute;
  top: 56px; bottom: -40px; left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, var(--line-2), var(--line), transparent);
  transform: translateX(-50%);
}
.process__t { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; margin: 14px 0 8px; }
.process__d { color: var(--fg-2); margin: 0; max-width: 60ch; }

@media (max-width: 600px) {
  .process__item { grid-template-columns: 56px 1fr; gap: 20px; }
  .process__node { width: 40px; height: 40px; font-size: 11px; }
  .process__line { top: 40px; }
}

/* ------------------------------ testimonials ------------------------------ */
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 60px;
}
.testimonial__inner { padding: 32px; }
.testimonial__quote {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 64px;
  line-height: 1;
  color: var(--purple);
  display: block;
  margin-bottom: -10px;
}
.testimonial--orange .testimonial__quote { color: var(--orange); }
.testimonial__q {
  font-size: 19px;
  line-height: 1.4;
  margin: 0 0 24px;
  letter-spacing: -0.015em;
  text-wrap: pretty;
}
.testimonial__by { display: flex; align-items: center; gap: 12px; }
.testimonial__by .placeholder { width: 44px; height: 44px; border-radius: 999px; flex: none; }
.testimonial__by .placeholder__corner { display: none; }
.testimonial__by .placeholder__label { font-size: 10px; }
.testimonial__n { font-weight: 600; font-size: 15px; }
.testimonial__r { color: var(--fg-3); font-size: 13px; }

@media (max-width: 820px) {
  .testimonials__grid { grid-template-columns: 1fr; }
}

/* ------------------------------ final cta ------------------------------ */
.final__card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  padding: clamp(48px, 7vw, 96px) clamp(24px, 5vw, 64px);
  text-align: center;
  border: 1px solid var(--line-2);
  background: var(--bg-2);
}
.final__bg { position: absolute; inset: 0; pointer-events: none; }
.final__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 80%);
}
.final__glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 999px;
  filter: blur(120px);
  opacity: 0.4;
}
.final__glow--p { background: var(--purple); top: -200px; left: -100px; }
.final__glow--o { background: var(--orange); bottom: -200px; right: -100px; }

.final__title {
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin: 18px 0 20px;
  text-wrap: balance;
  position: relative;
}
.final__sub {
  color: var(--fg-2);
  font-size: 18px;
  max-width: 56ch;
  margin: 0 auto 36px;
  position: relative;
}
.final__ctas {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  position: relative;
  margin-bottom: 32px;
}
.final__meta {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 13px;
  color: var(--fg-3);
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

/* calendly placeholder */
.calendly {
  margin-top: 32px;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--bg-2);
  overflow: hidden;
}
.calendly__head {
  padding: 20px 28px;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.calendly__t { font-weight: 600; font-size: 18px; letter-spacing: -0.01em; }
.calendly__s { font-family: 'Geist Mono', ui-monospace, monospace; font-size: 12px; color: var(--fg-3); margin-top: 2px; }
.calendly__pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  color: var(--orange);
  padding: 4px 10px; border-radius: 999px;
  background: var(--orange-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.calendly__pill::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--orange);
  box-shadow: 0 0 8px var(--orange);
  animation: pulse 1.6s ease-in-out infinite;
}
.calendly__body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
}
.calendly__cal { padding: 24px 28px; border-right: 1px solid var(--line); }
.calendly__month { font-weight: 600; margin-bottom: 14px; letter-spacing: -0.01em; }
.calendly__weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
  margin-bottom: 8px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  color: var(--fg-4);
  text-align: center;
}
.calendly__days {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
}
.calendly__day {
  aspect-ratio: 1;
  background: transparent;
  border: 1px solid transparent;
  color: var(--fg);
  border-radius: var(--r-sm);
  cursor: pointer;
  font-family: inherit; font-size: 13px;
  transition: background .2s ease, border-color .2s ease;
}
.calendly__day:hover:not(:disabled) { background: rgba(255,255,255,0.05); }
.calendly__day:disabled, .calendly__day.is-disabled { color: var(--fg-4); cursor: not-allowed; }
.calendly__day.is-active {
  background: var(--purple);
  color: #0a0a14;
  font-weight: 600;
  box-shadow: 0 0 24px var(--purple-soft);
}
.calendly__slots { padding: 24px 28px; display: flex; flex-direction: column; gap: 8px; }
.calendly__slots-h { font-family: 'Geist Mono', ui-monospace, monospace; font-size: 12px; color: var(--fg-3); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.08em; }
.calendly__slot {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  color: var(--fg);
  padding: 12px 14px;
  border-radius: var(--r-sm);
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 14px;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: border-color .2s ease, background .2s ease;
}
.calendly__slot span { color: var(--fg-4); font-size: 11px; }
.calendly__slot:hover { border-color: var(--line-2); }
.calendly__slot.is-selected {
  border-color: var(--orange);
  background: var(--orange-soft);
  box-shadow: 0 0 0 1px var(--orange-soft), 0 0 24px oklch(0.72 0.19 45 / 0.2);
}
.calendly__slots .btn { margin-top: 8px; }

@media (max-width: 720px) {
  .calendly__body { grid-template-columns: 1fr; }
  .calendly__cal { border-right: none; border-bottom: 1px solid var(--line); }
}

/* ------------------------------ footer ------------------------------ */
.foot {
  border-top: 1px solid var(--line);
  padding: 64px 0 24px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
.foot__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.foot__brand { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.foot__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.foot__h {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-4);
  margin-bottom: 14px;
}
.foot__cols a { display: block; color: var(--fg-2); font-size: 14px; padding: 4px 0; }
.foot__cols a:hover { color: var(--fg); }
.foot__legal {
  display: flex; justify-content: space-between;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 12px;
  color: var(--fg-4);
  padding-top: 24px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap; gap: 12px;
}

@media (max-width: 700px) {
  .foot__inner { grid-template-columns: 1fr; }
  .foot__cols { grid-template-columns: 1fr 1fr; }
}

/* ------------------------------ floating WA ------------------------------ */
.wa { position: fixed; right: 24px; bottom: 24px; z-index: 60; }
.wa__btn {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: #25d366;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 40px -8px rgba(37, 211, 102, 0.6), 0 0 0 1px rgba(255,255,255,0.1);
  transition: transform .2s ease;
  position: relative;
}
.wa__btn::before {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.4);
  z-index: -1;
  animation: pulse-wa 2s ease-in-out infinite;
}
@keyframes pulse-wa {
  0%, 100% { transform: scale(1); opacity: .6; }
  50% { transform: scale(1.15); opacity: 0; }
}
.wa__btn:hover { transform: scale(1.06); }

.wa__panel {
  position: absolute;
  right: 0; bottom: 70px;
  width: 320px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
  animation: pop .25s cubic-bezier(.2,.8,.2,1);
}
@keyframes pop {
  from { opacity: 0; transform: translateY(8px) scale(0.96); }
  to { opacity: 1; transform: none; }
}
.wa__head {
  display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center;
  padding: 14px;
  background: #075e54;
  color: #fff;
}
.wa__avatar {
  width: 38px; height: 38px; border-radius: 999px;
  background: rgba(255,255,255,0.15);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-size: 13px;
  font-family: 'Geist Mono', ui-monospace, monospace;
}
.wa__name { font-weight: 600; font-size: 14px; }
.wa__status { font-size: 11px; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 6px; }
.wa__status span { width: 6px; height: 6px; border-radius: 999px; background: #25d366; }
.wa__close {
  background: none; border: none; color: #fff; font-size: 24px; line-height: 1; cursor: pointer; opacity: .7;
}
.wa__close:hover { opacity: 1; }
.wa__body {
  padding: 24px 14px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.02), transparent 40%),
    #0a0a12;
  min-height: 80px;
}
.wa__bubble {
  background: #1f2c33;
  padding: 10px 14px;
  border-radius: 12px 12px 12px 4px;
  font-size: 14px;
  max-width: 80%;
  color: #e9edef;
}
.wa__send {
  display: block; text-align: center;
  padding: 14px;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  transition: background .2s ease;
}
.wa__send:hover { background: #20bd5a; }

@media (max-width: 480px) {
  .wa__panel { width: calc(100vw - 48px); }
}
