:root {
  --navy: #071d31;
  --navy2: #102a43;
  --orange: #ff7900;
  --ink: #07192b;
  --muted: #65758a;
  --line: #dbe3ea;
  --soft: #f3f6f9;
  --white: #fff;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Montserrat, Arial, sans-serif;
  background: #fff;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.wrap { width: min(calc(100% - 40px), var(--max)); margin: auto; min-width: 0; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 100; background: #fff; padding: 12px 16px; }
.skip-link:focus { top: 12px; }

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(219,227,234,.8);
}
.nav { height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.logo { width: 230px; height: auto; }
.navlinks { display: flex; align-items: center; gap: 30px; font-weight: 700; font-size: 14px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 17px 24px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  border: 1px solid var(--navy);
  transition: .25s;
  cursor: pointer;
}
.button:hover, .button:focus-visible { background: var(--orange); border-color: var(--orange); transform: translateY(-2px); }
.button.light { background: transparent; color: var(--navy); }
.button.light:hover, .button.light:focus-visible { color: #fff; }
.button:disabled { opacity: .55; cursor: wait; transform: none; }

.eyebrow { display: flex; align-items: center; gap: 14px; font-size: 13px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 34px; height: 3px; background: var(--orange); flex: 0 0 34px; }
.hero { min-height: 760px; padding: 110px 0 80px; overflow: hidden; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; }
.hero h1, .section-title { font-weight: 300; letter-spacing: -.055em; line-height: .93; margin: 40px 0 28px; overflow-wrap: anywhere; }
.hero h1 { font-size: clamp(58px, 7vw, 104px); }
.accent { display: block; color: var(--orange); font-weight: 750; }
.lead { font-size: clamp(19px, 2vw, 25px); line-height: 1.55; color: var(--muted); max-width: 720px; }
.microcopy { color: var(--muted); font-size: 14px; line-height: 1.6; margin-top: 16px; max-width: 650px; }
.actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 34px; }
.hero-visual { aspect-ratio: 1; position: relative; display: grid; place-items: center; min-width: 0; }
.orbit { position: absolute; border: 1px solid #c4d2de; border-radius: 50%; inset: 4%; }
.orbit.two { inset: 19%; border-style: dashed; }
.core { width: 47%; aspect-ratio: 1; border-radius: 50%; background: linear-gradient(145deg,#eaf0f5,#dce6ee); display: grid; place-items: center; font-size: 64px; font-weight: 800; color: var(--navy); }
.float { position: absolute; background: #fff; box-shadow: 0 24px 60px rgba(7,29,49,.13); padding: 24px; min-width: 190px; }
.float b { display: block; font-size: 20px; margin-top: 8px; }
.float.one { left: 0; top: 22%; }
.float.two { right: 0; bottom: 15%; }
.spark { position: absolute; right: 14%; top: 16%; width: 38px; height: 38px; background: var(--orange); transform: rotate(45deg); animation: pulse 2.2s infinite; }
.marquee { max-width: 100%; background: var(--orange); color: #fff; overflow: hidden; white-space: nowrap; padding: 20px 0; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; contain: paint; }
.marquee-track { display: inline-flex; gap: 45px; animation: marquee 26s linear infinite; }

.section { padding: 120px 0; }
section[id] { scroll-margin-top: 88px; }
.section.compact { padding: 85px 0; }
.section.soft { background: var(--soft); }
.section.dark { background: var(--navy); color: #fff; }
.section-head { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; margin-bottom: 64px; min-width: 0; }
.section-title { font-size: clamp(48px, 6vw, 82px); margin: 0; max-width: 100%; }
.section-copy { font-size: 20px; line-height: 1.7; color: var(--muted); max-width: 100%; min-width: 0; }
.dark .section-copy { color: #aebdca; }

.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); min-width: 0; }
.card { min-width: 0; min-height: 430px; padding: 42px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; transition: .3s; background: #fff; }
.card:hover { background: var(--navy); color: #fff; transform: translateY(-8px); box-shadow: 0 24px 70px rgba(7,29,49,.14); }
.card .num { color: var(--orange); font-weight: 900; }
.card h3 { font-size: 32px; line-height: 1.1; font-weight: 400; margin: auto 0 22px; letter-spacing: -.03em; overflow-wrap: anywhere; }
.card p { font-size: 17px; line-height: 1.65; color: var(--muted); }
.card:hover p { color: #b8c4cf; }
.card-link { font-weight: 800; margin-top: 24px; }

.systems { width: 100%; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: #415267; min-width: 0; }
.system { width: 100%; min-width: 0; background: var(--navy); color: #fff; padding: 55px; min-height: 330px; }
.system h3 { font-size: 34px; margin: 30px 0 14px; overflow-wrap: anywhere; }
.system p { color: #b8c4cf; font-size: 18px; line-height: 1.65; }
.tag { display: inline-flex; padding: 9px 13px; border: 1px solid #496278; color: #fff; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }

.process { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; }
.step { padding-top: 24px; border-top: 3px solid var(--line); min-width: 0; }
.step strong { color: var(--orange); font-size: 14px; }
.step h3 { font-size: 25px; }
.step p { color: var(--muted); line-height: 1.6; }
.proof, .case-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.proof-item, .case { min-width: 0; padding: 34px; border: 1px solid var(--line); }
.proof-item b, .case b { display: block; font-size: 22px; margin-bottom: 12px; }
.proof-item p, .case p { margin: 0; color: var(--muted); line-height: 1.6; }
.case .tag { color: var(--orange); border-color: #ffd2a8; margin-bottom: 32px; }

.testimonial { border-left: 4px solid var(--orange); padding: 10px 0 10px 40px; max-width: 980px; }
.testimonial blockquote { margin: 0 0 24px; font-size: clamp(27px, 4vw, 48px); font-weight: 300; line-height: 1.25; letter-spacing: -.035em; }
.testimonial cite { color: var(--muted); font-style: normal; font-weight: 800; }

.product-preview { display: grid; grid-template-columns: .7fr 1.3fr; gap: 50px; align-items: center; }
.preview-window { min-width: 0; border: 1px solid #38506a; background: #091f35; box-shadow: 0 30px 80px rgba(0,0,0,.22); }
.preview-bar { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid #38506a; color: #b8c4cf; font-size: 12px; }
.preview-dots { display: flex; gap: 6px; }
.preview-dots i { width: 8px; height: 8px; border-radius: 50%; background: #58708a; }
.preview-body { display: grid; grid-template-columns: 130px 1fr; min-height: 330px; }
.preview-nav { padding: 24px 16px; border-right: 1px solid #38506a; display: grid; align-content: start; gap: 12px; }
.preview-nav span { height: 9px; background: #28425d; border-radius: 10px; }
.preview-nav span:first-child { background: var(--orange); width: 70%; }
.preview-content { padding: 26px; min-width: 0; }
.preview-title { width: 48%; height: 14px; background: #fff; border-radius: 10px; margin-bottom: 28px; }
.preview-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.preview-card { min-height: 90px; border: 1px solid #38506a; background: #102a43; padding: 14px; }
.preview-card::before, .preview-card::after { content: ""; display: block; height: 8px; border-radius: 8px; background: #496278; }
.preview-card::after { width: 65%; margin-top: 12px; background: #28425d; }
.preview-chart { height: 110px; border: 1px solid #38506a; margin-top: 18px; background: linear-gradient(150deg, transparent 47%, var(--orange) 48% 50%, transparent 51%); }
.preview-note { color: #aebdca; font-size: 13px; margin-top: 12px; }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 0; }
.faq summary { cursor: pointer; list-style: none; font-size: 22px; font-weight: 800; padding: 26px 46px 26px 0; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 8px; top: 22px; color: var(--orange); font-size: 30px; font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--muted); font-size: 18px; line-height: 1.7; margin: 0; padding: 0 46px 28px 0; max-width: 900px; }

.cta { padding: 110px 0; background: var(--orange); color: #fff; overflow: hidden; }
.cta-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: 70px; align-items: end; }
.cta h2 { max-width: 100%; font-size: clamp(55px, 7vw, 96px); font-weight: 300; line-height: .93; letter-spacing: -.055em; margin: 0; overflow-wrap: anywhere; }
.cta .button { background: #fff; color: var(--navy); border-color: #fff; max-width: 100%; }

.form-shell { display: grid; grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr); gap: 70px; }
.form-card { min-width: 0; background: #fff; border: 1px solid var(--line); padding: 44px; }
.progress { height: 4px; background: #e5ebf0; margin-bottom: 38px; }
.progress i { display: block; width: 25%; height: 100%; background: var(--orange); transition: .3s; }
.form-step { display: none; }
.form-step.active { display: block; }
.form-card h3 { font-size: 29px; margin: 0 0 28px; }
.choices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.choice { border: 1px solid var(--line); padding: 18px; cursor: pointer; font-weight: 700; line-height: 1.45; }
.choice:has(input:checked) { border-color: var(--orange); background: #fff7ef; }
.choice input { margin-right: 10px; }
.field { display: grid; gap: 8px; margin-bottom: 18px; }
.field label { font-size: 13px; font-weight: 800; }
.field input, .field textarea, .field select { width: 100%; padding: 16px; border: 1px solid var(--line); background: #fff; color: var(--ink); }
.field input:focus, .field textarea:focus, .field select:focus { outline: 3px solid rgba(255,121,0,.18); border-color: var(--orange); }
.field textarea { min-height: 130px; resize: vertical; }
.form-nav { display: flex; justify-content: space-between; gap: 14px; margin-top: 26px; }
.form-status { margin-top: 16px; font-weight: 700; line-height: 1.5; }
.form-status.success { color: #0b6b43; }
.form-note { color: var(--muted); font-size: 13px; line-height: 1.55; margin-top: 16px; }
.form-note a, .choice a { text-decoration: underline; text-underline-offset: 3px; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.footer { background: #051624; color: #fff; padding: 65px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; }
.footer .logo { filter: none; }
.footer p, .footer a { color: #aebdca; }
.footer a:hover, .footer a:focus-visible { color: #fff; }
.subhero { padding: 100px 0 75px; background: var(--soft); overflow: hidden; }
.subhero h1 { max-width: 100%; font-size: clamp(58px, 7vw, 96px); font-weight: 300; line-height: .94; letter-spacing: -.055em; margin: 35px 0; overflow-wrap: anywhere; }
.bullets { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 45px; }
.bullet { min-width: 0; padding: 22px; border-left: 3px solid var(--orange); background: #fff; font-weight: 700; }
.reveal { opacity: 0; transform: translateY(28px); transition: .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes pulse { 50% { transform: rotate(45deg) scale(1.25); } }

@media (max-width: 900px) {
  .navlinks a:not(.button) { display: none; }
  .hero { padding-top: 70px; min-height: auto; }
  .hero-grid, .section-head, .cta-grid, .form-shell, .product-preview { grid-template-columns: 1fr; }
  .hero-visual { max-width: 560px; }
  .cards, .proof, .case-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .systems { grid-template-columns: minmax(0, 1fr); }
  .section { padding: 85px 0; }
  .section-head { gap: 30px; }
  .footer-grid { grid-template-columns: 1fr; }
  .bullets { grid-template-columns: 1fr; }
  .product-preview { gap: 32px; }
}

@media (max-width: 560px) {
  .wrap { width: min(calc(100% - 28px), var(--max)); }
  .nav { height: 74px; gap: 10px; }
  section[id] { scroll-margin-top: 74px; }
  .logo { width: 164px; }
  .navlinks { gap: 0; flex: 0 1 auto; }
  .navlinks .button { padding: 13px 15px; font-size: 13px; text-align: left; }
  .hero h1 { font-size: 52px; }
  .hero-visual { display: none; }
  .subhero h1 { font-size: 54px; }
  .section-title { font-size: 44px; }
  .section-copy { font-size: 18px; }
  .section { padding: 72px 0; }
  .section.compact { padding: 62px 0; }
  .section-head { margin-bottom: 42px; }
  .card { width: 100%; min-height: 0; padding: 30px; }
  .card h3 { margin-top: 70px; font-size: 29px; }
  .system { width: 100%; padding: 32px 26px; min-height: 0; }
  .system h3 { font-size: 29px; }
  .process { grid-template-columns: 1fr; }
  .choices { grid-template-columns: 1fr; }
  .form-card { width: 100%; padding: 26px 20px; }
  .form-nav { flex-direction: column-reverse; }
  .form-nav .button { width: 100%; }
  .cta { padding: 72px 0; }
  .cta h2 { font-size: 47px; }
  .cta-grid { gap: 38px; }
  .cta .button { width: 100%; }
  .testimonial { padding-left: 22px; }
  .testimonial blockquote { font-size: 27px; }
  .preview-body { grid-template-columns: 74px 1fr; min-height: 280px; }
  .preview-nav { padding: 18px 10px; }
  .preview-content { padding: 18px 12px; }
  .preview-cards { grid-template-columns: 1fr; }
  .preview-card:nth-child(n+3) { display: none; }
  .faq summary { font-size: 19px; }
  .footer { padding: 52px 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
