/* ============================================================
   Nasc — marketing site
   Brand: Ink #14213D · Signal #2F6BFF · Ember #FF8A5B · Mist #F5F7FB
   Type:  Space Grotesk (display) · Inter (body)
   ============================================================ */

:root {
  --ink: #14213D;
  --ink-2: #0D1730;
  --ink-3: #1B2B52;
  --signal: #2F6BFF;
  --signal-soft: #5B87FF;
  --sky: #5BD0FF;
  --ember: #FF8A5B;
  --mist: #F5F7FB;
  --slate: #64748B;
  --body: #3a4a63;
  --body-2: #4a5a72;
  --border: #e6ebf3;
  --hairline: #eef1f7;
  --on-dark-muted: #8896b0;
  --on-dark-soft: #aeb9d0;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --rad: 18px;
  --shadow-lg: 0 30px 80px rgba(20, 33, 61, 0.16);
  --shadow-md: 0 16px 44px rgba(20, 33, 61, 0.10);
  --grad: linear-gradient(120deg, #2F6BFF, #5BD0FF);
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }

.wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.wrap { width: min(1160px, 100% - 48px); margin-inline: auto; }

.kicker {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signal);
  font-weight: 600;
  margin: 0 0 16px;
}
.kicker--ember { color: var(--ember); }

.sec { padding: 108px 0; position: relative; }
.sec--mist { background: var(--mist); }
.sec--tight { padding: 84px 0; }

.sec-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 4.4vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 20px;
  max-width: 720px;
}
.sec-lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--body);
  max-width: 640px;
  margin: 0 0 44px;
}
.center { text-align: center; }
.center .sec-title, .center .sec-lede { margin-inline: auto; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 30px;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(.2,.9,.3,1.4), box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  will-change: transform;
}
.btn--primary {
  background: var(--signal);
  color: #fff;
  box-shadow: 0 10px 30px rgba(47, 107, 255, 0.38), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 44px rgba(47, 107, 255, 0.5), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn--ghost {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.09); }
.btn--ink {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 26px rgba(20,33,61,0.28);
}
.btn--ink:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 40px rgba(20,33,61,0.38); }
.btn--lg { padding: 19px 38px; font-size: 17px; border-radius: 16px; }
.btn .arr { transition: transform 0.25s ease; }
.btn:hover .arr { transform: translateX(4px); }

.link-more {
  font-weight: 600;
  color: var(--signal);
  text-decoration: none;
  border-bottom: 2px solid rgba(47,107,255,0.25);
  padding-bottom: 2px;
  transition: border-color .2s ease;
}
.link-more:hover { border-color: var(--signal); }

/* ---------- nav ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}
.nav--solid {
  background: rgba(13, 23, 48, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(8, 14, 30, 0.35);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}
.nav__logo .wordmark { font-size: 26px; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav__links a {
  color: var(--on-dark-soft);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: #fff; }
.nav__links a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
}
.nav__cta {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  color: #fff !important;
  background: var(--signal);
  padding: 11px 22px;
  border-radius: 11px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(47,107,255,0.4);
  transition: transform .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(47,107,255,0.55); }
.nav__burger {
  display: none;
  background: none;
  border: 0;
  width: 44px; height: 44px;
  cursor: pointer;
  position: relative;
  z-index: 70;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  margin: 5px auto;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  background:
    radial-gradient(1100px 600px at 78% 18%, rgba(47,107,255,0.28), transparent 62%),
    radial-gradient(700px 500px at 12% 88%, rgba(91,208,255,0.12), transparent 60%),
    linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 58%, var(--ink) 100%);
  color: #fff;
  overflow: hidden;
}
.hero__net {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__net canvas { position: absolute; inset: 0; }
.hero__fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 140px;
  background: linear-gradient(180deg, transparent, rgba(13,23,48,0.85));
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 172px 0 130px;
  min-height: 92vh;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--on-dark-soft);
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(6px);
  padding: 9px 18px;
  border-radius: 40px;
  margin-bottom: 26px;
}
.hero__eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 0 rgba(255,138,91,0.6);
  animation: ping 2.2s infinite;
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(255,138,91,0.55); }
  70% { box-shadow: 0 0 0 10px rgba(255,138,91,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,138,91,0); }
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(38px, 5.6vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
}
.hero h1 .grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lede {
  font-size: 19px;
  line-height: 1.65;
  color: var(--on-dark-soft);
  max-width: 540px;
  margin: 0 0 38px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

.hero--sub .hero__inner {
  grid-template-columns: 1fr;
  min-height: 0;
  padding: 168px 0 96px;
  text-align: left;
}
.hero--sub .hero__lede { max-width: 640px; }

/* ---------- floating 3D dashboard (hero right) ---------- */

.stage {
  perspective: 1400px;
  position: relative;
  min-height: 520px;
}
.dash {
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(-14deg) rotateX(9deg) rotateZ(1deg);
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: rotateY(-14deg) rotateX(9deg) translateY(0); }
  50% { transform: rotateY(-11deg) rotateX(7deg) translateY(-16px); }
}
.dash__main {
  background: linear-gradient(165deg, #1B2B52, #131F3E 70%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  box-shadow: 0 60px 120px rgba(0, 6, 20, 0.55), inset 0 1px 0 rgba(255,255,255,0.08);
  padding: 22px;
  width: min(460px, 100%);
  margin-inline: auto;
}
.dash__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 16px;
}
.dash__bar .wordmark { color: #fff; font-size: 16px; }
.dash__bar__tabs { margin-left: auto; display: flex; gap: 6px; }
.dash__bar__tabs i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.dash__bar__tabs i:first-child { background: var(--ember); }
.dash__cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.dash__col__head {
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  margin-bottom: 8px;
  font-weight: 600;
}
.dash__chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 9px 10px;
  margin-bottom: 8px;
}
.dash__chip b { display: block; color: #eaf0ff; font-size: 11.5px; font-weight: 600; }
.dash__chip span { font-size: 10px; color: var(--on-dark-muted); }
.dash__chip--hot { border-color: rgba(255,138,91,0.5); background: rgba(255,138,91,0.10); }
.dash__chip--won { border-color: rgba(59,214,152,0.45); background: rgba(59,214,152,0.08); }
.dash__meter {
  margin-top: 14px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 12px 14px;
}
.dash__meter__row { display: flex; justify-content: space-between; font-size: 11px; color: var(--on-dark-soft); margin-bottom: 8px; }
.dash__meter__row b { color: #fff; }
.dash__meter__track { height: 6px; border-radius: 6px; background: rgba(255,255,255,0.1); overflow: hidden; }
.dash__meter__fill {
  height: 100%;
  width: 78%;
  border-radius: 6px;
  background: var(--grad);
  animation: fillup 2.6s cubic-bezier(.2,.8,.2,1) both;
  transform-origin: left;
}
@keyframes fillup { from { transform: scaleX(0.1); } to { transform: scaleX(1); } }

.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 16px;
  box-shadow: 0 30px 70px rgba(0, 8, 24, 0.5);
  padding: 14px 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--ink);
  animation: floaty2 6s ease-in-out infinite;
}
@keyframes floaty2 {
  0%, 100% { transform: translateZ(90px) translateY(0); }
  50% { transform: translateZ(90px) translateY(-12px); }
}
.float-card__icon {
  width: 40px; height: 40px;
  flex: none;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.float-card b { display: block; font-size: 13px; font-weight: 600; }
.float-card span { font-size: 11.5px; color: var(--slate); }
.float-card--sms { top: -34px; right: -8px; animation-delay: 0.8s; }
.float-card--sms .float-card__icon { background: #EAF0FF; color: var(--signal); }
.float-card--review { bottom: 46px; left: -26px; animation-delay: 1.6s; }
.float-card--review .float-card__icon { background: #FFF1EA; color: var(--ember); }
.float-card--booked { bottom: -30px; right: 26px; animation-delay: 2.4s; }
.float-card--booked .float-card__icon { background: #E7F9F1; color: #17a673; }
.stars { color: #FFB020; letter-spacing: 2px; font-size: 12px; }

/* ---------- trust marquee ---------- */

.trustbar {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}
.trustbar::before, .trustbar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.trustbar::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.trustbar::after { right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }
.marquee { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee ul {
  display: flex;
  align-items: center;
  gap: 56px;
  list-style: none;
  margin: 0;
  padding: 0 28px;
}
.marquee li {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  display: flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
}
.marquee li::after {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--signal);
  opacity: 0.7;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- stat band ---------- */

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--rad);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 4.6vw, 54px);
  letter-spacing: -0.02em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat__label { margin-top: 12px; font-size: 14.5px; color: var(--body-2); line-height: 1.5; }

/* ---------- value grid (3D tilt cards) ---------- */

.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.vcard {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 34px 28px;
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 0.18s ease-out, box-shadow 0.3s ease, border-color 0.3s ease;
  transform-style: preserve-3d;
  overflow: hidden;
}
.vcard:hover { box-shadow: var(--shadow-lg); border-color: rgba(47,107,255,0.35); }
.vcard::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--gx, 50%) var(--gy, 50%), rgba(47,107,255,0.09), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.vcard.tilting::after { opacity: 1; }
.vcard__icon {
  width: 54px; height: 54px;
  border-radius: 15px;
  background: linear-gradient(135deg, #EAF0FF, #F5F9FF);
  border: 1px solid #dbe6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--signal);
  margin-bottom: 22px;
  transform: translateZ(30px);
}
.vcard--ember .vcard__icon { background: linear-gradient(135deg, #FFF1EA, #FFF8F4); border-color: #ffd9c6; color: var(--ember); }
.vcard h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  margin: 0 0 12px;
  transform: translateZ(24px);
}
.vcard p { font-size: 15px; line-height: 1.6; color: var(--body-2); margin: 0; transform: translateZ(16px); }

/* ---------- split feature ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split--rev > .split__media { order: 2; }
.split h2 { margin-bottom: 18px; }
.split p { font-size: 17px; line-height: 1.7; color: var(--body); margin: 0 0 18px; }
.split .sec-lede { margin-bottom: 24px; }

/* ---------- phone / sms mockup ---------- */

.phone-stage { perspective: 1200px; display: flex; justify-content: center; }
.phone {
  width: 300px;
  border-radius: 40px;
  background: linear-gradient(170deg, #1B2B52, #101B38);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 50px 110px rgba(10, 18, 40, 0.45), inset 0 1px 0 rgba(255,255,255,0.1);
  padding: 14px;
  transform: rotateY(12deg) rotateX(4deg);
  transform-style: preserve-3d;
  animation: floatyPhone 7s ease-in-out infinite;
}
@keyframes floatyPhone {
  0%, 100% { transform: rotateY(12deg) rotateX(4deg) translateY(0); }
  50% { transform: rotateY(9deg) rotateX(2deg) translateY(-14px); }
}
.phone__screen {
  background: #F7F9FD;
  border-radius: 28px;
  padding: 18px 14px 22px;
  min-height: 430px;
}
.phone__notch {
  width: 110px; height: 22px;
  background: #101B38;
  border-radius: 0 0 14px 14px;
  margin: -18px auto 14px;
}
.phone__head {
  text-align: center;
  font-size: 12px;
  color: var(--slate);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 16px;
}
.phone__head b { display: block; color: var(--ink); font-size: 13.5px; }
.sms {
  max-width: 82%;
  padding: 11px 14px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.45;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(.2,.9,.3,1.3);
}
.sms.show { opacity: 1; transform: translateY(0) scale(1); }
.sms--in { background: #E9EDF4; color: var(--ink); border-bottom-left-radius: 5px; }
.sms--out {
  background: var(--signal);
  color: #fff;
  margin-left: auto;
  border-bottom-right-radius: 5px;
  box-shadow: 0 8px 20px rgba(47,107,255,0.3);
}
.sms--sys {
  background: none;
  color: var(--slate);
  font-size: 11px;
  text-align: center;
  max-width: 100%;
  margin: 2px 0 8px;
  padding: 0;
}

/* ---------- steps (connecting line) ---------- */

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, rgba(47,107,255,0.15), rgba(47,107,255,0.65), rgba(47,107,255,0.15));
}
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 60px 30px 34px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.step:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.step__node {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px #fff, 0 0 0 9px var(--border);
}
.step:nth-child(2) .step__node { background: var(--signal); box-shadow: 0 0 0 8px #fff, 0 0 0 9px rgba(47,107,255,0.4), 0 10px 24px rgba(47,107,255,0.4); }
.step h3 { font-family: var(--font-display); font-weight: 600; font-size: 21px; margin: 14px 0 10px; }
.step p { font-size: 15px; line-height: 1.6; color: var(--body-2); margin: 0; }

/* ---------- founder band ---------- */

.founder {
  background:
    radial-gradient(900px 500px at 85% 20%, rgba(47,107,255,0.22), transparent 60%),
    var(--ink);
  color: #fff;
  border-radius: 26px;
  padding: 72px 68px;
  position: relative;
  overflow: hidden;
}
.founder .kicker { color: var(--sky); }
.founder h2 { color: #fff; }
.founder p { color: var(--on-dark-soft); font-size: 17px; line-height: 1.7; max-width: 640px; }
.founder__mark {
  position: absolute;
  right: -60px;
  bottom: -80px;
  opacity: 0.1;
  transform: rotate(8deg);
  pointer-events: none;
}

/* ---------- service rows ---------- */

.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.svc {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 0.18s ease-out, box-shadow .3s ease, border-color .3s ease;
  transform-style: preserve-3d;
}
.svc:hover { box-shadow: var(--shadow-lg); border-color: rgba(47,107,255,0.3); }
.svc::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(480px circle at var(--gx,50%) var(--gy,50%), rgba(47,107,255,0.08), transparent 46%);
  opacity: 0; transition: opacity .3s ease; pointer-events: none;
}
.svc.tilting::after { opacity: 1; }
.svc__head { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; transform: translateZ(22px); }
.svc__icon {
  width: 48px; height: 48px; flex: none;
  border-radius: 13px;
  background: linear-gradient(135deg, #EAF0FF, #F5F9FF);
  border: 1px solid #dbe6ff;
  color: var(--signal);
  display: flex; align-items: center; justify-content: center;
}
.svc--ember .svc__icon { background: linear-gradient(135deg, #FFF1EA, #FFF8F4); border-color: #ffd9c6; color: var(--ember); }
.svc h2, .svc h3 { font-family: var(--font-display); font-weight: 600; font-size: 21px; margin: 0; }
.svc p { font-size: 15.5px; line-height: 1.65; color: var(--body-2); margin: 0; transform: translateZ(12px); }
.svc__tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--signal);
  background: #EAF0FF;
  padding: 6px 12px;
  border-radius: 8px;
}
.svc--wide { grid-column: 1 / -1; }
.svc--ai {
  background: linear-gradient(140deg, #1B2B52, #131F3E);
  border-color: rgba(255,255,255,0.12);
  color: #fff;
}
.svc--ai h2 { color: #fff; }
.svc--ai p { color: var(--on-dark-soft); }
.svc--ai .svc__icon { background: rgba(91,208,255,0.12); border-color: rgba(91,208,255,0.35); color: var(--sky); }
.svc--ai .svc__tag { background: rgba(91,208,255,0.14); color: var(--sky); }

/* ---------- pricing ---------- */

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.plan {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  transform: perspective(1100px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 0.18s ease-out, box-shadow .3s ease, border-color .3s ease;
  transform-style: preserve-3d;
}
.plan:hover { box-shadow: var(--shadow-lg); }
.plan--pop {
  background: linear-gradient(160deg, #16244A, #0F1B3B);
  border: 1px solid rgba(91,135,255,0.5);
  color: #fff;
  box-shadow: 0 40px 90px rgba(15, 27, 59, 0.45);
}
.plan--pop:hover { box-shadow: 0 50px 110px rgba(15,27,59,0.6); }
.plan__badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%) translateZ(30px);
  background: var(--grad);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 30px;
  box-shadow: 0 10px 26px rgba(47,107,255,0.45);
  white-space: nowrap;
}
.plan h2 { font-family: var(--font-display); font-weight: 600; font-size: 24px; margin: 0 0 6px; transform: translateZ(20px); }
.plan__for { font-size: 14.5px; color: var(--slate); line-height: 1.5; margin: 0 0 26px; min-height: 44px; }
.plan--pop .plan__for { color: var(--on-dark-soft); }
.plan__price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; transform: translateZ(20px); }
.plan__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 46px;
  letter-spacing: -0.02em;
}
.plan--pop .plan__num {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.plan__per { font-size: 15px; color: var(--slate); }
.plan--pop .plan__per { color: var(--on-dark-soft); }
.plan__setup { font-size: 13px; color: var(--slate); margin: 0 0 26px; }
.plan--pop .plan__setup { color: var(--on-dark-muted); }
.plan ul { list-style: none; margin: 0 0 32px; padding: 26px 0 0; border-top: 1px solid var(--hairline); flex: 1; }
.plan--pop ul { border-color: rgba(255,255,255,0.12); }
.plan li {
  position: relative;
  padding: 0 0 13px 30px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--body-2);
}
.plan--pop li { color: var(--on-dark-soft); }
.plan li::before {
  content: '';
  position: absolute;
  left: 0; top: 3px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: #EAF0FF url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232F6BFF' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 10px no-repeat;
}
.plan--pop li::before { background-color: rgba(91,208,255,0.16); }
.plan .btn { width: 100%; }

/* ---------- FAQ ---------- */

.faq { max-width: 760px; margin-inline: auto; }
.faq__item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.faq__item.open { border-color: rgba(47,107,255,0.4); box-shadow: var(--shadow-md); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
}
.faq__q .chev { flex: none; transition: transform .3s ease; color: var(--signal); }
.faq__item.open .chev { transform: rotate(180deg); }
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s cubic-bezier(.2,.8,.2,1);
}
.faq__item.open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { margin: 0; padding: 0 26px 24px; font-size: 15.5px; line-height: 1.65; color: var(--body-2); }

/* ---------- contact ---------- */

.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: start; }
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 42px;
  box-shadow: var(--shadow-md);
}
.contact-card h2 { font-family: var(--font-display); font-weight: 600; font-size: 24px; margin: 0 0 10px; }
.contact-card > p { color: var(--body-2); font-size: 15.5px; line-height: 1.6; margin: 0 0 26px; }
.booking-slot {
  border: 2px dashed #c7d5ff;
  border-radius: 16px;
  background: linear-gradient(180deg, #F8FAFF, #F1F5FF);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 32px;
  color: var(--slate);
  font-size: 14.5px;
}
.booking-slot b { font-family: var(--font-display); color: var(--ink); font-size: 17px; }
.c-row { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--hairline); }
.c-row:last-child { border-bottom: 0; }
.c-row__icon {
  width: 44px; height: 44px; flex: none;
  border-radius: 12px;
  background: #EAF0FF;
  color: var(--signal);
  display: flex; align-items: center; justify-content: center;
}
.c-row b { display: block; font-size: 15px; margin-bottom: 3px; }
.c-row span, .c-row a { font-size: 14.5px; color: var(--body-2); text-decoration: none; }
.c-row a:hover { color: var(--signal); }

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  background:
    radial-gradient(900px 480px at 30% 0%, rgba(47,107,255,0.35), transparent 60%),
    radial-gradient(700px 420px at 85% 100%, rgba(91,208,255,0.16), transparent 55%),
    var(--ink);
  color: #fff;
  overflow: hidden;
}
.cta-band .hero__net { opacity: 0.75; }
.cta-band__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 110px 0;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.6vw, 48px);
  letter-spacing: -0.02em;
  margin: 0 auto 18px;
  max-width: 680px;
  line-height: 1.1;
}
.cta-band p { color: var(--on-dark-soft); font-size: 18px; max-width: 560px; margin: 0 auto 40px; line-height: 1.65; }

/* ---------- footer ---------- */

.footer { background: var(--ink-2); color: var(--on-dark-soft); padding: 72px 0 36px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand .wordmark { color: #fff; font-size: 24px; }
.footer__brand > a { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-bottom: 18px; }
.footer__brand p { font-size: 14px; line-height: 1.65; color: var(--on-dark-muted); margin: 0; max-width: 280px; }
.footer h4 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 18px;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer ul a { color: var(--on-dark-muted); text-decoration: none; font-size: 14.5px; transition: color .2s ease; }
.footer ul a:hover { color: #fff; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 30px;
  font-size: 13px;
  color: var(--on-dark-muted);
}
.footer__tx { display: inline-flex; align-items: center; gap: 8px; }
.footer__tx .dot2 { width: 6px; height: 6px; border-radius: 50%; background: var(--ember); }

/* ---------- legal pages ---------- */

.legal { max-width: 780px; }
.legal h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin: 44px 0 14px;
}
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-family: var(--font-display); font-weight: 600; font-size: 18px; margin: 28px 0 10px; }
.legal p, .legal li { font-size: 15.5px; line-height: 1.7; color: var(--body); }
.legal p { margin: 0 0 14px; }
.legal ul { margin: 0 0 14px; padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal strong { color: var(--ink); }
.legal a { color: var(--signal); }
.legal-date {
  display: inline-block;
  font-size: 13.5px;
  color: var(--on-dark-soft);
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
  padding: 8px 16px;
  border-radius: 30px;
  margin-top: 18px;
}
.legal-callout {
  background: var(--mist);
  border: 1px solid var(--border);
  border-left: 4px solid var(--signal);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 0 0 14px;
}
.legal-callout p { margin: 0; }

/* ---------- founders page ---------- */

.plan__was {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--slate);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--ember);
}
.plan__lock {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ember);
  background: #FFF1EA;
  border: 1px solid #ffd9c6;
  padding: 6px 12px;
  border-radius: 8px;
  margin-bottom: 16px;
}
.plan--pop .plan__lock { background: rgba(255,138,91,0.12); border-color: rgba(255,138,91,0.4); }
.spots-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  background: rgba(255,138,91,0.14);
  border: 1px solid rgba(255,138,91,0.45);
  padding: 10px 20px;
  border-radius: 40px;
}

/* ---------- footer legal links ---------- */

.footer__bottom a { color: inherit; text-decoration: none; transition: color .2s ease; }
.footer__bottom a:hover { color: #fff; }

/* ---------- reveal animation ---------- */

/* hidden state only applies when JS is running (html.js set inline in <head>),
   so crawlers and no-JS clients always see full content */
html.js .reveal {
  opacity: 0;
  transform: translateY(46px) perspective(900px) rotateX(6deg);
  transition: opacity 0.8s cubic-bezier(.2,.7,.2,1), transform 0.8s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
html.js .reveal.in { opacity: 1; transform: translateY(0) perspective(900px) rotateX(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.001s !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- responsive ---------- */

@media (max-width: 1020px) {
  .hero__inner { grid-template-columns: 1fr; padding: 150px 0 90px; min-height: 0; gap: 84px; }
  .hero__lede { max-width: 620px; }
  .stage { min-height: 460px; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .split--rev > .split__media { order: 0; }
}

@media (max-width: 860px) {
  .nav__links {
    position: fixed;
    inset: 0;
    background: rgba(13, 23, 48, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    font-size: 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    z-index: 65;
  }
  .nav-open .nav__links {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition: transform .4s cubic-bezier(.2,.8,.2,1), opacity .4s ease;
  }
  .nav__links a { font-size: 20px; }
  .nav__burger { display: block; }
  .nav__cta { display: none; }
  .nav-open .nav__cta { display: inline-flex; }
  .sec { padding: 76px 0; }
  .steps { grid-template-columns: 1fr; }
  .steps::before {
    left: 50%; right: auto; top: 6%; bottom: 6%;
    width: 2px; height: auto;
    background: linear-gradient(180deg, rgba(47,107,255,0.15), rgba(47,107,255,0.6), rgba(47,107,255,0.15));
  }
  .stats { grid-template-columns: 1fr; }
  .svc-grid, .plans { grid-template-columns: 1fr; }
  .plan--pop { transform: none; }
  .founder { padding: 52px 32px; }
  .float-card--review { left: -6px; }
  .float-card--sms { right: 0; }
}

@media (max-width: 560px) {
  .value-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
  .hero__ctas .btn { width: 100%; }
  .stage { min-height: 500px; }
  .dash { transform: rotateY(0) rotateX(0); animation: none; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-card { padding: 30px 24px; }
}
