:root {
  color-scheme: light;
  --bg: #ffffff;
  --ink: #172033;
  --muted: #667085;
  --line: #d9dee8;
  --soft: #f5f8fb;
  --soft-2: #eef6fb;
  --brand: #0073aa;
  --brand-2: #0b8fc5;
  --brand-dark: #071d35;
  --brand-dark-2: #0b2b4a;
  --success: #176a3a;
  --warning: #9a5b00;
  --danger: #b42318;
  --shadow: 0 14px 34px rgba(16, 24, 40, .08);
  --shadow-sm: 0 3px 12px rgba(16, 24, 40, .06);
  --radius: 8px;
  --max: 1160px;
  --font-heading: "Sora", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

h1,
h2,
h3,
.brand,
.button,
.price,
.price-label {
  font-family: var(--font-heading);
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(217, 222, 232, .75);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(100% - 40px, var(--max));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: 0;
}

.brand img {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #344054;
  font-size: 14px;
  font-weight: 750;
}

.nav-links a {
  text-decoration: none;
}

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

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  font-weight: 850;
  line-height: 1.2;
  box-shadow: var(--shadow-sm);
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.button:disabled {
  cursor: wait;
  opacity: .7;
  transform: none;
}

.button-primary {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 115, 170, .18);
}

.button-primary:hover {
  background: #006896;
  border-color: #006896;
}

.button-ghost {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .2);
  color: #fff;
  box-shadow: none;
}

.hero {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-dark-2) 52%, #06182d 100%);
  color: #fff;
}

.hero-inner {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, .78fr);
  align-items: center;
  gap: 52px;
  padding: 84px 0 76px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 18px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #ccecf8;
  font-size: 13px;
  font-weight: 800;
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: .98;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: #d7e6f2;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 44px;
}

.proof-item {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
}

.proof-item strong {
  display: block;
  font-size: 22px;
}

.proof-item span {
  display: block;
  margin-top: 3px;
  color: #bdd2e2;
  font-size: 13px;
  font-weight: 700;
}

.product-panel {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
  overflow: hidden;
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .07);
}

.panel-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
}

.panel-brand img {
  width: 34px;
  height: 34px;
}

.status-pill {
  padding: 4px 9px;
  border-radius: 999px;
  background: #e9f7ef;
  color: var(--success);
  font-size: 12px;
  font-weight: 850;
}

.panel-body {
  padding: 18px;
  background: #fff;
  color: var(--ink);
}

.check-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.check-row:last-child {
  border-bottom: 0;
}

.check-row strong,
.check-row span {
  display: block;
}

.check-row span {
  color: var(--muted);
  font-size: 14px;
}

.check-mark {
  flex: 0 0 auto;
  min-width: 84px;
  align-self: flex-start;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--soft-2);
  color: #005f89;
  text-align: center;
  font-size: 12px;
  font-weight: 850;
}

.section {
  padding: 92px 0;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  background: var(--brand-dark);
  color: #fff;
}

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

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-head h2,
.cta h2 {
  margin: 0;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-head p,
.cta p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section-dark .section-head p,
.section-dark .cta p {
  color: #c7d7e5;
}

.audience-grid,
.solution-grid,
.feature-grid,
.pricing-grid,
.faq-grid {
  display: grid;
  gap: 16px;
}

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

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

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

.capability-grid {
  align-items: stretch;
}

.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

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

.card,
.price-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.card {
  padding: 24px;
}

.card h3,
.faq-item h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0;
}

.card p,
.faq-item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.icon-box {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--soft-2);
  color: var(--brand);
}

.solution-list {
  padding: 24px;
}

.solution-list ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.solution-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #344054;
}

.solution-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 10px;
  flex: 0 0 auto;
  border-radius: 99px;
  background: var(--brand);
}

.price-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 24px;
}

.price-card.is-featured {
  border-color: #a6d7ec;
  box-shadow: 0 18px 42px rgba(0, 115, 170, .14);
}

.price-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--soft-2);
  color: #005f89;
  font-size: 12px;
  font-weight: 850;
}

.price-card h3 {
  margin: 0;
  font-size: 24px;
}

.price {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.1;
}

.price span {
  color: var(--muted);
  font-size: 16px;
  font-weight: 850;
}

.tax-note {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.price-note {
  min-height: 44px;
  margin: 12px 0 20px;
  color: var(--muted);
}

.price-card ul {
  display: grid;
  gap: 9px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  color: #344054;
}

.price-card li::before {
  content: "\2713";
  margin-right: 8px;
  color: var(--brand);
  font-weight: 900;
}

.price-card .button {
  margin-top: auto;
}

.order-panel {
  margin-top: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.order-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.order-panel h3 {
  margin: 0;
  font-size: 28px;
  letter-spacing: 0;
}

.order-panel p {
  max-width: 760px;
  margin: 9px 0 0;
  color: var(--muted);
}

.order-form {
  display: grid;
  gap: 20px;
}

.form-section {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.form-section h4 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 17px;
  letter-spacing: 0;
}

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

.order-form label {
  display: grid;
  gap: 7px;
  color: #344054;
  font-size: 14px;
  font-weight: 800;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
}

.order-form textarea {
  min-height: 92px;
  resize: vertical;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0, 115, 170, .13);
}

.order-form small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.form-wide {
  grid-column: 1 / -1;
}

.terms-row {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-weight: 650 !important;
}

.terms-row input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.form-actions .button-primary {
  min-height: 46px;
  padding-inline: 20px;
}

.order-message {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
}

.order-message.is-success {
  color: var(--success);
}

.order-message.is-error {
  color: #b42318;
}

.thank-you-panel h1,
.legal-page h1 {
  margin: 10px 0 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

.thank-you-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.thank-you-actions {
  margin-top: 10px;
}

.legal-page {
  max-width: 920px;
}

.legal-page article {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.legal-page article:last-child {
  border-bottom: 0;
}

.legal-page h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: 0;
}

.legal-page p {
  margin: 10px 0 0;
  color: var(--muted);
}

.legal-page ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 22px;
  color: var(--muted);
}

.legal-page li {
  padding-left: 2px;
}

.legal-updated {
  font-weight: 800;
}

.faq-item {
  padding: 24px;
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer a {
  font-weight: 750;
  text-decoration: none;
}

@media (max-width: 980px) {
  .nav {
    min-height: 66px;
  }

  .nav-links {
    display: none;
  }

  .hero-inner,
  .cta {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding: 72px 0 56px;
  }

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

@media (max-width: 720px) {
  .hero-proof,
  .audience-grid,
  .solution-grid,
  .feature-grid,
  .pricing-grid,
  .faq-grid,
  .thank-you-steps,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .hero-lead,
  .section-head p,
  .cta p {
    font-size: 16px;
  }

  .product-panel {
    display: none;
  }

  .cta {
    padding: 28px;
  }

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