:root {
  --bg: #040507;
  --bg-gradient: radial-gradient(circle at top, rgba(47, 107, 255, 0.14), transparent 58%), linear-gradient(180deg, #05060b 0%, #020203 100%);
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --border: rgba(255, 255, 255, 0.14);
  --border-soft: rgba(255, 255, 255, 0.08);
  --text: #f7f7fb;
  --text-muted: rgba(247, 247, 251, 0.7);
  --accent: #2f6bff;
  --shadow: 0 26px 64px rgba(6, 11, 29, 0.55);
  --radius-lg: 36px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --font-heading: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mobile-header-height: 78px;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --layout-max: min(94vw, 1480px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background: var(--bg-gradient);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.72;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
  font-family: var(--font-heading);
  margin: 0 0 18px;
  color: var(--text);
}

h1 {
  font-size: clamp(42px, 7.5vw, 76px);
  line-height: 1.08;
}

h2 {
  font-size: clamp(30px, 5.6vw, 50px);
  line-height: 1.14;
}

h3 {
  font-size: clamp(22px, 4.8vw, 32px);
  line-height: 1.3;
}

p {
  margin: 0 0 18px;
  color: var(--text-muted);
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(24px);
  background: rgba(6, 7, 12, 0.82);
  border-bottom: 1px solid var(--border-soft);
}

.nav {
  width: var(--layout-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  gap: 26px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.menu {
  display: flex;
  gap: 30px;
  font-size: 18px;
  color: var(--text-muted);
}

.menu-cta {
  display: none;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.nav-toggle-icon {
  position: relative;
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: background 0.2s ease;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: currentColor;
  border-radius: inherit;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-icon::before {
  transform: translateY(-6px);
}

.nav-toggle-icon::after {
  transform: translateY(6px);
}

.nav-toggle.is-active .nav-toggle-icon {
  background: transparent;
}

.nav-toggle.is-active .nav-toggle-icon::before {
  transform: translateY(0) rotate(45deg);
}

.nav-toggle.is-active .nav-toggle-icon::after {
  transform: translateY(0) rotate(-45deg);
}

.nav-cta {
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid rgba(47, 107, 255, 0.45);
  background: rgba(47, 107, 255, 0.15);
  color: var(--text);
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: rgba(47, 107, 255, 0.28);
}

main {
  width: var(--layout-max);
  margin: 0 auto;
  padding: 120px 32px 150px;
}

.section {
  margin: 160px 0;
}

.section-heading {
  max-width: 980px;
  margin: 0 auto 70px;
  text-align: center;
}

.section-heading > p {
  max-width: 860px;
  margin: 0 auto;
}

.section-heading .eyebrow {
  font-size: 14px;
  letter-spacing: 0.22em;
  margin-bottom: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(247, 247, 251, 0.58);
  margin-bottom: 22px;
}

.hero {
  padding: 0 0 120px;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
  margin: 0;
}

.hero-left {
  flex: 1 1 460px;
  text-align: left;
}

.hero-right {
  flex: 1 1 520px;
  max-width: 720px;
}

.hero-image {
  max-width: 100%;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: none;
  background: none;
  border: none;
}

.hero-image::before {
  display: none;
}

.company-hero-visual {
  position: relative;
  width: min(460px, 85vw);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.company-hero-card {
  position: relative;
  padding: 40px 44px;
  border-radius: 28px;
  background: linear-gradient(155deg, rgba(24, 32, 62, 0.92), rgba(6, 9, 18, 0.9));
  border: 1px solid rgba(90, 130, 255, 0.28);
  box-shadow: 0 30px 70px rgba(8, 12, 24, 0.6);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
}

.hero-check-circle {
  width: 86px;
  height: 86px;
  border-radius: 26px;
  background: rgba(47, 107, 255, 0.24);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 2px rgba(120, 160, 255, 0.35);
}


.hero-card-body {
  display: grid;
  gap: 16px;
}

.hero-card-title {
  margin: 0;
  font-size: 26px;
  font-weight: 600;
}

.hero-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0;
}

.hero-meta-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(47, 107, 255, 0.18);
  border: 1px solid rgba(120, 150, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(247, 247, 251, 0.92);
}

.hero-meta-icon svg {
  width: 24px;
  height: 24px;
}

.hero-card-note {
  margin: 0;
  font-size: 15px;
  color: rgba(247, 247, 251, 0.7);
}

.company-hero-chip {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 22px;
  border-radius: 18px;
  background: rgba(18, 24, 46, 0.9);
  border: 1px solid rgba(100, 140, 255, 0.24);
  box-shadow: 0 12px 30px rgba(8, 12, 24, 0.45);
  color: #f7f7fb;
  width: max-content;
}

.chip-one {
  justify-self: flex-start;
}

.chip-two {
  justify-self: flex-end;
  margin-right: 24px;
}

.chip-three {
  justify-self: center;
}

.chip-four {
  justify-self: flex-start;
  margin-left: 28px;
}

.hero-frame {
  position: absolute;
  inset: -20px -30px -18px -34px;
  border-radius: 36px;
  border: 1px solid rgba(120, 160, 255, 0.25);
  background: radial-gradient(circle at top, rgba(47, 107, 255, 0.15), transparent 65%),
              linear-gradient(170deg, rgba(5, 8, 18, 0.6), rgba(8, 12, 24, 0.85));
  pointer-events: none;
  z-index: -1;
}

.chip-agent {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: rgba(247, 247, 251, 0.6);
}

.chip-detail {
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
  }

  .hero-left {
    flex: 1 1 100%;
    order: 0;
  }

  .hero-right {
    flex: 1 1 100%;
    max-width: 100%;
    order: 1;
  }

  .hero-image {
    width: 100%;
  }
}

.hero-eyebrow {
  font-size: 15px;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 600;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.hero-heading {
  font-size: clamp(44px, 7.5vw, 70px);
  line-height: 1.05;
  font-family: var(--font-heading);
  color: var(--text);
  margin: 0 0 18px;
  display: grid;
  gap: 6px;
  justify-items: start;
}

.hero-line {
  display: block;
}

.hero-line + .hero-line {
  margin-top: 0;
}

.hero-line-intro,
.hero-line-word,
.hero-line-before,
.hero-line-action {
  white-space: nowrap;
}

.hero-line-before {
  color: var(--text);
}

.rotating-word,
.rotating-action {
  display: inline-block;
  color: rgba(247, 247, 251, 0.85);
  font-weight: 600;
  white-space: nowrap;
}

.hero-subtitle {
  font-size: 20px;
  max-width: 750px;
  margin: 20px 0 24px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.signup-form {
  width: 100%;
  max-width: 550px;
  display: flex;
  gap: 12px;
  background: rgba(12, 15, 24, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 8px 10px 8px 22px;
}

.signup-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 20px;
}

.signup-form input:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(47, 107, 255, 0.45);
}

.signup-form input::placeholder {
  color: rgba(247, 247, 251, 0.5);
}

.signup-form button {
  background: var(--accent);
  color: #03040a;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  padding: 14px 34px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-size: 18px;
}

.signup-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(47, 107, 255, 0.3);
}

.signup-status {
  min-height: 20px;
  font-size: 14px;
  color: var(--accent);
}

.thank-you-toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: rgba(47, 107, 255, 0.95);
  color: #f7f7fb;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 22px;
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(8, 12, 24, 0.5);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 2000;
}

.thank-you-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.company-contact-form {
  display: grid;
  gap: 18px;
  width: 100%;
}

.company-context {
  width: 100%;
  padding: 18px 22px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(12, 15, 24, 0.65);
  color: var(--text);
  font-size: 18px;
  backdrop-filter: blur(12px);
}

.company-context:focus {
  outline: none;
  border-color: rgba(47, 107, 255, 0.6);
  box-shadow: 0 0 0 4px rgba(47, 107, 255, 0.18);
}

.company-context::placeholder {
  color: rgba(247, 247, 251, 0.55);
}

.waitlist-card {
  padding: 56px 48px;
  text-align: center;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(22, 29, 48, 0.9), rgba(8, 10, 20, 0.92));
  border: 1px solid rgba(80, 120, 255, 0.3);
  box-shadow: 0 28px 68px rgba(6, 8, 18, 0.6);
}

.standalone-hero {
  padding: 120px 20px 160px;
}

.standalone-inner {
  max-width: 720px;
  margin: 0 auto;
}

.standalone-card {
  padding: 64px 56px;
  border-radius: 34px;
  background: linear-gradient(155deg, rgba(24, 30, 54, 0.94), rgba(8, 12, 24, 0.92));
  border: 1px solid rgba(90, 130, 255, 0.35);
  box-shadow: 0 34px 80px rgba(6, 8, 18, 0.55);
  display: grid;
  gap: 26px;
  text-align: center;
}

.standalone-card .hero-heading {
  justify-items: center;
  margin: 0;
}

.standalone-subtitle {
  margin: 0;
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-muted);
}

.waitlist-form {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(5, 7, 14, 0.85);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 8px 8px 18px;
  width: 100%;
}

.waitlist-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 18px;
}

.waitlist-form input:focus {
  outline: none;
}

.waitlist-form input::placeholder {
  color: rgba(247, 247, 251, 0.55);
}

.waitlist-form button {
  border: none;
  padding: 14px 32px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.waitlist-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(47, 107, 255, 0.35);
}


.accuracy-grid,
.features-grid,
.pricing-grid,
.card-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 1024px) {
  .usecases-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: 0 12px 32px rgba(4, 6, 14, 0.32);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.broker-comp-card {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px;
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: flex-start;
}

.card h3 {
  color: var(--text);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(47, 107, 255, 0.14);
  color: var(--accent);
}

.card-icon svg {
  width: 32px;
  height: 32px;
}

.feature-number {
  font-size: 46px;
  font-weight: 700;
  color: rgba(47, 107, 255, 0.28);
  align-self: flex-start;
}

.faq-list {
  margin: 0 auto;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-soft);
}

.faq-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border-soft);
}

.faq-item h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.faq-item p {
  margin: 0;
}

.usecases .card {
  text-align: left;
}

.usecase-tag {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(47, 107, 255, 0.16);
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing {
  text-align: center;
}

.billing-toggle {
  display: inline-flex;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 8px;
  gap: 10px;
  background: rgba(10, 12, 18, 0.9);
  margin-bottom: 42px;
}

.toggle-button {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 12px 26px;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
}

.toggle-button.active {
  background: var(--accent);
  color: #03040a;
}

.toggle-pill {
  margin-left: 10px;
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(47, 107, 255, 0.18);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.toggle-button.active .toggle-pill {
  background: rgba(3, 4, 10, 0.2);
  color: #03040a;
}

.pricing-card {
  text-align: center;
}

.pricing-card ul {
  margin: 0;
  padding-left: 0;
  display: grid;
  gap: 12px;
  color: var(--text-muted);
  justify-items: start;
  text-align: left;
}

.pricing-card li {
  list-style: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
}

.pricing-card li::before {
  content: "✔";
  position: static;
  color: var(--accent);
}

.pricing-card--featured {
  background: linear-gradient(170deg, rgba(47, 107, 255, 0.16), rgba(8, 12, 24, 0.85));
  border: 1px solid rgba(47, 107, 255, 0.38);
  box-shadow: 0 26px 60px rgba(25, 60, 160, 0.45);
}

.pricing-card--featured .price-value {
  color: #2f6bff;
}

.price-value {
  font-size: 36px;
  font-weight: 700;
  display: block;
}

.price-term {
  font-size: 15px;
  color: var(--text-muted);
  display: block;
}

.pricing-link {
  margin-top: 22px;
  align-self: flex-start;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid var(--border);
  transition: background 0.2s ease, color 0.2s ease;
}

.pricing-link:hover {
  background: var(--accent);
  color: #03040a;
}

.pricing-card.highlighted {
  border-color: rgba(47, 107, 255, 0.6);
  background: rgba(47, 107, 255, 0.18);
}

.anthem {
  text-align: center;
}

.anthem-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.anthem-text {
  font-family: var(--font-heading);
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.08;
  color: var(--text);
}

.anthem-subtext {
  font-size: 24px;
  color: var(--text-muted);
}

.callout {
  text-align: center;
}

.callout-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.callout-subtext {
  font-size: 24px;
  color: var(--text-muted);
}

.callout-cta {
  align-self: center;
  display: inline-block;
  margin-top: 10px;
  padding: 16px 40px;
  border-radius: 999px;
  background: var(--accent);
  color: #03040a;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.callout-cta:hover {
  color: #03040a;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(47, 107, 255, 0.3);
}

.site-footer {
  border-top: 1px solid var(--border-soft);
  background: rgba(3, 3, 6, 0.92);
  padding: 40px 26px 60px;
}

.footer-content {
  width: var(--layout-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand img {
  width: 50px;
  height: 50px;
  border-radius: 14px;
}

.footer-brand p {
  max-width: 360px;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(247, 247, 251, 0.75);
}

.footer-links {
  display: flex;
  gap: 26px;
  align-items: center;
  color: var(--text-muted);
  font-size: 15px;
}

@media (max-width: 900px) {
  .site-header {
    padding-top: env(safe-area-inset-top, 0);
  }

  .nav {
    position: relative;
    padding: calc(12px + env(safe-area-inset-top, 0)) 20px 12px;
    min-height: var(--mobile-header-height);
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .menu {
    position: fixed;
    top: calc(var(--mobile-header-height) + env(safe-area-inset-top, 0) + 8px);
    right: 20px;
    left: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 22px;
    background: rgba(6, 7, 12, 0.97);
    border: 1px solid var(--border-soft);
    border-radius: 22px;
    color: var(--text);
    box-shadow: 0 28px 48px rgba(3, 6, 18, 0.55);
    z-index: 35;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .menu a {
    width: 100%;
    padding: 4px 0;
    font-size: 16px;
    color: var(--text);
  }

  .menu-cta {
    display: inline-flex;
    justify-content: center;
    margin-top: 6px;
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--accent);
    color: #03040a;
    font-weight: 600;
  }

  .menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
  }

  .broker-comp-card {
    padding: 40px 32px;
    gap: 28px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(3, 5, 16, 0.6);
    z-index: 25;
    pointer-events: none;
  }

  main {
    padding: 80px 20px 110px;
  }

  .hero {
    padding: 80px 20px;
  }

  .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: clamp(34px, 8vw, 50px);
  }

  h2 {
    font-size: clamp(22px, 5.8vw, 32px);
  }

  h3 {
    font-size: clamp(20px, 5.6vw, 26px);
  }

  .hero-content {
    flex-direction: column;
    gap: 40px;
  }

  .hero-right {
    flex: none;
    order: 1;
    max-width: 100%;
  }

  .hero-left {
    order: 0;
  }

  .hero-heading {
    font-size: clamp(36px, 8vw, 52px);
  }

  .hero-image::before {
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    filter: blur(15px);
  }

  .usecases-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
  }

  .section {
    margin: 120px 0;
  }

  .section-heading {
    margin: 0 auto 48px;
  }

  .section-heading h2 {
    font-size: clamp(22px, 5.8vw, 30px);
  }

  .section-heading > p {
    font-size: 18px;
  }

  .section-heading .eyebrow {
    font-size: 11px;
    letter-spacing: 0.16em;
    margin-bottom: 14px;
  }

  .card {
    padding: 30px 26px;
  }

  .card h3 {
    font-size: clamp(20px, 5.8vw, 24px);
  }

  .broker-comp-card {
    padding: 32px 24px !important;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  .hero-calculator {
    padding: 32px 26px !important;
  }

  #savings .card {
    padding: 32px 26px !important;
  }

  .hero-calculator label,
  #savings label {
    font-size: 16px !important;
  }

  #savings .card h3 {
    font-size: 20px !important;
  }

  .standalone-hero {
    padding: 100px 20px 130px;
  }

  .standalone-card {
    padding: 48px 36px;
    gap: 22px;
  }

  .standalone-subtitle {
    font-size: 18px;
  }

  .waitlist-form {
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 28px;
    gap: 14px;
    background: rgba(5, 7, 14, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.16);
  }

  .waitlist-form input {
    font-size: 18px;
    padding: 12px 16px;
  }

  .waitlist-form button {
    width: 100%;
    padding: 16px 18px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .brand span {
    font-size: 16px;
    line-height: 1.3;
  }

  h1 {
    font-size: clamp(30px, 9vw, 42px);
  }

  h2 {
    font-size: clamp(22px, 7vw, 32px);
  }

  h3 {
    font-size: clamp(18px, 6.4vw, 22px);
  }

  .hero {
    padding: 64px 20px;
  }

  .hero-left {
    text-align: center;
  }

  .hero-heading {
    font-size: clamp(32px, 9vw, 42px);
    gap: 4px;
    justify-items: center;
  }

  .hero-subtitle {
    font-size: 17px;
    line-height: 1.6;
  }

  .hero-actions {
    align-items: center;
  }

  .hero-actions .nav-cta {
    width: 100%;
    text-align: center;
  }

  .company-hero-visual {
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
  }

  .hero-frame {
    inset: -10px -10px -10px -10px;
  }

  .company-hero-chip {
    max-width: calc(50% - 8px);
  }

  .signup-form {
    flex-direction: column;
    padding: 16px;
    gap: 16px;
    border-radius: var(--radius-md);
  }

  .signup-form input {
    font-size: 18px;
    padding: 12px 0;
  }

  .signup-form button {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
  }

  .usecases-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .callout-card {
    padding: 64px 28px;
  }

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

  .section {
    margin: 90px 0;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading > p {
    font-size: 15px;
  }

  .section-heading h2 {
    font-size: clamp(20px, 6vw, 26px);
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    margin-bottom: 14px;
  }

  .section-heading .eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    margin-bottom: 14px;
  }

  .accuracy-grid,
  .features-grid,
  .pricing-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  #savings .card {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .card h3 {
    font-size: 18px !important;
  }

  #savings .card h3 {
    font-size: 18px !important;
  }

  #broker-comp-amount {
    font-size: 24px !important;
  }

  #broker-comp-context {
    font-size: 16px !important;
  }

  .broker-comp-card {
    grid-template-columns: 1fr;
    padding: 24px 18px !important;
    gap: 20px;
  }

  .broker-comp-card input[type="range"] {
    width: 100% !important;
  }

  .hero-calculator > div:first-child > div:first-child {
    font-size: 24px !important;
  }

  #lifetime-savings {
    font-size: 44px !important;
  }

  .hero-calculator > div:first-child > div:nth-child(3) {
    font-size: 20px !important;
  }

  #lifetime-savings-context {
    font-size: 14px !important;
  }

  #monthly-savings {
    font-size: 32px !important;
  }

  .standalone-hero {
    padding: 80px 16px 110px;
  }

  .standalone-card {
    padding: 40px 28px;
    gap: 18px;
  }

  .standalone-subtitle {
    font-size: 16px;
  }

  .waitlist-form {
    padding: 16px;
    gap: 12px;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  background-color: var(--background);
  color: var(--text);
  margin: 5% auto;
  padding: 2rem;
  border: none;
  border-radius: 16px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  color: var(--text-secondary);
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
}

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

.modal-body h3 {
  color: var(--text);
  font-family: var(--font-space-grotesk);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem 0;
}

.modal-body h3:first-child {
  margin-top: 1rem;
}

.modal-body p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .modal-content {
    margin: 10% auto;
    padding: 1.5rem;
    width: 95%;
  }
}

.success-hero {
  text-align: center;
  padding: 100px 40px;
}

.success-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
}

.success-content h1 {
  font-size: clamp(36px, 6vw, 48px);
  color: var(--text);
  margin-bottom: 1.5rem;
}

.success-subtitle {
  font-size: 20px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 3rem;
}

.success-message {
  background: rgba(47, 107, 255, 0.1);
  border: 1px solid rgba(47, 107, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 3rem;
  text-align: left;
}

.success-message h2 {
  color: var(--text);
  margin-bottom: 1.5rem;
  text-align: center;
}

.success-message ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.success-message li {
  color: var(--text-muted);
  padding: 0.75rem 0;
  font-size: 16px;
  line-height: 1.5;
}

.invite-description {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 2rem;
  text-align: center;
}

.invite-counter {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.counter-display {
  background: rgba(47, 107, 255, 0.2);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  text-align: center;
}

.counter-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
}

.counter-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 0.5rem;
  display: block;
}

.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.success-cta {
  color: var(--text-muted);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 16px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.success-cta:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.success-contact {
  color: var(--text-muted);
  text-decoration: none;
  padding: 16px 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  transition: all 0.2s ease;
}

.success-contact:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.4);
}

.success-share {
  background: var(--accent);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.success-share:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .success-hero {
    padding: 60px 20px;
  }

  .success-message {
    padding: 1.5rem;
  }

  .success-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* Cart Page Styles */
.cart-hero {
  padding: 100px 40px;
}

.cart-content {
  max-width: 600px;
  margin: 0 auto;
}

.plan-display {
  background: rgba(47, 107, 255, 0.1);
  border: 1px solid rgba(47, 107, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.plan-header h1 {
  font-size: clamp(32px, 6vw, 40px);
  color: var(--text);
  margin-bottom: 1rem;
}

.plan-price {
  margin-bottom: 2rem;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
}

.price-term {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 0.5rem;
  display: block;
}

.plan-features {
  text-align: left;
}

.plan-features h3 {
  color: var(--text);
  margin-bottom: 1rem;
}

.plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-features li {
  color: var(--text-muted);
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.plan-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

.plan-note {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 12px 0 0 0;
  font-style: italic;
}

.cart-form {
  margin-bottom: 2rem;
}

.cart-form h2 {
  color: var(--text);
  margin-bottom: 1.5rem;
}

.cart-signup {
  max-width: 550px;
}

.cart-back {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

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

@media (max-width: 640px) {
  .cart-hero {
    padding: 60px 20px;
  }

  .plan-display {
    padding: 1.5rem;
  }

  .cart-signup {
    flex-direction: column;
    padding: 16px;
    gap: 16px;
    border-radius: var(--radius-md);
  }

  .cart-signup input {
    font-size: 18px;
    padding: 12px 0;
  }

  .cart-signup button {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
  }
}

.blog-links {
  background: linear-gradient(135deg, rgba(13, 18, 35, 0.92), rgba(8, 10, 22, 0.92));
  border-radius: 36px;
  padding: 80px clamp(24px, 6vw, 96px);
  margin-top: 96px;
}

.blog-links .section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  color: #f7f7fb;
}

.blog-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.blog-link-card {
  display: grid;
  gap: 10px;
  padding: 28px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(120, 150, 255, 0.22);
  text-decoration: none;
  color: rgba(247, 247, 251, 0.75);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}

.blog-link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(47, 107, 255, 0.22);
  border-color: rgba(120, 150, 255, 0.4);
}

.blog-link-kicker {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 12px;
  color: rgba(247, 247, 251, 0.55);
}

.blog-link-title {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 20px;
  line-height: 1.4;
  color: #ffffff;
}

.blog-link-cta {
  font-weight: 600;
  color: #d1dcff;
}

@media (max-width: 720px) {
  .blog-links {
    margin-top: 64px;
    padding: 64px 20px;
  }
}
