:root {
  color-scheme: dark;
  --ink: #f7fbff;
  --muted: #a7bac9;
  --soft: #7f97aa;
  --line: rgba(181, 221, 235, 0.14);
  --line-bright: rgba(100, 224, 229, 0.31);
  --panel: rgba(10, 28, 43, 0.76);
  --accent: #59dee2;
  --accent-2: #57a7f0;
  --gold: #f1bd60;
  --deep: #05111b;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 280px;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 3%, rgba(54, 195, 211, 0.15), transparent 31rem),
    radial-gradient(circle at 92% 16%, rgba(45, 112, 185, 0.2), transparent 34rem),
    linear-gradient(152deg, var(--deep) 0%, #071a29 54%, #06131f 100%);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: #a9dfff; text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
a:hover { color: #dcf3ff; }
.skip-link { position: fixed; left: -9999px; top: 8px; z-index: 100; }
.skip-link:focus { left: 16px; padding: 10px 14px; border-radius: 10px; background: white; color: #07121d; }
.shell { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(4, 15, 25, 0.76);
  box-shadow: 0 12px 50px rgba(0,0,0,.16);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
}
.nav { min-height: 76px; display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: white; text-decoration: none; font-size: 1.05rem; font-weight: 740; letter-spacing: -0.025em; }
.brand img { width: 42px; height: 42px; object-fit: contain; filter: drop-shadow(0 8px 18px rgba(0,0,0,.34)); }
.nav-links { display: flex; align-items: center; gap: 27px; margin-left: auto; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: .92rem; font-weight: 570; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: white; }
.nav-cta { display: inline-flex; align-items: center; min-height: 41px; padding: 0 15px; border: 1px solid var(--line-bright); border-radius: 12px; color: white; background: rgba(67, 208, 217, .08); text-decoration: none; font-size: .88rem; font-weight: 720; }

.hero { display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); align-items: center; gap: clamp(28px, 6vw, 82px); min-height: min(825px, calc(100vh - 76px)); padding-top: clamp(66px, 8vw, 108px); padding-bottom: clamp(78px, 10vw, 126px); }
.hero-copy { position: relative; z-index: 2; }
.status-pill { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 32px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: #c4d2dd; background: rgba(255,255,255,.035); font-size: .76rem; font-weight: 660; letter-spacing: .03em; }
.status-pill span { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 15px var(--accent); }
.eyebrow { margin: 0 0 16px; color: var(--accent); font-size: .75rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; line-height: 1.08; letter-spacing: -.043em; }
h1 { margin-bottom: 25px; font-size: clamp(3.7rem, 7.4vw, 6.9rem); font-weight: 720; }
h1 span { color: transparent; background: linear-gradient(105deg, #d9ffff 0%, var(--accent) 45%, #78b9f3 100%); background-clip: text; -webkit-background-clip: text; }
h2 { margin-bottom: 21px; font-size: clamp(2.25rem, 4.5vw, 4.45rem); font-weight: 680; }
h3 { margin-bottom: 12px; font-size: 1.42rem; }
.lede { max-width: 650px; margin: 0; color: #b8c8d4; font-size: clamp(1.03rem, 1.6vw, 1.22rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 11px; padding: 0 19px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.055); color: white; text-decoration: none; font-size: .92rem; font-weight: 720; box-shadow: 0 11px 35px rgba(0,0,0,.14); }
.button.primary { border-color: rgba(116, 238, 239, .45); background: linear-gradient(120deg, #66e0dd, #5eb6ec); color: #04121a; box-shadow: 0 15px 40px rgba(43, 168, 191, .22); }
.button.quiet { background: rgba(255,255,255,.035); }
.hero-assurance { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 31px; color: #8499aa; font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hero-assurance span { position: relative; }
.hero-assurance span + span::before { content: ""; position: absolute; left: -12px; top: 50%; width: 3px; height: 3px; border-radius: 50%; background: #557084; }
.hero-visual { position: relative; min-height: 590px; display: grid; place-items: center; }
.visual-glow { position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%; background: rgba(42, 196, 212, .17); filter: blur(90px); }
.app-preview { position: relative; z-index: 1; width: min(100%, 610px); margin: 0; border: 1px solid rgba(117, 229, 235, .23); border-radius: 35px; overflow: hidden; transform: rotate(1.6deg); box-shadow: 0 55px 100px rgba(0,0,0,.47), 0 0 0 9px rgba(255,255,255,.018); }
.app-preview img { width: 100%; height: auto; }
.app-preview::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(255,255,255,.09), transparent 28%); pointer-events: none; }
.floating-note { position: absolute; z-index: 3; min-width: 190px; padding: 13px 16px; border: 1px solid var(--line-bright); border-radius: 14px; background: rgba(5, 21, 33, .83); box-shadow: 0 20px 45px rgba(0,0,0,.33); backdrop-filter: blur(16px); }
.floating-note span { display: block; color: var(--accent); font-size: .63rem; font-weight: 800; letter-spacing: .13em; }
.floating-note strong { display: block; margin-top: 3px; font-size: .86rem; }
.note-top { top: 5%; right: -2%; }
.note-bottom { bottom: 7%; left: -4%; }

.capability-bar { border-block: 1px solid var(--line); background: rgba(3, 16, 27, .46); }
.capability-list { min-height: 78px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 22px; padding-block: 20px; }
.capability-list span { color: #91a5b5; font-size: .73rem; font-weight: 760; letter-spacing: .1em; text-transform: uppercase; }

.intro { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(290px, .65fr); gap: 70px; align-items: end; padding-top: clamp(92px, 12vw, 150px); padding-bottom: clamp(70px, 9vw, 112px); }
.section-heading h2 { max-width: 780px; margin-bottom: 0; }
.section-copy { max-width: 500px; margin: 0 0 8px; color: var(--muted); font-size: 1.08rem; }

.media-story { display: grid; grid-template-columns: 1.12fr .88fr; min-height: 650px; padding-bottom: clamp(100px, 12vw, 155px); }
.story-image { min-height: 610px; margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 30px 0 0 30px; box-shadow: 0 30px 90px rgba(0,0,0,.28); }
.story-image img { width: 100%; height: 100%; object-fit: cover; }
.story-card { align-self: center; margin-left: -44px; padding: clamp(31px, 5vw, 54px); border: 1px solid var(--line-bright); border-radius: 28px; background: rgba(7, 27, 41, .92); box-shadow: 0 30px 80px rgba(0,0,0,.38); backdrop-filter: blur(20px); }
.story-card h2 { font-size: clamp(2rem, 3.7vw, 3.4rem); }
.story-card > p:not(.eyebrow) { color: var(--muted); }
.feature-list { margin: 32px 0 0; padding: 0; list-style: none; }
.feature-list li { display: grid; grid-template-columns: 35px 1fr; gap: 13px; padding: 17px 0; border-top: 1px solid var(--line); }
.feature-list li > span { padding-top: 3px; color: var(--accent); font-size: .68rem; font-weight: 800; }
.feature-list strong { display: block; }
.feature-list p { margin: 4px 0 0; color: var(--soft); font-size: .9rem; }

.evidence-section { position: relative; padding: clamp(90px, 11vw, 140px) 0; border-block: 1px solid var(--line); background: linear-gradient(160deg, rgba(13, 43, 60, .68), rgba(5, 18, 29, .7)); }
.evidence-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(50, 193, 202, .12), transparent 26rem); pointer-events: none; }
.section-heading.compact { position: relative; max-width: 760px; margin-bottom: 48px; }
.editorial-grid { position: relative; display: grid; grid-template-columns: 1.35fr .65fr; gap: 18px; }
.editorial-card { display: flex; min-height: 255px; flex-direction: column; justify-content: flex-end; padding: 29px; border: 1px solid var(--line); border-radius: 24px; background: rgba(5, 21, 33, .75); box-shadow: 0 22px 65px rgba(0,0,0,.2); }
.editorial-card-large { grid-row: span 2; padding: 0; overflow: hidden; }
.editorial-card-large figure { min-height: 340px; margin: 0; overflow: hidden; }
.editorial-card-large img { width: 100%; height: 100%; object-fit: cover; }
.editorial-card-large > div { padding: 30px; }
.editorial-card h3 { max-width: 450px; }
.editorial-card p { margin: 0; color: var(--muted); }
.card-kicker { display: block; margin-bottom: 10px; color: var(--accent); font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.icon-tile { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: auto; border: 1px solid var(--line-bright); border-radius: 15px; color: var(--accent); background: rgba(62, 210, 217, .07); font-size: 1.45rem; font-weight: 740; }
.icon-tile.gold { color: var(--gold); border-color: rgba(241,189,96,.35); background: rgba(241,189,96,.06); font-size: .77rem; letter-spacing: .04em; }

.workflow { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(46px, 7vw, 94px); align-items: center; padding-top: clamp(100px, 13vw, 165px); padding-bottom: clamp(100px, 13vw, 165px); }
.workflow-copy > p:not(.eyebrow) { max-width: 540px; color: var(--muted); }
.workflow-steps { margin: 36px 0 0; padding: 0; list-style: none; }
.workflow-steps li { display: grid; grid-template-columns: 46px 1fr; gap: 14px; padding: 20px 0; border-top: 1px solid var(--line); }
.workflow-steps li > span { color: var(--gold); font-size: .73rem; font-weight: 800; letter-spacing: .08em; }
.workflow-steps strong { display: block; font-size: 1.03rem; }
.workflow-steps p { margin: 4px 0 0; color: var(--soft); font-size: .91rem; }
.workflow-image { position: relative; min-height: 570px; margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 30px; box-shadow: 0 35px 90px rgba(0,0,0,.3); }
.workflow-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 65%, rgba(2,14,23,.44)); }
.workflow-image img { width: 100%; height: 100%; object-fit: cover; }

.tools-panel { display: grid; grid-template-columns: .7fr 1.3fr; gap: 65px; padding: clamp(40px, 6vw, 72px); border: 1px solid var(--line); border-radius: 30px; background: linear-gradient(135deg, rgba(14, 43, 59, .78), rgba(7, 24, 38, .92)); box-shadow: 0 25px 80px rgba(0,0,0,.2); }
.tools-panel h2 { margin-bottom: 0; font-size: clamp(2rem, 3.9vw, 3.6rem); }
.tool-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.tool-grid article { padding: 21px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.025); }
.tool-grid article > span { display: grid; width: 40px; height: 40px; place-items: center; margin-bottom: 28px; border-radius: 12px; color: var(--accent); background: rgba(89, 222, 226, .09); font-size: .87rem; font-weight: 800; }
.tool-grid h3 { font-size: 1.05rem; letter-spacing: -.02em; }
.tool-grid p { margin: 0; color: var(--soft); font-size: .85rem; }

.pilot-section { padding: clamp(100px, 13vw, 170px) 0; }
.pilot-card { position: relative; display: grid; grid-template-columns: 1.35fr .65fr; gap: 70px; align-items: end; padding: clamp(42px, 7vw, 80px); overflow: hidden; border: 1px solid var(--line-bright); border-radius: 34px; background: linear-gradient(128deg, #0b3545, #0a2438 58%, #10253c); box-shadow: 0 35px 100px rgba(0,0,0,.3); }
.pilot-card::after { content: ""; position: absolute; width: 370px; height: 370px; top: -210px; right: -80px; border: 1px solid rgba(89,222,226,.2); border-radius: 50%; box-shadow: 0 0 0 65px rgba(89,222,226,.025), 0 0 0 130px rgba(89,222,226,.018); }
.pilot-card > * { position: relative; z-index: 1; }
.pilot-card h2 { max-width: 730px; font-size: clamp(2.3rem, 4.4vw, 4.2rem); }
.pilot-card p:not(.eyebrow) { max-width: 650px; margin-bottom: 0; color: #acc0cd; }
.pilot-actions { display: flex; align-items: flex-start; flex-direction: column; gap: 20px; }
.text-link { color: #b9d3df; font-size: .86rem; font-weight: 680; text-decoration: none; }

.page-heading { padding: clamp(70px, 9vw, 105px) 0 42px; }
.page-heading h1 { max-width: 900px; margin-bottom: 0; font-size: clamp(3rem, 7vw, 5.8rem); }
.page-heading .lede { margin-top: 22px; }
.document { max-width: 920px; margin-bottom: 110px; padding: clamp(25px, 5vw, 60px); border: 1px solid var(--line); border-radius: 27px; background: rgba(10, 28, 43, .76); box-shadow: 0 24px 80px rgba(0,0,0,.22); backdrop-filter: blur(18px) saturate(130%); }
.document h2 { margin-top: 54px; font-size: clamp(1.55rem, 3vw, 2.2rem); }
.document h2:first-child { margin-top: 0; }
.document h3 { margin: 34px 0 10px; font-size: 1.2rem; }
.document p, .document li { color: #c0ced9; }
.document strong { color: white; }
.document ul { padding-left: 1.3rem; }
.document li + li { margin-top: 8px; }
.document table { width: 100%; margin: 18px 0; border-collapse: collapse; font-size: .94rem; }
.document th, .document td { padding: 13px 12px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.document th { color: white; background: rgba(255,255,255,.05); }
.notice { padding: 18px 20px; border-left: 3px solid var(--accent); border-radius: 10px; background: rgba(104,213,197,.08); }

.site-footer { border-top: 1px solid var(--line); color: var(--muted); background: rgba(3,13,22,.48); }
.footer-main { min-height: 170px; display: grid; grid-template-columns: auto 1fr auto; gap: 35px; align-items: center; }
.footer-brand img { width: 49px; height: 49px; }
.footer-main > p { margin: 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: .9rem; }
.footer-legal { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); color: #6f8798; font-size: .78rem; }
.footer-legal p { margin: 0; }
.footer-row { min-height: 120px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-row p { margin: 0; }

@media (max-width: 1000px) {
  .hero { grid-template-columns: .95fr 1.05fr; gap: 25px; }
  .hero-visual { min-height: 500px; }
  .floating-note { display: none; }
  .intro { gap: 40px; }
  .media-story { grid-template-columns: 1fr; }
  .story-image { min-height: 470px; border-radius: 26px; }
  .story-card { width: calc(100% - 40px); margin: -80px auto 0; }
  .workflow { grid-template-columns: 1fr; }
  .workflow-image { min-height: 480px; grid-row: 1; }
  .tools-panel { grid-template-columns: 1fr; }
  .pilot-card { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 780px) {
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .nav { min-height: 68px; gap: 13px; }
  .brand img { width: 38px; height: 38px; }
  .nav-desktop { display: none; }
  .nav-cta { margin-left: auto; min-height: 39px; padding-inline: 12px; font-size: .76rem; }
  .hero { display: flex; min-height: auto; flex-direction: column; align-items: stretch; gap: 50px; padding-top: 64px; }
  .hero-copy { max-width: 640px; }
  .hero-visual { min-height: auto; padding: 0 6px; }
  .app-preview { width: 100%; border-radius: 24px; transform: none; }
  .capability-list { justify-content: flex-start; }
  .intro { grid-template-columns: 1fr; gap: 25px; }
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-card-large { grid-row: auto; }
  .tool-grid { grid-template-columns: 1fr; }
  .tools-panel { gap: 35px; padding: 32px 24px; }
  .footer-main { grid-template-columns: 1fr; gap: 20px; padding-block: 38px; }
  .footer-legal { align-items: flex-start; flex-direction: column; padding-block: 24px; }
  .footer-row { align-items: flex-start; flex-direction: column; padding: 30px 0; }
  .document { border-radius: 18px; }
  .document table { display: block; overflow-x: auto; }
}

@media (max-width: 470px) {
  h1 { font-size: clamp(3.2rem, 17vw, 4.2rem); }
  .nav-cta { max-width: 126px; text-align: center; }
  .status-pill { align-items: flex-start; border-radius: 14px; line-height: 1.3; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-assurance { gap: 8px 15px; }
  .hero-assurance span + span::before { left: -9px; }
  .story-image { min-height: 340px; }
  .story-card { width: calc(100% - 18px); margin-top: -40px; padding: 25px 21px; }
  .editorial-card-large figure { min-height: 245px; }
  .workflow-image { min-height: 340px; }
  .pilot-card { padding: 32px 23px; }
}

@media (prefers-reduced-motion: no-preference) {
  .button, .nav-cta, .app-preview { transition: transform 180ms ease, color 180ms ease, border-color 180ms ease; }
  .button:hover, .nav-cta:hover { transform: translateY(-2px); }
  .app-preview:hover { transform: rotate(.4deg) translateY(-3px); }
}
