:root {
  --navy: #06183d;
  --navy-2: #0b2454;
  --orange: #ff5b22;
  --orange-deep: #f04b0d;
  --cream: #fff9ef;
  --ink: #08162f;
  --muted: #5d6880;
  --line: rgba(8, 22, 47, 0.14);
  --yellow: #ffd84b;
  --sky: #69cfff;
  --mint: #76e1bb;
  --lilac: #c8b7ff;
  --coral: #ff9c85;
  --white: #fff;
  --radius-lg: 34px;
  --radius-md: 24px;
  --shadow: 0 30px 80px rgba(6, 24, 61, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 1000; background: white; padding: 12px 16px; border-radius: 10px; }
.skip-link:focus { top: 16px; }

.section-shell { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }
.section-pad { padding-block: 120px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  height: 96px; padding: 0 max(24px, calc((100vw - 1240px) / 2));
  display: grid; grid-template-columns: 250px 1fr auto; align-items: center; gap: 30px;
  background: rgba(255, 249, 239, 0.9); backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent; transition: border-color .25s, box-shadow .25s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(6,24,61,.05); }
.brand { width: 230px; height: 70px; display: flex; align-items: center; }
.brand img { width: 230px; height: auto; }
.site-nav { display: flex; justify-content: center; gap: 26px; font-size: 13px; font-weight: 700; }
.site-nav a { position: relative; }
.site-nav a::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 2px; background: var(--orange); transform: scaleX(0); transition: transform .2s; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); }
.menu-toggle { display: none; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 16px; min-height: 58px; padding: 0 25px; border-radius: 999px; font-weight: 800; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--orange); box-shadow: 0 16px 34px rgba(255, 91, 34, .28); }
.button-primary:hover { background: var(--orange-deep); box-shadow: 0 20px 40px rgba(255, 91, 34, .34); }
.button-dark { background: var(--navy); color: white; }
.button-white { background: white; color: var(--navy); }
.button-small { min-height: 45px; padding-inline: 20px; font-size: 13px; }
.text-link { display: inline-flex; gap: 14px; align-items: center; font-weight: 800; border-bottom: 1px solid currentColor; padding-bottom: 5px; }
button.text-link { border: 0; background: none; cursor: pointer; color: inherit; font: inherit; }

.hero { min-height: calc(100vh - 96px); padding-block: 68px 86px; display: grid; grid-template-columns: .93fr 1.07fr; gap: 60px; align-items: center; }
.eyebrow, .section-label { text-transform: uppercase; letter-spacing: .17em; font-size: 12px; font-weight: 900; }
.eyebrow { display: flex; align-items: center; gap: 12px; color: var(--navy); }
.eyebrow span { width: 32px; height: 3px; background: var(--orange); }
.hero h1 { margin: 24px 0 28px; color: var(--navy); font-size: clamp(62px, 6.4vw, 104px); line-height: .92; letter-spacing: -.07em; max-width: 720px; }
.hero h1 em { color: var(--orange); font-family: Georgia, serif; font-weight: 400; }
.hero-lede { max-width: 590px; margin: 0; color: var(--muted); font-size: 20px; line-height: 1.62; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 38px; }
.hero-proof { display: flex; gap: 34px; margin-top: 52px; padding-top: 26px; border-top: 1px solid var(--line); max-width: 590px; }
.hero-proof div { display: grid; gap: 2px; }
.hero-proof strong { color: var(--navy); font-size: 28px; line-height: 1; }
.hero-proof span { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }

.hero-visual { position: relative; min-height: 620px; display: grid; place-items: center; }
.hero-visual::before { content: ""; position: absolute; inset: 6% 0 4% 4%; border-radius: 48% 52% 48% 52%; background: linear-gradient(135deg, var(--yellow), #ffb27a 48%, var(--orange)); transform: rotate(-5deg); }
.hero-orbit { position: absolute; border: 1px solid rgba(6,24,61,.18); border-radius: 50%; }
.orbit-one { width: 480px; height: 480px; top: 45px; right: 50px; }
.orbit-two { width: 330px; height: 330px; bottom: 14px; left: 12px; border-style: dashed; animation: spin 28s linear infinite; }
.signal-card { position: relative; z-index: 2; width: min(560px, 88%); padding: 28px; border-radius: 28px; background: var(--navy); color: white; box-shadow: 0 35px 90px rgba(6,24,61,.35); transform: rotate(2deg); }
.signal-topline, .signal-title-row, .signal-summary { display: flex; justify-content: space-between; align-items: center; }
.signal-topline { color: rgba(255,255,255,.6); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.live-pill { display: flex; align-items: center; gap: 8px; padding: 7px 10px; color: white; background: rgba(255,255,255,.1); border-radius: 999px; }
.live-pill i { width: 7px; height: 7px; border-radius: 50%; background: #69efad; box-shadow: 0 0 0 5px rgba(105,239,173,.12); }
.signal-title-row { margin-top: 30px; align-items: flex-end; }
.signal-title-row small { color: rgba(255,255,255,.56); text-transform: uppercase; letter-spacing: .12em; }
.signal-title-row h2 { margin: 8px 0 0; font-size: 28px; letter-spacing: -.03em; }
.pulse-score { display: grid; place-items: center; width: 62px; height: 62px; border-radius: 50%; border: 5px solid var(--orange); font-weight: 900; font-size: 20px; }
.chart { margin: 20px -4px 8px; }
.chart svg { width: 100%; overflow: visible; }
.chart-area { fill: url(#chartFill); }
.chart-line { fill: none; stroke: var(--orange); stroke-width: 5; stroke-linecap: round; }
.chart circle { fill: var(--yellow); stroke: var(--navy); stroke-width: 6; }
.signal-summary { border-top: 1px solid rgba(255,255,255,.12); padding-top: 18px; gap: 12px; }
.summary-icon { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 12px; background: rgba(255,91,34,.18); color: var(--orange); }
.signal-summary div { flex: 1; display: grid; gap: 3px; }
.signal-summary small { color: rgba(255,255,255,.55); }
.signal-summary b { color: #69efad; }
.floating-card { position: absolute; z-index: 3; border-radius: 20px; box-shadow: var(--shadow); }
.risk-card { top: 55px; right: -12px; width: 220px; padding: 22px; background: white; transform: rotate(3deg); }
.card-kicker { display: block; color: var(--orange); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .15em; margin-bottom: 13px; }
.risk-card strong { font-size: 17px; }
.risk-card p { color: var(--muted); font-size: 13px; line-height: 1.5; }
.card-action { font-size: 12px; font-weight: 900; }
.play-card { left: 10px; bottom: 35px; padding: 16px 18px; display: flex; align-items: center; gap: 12px; background: var(--mint); transform: rotate(-3deg); }
.play-card .spark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: var(--navy); color: var(--mint); }
.play-card div { display: grid; gap: 2px; }
.play-card small { text-transform: uppercase; letter-spacing: .08em; font-weight: 800; font-size: 9px; }
.play-card strong { font-size: 14px; }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--orange); }

.statement-band { overflow: hidden; padding: 23px 0; color: white; background: var(--orange); transform: rotate(-1.2deg) scale(1.02); }
.ticker { display: flex; width: max-content; align-items: center; gap: 28px; white-space: nowrap; font-size: clamp(26px, 3vw, 46px); letter-spacing: -.04em; animation: marquee 25s linear infinite; }
.ticker strong { font-family: Georgia, serif; font-style: italic; font-weight: 400; }
.ticker i { color: var(--yellow); }

.section-label { color: var(--orange); }
.section-label-light { color: var(--yellow); }
.intro { padding-top: 150px; }
.intro-grid { display: grid; grid-template-columns: 1.42fr .58fr; gap: 90px; margin-top: 38px; align-items: end; }
.display-title { margin: 0; max-width: 880px; color: var(--navy); font-size: clamp(48px, 5.4vw, 78px); line-height: 1.02; letter-spacing: -.055em; }
.display-title span { color: var(--orange); }
.intro-copy { color: var(--muted); font-size: 17px; line-height: 1.7; }
.intro-copy p + p { margin-top: 22px; }

.platform { background: white; }
.section-heading { display: grid; grid-template-columns: 1.5fr .5fr; gap: 90px; align-items: end; margin-bottom: 54px; }
.section-heading h2 { margin: 14px 0 0; color: var(--navy); font-size: clamp(42px, 4.5vw, 68px); line-height: 1; letter-spacing: -.05em; }
.section-heading > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.module-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.module-card { position: relative; overflow: hidden; min-height: 690px; padding: 42px; border-radius: var(--radius-lg); display: flex; flex-direction: column; }
.module-one { color: white; background: var(--navy); }
.module-two { color: var(--navy); background: var(--yellow); }
.module-number { position: absolute; top: 18px; right: 30px; font-size: 112px; line-height: 1; font-weight: 900; opacity: .08; }
.module-icon { display: grid; place-items: center; width: 68px; height: 68px; border-radius: 22px; background: rgba(255,255,255,.12); font-size: 34px; }
.module-two .module-icon { background: rgba(6,24,61,.09); }
.module-kicker { margin: 35px 0 12px; text-transform: uppercase; letter-spacing: .14em; font-size: 11px; font-weight: 900; opacity: .66; }
.module-card h3 { margin: 0; font-size: clamp(42px, 4.5vw, 66px); line-height: .98; letter-spacing: -.055em; }
.module-card > p:not(.module-kicker) { max-width: 530px; font-size: 17px; line-height: 1.65; opacity: .75; }
.module-card ul { list-style: none; padding: 0; margin: 24px 0 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.module-card li { padding: 13px 15px; border-radius: 13px; background: rgba(255,255,255,.09); font-size: 13px; font-weight: 700; }
.module-two li { background: rgba(6,24,61,.08); }
.module-card a { margin-top: auto; display: flex; justify-content: space-between; padding-top: 20px; border-top: 1px solid currentColor; font-weight: 900; }

.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.capability-card { min-height: 340px; padding: 28px; border-radius: var(--radius-md); display: flex; flex-direction: column; transition: transform .25s; }
.capability-card:hover { transform: translateY(-7px) rotate(-.5deg); }
.capability-card > span { margin-left: auto; font-size: 12px; font-weight: 900; opacity: .6; }
.glyph { margin-top: 28px; font-size: 50px; }
.capability-card h3 { margin: auto 0 10px; font-size: 27px; letter-spacing: -.035em; }
.capability-card p { margin: 0; font-size: 14px; line-height: 1.6; }
.card-coral { background: var(--coral); }.card-yellow { background: var(--yellow); }.card-sky { background: var(--sky); }
.card-mint { background: var(--mint); }.card-lilac { background: var(--lilac); }.card-orange { color: white; background: var(--orange); }

.workflow { color: white; background: var(--navy); }
.workflow-heading h2 { max-width: 900px; margin: 20px 0 70px; font-size: clamp(52px, 6vw, 82px); line-height: .98; letter-spacing: -.055em; }
.workflow-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.2); }
.workflow-grid article { min-height: 310px; padding: 25px 28px 25px 0; border-right: 1px solid rgba(255,255,255,.2); }
.workflow-grid article:not(:first-child) { padding-left: 28px; }
.workflow-grid article:last-child { border-right: 0; }
.workflow-grid span { color: var(--orange); font-size: 13px; font-weight: 900; }
.workflow-grid h3 { margin: 75px 0 14px; font-size: 30px; }
.workflow-grid p { color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.65; }

.role-switcher { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; box-shadow: 0 28px 70px rgba(6,24,61,.07); }
.role-tabs { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line); }
.role-tab { padding: 23px; border: 0; background: transparent; cursor: pointer; color: var(--muted); font-weight: 800; }
.role-tab + .role-tab { border-left: 1px solid var(--line); }
.role-tab.active { color: white; background: var(--orange); }
.role-panel { min-height: 430px; padding: 55px; display: grid; grid-template-columns: .95fr 1.05fr; gap: 70px; align-items: center; }
.role-eyebrow { color: var(--orange); text-transform: uppercase; letter-spacing: .13em; font-size: 11px; font-weight: 900; }
.role-panel h3 { margin: 18px 0; font-size: clamp(38px, 4vw, 58px); line-height: 1; letter-spacing: -.05em; }
.role-panel p { color: var(--muted); line-height: 1.7; }
.briefing-card { padding: 28px; border-radius: 24px; color: white; background: var(--navy); box-shadow: var(--shadow); }
.briefing-top { display: flex; justify-content: space-between; color: rgba(255,255,255,.5); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.briefing-card h4 { font-size: 24px; margin: 28px 0 24px; }
.briefing-item { display: grid; grid-template-columns: 10px 1fr auto; gap: 12px; align-items: center; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.13); font-size: 13px; }
.briefing-item i { width: 8px; height: 8px; border-radius: 50%; }.briefing-item i.orange { background: var(--orange); }.briefing-item i.blue { background: var(--sky); }.briefing-item i.green { background: var(--mint); }
.briefing-item b { font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }

.difference { background: white; }
.difference-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.difference-grid article { display: grid; grid-template-columns: 55px 1fr; gap: 8px 20px; min-height: 240px; padding: 38px 35px 38px 0; border-bottom: 1px solid var(--line); }
.difference-grid article:nth-child(odd) { border-right: 1px solid var(--line); }
.difference-grid article:nth-child(even) { padding-left: 35px; }
.difference-grid span { color: var(--orange); font-size: 12px; font-weight: 900; padding-top: 7px; }
.difference-grid h3 { margin: 0; font-size: 29px; letter-spacing: -.035em; }
.difference-grid p { grid-column: 2; margin: 6px 0 0; color: var(--muted); line-height: 1.65; }

.autonomy { display: grid; grid-template-columns: .78fr 1.22fr; gap: 100px; align-items: center; }
.autonomy-copy h2 { margin: 20px 0; font-size: clamp(50px, 5.2vw, 76px); line-height: .98; letter-spacing: -.06em; color: var(--navy); }
.autonomy-copy h2 em { color: var(--orange); font-family: Georgia, serif; font-weight: 400; }
.autonomy-copy p { color: var(--muted); line-height: 1.7; }
.autonomy-scale { position: relative; display: grid; gap: 13px; }
.scale-line { position: absolute; left: 26px; top: 35px; bottom: 35px; width: 2px; background: linear-gradient(var(--orange), var(--yellow), var(--mint), var(--sky)); }
.autonomy-scale article { position: relative; display: grid; grid-template-columns: 54px 1fr; align-items: center; gap: 20px; padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: white; }
.autonomy-scale article > span { z-index: 2; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; color: white; background: var(--navy); font-weight: 900; }
.autonomy-scale h3 { margin: 0 0 5px; }
.autonomy-scale p { margin: 0; color: var(--muted); font-size: 13px; }

.deployment { background: var(--orange); }
.deployment-inner { padding: 60px; border-radius: var(--radius-lg); background: var(--navy); color: white; display: grid; grid-template-columns: 1fr 1fr; gap: 40px 80px; align-items: end; }
.deployment-inner h2 { margin: 18px 0 0; font-size: clamp(42px, 4.5vw, 64px); line-height: 1; letter-spacing: -.05em; }
.deployment-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.deployment-options span { padding: 15px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; text-align: center; font-size: 12px; font-weight: 800; }
.deployment-inner > p { grid-column: 1 / -1; max-width: 760px; margin: 0; color: rgba(255,255,255,.65); line-height: 1.6; }

.pricing { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: center; }
.pricing-copy h2 { margin: 20px 0; font-size: clamp(54px, 5.5vw, 80px); line-height: .96; letter-spacing: -.06em; }
.pricing-copy p { max-width: 450px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.pricing-copy .text-link { margin-top: 20px; }
.price-card { padding: 48px; border-radius: var(--radius-lg); background: var(--yellow); box-shadow: var(--shadow); }
.price-pill { display: inline-flex; padding: 8px 13px; border-radius: 999px; color: white; background: var(--navy); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; }
.price { display: flex; align-items: flex-start; gap: 5px; margin: 30px 0 18px; }
.price sup { margin-top: 10px; font-size: 24px; font-weight: 900; }
.price strong { font-size: clamp(64px, 7vw, 94px); line-height: .8; letter-spacing: -.07em; }
.price span { margin: 8px 0 0 12px; color: rgba(8,22,47,.64); font-size: 12px; line-height: 1.45; }
.price-card > p { max-width: 560px; line-height: 1.6; }
.price-card ul { list-style: none; padding: 0; margin: 28px 0; display: grid; gap: 10px; }
.price-card li { position: relative; padding-left: 28px; font-size: 14px; }
.price-card li::before { content: "✓"; position: absolute; left: 0; font-weight: 900; }
.price-card .button { width: 100%; }

.final-cta { position: relative; overflow: hidden; padding-block: 135px; color: white; background: var(--orange); text-align: center; }
.final-cta .section-shell { position: relative; z-index: 2; }
.final-cta h2 { max-width: 980px; margin: 22px auto; font-size: clamp(58px, 7vw, 104px); line-height: .92; letter-spacing: -.065em; }
.final-cta p { font-size: 19px; opacity: .78; }
.final-cta .button { margin-top: 26px; }
.contact-actions { display: flex; flex-direction: column; align-items: center; gap: 17px; }
.contact-email { color: white; font-size: 14px; font-weight: 800; border-bottom: 1px solid rgba(255,255,255,.7); padding-bottom: 4px; }
.cta-orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.orb-a { width: 420px; height: 420px; left: -170px; top: -170px; border: 80px solid rgba(255,216,75,.35); }
.orb-b { width: 480px; height: 480px; right: -240px; bottom: -230px; border: 95px solid rgba(6,24,61,.12); }

.site-footer { padding: 48px max(24px, calc((100vw - 1240px) / 2)); display: grid; grid-template-columns: 240px 1fr 210px; gap: 30px; align-items: center; background: white; }
.footer-brand { width: 210px; height: 55px; overflow: hidden; display: flex; align-items: center; }
.footer-brand img { width: 210px; }
.footer-links { display: flex; justify-content: center; gap: 28px; font-size: 13px; font-weight: 800; }
.footer-contact { border: 0; padding: 0; background: none; cursor: pointer; color: inherit; font: inherit; font-weight: 800; }
.site-footer p { display: none; }
.footer-endorsement { justify-self: end; display: flex; align-items: center; gap: 12px; }
.footer-endorsement > span { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .13em; white-space: nowrap; }
.footer-endorsement a { display: block; width: 118px; }
.footer-endorsement img { width: 118px; height: auto; }
.footer-copy { grid-column: 1 / -1; justify-self: end; color: var(--muted); font-size: 11px; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 220px 1fr auto; }
  .site-nav { gap: 20px; }
  .hero { grid-template-columns: 1fr; padding-top: 72px; }
  .hero-copy { text-align: center; }
  .hero h1, .hero-lede, .hero-proof { margin-inline: auto; }
  .eyebrow, .hero-actions { justify-content: center; }
  .hero-visual { min-height: 660px; }
  .intro-grid, .section-heading { grid-template-columns: 1fr; gap: 32px; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow-grid article:nth-child(2) { border-right: 0; }
  .workflow-grid article:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.2); }
  .role-panel, .autonomy, .pricing { grid-template-columns: 1fr; gap: 55px; }
  .deployment-inner { grid-template-columns: 1fr; }
  .deployment-inner > p { grid-column: auto; }
}

@media (max-width: 760px) {
  .section-shell { width: min(100% - 28px, 620px); }
  .section-pad { padding-block: 82px; }
  .site-header { height: 82px; padding-inline: 14px; grid-template-columns: 185px 1fr auto; }
  .brand { width: 182px; height: 66px; }
  .brand img { width: 182px; }
  .header-cta { display: none; }
  .menu-toggle { grid-column: 3; display: grid; gap: 6px; width: 43px; height: 43px; place-content: center; border: 0; border-radius: 50%; background: var(--navy); cursor: pointer; }
  .menu-toggle > span:not(.sr-only) { width: 18px; height: 2px; background: white; transition: transform .2s; }
  .site-nav { position: absolute; top: 82px; left: 14px; right: 14px; display: none; padding: 18px; border-radius: 18px; background: white; box-shadow: var(--shadow); flex-direction: column; align-items: center; gap: 18px; }
  .site-nav.open { display: flex; }
  .hero { min-height: auto; padding-block: 60px 76px; gap: 30px; }
  .hero h1 { font-size: clamp(54px, 17vw, 82px); }
  .hero-lede { font-size: 17px; }
  .hero-actions { flex-direction: column; }
  .hero-proof { gap: 18px; justify-content: center; }
  .hero-proof strong { font-size: 23px; }
  .hero-visual { min-height: 520px; width: 100%; margin-left: 0; }
  .hero-visual::before { inset: 6% 0; }
  .signal-card { width: 94%; padding: 20px; }
  .signal-title-row h2 { font-size: 21px; }
  .risk-card { top: 22px; right: 0; width: 180px; padding: 16px; }
  .play-card { left: 0; bottom: 30px; }
  .ticker { font-size: 27px; }
  .intro { padding-top: 110px; }
  .display-title, .section-heading h2 { font-size: 44px; }
  .module-grid, .capability-grid { grid-template-columns: 1fr; }
  .module-card { min-height: 650px; padding: 28px; }
  .module-card h3 { font-size: 45px; }
  .workflow-heading h2 { font-size: 48px; }
  .workflow-grid { grid-template-columns: 1fr; }
  .workflow-grid article, .workflow-grid article:not(:first-child) { min-height: auto; padding: 28px 0; border-right: 0; border-top: 1px solid rgba(255,255,255,.2); }
  .workflow-grid h3 { margin-top: 35px; }
  .role-tabs { grid-template-columns: 1fr; }
  .role-tab + .role-tab { border-left: 0; border-top: 1px solid var(--line); }
  .role-panel { padding: 28px; }
  .difference-grid { grid-template-columns: 1fr; }
  .difference-grid article, .difference-grid article:nth-child(even) { padding: 30px 0; border-right: 0; }
  .autonomy-copy h2, .pricing-copy h2 { font-size: 53px; }
  .deployment-inner { padding: 30px 24px; }
  .deployment-options { grid-template-columns: 1fr; }
  .price-card { padding: 30px 24px; }
  .price strong { font-size: 63px; }
  .final-cta { padding-block: 95px; }
  .final-cta h2 { font-size: 56px; }
  .site-footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-links { flex-wrap: wrap; }
  .footer-endorsement { justify-self: center; }
  .footer-copy { grid-column: auto; justify-self: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Contact modal */
.contact-modal {
  position: fixed; inset: 0; z-index: 2000;
  display: grid; place-items: center; padding: 24px;
}
.contact-modal[hidden] { display: none; }
.contact-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(6, 24, 61, 0.62);
  backdrop-filter: blur(6px);
}
.contact-modal-dialog {
  position: relative; z-index: 1;
  width: min(520px, 100%);
  max-height: min(92vh, 820px);
  overflow-y: auto;
  padding: 40px 38px 34px;
  border-radius: var(--radius-md);
  background: var(--cream);
  box-shadow: 0 40px 100px rgba(6, 24, 61, 0.35);
  animation: modal-in .28s ease;
}
.contact-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px; border: 0; border-radius: 50%;
  background: white; color: var(--navy);
  font-size: 26px; line-height: 1; cursor: pointer;
  transition: background .2s, transform .2s;
}
.contact-modal-close:hover { background: var(--yellow); transform: scale(1.05); }
.contact-modal-header { margin-bottom: 28px; padding-right: 36px; }
.contact-modal-header h2 {
  margin: 12px 0 10px; color: var(--navy);
  font-size: clamp(32px, 5vw, 42px); line-height: 1.05; letter-spacing: -.04em;
}
.contact-modal-header p { margin: 0; color: var(--muted); line-height: 1.6; font-size: 15px; }
.contact-form { display: grid; gap: 16px; }
.contact-form-feedback {
  margin: 0; padding: 12px 14px; border-radius: 12px;
  background: rgba(118, 225, 187, 0.35); color: var(--navy);
  font-size: 14px; font-weight: 700; line-height: 1.5;
}
.contact-form-feedback.is-error { background: rgba(255, 91, 34, 0.12); color: var(--orange-deep); }
.contact-submit:disabled { opacity: 0.72; cursor: wait; transform: none; }
.contact-field { display: grid; gap: 8px; }
.contact-field span { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--navy); }
.contact-field em { font-style: normal; font-weight: 600; text-transform: none; letter-spacing: 0; color: var(--muted); }
.contact-field input,
.contact-field textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--line); border-radius: 14px;
  background: white; color: var(--ink);
  font: inherit; font-size: 15px;
  transition: border-color .2s, box-shadow .2s;
}
.contact-field input:focus,
.contact-field textarea:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 91, 34, 0.15);
}
.contact-field textarea { resize: vertical; min-height: 96px; }
.contact-submit { width: 100%; margin-top: 4px; border: 0; cursor: pointer; }
.contact-modal-note { margin: 20px 0 0; text-align: center; font-size: 13px; color: var(--muted); }
.contact-modal-note a { color: var(--navy); font-weight: 800; border-bottom: 1px solid currentColor; }
.contact-honey { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
body.modal-open { overflow: hidden; }
@keyframes modal-in {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
