:root {
  --midnight: #18243f;
  --ink: #0f1930;
  --signal: #2f6bff;
  --teal: #19c6c9;
  --slate: #667085;
  --cloud: #f8fafc;
  --white: #ffffff;
  --line: #e7ebf2;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--midnight);
  background:
    radial-gradient(circle at 86% 16%, rgba(47,107,255,.10), transparent 28rem),
    radial-gradient(circle at 72% 58%, rgba(25,198,201,.08), transparent 26rem),
    var(--cloud);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(rgba(24,36,63,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,36,63,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

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

.page-shell {
  position: relative;
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(24,36,63,.10);
}

.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}
.brand-mark { width: 40px; height: 40px; }
.brand-name { font-size: 24px; letter-spacing: -.045em; }

.header-status,
.launch-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(47,107,255,.20);
  background: rgba(255,255,255,.75);
  color: var(--signal);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.header-status { padding: 10px 15px; }

.hero {
  min-height: 670px;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(450px, .97fr);
  gap: 72px;
  align-items: center;
  padding: 92px 0 86px;
}

.hero-copy { max-width: 720px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  color: #53627d;
  font-size: 14px;
  font-weight: 600;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(25,198,201,.10);
}

h1, h2 { font-family: "Manrope", sans-serif; }
h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(64px, 7.2vw, 112px);
  line-height: .94;
  letter-spacing: -.065em;
  font-weight: 800;
}
h1 span {
  background: linear-gradient(95deg, var(--signal) 5%, #2d7be8 54%, var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-text {
  max-width: 660px;
  margin: 34px 0 0;
  color: #56627a;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
}
.launch-pill {
  padding: 13px 18px;
  color: white;
  border-color: transparent;
  background: var(--midnight);
}
.microcopy { color: #788399; font-size: 14px; }

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}
.hero-visual::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(47,107,255,.18), rgba(25,198,201,.10));
  filter: blur(1px);
}

.visual-card {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(24,36,63,.10);
  background: rgba(255,255,255,.92);
  box-shadow: 0 22px 70px rgba(18,38,75,.12);
  backdrop-filter: blur(10px);
}
.visual-card-main {
  width: min(100%, 470px);
  padding: 28px;
  border-radius: 24px;
}
.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 18px;
}
.live-badge {
  padding: 7px 10px;
  border-radius: 999px;
  color: #16898c;
  background: rgba(25,198,201,.11);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.score-row div { display: grid; gap: 6px; }
.label, .metric-grid span, .progress-label { color: #7b879c; font-size: 12px; }
.score-row strong { font-size: 18px; }
.score {
  color: var(--signal);
  font-family: "Manrope", sans-serif;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -.05em;
}
.divider { height: 1px; margin: 26px 0; background: var(--line); }
.metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.metric-grid div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 17px 18px;
  border-radius: 14px;
  background: #f7f9fc;
}
.metric-grid strong { font-family: "Manrope", sans-serif; }
.progress-wrap { margin-top: 28px; }
.progress-label { display: flex; justify-content: space-between; margin-bottom: 10px; }
.progress { height: 8px; overflow: hidden; border-radius: 999px; background: #edf0f5; }
.progress span {
  display: block;
  width: 80%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--signal), var(--teal));
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  border-radius: 16px;
  font-size: 12px;
}
.floating-card div { display: grid; gap: 3px; }
.floating-card strong { font-size: 13px; }
.floating-card div span { color: #7b879c; }
.floating-one { top: 72px; left: 0; }
.floating-two { right: -8px; bottom: 75px; }
.mini-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 10px;
  color: white;
  background: var(--signal);
  font-weight: 800;
}
.result-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(25,198,201,.13);
}
.orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(47,107,255,.13);
  border-radius: 50%;
}
.orbit-one { width: 510px; height: 510px; }
.orbit-two { width: 590px; height: 590px; border-color: rgba(25,198,201,.10); }

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(24,36,63,.10);
  border-bottom: 1px solid rgba(24,36,63,.10);
}
.features article { padding: 42px 42px 46px 0; }
.features article + article { padding-left: 42px; border-left: 1px solid rgba(24,36,63,.10); }
.feature-number {
  margin-bottom: 26px;
  color: var(--signal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}
.features h2 { margin: 0 0 12px; font-size: 22px; letter-spacing: -.035em; }
.features p { max-width: 390px; margin: 0; color: #667085; line-height: 1.7; font-size: 14px; }

.site-footer {
  min-height: 134px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  color: #7b879c;
  font-size: 12px;
}
.site-footer > span:last-child { justify-self: end; }
.footer-brand { color: var(--midnight); font-size: 15px; }
.footer-brand img { width: 26px; height: 26px; }
.site-footer p { margin: 0; letter-spacing: .04em; }

@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; gap: 35px; padding-top: 74px; }
  .hero-copy { margin: 0 auto; text-align: center; }
  .eyebrow { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-visual { width: min(660px, 100%); margin: 0 auto; }
  .features article, .features article + article { padding: 34px 28px; }
}

@media (max-width: 720px) {
  .page-shell { width: min(100% - 30px, 1440px); }
  .site-header { height: 84px; }
  .brand-mark { width: 34px; height: 34px; }
  .brand-name { font-size: 21px; }
  .header-status { padding: 8px 11px; font-size: 10px; }
  .hero { min-height: auto; padding: 62px 0 70px; }
  h1 { font-size: clamp(54px, 16vw, 82px); }
  .hero-text { font-size: 17px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-visual { min-height: 470px; }
  .visual-card-main { width: calc(100% - 20px); padding: 22px; }
  .floating-one { top: 30px; left: -2px; }
  .floating-two { right: -2px; bottom: 35px; }
  .orbit-one { width: 420px; height: 420px; }
  .orbit-two { width: 470px; height: 470px; }
  .features { grid-template-columns: 1fr; }
  .features article, .features article + article { padding: 30px 4px; border-left: 0; }
  .features article + article { border-top: 1px solid rgba(24,36,63,.10); }
  .site-footer { grid-template-columns: 1fr; padding: 32px 0; text-align: center; }
  .footer-brand, .site-footer > span:last-child { justify-self: center; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-visual { animation: rise .7s ease-out both; }
  .floating-one { animation: float-one 5s ease-in-out infinite; }
  .floating-two { animation: float-two 6s ease-in-out infinite; }
  @keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
  @keyframes float-one { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
  @keyframes float-two { 0%,100% { transform: translateY(0); } 50% { transform: translateY(9px); } }
}

/* Pricing + company information */
.pricing-preview,
.company-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 82px 0;
  border-bottom: 1px solid rgba(24,36,63,.10);
}
.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--signal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.pricing-preview h2,
.company-note h2,
.legal-page h1,
.legal-page h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  letter-spacing: -.04em;
}
.pricing-preview h2,
.company-note h2 { font-size: clamp(34px, 4vw, 54px); line-height: 1.05; }
.pricing-copy > p,
.company-note > p {
  max-width: 650px;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.75;
}
.pricing-card {
  padding: 34px;
  border: 1px solid rgba(47,107,255,.18);
  border-radius: 24px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 18px 55px rgba(18,38,75,.09);
}
.pricing-label {
  color: var(--signal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.price { display: flex; align-items: baseline; gap: 5px; margin: 14px 0 18px; }
.price-currency { color: var(--midnight); font-family: "Manrope", sans-serif; font-size: 28px; font-weight: 800; }
.price strong { color: var(--midnight); font-family: "Manrope", sans-serif; font-size: 68px; line-height: 1; letter-spacing: -.06em; }
.price-unit { color: var(--slate); font-weight: 600; }
.pricing-card p { margin: 0; color: var(--slate); line-height: 1.7; }
.availability-note {
  display: block;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #788399;
  font-size: 12px;
  line-height: 1.55;
}
.company-note > p { margin: 0; }

/* Expanded footer */
.site-footer-expanded {
  min-height: 180px;
  grid-template-columns: 1.15fr 1fr 1fr;
  align-items: start;
  padding: 42px 0;
}
.footer-brand-block { display: grid; gap: 10px; }
.footer-brand-block p { margin: 0; }
.footer-legal-name { max-width: 360px; line-height: 1.55; }
.footer-links,
.footer-meta { display: grid; gap: 10px; }
.footer-links a,
.footer-meta a { transition: color .2s ease; }
.footer-links a:hover,
.footer-meta a:hover { color: var(--signal); }
.footer-meta { justify-items: end; text-align: right; }

/* Legal/support pages */
.legal-shell { min-height: 100vh; }
.legal-page {
  width: min(880px, 100%);
  margin: 0 auto;
  padding: 76px 0 96px;
}
.legal-page .legal-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--signal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.legal-page h1 { font-size: clamp(44px, 7vw, 72px); line-height: 1; }
.legal-page .effective-date {
  margin: 18px 0 40px;
  color: #788399;
  font-size: 13px;
}
.legal-page .legal-intro {
  padding: 24px 26px;
  border: 1px solid rgba(47,107,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.70);
  color: #56627a;
  line-height: 1.75;
}
.legal-page section { margin-top: 44px; }
.legal-page h2 { margin-bottom: 14px; font-size: 25px; }
.legal-page h3 {
  margin: 24px 0 8px;
  color: var(--midnight);
  font-family: "Manrope", sans-serif;
  font-size: 17px;
}
.legal-page p,
.legal-page li { color: #56627a; font-size: 15px; line-height: 1.78; }
.legal-page ul { padding-left: 22px; }
.legal-page a { color: var(--signal); text-decoration: underline; text-decoration-color: rgba(47,107,255,.28); text-underline-offset: 3px; }
.legal-page strong { color: var(--midnight); }
.legal-callout {
  margin-top: 34px;
  padding: 22px 24px;
  border-left: 4px solid var(--teal);
  border-radius: 0 14px 14px 0;
  background: rgba(25,198,201,.07);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.contact-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.72);
}
.contact-card h2 { margin-top: 0; }

@media (max-width: 900px) {
  .pricing-preview,
  .company-note { grid-template-columns: 1fr; gap: 28px; padding: 60px 0; }
  .site-footer-expanded { grid-template-columns: 1fr 1fr; }
  .footer-meta { justify-items: start; text-align: left; }
}

@media (max-width: 720px) {
  .site-footer-expanded { grid-template-columns: 1fr; text-align: left; }
  .footer-brand, .site-footer-expanded > * { justify-self: start; }
  .footer-meta { justify-items: start; text-align: left; }
  .legal-page { padding: 52px 0 72px; }
  .contact-grid { grid-template-columns: 1fr; }
}
