@layer reset, base, components, sections, responsive;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body, h1, h2, h3, p, ul, ol, figure { margin: 0; }
  img, svg { display: block; max-width: 100%; }
  button, input { font: inherit; }
  a { color: inherit; text-decoration: none; }
}

@layer base {
  :root {
    --ink: #07142e;
    --ink-2: #0f2146;
    --blue: #3858a6;
    --cyan: #0097f4;
    --cyan-2: #42c8ff;
    --cloud: #f5f8fc;
    --mist: #e9f0f8;
    --muted: #65718a;
    --white: #ffffff;
    --green: #20b486;
    --amber: #f2a93b;
    --red: #e46f7b;
    --border: rgba(7, 20, 46, 0.1);
    --shadow: 0 24px 70px rgba(19, 48, 100, 0.13);
    --radius: 24px;
    --ease: cubic-bezier(.2,.8,.2,1);
  }
  body {
    min-width: 320px;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--white);
    font-family: "DM Sans", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  h1, h2, h3, .eyebrow, .stat-value, .nav-shell { font-family: "Manrope", sans-serif; }
  ::selection { color: var(--white); background: var(--cyan); }
  .skip-link { position: fixed; top: 12px; left: 12px; z-index: 1000; padding: 10px 16px; transform: translateY(-150%); border-radius: 10px; color: white; background: var(--ink); }
  .skip-link:focus { transform: translateY(0); }
  .page-noise { position: fixed; inset: 0; z-index: 999; pointer-events: none; opacity: .025; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E"); }
  .cursor-glow { position: fixed; z-index: -1; width: 500px; height: 500px; border-radius: 50%; pointer-events: none; opacity: .14; transform: translate(-50%, -50%); background: radial-gradient(circle, rgba(0,151,244,.46), transparent 68%); transition: opacity .3s; }
  .shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
  section { scroll-margin-top: 96px; }
  .eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--blue); font-size: .73rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
  .eyebrow::before { width: 22px; height: 2px; content: ""; background: currentColor; }
  .section-heading { max-width: 700px; }
  .section-heading.center { margin-inline: auto; text-align: center; }
  .section-heading.center .eyebrow { justify-content: center; }
  .section-heading h2 { margin-top: 18px; font-size: clamp(2.15rem, 4.2vw, 4rem); line-height: 1.06; letter-spacing: -.05em; }
  .section-heading p { margin-top: 20px; color: var(--muted); font-size: 1.08rem; }
  .gradient-text { color: transparent; background: linear-gradient(100deg, var(--blue), var(--cyan) 65%, var(--cyan-2)); background-clip: text; -webkit-background-clip: text; }
  [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
  [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
}


@layer components {
  .site-header { position: fixed; inset: 0 0 auto; z-index: 100; padding: 18px 0; transition: padding .35s var(--ease), background .35s, box-shadow .35s; }
  .site-header.is-scrolled { padding: 9px 0; border-bottom: 1px solid rgba(7,20,46,.07); background: rgba(255,255,255,.88); box-shadow: 0 8px 30px rgba(7,20,46,.06); backdrop-filter: blur(18px); }
  .nav-shell { display: flex; align-items: center; width: min(1240px, calc(100% - 40px)); min-height: 58px; margin-inline: auto; padding: 0 12px 0 18px; border: 1px solid rgba(255,255,255,.72); border-radius: 18px; background: rgba(255,255,255,.7); box-shadow: 0 10px 40px rgba(7,20,46,.06); backdrop-filter: blur(14px); }
  .is-scrolled .nav-shell { border-color: transparent; background: transparent; box-shadow: none; }
  .brand img { width: 174px; height: auto; }
  .desktop-nav { display: flex; gap: clamp(20px, 3vw, 38px); margin: 0 auto; }
  .desktop-nav a { position: relative; padding: 8px 0; color: #3e4c69; font-size: .87rem; font-weight: 700; }
  .desktop-nav a::after { position: absolute; right: 0; bottom: 2px; left: 0; height: 2px; content: ""; transform: scaleX(0); transform-origin: right; background: var(--cyan); transition: transform .3s var(--ease); }
  .desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
  .button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 54px; padding: 0 24px; border: 0; border-radius: 14px; font-family: "Manrope", sans-serif; font-size: .9rem; font-weight: 800; transition: transform .25s var(--ease), box-shadow .25s, background .25s; }
  .button:hover { transform: translateY(-3px); }
  .button-small { min-height: 44px; padding-inline: 18px; border-radius: 12px; font-size: .8rem; }
  .button-dark { color: var(--white); background: var(--ink); box-shadow: 0 10px 22px rgba(7,20,46,.2); }
  .button-dark:hover { background: var(--blue); }
  .button-primary { color: var(--white); background: linear-gradient(125deg, var(--blue), var(--cyan)); box-shadow: 0 16px 34px rgba(0,151,244,.3); }
  .button-primary:hover { box-shadow: 0 20px 44px rgba(0,151,244,.4); }
  .button-white { color: var(--ink); background: var(--white); box-shadow: 0 18px 36px rgba(0,0,0,.18); }
  .button-white:hover { box-shadow: 0 22px 46px rgba(0,0,0,.25); }
  .menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; background: var(--cloud); }
  .menu-toggle span { display: block; width: 18px; height: 2px; margin: 5px auto; background: var(--ink); transition: transform .3s, opacity .3s; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-nav { display: none; }
  .text-link { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); font-weight: 700; }
  .play-icon { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid var(--border); border-radius: 50%; color: var(--cyan); font-size: .58rem; transition: border .25s, transform .25s; }
  .text-link:hover .play-icon { transform: scale(1.08); border-color: var(--cyan); }
  .sr-only { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; clip-path: inset(50%); }
}

@layer sections {
  .hero { position: relative; min-height: 890px; padding: 160px 0 0; overflow: hidden; background: linear-gradient(180deg, #f9fcff 0%, #fff 78%); }
  .hero-grid { position: absolute; inset: 0 0 auto 50%; width: 760px; height: 720px; opacity: .4; transform: translateX(-15%); mask-image: linear-gradient(to bottom, black, transparent 85%); background-image: linear-gradient(rgba(56,88,166,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(56,88,166,.08) 1px, transparent 1px); background-size: 55px 55px; }
  .hero-aurora { position: absolute; border-radius: 50%; filter: blur(8px); pointer-events: none; }
  .hero-aurora-one { top: -220px; right: -100px; width: 620px; height: 620px; opacity: .25; background: radial-gradient(circle, #42c8ff, transparent 68%); }
  .hero-aurora-two { bottom: 70px; left: -320px; width: 600px; height: 450px; opacity: .16; background: radial-gradient(circle, #3858a6, transparent 68%); }
  .hero-layout { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; min-height: 610px; }
  .hero-copy { position: relative; z-index: 2; padding-bottom: 34px; }
  .hero-kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 24px; padding: 8px 12px; border: 1px solid rgba(56,88,166,.14); border-radius: 100px; color: var(--blue); background: rgba(255,255,255,.74); font-family: "Manrope", sans-serif; font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; backdrop-filter: blur(10px); }
  .live-dot { position: relative; width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(32,180,134,.1); }
  .hero-copy h1 { display: flex; flex-direction: column; gap: .42em; font-size: clamp(4rem, 7.3vw, 7.15rem); line-height: .9; letter-spacing: -.075em; }
  .hero-copy h1 .gradient-text { display: block; margin-top: 0; }
  .hero-lede { max-width: 595px; margin-top: 30px; color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.7; }
  .hero-actions { display: flex; align-items: center; gap: 27px; margin-top: 34px; }
  .hero-proof { display: flex; align-items: center; gap: 15px; margin-top: 36px; color: var(--muted); font-size: .79rem; line-height: 1.45; }
  .hero-proof strong { color: var(--ink); font-weight: 700; }
  .proof-avatars { display: flex; }
  .proof-avatars span { display: grid; width: 35px; height: 35px; margin-left: -7px; place-items: center; border: 3px solid white; border-radius: 50%; color: white; background: var(--blue); font-family: "Manrope", sans-serif; font-size: .58rem; font-weight: 800; }
  .proof-avatars span:first-child { margin-left: 0; background: var(--ink); }
  .proof-avatars span:last-child { background: var(--cyan); }
  .hero-visual { position: relative; z-index: 1; height: 610px; perspective: 1000px; transition: transform .25s ease-out; }
  .signal-stage { position: absolute; top: 50%; left: 52%; width: 470px; height: 470px; transform: translate(-50%, -50%); border: 1px solid rgba(0,151,244,.08); border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.95) 0 18%, rgba(230,246,255,.65) 19%, rgba(255,255,255,.2) 55%, transparent 70%); box-shadow: inset 0 0 70px rgba(0,151,244,.08), 0 40px 90px rgba(21,63,127,.1); }
  .signal-halo { position: absolute; inset: 50%; border: 1px solid rgba(0,151,244,.2); border-radius: 50%; transform: translate(-50%,-50%); }
  .halo-one { width: 148px; height: 148px; }
  .halo-two { width: 270px; height: 270px; border-style: dashed; animation: spin 30s linear infinite; }
  .halo-three { width: 390px; height: 390px; border-color: rgba(56,88,166,.12); }
  .signal-core { position: absolute; top: 50%; left: 50%; display: grid; z-index: 4; width: 94px; height: 94px; place-content: center; transform: translate(-50%,-50%); border: 1px solid rgba(255,255,255,.75); border-radius: 30px; background: rgba(255,255,255,.92); box-shadow: 0 20px 60px rgba(0,151,244,.2), inset 0 0 0 7px rgba(0,151,244,.05); backdrop-filter: blur(12px); }
  .signal-core img { width: 38px; margin: auto; }
  .signal-core span { margin-top: 5px; color: var(--cyan); font-size: .48rem; font-weight: 800; letter-spacing: .18em; text-align: center; }
  .scan-line { position: absolute; z-index: 3; top: 50%; left: 50%; width: 185px; height: 1px; transform-origin: 0 50%; background: linear-gradient(90deg, var(--cyan), transparent); animation: scan 5s linear infinite; }
  .scan-line::after { position: absolute; top: -3px; left: 82px; width: 7px; height: 7px; content: ""; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 15px var(--cyan); }
  .orbit { position: absolute; top: 50%; left: 50%; border: 1px solid transparent; border-radius: 50%; transform: translate(-50%,-50%); }
  .orbit-one { width: 270px; height: 270px; animation: spin 11s linear infinite; }
  .orbit-two { width: 390px; height: 390px; animation: spin-reverse 17s linear infinite; }
  .orbit-dot { position: absolute; top: 50%; right: -5px; width: 10px; height: 10px; border: 2px solid white; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 6px rgba(0,151,244,.12); }
  .orbit-two .orbit-dot { top: 8%; right: 20%; background: var(--blue); }
  .data-chip { position: absolute; z-index: 5; display: flex; align-items: center; gap: 11px; padding: 12px 16px 12px 12px; border: 1px solid rgba(255,255,255,.9); border-radius: 15px; background: rgba(255,255,255,.84); box-shadow: 0 16px 40px rgba(21,63,127,.14); backdrop-filter: blur(14px); animation: float 5s ease-in-out infinite; }
  .data-chip .chip-icon { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 10px; color: var(--blue); background: #edf2ff; font-weight: 800; }
  .data-chip small { display: block; color: #8490a8; font-size: .48rem; font-weight: 800; letter-spacing: .13em; }
  .data-chip strong { display: block; color: var(--ink); font-family: "Manrope", sans-serif; font-size: .72rem; white-space: nowrap; }
  .chip-one { top: 68px; left: -25px; }
  .chip-two { top: 126px; right: -52px; animation-delay: -1.7s; }
  .chip-three { bottom: 105px; left: -43px; animation-delay: -3s; }
  .event-card { position: absolute; right: -38px; bottom: 38px; z-index: 5; width: 210px; padding: 16px; border: 1px solid rgba(255,255,255,.85); border-radius: 19px; background: rgba(7,20,46,.93); box-shadow: 0 22px 45px rgba(7,20,46,.25); transform: rotate(-2deg); color: white; backdrop-filter: blur(16px); }
  .event-card-top, .event-meta { display: flex; align-items: center; justify-content: space-between; font-size: .62rem; }
  .event-card-top { font-weight: 700; }
  .status-pill { padding: 3px 7px; border-radius: 10px; color: #7ff7d2; background: rgba(32,180,134,.15); font-size: .5rem; text-transform: uppercase; }
  .pulse-chart { display: flex; align-items: end; gap: 5px; height: 65px; margin: 15px 0 12px; padding: 8px 5px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .pulse-chart i { flex: 1; height: var(--h); border-radius: 3px 3px 0 0; background: linear-gradient(to top, var(--blue), var(--cyan-2)); transform-origin: bottom; animation: chart-pulse 2.8s ease-in-out infinite alternate; }
  .pulse-chart i:nth-child(even) { animation-delay: -.8s; }
  .event-meta { color: #8e9ab1; }
  .event-meta strong { color: white; }
  .metric-rail { position: relative; z-index: 5; display: grid; grid-template-columns: repeat(4,1fr); margin-top: 30px; border: 1px solid var(--border); border-radius: 22px; background: rgba(255,255,255,.88); box-shadow: 0 18px 60px rgba(31,63,112,.07); }
  .metric { display: flex; align-items: center; gap: 14px; padding: 23px 28px; border-right: 1px solid var(--border); }
  .metric:last-child { border: 0; }
  .metric-value { color: var(--blue); font-size: 2.15rem; font-weight: 800; line-height: 1; }
  .metric span:last-child { color: var(--muted); font-size: .72rem; font-weight: 600; line-height: 1.35; text-transform: uppercase; letter-spacing: .06em; }
  .marquee-section { overflow: hidden; padding: 20px 0; color: white; background: var(--ink); transform: rotate(-1deg) scale(1.02); }
  .marquee-track { display: flex; width: max-content; align-items: center; gap: 30px; animation: marquee 28s linear infinite; font-family: "Manrope", sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
  .marquee-track i { width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
  .section-pad { padding: 140px 0; }
  .advantage { position: relative; padding-top: 170px; }
  .lifecycle-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 68px; }
  .lifecycle-card { position: relative; display: flex; min-height: 570px; overflow: hidden; flex-direction: column; padding: 30px; border: 1px solid var(--border); border-radius: 28px; background: linear-gradient(150deg, #fff, #f7fbff); box-shadow: 0 16px 50px rgba(31,63,112,.06); transition: transform .45s var(--ease), box-shadow .45s, border-color .45s; }
  .lifecycle-card::before { position: absolute; inset: 0; content: ""; opacity: 0; background: radial-gradient(circle at 70% 20%, rgba(0,151,244,.13), transparent 38%); transition: opacity .45s; }
  .lifecycle-card:hover { transform: translateY(-10px); border-color: rgba(0,151,244,.25); box-shadow: 0 28px 70px rgba(31,63,112,.12); }
  .lifecycle-card:hover::before { opacity: 1; }
  .card-number { position: absolute; top: 26px; right: 28px; color: #ccd4e3; font-family: "Manrope", sans-serif; font-size: .72rem; font-weight: 800; }
  .card-icon { position: relative; width: 106px; height: 106px; margin: 24px 0 48px; border: 1px solid rgba(0,151,244,.12); border-radius: 32px; background: linear-gradient(145deg, #ecf8ff, white); box-shadow: 0 16px 35px rgba(0,151,244,.1); }
  .icon-radar span { position: absolute; inset: 23px; border: 1px dashed var(--cyan); border-radius: 50%; animation: spin-local 9s linear infinite; }
  .icon-radar span::after { position: absolute; top: 0; right: 7px; width: 8px; height: 8px; content: ""; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px rgba(56,88,166,.1); }
  .icon-radar i { position: absolute; inset: 43px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 10px rgba(0,151,244,.1), 0 0 25px rgba(0,151,244,.4); }
  .icon-nodes svg { position: absolute; inset: 17px; width: 72px; height: 72px; overflow: visible; filter: drop-shadow(0 5px 8px rgba(56,88,166,.14)); }
  .icon-nodes path { fill: none; stroke: var(--cyan); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
  .icon-nodes circle { stroke: white; stroke-width: 5; }
  .icon-nodes .node-primary { fill: var(--blue); }
  .icon-nodes .node-accent { fill: var(--cyan); }
  .icon-gate i { position: absolute; top: 22px; bottom: 22px; width: 12px; border-radius: 5px; background: var(--blue); }.icon-gate i:first-child { left: 25px; }.icon-gate i:last-child { right: 25px; }
  .icon-gate span { position: absolute; top: 48px; left: 39px; width: 27px; height: 2px; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); animation: gate-pulse 1.5s ease-in-out infinite; }
  .card-copy { position: relative; z-index: 1; }
  .card-tag { color: var(--cyan); font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
  .card-copy h3 { margin: 9px 0 15px; font-size: 1.85rem; letter-spacing: -.04em; }
  .card-copy p { color: var(--muted); font-size: .94rem; }
  .mini-ui, .channel-stack, .coming-badge { position: relative; z-index: 1; margin-top: auto; }
  .mini-ui { padding: 17px; border: 1px solid var(--border); border-radius: 16px; background: white; box-shadow: 0 12px 30px rgba(31,63,112,.08); }
  .mini-ui > div:first-child { display: flex; justify-content: space-between; font-size: .68rem; }.mini-ui strong { color: var(--blue); }.mini-ui small { color: var(--muted); font-size: .58rem; }.mini-ui small b { display: inline-block; width: 6px; height: 6px; margin-right: 6px; border-radius: 50%; background: var(--green); }
  .progress { height: 5px; margin: 12px 0; overflow: hidden; border-radius: 10px; background: var(--mist); }.progress i { display: block; width: 86%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--blue), var(--cyan)); }
  .channel-stack { display: grid; gap: 8px; }
  .channel-stack span { display: flex; justify-content: space-between; padding: 12px 15px; border: 1px solid var(--border); border-radius: 12px; color: var(--ink); background: rgba(255,255,255,.9); font-size: .68rem; font-weight: 700; box-shadow: 0 8px 20px rgba(31,63,112,.05); }.channel-stack span:nth-child(2) { margin-inline: 10px; }.channel-stack b { color: var(--green); font-size: .58rem; }
  .coming-badge { align-self: flex-start; display: flex; align-items: center; gap: 9px; padding: 11px 14px; border: 1px solid rgba(56,88,166,.14); border-radius: 100px; color: var(--blue); background: white; font-size: .68rem; font-weight: 800; }
  .pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 0 rgba(0,151,244,.4); animation: pulse 2s infinite; }
  .coverage { color: white; background: var(--ink); }
  .coverage-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
  .coverage-copy h2 { margin-top: 18px; font-size: clamp(2.4rem, 4vw, 4rem); line-height: 1.08; letter-spacing: -.05em; }.coverage-copy > p { margin-top: 23px; color: #9eabc3; }
  .coverage .eyebrow { color: var(--cyan-2); }
  .coverage-legend { display: flex; gap: 20px; margin-top: 36px; color: #b6c1d6; font-size: .69rem; }.coverage-legend span { display: flex; align-items: center; gap: 8px; }.coverage-legend i { width: 16px; height: 5px; border-radius: 5px; }.legend-simple { background: var(--cyan); }.legend-market { background: #42506b; }
  .annotation { display: flex; gap: 12px; margin-top: 32px; padding: 15px; border: 1px solid rgba(255,255,255,.08); border-radius: 14px; background: rgba(255,255,255,.035); }.annotation > span { display: grid; flex: 0 0 22px; width: 22px; height: 22px; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: var(--cyan-2); font-family: serif; font-size: .7rem; }.annotation p { color: #7f8da7; font-size: .64rem; line-height: 1.55; }
  .coverage-chart { padding: 34px; border: 1px solid rgba(255,255,255,.09); border-radius: 25px; background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); box-shadow: 0 25px 60px rgba(0,0,0,.2); }
  .chart-head { display: flex; justify-content: space-between; margin-bottom: 32px; color: #7e8ca5; font-size: .58rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
  .bar-group { position: relative; margin: 0 0 31px; }.bar-group:last-child { margin-bottom: 0; }.bar-label { display: flex; justify-content: space-between; margin-bottom: 10px; }.bar-label strong { font-size: .82rem; }.bar-label span { color: var(--cyan-2); font-family: "Manrope", sans-serif; font-size: .76rem; font-weight: 800; }.bar-label span::after { content: "%"; color: #687794; font-size: .55rem; }
  .bar-track { position: relative; height: 10px; overflow: visible; border-radius: 10px; background: #172743; }.bar-track i { position: absolute; left: 0; display: block; width: 0; border-radius: 10px; transition: width 1.2s var(--ease); }.bar-market { top: 3px; height: 4px; background: #46556f; }.bar-simple { top: 0; height: 10px; max-width: var(--value); background: linear-gradient(90deg, var(--blue), var(--cyan)); box-shadow: 0 0 18px rgba(0,151,244,.25); }.coverage-chart.is-visible .bar-track i { width: var(--value); }.bar-group small { display: block; margin-top: 7px; color: #66748d; font-size: .55rem; text-align: right; }
  .comparison { background: var(--cloud); }
  .comparison-top { display: flex; justify-content: space-between; align-items: end; gap: 40px; }.comparison-top .section-heading p { max-width: 600px; }
  .table-key { display: grid; flex: 0 0 auto; grid-template-columns: 1fr 1fr; gap: 9px 16px; padding: 16px 18px; border: 1px solid var(--border); border-radius: 16px; color: var(--muted); background: white; font-size: .62rem; }.table-key span { display: flex; align-items: center; gap: 7px; }.key-dot { display: grid; width: 18px; height: 18px; place-items: center; border-radius: 6px; font-style: normal; font-size: .57rem; font-weight: 800; }.key-yes { color: var(--green); background: rgba(32,180,134,.1); }.key-partial { color: var(--amber); background: rgba(242,169,59,.12); }.key-soon { color: var(--cyan); background: rgba(0,151,244,.1); }.key-no { color: #9aa5b8; background: #eef1f5; }
  .filter-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 42px; }.filter-button { padding: 10px 16px; border: 1px solid var(--border); border-radius: 100px; color: var(--muted); background: white; font-size: .7rem; font-weight: 700; cursor: pointer; transition: color .25s, border .25s, background .25s, transform .25s; }.filter-button:hover { transform: translateY(-2px); border-color: var(--cyan); color: var(--blue); }.filter-button.is-active { border-color: var(--ink); color: white; background: var(--ink); }
  .table-shell { position: relative; margin-top: 18px; overflow-x: auto; border: 1px solid var(--border); border-radius: 22px; background: white; box-shadow: 0 20px 55px rgba(31,63,112,.08); scrollbar-color: var(--blue) var(--mist); }
  .swipe-hint { display: none; }
  .comparison-table { width: 100%; min-width: 1130px; border-collapse: separate; border-spacing: 0; font-size: .7rem; }
  .comparison-table th, .comparison-table td { min-width: 86px; height: 62px; padding: 10px; border-right: 1px solid #edf1f6; border-bottom: 1px solid #edf1f6; text-align: center; }.comparison-table th:first-child, .comparison-table td:first-child { position: sticky; left: 0; z-index: 3; min-width: 210px; padding-left: 22px; text-align: left; }.comparison-table thead th { position: sticky; top: 0; z-index: 2; height: 72px; color: #63708a; background: #f9fbfd; font-family: "Manrope", sans-serif; font-size: .61rem; letter-spacing: -.01em; }.comparison-table thead th:first-child { z-index: 5; }.comparison-table tbody th { color: #33415d; background: white; font-size: .69rem; font-weight: 700; }.comparison-table tbody tr:last-child th, .comparison-table tbody tr:last-child td { border-bottom: 0; }.comparison-table th:last-child, .comparison-table td:last-child { border-right: 0; }
  .comparison-table .featured-column { min-width: 104px; color: var(--blue); background: #eff8ff; box-shadow: inset 1px 0 rgba(0,151,244,.15), inset -1px 0 rgba(0,151,244,.15); }.comparison-table thead .featured-column { background: linear-gradient(180deg, #e2f5ff, #eff8ff); }.comparison-table thead .featured-column::before { display: block; width: max-content; margin: 0 auto 4px; padding: 2px 6px; border-radius: 7px; content: "OUR PICK"; color: white; background: var(--cyan); font-size: .42rem; letter-spacing: .08em; }
  .comparison-table tr.row-hidden { display: none; }
  .status { display: inline-flex; min-width: 28px; min-height: 28px; align-items: center; justify-content: center; border-radius: 9px; font-size: .68rem; font-weight: 800; }.status.yes { color: var(--green); background: rgba(32,180,134,.1); }.status.partial { color: var(--amber); background: rgba(242,169,59,.12); }.status.soon { color: var(--cyan); background: rgba(0,151,244,.1); }.status.no { color: #9aa5b8; background: #f0f3f7; }.status-detail { display: block; margin-top: 4px; color: #7d899e; font-size: .48rem; font-weight: 600; white-space: nowrap; }.featured-column .status { box-shadow: 0 5px 12px rgba(0,151,244,.12); background-color: white; }
  .table-note { margin: 15px 4px 0; color: #8a95a9; font-size: .62rem; }
  .investment-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: center; }.investment-copy h2 { margin-top: 18px; font-size: clamp(2.35rem, 4vw, 4rem); line-height: 1.08; letter-spacing: -.05em; }.investment-copy > p { margin-top: 22px; color: var(--muted); }.price-callout { margin-top: 34px; padding-left: 18px; border-left: 3px solid var(--cyan); }.price-callout small, .price-callout span { display: block; color: var(--muted); font-size: .63rem; text-transform: uppercase; letter-spacing: .08em; }.price-callout strong { display: block; margin: 3px 0; color: var(--blue); font-family: "Manrope",sans-serif; font-size: 2.25rem; letter-spacing: -.04em; }.investment-copy .fine-print { color: #9da6b7; font-size: .62rem; line-height: 1.45; }
  .price-panel { padding: 30px; border: 1px solid var(--border); border-radius: 26px; background: linear-gradient(145deg,#fff,#f7fbff); box-shadow: var(--shadow); }.price-panel-head { display: flex; justify-content: space-between; align-items: start; padding-bottom: 22px; border-bottom: 1px solid var(--border); }.price-panel-head span { color: var(--muted); font-size: .57rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }.price-panel-head strong { display: block; color: var(--ink); font-family: "Manrope",sans-serif; font-size: .95rem; }
  .price-bars { display: grid; gap: 13px; margin-top: 24px; }.price-row { display: grid; grid-template-columns: 95px 1fr 52px; align-items: center; gap: 10px; color: #6c7890; font-size: .64rem; }.price-row > div { height: 7px; overflow: hidden; border-radius: 8px; background: #e9eef5; }.price-row i { display: block; width: 0; height: 100%; border-radius: inherit; background: #aeb9c9; transition: width 1.1s var(--ease); }.price-panel.is-visible .price-row i { width: var(--value); }.price-row strong { color: #67748b; font-size: .66rem; text-align: right; }.price-row.is-featured { color: var(--blue); font-weight: 800; }.price-row.is-featured i { background: linear-gradient(90deg,var(--blue),var(--cyan)); box-shadow: 0 0 12px rgba(0,151,244,.25); }.price-row.is-featured strong { color: var(--cyan); }
  .onboarding-strip { display: grid; grid-template-columns: 1fr auto; align-items: center; margin-top: 25px; padding: 15px 17px; border: 1px solid rgba(0,151,244,.12); border-radius: 14px; background: #edf8ff; }.onboarding-strip span { color: var(--blue); font-size: .67rem; font-weight: 700; }.onboarding-strip span i { display: inline-grid; width: 20px; height: 20px; margin-right: 7px; place-items: center; border-radius: 6px; color: white; background: var(--cyan); font-style: normal; }.onboarding-strip strong { color: var(--ink); font-family: "Manrope",sans-serif; font-size: 1.1rem; }.onboarding-strip small { grid-column: 1 / -1; margin: 5px 0 0 28px; color: #8490a5; font-size: .53rem; }
  .deploy-section { padding: 30px 0 120px; }.deploy-card { display: grid; grid-template-columns: .75fr 1.25fr; min-height: 475px; overflow: hidden; border-radius: 32px; color: white; background: linear-gradient(130deg,#0c1e42,#172f61); box-shadow: 0 35px 80px rgba(7,20,46,.25); }.deploy-art { position: relative; min-height: 475px; overflow: hidden; background: radial-gradient(circle at 45% 50%,rgba(0,151,244,.3),transparent 45%); }.deploy-art::before { position: absolute; inset: 0; content: ""; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.12) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.12) 1px,transparent 1px); background-size: 45px 45px; mask-image: radial-gradient(circle,black,transparent 70%); }.deploy-ring { position: absolute; top: 50%; left: 45%; width: 290px; height: 290px; transform: translate(-50%,-50%); border: 1px dashed rgba(66,200,255,.5); border-radius: 50%; animation: spin 22s linear infinite; }.deploy-ring::after { position: absolute; inset: 42px; content: ""; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; }.deploy-core { position: absolute; top: 50%; left: 45%; display: grid; width: 88px; height: 88px; place-items: center; transform: translate(-50%,-50%); border-radius: 26px; background: white; box-shadow: 0 0 0 14px rgba(255,255,255,.07),0 20px 45px rgba(0,0,0,.25); }.deploy-core img { width: 40px; }.deploy-node { position: absolute; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: white; background: rgba(7,20,46,.8); font-size: .55rem; font-weight: 800; box-shadow: 0 10px 25px rgba(0,0,0,.2); }.n1 { top: 92px; left: 18%; }.n2 { top: 180px; right: 11%; }.n3 { bottom: 72px; left: 31%; }
  .deploy-copy { display: flex; flex-direction: column; justify-content: center; padding: 60px 70px 60px 20px; }.deploy-copy .eyebrow { color: var(--cyan-2); }.deploy-copy h2 { max-width: 680px; margin-top: 17px; font-size: clamp(2.2rem,3.4vw,3.5rem); line-height: 1.1; letter-spacing: -.05em; }.deploy-copy > p { max-width: 650px; margin-top: 20px; color: #aebad0; }.deploy-list { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 31px; }.deploy-list span { color: #d4dbea; font-size: .69rem; font-weight: 600; }.deploy-list i { display: inline-grid; width: 20px; height: 20px; margin-right: 6px; place-items: center; border-radius: 50%; color: #8dffe0; background: rgba(32,180,134,.15); font-style: normal; font-size: .58rem; }
  .closing { padding-top: 20px; }.closing-card { position: relative; min-height: 500px; overflow: hidden; border-radius: 34px; color: white; background: linear-gradient(135deg,var(--blue),#134c9b 45%,var(--cyan)); box-shadow: 0 35px 90px rgba(0,101,190,.25); }.closing-card::after { position: absolute; inset: 0; content: ""; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.25) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.25) 1px,transparent 1px); background-size: 54px 54px; mask-image: radial-gradient(circle at center,black,transparent 75%); }.closing-content { position: relative; z-index: 2; display: flex; min-height: 500px; flex-direction: column; align-items: center; justify-content: center; padding: 70px 30px; text-align: center; }.closing .eyebrow { color: #cbf1ff; }.closing-content h2 { margin-top: 18px; font-size: clamp(2.6rem,5vw,5rem); line-height: 1.03; letter-spacing: -.06em; }.closing-content h2 span { color: #bdeaff; }.closing-content p { max-width: 660px; margin-top: 22px; color: rgba(255,255,255,.74); font-size: 1.02rem; }.closing-actions { display: flex; align-items: center; gap: 27px; margin-top: 34px; }.closing-link { display: flex; gap: 8px; align-items: center; font-size: .76rem; font-weight: 700; }.closing-link span { transition: transform .25s; }.closing-link:hover span { transform: translateY(-3px); }.closing-orbit { position: absolute; z-index: 1; width: 390px; height: 390px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; }.orbit-left { top: -220px; left: -130px; box-shadow: 0 0 0 50px rgba(255,255,255,.03),0 0 0 100px rgba(255,255,255,.025); }.orbit-right { right: -170px; bottom: -250px; box-shadow: 0 0 0 70px rgba(255,255,255,.03),0 0 0 140px rgba(255,255,255,.025); }
  .site-footer { padding: 0 0 28px; }.footer-top { display: flex; align-items: center; gap: 40px; padding: 45px 0 28px; border-bottom: 1px solid var(--border); }.footer-brand img { width: 170px; }.footer-top p { color: var(--muted); font-size: .75rem; }.back-top { display: grid; width: 42px; height: 42px; margin-left: auto; place-items: center; border: 1px solid var(--border); border-radius: 50%; transition: transform .25s,background .25s,color .25s; }.back-top:hover { transform: translateY(-3px); color: white; background: var(--ink); }.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; color: #929caf; font-size: .56rem; }
}

@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes spin-local { to { transform: rotate(360deg); } }
@keyframes spin-reverse { to { transform: translate(-50%,-50%) rotate(-360deg); } }
@keyframes scan { to { transform: rotate(360deg); } }
@keyframes float { 50% { transform: translateY(-9px); } }
@keyframes chart-pulse { to { transform: scaleY(.78); opacity: .72; } }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(0,151,244,0); } 100% { box-shadow: 0 0 0 0 rgba(0,151,244,0); } }
@keyframes gate-pulse { 50% { opacity: .35; transform: scaleX(.65); } }
@keyframes marquee { to { transform: translateX(-50%); } }

@layer responsive {
  @media (max-width: 1080px) {
    .hero-layout { grid-template-columns: 1fr 1fr; }
    .signal-stage { left: 55%; transform: translate(-50%,-50%) scale(.86); }
    .hero-copy h1 { font-size: clamp(4rem,8vw,5.7rem); }
    .desktop-nav { gap: 18px; }.desktop-nav a { font-size: .78rem; }
    .lifecycle-card { padding: 24px; }.card-copy h3 { font-size: 1.55rem; }
    .coverage-layout, .investment-grid { gap: 45px; }
    .deploy-copy { padding-right: 45px; }
  }
  @media (max-width: 860px) {
    .shell { width: min(100% - 32px, 720px); }
    .desktop-nav, .nav-cta { display: none; }.menu-toggle { display: block; margin-left: auto; }.brand img { width: 150px; }
    .mobile-nav { position: fixed; top: 86px; right: 16px; left: 16px; display: grid; visibility: hidden; z-index: 99; gap: 3px; padding: 14px; transform: translateY(-12px); opacity: 0; border: 1px solid var(--border); border-radius: 18px; background: rgba(255,255,255,.96); box-shadow: var(--shadow); transition: opacity .25s,transform .25s,visibility .25s; backdrop-filter: blur(20px); }.mobile-nav.is-open { visibility: visible; transform: translateY(0); opacity: 1; }.mobile-nav a { padding: 12px 14px; border-radius: 10px; font-family: "Manrope",sans-serif; font-size: .85rem; font-weight: 700; }.mobile-nav a:hover { background: var(--cloud); }
    .hero { min-height: auto; padding-top: 135px; }.hero-layout { grid-template-columns: 1fr; text-align: center; }.hero-copy { max-width: 670px; margin: auto; }.hero-kicker { margin-bottom: 22px; }.hero-lede { margin-inline: auto; }.hero-actions, .hero-proof { justify-content: center; }.hero-visual { height: 590px; }.signal-stage { left: 50%; transform: translate(-50%,-50%) scale(.95); }
    .metric-rail { grid-template-columns: 1fr 1fr; }.metric:nth-child(2) { border-right: 0; }.metric:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
    .section-pad { padding: 105px 0; }.advantage { padding-top: 135px; }.lifecycle-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; margin-top: 50px; }.lifecycle-card { min-height: 470px; }.card-icon { margin-bottom: 28px; }.mini-ui,.channel-stack,.coming-badge { margin-top: 35px; }
    .coverage-layout, .investment-grid { grid-template-columns: 1fr; }.coverage-copy { max-width: 650px; }.coverage-chart { margin-top: 10px; }
    .comparison-top { align-items: start; flex-direction: column; }.table-key { align-self: stretch; grid-template-columns: repeat(4,1fr); }
    .deploy-card { grid-template-columns: 1fr; }.deploy-art { min-height: 360px; }.deploy-copy { padding: 50px; }.deploy-ring { width: 270px; height: 270px; }
    .footer-bottom { flex-direction: column; }
  }
  @media (max-width: 560px) {
    .shell { width: min(100% - 24px, 480px); }.site-header { padding-top: 10px; }.nav-shell { width: calc(100% - 20px); min-height: 56px; padding-left: 14px; }.brand img { width: 136px; }
    .cursor-glow { display: none; }.hero { padding-top: 116px; }.hero-copy h1 { font-size: clamp(3.4rem,16vw,4.7rem); }.hero-lede { margin-top: 24px; font-size: .98rem; }.hero-actions { flex-direction: column; gap: 18px; }.hero-actions .button { width: 100%; }.hero-proof { align-items: flex-start; text-align: left; }.hero-visual { height: 490px; }.signal-stage { transform: translate(-50%,-50%) scale(.72); }.metric-rail { margin-top: 0; }.metric { gap: 10px; padding: 18px 14px; }.metric-value { font-size: 1.8rem; }.metric span:last-child { font-size: .58rem; }
    .marquee-section { padding-block: 16px; }.section-pad { padding: 85px 0; }.advantage { padding-top: 110px; }.section-heading h2 { font-size: 2.35rem; }.section-heading p { font-size: .96rem; }.lifecycle-card { min-height: 500px; padding: 24px; }.card-icon { width: 92px; height: 92px; }.card-copy p { font-size: .87rem; }
    .coverage-layout { gap: 45px; }.coverage-copy h2,.investment-copy h2 { font-size: 2.4rem; }.coverage-chart { padding: 23px 18px; }.coverage-legend { flex-direction: column; gap: 8px; }.bar-group { margin-bottom: 27px; }
    .table-key { grid-template-columns: 1fr 1fr; }.filter-row { flex-wrap: nowrap; margin-right: -12px; padding-right: 12px; overflow-x: auto; scrollbar-width: none; }.filter-button { flex: 0 0 auto; }.swipe-hint { position: sticky; left: 0; display: flex; width: 100%; justify-content: flex-end; gap: 6px; padding: 8px 14px; color: #8590a5; background: white; font-size: .57rem; }.swipe-hint span { color: var(--cyan); }.comparison-table th:first-child,.comparison-table td:first-child { min-width: 180px; padding-left: 14px; }.comparison-table { min-width: 1070px; }
    .investment-grid { gap: 45px; }.price-callout strong { font-size: 1.9rem; }.price-panel { padding: 22px 16px; }.price-row { grid-template-columns: 82px 1fr 48px; }.onboarding-strip { grid-template-columns: 1fr auto; }
    .deploy-section { padding-bottom: 85px; }.deploy-card { width: calc(100% - 24px); border-radius: 25px; }.deploy-art { min-height: 300px; }.deploy-ring { width: 230px; height: 230px; }.deploy-copy { padding: 38px 25px 45px; }.deploy-copy h2 { font-size: 2.2rem; }.deploy-list { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
    .closing { padding-top: 0; }.closing-card { width: calc(100% - 24px); min-height: 520px; border-radius: 26px; }.closing-content { min-height: 520px; padding: 55px 20px; }.closing-content h2 { font-size: 2.65rem; }.closing-actions { align-self: stretch; flex-direction: column; }.closing-actions .button { width: 100%; }.footer-top { gap: 18px; }.footer-brand img { width: 135px; }.footer-top p { display: none; }
  }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
    [data-reveal] { opacity: 1; transform: none; }
    .bar-track i,.price-row i { width: var(--value); }
  }
}


@layer sections {
  .contact-card { min-height: 0; background: linear-gradient(145deg, #10275a, var(--blue) 50%, #078fdf); }
  .contact-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .78fr 1.22fr; gap: 58px; align-items: start; padding: 72px; }
  .contact-copy { position: sticky; top: 130px; padding: 28px 0; }
  .contact-copy .eyebrow { color: #bdeaff; }
  .contact-copy h2 { margin-top: 20px; font-size: clamp(2.6rem, 4.6vw, 4.8rem); line-height: 1.02; letter-spacing: -.06em; }
  .contact-copy h2 span { color: #aee6ff; }
  .contact-copy > p { max-width: 510px; margin-top: 24px; color: rgba(255,255,255,.72); font-size: .98rem; }
  .contact-benefits { display: grid; gap: 13px; margin-top: 32px; }
  .contact-benefits span { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.88); font-size: .75rem; font-weight: 600; }
  .contact-benefits i { display: grid; width: 22px; height: 22px; flex: 0 0 22px; place-items: center; border-radius: 50%; color: #83f5d2; background: rgba(32,180,134,.18); font-style: normal; font-size: .62rem; }
  .contact-copy .closing-link { width: max-content; margin-top: 38px; color: white; }
  .inquiry-form { position: relative; padding: 36px; border: 1px solid rgba(255,255,255,.75); border-radius: 25px; color: var(--ink); background: rgba(255,255,255,.97); box-shadow: 0 28px 70px rgba(7,20,46,.25); backdrop-filter: blur(16px); }
  .form-heading { margin-bottom: 28px; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
  .form-heading > span { display: block; color: var(--cyan); font-size: .64rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
  .form-heading strong { display: block; margin-top: 4px; font-family: "Manrope", sans-serif; font-size: 1.42rem; letter-spacing: -.03em; }
  .form-heading p { margin-top: 4px; color: var(--muted); font-size: .65rem; }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
  .field { display: grid; gap: 7px; }
  .field > span, .pain-points legend { color: #43506a; font-size: .66rem; font-weight: 800; }
  .field input, .field select, .field textarea { width: 100%; border: 1px solid #dbe2ec; border-radius: 11px; outline: none; color: var(--ink); background: white; font-size: .76rem; transition: border-color .2s, box-shadow .2s, background .2s; }
  .field input, .field select { height: 46px; padding: 0 13px; }
  .field textarea { min-height: 112px; padding: 12px 13px; resize: vertical; line-height: 1.5; }
  .field input::placeholder, .field textarea::placeholder { color: #a5aebe; }
  .field input:focus, .field select:focus, .field textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(0,151,244,.1); background: #fbfdff; }
  .field input:user-invalid, .field select:user-invalid, .field textarea:user-invalid { border-color: #e88791; }
  .field-full { margin-top: 21px; }
  .pain-points { margin: 24px 0 0; padding: 0; border: 0; }
  .pain-points legend { margin-bottom: 10px; }
  .check-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
  .check-grid label { position: relative; cursor: pointer; }
  .check-grid input { position: absolute; opacity: 0; pointer-events: none; }
  .check-grid span { display: flex; min-height: 39px; align-items: center; justify-content: center; padding: 7px 9px; border: 1px solid #dfe5ed; border-radius: 10px; color: #667289; background: #fafbfd; font-size: .59rem; font-weight: 700; text-align: center; transition: color .2s, border-color .2s, background .2s, transform .2s; }
  .check-grid label:hover span { transform: translateY(-1px); border-color: #b8dffa; }
  .check-grid input:focus-visible + span { outline: 3px solid rgba(0,151,244,.22); outline-offset: 2px; }
  .check-grid input:checked + span { border-color: rgba(0,151,244,.45); color: var(--blue); background: #edf8ff; box-shadow: inset 0 0 0 1px rgba(0,151,244,.08); }
  .check-grid input:checked + span::before { margin-right: 5px; content: "✓"; color: var(--cyan); }
  .bot-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
  .form-submit-row { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center; margin-top: 23px; }
  .form-submit { min-width: 190px; color: white; background: linear-gradient(125deg, var(--blue), var(--cyan)); box-shadow: 0 13px 28px rgba(0,151,244,.26); cursor: pointer; }
  .form-submit i { font-style: normal; }
  .form-submit:disabled { cursor: wait; opacity: .68; transform: none; }
  .form-submit-row p { color: #8a95a7; font-size: .56rem; line-height: 1.45; }
  .form-status { display: none; margin-top: 16px; padding: 12px 14px; border-radius: 10px; font-size: .68rem; font-weight: 700; }
  .form-status.is-visible { display: block; }
  .form-status.is-success { color: #117858; background: #e9f8f3; }
  .form-status.is-error { color: #a23f4a; background: #fff0f2; }
  .icon-nodes circle { stroke: none; }
  .icon-nodes .node-halo { fill: white; filter: drop-shadow(0 3px 7px rgba(56,88,166,.18)); }
}

@layer responsive {
  @media (max-width: 980px) {
    .contact-layout { grid-template-columns: 1fr; gap: 42px; padding: 55px; }
    .contact-copy { position: relative; top: auto; max-width: 700px; padding: 0; }
    .contact-copy h2 { max-width: 670px; }
    .contact-copy > p { max-width: 650px; }
  }
  @media (max-width: 620px) {
    .contact-card { width: calc(100% - 24px); border-radius: 26px; }
    .contact-layout { gap: 35px; padding: 42px 18px 18px; }
    .contact-copy { padding-inline: 8px; }
    .contact-copy h2 { font-size: 2.65rem; }
    .contact-benefits { margin-top: 26px; }
    .inquiry-form { padding: 25px 17px; border-radius: 20px; }
    .form-grid { grid-template-columns: 1fr; gap: 14px; }
    .check-grid { grid-template-columns: 1fr 1fr; }
    .form-submit-row { grid-template-columns: 1fr; }
    .form-submit { width: 100%; }
  }
}


@layer sections {
  .deploy-orbit { position: absolute; top: 50%; left: 45%; width: 290px; height: 290px; transform: translate(-50%, -50%); }
  .deploy-orbit .deploy-ring { position: absolute; inset: 0; top: auto; left: auto; width: 100%; height: 100%; transform: none; animation-name: spin-local; }
  .deploy-orbit .deploy-node { transform: none; }
  .deploy-orbit .n1 { top: calc(14.65% - 21px); left: calc(14.65% - 21px); }
  .deploy-orbit .n2 { top: calc(50% - 21px); right: auto; left: calc(100% - 21px); }
  .deploy-orbit .n3 { top: calc(96.5% - 21px); bottom: auto; left: calc(31.5% - 21px); }
}

@layer responsive {
  @media (max-width: 860px) {
    .deploy-orbit { width: 270px; height: 270px; }
  }
  @media (max-width: 560px) {
    .deploy-orbit { width: 230px; height: 230px; }
  }
}