@charset "UTF-8";

:root {
  --bg: #070915;
  --bg-2: #0d1224;
  --panel: #11182e;
  --panel-2: #151f3a;
  --line: rgba(226, 232, 240, .12);
  --text: #f8fafc;
  --muted: #b8c2d6;
  --soft: #8390a8;
  --brand: #3b82f6;
  --brand-2: #8b5cf6;
  --brand-3: #06b6d4;
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;
  --shadow: 0 24px 80px rgba(0, 0, 0, .38);
  --radius: 22px;
  --radius-lg: 32px;
  --max: 1180px;
  --focus: 0 0 0 4px rgba(59, 130, 246, .32);
  --gradient: linear-gradient(135deg, var(--brand), var(--brand-2));
  --glass: linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .04));
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 8%, rgba(59, 130, 246, .25), transparent 34rem),
    radial-gradient(circle at 88% 4%, rgba(139, 92, 246, .22), transparent 32rem),
    radial-gradient(circle at 60% 90%, rgba(6, 182, 212, .12), transparent 34rem),
    var(--bg);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .7), transparent 72%);
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
img, svg { max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 9999;
  background: #fff;
  color: #07111f;
  padding: .8rem 1rem;
  border-radius: 12px;
}
.skip-link:focus { left: 12px; outline: none; box-shadow: var(--focus); }

:focus-visible { outline: 0; box-shadow: var(--focus); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .8rem;
  border: 1px solid rgba(147, 197, 253, .25);
  border-radius: 999px;
  background: rgba(59, 130, 246, .10);
  color: #bfdbfe;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .02em;
}

.eyebrow.with-dot::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(34, 197, 94, .12);
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: .82rem 1.12rem;
  border-radius: 999px;
  font-weight: 850;
  border: 1px solid transparent;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
  color: var(--text);
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gradient);
  box-shadow: 0 16px 45px rgba(59, 130, 246, .34);
}
.btn-primary:hover { box-shadow: 0 22px 60px rgba(59, 130, 246, .44); }

.btn-secondary {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .14);
}
.btn-secondary:hover { background: rgba(255, 255, 255, .10); border-color: rgba(147, 197, 253, .35); }

.btn-light {
  background: #f8fafc;
  color: #0f172a;
}

.btn-small {
  min-height: 40px;
  padding: .58rem .9rem;
  font-size: .92rem;
}

.text-gradient {
  background: linear-gradient(135deg, #93c5fd 0%, #c4b5fd 50%, #67e8f9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.muted { color: var(--muted); }

/* Header & nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(7, 9, 21, .78);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: .50rem;
  font-weight: 950;
  letter-spacing: -.04em;
  font-size: 1.35rem;
  color: #fff;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--gradient);
  box-shadow: 0 14px 34px rgba(59, 130, 246, .35);
}
.logo-mark svg { width: 25px; height: 25px; }

.logo-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 14px;
  display: block;
  filter: drop-shadow(0 14px 34px rgba(59, 130, 246, .28));
}
.footer .logo-img { width: 70px; height: 70px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: .35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: inline-flex;
  padding: .65rem .85rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 750;
  font-size: .94rem;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, .07);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .65rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  cursor: pointer;
}

.show-mobile { display: none; }
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  margin: 4px auto;
  border-radius: 4px;
}

/* Hero */
.hero {
  padding: clamp(4.8rem, 8vw, 7.4rem) 0 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(330px, .97fr);
  gap: clamp(2.2rem, 5vw, 5rem);
  align-items: center;
}

.hero h1 {
  margin: 1rem 0 1rem;
  font-size: clamp(2.55rem, 6vw, 5.55rem);
  line-height: .95;
  letter-spacing: -.075em;
  font-weight: 550;
}

.hero-title-wrap {
  position: relative;
  display: grid;
  gap: 1.05rem;
}

.hero-title-row {
  position: relative;
  display: block;
}

.hero-title-row .ai-badge {
  position: absolute;
  right: 0;
  top: .55rem;
  margin: 0;
  white-space: nowrap;
  box-shadow: 0 12px 34px rgba(59, 130, 246, .18);
}

.hero-copy {
  max-width: 63ch;
  color: #d7deec;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin: 2rem 0 1.3rem;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem 1rem;
  color: var(--soft);
  font-size: .94rem;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
}

.hero-note span::before {
  content: "✓";
  color: var(--success);
  font-weight: 900;
}

.hero-visual-group {
  display: grid;
  gap: 1.15rem;
  align-content: start;
}

.hero > .container > div:first-child .trust-strip { display: none; }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
  margin-top: 2rem;
  max-width: 690px;
}

.trust-item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .045);
  border-radius: 18px;
  padding: 1rem;
}

.trust-item strong { display: block; font-size: 1.15rem; }
.trust-item span { display: block; color: var(--soft); font-size: .88rem; }

/* Dashboard */
.dashboard {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-lg);
  padding: 1rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04));
  box-shadow: var(--shadow);
}

.dashboard::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(59, 130, 246, .8), rgba(139, 92, 246, .55), rgba(6, 182, 212, .42));
  filter: blur(28px);
  opacity: .28;
}

.window {
  border: 1px solid rgba(255, 255, 255, .10);
  background: #0b1020;
  border-radius: 24px;
  overflow: hidden;
}

.window-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
}

.window-top .ai-badge { margin-left: auto; }

.dots { display: flex; gap: .45rem; }
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot.red { background: #fb7185; }
.dot.yellow { background: #fbbf24; }
.dot.green { background: #34d399; }

.ai-badge {
  font-size: .78rem;
  font-weight: 850;
  color: #bfdbfe;
  border: 1px solid rgba(147, 197, 253, .25);
  background: rgba(59, 130, 246, .12);
  border-radius: 999px;
  padding: .35rem .65rem;
}

.dash-body { padding: 1rem; }

.score-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .045);
}

.score-copy { min-width: 0; }
.score-copy small {
  display: block;
  color: var(--soft);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.score-copy p {
  margin: .35rem 0 0 !important;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.35;
}

.score-value {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: .55rem .75rem;
  border-radius: 16px;
}
.score-value b {
  display: block;
  font-size: 2.65rem;
  line-height: 1;
  color: #bbf7d0;
  letter-spacing: -.07em;
  white-space: nowrap;
}

.ring {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: conic-gradient(var(--success) 0 89%, rgba(255, 255, 255, .12) 89% 100%);
  position: relative;
  flex-shrink: 0;
}
.ring::after {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  background: #0b1020;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
  margin-top: .85rem;
}

.mini-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  background: rgba(255, 255, 255, .045);
}
.mini-card small {
  display: block;
  color: var(--soft);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .2rem;
}
.mini-card strong { font-size: 1.1rem; }

.bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  margin-top: .5rem;
  overflow: hidden;
}
.bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--gradient);
}

.activity-list {
  display: grid;
  gap: .55rem;
  margin-top: .85rem;
}

.activity {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .72rem .82rem;
  border: 1px solid var(--line);
  border-radius: 13px;
  font-size: .88rem;
  background: rgba(255, 255, 255, .03);
}

.activity em {
  color: var(--brand-3);
  font-weight: 800;
  font-style: normal;
}

/* Sections */
section { padding: clamp(3.8rem, 7vw, 6.2rem) 0; }

.section-head {
  max-width: 760px;
  margin: 0 auto 2.6rem;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2rem, 4.5vw, 3.55rem);
  line-height: 1.03;
  letter-spacing: -.055em;
  margin: .8rem 0 .85rem;
}

.section-head p {
  color: var(--muted);
  font-size: 1.08rem;
}

.surface {
  background: linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .015));
  border-block: 1px solid rgba(255, 255, 255, .07);
}

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

.card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  background: rgba(255, 255, 255, .045);
  box-shadow: 0 12px 45px rgba(0, 0, 0, .16);
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(59, 130, 246, .14), transparent 35%);
  opacity: 0;
  transition: .25s;
}
.card:hover::before { opacity: 1; }
.card > * { position: relative; }

.icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, .18), rgba(139, 92, 246, .16));
  border: 1px solid rgba(147, 197, 253, .18);
  font-size: 1.35rem;
}

.card h3 { margin: .95rem 0 .45rem; font-size: 1.14rem; }
.card p { margin: 0; color: var(--muted); }

.answer-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.answer-box .large-card { padding: 2rem; }

.large-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.03;
  letter-spacing: -.05em;
  margin: .8rem 0;
}

.check-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: .7rem;
}

.check-list li {
  display: flex;
  gap: .65rem;
  color: #dbe5f5;
}

.check-list li::before {
  content: "✓";
  flex: 0 0 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(34, 197, 94, .14);
  color: #86efac;
  font-weight: 900;
}

/* Feature suite */
.feature-suite {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.feature-suite-card {
  position: relative;
  min-height: 526px;
  border: 1px solid rgba(96, 165, 250, .22);
  border-radius: var(--radius);
  padding: 1.35rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .025));
  box-shadow: 0 18px 55px rgba(0, 0, 0, .18);
  overflow: hidden;
}

.feature-suite-card:nth-child(1) { border-top: 3px solid #5b8cff; }
.feature-suite-card:nth-child(2) { border-top: 3px solid #9b72ff; }
.feature-suite-card:nth-child(3) { border-top: 3px solid #06b6d4; }
.feature-suite-card:nth-child(4) { border-top: 3px solid #22c55e; }

.feature-suite-card .eyebrow { font-size: .74rem; padding: .35rem .65rem; }

.feature-suite-card h3 {
  font-size: 1.25rem;
  line-height: 1.15;
  margin: 1.4rem 0 .55rem;
  letter-spacing: -.035em;
}

.feature-suite-card p { margin: 0 0 1rem; color: var(--soft); }

.suite-list {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 1.1rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: .65rem;
}

.suite-list li {
  display: flex;
  gap: .6rem;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.35;
}

.suite-list li::before {
  content: "✓";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: rgba(59, 130, 246, .22);
  color: #93c5fd;
  font-weight: 950;
  font-size: .74rem;
}

/* Steps */
.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.step {
  counter-increment: step;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .045);
}

.step::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--gradient);
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(59, 130, 246, .28);
  margin-bottom: 1rem;
}

.step h3 { margin-top: 0; }

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.8rem;
}

.review-card {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 22px;
  padding: 1.45rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .035));
  box-shadow: 0 18px 55px rgba(0, 0, 0, .18);
}

.stars {
  color: #fbbf24;
  letter-spacing: .08em;
  font-size: 1.05rem;
}

.quote {
  color: #e6f2ff;
  font-size: 1.02rem;
  line-height: 1.55;
  margin: 1rem 0 1.5rem;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #60a5fa, #7c3aed);
  font-weight: 950;
  color: #fff;
}

.reviewer strong { display: block; }
.reviewer span { display: block; color: var(--soft); font-size: .88rem; }

/* Pricing */
.billing-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .3rem;
  padding: .35rem;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .055);
  border-radius: 999px;
  width: max-content;
  margin: 0 auto 2rem;
}

.billing-toggle button {
  border: 0;
  border-radius: 999px;
  padding: .7rem 1rem;
  color: var(--muted);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.billing-toggle button:hover {
  color: #fff;
  background: rgba(255, 255, 255, .06);
}

.billing-toggle button[aria-pressed="true"] {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 12px 28px rgba(59, 130, 246, .28);
}

.save-pill {
  display: inline-flex;
  margin-left: .45rem;
  font-size: .72rem;
  padding: .18rem .42rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, .16);
  color: #bbf7d0;
  border: 1px solid rgba(134, 239, 172, .2);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.45rem;
  background: rgba(255, 255, 255, .045);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.price-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, .18);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .28);
}

.price-card.popular {
  border-color: rgba(96, 165, 250, .7);
  box-shadow: 0 28px 80px rgba(59, 130, 246, .16);
}
.price-card.popular:hover { box-shadow: 0 32px 88px rgba(59, 130, 246, .24); }

.price-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .7rem;
  margin-bottom: .25rem;
}

.price-head h3 { margin: 0; }

.badge {
  font-size: .72rem;
  font-weight: 950;
  border-radius: 999px;
  padding: .31rem .55rem;
  background: rgba(59, 130, 246, .16);
  color: #bfdbfe;
  border: 1px solid rgba(147, 197, 253, .24);
}

.price {
  font-size: 2.5rem;
  line-height: 1;
  margin: 1rem 0 .35rem;
  font-weight: 950;
  letter-spacing: -.04em;
}

.price span {
  font-size: .92rem;
  color: var(--soft);
  font-weight: 650;
}

.saving {
  color: #93c5fd;
  font-weight: 850;
  font-size: .9rem;
  margin-bottom: .55rem;
  min-height: 1.4em;
}

.launch-badge {
  display: inline-flex;
  margin-right: .45rem;
  font-size: .72rem;
  padding: .18rem .42rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, .16);
  color: #bbf7d0;
  border: 1px solid rgba(134, 239, 172, .2);
}

.price-card ul {
  list-style: none;
  margin: 1rem 0 1.2rem;
  padding: 0;
  display: grid;
  gap: .65rem;
}

.price-card li {
  display: flex;
  gap: .55rem;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.45;
}

.price-card li::before {
  content: "✓";
  color: #86efac;
  font-weight: 950;
  flex-shrink: 0;
}

.price-card .btn { margin-top: auto; width: 100%; }

/* FAQ */
.faq {
  display: grid;
  gap: .85rem;
  max-width: 920px;
  margin-inline: auto;
}

.faq details {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .045);
  border-radius: 18px;
  padding: 1rem 1.15rem;
  transition: background-color .2s ease;
}

.faq details:hover { background: rgba(255, 255, 255, .055); }

.faq summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 1rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--soft);
  transition: transform .2s ease, color .2s ease;
  flex-shrink: 0;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
  color: var(--brand);
}

.faq details p {
  color: var(--muted);
  margin: .75rem 0 0;
  line-height: 1.65;
}

/* CTA */
.cta-box {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  background: linear-gradient(145deg, rgba(59, 130, 246, .16), rgba(139, 92, 246, .12));
  box-shadow: var(--shadow);
}

.cta-box h2 {
  margin: 0 auto 1rem;
  max-width: 700px;
}

.cta-box p {
  color: #d9e2f2;
  max-width: 680px;
  margin: 0 auto 1.75rem;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.65;
}

/* Footer */
.footer {
  padding: clamp(2.5rem, 5vw, 4rem) 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer h3 {
  font-size: .95rem;
  font-weight: 800;
  margin: 0 0 1rem;
  color: #fff;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .55rem;
}

.footer a {
  color: var(--soft);
  font-size: .92rem;
  transition: color .2s ease;
}
.footer a:hover { color: #fff; }

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  text-align: center;
}

.fineprint {
  color: var(--soft);
  font-size: .85rem;
}

/* Responsive */
@media (max-width: 1120px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual-group { padding-top: 1.5rem; }
  .hero-visual-group .dashboard,
  .hero-visual-group .trust-strip { justify-self: start; max-width: 680px; }
  .hero-title-row h1 { max-width: 720px; }
  .logo-img { width: 48px !important; height: 48px !important; }
  .logo { font-size: 1.34rem; }
}

@media (max-width: 1100px) {
  .feature-suite { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip { max-width: 690px; }
}

@media (max-width: 1040px) {
  .hero-grid, .answer-box { grid-template-columns: 1fr; }
  .grid-4, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .dashboard { max-width: 680px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 820px) {
  .menu-toggle { display: inline-block; }
  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: .8rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #0d1224;
    box-shadow: var(--shadow);
  }
  .nav-links[data-open="true"] { display: flex; }
  .nav-links a { padding: .9rem 1rem; }
  .nav-actions .hide-mobile { display: none; }
  .show-mobile { display: list-item; }
  .grid-3, .steps { grid-template-columns: 1fr; }
  .hero { padding-top: 3.3rem; }
  .hero h1 { letter-spacing: -.055em; }
  .trust-strip { grid-template-columns: 1fr; }
  .mini-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .container { width: min(var(--max), calc(100% - 28px)); }
}

@media (max-width: 700px) {
  .feature-suite, .reviews-grid { grid-template-columns: 1fr; }
  .feature-suite-card { min-height: auto; }
  .billing-toggle { width: 100%; }
  .billing-toggle button { flex: 1; text-align: center; padding: .7rem .9rem; }
  .save-pill { display: none; }
  .hero-title-row h1 { font-size: clamp(2.7rem, 14vw, 4.25rem); }
  .hero .eyebrow.with-dot { width: 100%; }
  .hero-note { display: grid; }
  .dashboard { margin-top: 1rem; }
  .hero-grid { gap: 1rem; }
}

@media (max-width: 640px) {
  .hero-visual-group .trust-strip { grid-template-columns: 1fr; }
  .hero-visual-group .dashboard { max-width: 100%; }
  .hero-title-row h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
  .logo-img { width: 44px !important; height: 44px !important; }
  .logo { font-size: 1.2rem; }
  .nav { min-height: 72px; }
}

@media (max-width: 520px) {
  .hero-actions .btn,
  .cta-box .btn { width: 100%; }
  .grid-4, .pricing-grid { grid-template-columns: 1fr; }
  .hero-note { display: grid; }
  .score-card { grid-template-columns: 1fr auto !important; }
  .score-copy { grid-column: 1 / -1; }
  .score-value { justify-content: flex-start; min-width: auto; padding-left: 0; }
  .score-value b { font-size: 2.2rem !important; }
  .ring { width: 72px !important; height: 72px !important; }
  .ring::after { width: 48px !important; height: 48px !important; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .nav { min-height: 68px; }
  .logo { font-size: 1.15rem; }
  .logo-mark { width: 38px; height: 38px; }
}

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

/* Final hero refinement overrides — desktop only */
@media (min-width: 1121px) {
  .hero {
    padding: clamp(3.6rem, 6.5vw, 5.4rem) 0 3.2rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, .86fr) minmax(520px, 1fr);
    gap: clamp(2rem, 4.5vw, 5.2rem);
    align-items: start;
  }

  .hero .eyebrow.with-dot {
    width: min(100%, 466px);
    justify-content: flex-start;
  }

  .hero-title-row h1 {
    max-width: 520px;
    margin: .65rem 0 1.05rem;
    font-size: clamp(3.65rem, 7vw, 5.85rem);
    line-height: .87;
    letter-spacing: -.085em;
  }

  .hero-copy { max-width: 560px; font-size: 1.12rem; }
  .hero-actions { margin: 1.65rem 0 1rem; }

  .hero-note {
    max-width: 640px;
    margin-top: .2rem;
    gap: .85rem 1.05rem;
    font-size: .88rem;
  }

  .trust-strip {
    max-width: 455px;
    grid-template-columns: repeat(3, 1fr);
    gap: .65rem;
    margin-top: 1.55rem;
  }

  .trust-item {
    padding: .85rem .85rem;
    border-radius: 14px;
  }

  .trust-item strong { font-size: 1.02rem; }
  .trust-item span { font-size: .82rem; }

  .hero-visual-group .dashboard {
    margin-top: 0;
    transform: none;
    width: 100%;
    max-width: 560px;
    justify-self: end;
    padding: 1rem;
    border-radius: 26px;
  }

  .hero-visual-group .window { border-radius: 20px; }
  .hero-visual-group .window-top { padding: .8rem 1rem; }
  .hero-visual-group .dash-body { padding: 1rem; }

  .hero-visual-group .score-card {
    grid-template-columns: minmax(0, 1fr) auto auto;
    padding: 1rem;
    border-radius: 16px;
  }

  .hero-visual-group .score-value b { font-size: 2.25rem; }
  .hero-visual-group .ring { width: 78px; height: 78px; }
  .hero-visual-group .ring::after { width: 52px; height: 52px; }
  .hero-visual-group .mini-card { padding: 1rem; }
  .hero-visual-group .activity { padding: .72rem .82rem; }

  .hero-visual-group .trust-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
    margin-top: 0;
    max-width: 560px;
    justify-self: end;
  }

  .hero-visual-group .trust-item {
    padding: 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, .045);
    border: 1px solid var(--line);
  }

  .hero-visual-group .trust-item strong { font-size: 1.02rem; }
  .hero-visual-group .trust-item span { font-size: .82rem; }

  .hero > .container .hero-note { margin-top: .7rem; }
}

/* Mobile hero fixes — must override any desktop-only rules above */
@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .hero-title-row h1 {
    max-width: 100% !important;
    font-size: clamp(2.2rem, 9vw, 3.2rem) !important;
    line-height: 1.05 !important;
    letter-spacing: -.04em !important;
  }
  .hero-visual-group {
    order: 2;
    width: 100%;
  }
  .hero-visual-group .dashboard {
    max-width: 100% !important;
    width: 100% !important;
    justify-self: stretch !important;
    margin: 0 auto !important;
  }
  .hero-visual-group .trust-strip {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
    justify-self: stretch !important;
  }
}

@media (max-width: 640px) {
  .hero { padding-top: 2.6rem !important; }
  .hero-title-row h1 {
    font-size: clamp(1.9rem, 8vw, 2.6rem) !important;
    line-height: 1.08 !important;
  }
  .hero-copy { font-size: 1rem !important; }
  .hero-actions { flex-direction: column; gap: .7rem; }
  .hero-actions .btn { width: 100%; }
  .hero-note { display: grid !important; gap: .55rem; }
  .hero-visual-group .score-value b { font-size: 1.8rem !important; }
  .hero-visual-group .ring { width: 60px !important; height: 60px !important; }
  .hero-visual-group .ring::after { width: 40px !important; height: 40px !important; inset: 10px !important; }
  .hero-visual-group .mini-grid { grid-template-columns: 1fr !important; }
}

/* Chat widget positioning */
#support-chat {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
}
#support-chat-window { z-index: 9999; }
