:root {
      --ink: #081d49;
      --ink-2: #102d62;
      --blue: #0b4bb3;
      --blue-strong: #0a3c93;
      --blue-soft: #eaf3ff;
      --line: #e7ebf3;
      --muted: #41516d;
      --muted-2: #69758a;
      --paper: #ffffff;
      --canvas: #fbfcff;
      --navy: #051b51;
      --green: #0d8f4b;
      --green-soft: #eaf8ef;
      --radius-lg: 18px;
      --radius-md: 12px;
      --shadow: 0 18px 45px rgba(7, 32, 80, .08);
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      background: var(--canvas);
      color: var(--ink);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; }
    img { display: block; max-width: 100%; }
    .container { width: min(var(--max), calc(100% - 56px)); margin-inline: auto; }
    .skip-link { position: absolute; left: -999px; top: 12px; background: var(--blue); color: #fff; padding: 10px 14px; border-radius: 8px; z-index: 100; }
    .skip-link:focus { left: 12px; }

    /* Header */
    .header { height: 68px; background: rgba(255,255,255,.96); border-bottom: 1px solid #eef1f7; position: sticky; top: 0; z-index: 30; backdrop-filter: blur(18px); }
    .nav { height: 100%; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 15px; }
    .brand { display: inline-flex; align-items: center; gap: 8px; width: fit-content; font-size: 18px; font-weight: 850; letter-spacing: -.04em; color: var(--ink); }
    .brand-mark { width: 27px; height: 27px; display: grid; place-items: center; position: relative; border: 2px solid var(--blue); border-radius: 4px; color: var(--blue); font-size: 11px; font-weight: 950; line-height: 1; letter-spacing: -.07em; }
    .brand-mark::before, .brand-mark::after { content: ""; position: absolute; width: 10px; height: 2px; background: var(--blue); left: 6px; }
    .brand-mark::before { top: 4px; }
    .brand-mark::after { bottom: 4px; }
    .nav-links { display: flex; align-items: center; gap: 31px; font-size: 15px; font-weight: 650; color: #0a1e49; white-space: nowrap; }
    .nav-links a { padding: 6px 0; position: relative; }
    .nav-links a::after { content: ""; height: 2px; position: absolute; left: 0; right: 0; bottom: 0; transform: scaleX(0); transform-origin: left; background: var(--blue); transition: transform .18s ease; }
    .nav-links a:hover::after { transform: scaleX(1); }
    .nav-actions { justify-self: end; display: flex; align-items: center; gap: 10px; }
    .button { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 0 24px; border: 1px solid transparent; border-radius: 8px; font-size: 14px; font-weight: 700; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
    .button:hover { transform: translateY(-1px); }
    .button-outline { border-color: #cbd5e1; color: var(--ink); background: #fff; }
    .button-primary { color: #fff; background: var(--blue-strong); box-shadow: 0 4px 12px rgba(10, 60, 147, .2); }
    .menu-toggle { display: none; width: 38px; height: 34px; border: 1px solid #b8c9e7; color: var(--ink); background: #fff; border-radius: 7px; align-items: center; justify-content: center; cursor: pointer; }

    /* Hero */
    .hero { min-height: 480px; padding: 60px 0; background: linear-gradient(110deg, #f0f7ff 0%, #f4f9ff 45%, #e6f0fa 100%); border-bottom: 0; overflow: hidden; display: flex; align-items: center; }
    .hero-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 30px; align-items: center; }
    .eyebrow { display: inline-block; margin: 0 0 16px; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .02em; text-transform: uppercase; }
    h1, h2, h3, p { margin-top: 0; }
    .hero h1 { max-width: 520px; margin-bottom: 20px; font-size: clamp(36px, 4.5vw, 56px); line-height: 1.05; letter-spacing: -.04em; font-weight: 850; color: #0f172a; }
    .hero-lead { max-width: 450px; margin-bottom: 24px; color: #334155; font-size: 16px; font-weight: 660; line-height: 1.5; }
    .hero-badges { display: flex; flex-wrap: wrap; gap: 24px; margin: 0 0 32px; color: #1e293b; font-size: 13px; font-weight: 700; }
    .hero-badges span { display: inline-flex; align-items: center; gap: 8px; }
    .tiny-icon { width: 22px; height: 22px; color: var(--blue); }
    .hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; }
    .hero-ctas .button { min-width: 170px; min-height: 46px; }
    .hero-media { align-self: stretch; display: flex; justify-content: flex-end; align-items: center; position: relative; }
    .hero-media::before { content: ""; width: 540px; height: 278px; position: absolute; right: -64px; top: 35px; background: radial-gradient(ellipse at center, rgba(255,255,255,.9), rgba(238,247,255,.18) 58%, transparent 70%); filter: blur(5px); }
    .hero-media img { width: min(640px, 58vw); position: relative; z-index: 1; transform: translate(14px, 7px); mix-blend-mode: multiply; }

    /* Sections */
    section { padding: 54px 0; }
    .section-title { text-align: center; margin-bottom: 27px; }
    .section-title h2 { margin-bottom: 4px; font-size: clamp(26px, 3vw, 34px); line-height: 1.08; letter-spacing: -.052em; font-weight: 820; }
    .section-title p { margin: 0; color: var(--muted); font-size: 15px; }

    /* Two deployment options */
    .options { padding-top: 25px; }
    .option-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .option-card { min-height: 317px; position: relative; display: grid; grid-template-columns: 135px 1fr; gap: 20px; padding: 24px 24px 85px; overflow: hidden; border-radius: 14px; border: 1px solid #edf1f7; }
    .option-card.basic { background: linear-gradient(123deg, #f8fffa 0%, #effbf3 58%, #f9fffb 100%); }
    .option-card.advanced { background: linear-gradient(123deg, #fbfdff 0%, #f1f7ff 68%, #f7faff 100%); }
    .device-art { position: relative; }
    .device-art img { width: 100%; height: 100%; object-fit: contain; }
    .camera-art { width: 68px; height: 46px; margin: 3px auto 0; border-radius: 34px 34px 13px 13px; background: linear-gradient(135deg, #f0f2ef, #9ca5a2); border: 1px solid #89918f; box-shadow: inset 0 6px 10px rgba(255,255,255,.6), 0 7px 12px rgba(8, 42, 23, .1); position: relative; }
    .camera-art::before { content: ""; position: absolute; width: 28px; height: 21px; left: 19px; top: 12px; border-radius: 50%; background: radial-gradient(circle at 50% 42%, #1b2025 0 22%, #384046 23% 42%, #8aa0a7 43% 54%, #222b2e 55% 100%); box-shadow: inset 0 0 0 1px #5e666b; }
    .camera-art::after { content: ""; position: absolute; left: 33px; top: 46px; height: 65px; border-left: 2px dashed #17a453; }
    .laptop-art { position: absolute; left: 4px; bottom: 3px; width: 126px; height: 75px; }
    .laptop-art .screen { width: 100px; height: 57px; margin: 0 auto; background: linear-gradient(145deg,#121d25,#52666e); border: 4px solid #5c6267; border-bottom-width: 5px; border-radius: 5px 5px 2px 2px; box-shadow: 0 7px 12px rgba(5, 37, 34, .18); overflow: hidden; }
    .laptop-art .screen::before { content: ""; display: block; width: 100%; height: 100%; background: linear-gradient(90deg, transparent 0 31%, rgba(255,255,255,.35) 32% 33%, transparent 34% 65%, rgba(255,255,255,.35) 66% 67%, transparent 68%), linear-gradient(0deg, transparent 0 31%, rgba(255,255,255,.35) 32% 34%, transparent 35% 66%, rgba(255,255,255,.35) 67% 69%, transparent 70%); opacity: .7; }
    .laptop-art .base { width: 124px; height: 11px; margin: -1px auto 0; background: linear-gradient(180deg,#c8ccca,#5c6267); border-radius: 1px 1px 12px 12px; }
    .server-stack { width: 82px; margin: 9px auto 0; display: grid; gap: 8px; }
    .server-stack i { display: block; height: 28px; border-radius: 7px; background: linear-gradient(135deg,#52616c,#bac6ce); box-shadow: inset 0 2px 2px rgba(255,255,255,.36), 0 3px 7px rgba(13,42,71,.10); position: relative; }
    .server-stack i::before { content: ""; position: absolute; left: 9px; top: 12px; width: 4px; height: 4px; border-radius: 50%; background: #83dfbd; box-shadow: 8px 0 0 #c2e2ef; }
    .server-stack::after { content:""; display:block; width:2px; height:45px; border-left: 2px dashed #2465da; margin: 3px auto -7px; }
    .option-copy { position: relative; z-index: 1; }
    .option-label { display: inline-block; margin-bottom: 6px; border-radius: 4px; font-size: 20px; line-height: 1.2; font-weight: 900; letter-spacing: .02em; }
    .basic .option-label { color: #127239; background: #d8f5df; }
    .advanced .option-label { color: #1f59c9; background: #dbeaff; }
    .option-card h3 { max-width: 350px; margin-bottom: 11px; font-size: 21px; line-height: 1.04; letter-spacing: -.045em; font-weight: 820; }
    .option-card p { max-width: 385px; margin-bottom: 14px; color: #1c2b46; font-size: 12px; line-height: 1.48; }
    .list-checks { display: grid; gap: 7px; margin: 0; padding: 0; list-style: none; color: #132543; font-size: 14px; }
    .list-checks li { display: flex; align-items: flex-start; gap: 7px; }
    .check-dot { width: 13px; height: 13px; flex: 0 0 13px; margin-top: 1px; display: grid; place-items: center; border: 1.5px solid currentColor; border-radius: 50%; font-size: 9px; font-weight: 950; line-height: 1; }
    .basic .list-checks { color: #16844a; }
    .basic .list-checks li span:last-child { color: #132543; }
    .advanced .list-checks { color: #1757cb; }
    .advanced .list-checks li span:last-child { color: #132543; }
    .option-note { position: absolute; left: 48px; right: 18px; bottom: 12px; display: flex; align-items: center; gap: 12px; min-height: 60px; padding: 11px 14px; border-radius: 11px; color: #133042; font-size: 11px; line-height: 1.42; }
    .basic .option-note { background: linear-gradient(90deg, #e2f8e7, #f0fbf2); }
    .advanced .option-note { background: linear-gradient(90deg, #e7f1ff, #edf5ff); color: #0b4aa8; font-weight: 670; }
    .note-icon { flex: 0 0 24px; width: 24px; height: 24px; color: inherit; }

    .compatibility-bar { margin-top: 13px; display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 56px; padding: 12px 25px; color: #fff; background: linear-gradient(93deg,#0a2c71,#082664); border-radius: 8px; }
    .compatibility-bar .bar-copy { display: flex; align-items: center; gap: 14px; }
    .compatibility-bar h3 { margin: 0 0 1px; font-size: 12px; font-weight: 820; }
    .compatibility-bar p { margin: 0; color: #deebff; font-size: 11px; }
    .compatibility-bar a { white-space: nowrap; font-size: 11px; font-weight: 800; }

    /* Use cases */
    .cases { padding-top: 26px; }
    .case-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
    .case-card { min-height: 270px; overflow: hidden; background: #fff; border-radius: 10px; border: 1px solid #edf0f5; }
    .case-image { height: 110px; overflow: hidden; background: #dce8f7; }
    .case-image img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.025); }
    .case-content { padding: 13px 15px 16px; position: relative; }
    .case-icon { width: 29px; height: 29px; display: grid; place-items: center; position: absolute; left: 12px; top: -16px; border-radius: 50%; color: var(--blue); background: #fff; border: 1px solid #d9e6f8; box-shadow: 0 3px 9px rgba(11,59,140,.12); }
    .case-content h3 { margin: 0 0 8px; padding-top: 6px; font-size: 14px; line-height: 1.16; letter-spacing: -.035em; }
    .case-content p { margin: 0; color: #263a5a; font-size: 16px; line-height: 1.46; }
    .more-link { display: table; margin: 18px auto 0; color: var(--blue); font-size: 11px; font-weight: 840; }

    /* Benefits */
    .benefits { padding-top: 10px; padding-bottom: 28px; }
    .benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-radius: 8px; overflow: hidden; border: 1px solid #edf0f5; background: #fff; }
    .benefit { min-height: 90px; display: grid; grid-template-columns: 38px 1fr; gap: 10px; align-items: center; padding: 13px 22px; border-right: 1px solid #eef1f5; }
    .benefit:last-child { border-right: 0; }
    .benefit h3 { margin: 0 0 3px; font-size: 11px; letter-spacing: -.02em; }
    .benefit p { margin: 0; color: #30425f; font-size: 10px; line-height: 1.4; }
    .big-icon { width: 33px; height: 33px; color: var(--blue); }

    /* CTA + footer */
    .cta-wrap { padding: 0 0 0; background: transparent; }
    .cta { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 28px; padding: 26px 44px; background: radial-gradient(circle at 67% 40%, rgba(28,77,180,.48), transparent 24%), linear-gradient(97deg,#061a49 0%,#082d78 59%,#073375 100%); color: #fff; }
    .cta h2 { margin: 0 0 4px; font-size: 25px; line-height: 1.04; letter-spacing: -.04em; }
    .cta p { margin: 0; color: #d8e7ff; font-size: 12px; }
    .cta-actions { display: flex; gap: 12px; }
    .cta .button { min-width: 150px; min-height: 36px; }
    .cta .button-white { background: #fff; color: #0b347d; }
    .cta .button-dark-outline { border-color: #a5bde8; color: #fff; background: transparent; }
    footer { color: #d9e6fa; background: #031437; }
    .footer { min-height: 125px; display: grid; grid-template-columns: 1.4fr repeat(3, .82fr) .66fr; gap: 38px; padding: 26px 44px; }
    .footer .brand { color: #fff; margin-bottom: 8px; }
    .footer .brand-mark { color: #fff; border-color: #fff; }
    .footer .brand-mark::before,.footer .brand-mark::after { background: #fff; }
    .footer-note { max-width: 180px; margin: 0; color: #c0cde2; font-size: 10px; line-height: 1.45; }
    .footer h3 { margin: 0 0 9px; font-size: 10px; color: #fff; }
    .footer a, .footer p { display: block; margin: 0 0 5px; color: #ccd8eb; font-size: 9px; }
    .socials { display: flex; gap: 8px; }
    .social { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: #4a596f; color: white; font-size: 10px; font-weight: 850; }

    .svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

    @media (max-width: 1000px) {
      .container { width: min(var(--max), calc(100% - 40px)); }
      .nav { grid-template-columns: 1fr auto; }
      .nav-links { display: none; }
      .nav-actions { display: none; }
      .menu-toggle { display: inline-flex; justify-self: end; }
      .nav.open { align-items: start; padding-top: 17px; }
      .nav.open .nav-links { width: 100%; display: grid; grid-column: 1 / -1; grid-row: 2; padding: 12px 0 16px; gap: 0; background: #fff; }
      .nav.open .nav-links a { padding: 11px 0; border-top: 1px solid #eff2f7; }
      .nav.open .nav-actions { display: flex; grid-column: 1 / -1; grid-row: 3; justify-self: stretch; padding: 0 0 16px; }
      .header:has(.nav.open) { height: auto; }
      .hero-inner { grid-template-columns: .92fr 1fr; }
      .hero-media img { width: min(570px, 56vw); transform: translate(20px, 11px); }
      .option-card { grid-template-columns: 110px 1fr; padding-left: 18px; padding-right: 18px; }
      .option-note { left: 28px; }
      .case-grid { grid-template-columns: repeat(2, 1fr); }
      .case-card { min-height: 230px; }
      .benefit-grid { grid-template-columns: repeat(2, 1fr); }
      .benefit:nth-child(2) { border-right: 0; }
      .benefit:nth-child(n+3) { border-top: 1px solid #eef1f5; }
      .footer { grid-template-columns: 1.2fr repeat(2, 1fr); }
      .footer > :last-child { grid-column: 2 / 4; }
    }

    @media (max-width: 720px) {
      .container { width: min(var(--max), calc(100% - 30px)); }
      .hero { padding-top: 12px; }
      .hero-inner { min-height: unset; grid-template-columns: 1fr; gap: 6px; padding: 33px 0 0; }
      .hero h1 { max-width: 500px; font-size: clamp(37px, 10vw, 47px); }
      .hero-lead { font-size: 15px; }
      .hero-media { min-height: 270px; justify-content: center; margin: 0 -15px; }
      .hero-media::before { width: 500px; right: 50%; transform: translateX(50%); top: 6px; }
      .hero-media img { width: min(570px, 105vw); transform: translate(10px, 6px); }
      .section-title p { font-size: 14px; }
      .option-grid { grid-template-columns: 1fr; }
      .option-card { min-height: 300px; grid-template-columns: 112px 1fr; }
      .case-grid { grid-template-columns: 1fr 1fr; }
      .compatibility-bar { align-items: flex-start; flex-direction: column; gap: 8px; }
      .cta { grid-template-columns: 1fr; padding: 29px 28px; }
      .cta-actions { flex-wrap: wrap; }
      .footer { grid-template-columns: 1fr 1fr; gap: 22px; padding: 28px; }
      .footer > :first-child { grid-column: 1 / -1; }
      .footer > :last-child { grid-column: 1 / -1; }
    }

    @media (max-width: 480px) {
      .container { width: min(var(--max), calc(100% - 24px)); }
      .header { height: 63px; }
      .nav { gap: 14px; }
      .hero-badges { gap: 12px 16px; }
      .hero-ctas { display: grid; grid-template-columns: 1fr; }
      .hero-ctas .button { width: 100%; }
      .option-card { grid-template-columns: 93px 1fr; gap: 9px; padding: 17px 12px 89px; }
      .option-card h3 { font-size: 18px; }
      .option-card p { font-size: 11px; }
      .list-checks { font-size: 10px; gap: 5px; }
      .device-art { transform: scale(.83); transform-origin: top center; }
      .option-note { left: 12px; right: 12px; font-size: 10px; }
      .case-grid { grid-template-columns: 1fr; }
      .case-card { min-height: auto; }
      .case-image { height: 140px; }
      .benefit-grid { grid-template-columns: 1fr; }
      .benefit { border-right: 0; border-top: 1px solid #eef1f5; }
      .benefit:first-child { border-top: 0; }
      .cta h2 { font-size: 24px; }
      .cta-actions { display: grid; grid-template-columns: 1fr; }
      .cta .button { width: 100%; }
      .footer { grid-template-columns: 1fr 1fr; padding-inline: 20px; }
    }
