:root {
  --navy: #071835;
  --navy-2: #0d2347;
  --navy-3: #11315f;
  --orange: #ed5b06;
  --orange-2: #ff7a1d;
  --orange-soft: #fff2e9;
  --ink: #10213e;
  --muted: #63728a;
  --line: #dce4ef;
  --surface: #ffffff;
  --soft: #f5f8fc;
  --shadow: 0 18px 50px rgba(7, 24, 53, 0.08);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(237, 91, 6, 0.08), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
button, input, select { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
strong { color: var(--navy); }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-200%);
  background: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(220, 228, 239, 0.85);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: block;
  width: min(270px, 52vw);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 700;
  color: #42526b;
}
.site-nav a:hover { color: var(--navy); }
.nav-cta,
.primary-button,
.notify-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #fff !important;
  font-weight: 800;
  box-shadow: 0 14px 26px rgba(237, 91, 6, 0.22);
  cursor: pointer;
}
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  font-weight: 800;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.hero-section { padding: 44px 0 24px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 28px;
  align-items: stretch;
}
.hero-copy,
.brand-card,
.service-card,
.feature-card,
.audience-card,
.waitlist-panel,
.faq-list details {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(220, 228, 239, 0.9);
  box-shadow: var(--shadow);
}
.hero-copy {
  padding: 42px;
  border-radius: 30px;
}
.eyebrow,
.section-label,
.brand-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section-label {
  padding: 0;
  border-radius: 0;
  background: none;
}
.brand-label {
  width: fit-content;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  color: var(--navy);
}
.hero-lead {
  margin: 0;
  max-width: 700px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.hero-points li {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: #40506a;
  font-weight: 700;
}
.brand-card {
  height: 100%;
  padding: 34px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(237, 91, 6, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
}
.hero-logo {
  width: min(100%, 510px);
  margin-bottom: 22px;
}
.brand-copy {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.8;
}
.brand-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.brand-metrics article {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(220, 228, 239, 0.95);
  background: rgba(255, 255, 255, 0.94);
}
.brand-metrics strong,
.brand-metrics span {
  display: block;
}
.brand-metrics strong {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 1rem;
}
.brand-metrics span {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.intro-strip { padding: 0 0 18px; }
.intro-strip-inner {
  padding: 18px 22px;
  border-left: 4px solid var(--orange);
  border-radius: 18px;
  background: linear-gradient(90deg, var(--orange-soft), rgba(255,255,255,0.97));
}
.intro-strip p {
  margin: 0;
  color: #33425b;
  line-height: 1.7;
}

.section { padding: 72px 0; }
.section-soft { background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%); }
.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}
.section-heading h2,
.waitlist-copy h2,
.on-dark h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(1.85rem, 3vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}
.section-heading p,
.waitlist-copy p,
.on-dark p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.services-grid,
.feature-grid,
.audience-grid {
  display: grid;
  gap: 18px;
}
.services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.audience-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-card,
.feature-card,
.audience-card {
  padding: 26px;
  border-radius: 24px;
}
.highlight-card { background: linear-gradient(180deg, #fff8f3 0%, #ffffff 100%); }
.service-card h3,
.feature-card h3,
.audience-card h3,
.process-steps h3,
.faq-list summary {
  margin: 0 0 10px;
  color: var(--navy);
}
.service-card h3 { font-size: 1.28rem; line-height: 1.28; }
.service-card p,
.feature-card p,
.audience-card p,
.process-steps p,
.faq-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}
.service-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.service-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #3b4a63;
  font-weight: 650;
}
.service-card li::before {
  content: "✓";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  margin-top: 2px;
}

.why-grid { display: grid; gap: 24px; }

.process-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  box-shadow: 0 24px 60px rgba(7, 24, 53, 0.18);
}
.on-dark h2,
.on-dark .section-label { color: #fff; }
.on-dark p { color: rgba(255,255,255,0.78); }
.process-steps {
  display: grid;
  gap: 14px;
}
.process-steps article {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}
.process-steps span {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(237, 91, 6, 0.2);
  color: #fff;
  font-weight: 800;
}
.process-steps h3 { color: #fff; font-size: 1.05rem; }
.process-steps p { color: rgba(255,255,255,0.75); }

.faq-list {
  display: grid;
  gap: 14px;
}
.faq-list details {
  padding: 0 20px;
  border-radius: 18px;
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-size: 1.04rem;
  font-weight: 750;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p { padding: 0 0 20px; }

.waitlist-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  padding: 34px;
  border-radius: 30px;
}
.waitlist-copy img {
  width: 76px;
  height: 76px;
  margin-bottom: 18px;
  padding: 10px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}
.waitlist-form-box {
  padding: 26px;
  border-radius: 24px;
  background: var(--navy);
  color: #fff;
}
.notify-form {
  display: grid;
  gap: 12px;
}
.notify-form label {
  font-weight: 700;
  font-size: 14px;
}
.notify-form input,
.notify-form select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: #fff;
  outline: none;
}
.notify-form input::placeholder { color: rgba(255,255,255,0.62); }
.notify-form select option { color: #111; }
.notify-form input:focus,
.notify-form select:focus {
  border-color: rgba(255,255,255,0.42);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.08);
}
.form-status {
  min-height: 18px;
  margin: 0;
  color: #aee8c1;
  font-size: 14px;
}
.form-status.error { color: #ffc0c0; }
.form-note {
  margin: 14px 0 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  font-size: 13px;
}

.site-footer {
  padding: 24px 0 34px;
  border-top: 1px solid rgba(220,228,239,0.85);
  background: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: start;
}
.footer-brand {
  display: inline-block;
  width: min(240px, 55vw);
}
.footer-text {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}
.footer-links {
  display: grid;
  justify-content: end;
  gap: 10px;
  color: #42526b;
  font-weight: 700;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  margin-top: 20px;
  border-top: 1px solid var(--line);
}
.footer-bottom p {
  margin: 0;
  color: #6b7891;
  font-size: 14px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .process-panel,
  .waitlist-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .audience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 10px; }
  .services-grid,
  .feature-grid,
  .audience-grid,
  .brand-metrics,
  .hero-points { grid-template-columns: 1fr; }
  .hero-copy,
  .brand-card,
  .waitlist-panel,
  .waitlist-form-box,
  .process-panel { padding: 24px; }
}

@media (max-width: 640px) {
  .container { width: min(var(--container), calc(100% - 28px)); }
  .hero-section { padding-top: 28px; }
  .section { padding: 56px 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions a,
  .notify-form button { width: 100%; }
  .footer-links { justify-content: start; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.notify-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}
