        /* ===================== TOKENS ===================== */
        :root {
            --font: 'Montserrat', sans-serif;

            /* ── Brand Colors ── */
            --purple: #9333ea;
            --blue: #2563eb;
            --accent1: #b364fc;
            --accent2: #eb519e;

            /* ── Gradients ── */
            --g-hero: linear-gradient(to right, #9333ea, #2563eb);
            --g-accent: linear-gradient(to right, #b364fc, #eb519e);
            --g-dark: linear-gradient(135deg, #0f172a 0%, #111827 100%);

            /* ── Light Mode ── */
            --bg-light: #f3f4f6;
            --surface: #ffffff;
            --ink: #111827;
            --body: #374151;
            --muted: #6b7280;
            --border: #e5e7eb;
            --light: #f3f4f6;

            /* ── Dark Mode Surface ── */
            --bg-dark: #0f172a;
            --surface-dark: #111827;
            --ink-dark: #f9fafb;
            --muted-dark: #cbd5e1;
            --border-dark: #1f2933;

            /* ── Aliases (used throughout) ── */
            --indigo: #2563eb;
            --cyan: #2563eb;
            --pink: #eb519e;

            /* ── Layout ── */
            --r: 20px;
            --rl: 32px;
            --sh: 0 12px 40px rgba(147, 51, 234, .2);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0
        }

        html {
            scroll-behavior: smooth
        }

        body {
            font-family: var(--font);
            color: var(--body);
            background: var(--surface);
            overflow-x: hidden
        }

        /* ===================== TYPE ===================== */
        .dh {
            font-size: clamp(2.4rem, 4vw, 4.6rem);
            font-weight: 900;
            line-height: 1.08;
            letter-spacing: -2.5px;
            color: var(--ink)
        }

        .ds {
            font-size: clamp(1.9rem, 3.2vw, 2.9rem);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -1.5px;
            color: var(--ink)
        }

        .ey {
            font-size: .7rem;
            font-weight: 700;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--purple);
            display: block;
            margin-bottom: .9rem
        }

        .blg {
            font-size: 1.05rem;
            line-height: 1.75;
            color: var(--muted)
        }

        .bmd {
            font-size: .92rem;
            line-height: 1.65;
            color: var(--muted)
        }

        .gt {
            background: var(--g-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text
        }

        /* ===================== BUTTONS ===================== */
        .bp {
            display: inline-flex;
            align-items: center;
            gap: .55rem;
            background: var(--g-hero);
            color: #fff;
            border: none;
            border-radius: 50px;
            padding: .9rem 2rem;
            font-family: var(--font);
            font-weight: 700;
            font-size: .92rem;
            box-shadow: 0 8px 28px rgba(147, 51, 234, .35);
            transition: transform .25s, box-shadow .25s;
            text-decoration: none;
            cursor: pointer;
            white-space: nowrap
        }

        .bp:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 40px rgba(147, 51, 234, .45);
            color: #fff
        }

        .bg {
            display: inline-flex;
            align-items: center;
            gap: .55rem;
            background: transparent;
            color: var(--ink);
            border: 1.5px solid rgba(147, 51, 234, .3);
            border-radius: 50px;
            padding: .85rem 1.8rem;
            font-family: var(--font);
            font-weight: 600;
            font-size: .9rem;
            transition: all .25s;
            text-decoration: none
        }

        .bg:hover {
            border-color: var(--purple);
            background: rgba(147, 51, 234, .05);
            color: var(--purple);
            transform: translateY(-2px)
        }

        .sb {
            display: inline-flex;
            align-items: center;
            gap: .85rem;
            background: var(--ink);
            color: #fff;
            border-radius: 12px;
            padding: .75rem 1.5rem;
            font-family: var(--font);
            text-decoration: none;
            transition: all .3s
        }

        .sb:hover {
            background: var(--purple);
            transform: translateY(-3px);
            box-shadow: var(--sh);
            color: #fff
        }

        .sb i {
            font-size: 1.8rem
        }

        .sb .st small {
            display: block;
            font-size: .65rem;
            font-weight: 400;
            opacity: .7;
            line-height: 1.2;
            letter-spacing: 1px
        }

        .sb .st span {
            font-size: .95rem;
            font-weight: 700
        }

        .sbd {
            display: inline-flex;
            align-items: center;
            gap: .85rem;
            background: rgba(255, 255, 255, .08);
            /*color: #fff;*/
            border-radius: 12px;
            padding: .75rem 1.5rem;
            font-family: var(--font);
            text-decoration: none;
            transition: all .3s;
            border: 1.5px solid rgba(255, 255, 255, .15)
        }

        .sbd:hover {
            background: rgba(147, 51, 234, .5);
            border-color: rgba(147, 51, 234, .6);
            transform: translateY(-3px);
            color: #fff
        }

        .sbd i {
            font-size: 1.8rem
        }

        .sbd .st small {
            display: block;
            font-size: .65rem;
            font-weight: 400;
            opacity: .7;
            line-height: 1.2;
            letter-spacing: 1px
        }

        .sbd .st span {
            font-size: .95rem;
            font-weight: 700
        }

        /* ===================== NAVBAR ===================== */
        #nb {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1.1rem 0;
            transition: background .4s, padding .3s, box-shadow .3s
        }

        #nb.sc {
            background: rgba(255, 255, 255, .96);
            backdrop-filter: blur(20px);
            box-shadow: 0 1px 0 rgba(0, 0, 0, .06), 0 4px 20px rgba(0, 0, 0, .06);
            padding: .75rem 0
        }

        .nlogo {
            display: flex;
            align-items: center;
            gap: .65rem;
            font-family: var(--font);
            font-weight: 900;
            font-size: 1.2rem;
            letter-spacing: -.5px;
            color: var(--ink);
            text-decoration: none
        }

        .nlogo .li {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: var(--g-hero);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: #fff;
            box-shadow: 0 4px 12px rgba(147, 51, 234, .3);
            flex-shrink: 0
        }

        .nlinks {
            display: flex;
            align-items: center;
            gap: .25rem
        }

        .nlinks a {
            font-size: .83rem;
            font-weight: 500;
            color: var(--ink);
            text-decoration: none;
            padding: .45rem .9rem;
            border-radius: 50px;
            transition: background .2s, color .2s
        }

        .nlinks a:hover {
            background: rgba(147, 51, 234, .08);
            color: var(--purple)
        }

        .ntog {
            background: none;
            border: 1.5px solid rgba(147, 51, 234, .25);
            border-radius: 8px;
            padding: .4rem .65rem
        }

        .ntog-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2879,70,229,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
            width: 20px;
            height: 20px;
            display: inline-block;
            background-repeat: no-repeat;
            background-position: center;
            background-size: 100%
        }

        .mmenu {
            padding: .75rem 0
        }

        .mmenu a {
            display: block;
            font-size: .9rem;
            font-weight: 500;
            color: var(--ink);
            text-decoration: none;
            padding: .5rem 0;
            border-bottom: 1px solid rgba(147, 51, 234, .06)
        }

        /* ===================== DARK MODE TOGGLE ===================== */
        .thm-wrap {
            display: flex;
            align-items: center;
            gap: .5rem;
            flex-shrink: 0
        }

        .thm-icon {
            font-size: .85rem;
            transition: color .3s, opacity .3s;
            width: 16px;
            text-align: center
        }

        .thm-icon.sun {
            color: #f59e0b
        }

        .thm-icon.moon {
            color: #93c5fd
        }

        .thm-sw {
            position: relative;
            width: 44px;
            height: 24px;
            flex-shrink: 0
        }

        .thm-sw input {
            opacity: 0;
            width: 0;
            height: 0;
            position: absolute
        }

        .thm-sl {
            position: absolute;
            inset: 0;
            border-radius: 50px;
            background: #e5e7eb;
            cursor: pointer;
            transition: background .35s;
            border: 1.5px solid rgba(0, 0, 0, .08)
        }

        .thm-sl::before {
            content: '';
            position: absolute;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #fff;
            top: 50%;
            left: 1px;
            transform: translateY(-50%);
            transition: transform .35s cubic-bezier(.4, 0, .2, 1), box-shadow .3s;
            box-shadow: 0 1px 4px rgba(0, 0, 0, .2)
        }

        .thm-sw input:checked+.thm-sl {
            background: var(--g-hero);
            border-color: transparent
        }

        .thm-sw input:checked+.thm-sl::before {
            transform: translateY(-50%) translateX(20px);
            box-shadow: 0 1px 4px rgba(0, 0, 0, .3)
        }

        .thm-sw input:focus-visible+.thm-sl {
            outline: 2px solid var(--purple);
            outline-offset: 2px
        }

        /* ===================== DARK MODE STYLES ===================== */
        body.dark {
            --surface: #111827;
            --bg-light: #0f172a;
            --light: #0f172a;
            --ink: #0f172a;
            --body: #e2e8f0;
            --muted: #94a3b8;
            --border: #1e293b;
        }

        /* ══════════════════════════════════════════
   NUCLEAR DARK MODE — Every element covered
   ══════════════════════════════════════════ */

        /* BASE */
        body.dark {
            background: #111827 !important;
            color: #e2e8f0
        }

        /* ALL TYPOGRAPHY */
        body.dark h1,
        body.dark h2,
        body.dark h3,
        body.dark h4,
        body.dark h5,
        body.dark h6 {
            color: #f9fafb !important
        }

        body.dark p {
            color: #cbd5e1
        }

        body.dark strong {
            color: #f9fafb
        }

        body.dark small {
            color: #94a3b8
        }

        body.dark .dh {
            color: #f9fafb !important
        }

        body.dark .ds {
            color: #f9fafb !important
        }

        body.dark .blg {
            color: #cbd5e1 !important
        }

        body.dark .bmd {
            color: #94a3b8 !important
        }

        body.dark .ey {
            color: #a78bfa !important
        }

        body.dark .gt {
            background: var(--g-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text
        }

        body.dark .lpill {
            background: rgba(147, 51, 234, .18);
            border-color: rgba(147, 51, 234, .35);
            color: #a78bfa !important
        }

        body.dark .lping {
            background: #22c55e
        }

        /* NAVBAR */
        body.dark #nb.sc {
            background: rgba(17, 24, 39, .98) !important;
            box-shadow: 0 1px 0 rgba(255, 255, 255, .05), 0 4px 20px rgba(0, 0, 0, .5) !important
        }

        body.dark #nb:not(.sc) {
            background: rgba(15, 23, 42, .85) !important;
            backdrop-filter: blur(20px)
        }

        body.dark .nlogo {
            color: #fff !important
        }

        body.dark .nlinks a {
            color: rgba(255, 255, 255, .75) !important
        }

        body.dark .nlinks a:hover {
            color: #fff !important;
            background: rgba(255, 255, 255, .08) !important
        }

        body.dark .mmenu {
            background: rgba(17, 24, 39, .99) !important
        }

        body.dark .mmenu a {
            color: #f1f5f9 !important;
            border-color: rgba(255, 255, 255, .07) !important
        }

        body.dark .npill:not(.act) {
            color: rgba(255, 255, 255, .7) !important;
            border-color: rgba(255, 255, 255, .2) !important
        }

        body.dark .npill:not(.act):hover {
            color: #fff !important;
            background: rgba(255, 255, 255, .1) !important
        }

        body.dark .bg {
            color: rgba(255, 255, 255, .8) !important;
            border-color: rgba(255, 255, 255, .25) !important
        }

        body.dark .bg:hover {
            color: #a78bfa !important;
            background: rgba(147, 51, 234, .12) !important;
            border-color: #9333ea !important
        }

        body.dark .sb {
            background: rgba(255, 255, 255, .12) !important;
            color: #fff !important;
            border: 1.5px solid rgba(255, 255, 255, .18) !important
        }

        body.dark .sb:hover {
            background: #9333ea !important
        }

        body.dark .thm-sl {
            background: #334155 !important;
            border-color: rgba(255, 255, 255, .15) !important
        }

        /* ── ALL SECTIONS & DIVS — force dark background ── */
        body.dark section,
        body.dark .sec,
        body.dark .page {
            background: #111827 !important;
        }

        /* Hero */
        body.dark #hero {
            background: #0f172a !important
        }

        body.dark .s-hero {
            background: #0f172a !important
        }

        body.dark .u-hero {
            background: var(--ink) !important
        }

        /* keeps dark navy */

        /* White/light inline-style backgrounds → dark */
        body.dark [style*="background:#fff"],
        body.dark [style*="background: #fff"],
        body.dark [style*="background:white"],
        body.dark [style*="background: white"],
        body.dark [style*="background:var(--bg-light)"],
        body.dark [style*="background:var(--light)"],
        body.dark [style*="background:var(--surface)"] {
            background: #111827 !important;
        }

        /* bg-light sections */
        body.dark section[style*="background:var(--bg-light)"],
        body.dark section[style*="background:var(--light)"] {
            background: #0f172a !important;
        }

        /* Already dark — preserve */
        body.dark section[style*="background:var(--ink)"],
        body.dark section[style*="background:#111827"],
        body.dark section[style*="background:#0f172a"],
        body.dark section[style*="background:#0d0b1e"],
        body.dark .sbar,
        body.dark .u-dsec,
        body.dark #showcase,
        body.dark #cta,
        body.dark footer,
        body.dark .pcrd {
            /* intentionally left empty — let original dark bg show */
        }

        /* ── CTA / SHOWCASE / DARK HERO SECTIONS — override radial bg bleed ── */
        /* These have white radial glows in dark — suppress them */
        body.dark #cta {
            background: var(--ink) !important
        }

        body.dark #cta h2 {
            color: #fff !important
        }

        body.dark #cta p {
            color: rgba(255, 255, 255, .6) !important
        }

        body.dark .ctai .ey {
            color: #a78bfa !important
        }

        /* University CTA section */
        body.dark .u-hero~section[style*="padding:5rem"],
        body.dark [style*="padding:5rem 0;position:relative;overflow:hidden"] {
            background: var(--ink) !important
        }

        /* Student CTA section */
        body.dark [style*="padding:6rem 0;position:relative;overflow:hidden"] {
            background: var(--ink) !important
        }

        body.dark [style*="padding:6rem 0;position"] h2 {
            color: #fff !important
        }

        body.dark [style*="padding:6rem 0;position"] p {
            color: rgba(255, 255, 255, .6) !important
        }

        /* ── CAMPUS STRIP ── */
        body.dark .cstrip {
            background: #111827 !important;
            border-color: rgba(255, 255, 255, .08) !important
        }

        body.dark .csi {
            color: rgba(255, 255, 255, .65) !important;
            border-color: rgba(255, 255, 255, .07) !important
        }

        body.dark .csi span {
            color: rgba(255, 255, 255, .65) !important
        }

        body.dark .csi i {
            color: #9333ea !important
        }

        /* ── UBADGE ── */
        body.dark .ubadge {
            background: rgba(255, 255, 255, .07) !important;
            border-color: rgba(147, 51, 234, .3) !important
        }

        body.dark .ubadge span {
            color: #a78bfa !important
        }

        body.dark .ubadge small {
            color: #94a3b8 !important
        }

        body.dark .ubadge2 span {
            color: #c4b5fd !important
        }

        /* ── HRAT ── */
        body.dark .hrat span {
            color: #94a3b8 !important
        }

        body.dark .hrat strong {
            color: #f9fafb !important
        }

        /* ── FLOATING CARDS on hero ── */
        body.dark .fc {
            background: rgba(17, 24, 39, .92) !important;
            border-color: rgba(255, 255, 255, .12) !important;
            box-shadow: 0 8px 24px rgba(0, 0, 0, .4) !important
        }

        body.dark .fc span {
            color: #f9fafb !important
        }

        body.dark .fc small {
            color: #94a3b8 !important
        }

        /* ── STATS BAR ── */
        body.dark .sbar {
            background: #0a0f1e !important
        }

        body.dark .sblk {
            border-color: rgba(255, 255, 255, .07) !important
        }

        body.dark .sblk .lbl {
            color: rgba(255, 255, 255, .45) !important
        }

        /* ── FEATURE CARDS (home) ── */
        body.dark .fhl {
            background: rgba(147, 51, 234, .2) !important;
            border: 1px solid rgba(147, 51, 234, .3) !important
        }

        body.dark .fhl h3 {
            color: #fff !important
        }

        body.dark .fhl p {
            color: rgba(255, 255, 255, .7) !important
        }

        body.dark .fcard {
            background: rgba(255, 255, 255, .04) !important;
            border-color: rgba(255, 255, 255, .1) !important
        }

        body.dark .fcard h4 {
            color: #f9fafb !important
        }

        body.dark .fcard p {
            color: #94a3b8 !important
        }

        body.dark .fcard:hover {
            background: rgba(147, 51, 234, .1) !important;
            border-color: rgba(147, 51, 234, .4) !important
        }

        /* ── UNIVERSITY FEATURES ── */
        body.dark .ufc {
            background: rgba(255, 255, 255, .05) !important;
            border-color: rgba(255, 255, 255, .1) !important
        }

        body.dark .ufc h4 {
            color: #fff !important
        }

        body.dark .ufc p {
            color: rgba(255, 255, 255, .55) !important
        }

        body.dark .ufc:hover {
            background: rgba(147, 51, 234, .12) !important;
            border-color: rgba(147, 51, 234, .4) !important
        }

        /* ── SCREENSHOTS STRIP ── */
        body.dark .ssc {
            background: rgba(255, 255, 255, .04) !important;
            border-color: rgba(255, 255, 255, .1) !important
        }

        body.dark .sslbl {
            color: #94a3b8 !important
        }

        /* ── APP SHOWCASE section (already dark) ── */
        body.dark #showcase {
            background: var(--ink) !important
        }

        body.dark .sc-head h2 {
            color: #fff !important
        }

        body.dark .sc-head p {
            color: rgba(255, 255, 255, .55) !important
        }

        body.dark .sc-head .ey {
            color: rgba(179, 100, 252, .9) !important
        }

        body.dark .stab {
            color: rgba(255, 255, 255, .45) !important;
            border-color: rgba(255, 255, 255, .14) !important
        }

        body.dark .stab.on,
        .stab:hover {
            color: #fff !important
        }

        body.dark .sarr {
            background: rgba(255, 255, 255, .08) !important;
            border-color: rgba(255, 255, 255, .15) !important;
            color: rgba(255, 255, 255, .7) !important
        }

        /* ── HOW IT WORKS ── */
        body.dark .stpi {
            background: transparent !important
        }

        body.dark .stpi:hover {
            background: rgba(255, 255, 255, .04) !important;
            border-color: rgba(147, 51, 234, .2) !important
        }

        body.dark .stpi h4 {
            color: #f9fafb !important
        }

        body.dark .stpi p {
            color: #94a3b8 !important
        }

        body.dark .hwimg {
            border-color: rgba(147, 51, 234, .3) !important
        }

        /* ── BENEFITS (home) ── */
        body.dark .bcrd {
            background: rgba(255, 255, 255, .04) !important;
            border-color: rgba(255, 255, 255, .09) !important
        }

        body.dark .bcrd:hover {
            border-color: rgba(147, 51, 234, .35) !important;
            background: rgba(147, 51, 234, .09) !important
        }

        body.dark .bcrd h5 {
            color: #f9fafb !important
        }

        body.dark .bcrd p {
            color: #94a3b8 !important
        }

        body.dark .bvbox {
            background: rgba(147, 51, 234, .18) !important;
            border: 1px solid rgba(147, 51, 234, .28) !important
        }

        body.dark .bvi h3 {
            color: #fff !important
        }

        body.dark .bvi p {
            color: rgba(255, 255, 255, .65) !important
        }

        body.dark .bvi .ey {
            color: #a78bfa !important
        }

        /* ── MAP / CAMPUS ── */
        body.dark #cmap {
            background: #111827 !important
        }

        body.dark #cmap h2 {
            color: #f9fafb !important
        }

        body.dark #cmap p {
            color: #cbd5e1 !important
        }

        body.dark #cmap .ey {
            color: #a78bfa !important
        }

        body.dark .mcard {
            border-color: rgba(147, 51, 234, .25) !important;
            box-shadow: 0 20px 60px rgba(0, 0, 0, .4) !important
        }

        body.dark .ichip {
            background: rgba(255, 255, 255, .04) !important;
            border-color: rgba(147, 51, 234, .15) !important
        }

        body.dark .ichip:hover {
            background: rgba(147, 51, 234, .1) !important;
            border-color: rgba(147, 51, 234, .35) !important
        }

        body.dark .ichip h6 {
            color: #f9fafb !important
        }

        body.dark .ichip p {
            color: #94a3b8 !important
        }

        body.dark .ichip i {
            color: #9333ea !important
        }

        /* ── TESTIMONIALS MARQUEE ── */
        body.dark #sproof {
            background: #0f172a !important
        }

        body.dark .tcrd {
            background: rgba(255, 255, 255, .05) !important;
            border-color: rgba(255, 255, 255, .1) !important
        }

        body.dark .tcrd p {
            color: rgba(255, 255, 255, .75) !important
        }

        body.dark .tau strong {
            color: #f9fafb !important
        }

        body.dark .tau small {
            color: #94a3b8 !important
        }

        /* ── UNIVERSITY TESTIMONIALS ── */
        body.dark .utcrd {
            background: rgba(255, 255, 255, .06) !important;
            border-color: rgba(255, 255, 255, .1) !important
        }

        body.dark .utcrd p {
            color: rgba(255, 255, 255, .75) !important
        }

        body.dark .utcrd strong {
            color: #fff !important
        }

        body.dark .utcrd small {
            color: rgba(255, 255, 255, .4) !important
        }

        /* ── FAQ (home) ── */
        body.dark .fqi {
            background: rgba(255, 255, 255, .04) !important;
            border-color: rgba(255, 255, 255, .1) !important
        }

        body.dark .fqi.op {
            background: rgba(147, 51, 234, .08) !important;
            border-color: rgba(147, 51, 234, .35) !important
        }

        body.dark .fqq {
            color: #f9fafb !important
        }

        body.dark .fqq:hover {
            color: #a78bfa !important
        }

        body.dark .fqa {
            color: #94a3b8 !important
        }

        body.dark .fqic {
            background: rgba(147, 51, 234, .15) !important;
            color: #a78bfa !important
        }

        body.dark .fqi.op .fqic {
            background: #9333ea !important;
            color: #fff !important
        }

        /* ── STUDENT CARDS ── */
        body.dark .stcard {
            background: rgba(255, 255, 255, .04) !important;
            border-color: rgba(255, 255, 255, .09) !important
        }

        body.dark .stcard:hover {
            background: rgba(147, 51, 234, .09) !important;
            border-color: rgba(147, 51, 234, .35) !important
        }

        body.dark .stcard h4 {
            color: #f9fafb !important
        }

        body.dark .stcard p {
            color: #94a3b8 !important
        }

        /* ── BENEFIT CHIPS (student) ── */
        body.dark .bchip {
            background: rgba(255, 255, 255, .04) !important;
            border-color: rgba(255, 255, 255, .09) !important
        }

        body.dark .bchip:hover {
            background: rgba(147, 51, 234, .09) !important;
            border-color: rgba(147, 51, 234, .35) !important
        }

        body.dark .bchip h6 {
            color: #f9fafb !important
        }

        body.dark .bchip p {
            color: #94a3b8 !important
        }

        /* ── STUDENT TESTIMONIALS ── */
        body.dark .stv {
            background: rgba(255, 255, 255, .05) !important;
            border-color: rgba(255, 255, 255, .09) !important
        }

        body.dark .stv p {
            color: rgba(255, 255, 255, .75) !important
        }

        body.dark .stv strong {
            color: #f9fafb !important
        }

        body.dark .stv small {
            color: #94a3b8 !important
        }

        /* ── STUDENT FAQ ── */
        body.dark .sfqi {
            background: rgba(255, 255, 255, .04) !important;
            border-color: rgba(255, 255, 255, .1) !important
        }

        body.dark .sfqi.op {
            background: rgba(147, 51, 234, .08) !important;
            border-color: rgba(147, 51, 234, .35) !important
        }

        body.dark .sfqq {
            color: #f9fafb !important
        }

        body.dark .sfqq:hover {
            color: #a78bfa !important
        }

        body.dark .sfqa {
            color: #94a3b8 !important
        }

        body.dark .sfqic {
            background: rgba(147, 51, 234, .15) !important;
            color: #a78bfa !important
        }

        body.dark .sfqi.op .sfqic {
            background: #9333ea !important;
            color: #fff !important
        }

        /* ── UNIVERSITY PAGE HERO ── */
        body.dark .u-hero h1 {
            color: #fff !important
        }

        body.dark .u-hero .blg {
            color: rgba(255, 255, 255, .65) !important
        }

        body.dark .u-hero .ey {
            color: rgba(179, 100, 252, .9) !important
        }

        body.dark .ustat .lbl {
            color: #fff !important
        }

        /* ── DASHBOARD TABS ── */
        body.dark .dtab {
            color: rgba(255, 255, 255, .45) !important;
            border-color: rgba(255, 255, 255, .15) !important
        }

        body.dark .dtab.on {
            background: rgba(147, 51, 234, .5) !important;
            border-color: rgba(147, 51, 234, .7) !important;
            color: #fff !important
        }

        /* ── ONBOARDING STEPS (uni) ── */
        body.dark .upstep h5 {
            color: #fff !important
        }

        body.dark .upstep p {
            color: rgba(255, 255, 255, .5) !important
        }

        /* ── PRICING CARDS ── */
        body.dark .pcrd.free {
            background: rgba(255, 255, 255, .05) !important;
            border-color: rgba(255, 255, 255, .12) !important
        }

        body.dark .pcrd h3 {
            color: #fff !important
        }

        body.dark .pcrd .price {
            color: #fff !important
        }

        body.dark .pcrd ul li {
            color: rgba(255, 255, 255, .7) !important;
            border-color: rgba(255, 255, 255, .08) !important
        }

        /* ── DIVIDER ── */
        body.dark .div {
            background: linear-gradient(to right, transparent, rgba(147, 51, 234, .25), rgba(37, 99, 235, .25), transparent) !important
        }

        /* ── FOOTER ── */
        body.dark footer {
            background: #0a0f1e !important
        }

        body.dark .ftagl {
            color: rgba(255, 255, 255, .4) !important
        }

        body.dark .fadr {
            color: rgba(255, 255, 255, .35) !important
        }

        body.dark .fcol h6 {
            color: rgba(255, 255, 255, .35) !important
        }

        body.dark .fcol ul li a {
            color: rgba(255, 255, 255, .55) !important
        }

        body.dark .fcol ul li a:hover {
            color: #a78bfa !important
        }

        body.dark .fbot {
            color: rgba(255, 255, 255, .3) !important
        }

        body.dark .fbot a {
            color: rgba(255, 255, 255, .4) !important
        }

        body.dark .fbot a:hover {
            color: #a78bfa !important
        }

        body.dark .socb {
            border-color: rgba(255, 255, 255, .1) !important;
            color: rgba(255, 255, 255, .5) !important
        }

        body.dark .socb:hover {
            background: #9333ea !important;
            border-color: #9333ea !important;
            color: #fff !important
        }

        /* ── INLINE STYLE section that stay white bg in dark ── */
        /* catch-all for any div/section with light inline style NOT covered above */
        body.dark [style*="background:#fff"] {
            background: #111827 !important;
            color: #e2e8f0
        }

        body.dark [style*="background:var(--surface)"] {
            background: #111827 !important
        }

        /* Specifically: uni CTA "Ready to modernise" section */
        body.dark section[style*="overflow:hidden"][style*="padding"]:not([style*="var(--ink)"]):not([style*="#111827"]):not([style*="#0f172a"]) {
            background: #111827 !important;
        }

        /* Text inside those sections */
        body.dark section[style*="overflow:hidden"][style*="padding"] h2 {
            color: #f9fafb !important
        }

        body.dark section[style*="overflow:hidden"][style*="padding"] p {
            color: #94a3b8 !important
        }

        body.dark section[style*="overflow:hidden"][style*="padding"] .ey {
            color: #a78bfa !important
        }

        /* ── STORE BUTTONS (sbd) in dark sections ── */
        body.dark .sbd {
            background: rgba(255, 255, 255, .08) !important;
            border-color: rgba(255, 255, 255, .18) !important;
            color: #fff !important
        }

        body.dark .sbd:hover {
            background: rgba(147, 51, 234, .5) !important;
            border-color: rgba(147, 51, 234, .6) !important
        }

        /* ===================== HERO ===================== */
        #hero {
            min-height: 100vh;
            background: var(--bg-light);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 8rem 0 5rem
        }

        .hblob {
            position: absolute;
            border-radius: 50%;
            pointer-events: none
        }

        .hb1 {
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(147, 51, 234, .1) 0%, transparent 70%);
            top: -200px;
            right: -200px
        }

        .hb2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(37, 99, 235, .08) 0%, transparent 70%);
            bottom: -100px;
            left: -100px
        }

        .hb3 {
            width: 700px;
            height: 700px;
            top: 50%;
            right: -5%;
            transform: translateY(-50%);
            background: var(--g-hero);
            opacity: .07;
            border-radius: 40% 60% 70% 30%/40% 50% 60% 50%;
            animation: morph 10s ease-in-out infinite
        }

        @keyframes morph {

            0%,
            100% {
                border-radius: 40% 60% 70% 30%/40% 50% 60% 50%
            }

            33% {
                border-radius: 70% 30% 50% 50%/30% 30% 70% 70%
            }

            66% {
                border-radius: 30% 70% 30% 70%/50% 60% 40% 50%
            }
        }

        .ubadge {
            display: inline-flex;
            align-items: center;
            gap: .6rem;
            background: #fff;
            border: 1.5px solid rgba(147, 51, 234, .2);
            border-radius: 50px;
            padding: .45rem 1.1rem .45rem .6rem;
            margin-bottom: 1.4rem;
            box-shadow: 0 4px 16px rgba(147, 51, 234, .1)
        }

        .ubadge .ui {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--g-hero);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .8rem;
            color: #fff;
            flex-shrink: 0
        }

        .ubadge span {
            font-size: .78rem;
            font-weight: 700;
            color: var(--purple)
        }

        .ubadge small {
            display: block;
            font-size: .68rem;
            color: var(--muted);
            font-weight: 400
        }

        .lpill {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            background: rgba(147, 51, 234, .08);
            border: 1px solid rgba(147, 51, 234, .2);
            border-radius: 50px;
            padding: .4rem 1rem;
            font-size: .76rem;
            font-weight: 600;
            color: var(--purple);
            margin-bottom: 1rem
        }

        .lping {
            width: 8px;
            height: 8px;
            background: #22c55e;
            border-radius: 50%;
            animation: ping 1.5s ease-out infinite;
            flex-shrink: 0
        }

        @keyframes ping {
            0% {
                box-shadow: 0 0 0 0 rgba(34, 197, 94, .6)
            }

            70% {
                box-shadow: 0 0 0 7px rgba(34, 197, 94, 0)
            }

            100% {
                box-shadow: 0 0 0 0 rgba(34, 197, 94, 0)
            }
        }

        .hrat {
            display: flex;
            align-items: center;
            gap: .6rem;
            margin-top: 2rem
        }

        .sy {
            color: #f59e0b;
            font-size: .85rem
        }

        /* PHONE SCENE */
        .pscene {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 580px
        }

        .pglow {
            position: absolute;
            border-radius: 50%;
            pointer-events: none
        }

        .pg1 {
            width: 380px;
            height: 380px;
            background: radial-gradient(circle, rgba(147, 51, 234, .25) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%)
        }

        .pg2 {
            width: 260px;
            height: 260px;
            background: radial-gradient(circle, rgba(37, 99, 235, .2) 0%, transparent 70%);
            top: 20%;
            right: 5%
        }

        .pmain {
            width: 268px;
            position: relative;
            z-index: 2;
            animation: pflt 5s ease-in-out infinite;
            filter: drop-shadow(0 40px 60px rgba(147, 51, 234, .35))
        }

        @keyframes pflt {

            0%,
            100% {
                transform: translateY(0) rotate(-1deg)
            }

            50% {
                transform: translateY(-18px) rotate(1deg)
            }
        }

        .pmain .fr {
            border-radius: 42px;
            border: 3px solid rgba(255, 255, 255, .9);
            overflow: hidden;
            box-shadow: 0 0 0 1px rgba(147, 51, 234, .15), 0 40px 80px rgba(15, 23, 42, .35);
            background: #111827;
            position: relative
        }

        .nbar {
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 90px;
            height: 26px;
            background: rgba(15, 23, 42, .9);
            border-radius: 50px;
            z-index: 5
        }

        .fc {
            position: absolute;
            z-index: 4;
            background: rgba(255, 255, 255, .93);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, .9);
            border-radius: 12px;
            padding: .7rem 1rem;
            box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
            display: flex;
            align-items: center;
            gap: .65rem;
            font-size: .8rem;
            font-weight: 600;
            color: var(--ink);
            white-space: nowrap
        }

        .fci {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .9rem;
            flex-shrink: 0
        }

        .fc small {
            display: block;
            font-weight: 400;
            color: var(--muted);
            font-size: .7rem;
            line-height: 1.2
        }

        .fc1 {
            top: 8%;
            left: -10%;
            animation: flt 3.8s ease-in-out infinite
        }

        .fc2 {
            bottom: 18%;
            left: -10%;
            animation: flt 4.5s ease-in-out infinite;
            animation-delay: .6s
        }

        .fc3 {
            top: 35%;
            right: -10%;
            animation: flt 4.1s ease-in-out infinite;
            animation-delay: 1.1s
        }

        @keyframes flt {

            0%,
            100% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(-8px)
            }
        }

        /* HERO PHONE AUTO SLIDER */
        .has {
            position: relative;
            width: 100%;
            overflow: hidden
        }

        .has-slide {
            display: none
        }

        .has-slide.active {
            display: block
        }

        .has-slide img {
            width: 100%;
            display: block
        }

        /* ===================== COMMON ===================== */
        .sec {
            padding: 6rem 0
        }

        .div {
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(147, 51, 234, .15), rgba(37, 99, 235, .15), transparent)
        }

        /* CAMPUS STRIP */
        .cstrip {
            background: #fff;
            border-top: 1px solid rgba(147, 51, 234, .08);
            border-bottom: 1px solid rgba(147, 51, 234, .08);
            padding: 1.25rem 0
        }

        .csitems {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center
        }

        .csi {
            display: flex;
            align-items: center;
            gap: .5rem;
            padding: .4rem 1.8rem;
            border-right: 1px solid rgba(147, 51, 234, .1);
            font-size: .82rem;
            font-weight: 500;
            color: var(--body)
        }

        .csi:last-child {
            border-right: none
        }

        .csi i {
            color: var(--purple);
            font-size: .9rem
        }

        /* STATS */
        .sbar {
            background: var(--ink);
            padding: 2.5rem 0
        }

        .sblk {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            padding: .5rem 2rem;
            border-right: 1px solid rgba(255, 255, 255, .1)
        }

        .sblk:last-child {
            border-right: none
        }

        .sico {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0
        }

        .sblk .num {
            font-size: 2rem;
            font-weight: 900;
            letter-spacing: -1px;
            line-height: 1;
            background: var(--g-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text
        }

        .sblk .lbl {
            font-size: .78rem;
            color: rgba(255, 255, 255, .5);
            margin-top: 2px;
            font-weight: 500
        }

        .fi1 {
            background: linear-gradient(135deg, #ede9fe, #ddd6fe);
            color: var(--purple)
        }

        .fi2 {
            background: linear-gradient(135deg, #fce7f3, #fbcfe8);
            color: var(--pink)
        }

        .fi3 {
            background: linear-gradient(135deg, #dbeafe, #bfdbfe);
            color: var(--blue)
        }

        .fi4 {
            background: linear-gradient(135deg, #d1fae5, #a7f3d0);
            color: #059669
        }

        .fi5 {
            background: linear-gradient(135deg, #fef3c7, #fde68a);
            color: #d97706
        }

        .fi6 {
            background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
            color: var(--indigo)
        }

        /* ===================== FEATURES ===================== */
        .fhl {
            background: var(--ink);
            border-radius: var(--rl);
            padding: 3.5rem;
            position: relative;
            overflow: hidden
        }

        .fhl::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(147, 51, 234, .5) 0%, transparent 70%)
        }

        .fhl .ey {
            color: rgba(179, 100, 252, 1)
        }

        .fhl h3 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 800;
            letter-spacing: -1px;
            color: #fff;
            margin-bottom: 1rem
        }

        .fhl p {
            color: rgba(255, 255, 255, .65);
            max-width: 420px
        }

        .fgrid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem
        }

        @media(max-width:991px) {
            .fgrid {
                grid-template-columns: repeat(2, 1fr)
            }
        }

        @media(max-width:576px) {
            .fgrid {
                grid-template-columns: 1fr
            }
        }

        .fcard {
            background: var(--light);
            border: 1px solid rgba(147, 51, 234, .08);
            border-radius: var(--r);
            padding: 2rem 1.8rem;
            position: relative;
            overflow: hidden;
            transition: transform .3s, box-shadow .3s, border-color .3s
        }

        .fcard::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2.5px;
            background: var(--g-hero);
            opacity: 0;
            transition: opacity .3s
        }

        .fcard:hover {
            transform: translateY(-6px);
            box-shadow: var(--sh);
            border-color: rgba(147, 51, 234, .2)
        }

        .fcard:hover::before {
            opacity: 1
        }

        .fico {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            margin-bottom: 1.3rem
        }

        .fcard h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: .5rem
        }

        .fcard p {
            font-size: .86rem;
            line-height: 1.65;
            color: var(--muted)
        }

        /* ===================== SCREENSHOTS DRAG ===================== */
        .sst {
            display: flex;
            gap: 1.25rem;
            overflow-x: auto;
            padding: 1.5rem .5rem 2rem;
            scrollbar-width: thin;
            scrollbar-color: var(--purple) transparent;
            cursor: grab;
            user-select: none
        }

        .sst:active {
            cursor: grabbing
        }

        .sst::-webkit-scrollbar {
            height: 4px
        }

        .sst::-webkit-scrollbar-thumb {
            background: var(--purple);
            border-radius: 50px
        }

        .ssc {
            flex: 0 0 195px;
            border-radius: 26px;
            overflow: hidden;
            border: 2px solid rgba(147, 51, 234, .12);
            box-shadow: 0 16px 48px rgba(0, 0, 0, .12);
            transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), box-shadow .35s;
            position: relative;
            background: #fff
        }

        .ssc:hover {
            transform: translateY(-14px) scale(1.03);
            box-shadow: 0 32px 64px rgba(147, 51, 234, .28);
            border-color: rgba(147, 51, 234, .35)
        }

        .ssc img {
            width: 100%;
            display: block
        }

        .sslbl {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.5rem 1rem 1rem;
            background: linear-gradient(to top, rgba(17, 24, 39, .85) 0%, transparent 100%);
            font-size: .75rem;
            font-weight: 700;
            color: rgba(255, 255, 255, .9);
            letter-spacing: 1px;
            text-transform: uppercase;
            opacity: 0;
            transform: translateY(6px);
            transition: opacity .3s, transform .3s
        }

        .ssc:hover .sslbl {
            opacity: 1;
            transform: translateY(0)
        }

        /* ===================== APP SHOWCASE ===================== */
        #showcase {
            background: var(--ink);
            padding: 6rem 0 4rem;
            position: relative;
            overflow: hidden
        }

        #showcase::before {
            content: '';
            position: absolute;
            top: -100px;
            left: 50%;
            transform: translateX(-50%);
            width: 900px;
            height: 600px;
            background: radial-gradient(ellipse, rgba(147, 51, 234, .3) 0%, rgba(37, 99, 235, .1) 50%, transparent 70%);
            pointer-events: none
        }

        #showcase::after {
            content: '';
            position: absolute;
            bottom: -80px;
            right: -80px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(37, 99, 235, .2) 0%, transparent 70%);
            pointer-events: none
        }

        .sc-head .ey {
            color: rgba(179, 100, 252, .9)
        }

        .sc-head h2 {
            color: #fff
        }

        .sc-head p {
            color: rgba(255, 255, 255, .55);
            max-width: 520px;
            margin: .75rem auto 0
        }

        /* 5-phone spread */
        .phones-row {
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding: 4rem 0 1.5rem;
            position: relative;
            z-index: 1;
            gap: 0
        }

        .ph {
            position: relative;
            flex-shrink: 0;
            transition: transform .4s cubic-bezier(.34, 1.56, .64, 1)
        }

        .ph.sf {
            width: 160px;
            transform: rotate(-8deg) translateY(50px);
            opacity: .5;
            z-index: 1
        }

        .ph.sn {
            width: 205px;
            transform: rotate(-4deg) translateY(25px);
            opacity: .75;
            z-index: 2
        }

        .ph.ct {
            width: 255px;
            transform: none;
            opacity: 1;
            z-index: 5
        }

        .ph.snr {
            width: 205px;
            transform: rotate(4deg) translateY(25px);
            opacity: .75;
            z-index: 2
        }

        .ph.sfr {
            width: 160px;
            transform: rotate(8deg) translateY(50px);
            opacity: .5;
            z-index: 1
        }

        .phf {
            border-radius: 34px;
            overflow: hidden;
            position: relative;
            background: #0f0a1e
        }

        .ph.ct .phf {
            border: 2.5px solid rgba(255, 255, 255, .25);
            box-shadow: 0 40px 80px rgba(0, 0, 0, .7), 0 0 0 1px rgba(147, 51, 234, .3)
        }

        .ph.sn .phf,
        .ph.snr .phf {
            border: 2px solid rgba(255, 255, 255, .12);
            box-shadow: 0 20px 50px rgba(0, 0, 0, .5)
        }

        .ph.sf .phf,
        .ph.sfr .phf {
            border: 1.5px solid rgba(255, 255, 255, .08);
            box-shadow: 0 10px 28px rgba(0, 0, 0, .4)
        }

        .phf img {
            width: 100%;
            display: block;
            aspect-ratio: 9/19.5;
            object-fit: cover
        }

        .ph-notch {
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 65px;
            height: 20px;
            background: rgba(10, 7, 30, .95);
            border-radius: 50px;
            z-index: 5
        }

        /* center slideshow */
        .ph-ss {
            position: relative;
            width: 100%;
            aspect-ratio: 9/19.5;
            overflow: hidden;
            background: #111827
        }

        .ph-sl {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity .85s ease
        }

        .ph-sl.on {
            opacity: 1
        }

        .ph-sl img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block
        }

        /* dots */
        .sc-dots {
            display: flex;
            justify-content: center;
            gap: .5rem;
            margin-top: 1rem;
            position: relative;
            z-index: 1
        }

        .sdot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .25);
            cursor: pointer;
            transition: background .3s, transform .3s;
            border: none;
            padding: 0
        }

        .sdot.on {
            background: #fff;
            transform: scale(1.35)
        }

        /* tabs */
        .sc-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: .5rem;
            margin-top: 2rem;
            position: relative;
            z-index: 1
        }

        .stab {
            padding: .4rem 1rem;
            border-radius: 50px;
            font-size: .75rem;
            font-weight: 600;
            cursor: pointer;
            transition: all .3s;
            border: 1.5px solid rgba(255, 255, 255, .15);
            color: rgba(255, 255, 255, .5);
            background: transparent;
            font-family: var(--font)
        }

        .stab.on,
        .stab:hover {
            background: rgba(147, 51, 234, .5);
            border-color: rgba(147, 51, 234, .7);
            color: #fff
        }

        /* prev/next arrows */
        .sc-arrows {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1.5rem;
            position: relative;
            z-index: 1
        }

        .sarr {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .08);
            border: 1.5px solid rgba(255, 255, 255, .15);
            color: rgba(255, 255, 255, .7);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all .25s;
            font-size: .9rem
        }

        .sarr:hover {
            background: var(--purple);
            border-color: var(--purple);
            color: #fff
        }

        /* ===================== HOW IT WORKS ===================== */
        .howw {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center
        }

        @media(max-width:991px) {
            .howw {
                grid-template-columns: 1fr;
                gap: 3rem
            }
        }

        .stps {
            display: flex;
            flex-direction: column;
            gap: 1.5rem
        }

        .stpi {
            display: flex;
            gap: 1.25rem;
            align-items: flex-start;
            padding: 1.5rem;
            border-radius: var(--r);
            border: 1px solid transparent;
            transition: border-color .3s, background .3s, transform .3s
        }

        .stpi:hover {
            border-color: rgba(147, 51, 234, .2);
            background: var(--light);
            transform: translateX(6px)
        }

        .stn {
            flex-shrink: 0;
            width: 52px;
            height: 52px;
            border-radius: 16px;
            background: var(--g-hero);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 20px rgba(147, 51, 234, .3)
        }

        .stn span {
            font-size: 1.2rem;
            font-weight: 900;
            color: #fff
        }

        .stpi h4 {
            font-size: .95rem;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: .3rem
        }

        .stpi p {
            font-size: .85rem;
            color: var(--muted);
            line-height: 1.6;
            margin: 0
        }

        .hwp {
            display: flex;
            justify-content: center;
            position: relative
        }

        .hwp::before {
            content: '';
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
            width: 250px;
            height: 50px;
            background: radial-gradient(ellipse, rgba(147, 51, 234, .3) 0%, transparent 70%);
            filter: blur(12px)
        }

        .hwimg {
            width: 240px;
            border-radius: 36px;
            overflow: hidden;
            border: 2.5px solid rgba(147, 51, 234, .2);
            box-shadow: 0 30px 70px rgba(15, 23, 42, .25);
            animation: pflt 6s ease-in-out infinite;
            animation-delay: 1s
        }

        .hwimg img {
            width: 100%;
            display: block
        }

        /* ===================== BENEFITS ===================== */
        .brow {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.25rem
        }

        @media(max-width:576px) {
            .brow {
                grid-template-columns: 1fr
            }
        }

        .bcrd {
            background: #fff;
            border-radius: var(--r);
            padding: 1.75rem;
            border: 1px solid rgba(147, 51, 234, .08);
            display: flex;
            gap: 1.1rem;
            align-items: flex-start;
            box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
            transition: transform .3s, box-shadow .3s, border-color .3s
        }

        .bcrd:hover {
            transform: translateY(-5px);
            box-shadow: var(--sh);
            border-color: rgba(147, 51, 234, .2)
        }

        .bic {
            width: 46px;
            height: 46px;
            flex-shrink: 0;
            border-radius: 13px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem
        }

        .bcrd h5 {
            font-size: .9rem;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: .3rem
        }

        .bcrd p {
            font-size: .82rem;
            color: var(--muted);
            line-height: 1.55;
            margin: 0
        }

        .bvbox {
            background: var(--ink);
            border-radius: var(--rl);
            padding: 3rem 2.5rem;
            position: relative;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 420px
        }

        .bvbox::before {
            content: '';
            position: absolute;
            bottom: -60px;
            right: -60px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(37, 99, 235, .3) 0%, transparent 70%)
        }

        .bvbox::after {
            content: '';
            position: absolute;
            top: -60px;
            left: 40%;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(235, 81, 158, .3) 0%, transparent 70%)
        }

        .bvi {
            position: relative;
            z-index: 1
        }

        .bvi .ey {
            color: rgba(179, 100, 252, .9)
        }

        .bvi h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 800;
            color: #fff;
            letter-spacing: -1px
        }

        .bvi p {
            color: rgba(255, 255, 255, .6);
            font-size: .88rem;
            line-height: 1.65;
            margin-top: .75rem
        }

        .bvph {
            position: relative;
            z-index: 1;
            width: 130px;
            align-self: flex-end;
            border-radius: 20px;
            overflow: hidden;
            border: 2px solid rgba(255, 255, 255, .1);
            box-shadow: 0 20px 50px rgba(0, 0, 0, .4)
        }

        .bvph img {
            width: 100%;
            display: block
        }

        /* ===================== CAMPUS MAP ===================== */
        #cmap {
            background: var(--surface)
        }

        .mcard {
            border-radius: var(--rl);
            overflow: hidden;
            border: 1.5px solid rgba(147, 51, 234, .12);
            box-shadow: 0 20px 60px rgba(0, 0, 0, .1)
        }

        .mcard iframe {
            width: 100%;
            height: 380px;
            display: block;
            border: none
        }

        .igrid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem
        }

        @media(max-width:576px) {
            .igrid {
                grid-template-columns: 1fr
            }
        }

        .ichip {
            background: var(--light);
            border: 1px solid rgba(147, 51, 234, .1);
            border-radius: 14px;
            padding: 1.2rem 1.4rem;
            display: flex;
            gap: .85rem;
            align-items: flex-start;
            transition: border-color .3s, transform .3s, background .3s
        }

        .ichip:hover {
            border-color: rgba(147, 51, 234, .25);
            transform: translateY(-3px)
        }

        .ichip i {
            color: var(--purple);
            font-size: 1.1rem;
            margin-top: 2px;
            flex-shrink: 0
        }

        .ichip h6 {
            font-size: .82rem;
            font-weight: 700;
            color: var(--body);
            margin-bottom: .2rem
        }

        .ichip p {
            font-size: .78rem;
            color: var(--muted);
            margin: 0;
            line-height: 1.5
        }

        /* ===================== MARQUEE ===================== */
        #sproof {
            background: var(--light);
            overflow: hidden;
            padding: 3.5rem 0
        }

        .mwrap {
            overflow: hidden
        }

        .mtrack {
            display: flex;
            gap: 1.5rem;
            width: max-content;
            animation: mq 35s linear infinite
        }

        .mtrack:hover {
            animation-play-state: paused
        }

        @keyframes mq {
            from {
                transform: translateX(0)
            }

            to {
                transform: translateX(-50%)
            }
        }

        .tcrd {
            flex-shrink: 0;
            width: 300px;
            background: #fff;
            border-radius: var(--r);
            padding: 1.5rem;
            border: 1px solid rgba(147, 51, 234, .08);
            box-shadow: 0 4px 16px rgba(0, 0, 0, .04)
        }

        .tcrd .sy {
            font-size: .8rem;
            color: #f59e0b;
            margin-bottom: .6rem
        }

        .tcrd p {
            font-size: .84rem;
            color: var(--body);
            line-height: 1.6;
            font-style: italic;
            margin-bottom: .9rem
        }

        .tau {
            display: flex;
            align-items: center;
            gap: .6rem
        }

        .tav {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--g-hero);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .75rem;
            font-weight: 700;
            color: #fff
        }

        .tau strong {
            font-size: .82rem;
            font-weight: 700;
            color: var(--ink);
            display: block
        }

        .tau small {
            font-size: .72rem;
            color: var(--muted)
        }

        /* ===================== CTA ===================== */
        #cta {
            background: var(--ink);
            padding: 7rem 0;
            position: relative;
            overflow: hidden
        }

        #cta::before {
            content: '';
            position: absolute;
            top: -100px;
            left: 50%;
            transform: translateX(-50%);
            width: 900px;
            height: 600px;
            background: radial-gradient(ellipse, rgba(147, 51, 234, .35) 0%, rgba(37, 99, 235, .15) 40%, transparent 70%)
        }

        #cta::after {
            content: '';
            position: absolute;
            bottom: -80px;
            right: -80px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(37, 99, 235, .25) 0%, transparent 70%)
        }

        .ctai {
            position: relative;
            z-index: 1;
            text-align: center
        }

        .ctai .ey {
            color: rgba(179, 100, 252, .9)
        }

        .ctai h2 {
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            font-weight: 900;
            letter-spacing: -2px;
            color: #fff
        }

        .ctai p {
            color: rgba(255, 255, 255, .6);
            max-width: 500px;
            margin: 1.25rem auto 2.5rem;
            font-size: 1rem;
            line-height: 1.7
        }

        .sr {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap
        }

        /* ===================== FAQ ===================== */
        .fqi {
            background: #fff;
            border-radius: var(--r);
            border: 1px solid rgba(147, 51, 234, .08);
            margin-bottom: 1rem;
            overflow: hidden;
            transition: border-color .3s
        }

        .fqi.op {
            border-color: rgba(147, 51, 234, .25)
        }

        .fqq {
            width: 100%;
            background: none;
            border: none;
            padding: 1.35rem 1.75rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-family: var(--font);
            font-size: .92rem;
            font-weight: 700;
            color: var(--ink);
            cursor: pointer;
            text-align: left;
            gap: 1rem;
            transition: color .2s
        }

        .fqq:hover {
            color: var(--purple)
        }

        .fqic {
            width: 28px;
            height: 28px;
            flex-shrink: 0;
            border-radius: 8px;
            background: rgba(147, 51, 234, .08);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .85rem;
            color: var(--purple);
            transition: transform .3s, background .3s
        }

        .fqi.op .fqic {
            transform: rotate(45deg);
            background: var(--purple);
            color: #fff
        }

        .fqa {
            max-height: 0;
            overflow: hidden;
            transition: max-height .4s cubic-bezier(.4, 0, .2, 1), padding .3s;
            padding: 0 1.75rem;
            font-size: .88rem;
            color: var(--muted);
            line-height: 1.7
        }

        .fqi.op .fqa {
            max-height: 200px;
            padding: 0 1.75rem 1.35rem
        }

        /* ===================== FOOTER ===================== */
        footer {
            background: #111827;
            padding: 4.5rem 0 2rem;
            border-top: 1px solid rgba(255, 255, 255, .05)
        }

        .flogo {
            font-family: var(--font);
            font-weight: 900;
            font-size: 1.3rem;
            color: #fff;
            margin-bottom: .4rem
        }

        .ftagl {
            font-size: .82rem;
            color: rgba(255, 255, 255, .4);
            line-height: 1.6;
            max-width: 280px
        }

        .fadr {
            font-size: .78rem;
            color: rgba(255, 255, 255, .35);
            line-height: 1.7;
            margin-top: .8rem
        }

        .fadr i {
            color: var(--purple);
            margin-right: .3rem
        }

        .fcol h6 {
            font-size: .7rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .35);
            margin-bottom: 1.2rem
        }

        .fcol ul {
            list-style: none;
            padding: 0
        }

        .fcol ul li {
            margin-bottom: .6rem
        }

        .fcol ul li a {
            font-size: .87rem;
            color: rgba(255, 255, 255, .55);
            text-decoration: none;
            transition: color .2s
        }

        .fcol ul li a:hover {
            color: rgba(179, 100, 252, 1)
        }

        .socr {
            display: flex;
            gap: .6rem;
            margin-top: 1.5rem
        }

        .socb {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, .1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, .5);
            font-size: .85rem;
            text-decoration: none;
            transition: all .25s
        }

        .socb:hover {
            background: var(--purple);
            border-color: var(--purple);
            color: #fff;
            transform: translateY(-2px)
        }

        .fbot {
            border-top: 1px solid rgba(255, 255, 255, .06);
            padding-top: 1.75rem;
            margin-top: 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            font-size: .78rem;
            color: rgba(255, 255, 255, .3)
        }

        .fbot a {
            color: rgba(255, 255, 255, .4);
            text-decoration: none
        }

        .fbot a:hover {
            color: rgba(179, 100, 252, .8)
        }

        /* ===================== REVEAL ===================== */
        [data-sr] {
            opacity: 0;
            transition: opacity .7s ease, transform .7s ease
        }

        [data-sr="up"] {
            transform: translateY(40px)
        }

        [data-sr="left"] {
            transform: translateX(-40px)
        }

        [data-sr="right"] {
            transform: translateX(40px)
        }

        [data-sr="sc"] {
            transform: scale(.93)
        }

        [data-sr].in {
            opacity: 1;
            transform: none
        }

        [data-sr][data-d="1"] {
            transition-delay: .1s
        }

        [data-sr][data-d="2"] {
            transition-delay: .2s
        }

        [data-sr][data-d="3"] {
            transition-delay: .3s
        }

        [data-sr][data-d="4"] {
            transition-delay: .4s
        }

        [data-sr][data-d="5"] {
            transition-delay: .5s
        }

        /* ===================== RESPONSIVE ===================== */
        @media(max-width:768px) {
            #hero {
                padding: 7rem 0 4rem
            }

            .pscene {
                min-height: 420px
            }

            .pmain {
                width: 210px
            }

            .fc {
                display: none
            }

            .sbar .sblk {
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, .08);
                padding: 1rem 1.5rem
            }

            .fhl {
                padding: 2.5rem 1.5rem
            }

            .hwp {
                order: -1
            }

            .sec {
                padding: 4rem 0
            }

            .bvbox {
                min-height: 320px
            }

            .mcard iframe {
                height: 260px
            }

            .csi {
                border-right: none;
                padding: .4rem 1rem
            }

            .phones-row {
                gap: 0;
                padding: 3rem 0 1rem
            }

            .ph.sf,
            .ph.sfr {
                display: none
            }

            .ph.ct {
                width: 200px
            }

            .ph.sn,
            .ph.snr {
                width: 155px
            }
        }

        ::-webkit-scrollbar {
            width: 5px
        }

        ::-webkit-scrollbar-track {
            background: #f1f5f9
        }

        ::-webkit-scrollbar-thumb {
            background: var(--purple);
            border-radius: 50px
        }


        /* PAGE SWITCHER */
        .page {
            display: none
        }

        .page.active {
            display: block
        }

        .npill {
            display: inline-flex;
            align-items: center;
            gap: .4rem;
            padding: .45rem 1.1rem;
            border-radius: 50px;
            font-size: .8rem;
            font-weight: 700;
            cursor: pointer;
            border: 1.5px solid rgba(147, 51, 234, .25);
            background: transparent;
            font-family: var(--font);
            color: var(--ink);
            transition: all .22s;
            text-decoration: none
        }

        .npill:hover,
        .npill.act {
            background: var(--g-hero);
            color: #fff;
            border-color: transparent;
            box-shadow: 0 4px 16px rgba(147, 51, 234, .3)
        }

        .npill i {
            font-size: .75rem
        }

        .nlinks a.pg-a {
            color: var(--purple);
            background: rgba(147, 51, 234, .08)
        }

        /* ── UNIVERSITY PAGE ── */
        .u-hero {
            min-height: 100vh;
            background: var(--light);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 8rem 0 5rem
        }

        .u-hero::before {
            content: '';
            position: absolute;
            top: -150px;
            left: 50%;
            transform: translateX(-50%);
            width: 900px;
            height: 700px;
            background: radial-gradient(ellipse, rgba(147, 51, 234, .35) 0%, rgba(37, 99, 235, .1) 45%, transparent 70%);
            pointer-events: none
        }

        .u-hero::after {
            content: '';
            position: absolute;
            bottom: -80px;
            right: -80px;
            width: 480px;
            height: 480px;
            background: radial-gradient(circle, rgba(37, 99, 235, .18) 0%, transparent 70%);
            pointer-events: none
        }

        .ubadge2 {
            display: inline-flex;
            align-items: center;
            gap: .6rem;
            background: rgba(255, 255, 255, .07);
            border: 1px solid rgba(255, 255, 255, .14);
            border-radius: 50px;
            padding: .45rem 1.1rem .45rem .6rem;
            margin-bottom: 1.4rem
        }

        .ubadge2 .ui2 {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--g-hero);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .82rem;
            color: #fff;
            flex-shrink: 0
        }

        .ubadge2 span {
            font-size: .78rem;
            font-weight: 700;
            color: rgba(179, 100, 252, 1)
        }

        .u-hero h1 {
            color: #000;
        }

        .u-hero .ey {
            color: rgba(179, 100, 252, .85)
        }

        .u-hero .blg {
            color: #000;
        }

        .u-dsec {
            /*background: var(--ink);*/
            background:#f6f6f6;
            padding: 5rem 0;
            position: relative;
            overflow: hidden
        }

        .u-dsec::before {
            content: '';
            position: absolute;
            top: -60px;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 400px;
            background: radial-gradient(ellipse, rgba(147, 51, 234, .2) 0%, transparent 70%)
        }

        .dash-wrap {
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 24px 70px rgba(0, 0, 0, .55);
            border: 1px solid rgba(255, 255, 255, .07)
        }

        .dash-wrap img {
            width: 100%;
            display: block
        }

        .dash-tabs {
            display: flex;
            gap: .6rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap
        }

        .dtab {
            padding: .5rem 1.2rem;
            border-radius: 50px;
            font-size: .78rem;
            font-weight: 700;
            cursor: pointer;
            border: 1.5px solid rgba(255, 255, 255, .14);
            color: rgba(255, 255, 255, .45);
            background: transparent;
            font-family: var(--font);
            transition: all .25s
        }

        .dtab.on {
            background: rgba(147, 51, 234, .45);
            border-color: rgba(147, 51, 234, .7);
            color: #fff
        }

        .dpanel {
            display: none
        }

        .dpanel.on {
            display: block
        }

        .ustat {
            text-align: center;
            padding: 2rem 1rem
        }

        .ustat .num {
            font-size: 2.8rem;
            font-weight: 900;
            letter-spacing: -2px;
            background: var(--g-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text
        }

        .ustat .lbl {
            font-size: .8rem;
            color: #000;
            font-weight: 500;
            margin-top: .3rem
        }

        .ufc {
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: var(--r);
            padding: 2rem;
            transition: border-color .3s, transform .3s, background .3s
        }

        .ufc:hover {
            border-color: rgba(147, 51, 234, .4);
            background: rgba(147, 51, 234, .08);
            transform: translateY(-5px)
        }

        .ufc .fico {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            margin-bottom: 1.2rem
        }

        .ufc h4 {
            font-size: 1rem;
            font-weight: 700;
            color: #000;
            margin-bottom: .5rem
        }

        .ufc p {
            font-size: .86rem;
            line-height: 1.65;
            color: #000;
        }

        .upstep {
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
            margin-bottom: 1.75rem
        }

        .upstep .un {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: var(--g-hero);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            font-weight: 900;
            color: #fff;
            box-shadow: 0 6px 18px rgba(147, 51, 234, .3)
        }

        .upstep h5 {
            font-size: .95rem;
            font-weight: 700;
            color: #000;
            margin-bottom: .3rem
        }

        .upstep p {
            font-size: .86rem;
            color: #000;
            line-height: 1.6;
            margin: 0
        }

        .utcrd {
            background: rgba(255, 255, 255, .05);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: var(--r);
            padding: 1.75rem;
            height: 100%
        }

        .utcrd p {
            font-size: .88rem;
            color: #000;
            line-height: 1.65;
            font-style: italic;
            margin-bottom: 1rem
        }

        .utcrd .tau {
            display: flex;
            align-items: center;
            gap: .7rem
        }

        .utcrd .tav {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--g-hero);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .78rem;
            font-weight: 700;
            color: #fff
        }

        .utcrd strong {
            font-size: .84rem;
            font-weight: 700;
            color: #000;
            display: block
        }

        .utcrd small {
            font-size: .74rem;
            color:#000;
        }

        .pcrd {
            border-radius: var(--rl);
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            height: 100%
        }

        .pcrd.free {
            background: rgba(255, 255, 255, .04);
            border: 1.5px solid rgba(255, 255, 255, .1)
        }

        .pcrd.pro {
            background: var(--g-hero);
            border: none
        }

        .pcrd h3 {
            font-size: 1.4rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: .4rem
        }

        .pcrd .price {
            font-size: 2.6rem;
            font-weight: 900;
            color: #fff;
            letter-spacing: -1.5px;
            line-height: 1
        }

        .pcrd .price sub {
            font-size: .88rem;
            font-weight: 400;
            opacity: .6
        }

        .pcrd ul {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0
        }

        .pcrd ul li {
            font-size: .86rem;
            color: rgba(255, 255, 255, .7);
            padding: .4rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, .07);
            display: flex;
            gap: .55rem;
            align-items: flex-start
        }

        .pcrd ul li i {
            color: #22c55e;
            font-size: .85rem;
            margin-top: 2px;
            flex-shrink: 0
        }

        .pcrd.pro ul li {
            color: rgba(255, 255, 255, .9)
        }

        .pop-tag {
            position: absolute;
            top: 1.2rem;
            right: 1.2rem;
            background: rgba(255, 255, 255, .18);
            color: #fff;
            border-radius: 50px;
            padding: .2rem .75rem;
            font-size: .7rem;
            font-weight: 700
        }

        /* ── STUDENT PAGE ── */
        .s-hero {
            min-height: 100vh;
            background: var(--bg-light);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 8rem 0 5rem
        }

        .s-hero::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(147, 51, 234, .09) 0%, transparent 70%)
        }

        .s-hero::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(37, 99, 235, .07) 0%, transparent 70%)
        }

        .s-phone-wrap {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: flex-end
        }

        .s-ph {
            border-radius: 32px;
            overflow: hidden;
            position: relative
        }

        .s-ph.main {
            width: 230px;
            z-index: 3;
            box-shadow: 0 30px 70px rgba(15, 23, 42, .22);
            border: 2.5px solid rgba(147, 51, 234, .2);
            animation: pflt 5s ease-in-out infinite
        }

        .s-ph.side {
            width: 165px;
            opacity: .5;
            z-index: 2;
            box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
            border: 2px solid rgba(147, 51, 234, .1)
        }

        .s-ph.side.l {
            transform: rotate(-7deg) translateX(32px) translateY(32px)
        }

        .s-ph.side.r {
            transform: rotate(7deg) translateX(-32px) translateY(32px)
        }

        .s-ph img {
            width: 100%;
            display: block
        }

        .stcard {
            background: #fff;
            border-radius: var(--r);
            padding: 2rem;
            border: 1px solid rgba(147, 51, 234, .08);
            position: relative;
            overflow: hidden;
            transition: transform .3s, box-shadow .3s, border-color .3s;
            height: 100%
        }

        .stcard::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--g-hero);
            opacity: 0;
            transition: opacity .3s
        }

        .stcard:hover {
            transform: translateY(-6px);
            box-shadow: var(--sh);
            border-color: rgba(147, 51, 234, .2)
        }

        .stcard:hover::before {
            opacity: 1
        }

        .stcard .sn {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: var(--g-hero);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            font-weight: 900;
            color: #fff;
            margin-bottom: 1.2rem;
            box-shadow: 0 6px 18px rgba(147, 51, 234, .3)
        }

        .stcard h4 {
            font-size: .98rem;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: .5rem
        }

        .stcard p {
            font-size: .86rem;
            line-height: 1.65;
            color: var(--muted);
            margin: 0
        }

        .bchip {
            display: flex;
            align-items: flex-start;
            gap: .9rem;
            background: #fff;
            border: 1px solid rgba(147, 51, 234, .08);
            border-radius: 16px;
            padding: 1.25rem 1.4rem;
            box-shadow: 0 3px 14px rgba(0, 0, 0, .04);
            transition: transform .3s, box-shadow .3s, border-color .3s
        }

        .bchip:hover {
            transform: translateY(-4px);
            box-shadow: var(--sh);
            border-color: rgba(147, 51, 234, .2)
        }

        .bchip .ico {
            width: 44px;
            height: 44px;
            flex-shrink: 0;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem
        }

        .bchip h6 {
            font-size: .88rem;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: .25rem
        }

        .bchip p {
            font-size: .8rem;
            color: var(--muted);
            margin: 0;
            line-height: 1.5
        }

        .stv {
            background: #fff;
            border-radius: var(--r);
            padding: 1.75rem;
            border: 1px solid rgba(147, 51, 234, .08);
            box-shadow: 0 4px 16px rgba(0, 0, 0, .04);
            height: 100%
        }

        .stv .sy {
            color: #f59e0b;
            font-size: .82rem;
            margin-bottom: .6rem
        }

        .stv p {
            font-size: .86rem;
            line-height: 1.65;
            color: var(--body);
            font-style: italic;
            margin-bottom: 1rem
        }

        .stv .tau {
            display: flex;
            align-items: center;
            gap: .6rem
        }

        .stv .tav {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: var(--g-hero);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .76rem;
            font-weight: 700;
            color: #fff
        }

        .stv strong {
            font-size: .83rem;
            font-weight: 700;
            color: var(--ink);
            display: block
        }

        .stv small {
            font-size: .73rem;
            color: var(--muted)
        }

        .sfqi {
            background: #fff;
            border-radius: var(--r);
            border: 1px solid rgba(147, 51, 234, .08);
            margin-bottom: 1rem;
            overflow: hidden;
            transition: border-color .3s
        }

        .sfqi.op {
            border-color: rgba(147, 51, 234, .25)
        }

        .sfqq {
            width: 100%;
            background: none;
            border: none;
            padding: 1.2rem 1.6rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-family: var(--font);
            font-size: .9rem;
            font-weight: 700;
            color: var(--ink);
            cursor: pointer;
            text-align: left;
            gap: 1rem;
            transition: color .2s
        }

        .sfqq:hover {
            color: var(--purple)
        }

        .sfqic {
            width: 26px;
            height: 26px;
            flex-shrink: 0;
            border-radius: 7px;
            background: rgba(147, 51, 234, .08);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .8rem;
            color: var(--purple);
            transition: transform .3s, background .3s
        }

        .sfqi.op .sfqic {
            transform: rotate(45deg);
            background: var(--purple);
            color: #fff
        }

        .sfqa {
            max-height: 0;
            overflow: hidden;
            transition: max-height .4s cubic-bezier(.4, 0, .2, 1), padding .3s;
            padding: 0 1.6rem;
            font-size: .86rem;
            color: var(--muted);
            line-height: 1.7
        }

        .sfqi.op .sfqa {
            max-height: 180px;
            padding: 0 1.6rem 1.2rem
        }
/* spacing */
.dash-wrap{
    padding:20px;
}

/* tabs */
.dtab{
    background:#1f2937;
    color:#fff;
    border:none;
    padding:10px 18px;
    margin:0 5px;
    border-radius:20px;
    cursor:pointer;
}
.dtab.on{
    background:linear-gradient(45deg,#9333ea,#2563eb);
}

/* panels */
.dpanel{display:none;}
.dpanel.on{display:block;}

/* grid */
.grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

/* cards */
.card{
    background:#111827;
    padding:10px;
    border-radius:12px;
}
.card img{
    width:100%;
    border-radius:10px;
}
/* ===== WRAPPER ===== */
.slider-wrapper {
  overflow: hidden;
  position: relative;
}

/* ===== TRACK ===== */
.slider-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollSlider 90s linear infinite;
}

/* pause on hover */
.slider-wrapper:hover .slider-track {
  animation-play-state: paused;
}

/* ===== CARD ===== */
section#screenshots .ssc {
  min-width: 260px;
  flex: 0 0 260px;
  position: relative;
}

section#screenshots .ssc img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* ===== LABEL ===== */
section#screenshots .sslbl {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff;
  font-size: 12px;
  background: rgba(0,0,0,0.5);
  padding: 4px 8px;
  border-radius: 6px;
}

/* ===== INFINITE ANIMATION ===== */
@keyframes scrollSlider {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== DOTS ===== */
section#screenshots .slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 10px;
}

section#screenshots .slider-dots span {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  transition: 0.3s;
}

section#screenshots .slider-dots span.active {
  background: #000;
  transform: scale(1.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
section#screenshots  .ssc { min-width: 200px; }
}

@media (max-width: 480px) {
section#screenshots  .ssc { min-width: 160px; }
}


/* =============================================================
   privacy.css  —  Campus Navigator Privacy Policy Page Styles
   Import AFTER style.css  (tokens are already defined there)
   ============================================================= */

/* ── Page wrapper ── */
.pp-main {
    padding-top: 7rem;   /* clears fixed navbar */
    padding-bottom: 6rem;
    background: var(--bg-light);
    min-height: 100vh;
}

body.dark .pp-main {
    background: #0f172a;
}

/* ── HERO ── */
.pp-hero {
    text-align: center;
    padding: 3.5rem 0 2.5rem;
    position: relative;
}

.pp-hero .dh {
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.pp-sub {
    max-width: 560px;
    margin: 0 auto 1.5rem;
}

/* Badge */
.pp-badge {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: rgba(147, 51, 234, .08);
    border: 1.5px solid rgba(147, 51, 234, .2);
    border-radius: 50px;
    padding: .45rem 1.2rem;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 1.4rem;
}

body.dark .pp-badge {
    background: rgba(147, 51, 234, .18);
    border-color: rgba(147, 51, 234, .35);
    color: #a78bfa;
}

.pp-badge i {
    font-size: .85rem;
}

/* Meta chips */
.pp-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: .5rem;
}

.pp-meta-chip {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .8rem;
    font-weight: 500;
    color: var(--muted);
}

body.dark .pp-meta-chip {
    color: #94a3b8;
}

.pp-meta-chip i {
    color: var(--purple);
    font-size: .8rem;
}

/* Decorative line under hero */
.pp-hero-line {
    width: 120px;
    height: 3px;
    background: var(--g-hero);
    border-radius: 3px;
    margin: 2rem auto 0;
    opacity: .4;
}

/* ── SUMMARY CARD ── */
.pp-summary {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: #fff;
    border: 1.5px solid rgba(147, 51, 234, .15);
    border-radius: var(--r);
    padding: 1.5rem 1.75rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 24px rgba(147, 51, 234, .08);
    position: relative;
    overflow: hidden;
}

.pp-summary::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--g-hero);
}

body.dark .pp-summary {
    background: #111827;
    border-color: rgba(147, 51, 234, .25);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .3);
}

.pp-summary-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    background: var(--g-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 6px 18px rgba(147, 51, 234, .3);
}

.pp-summary p {
    font-size: .95rem;
    line-height: 1.75;
    color: var(--body);
    margin: 0;
}

body.dark .pp-summary p {
    color: #cbd5e1;
}

.pp-summary strong {
    color: var(--ink);
    font-weight: 700;
}

body.dark .pp-summary strong {
    color: #f9fafb;
}

/* ── SECTION CARDS ── */
.pp-sections {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.pp-card {
    background: #fff;
    border: 1px solid rgba(147, 51, 234, .08);
    border-radius: var(--r);
    padding: 2rem 2.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}

.pp-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--g-hero);
    opacity: 0;
    transition: opacity .3s;
}

.pp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh);
    border-color: rgba(147, 51, 234, .2);
}

.pp-card:hover::before {
    opacity: 1;
}

body.dark .pp-card {
    background: #111827;
    border-color: rgba(255, 255, 255, .07);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .3);
}

body.dark .pp-card:hover {
    border-color: rgba(147, 51, 234, .35);
    background: rgba(147, 51, 234, .06);
}

/* Card head */
.pp-card-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.pp-num {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: rgba(147, 51, 234, .08);
    color: var(--purple);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .04em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .3s, color .3s;
}

.pp-card:hover .pp-num {
    background: var(--g-hero);
    color: #fff;
}

body.dark .pp-num {
    background: rgba(147, 51, 234, .2);
    color: #c084fc;
}

body.dark .pp-card:hover .pp-num {
    background: var(--g-hero);
    color: #fff;
}

.pp-card-head h2 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.3px;
    margin: 0;
}

body.dark .pp-card-head h2 {
    color: #f9fafb;
}

/* Card body */
.pp-card-body {
    padding-left: 3rem;
}

.pp-card-body p {
    font-size: .9rem;
    line-height: 1.8;
    color: var(--body);
    margin-bottom: .75rem;
}

.pp-card-body p:last-child { margin-bottom: 0; }

body.dark .pp-card-body p {
    color: #cbd5e1;
}

/* ── LIST ── */
.pp-list {
    list-style: none;
    padding: 0;
    margin: .5rem 0 0;
}

.pp-list li {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    font-size: .9rem;
    color: var(--body);
    padding: .75rem 0;
    border-bottom: 1px solid rgba(147, 51, 234, .07);
    line-height: 1.7;
}

.pp-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

body.dark .pp-list li {
    color: #cbd5e1;
    border-color: rgba(255, 255, 255, .05);
}

/* Gradient dot */
.pp-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--g-hero);
    flex-shrink: 0;
    margin-top: 9px;
}

/* Label bold */
.pp-lbl {
    font-weight: 700;
    color: var(--ink);
}

body.dark .pp-lbl {
    color: #f9fafb;
}

/* ── NO-COLLECT icon ── */
.pp-no-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(235, 81, 158, .1);
    color: var(--pink);
    font-size: .65rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}

body.dark .pp-no-icon {
    background: rgba(235, 81, 158, .18);
}

/* ── RIGHTS GRID ── */
.pp-rights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: .75rem;
}

@media (max-width: 768px) {
    .pp-rights-grid {
        grid-template-columns: 1fr;
    }
}

.pp-right-chip {
    display: flex;
    align-items: center;
    gap: .85rem;
    background: var(--light);
    border: 1px solid rgba(147, 51, 234, .1);
    border-radius: 14px;
    padding: 1rem 1.1rem;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}

.pp-right-chip:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh);
    border-color: rgba(147, 51, 234, .25);
}

body.dark .pp-right-chip {
    background: rgba(255, 255, 255, .04);
    border-color: rgba(255, 255, 255, .08);
}

body.dark .pp-right-chip:hover {
    background: rgba(147, 51, 234, .1);
    border-color: rgba(147, 51, 234, .35);
}

.pp-right-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.pp-right-chip span {
    font-size: .82rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.35;
}

body.dark .pp-right-chip span {
    color: #f1f5f9;
}

/* ── CONTACT NOTE ── */
.pp-contact-note {
    margin-top: 1.25rem;
    background: var(--light);
    border-left: 3px solid var(--purple);
    border-radius: 0 12px 12px 0;
    padding: .85rem 1.1rem;
    font-size: .85rem;
    font-weight: 500;
    color: var(--body);
    display: flex;
    align-items: center;
    gap: .6rem;
}

.pp-contact-note i {
    color: var(--purple);
    font-size: .9rem;
    flex-shrink: 0;
}

body.dark .pp-contact-note {
    background: rgba(255, 255, 255, .04);
    color: #94a3b8;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .pp-main {
        padding-top: 6rem;
        padding-bottom: 4rem;
    }

    .pp-card {
        padding: 1.5rem 1.25rem;
    }

    .pp-card-body {
        padding-left: 0;
    }

    .pp-hero .dh {
        font-size: 2.2rem;
    }
}

/* =============================================================
   delete-account.css  —  Campus Navigator Delete Account Page
   Import AFTER style.css
   ============================================================= */

/* ── Main wrapper ── */
.da-main {
    padding-top: 7rem;
    padding-bottom: 6rem;
    background: var(--bg-light);
    min-height: 100vh;
}

body.dark .da-main {
    background: #0f172a;
}

/* ── HERO ── */
.da-hero {
    text-align: center;
    padding: 3.5rem 0 2.5rem;
}

.da-hero .dh {
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.da-sub {
    max-width: 560px;
    margin: 0 auto 1.5rem;
}

.da-badge {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: rgba(239, 68, 68, .08);
    border: 1.5px solid rgba(239, 68, 68, .2);
    border-radius: 50px;
    padding: .45rem 1.2rem;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #dc2626;
    margin-bottom: 1.4rem;
}

body.dark .da-badge {
    background: rgba(239, 68, 68, .15);
    border-color: rgba(239, 68, 68, .3);
    color: #f87171;
}

.da-badge i { font-size: .85rem; }

.da-hero-line {
    width: 120px;
    height: 3px;
    background: var(--g-hero);
    border-radius: 3px;
    margin: 2rem auto 0;
    opacity: .35;
}

/* ── WARNING BANNER ── */
.da-warning {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    background: rgba(239, 68, 68, .06);
    border: 1.5px solid rgba(239, 68, 68, .2);
    border-radius: var(--r);
    padding: 1.35rem 1.75rem;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}

.da-warning::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(to bottom, #ef4444, #dc2626);
    border-radius: 4px 0 0 4px;
}

body.dark .da-warning {
    background: rgba(239, 68, 68, .1);
    border-color: rgba(239, 68, 68, .25);
}

.da-warning-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 11px;
    background: rgba(239, 68, 68, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc2626;
    font-size: 1.1rem;
}

body.dark .da-warning-icon {
    background: rgba(239, 68, 68, .2);
    color: #f87171;
}

.da-warning strong {
    font-size: .92rem;
    font-weight: 800;
    color: #b91c1c;
    display: block;
    margin-bottom: .3rem;
}

body.dark .da-warning strong {
    color: #fca5a5;
}

.da-warning p {
    font-size: .86rem;
    color: var(--body);
    margin: 0;
    line-height: 1.6;
}

body.dark .da-warning p {
    color: #94a3b8;
}

/* ── TWO-COL GRID ── */
.da-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

@media (max-width: 991px) {
    .da-grid {
        grid-template-columns: 1fr;
    }
}

/* ── LEFT COLUMN: Step cards ── */
.da-left {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.da-card {
    background: #fff;
    border: 1px solid rgba(147, 51, 234, .08);
    border-radius: var(--r);
    padding: 1.75rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}

.da-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--g-hero);
    opacity: 0;
    transition: opacity .3s;
}

.da-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh);
    border-color: rgba(147, 51, 234, .2);
}

.da-card:hover::before { opacity: 1; }

body.dark .da-card {
    background: #111827;
    border-color: rgba(255, 255, 255, .07);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .3);
}

body.dark .da-card:hover {
    border-color: rgba(147, 51, 234, .35);
    background: rgba(147, 51, 234, .06);
}

.da-card-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.1rem;
}

.da-step-num {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--g-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(147, 51, 234, .3);
}

.da-card-head h2 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.3px;
    margin: 0;
}

body.dark .da-card-head h2 { color: #f9fafb; }

.da-card-body p {
    font-size: .9rem;
    line-height: 1.75;
    color: var(--body);
    margin-bottom: 1rem;
}

body.dark .da-card-body p { color: #cbd5e1; }

/* Email button */
.da-email-btn {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    background: var(--g-hero);
    color: #fff;
    font-family: var(--font);
    font-size: .88rem;
    font-weight: 700;
    padding: .75rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(147, 51, 234, .3);
    transition: transform .25s, box-shadow .25s;
    word-break: break-all;
}

.da-email-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(147, 51, 234, .45);
    color: #fff;
}

.da-email-btn i { font-size: .85rem; flex-shrink: 0; }

/* Subject chip */
.da-subject-chip {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: var(--light);
    border: 1.5px dashed rgba(147, 51, 234, .3);
    border-radius: 12px;
    padding: .9rem 1.1rem;
    font-size: .92rem;
    font-weight: 700;
    color: var(--ink);
    flex-wrap: wrap;
}

body.dark .da-subject-chip {
    background: rgba(255, 255, 255, .04);
    border-color: rgba(147, 51, 234, .35);
    color: #f9fafb;
}

.da-subject-chip > i {
    color: var(--purple);
    font-size: .8rem;
    flex-shrink: 0;
}

.da-subject-chip > span { flex: 1; }

.da-copy-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(147, 51, 234, .1);
    border: 1px solid rgba(147, 51, 234, .2);
    border-radius: 8px;
    padding: .3rem .75rem;
    font-family: var(--font);
    font-size: .75rem;
    font-weight: 700;
    color: var(--purple);
    cursor: pointer;
    transition: all .2s;
    flex-shrink: 0;
}

.da-copy-btn:hover {
    background: var(--purple);
    border-color: var(--purple);
    color: #fff;
}

body.dark .da-copy-btn {
    background: rgba(147, 51, 234, .2);
    border-color: rgba(147, 51, 234, .35);
    color: #c084fc;
}

body.dark .da-copy-btn:hover {
    background: var(--purple);
    color: #fff;
}

/* ── RIGHT COLUMN: Info cards ── */
.da-right {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.da-info-card {
    background: #fff;
    border-radius: var(--r);
    padding: 1.75rem;
    border: 1px solid rgba(147, 51, 234, .08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
    transition: transform .3s, box-shadow .3s;
}

.da-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh);
}

body.dark .da-info-card {
    background: #111827;
    border-color: rgba(255, 255, 255, .07);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .3);
}

.da-info-head {
    display: flex;
    align-items: center;
    gap: .85rem;
    margin-bottom: .85rem;
}

.da-info-head h3 {
    font-size: .98rem;
    font-weight: 800;
    color: var(--ink);
    margin: 0;
    letter-spacing: -.2px;
}

body.dark .da-info-head h3 { color: #f9fafb; }

.da-info-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.da-icon-red {
    background: rgba(239, 68, 68, .1);
    color: #dc2626;
}

body.dark .da-icon-red {
    background: rgba(239, 68, 68, .2);
    color: #f87171;
}

.da-icon-blue {
    background: rgba(37, 99, 235, .1);
    color: var(--blue);
}

body.dark .da-icon-blue {
    background: rgba(37, 99, 235, .2);
    color: #93c5fd;
}

.da-info-sub {
    font-size: .86rem;
    color: var(--body);
    margin-bottom: .85rem;
    line-height: 1.65;
}

body.dark .da-info-sub { color: #94a3b8; }

/* Delete list */
.da-del-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.da-del-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .86rem;
    color: var(--body);
    padding: .7rem 0;
    border-bottom: 1px solid rgba(239, 68, 68, .08);
    line-height: 1.6;
}

.da-del-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

body.dark .da-del-list li {
    color: #cbd5e1;
    border-color: rgba(255, 255, 255, .05);
}

.da-del-list strong {
    color: var(--ink);
    font-weight: 700;
}

body.dark .da-del-list strong { color: #f1f5f9; }

.da-del-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    flex-shrink: 0;
    margin-top: 7px;
}

/* Timeline */
.da-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.da-tl-item {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
}

.da-tl-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    color: #fff;
    flex-shrink: 0;
    margin-top: 2px;
}

.da-tl-green { background: linear-gradient(135deg, #22c55e, #16a34a); }
.da-tl-amber { background: linear-gradient(135deg, #f59e0b, #d97706); }

.da-tl-item strong {
    font-size: .88rem;
    font-weight: 700;
    color: var(--ink);
    display: block;
    margin-bottom: .3rem;
}

body.dark .da-tl-item strong { color: #f9fafb; }

.da-tl-item p {
    font-size: .82rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

body.dark .da-tl-item p { color: #94a3b8; }

/* Quick summary box */
.da-summary-steps {
    background: var(--ink);
    border-radius: var(--r);
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
}

.da-summary-steps::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(147, 51, 234, .4) 0%, transparent 70%);
}

.da-summary-steps::after {
    content: '';
    position: absolute;
    bottom: -40px; left: -40px;
    width: 160px; height: 160px;
    background: radial-gradient(circle, rgba(37, 99, 235, .35) 0%, transparent 70%);
}

body.dark .da-summary-steps {
    background: #0a0f1e;
}

.da-ss-head {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: rgba(179, 100, 252, .9);
    margin-bottom: 1.1rem;
    position: relative;
    z-index: 1;
}

.da-ss-head i { margin-right: .4rem; }

.da-ss-row {
    display: flex;
    align-items: center;
    gap: .85rem;
    margin-bottom: .75rem;
    font-size: .88rem;
    color: rgba(255, 255, 255, .7);
    position: relative;
    z-index: 1;
}

.da-ss-row strong { color: #fff; }

.da-ss-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--g-hero);
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(147, 51, 234, .4);
}

.da-cta-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .6rem;
    margin-top: 1.25rem;
    width: 100%;
    padding: .85rem;
    position: relative;
    z-index: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .da-main {
        padding-top: 6rem;
        padding-bottom: 4rem;
    }

    .da-card,
    .da-info-card {
        padding: 1.4rem 1.25rem;
    }

    .da-hero .dh {
        font-size: 2.2rem;
    }

    .da-warning {
        flex-direction: column;
        gap: .75rem;
    }
}