:root {
  --bg: #020617;
  --ink: #f8fbff;
  --muted: #9fb0c7;
  --muted-2: #65748b;
  --line: rgba(148, 163, 184, 0.18);
  --line-strong: rgba(34, 211, 238, 0.28);
  --panel: rgba(7, 18, 38, 0.76);
  --panel-strong: rgba(10, 30, 59, 0.92);
  --cyan: #00d4c7;
  --cyan-soft: #7ff5ee;
  --teal: #00a3a3;
  --indigo: #8a5cf6;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font);
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 108px clamp(20px, 5vw, 72px) 56px;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.72) 50%, rgba(2, 6, 23, 0.88)),
    #061126;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-grid {
  z-index: -2;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.11) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 78%, transparent);
}

.site-header {
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  right: clamp(20px, 5vw, 72px);
  top: 26px;
  z-index: 3;
  display: flex;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(178px, 19vw, 232px);
  height: auto;
  image-rendering: auto;
}

.brand.small .brand-logo {
  width: 164px;
}

.hero-content {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 840px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan-soft);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: none;
}

.hero-content > .eyebrow {
  max-width: 640px;
  margin-bottom: 16px;
  color: #c6fffb;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 820;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  max-width: 920px;
  font-size: 86px;
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 850;
}

.hero-copy {
  max-width: 720px;
  margin: 22px 0 0;
  color: #c4d4e8;
  font-size: 24px;
  line-height: 1.42;
}

.hero-note {
  margin: 18px 0 0;
  color: #e0fffb;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 820;
}

.capture-form {
  width: min(780px, 100%);
  margin-top: 34px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 10px;
  margin-bottom: 10px;
}

.form-row.lead-row {
  grid-template-columns: minmax(220px, 1fr) minmax(180px, 0.68fr) auto;
  align-items: end;
}

label {
  display: grid;
  gap: 7px;
  color: #dbeafe;
  font-size: 12px;
  font-weight: 780;
}

input {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 8px;
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  padding: 0 14px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

input::placeholder {
  color: #7f8da3;
}

input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 212, 199, 0.16);
}

button {
  height: 48px;
  border: 1px solid rgba(127, 245, 238, 0.5);
  border-radius: 8px;
  cursor: pointer;
  background:
    linear-gradient(135deg, rgba(0, 212, 199, 0.96), rgba(138, 92, 246, 0.92));
  color: white;
  padding: 0 18px;
  font-weight: 850;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.32);
}

button:hover,
button:focus-visible {
  border-color: white;
  filter: brightness(1.07);
}

button:disabled {
  cursor: wait;
  opacity: 0.64;
}

.honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 22px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.form-status.success {
  color: #bbf7d0;
}

.form-status.error {
  color: #fecaca;
}

.feature-index {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
}

/* CG-91 Slice D: Turnstile widget mount.
 * Reserves stable vertical space so the form layout does not shift
 * when the Cloudflare widget loads asynchronously, and constrains the
 * widget to the form's column width so it cannot overlap the submit
 * button, inputs, or aria-live status copy on either form. */
.turnstile-mount {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 14px 0 0;
  min-height: 65px;
}

.turnstile-mount[hidden] {
  display: none !important;
}

.capture-form.compact .turnstile-mount {
  grid-column: 1 / -1;
}

.section,
.workflow,
.seo-section,
.faq,
.final-cta {
  padding: 88px clamp(20px, 5vw, 72px);
  background: #f8fbff;
  color: #071126;
}

.section-heading {
  max-width: 760px;
}

.section-copy,
.final-copy {
  margin: 18px 0 0;
  max-width: 780px;
  color: #506176;
  font-size: 17px;
  line-height: 1.58;
}

.section .eyebrow,
.workflow .eyebrow,
.seo-section .eyebrow,
.faq .eyebrow,
.final-cta .eyebrow {
  color: #007d7a;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 850;
}

h2 {
  margin: 0;
  font-size: 58px;
  line-height: 1.03;
  letter-spacing: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.feature-heading {
  margin-top: 42px;
}

.feature-grid article {
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(7, 17, 38, 0.12);
  border-radius: 8px;
  background: white;
}

.feature-grid h3 {
  margin: 42px 0 10px;
  font-size: 23px;
}

.feature-grid p,
.site-footer p {
  color: #506176;
  line-height: 1.55;
}

.workflow {
  position: relative;
  display: block;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(157, 176, 200, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(157, 176, 200, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 18% 12%, rgba(0, 212, 199, 0.16), transparent 30%),
    radial-gradient(circle at 82% 24%, rgba(138, 92, 246, 0.18), transparent 34%),
    radial-gradient(circle at 50% 112%, rgba(0, 163, 163, 0.12), transparent 38%),
    #061126;
  background-size: 64px 64px, 64px 64px, auto, auto, auto, auto;
  color: var(--ink);
}

.seo-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
  background: #071126;
  color: var(--ink);
}

.seo-section .section-copy {
  color: #c4d4e8;
}

.seo-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-list li {
  position: relative;
  padding: 14px 16px 14px 38px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #dbeafe;
  font-weight: 760;
}

.seo-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(0, 212, 199, 0.4);
}

.workflow .section-copy {
  max-width: 790px;
  color: #9db0c8;
  font-size: 20px;
  line-height: 1.5;
}

.workflow .eyebrow {
  color: #a7fff7;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.workflow::after {
  content: "";
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  right: clamp(20px, 5vw, 72px);
  bottom: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 199, 0.38), rgba(138, 92, 246, 0.36), transparent);
  opacity: 0.85;
}

.quadrant-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 48px 0 0;
}

.quadrant-card {
  position: relative;
  min-height: 240px;
  padding: 24px;
  overflow: hidden;
  display: grid;
  align-content: space-between;
  border: 1px solid rgba(157, 176, 200, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.032));
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

.quadrant-card::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  background: var(--quadrant-mark);
  filter: blur(2px);
  opacity: 1;
}

.quadrant-card.sales {
  --quadrant-mark: rgba(0, 212, 199, 0.11);
}

.quadrant-card.revops {
  --quadrant-mark: rgba(138, 92, 246, 0.13);
}

.quadrant-card.founder {
  --quadrant-mark: rgba(0, 212, 199, 0.1);
}

.quadrant-card.market {
  --quadrant-mark: rgba(138, 92, 246, 0.12);
}

.quadrant-kicker {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #a7fff7;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quadrant-card h3 {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  color: #f8fbff;
  font-size: 28px;
  line-height: 1.09;
  font-weight: 820;
  letter-spacing: 0;
}

.quadrant-card p:not(.quadrant-kicker) {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  color: #9db0c8;
  font-size: 16px;
  line-height: 1.42;
}

.faq {
  background: #f8fbff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.faq-card {
  border: 1px solid rgba(7, 17, 38, 0.12);
  border-radius: 8px;
  background: white;
  padding: 18px;
}

.faq-card h3 {
  margin: 0;
  color: #071126;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 850;
}

.faq-card p {
  margin: 12px 0 0;
  color: #506176;
  line-height: 1.58;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  background: #071126;
  color: var(--ink);
}

.final-cta .final-copy {
  color: #c4d4e8;
}

.final-cta .capture-form {
  margin: 0;
}

.capture-form.compact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: end;
}

.capture-form.compact .form-status {
  grid-column: 1 / -1;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px clamp(20px, 5vw, 72px);
  background: #020617;
  color: #cbd5e1;
}

.site-footer p,
.site-footer .site-footer-tag {
  margin: 0;
  color: #93a4bb;
  font-size: 13px;
  text-align: right;
}

.site-footer-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer-link {
  color: #cbd5e1;
  font-size: 13px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(34, 211, 238, 0.0);
  padding-bottom: 2px;
  transition: color 120ms ease, border-color 120ms ease;
}

.site-footer-link:hover,
.site-footer-link:focus-visible {
  color: #7ff5ee;
  border-bottom-color: rgba(127, 245, 238, 0.65);
  outline: none;
}

.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 96px clamp(20px, 6vw, 72px) 64px;
  color: var(--ink);
}

.legal-page .legal-eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.legal-page h1 {
  margin: 0 0 8px;
  font-size: 44px;
  line-height: 1.1;
}

.legal-page .legal-updated {
  margin: 0 0 32px;
  color: var(--muted-2);
  font-size: 13px;
}

.legal-page h2 {
  margin: 36px 0 12px;
  font-size: 22px;
  color: var(--ink);
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.legal-page ul {
  padding-left: 22px;
  margin: 0 0 12px;
}

.legal-page a {
  color: var(--cyan-soft);
  text-decoration: underline;
  text-decoration-color: rgba(127, 245, 238, 0.4);
  text-underline-offset: 3px;
}

.legal-page a:hover,
.legal-page a:focus-visible {
  color: var(--cyan);
  text-decoration-color: var(--cyan);
}

.legal-page .legal-back {
  display: inline-block;
  margin-top: 32px;
  color: var(--cyan);
  font-size: 14px;
}

@media (max-width: 1120px) {
  h1 {
    font-size: 72px;
  }

  .hero-copy {
    font-size: 22px;
  }
}

@media (max-width: 980px) {
  .workflow,
  .seo-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .quadrant-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 96px 18px 40px;
  }

  .site-header,
  .site-footer {
    left: 18px;
    right: 18px;
  }

  .form-row,
  .form-row.lead-row,
  .capture-form.compact {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-content > .eyebrow {
    font-size: 16px;
  }

  .hero-note {
    font-size: 17px;
  }

  .section .eyebrow,
  .workflow .eyebrow,
  .seo-section .eyebrow,
  .faq .eyebrow,
  .final-cta .eyebrow {
    font-size: 15px;
  }

  .section,
  .workflow,
  .seo-section,
  .faq,
  .final-cta {
    padding: 64px 18px;
  }

  .quadrant-card {
    min-height: 184px;
  }

  .quadrant-card h3 {
    margin-top: 16px;
    font-size: 24px;
  }

  .quadrant-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer p,
  .site-footer .site-footer-tag {
    text-align: left;
  }

  .site-footer-nav {
    width: 100%;
  }

  .legal-page {
    padding: 72px 18px 48px;
  }

  .legal-page h1 {
    font-size: 34px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 48px;
  }
}
