:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-soft: #edf3fb;
  --surface-muted: #f0f4fa;
  --primary: #0b2341;
  --primary-deep: #07182e;
  --accent: #2b74d6;
  --accent-deep: #175db4;
  --ink: #101828;
  --text: #293548;
  --muted: #667085;
  --border: #d9e2ef;
  --border-strong: #c3cfdf;
  --success: #0f766e;
  --warning: #9a5b00;
  --danger: #b42318;
  --shadow-sm: 0 10px 28px rgba(16, 41, 74, 0.055);
  --shadow-md: 0 24px 64px rgba(16, 41, 74, 0.11);
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Manrope, Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--primary);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.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: 50;
  border-bottom: 1px solid rgba(215, 222, 232, 0.88);
  background: rgba(247, 249, 252, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 198px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}

.main-nav a {
  padding: 24px 0;
  transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  text-align: center;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 10px 24px rgba(16, 41, 74, 0.16);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--primary-deep);
  border-color: var(--primary-deep);
}

.btn-secondary {
  color: var(--primary);
  background: #fff;
  border-color: var(--border-strong);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.btn-ghost {
  color: var(--primary);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: #fff;
  border-color: var(--border);
}

.btn-small {
  min-height: 40px;
  padding: 0 14px;
  font-size: 13px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  margin-left: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--primary);
}

.hero {
  position: relative;
  padding: 76px 0 56px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(215, 222, 232, 0.48) 1px, transparent 1px),
    linear-gradient(180deg, rgba(215, 222, 232, 0.38) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0));
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 52px;
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  font-size: 40px;
  font-weight: 800;
}

h3 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 780;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 28px;
  color: #344156;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.trust-list {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--text);
  font-size: 14px;
  font-weight: 680;
}

.trust-list span {
  position: relative;
  padding-left: 26px;
}

.trust-list span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #dff3ee;
  border: 1px solid #9bd5c8;
}

.trust-list span::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--success);
  border-bottom: 2px solid var(--success);
  transform: rotate(-45deg);
}

.hero-note {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-visual {
  min-width: 0;
}

.product-frame {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.product-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
}

.product-frame-hero {
  transform: translateY(0);
}

.frame-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-bottom: 1px solid var(--border);
  background: #fbfcfe;
}

.frame-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c7d0dd;
}

.frame-bar span:first-child {
  background: #d56d5d;
}

.frame-bar span:nth-child(2) {
  background: #e0b457;
}

.frame-bar span:nth-child(3) {
  background: #6fac8a;
}

.frame-bar strong {
  margin-left: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.hero-rail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.hero-rail div {
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
}

.metric-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.hero-rail strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
}

.signal-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.signal-grid > div {
  min-height: 154px;
  padding: 30px 28px;
  border-left: 1px solid var(--border);
}

.signal-grid > div:last-child {
  border-right: 1px solid var(--border);
}

.signal-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 800;
}

.signal-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
}

.signal-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 760px;
}

.section-heading p,
.split-heading p,
.proof-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 17px;
}

.wide-heading {
  max-width: 920px;
  margin-bottom: 38px;
}

.center-heading {
  margin: 0 auto 44px;
  text-align: center;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.64fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 42px;
}

.split-heading p:last-child {
  margin-bottom: 4px;
}

.problem-section {
  background: #fff;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.info-card {
  min-height: 242px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(16, 41, 74, 0.04);
}

.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 28px;
  margin-bottom: 22px;
  border-radius: 6px;
  color: var(--accent-deep);
  background: #e8f1fb;
  font-size: 12px;
  font-weight: 800;
}

.info-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.solution-section {
  background: var(--bg);
}

.solution-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1fr);
  gap: 52px;
  align-items: center;
}

.flow-panel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.flow-panel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--border-strong);
}

.flow-step {
  position: relative;
  min-height: 104px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.flow-step span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 800;
}

.flow-step strong {
  color: var(--ink);
}

.surfaces-section {
  background: #fff;
}

.surface-layout {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.surface-controls {
  display: grid;
  gap: 10px;
}

.surface-button {
  width: 100%;
  padding: 17px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  background: #fff;
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.surface-button span {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-weight: 780;
}

.surface-button small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.surface-button.active,
.surface-button:hover,
.surface-button:focus-visible {
  border-color: #9fc1e8;
  background: #f4f8fd;
  box-shadow: var(--shadow-sm);
}

.surface-preview p {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.audience-section {
  background: var(--surface-soft);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.audience-grid article {
  min-height: 202px;
  padding: 24px;
  border: 1px solid rgba(189, 200, 215, 0.8);
  border-radius: 8px;
  background: #fff;
}

.audience-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.process-section {
  background: #fff;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step-card {
  position: relative;
  min-height: 258px;
  padding: 26px 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
}

.step-card::after {
  content: "";
  position: absolute;
  top: 44px;
  right: -19px;
  width: 18px;
  height: 1px;
  background: var(--border-strong);
}

.step-card:last-child::after {
  display: none;
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 8px;
  color: #fff;
  background: var(--primary);
  font-weight: 800;
}

.step-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.pricing-section {
  background: var(--bg);
}

.launch-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: stretch;
  margin-bottom: 30px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(16, 41, 74, 0.07);
}

.launch-copy {
  padding: 26px 28px;
}

.pricing-kicker {
  margin: 0 0 10px;
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.launch-card h3,
.custom-scope-card h3 {
  margin-bottom: 12px;
  font-size: 26px;
}

.launch-card p,
.custom-scope-card p {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--muted);
}

.launch-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.launch-includes span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid #cfe0f3;
  border-radius: 999px;
  color: #31506f;
  background: #f6f9fd;
  font-size: 13px;
  font-weight: 700;
}

.launch-price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 28px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(145deg, #0b2341, #113a67);
}

.launch-price span {
  color: #c6d6eb;
  font-size: 13px;
  font-weight: 750;
}

.launch-price strong {
  display: block;
  max-width: 270px;
  color: #fff;
  font-size: 30px;
  line-height: 1.1;
}

.launch-price .btn {
  width: fit-content;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.pricing-subhead {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin: 32px 0 18px;
}

.pricing-subhead span {
  height: 1px;
  background: var(--border);
}

.pricing-subhead p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 590px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(16, 41, 74, 0.045);
}

.pricing-card.clickable-plan {
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.pricing-card.clickable-plan:hover,
.pricing-card.clickable-plan:focus-visible {
  transform: translateY(-2px);
  border-color: #9bbde7;
  box-shadow: 0 24px 58px rgba(16, 41, 74, 0.1);
  outline: none;
}

.pricing-card.featured {
  border-color: #8fb8e8;
  box-shadow: 0 24px 58px rgba(47, 125, 211, 0.14);
}

.featured-label {
  position: absolute;
  top: -13px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--primary);
  font-size: 11px;
  font-weight: 800;
}

.plan-label {
  margin-bottom: 14px;
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.plan-price {
  margin: 14px 0 18px;
  color: var(--ink);
  font-size: 29px;
  font-weight: 800;
  line-height: 1.1;
}

.plan-price span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}

.pricing-card > p:not(.plan-label) {
  min-height: 86px;
  color: var(--muted);
}

.pricing-card ul,
.check-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.pricing-card li,
.check-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}

.pricing-card li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--success);
  border-bottom: 2px solid var(--success);
  transform: rotate(-45deg);
}

.plan-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: auto;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  color: var(--primary);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.plan-cta:hover,
.plan-cta:focus-visible {
  transform: translateY(-1px);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.plan-cta.primary {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

.custom-scope-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: center;
  margin-top: 22px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}

.custom-action {
  display: grid;
  gap: 16px;
  justify-items: end;
}

.custom-action strong {
  max-width: 280px;
  color: var(--primary);
  font-size: 19px;
  line-height: 1.25;
  text-align: right;
}

.pricing-footnote {
  max-width: 980px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.proof-section {
  background: #fff;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.65fr);
  gap: 42px;
  align-items: center;
}

.proof-copy .check-list {
  margin-top: 24px;
}

.contact-section {
  background: var(--primary);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(480px, 0.82fr);
  gap: 48px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.contact-section .eyebrow {
  color: #9fcaff;
}

.contact-section h2,
.contact-section h3 {
  color: #fff;
}

.contact-section .contact-copy p {
  color: #d9e4f2;
}

.contact-options {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-options a {
  display: inline-flex;
  color: #fff;
  font-weight: 760;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.contact-form {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.22);
}

.contact-form h3 {
  color: var(--ink);
  font-size: 26px;
}

.contact-form > p {
  color: var(--muted);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

label span {
  color: var(--text);
  font-size: 13px;
  font-weight: 760;
}

.honeypot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input {
  min-height: 44px;
  padding: 0 12px;
}

textarea {
  min-height: 118px;
  padding: 12px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(47, 125, 211, 0.14);
}

.privacy-note,
.form-fallback {
  color: var(--muted);
  font-size: 12px;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 700;
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: var(--danger);
}

.form-fallback {
  margin: 10px 0 0;
}

.form-fallback a {
  color: var(--primary);
  font-weight: 760;
}

.faq-section {
  background: #fff;
}

.faq-list {
  display: grid;
  max-width: 920px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

details {
  border-bottom: 1px solid var(--border);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  padding: 22px 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 780;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--primary);
  font-weight: 800;
}

details[open] summary::after {
  content: "−";
}

details p {
  max-width: 760px;
  margin: -4px 0 22px;
  color: var(--muted);
}

.boundary-section {
  padding: 0 0 80px;
  background: #fff;
}

.boundary-box {
  padding: 24px 28px;
  border: 1px solid #e0d0aa;
  border-radius: 8px;
  background: #fffaf0;
}

.boundary-box p {
  margin: 0;
  color: #5e4a1e;
  font-size: 14px;
}

.site-footer {
  padding: 54px 0 28px;
  color: #d8e3f1;
  background: #0b1e36;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 210px minmax(320px, 0.9fr);
  gap: 48px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-brand img {
  width: 40px;
  height: 40px;
}

.footer-brand strong,
.footer-brand span {
  display: block;
  line-height: 1.1;
}

.footer-brand strong {
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

.footer-brand span {
  margin-top: 3px;
  color: #b9c7d8;
  font-size: 11px;
  font-weight: 700;
}

.site-footer p {
  color: #b9c7d8;
  font-size: 14px;
}

.site-footer nav {
  display: grid;
  gap: 10px;
  align-content: start;
}

.site-footer a,
.privacy-link {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.footer-legal {
  display: grid;
  gap: 8px;
}

.footer-legal p {
  margin: 0;
}

.privacy-link {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.copyright {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8fa0b5;
  font-size: 13px;
}

.privacy-dialog {
  width: min(780px, calc(100% - 32px));
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow-md);
}

.privacy-dialog::backdrop {
  background: rgba(5, 18, 34, 0.55);
}

.dialog-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
}

.dialog-header h2 {
  margin: 0;
  font-size: 24px;
}

.dialog-close {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--primary);
  background: #fff;
  font-size: 24px;
  line-height: 1;
}

.dialog-content {
  max-height: min(68vh, 620px);
  overflow: auto;
  padding: 24px;
}

.dialog-content p {
  color: var(--muted);
}

.dialog-content a {
  color: var(--primary);
  font-weight: 760;
}

@media (max-width: 1120px) {
  .header-actions {
    display: none;
  }

  .main-nav {
    gap: 18px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-grid,
  .solution-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .solution-grid .flow-panel {
    max-width: 860px;
  }

  .problem-grid,
  .audience-grid,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .surface-layout,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .surface-controls {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    min-height: auto;
  }

  .pricing-card > p:not(.plan-label) {
    min-height: auto;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .header-inner {
    min-height: 66px;
  }

  .brand img {
    width: 154px;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-color: var(--border-strong);
    box-shadow: 0 6px 16px rgba(16, 41, 74, 0.08);
  }

  .main-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 74px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow-md);
  }

  .main-nav.open {
    display: grid;
  }

  .main-nav a {
    padding: 14px 12px;
    border-radius: 6px;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: var(--surface-soft);
  }

  .hero {
    padding: 36px 0 22px;
  }

  .hero-grid {
    gap: 22px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 18px;
  }

  .hero-lead,
  .section-heading p,
  .split-heading p,
  .proof-copy p,
  .contact-copy p {
    font-size: 16px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-list,
  .hero-note,
  .hero-rail {
    display: none;
  }

  .hero-rail,
  .signal-grid,
  .split-heading,
  .launch-card,
  .custom-scope-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .signal-grid > div {
    min-height: auto;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .signal-grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 68px 0;
  }

  .problem-grid,
  .audience-grid,
  .steps-grid,
  .surface-controls,
  .form-row {
    grid-template-columns: 1fr;
  }

  .step-card::after {
    display: none;
  }

  .flow-panel {
    grid-template-columns: 1fr;
  }

  .flow-panel::before {
    left: 32px;
    right: auto;
    top: 8%;
    bottom: 8%;
    width: 1px;
    height: auto;
  }

  .product-frame img {
    aspect-ratio: 16 / 10;
  }

  .product-frame-hero img {
    aspect-ratio: 16 / 7;
  }

  .launch-price,
  .custom-action,
  .custom-action strong {
    min-width: 0;
    max-width: none;
    text-align: left;
    justify-items: start;
  }

  .contact-form {
    padding: 24px 18px;
  }
}

@media (max-width: 520px) {
  .brand img {
    width: 138px;
  }

  h1 {
    font-size: 30px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .info-card,
  .audience-grid article,
  .step-card,
  .pricing-card,
  .launch-copy,
  .launch-price,
  .custom-scope-card {
    padding: 20px;
  }

  .plan-price {
    font-size: 27px;
  }

  .launch-price strong {
    font-size: 27px;
  }

  summary {
    align-items: flex-start;
    font-size: 16px;
  }
}
