/* Stratify — polished marketing design system */
:root {
  --bg: #070b14;
  --bg-elevated: #0c1220;
  --bg-card: rgba(18, 26, 43, 0.72);
  --bg-card-solid: #121a2b;
  --border: rgba(148, 163, 184, 0.14);
  --border-strong: rgba(45, 212, 191, 0.35);
  --text: #f1f5f9;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --accent: #2dd4bf;
  --accent-deep: #14b8a6;
  --accent-2: #38bdf8;
  --accent-dim: rgba(45, 212, 191, 0.1);
  --danger: #f87171;
  --success: #4ade80;
  --warning: #fbbf24;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 0 1px rgba(45, 212, 191, 0.2), 0 20px 50px rgba(13, 148, 136, 0.12);
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --display: "Space Grotesk", var(--font);
  --max: 1140px;
  --header-h: 68px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Ambient background */
.bg-grid {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 20%, transparent 75%);
}

.bg-glow {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 480px at 12% -5%, rgba(45, 212, 191, 0.16), transparent 55%),
    radial-gradient(700px 420px at 88% 5%, rgba(56, 189, 248, 0.12), transparent 50%),
    radial-gradient(600px 400px at 50% 100%, rgba(13, 148, 136, 0.06), transparent 60%);
}

a {
  color: var(--accent-2);
  text-decoration: none;
  transition: color 0.15s var(--ease);
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  background: rgba(7, 11, 20, 0.75);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.logo:hover {
  color: var(--text);
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(145deg, #2dd4bf 0%, #0ea5e9 100%);
  display: grid;
  place-items: center;
  color: #042f2e;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 8px 24px rgba(45, 212, 191, 0.25);
}

.logo-text {
  font-size: 1.15rem;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

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

.nav-links a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s var(--ease);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.72rem 1.25rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.94rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s, border-color 0.18s;
  white-space: nowrap;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, #14b8a6 0%, #0ea5e9 100%);
  color: #04121f;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.22);
}

.btn-primary:hover {
  color: #04121f;
  filter: brightness(1.06);
  box-shadow: 0 14px 36px rgba(14, 165, 233, 0.32);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: rgba(45, 212, 191, 0.4);
  background: var(--accent-dim);
  color: var(--text);
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 0.88rem 1.45rem;
  font-size: 0.98rem;
}

.btn-block {
  width: 100%;
}

/* Hero */
.hero {
  padding: 3.25rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.75rem;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem 0.35rem 0.55rem;
  border-radius: 999px;
  background: var(--accent-dim);
  border: 1px solid rgba(45, 212, 191, 0.28);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 1.25rem;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.2);
  animation: pulse 2.4s ease infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.35);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(45, 212, 191, 0);
  }
}

h1 {
  font-family: var(--display);
  font-size: clamp(2.35rem, 4.6vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 700;
  margin: 0 0 1.15rem;
}

.gradient-text {
  background: linear-gradient(105deg, #5eead4 0%, #38bdf8 55%, #a5b4fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 0 1.5rem;
  line-height: 1.65;
}

.lead strong {
  color: var(--text);
  font-weight: 600;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.hero-points li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: var(--text);
  font-size: 0.95rem;
}

.hero-points li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(45, 212, 191, 0.4);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 8.2l2.4 2.4L12 5' stroke='%232dd4bf' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.hero-aside {
  display: grid;
  gap: 1rem;
}

/* Viz card */
.viz-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(45, 212, 191, 0.08), transparent 40%), var(--bg-card-solid);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.viz-header,
.viz-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted);
}

.viz-footer {
  border-bottom: 0;
  border-top: 1px solid var(--border);
}

.viz-title {
  font-family: var(--display);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}

.viz-pill {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(45, 212, 191, 0.25);
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}

.viz-chart {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  padding: 1.15rem;
  align-items: end;
}

.viz-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.55rem;
  height: 140px;
}

.viz-bar {
  flex: 1;
  height: var(--h);
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.85), rgba(45, 212, 191, 0.35));
  position: relative;
  min-width: 0;
  animation: barIn 0.9s var(--ease) both;
}

.viz-bar:nth-child(2) {
  animation-delay: 0.08s;
}
.viz-bar:nth-child(3) {
  animation-delay: 0.16s;
}
.viz-bar:nth-child(4) {
  animation-delay: 0.24s;
}
.viz-bar:nth-child(5) {
  animation-delay: 0.32s;
}

.viz-bar.dim {
  background: linear-gradient(180deg, rgba(148, 163, 184, 0.35), rgba(148, 163, 184, 0.12));
}

.viz-bar span {
  position: absolute;
  bottom: -1.35rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  color: var(--muted-2);
  font-weight: 500;
}

@keyframes barIn {
  from {
    transform: scaleY(0.2);
    opacity: 0.3;
    transform-origin: bottom;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
    transform-origin: bottom;
  }
}

.viz-savings {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(45, 212, 191, 0.25);
  background: rgba(45, 212, 191, 0.08);
  padding: 0.9rem;
}

.viz-savings-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 600;
}

.viz-savings-val {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1.15;
  margin: 0.15rem 0;
}

.viz-savings-note {
  font-size: 0.78rem;
  color: var(--muted);
}

/* Form card */
.form-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  padding: 1.35rem 1.35rem 1.2rem;
}

.form-card-head h2 {
  font-family: var(--display);
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  margin: 0 0 0.3rem;
}

.form-card-head p {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.field {
  margin-bottom: 0.85rem;
}

label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.optional {
  color: var(--muted-2);
  font-weight: 400;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(7, 11, 20, 0.65);
  color: var(--text);
  padding: 0.68rem 0.8rem;
  font: inherit;
  font-size: 0.92rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

input::placeholder,
textarea::placeholder {
  color: var(--muted-2);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(45, 212, 191, 0.55);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.12);
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2rem;
}

textarea {
  resize: vertical;
  min-height: 76px;
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.form-note {
  font-size: 0.75rem;
  color: var(--muted-2);
  margin: 0.75rem 0 0;
  line-height: 1.45;
  text-align: center;
}

/* Calendly */
.book-section {
  padding-top: 2.5rem;
}

.book-head .section-sub {
  max-width: 40rem;
}

.linkish {
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--accent-2);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.linkish:hover {
  color: var(--accent);
}

.calendly-shell {
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  background: var(--bg-card-solid);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 720px;
}

.calendly-inline {
  min-width: 320px;
  height: 720px;
  width: 100%;
}

.calendly-inline iframe {
  width: 100%;
  height: 100%;
  min-height: 700px;
  border: 0;
}

.calendly-status {
  margin: 0;
  padding: 0.85rem 1.1rem;
  font-size: 0.9rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.calendly-status.is-error {
  color: var(--warning);
  background: rgba(251, 191, 36, 0.08);
}

.calendly-fallback {
  padding: 1.25rem 1.35rem 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.calendly-fallback p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.calendly-free-note {
  margin: 0.85rem 0 0;
  font-size: 0.8rem;
  text-align: center;
}

.lead-alt {
  margin-top: 1.25rem;
  max-width: 720px;
  margin-inline: auto;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.form-actions .btn {
  flex: 1 1 200px;
}

.book-teaser {
  padding: 1.35rem;
}

@media (max-width: 720px) {
  .calendly-shell,
  .calendly-inline {
    min-height: 640px;
    height: 640px;
  }
}

.form-status {
  margin-top: 0.65rem;
  font-size: 0.88rem;
  min-height: 1.2rem;
  text-align: center;
}

.form-status.error {
  color: var(--danger);
}

.form-status.ok {
  color: var(--success);
}

/* Trust strip */
.trust-strip {
  border-block: 1px solid var(--border);
  background: rgba(12, 18, 32, 0.55);
  padding: 1.35rem 0;
}

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

.trust-item {
  text-align: center;
  padding: 0.35rem 0.5rem;
}

.trust-num {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.trust-label {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(18, 26, 43, 0.35), transparent);
  border-block: 1px solid var(--border);
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.25rem;
}

.section-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-title {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.65rem;
  font-weight: 700;
}

.section-sub {
  color: var(--muted);
  margin: 0;
  font-size: 1.02rem;
  max-width: 36rem;
}

/* Offer grid */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.offer-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: 1.35rem;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.offer-card:hover {
  border-color: rgba(45, 212, 191, 0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.offer-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(45, 212, 191, 0.22);
  margin-bottom: 1rem;
}

.offer-card h3 {
  font-family: var(--display);
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.45rem;
}

.offer-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card-solid);
  padding: 1.5rem 1.35rem 1.35rem;
  transition: transform 0.2s var(--ease), border-color 0.2s;
}

.price-card:hover {
  transform: translateY(-4px);
}

.price-card.featured {
  border-color: rgba(45, 212, 191, 0.45);
  box-shadow: var(--shadow-glow);
  background:
    linear-gradient(180deg, rgba(45, 212, 191, 0.1), transparent 45%),
    var(--bg-card-solid);
}

.price-badge {
  position: absolute;
  top: -11px;
  right: 1.1rem;
  background: linear-gradient(135deg, #14b8a6, #0ea5e9);
  color: #04121f;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
}

.price-card h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.2rem;
}

.price-duration {
  margin: 0;
  color: var(--muted-2);
  font-size: 0.85rem;
}

.price-amount {
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0.85rem 0 0.25rem;
  line-height: 1.1;
}

.price-fit {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.price-card ul {
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
  flex: 1;
}

.price-card li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid rgba(148, 163, 184, 0.08);
}

.price-card li:first-child {
  border-top: 0;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
}

.pricing-footnote {
  margin: 1.5rem 0 0;
  font-size: 0.88rem;
  color: var(--muted-2);
  max-width: 48rem;
  line-height: 1.55;
}

.pricing-footnote strong {
  color: var(--muted);
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.timeline {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.timeline li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 0 0 1.35rem;
  position: relative;
}

.timeline li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 38px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(45, 212, 191, 0.45), rgba(148, 163, 184, 0.1));
}

.tl-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(45, 212, 191, 0.35);
  position: relative;
  z-index: 1;
}

.timeline strong {
  display: block;
  font-family: var(--display);
  letter-spacing: -0.02em;
  margin-bottom: 0.2rem;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.fit-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:
    linear-gradient(160deg, rgba(56, 189, 248, 0.06), transparent 50%),
    var(--bg-card-solid);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.fit-card h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  margin: 0 0 1.1rem;
}

.fit-list {
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.fit-list > div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0.75rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.fit-list > div:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.fit-list dt {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-2);
  margin: 0;
  padding-top: 0.15rem;
}

.fit-list dd {
  margin: 0;
  color: var(--text);
  font-size: 0.92rem;
}

.fit-warn {
  margin-top: 1.15rem;
  padding: 0.85rem 0.95rem;
  border-radius: var(--radius-sm);
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.2);
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.fit-warn strong {
  color: var(--warning);
}

/* CTA */
.cta-section {
  padding-top: 1rem;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(45, 212, 191, 0.28);
  background:
    radial-gradient(600px 200px at 10% 50%, rgba(45, 212, 191, 0.14), transparent 55%),
    radial-gradient(500px 200px at 90% 50%, rgba(56, 189, 248, 0.1), transparent 55%),
    var(--bg-card-solid);
  padding: 2rem 2rem;
  box-shadow: var(--shadow);
}

.cta-banner h2 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.4rem;
}

.cta-banner p {
  margin: 0;
  color: var(--muted);
  max-width: 34rem;
  font-size: 0.98rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 6rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  margin: 0.65rem 0 0;
  max-width: 22rem;
  color: var(--muted-2);
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.footer-links a {
  color: var(--muted);
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.6rem;
  font-size: 0.8rem;
  color: var(--muted-2);
  border-top: 1px solid var(--border);
  padding-top: 1.15rem;
}

/* Mobile CTA */
.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, transparent, rgba(7, 11, 20, 0.95) 28%);
  pointer-events: none;
}

.mobile-cta .btn {
  pointer-events: auto;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.mobile-cta.is-hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s;
}

/* Simple pages (thank-you, privacy, 404) */
.simple-page {
  padding: 5rem 0 4rem;
  max-width: 640px;
}

.simple-page h1 {
  font-size: clamp(1.9rem, 4vw, 2.5rem);
}

/* CRM shell (keep usable) */
.crm-shell {
  padding: 1.5rem 0 3rem;
}

.crm-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: end;
  margin-bottom: 1.25rem;
}

.crm-bar .field {
  margin: 0;
  min-width: 220px;
}

.crm-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.stat {
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card-solid);
}

.stat .n {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
}

.stat .l {
  color: var(--muted);
  font-size: 0.82rem;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card-solid);
}

table.leads {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

table.leads th,
table.leads td {
  text-align: left;
  padding: 0.7rem 0.55rem;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

table.leads th {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.status-pill {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(148, 163, 184, 0.15);
  color: var(--muted);
}

.status-pill.new {
  background: rgba(56, 189, 248, 0.15);
  color: var(--accent-2);
}

.status-pill.contacted {
  background: rgba(251, 191, 36, 0.15);
  color: var(--warning);
}

.status-pill.qualified {
  background: rgba(45, 212, 191, 0.15);
  color: var(--accent);
}

.status-pill.won {
  background: rgba(74, 222, 128, 0.15);
  color: var(--success);
}

.status-pill.lost {
  background: rgba(248, 113, 113, 0.15);
  color: var(--danger);
}

.card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card-solid);
}

.card-pad {
  padding: 1.4rem;
}

.mono {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.8rem;
}

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

.hidden {
  display: none !important;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay {
  transition-delay: 0.12s;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .offer-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .trust-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .viz-chart {
    grid-template-columns: 1fr;
  }

  .viz-bars {
    height: 120px;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .nav-panel {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem 1rem 1.25rem;
    background: rgba(7, 11, 20, 0.96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(16px);
  }

  .nav-panel.is-open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .crm-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-cta {
    display: block;
  }

  .site-footer {
    padding-bottom: 5.5rem;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-cta-row .btn-ghost {
    display: none;
  }

  .cta-banner {
    padding: 1.5rem;
  }

  .fit-list > div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .viz-bar,
  .eyebrow-dot {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
