﻿        /* ===== Reset ===== */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        :root {
            --navy:        #1e3d58;
            --navy-60:     rgba(30, 61, 88, 0.60);
            --navy-16:     rgba(30, 61, 88, 0.16);
            --navy-08:     rgba(30, 61, 88, 0.08);
            --blue:        #057dcd;
            --blue-dark:   #0369a1;
            --blue-glow:   rgba(5, 125, 205, 0.32);
            --sky:         rgba(67, 176, 241, 0.18);
            --white-62:    rgba(255, 255, 255, 0.62);
            --white-58:    rgba(255, 255, 255, 0.58);
            --bg-top:      #f4f8fb;
            --bg-bot:      #e9eff4;
            --radius-card: 16px;
            --radius-btn:  10px;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
            color: var(--navy);
            background:
                radial-gradient(ellipse 100% 70% at 50% 0%,
                    var(--sky) 0%, transparent 60%),
                linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bot) 100%);
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }

        /* ===== Glass utility ===== */
        .glass {
            background: var(--white-62);
            backdrop-filter: blur(18px) saturate(140%);
            -webkit-backdrop-filter: blur(18px) saturate(140%);
            border: 1px solid var(--white-58);
            border-radius: var(--radius-card);
            box-shadow:
                0 10px 32px rgba(30, 61, 88, 0.14),
                0 2px 0 rgba(255, 255, 255, 0.50) inset;
        }
        @media (prefers-reduced-transparency: reduce) {
            .glass { background: #f3f5f7; backdrop-filter: none; }
        }

        /* ============================================================
           NAVBAR  â€”  hidden over the intro scene, slides down from
           above the viewport the moment the user starts scrolling.
        ============================================================ */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 14px max(28px, 4vw);
            background: rgba(244, 248, 251, 0.80);
            backdrop-filter: blur(20px) saturate(150%);
            -webkit-backdrop-filter: blur(20px) saturate(150%);
            border-bottom: 1px solid rgba(30, 61, 88, 0.08);
            transform: translateY(-100%);
            transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
            will-change: transform;
        }
        .nav.is-visible {
            transform: translateY(0);
        }
        @media (prefers-reduced-motion: reduce) {
            .nav { transition: none; }
        }

        /* Brand */
        .nav__brand {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--navy);
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            letter-spacing: -0.01em;
            flex-shrink: 0;
        }
        .nav__mark {
            width: 34px;
            height: 34px;
            border-radius: 10px;
            background: linear-gradient(145deg, var(--blue), var(--blue-dark));
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px var(--blue-glow);
            flex-shrink: 0;
        }

        /* Nav links */
        .nav__links {
            display: flex;
            align-items: center;
            gap: 2px;
            list-style: none;
        }
        .nav__links a {
            display: inline-block;
            padding: 7px 14px;
            font-size: 14px;
            font-weight: 500;
            color: var(--navy);
            opacity: 0.65;
            text-decoration: none;
            border-radius: 8px;
            transition: opacity 0.15s ease, background 0.15s ease;
        }
        .nav__links a:hover {
            opacity: 1;
            background: var(--navy-08);
        }

        /* Auth buttons */
        .nav__auth {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font: inherit;
            font-size: 14px;
            font-weight: 600;
            padding: 9px 18px;
            border-radius: var(--radius-btn);
            cursor: pointer;
            text-decoration: none;
            transition: all 0.15s ease;
            border: none;
            letter-spacing: 0.01em;
        }

        .btn--ghost {
            background: transparent;
            color: var(--navy);
            border: 1.5px solid var(--navy-16);
        }
        .btn--ghost:hover {
            background: var(--navy-08);
            border-color: rgba(30, 61, 88, 0.28);
        }
        .btn--ghost:focus-visible {
            outline: none;
            box-shadow: 0 0 0 3px rgba(5, 125, 205, 0.20);
        }

        .btn--primary {
            background: linear-gradient(145deg, var(--blue), var(--blue-dark));
            color: #fff;
            box-shadow: 0 4px 14px var(--blue-glow);
        }
        .btn--primary:hover {
            filter: brightness(1.07);
            box-shadow: 0 6px 20px rgba(5, 125, 205, 0.42);
            transform: translateY(-1px);
        }
        .btn--primary:active { transform: translateY(0); }
        .btn--primary:focus-visible {
            outline: none;
            box-shadow: 0 4px 14px var(--blue-glow), 0 0 0 3px rgba(5, 125, 205, 0.22);
        }

        @media (max-width: 680px) {
            .nav__links { display: none; }
            .btn { padding: 8px 14px; font-size: 13px; }
        }
        @media (max-width: 380px) {
            .btn span { display: none; }
        }

        /* ============================================================
           SLIDE 1 â€” HERO SCENE
           A tiny "ssi" drops in. The mesh self-assembles outward:
           only the inner ring is close enough to wire back to ssi;
           every node further out connects to its own neighbours,
           and those to theirs, propagating ring by ring.
        ============================================================ */
        .hero {
            position: relative;
            overflow: hidden;
            height: 100vh;
            min-height: 600px;
            padding: 0;
            text-align: center;
            color: #eaf4ff;
            background:
                radial-gradient(ellipse 80% 60% at 50% 50%,
                    #0c2d4a 0%, #07192c 55%, #04101c 100%);
            isolation: isolate;
            cursor: pointer;
        }

        .hero__canvas {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            display: block;
            pointer-events: none;
        }

        /* The tiny "ssi" drop â€” small, glowing, centered. The hub. */
        .hero__drop {
            position: absolute;
            top: 50%;
            left: 50%;
            z-index: 2;
            font-family: "Syne", sans-serif;
            font-weight: 800;
            font-size: clamp(20px, 2.4vw, 32px);
            letter-spacing: -0.04em;
            line-height: 1;
            color: transparent;
            background: linear-gradient(180deg,
                #ffffff 0%,
                #d6f1ff 35%,
                #7ecbf2 70%,
                #2c8fcf 100%);
            -webkit-background-clip: text;
            background-clip: text;
            filter:
                drop-shadow(0 0 10px rgba(120, 210, 255, 0.95))
                drop-shadow(0 0 22px rgba(67, 176, 241, 0.65))
                drop-shadow(0 0 48px rgba(5, 125, 205, 0.35));
            user-select: none;
            transform: translate(-50%, -50%);
            animation: ssiFall 1.6s cubic-bezier(0.55, 0.05, 0.65, 1) 0.25s both;
        }
        /* Falls from above, stretches like a teardrop, squishes on impact */
        @keyframes ssiFall {
            0% {
                transform: translate(-50%, -1800%) scaleY(1.45) scaleX(0.78);
                opacity: 0;
                filter:
                    drop-shadow(0 0 4px rgba(255,255,255,0.6))
                    blur(1.5px);
            }
            18% {
                opacity: 1;
                filter:
                    drop-shadow(0 0 8px rgba(180,230,255,0.85))
                    blur(0.4px);
            }
            68% {
                transform: translate(-50%, -240%) scaleY(1.55) scaleX(0.74);
                opacity: 1;
                filter:
                    drop-shadow(0 0 12px rgba(180,230,255,0.9))
                    blur(0);
            }
            78% {
                transform: translate(-50%, -42%) scaleY(0.55) scaleX(1.32);
            }
            87% {
                transform: translate(-50%, -56%) scaleY(1.18) scaleX(0.90);
            }
            94% {
                transform: translate(-50%, -48%) scaleY(0.94) scaleX(1.05);
            }
            100% {
                transform: translate(-50%, -50%) scaleY(1) scaleX(1);
                filter:
                    drop-shadow(0 0 10px rgba(120, 210, 255, 0.95))
                    drop-shadow(0 0 22px rgba(67, 176, 241, 0.65))
                    drop-shadow(0 0 48px rgba(5, 125, 205, 0.35));
            }
        }
        @media (prefers-reduced-motion: reduce) {
            .hero__drop { animation: none; opacity: 1; transform: translate(-50%, -50%); }
        }

        .hero__hint {
            position: absolute;
            left: 50%;
            bottom: 115px;
            transform: translateX(-50%);
            z-index: 3;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: rgba(186, 215, 240, 0.55);
            pointer-events: none;
            opacity: 0;
            animation: hintAppear 2s ease 5.0s forwards, hintPulse 2.6s ease-in-out 5.0s infinite;
        }
        @keyframes hintAppear { to { opacity: 1; } }
        @keyframes hintPulse {
            0%, 100% { opacity: 0.35; }
            50%      { opacity: 0.85; }
        }

        /* Scroll cue at the bottom â€” tells the viewer there is a next slide */
        .hero__scroll {
            position: absolute;
            left: 50%;
            bottom: 60px;
            transform: translateX(-50%);
            z-index: 3;
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: rgba(186, 215, 240, 0.55);
            text-decoration: none;
            opacity: 0;
            animation: scrollAppear 1.4s ease 5.4s forwards;
        }
        @keyframes scrollAppear { to { opacity: 1; } }
        .hero__scroll svg { animation: scrollBob 1.8s ease-in-out infinite; }
        @keyframes scrollBob {
            0%, 100% { transform: translateY(0); opacity: 0.55; }
            50%      { transform: translateY(4px); opacity: 1; }
        }
        .hero__scroll:hover { color: rgba(186, 215, 240, 0.95); }

        /* ============================================================
           SLIDE 2 â€” BRAND + TAGLINE + WHALE
           Light theme â€” matches the look of the login page:
           base #f4f8fb â†’ #e9eff4 gradient with a soft cyan radial
           glow up top and a secondary blue radial at the lower-right.
        ============================================================ */
        .slide2 {
            position: relative;
            min-height: 100vh;
            padding: clamp(70px, 9vh, 120px) max(40px, 6vw);
            display: grid;
            grid-template-columns: 1.05fr 1fr;
            align-items: center;
            gap: clamp(40px, 6vw, 110px);
            color: var(--navy);
            background:
                radial-gradient(ellipse 100% 70% at 50% 0%,
                    rgba(67, 176, 241, 0.18) 0%, transparent 60%),
                linear-gradient(180deg, #f4f8fb 0%, #e9eff4 100%);
            overflow: hidden;
            isolation: isolate;
        }
        /* Secondary cyan/blue radial accents â€” same recipe as login-page::before */
        .slide2::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 70% 55% at 50% 38%,
                    rgba(67, 176, 241, 0.22) 0%, transparent 68%),
                radial-gradient(ellipse 50% 40% at 80% 80%,
                    rgba(5, 125, 205, 0.10) 0%, transparent 60%);
            pointer-events: none;
            z-index: 0;
        }

        .slide2__text {
            position: relative;
            z-index: 2;
            max-width: 640px;
        }

        .slide2__brand {
            font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
            font-size: clamp(40px, 6.4vw, 78px);
            font-weight: 700;
            letter-spacing: -0.030em;
            line-height: 1.02;
            color: var(--navy);
            margin-bottom: 26px;
        }
        .slide2__brand span {
            display: inline-block;
            background: linear-gradient(135deg, var(--blue) 0%, #06b6d4 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .slide2__sentence {
            font-size: clamp(18px, 2.1vw, 26px);
            font-weight: 500;
            line-height: 1.45;
            color: var(--navy);
            opacity: 0.78;
            letter-spacing: -0.005em;
            max-width: 520px;
        }
        .slide2__sentence em {
            font-style: normal;
            font-weight: 700;
            background: linear-gradient(135deg, var(--blue) 0%, #06b6d4 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .slide2__image-wrap {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }
        .slide2__image {
            width: 100%;
            max-width: 620px;
            height: auto;
            max-height: 88vh;
            object-fit: contain;
            filter: drop-shadow(0 30px 60px rgba(30, 61, 88, 0.28));
            transform-origin: 60% 55%;
            animation: whaleFloat 7s ease-in-out infinite;
        }
        @keyframes whaleFloat {
            /* Base orientation is rotated ~10Â° clockwise so the whale
               leans into the layout from the right. */
            0%, 100% { transform: translateY(0)    rotate(10deg); }
            50%      { transform: translateY(-14px) rotate(8.5deg); }
        }
        @media (prefers-reduced-motion: reduce) {
            .slide2__image { animation: none; transform: rotate(10deg); }
        }

        /* Continue scroll cue â€” same idea as slide 1, but light-theme styled */
        .slide2__scroll {
            position: absolute;
            left: 50%;
            bottom: 60px;
            transform: translateX(-50%);
            z-index: 3;
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: rgba(30, 61, 88, 0.55);
            text-decoration: none;
            transition: color 0.15s ease;
        }
        .slide2__scroll:hover { color: var(--blue); }
        .slide2__scroll svg { animation: scrollBob 1.8s ease-in-out infinite; }

        @media (max-width: 900px) {
            .slide2 {
                grid-template-columns: 1fr;
                text-align: left;
                gap: clamp(24px, 6vw, 40px);
                padding-top: clamp(80px, 10vh, 120px);
                padding-bottom: clamp(80px, 10vh, 120px);
            }
            .slide2__image-wrap { justify-content: center; }
            .slide2__image { max-height: 50vh; }
        }

        .btn--lg {
            padding: 14px 28px;
            font-size: 15px;
            border-radius: 12px;
        }

        /* ============================================================
           FEATURES SECTION
        ============================================================ */
        .section {
            padding: 80px max(28px, 5vw);
            max-width: 1120px;
            margin: 0 auto;
        }

        .section__label {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.10em;
            text-transform: uppercase;
            color: var(--blue);
            margin-bottom: 10px;
        }

        .section__title {
            font-family: "Syne", sans-serif;
            font-size: clamp(26px, 4vw, 40px);
            font-weight: 700;
            letter-spacing: -0.025em;
            line-height: 1.15;
            color: var(--navy);
            margin-bottom: 14px;
        }

        .section__sub {
            font-size: 16px;
            line-height: 1.65;
            color: var(--navy);
            opacity: 0.58;
            max-width: 480px;
            margin-bottom: 52px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
        }

        .feature-card {
            padding: 28px 24px;
            border-radius: var(--radius-card);
            position: relative;
            overflow: hidden;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .feature-card:hover {
            transform: translateY(-3px);
            box-shadow:
                0 16px 40px rgba(30, 61, 88, 0.16),
                0 2px 0 rgba(255, 255, 255, 0.50) inset;
        }

        .feature-card__icon {
            width: 46px;
            height: 46px;
            border-radius: 12px;
            background: linear-gradient(145deg, var(--blue), var(--blue-dark));
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            box-shadow: 0 4px 12px var(--blue-glow);
            flex-shrink: 0;
        }

        .feature-card h3 {
            font-size: 16px;
            font-weight: 700;
            letter-spacing: -0.01em;
            color: var(--navy);
            margin-bottom: 8px;
        }

        .feature-card p {
            font-size: 14px;
            line-height: 1.65;
            color: var(--navy);
            opacity: 0.58;
        }

        /* ============================================================
           STATS BAR
        ============================================================ */
        .stats-bar {
            margin: 0 max(28px, 5vw) 80px;
            padding: 36px 40px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 24px;
            text-align: center;
        }

        .stat__num {
            font-family: "Syne", sans-serif;
            font-size: 38px;
            font-weight: 800;
            letter-spacing: -0.03em;
            color: var(--navy);
            line-height: 1;
            margin-bottom: 6px;
        }
        .stat__num span {
            background: linear-gradient(135deg, var(--blue) 0%, #06b6d4 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat__label {
            font-size: 13px;
            color: var(--navy);
            opacity: 0.55;
            font-weight: 500;
        }

        /* divider between stats */
        .stats-bar > * + * {
            border-left: 1px solid var(--navy-16);
        }
        @media (max-width: 600px) {
            .stats-bar > * + * { border-left: none; border-top: 1px solid var(--navy-16); }
        }

        /* ============================================================
           HOW IT WORKS
        ============================================================ */
        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 28px;
            counter-reset: step;
        }

        .step {
            padding: 32px 24px 28px;
            border-radius: var(--radius-card);
            position: relative;
        }

        .step__num {
            counter-increment: step;
            font-family: "Syne", sans-serif;
            font-size: 48px;
            font-weight: 800;
            letter-spacing: -0.04em;
            line-height: 1;
            background: linear-gradient(135deg, rgba(5, 125, 205, 0.20) 0%, rgba(6, 182, 212, 0.20) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 14px;
        }

        .step h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 8px;
        }

        .step p {
            font-size: 14px;
            line-height: 1.65;
            color: var(--navy);
            opacity: 0.58;
        }

        /* ============================================================
           CTA BANNER
        ============================================================ */
        .cta-banner {
            margin: 0 max(28px, 5vw) 80px;
            padding: 56px max(32px, 5vw);
            text-align: center;
            background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
            border-radius: 20px;
            color: #fff;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(5, 125, 205, 0.38);
        }

        .cta-banner::before {
            content: "";
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: rgba(255,255,255,0.06);
            right: -120px;
            top: -180px;
            pointer-events: none;
        }
        .cta-banner::after {
            content: "";
            position: absolute;
            width: 320px;
            height: 320px;
            border-radius: 50%;
            background: rgba(255,255,255,0.04);
            left: -60px;
            bottom: -120px;
            pointer-events: none;
        }

        .cta-banner h2 {
            font-family: "Syne", sans-serif;
            font-size: clamp(24px, 4vw, 38px);
            font-weight: 800;
            letter-spacing: -0.025em;
            margin-bottom: 14px;
            position: relative;
        }

        .cta-banner p {
            font-size: 16px;
            opacity: 0.75;
            max-width: 440px;
            margin: 0 auto 32px;
            line-height: 1.65;
            position: relative;
        }

        .cta-banner .cta-btns {
            display: inline-flex;
            gap: 12px;
            flex-wrap: wrap;
            justify-content: center;
            position: relative;
        }

        .btn--white {
            background: #fff;
            color: var(--blue-dark);
            font-weight: 700;
        }
        .btn--white:hover {
            background: rgba(255,255,255,0.90);
            transform: translateY(-1px);
        }
        .btn--outline-white {
            background: transparent;
            color: #fff;
            border: 1.5px solid rgba(255,255,255,0.40);
            font-weight: 600;
        }
        .btn--outline-white:hover {
            background: rgba(255,255,255,0.12);
            border-color: rgba(255,255,255,0.65);
        }

        /* ============================================================
           FOOTER
        ============================================================ */
        .footer {
            border-top: 1px solid var(--navy-16);
            padding: 28px max(28px, 5vw);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }

        .footer__brand {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            color: var(--navy);
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
        }

        .footer__copy {
            font-size: 12px;
            color: var(--navy);
            opacity: 0.45;
        }

        .footer__links {
            display: flex;
            gap: 16px;
            list-style: none;
        }
        .footer__links a {
            font-size: 12px;
            color: var(--navy);
            opacity: 0.50;
            text-decoration: none;
            transition: opacity 0.15s ease;
        }
        .footer__links a:hover { opacity: 0.90; }

/* Language switcher on the landing nav */
.landing-lang { display: inline-flex; margin-right: 4px; }
.landing-lang select {
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 10px;
    border: 1.5px solid var(--navy-16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--navy);
    cursor: pointer;
}
.landing-lang select:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(5, 125, 205, 0.18);
}

/* SSI logo (M-Project brain) — replaces the abstract mark in the navbar */
.nav__logo {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 12px var(--blue-glow);
    flex-shrink: 0;
    display: block;
}

/* IIM institute logo — used in the footer */
.footer__logo {
    height: 28px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Continue scroll cue at the end of slides 3 (Features) and 4 (How it works).
   Mirrors `.slide2__scroll` exactly so the affordance is consistent across
   every slide of the landing page. */
.section { position: relative; }
.section__scroll {
    display: inline-flex;
    margin: 56px auto 0;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(30, 61, 88, 0.55);
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(30, 61, 88, 0.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
/* Visually centre the cue under the section content. */
.section .section__scroll {
    display: flex;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
}
.section__scroll:hover {
    color: var(--blue);
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(5, 125, 205, 0.30);
    transform: translateY(-1px);
}
.section__scroll svg { animation: scrollBob 1.8s ease-in-out infinite; }

/* ===========================================================================
   UI peek slide — three browser-chrome'd SVG mockups (Dashboard / Calendar /
   Materials). Mockups stay sharp at any zoom because they're inline SVG and
   they share the SSI palette so they look at home in the page.
   =========================================================================== */
.section--peek { padding-top: 50px; padding-bottom: 50px; }

.peek-grid {
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 1180px;
}
@media (max-width: 980px) {
    .peek-grid { grid-template-columns: 1fr; max-width: 480px; }
}

.peek-card {
    border-radius: 18px;
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(30, 61, 88, 0.08);
    box-shadow: 0 14px 36px rgba(30, 61, 88, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.peek-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 44px rgba(5, 125, 205, 0.18);
}

.peek-card__chrome {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(244, 248, 252, 0.85);
    border-bottom: 1px solid rgba(30, 61, 88, 0.08);
}
.peek-card__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
}
.peek-card__dot--r { background: #FF5F57; }
.peek-card__dot--y { background: #FEBC2E; }
.peek-card__dot--g { background: #28C840; }
.peek-card__url {
    margin-left: 8px;
    font-family: "JetBrains Mono", "SF Mono", Consolas, monospace;
    font-size: 11px;
    color: rgba(30, 61, 88, 0.55);
    letter-spacing: 0.01em;
}

.peek-card__art {
    width: 100%;
    height: auto;
    display: block;
    background: #F4F8FC;
}

.peek-card figcaption {
    padding: 16px 18px 18px;
    background: rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.peek-card figcaption strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.01em;
}
.peek-card figcaption span {
    font-size: 13px;
    line-height: 1.45;
    color: rgba(30, 61, 88, 0.66);
}

/* ===========================================================================
   Privacy & data-handling slide
   =========================================================================== */
.section--privacy {
    padding-bottom: 80px;
}
.privacy-grid {
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    max-width: 1100px;
}
@media (max-width: 880px) {
    .privacy-grid { grid-template-columns: 1fr; max-width: 480px; }
}
.privacy-card {
    padding: 26px 24px;
    border-radius: 18px;
    border: 1px solid rgba(30, 61, 88, 0.10);
    box-shadow: 0 10px 28px rgba(30, 61, 88, 0.06);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.privacy-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(5, 125, 205, 0.12), rgba(5, 125, 205, 0.04));
    color: var(--blue);
    flex-shrink: 0;
}
.privacy-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
    letter-spacing: -0.01em;
}
.privacy-card p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.55;
    color: rgba(30, 61, 88, 0.74);
}
.privacy-foot {
    text-align: center;
    margin: 38px auto 0;
    max-width: 720px;
    font-size: 13px;
    color: rgba(30, 61, 88, 0.6);
    line-height: 1.55;
}

/* ===========================================================================
   Footer status + version pills
   =========================================================================== */
.footer__meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(30, 61, 88, 0.10);
    font-size: 11.5px;
    font-weight: 600;
    color: rgba(30, 61, 88, 0.75);
    letter-spacing: 0.01em;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.status-pill__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #9DB6CC;
    box-shadow: 0 0 0 0 rgba(157, 182, 204, 0.6);
    animation: statusPulse 2.2s ease-in-out infinite;
}
.status-pill.is-ok {
    background: rgba(34, 197, 94, 0.10);
    border-color: rgba(34, 197, 94, 0.25);
    color: #15803D;
}
.status-pill.is-ok .status-pill__dot {
    background: #22C55E;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
}
.status-pill.is-degraded {
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.30);
    color: #B45309;
}
.status-pill.is-degraded .status-pill__dot {
    background: #F59E0B;
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.55);
}
.status-pill.is-offline {
    background: rgba(239, 68, 68, 0.10);
    border-color: rgba(239, 68, 68, 0.30);
    color: #B91C1C;
}
.status-pill.is-offline .status-pill__dot {
    background: #EF4444;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55);
    animation: none;
}
@keyframes statusPulse {
    0%   { box-shadow: 0 0 0 0   currentColor; opacity: 1;    }
    70%  { box-shadow: 0 0 0 8px transparent;  opacity: 0.85; }
    100% { box-shadow: 0 0 0 0   transparent;  opacity: 1;    }
}
@media (prefers-reduced-motion: reduce) {
    .status-pill__dot { animation: none; }
}

.version-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(30, 61, 88, 0.06);
    border: 1px solid rgba(30, 61, 88, 0.10);
    font-family: "JetBrains Mono", "SF Mono", Consolas, monospace;
    font-size: 11px;
    font-weight: 600;
    color: rgba(30, 61, 88, 0.72);
    letter-spacing: 0.02em;
    cursor: default;
}
.version-pill__sep {
    color: rgba(30, 61, 88, 0.35);
    font-weight: 400;
}
