@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,600&family=DM+Sans:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --ink: #0f1117;
    --ink2: #2a2d3a;
    --ink3: #5a5f72;
    --ink4: #9097ad;
    --white: #ffffff;
    --off: #f8f7f4;
    --off2: #f0efe9;
    --rule: #e4e2db;
    --blue: #1d3a8a;
    --blue2: #2d52c4;
    --blue3: #e8ecf8;
    --gold: #b8860b;
    --gold2: #d4a017;
    --goldbg: #fdf8ee;
    --teal: #0d7a6e;
    --tealbg: #edf7f5;
    --ff: 'DM Sans',sans-serif;
    --ffs: 'Cormorant Garamond',serif;
    --ffm: 'JetBrains Mono',monospace;
}

html {
    font-size: 15px;
    scroll-behavior: smooth
}

body {
    font-family: var(--ff);
    background: var(--white);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden
}

::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: #d0cfc9
}

::-webkit-scrollbar-thumb {
    background: var(--ink2);
    border-radius: 3px
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--ink)
    }

/* NAV */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid var(--rule);
    height: 58px;
    display: flex;
    align-items: center
}

.nav-w {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    padding: 0 32px;
    display: flex;
    align-items: center
}

.nlogo {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none
}

.nlogo-box {
    width: 30px;
    height: 30px;
    background: var(--blue);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ffm);
    font-size: 11px;
    color: #fff;
    font-weight: 500
}

.nlogo-txt {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.2px
}

    .nlogo-txt b {
        color: var(--blue2)
    }

.nspacer {
    flex: 1
}

.nlinks {
    display: flex;
    gap: 1px
}

    .nlinks a {
        font-size: 13px;
        font-weight: 500;
        color: var(--ink3);
        text-decoration: none;
        padding: 6px 12px;
        border-radius: 6px;
        transition: all .15s
    }

        .nlinks a:hover, .nlinks a.act {
            color: var(--blue);
            background: var(--blue3)
        }

.nbtn {
    display: inline-flex;
    align-items: center;
    padding: 7px 18px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-family: var(--ff);
    transition: all .18s;
    margin-left: 8px
}

.nbtn-ghost {
    border: 1px solid var(--rule);
    color: var(--ink2);
    background: transparent
}

    .nbtn-ghost:hover {
        background: var(--off)
    }

.nbtn-solid {
    background: var(--blue);
    color: #fff
}

    .nbtn-solid:hover {
        background: var(--blue2)
    }

/* HERO */
.hero {
    background: var(--ink);
    position: relative;
    overflow: hidden;
    padding: 56px 32px 52px
}

.hero-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .22
}

.hero-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,transparent,rgba(255,255,255,.12),transparent)
}

.hero-w {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 18px
}

    .hero-eyebrow::before {
        content: '';
        width: 18px;
        height: 1px;
        background: var(--gold2)
    }

.hero h1 {
    font-family: var(--ffs);
    font-size: clamp(36px,4vw,56px);
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px
}

    .hero h1 i {
        font-style: italic;
        color: var(--gold2)
    }

.hero-sub {
    font-size: 15px;
    color: rgba(255,255,255,.55);
    max-width: 500px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 32px
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.hero-stats {
    display: flex;
    gap: 0;
    margin-top: 44px;
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 28px;
    flex-wrap: wrap
}

.hst {
    padding-right: 36px;
    margin-right: 36px;
    border-right: 1px solid rgba(255,255,255,.08)
}

    .hst:last-child {
        border-right: none;
        padding-right: 0;
        margin-right: 0
    }

.hst-n {
    font-family: var(--ffm);
    font-size: 24px;
    font-weight: 500;
    color: #fff
}

    .hst-n span {
        font-size: 14px;
        color: var(--gold2)
    }

.hst-l {
    font-size: 11px;
    color: rgba(255,255,255,.38);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-top: 3px
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: var(--ff);
    transition: all .18s;
    text-decoration: none
}

.btn-gold {
    background: var(--gold2);
    color: #fff
}

    .btn-gold:hover {
        background: var(--gold)
    }

.btn-ghost {
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.85);
    border: 1px solid rgba(255,255,255,.15)
}

    .btn-ghost:hover {
        background: rgba(255,255,255,.14)
    }

.btn-blue {
    background: var(--blue);
    color: #fff
}

    .btn-blue:hover {
        background: var(--blue2)
    }

.btn-outline {
    border: 1px solid var(--rule);
    color: var(--ink2);
    background: transparent
}

    /*.btn-outline:hover {
        background: var(--off);       
    }*/

/* TICKER */
.ticker {
    background: var(--ink2);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap
}

.tick-inner {
    display: inline-flex;
    animation: tick 30s linear infinite
}

@keyframes tick {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.tick-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 24px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,.45)
}

    .tick-item b {
        color: var(--gold2);
        font-family: var(--ffm)
    }

.tick-sep {
    color: rgba(255,255,255,.15);
    margin: 0 4px
}

/* SECTIONS */
.sec {
    padding: 64px 32px
}

.sec-w {
    max-width: 1100px;
    margin: 0 auto
}

.sec-bg {
    background: var(--off)
}

.sec-tag {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--blue2);
    margin-bottom: 12px
}

.sec-h {
    font-family: var(--ffs);
    font-size: clamp(28px,3vw,42px);
    font-weight: 600;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 12px
}

    .sec-h i {
        font-style: italic;
        color: var(--blue2)
    }

.sec-sub {
    font-size: 15px;
    color: var(--ink3);
    font-weight: 300;
    max-width: 500px;
    line-height: 1.7
}

.sec-hdr {
    margin-bottom: 48px
}

    .sec-hdr.c {
        text-align: center
    }

        .sec-hdr.c .sec-sub {
            margin: 0 auto
        }

.rule {
    height: 1px;
    background: var(--rule);
    max-width: 1100px;
    margin: 0 auto
}

/* GRID */
.g2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.g3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px
}

.g4 {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center
}

/* CARD */
.card {
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 12px;
    padding: 28px;
    transition: all .22s
}

    .card:hover {
        box-shadow: 0 8px 32px rgba(15,17,23,.08);
        border-color: #c9c7c0;
        transform: translateY(-2px)
    }

    .card h3 {
        font-size: 16px;
        font-weight: 600;
        color: var(--ink);
        margin-bottom: 8px
    }

    .card p {
        font-size: 14px;
        color: var(--ink3);
        line-height: 1.7
    }

.cico {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 16px
}

.ci-b {
    background: var(--blue3)
}

.ci-g {
    background: var(--goldbg)
}

.ci-t {
    background: var(--tealbg)
}

/* IMAGE BLOCK */
.img-block {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative
}

    .img-block img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s
    }

    .img-block:hover img {
        transform: scale(1.03)
    }

.img-cap {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(15,17,23,.75);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 10px 14px
}

.img-cap-n {
    font-family: var(--ffm);
    font-size: 18px;
    font-weight: 500;
    color: #fff
}

.img-cap-l {
    font-size: 11px;
    color: rgba(255,255,255,.55);
    margin-top: 1px
}

/* PROGRESS */
.pr {
    margin-bottom: 14px
}

.pr-lbl {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--ink2);
    margin-bottom: 5px;
    font-weight: 500
}

    .pr-lbl span:last-child {
        font-family: var(--ffm);
        font-size: 12px;
        color: var(--blue2)
    }

.pr-bar {
    height: 5px;
    background: var(--off2);
    border-radius: 100px;
    overflow: hidden
}

.pr-fill {
    height: 100%;
    background: linear-gradient(90deg,var(--blue),var(--teal));
    border-radius: 100px
}

/* TESTIMONIAL */
.tcard {
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 12px;
    padding: 26px 28px;
    transition: all .22s
}

    .tcard:hover {
        box-shadow: 0 8px 32px rgba(15,17,23,.07);
        transform: translateY(-2px)
    }

.tcard-q {
    font-family: var(--ffs);
    font-size: 28px;
    color: var(--blue3);
    line-height: 1;
    margin-bottom: 8px
}

.tcard-txt {
    font-size: 14px;
    color: var(--ink2);
    line-height: 1.72;
    margin-bottom: 18px
}

.tcard-stars {
    color: var(--gold2);
    font-size: 12px;
    margin-bottom: 8px
}

.tcard-av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 13px;
    color: #fff;
    flex-shrink: 0
}

.tcard-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink)
}

.tcard-meta {
    font-size: 12px;
    color: var(--ink4)
}

.air-pill {
    display: inline-block;
    background: var(--goldbg);
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 100px;
    border: 1px solid rgba(184,134,11,.2);
    margin-left: 5px
}

/* PRICING */
.pc {
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 14px;
    padding: 32px;
    position: relative;
    transition: all .22s
}

    .pc:hover {
        box-shadow: 0 8px 32px rgba(15,17,23,.08)
    }

    .pc.feat {
        border-color: var(--blue2);
        box-shadow: 0 0 0 1px var(--blue2)
    }

.pc-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 100px;
    white-space: nowrap
}

.pc h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px
}

.pc-desc {
    font-size: 13px;
    color: var(--ink4);
    margin-bottom: 18px
}

.pc-price {
    font-family: var(--ffm);
    font-size: 40px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1
}

    .pc-price sup {
        font-size: 18px;
        vertical-align: top;
        margin-top: 7px;
        display: inline-block
    }

.pc-period {
    font-size: 12px;
    color: var(--ink4);
    margin-bottom: 22px;
    margin-top: 2px
}

.pc-feats {
    list-style: none;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 9px
}

    .pc-feats li {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-size: 13px;
        color: var(--ink2)
    }

        .pc-feats li::before {
            content: '✓';
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--blue3);
            color: var(--blue2);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 1px
        }

/* TABLE */
table {
    width: 100%;
    border-collapse: collapse
}

th {
    background: var(--ink);
    color: #fff;
    padding: 13px 18px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .3px
}

    th:first-child {
        border-radius: 10px 0 0 0
    }

    th:last-child {
        border-radius: 0 10px 0 0
    }

td {
    padding: 13px 18px;
    border-bottom: 1px solid var(--rule);
    font-size: 13px;
    color: var(--ink2)
}

tr:last-child td {
    border-bottom: none
}

tr:hover td {
    background: var(--off)
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600
}

.b-b {
    background: var(--blue3);
    color: var(--blue2)
}

.b-g {
    background: var(--goldbg);
    color: var(--gold)
}

.b-t {
    background: var(--tealbg);
    color: var(--teal)
}

/* CHIP */
.chip {
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink2);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all .15s
}

    .chip:hover {
        border-color: var(--blue2);
        color: var(--blue2);
        background: var(--blue3)
    }

.cdot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0
}

/* EXAM CARD */
.ec {
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 12px;
    padding: 20px;
    transition: all .22s
}

    .ec:hover {
        box-shadow: 0 6px 24px rgba(15,17,23,.08);
        transform: translateY(-2px);
        border-color: #c9c7c0
    }

.ec-code {
    font-family: var(--ffm);
    font-size: 10px;
    color: var(--blue2);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.ec h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 7px
}

.ec-meta {
    font-size: 12px;
    color: var(--ink4);
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.ec-bar {
    height: 3px;
    background: var(--off2);
    border-radius: 100px;
    margin-top: 14px;
    overflow: hidden
}

.ec-fill {
    height: 100%;
    background: linear-gradient(90deg,var(--blue),var(--teal));
    border-radius: 100px
}

/* TABS */
.tabs {
    display: flex;
    gap: 3px;
    background: var(--off);
    border-radius: 9px;
    padding: 3px;
    width: fit-content;
    margin-bottom: 32px
}

.tab {
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink3);
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--ff);
    transition: all .15s
}

    .tab.on {
        background: var(--white);
        color: var(--blue2);
        box-shadow: 0 1px 6px rgba(15,17,23,.08)
    }

/* FAQ */
.faq {
    border: 1px solid var(--rule);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px
}

.faq-q {
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    user-select: none
}

    .faq-q:hover, .faq-q.open {
        background: var(--off)
    }

.faq-ico {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background: var(--blue3);
    color: var(--blue2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: transform .2s;
    flex-shrink: 0
}

.faq-q.open .faq-ico {
    transform: rotate(45deg)
}

.faq-a {
    display: none;
    padding: 0 20px 16px;
    font-size: 13px;
    color: var(--ink3);
    line-height: 1.7
}

    .faq-a.open {
        display: block
    }

/* TEAM CARD */
.tc {
    text-align: center;
    padding: 28px 20px
}

.tc-av {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    font-family: var(--ffs)
}

.tc-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 3px
}

.tc-role {
    font-size: 12px;
    color: var(--blue2);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 10px
}

.tc-bio {
    font-size: 13px;
    color: var(--ink3);
    line-height: 1.6
}

/* SUBJECT BLOCK */
.sb {
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all .18s
}

    .sb:hover {
        border-color: #c9c7c0
    }

.sb-hdr {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px
}

.sb-num {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ffm);
    font-size: 12px;
    font-weight: 500;
    flex-shrink: 0
}

.sb-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    flex: 1
}

.sb-meta {
    display: flex;
    gap: 8px;
    align-items: center
}

.sb-w {
    font-family: var(--ffm);
    font-size: 13px;
    font-weight: 500;
    color: var(--blue2)
}

.sb-arrow {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: var(--off2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--ink4);
    transition: transform .22s;
    flex-shrink: 0;
    margin-left: 4px
}

.sb-topics.open ~ * .sb-arrow, .sb:has(.sb-topics.open) .sb-arrow {
    transform: rotate(180deg)
}

.sb-topics {
    display: none;
    padding: 0 20px 18px;
    flex-direction: column;
    gap: 14px
}

    .sb-topics.open {
        display: flex
    }

.sb-chapter {
    width: 100%
}

.sb-ch-name {
    font-size: 11px;
    font-weight: 700;
    color: var(--ink2);
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 7px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--rule)
}

.sb-ch-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px
}

.stag {
    background: var(--off);
    border: 1px solid var(--rule);
    border-radius: 6px;
    padding: 4px 11px;
    font-size: 12px;
    color: var(--ink2)
}

/* TOPPER CARD — Profile Layout */
.top-card {
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 14px;
    padding: 22px 24px;
    transition: all .22s
}

    .top-card:hover {
        box-shadow: 0 8px 32px rgba(15,17,23,.09);
        transform: translateY(-2px)
    }

.top-header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 16px
}

.top-photo {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    border: 3px solid var(--rule);
    flex-shrink: 0;
    background: var(--off2);
    display: block;
    color: transparent
}

.top-identity {
    flex: 1;
    min-width: 0
}

.top-air {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--goldbg);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    border: 1px solid rgba(184,134,11,.2);
    margin-bottom: 7px
}

.top-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 3px
}

.top-college {
    font-size: 12px;
    color: var(--ink4);
    line-height: 1.5
}

.top-quote {
    font-size: 13px;
    color: var(--ink3);
    line-height: 1.72;
    font-style: italic;
    padding-left: 14px;
    border-left: 3px solid var(--blue3)
}

/* PREP CARD */
.prep {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/2
}

    .prep img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s;
        display: block
    }

    .prep:hover img {
        transform: scale(1.04)
    }

.prep-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(15,17,23,.85) 0%,rgba(15,17,23,.2) 60%,transparent 100%)
}

.prep-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 20px
}

.prep-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 3px 9px;
    border-radius: 100px;
    margin-bottom: 6px
}

.prep-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
    font-family: var(--ffs)
}

.prep-desc {
    font-size: 12px;
    color: rgba(255,255,255,.6)
}

/* INFO CARD */
.ic {
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 12px;
    padding: 22px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 16px;
    transition: all .18s
}

    .ic:hover {
        box-shadow: 0 4px 20px rgba(15,17,23,.07)
    }

.ic-ico {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0
}

.ic-l {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--ink4);
    margin-bottom: 4px
}

.ic-v {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 2px
}

.ic-s {
    font-size: 12px;
    color: var(--ink3)
}

/* TIMELINE */
.tl {
    position: relative;
    padding-left: 28px
}

    .tl::before {
        content: '';
        position: absolute;
        left: 8px;
        top: 4px;
        bottom: 4px;
        width: 1px;
        background: linear-gradient(to bottom,var(--blue),var(--teal))
    }

.tl-item {
    position: relative;
    margin-bottom: 24px
}

    .tl-item::before {
        content: '';
        position: absolute;
        left: -24px;
        top: 6px;
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: var(--blue);
        border: 2px solid var(--white);
        box-shadow: 0 0 0 1.5px var(--blue)
    }

.tl-yr {
    font-family: var(--ffm);
    font-size: 11px;
    font-weight: 500;
    color: var(--blue2);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 3px
}

.tl-txt {
    font-size: 13px;
    color: var(--ink2);
    line-height: 1.65
}

/* CONTACT FORM */
.form-g {
    margin-bottom: 18px
}

.form-l {
    font-size: 12px;
    font-weight: 600;
    color: var(--ink2);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 5px;
    display: block
}

.form-i {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--rule);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--ff);
    color: var(--ink);
    background: var(--white);
    outline: none;
    transition: border-color .18s
}

    .form-i:focus {
        border-color: var(--blue2)
    }

textarea.form-i {
    min-height: 110px;
    resize: vertical
}

.fg2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

/* LOCK BOX */
.lock-box {
    text-align: center;
    padding: 36px;
    background: var(--off);
    border: 1.5px dashed var(--rule);
    border-radius: 12px;
    margin-top: 24px
}

/* SOCIALS */
.socials {
    display: flex;
    gap: 8px;
    margin-top: 18px
}

.soc {
    width: 32px;
    height: 32px;
    border-radius: 7px;
    background: rgba(255,255,255,.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.45);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all .15s
}

    .soc:hover {
        background: var(--blue);
        color: #fff
    }

/* CTA BAND */
.cta {
    background: var(--ink);
    padding: 64px 32px;
    text-align: center;
    position: relative;
    overflow: hidden
}

    .cta::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        width: 600px;
        height: 400px;
        background: radial-gradient(ellipse,rgba(29,58,138,.35),transparent 70%);
        pointer-events: none
    }

.cta-w {
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.cta h2 {
    font-family: var(--ffs);
    font-size: clamp(26px,3vw,40px);
    color: #fff;
    margin-bottom: 12px
}

    .cta h2 i {
        font-style: italic;
        color: var(--gold2)
    }

.cta p {
    font-size: 14px;
    color: rgba(255,255,255,.5);
    margin-bottom: 32px;
    font-weight: 300
}

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

/* FOOTER */
footer {
    background: #0a0c14;
    padding: 52px 32px 28px
}

.ft-w {
    max-width: 1100px;
    margin: 0 auto
}

.ft-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px
}

.ft-brand-desc {
    font-size: 13px;
    color: rgba(255,255,255,.35);
    line-height: 1.7;
    max-width: 260px;
    margin-top: 14px
}

.ft-col h4 {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,.35);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px
}

.ft-col a {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,.45);
    text-decoration: none;
    margin-bottom: 9px;
    transition: color .15s
}

    .ft-col a:hover {
        color: #fff
    }

.ft-btm {
    border-top: 1px solid rgba(255,255,255,.06);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255,255,255,.25)
}

/* AUTH ANIMATIONS */
@keyframes floatA {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-22px)
    }
}

@keyframes floatB {
    0%,100% {
        transform: translateY(0) rotate(0deg)
    }

    50% {
        transform: translateY(18px) rotate(180deg)
    }
}

@keyframes floatC {
    0%,100% {
        transform: translate(0,0)
    }

    33% {
        transform: translate(12px,-18px)
    }

    66% {
        transform: translate(-10px,12px)
    }
}

@keyframes pulseRing {
    0% {
        transform: scale(.85);
        opacity: .5
    }

    100% {
        transform: scale(2.4);
        opacity: 0
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(18px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes shimmerLine {
    0%,100% {
        transform: translateX(-100%)
    }

    100% {
        transform: translateX(200%)
    }
}

/* AUTH SPLIT LAYOUT */
.auth-split {
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    min-height: calc(100vh - 58px);
    align-items: stretch
}

.ap {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column
}

.ap-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center
}

.ap-ov {
    position: absolute;
    inset: 0
}

.ap-c {
    position: relative;
    z-index: 2;
    padding: 52px 44px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 24px
}

.mol {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    will-change: transform
}

.ap-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none
}

.ap-logo-box {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ffm);
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    backdrop-filter: blur(8px)
}

.ap-logo-txt {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -.2px
}

    .ap-logo-txt b {
        color: var(--gold2)
    }

.ap-head {
    font-family: var(--ffs);
    font-size: clamp(24px,2.4vw,34px);
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin: 0
}

    .ap-head i {
        font-style: italic;
        color: var(--gold2)
    }

.ap-sub {
    font-size: 13px;
    color: rgba(255,255,255,.55);
    line-height: 1.7;
    margin-top: 8px;
    font-weight: 300;
    max-width: 360px
}

.ap-stats {
    display: flex;
    gap: 0;
    flex-wrap: wrap
}

.ap-stat {
    padding-right: 22px;
    margin-right: 22px;
    border-right: 1px solid rgba(255,255,255,.12)
}

    .ap-stat:last-child {
        border: none;
        padding: 0;
        margin: 0
    }

.ap-sn {
    font-family: var(--ffm);
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    line-height: 1;
    animation: fadeInUp .7s both
}

.ap-sl {
    font-size: 10px;
    color: rgba(255,255,255,.42);
    text-transform: uppercase;
    letter-spacing: .9px;
    margin-top: 4px
}

.ap-feats {
    display: flex;
    flex-direction: column;
    gap: 0
}

.ap-feat {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    animation: fadeInUp .6s both
}

    .ap-feat:last-child {
        border: none
    }

.ap-fi {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.13);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0
}

.ap-ft strong {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    display: block;
    margin-bottom: 2px
}

.ap-ft span {
    font-size: 12px;
    color: rgba(255,255,255,.5)
}

.ap-quote {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    padding: 18px 20px;
    backdrop-filter: blur(10px);
    transition: opacity .3s,transform .3s
}

.ap-qt {
    font-family: var(--ffs);
    font-size: 13px;
    color: rgba(255,255,255,.8);
    line-height: 1.72;
    font-style: italic;
    margin-bottom: 12px
}

.ap-qb {
    display: flex;
    align-items: center;
    gap: 10px
}

.ap-qav {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    border: 1.5px solid rgba(255,255,255,.18)
}

.ap-qn {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.88)
}

.ap-qm {
    font-size: 11px;
    color: rgba(255,255,255,.38);
    margin-top: 2px
}

.af {
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 44px 52px;
    overflow-y: auto
}

.af-tall {
    align-items: flex-start;
    padding-top: 52px;
    padding-bottom: 52px
}

.af-in {
    width: 100%;
    max-width: 400px
}

.af-logo {
    text-align: center;
    margin-bottom: 24px
}

.af-title {
    font-family: var(--ffs);
    font-size: 26px;
    font-weight: 600;
    color: var(--ink);
    text-align: center;
    margin-bottom: 6px;
    line-height: 1.2
}

    .af-title i {
        font-style: italic;
        color: var(--blue2)
    }

.af-sub {
    font-size: 13px;
    color: var(--ink4);
    text-align: center;
    margin-bottom: 26px;
    line-height: 1.65
}

.af-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0;
    font-size: 12px;
    color: var(--ink4)
}

    .af-divider::before, .af-divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--rule)
    }

.af-foot {
    text-align: center;
    margin-top: 18px;
    font-size: 13px;
    color: var(--ink4)
}

    .af-foot a {
        color: var(--blue2);
        text-decoration: none;
        font-weight: 500
    }

        .af-foot a:hover {
            text-decoration: underline
        }

.benefit-chips {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 22px;
    justify-content: center
}

.benefit-chip {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px
}

/* HERO GRID & CART GRID */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: center
}

.cart-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: flex-start
}

/* NAV DROPDOWN */
.ndrop {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-bottom: 8px;
    margin-bottom: -8px
}

.ndrop-trigger {
    font-size: 13px;
    font-weight: 500;
    color: var(--ink3);
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    user-select: none;
    transition: all .15s
}

    .ndrop-trigger:hover, .ndrop-trigger.act {
        color: var(--blue);
        background: var(--blue3)
    }

.ndrop-arr {
    font-size: 9px;
    transition: transform .2s;
    margin-top: 1px;
    opacity: .7
}

.ndrop:hover .ndrop-arr {
    transform: rotate(180deg)
}

.ndrop-menu {
    position: absolute;
    top: calc(100% - 2px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(15,17,23,.1);
    padding: 6px;
    min-width: 168px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .18s,visibility .18s;
    z-index: 300;
    pointer-events: none
}

.ndrop:hover .ndrop-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto
}

.ndrop-menu a {
    display: block;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink3);
    text-decoration: none;
    border-radius: 6px;
    transition: all .12s;
    white-space: nowrap
}

    .ndrop-menu a:hover, .ndrop-menu a.act {
        background: var(--off);
        color: var(--blue2)
    }

/* HAMBURGER */
.nav-ham {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: none;
    border-radius: 6px;
    transition: background .15s;
    margin-left: 10px;
    flex-shrink: 0
}

    .nav-ham:hover {
        background: var(--off)
    }

    .nav-ham span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--ink2);
        border-radius: 2px;
        transition: all .25s
    }

    .nav-ham.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg)
    }

    .nav-ham.open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0)
    }

    .nav-ham.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg)
    }

/* MOBILE MENU */
.mob-menu {
    position: fixed;
    top: 58px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 199;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px 24px 40px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity .2s,transform .2s;
    display: none
}

    .mob-menu.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0)
    }

.mob-nav {
    display: flex;
    flex-direction: column
}

.mob-link {
    display: flex;
    align-items: center;
    padding: 14px 4px;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink2);
    text-decoration: none;
    border-bottom: 1px solid var(--rule);
    transition: color .15s
}

    .mob-link:last-child {
        border-bottom: none
    }

    .mob-link:hover, .mob-link.act {
        color: var(--blue)
    }

    .mob-link.mob-ind {
        padding-left: 20px;
        font-size: 14px;
        color: var(--ink3)
    }

        .mob-link.mob-ind.act {
            color: var(--blue)
        }

.mob-sec-lbl {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ink4);
    padding: 16px 4px 4px
}

.mob-hr {
    border: none;
    border-top: 1px solid var(--rule);
    margin: 6px 0
}

.mob-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 28px
}

.mob-btn-ghost {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid var(--rule);
    color: var(--ink2);
    background: transparent;
    transition: all .15s
}

    .mob-btn-ghost:hover {
        background: var(--off)
    }

.mob-btn-solid {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    background: var(--blue);
    color: #fff;
    transition: background .15s
}

    .mob-btn-solid:hover {
        background: var(--blue2)
    }

/* AUTH PAGES */
.auth-wrap {
    min-height: calc(100vh - 58px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: var(--off)
}

.auth-card {
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 16px;
    padding: 40px 44px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 4px 32px rgba(15,17,23,.07)
}

.auth-logo {
    text-align: center;
    margin-bottom: 28px
}

.auth-title {
    font-family: var(--ffs);
    font-size: 28px;
    font-weight: 600;
    color: var(--ink);
    text-align: center;
    margin-bottom: 6px
}

    .auth-title i {
        font-style: italic;
        color: var(--blue2)
    }

.auth-sub {
    font-size: 13px;
    color: var(--ink4);
    text-align: center;
    margin-bottom: 28px
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    font-size: 12px;
    color: var(--ink4)
}

    .auth-divider::before, .auth-divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--rule)
    }

.auth-foot {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: var(--ink4)
}

    .auth-foot a {
        color: var(--blue2);
        text-decoration: none;
        font-weight: 500
    }

        .auth-foot a:hover {
            text-decoration: underline
        }

/* CART */
.cart-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--rule)
}

    .cart-row:last-child {
        border-bottom: none
    }

.cart-ico {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--blue3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0
}

.cart-info {
    flex: 1
}

.cart-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink)
}

.cart-meta {
    font-size: 12px;
    color: var(--ink4);
    margin-top: 2px
}

.cart-price {
    font-family: var(--ffm);
    font-size: 16px;
    font-weight: 500;
    color: var(--ink)
}

.cart-remove {
    font-size: 12px;
    color: var(--ink4);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 5px;
    border: none;
    background: none;
    transition: all .15s;
    font-family: var(--ff)
}

    .cart-remove:hover {
        color: #c83232;
        background: #fff0f0
    }

.cart-summary {
    background: var(--off);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--rule)
}

.cs-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--ink3);
    margin-bottom: 10px
}

.cs-total {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    padding-top: 12px;
    border-top: 1px solid var(--rule);
    margin-top: 4px
}

.coupon-wrap {
    display: flex;
    gap: 8px;
    margin-bottom: 20px
}

    .coupon-wrap .form-i {
        flex: 1
    }

/* RESPONSIVE */
@media(max-width:1024px) {
    .hero-grid {
        grid-template-columns: 1fr
    }

        .hero-grid > div:nth-child(2) {
            display: none
        }
}

@media(max-width:960px) {
    .split {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .g4 {
        grid-template-columns: repeat(2,1fr)
    }

    .ft-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px
    }

    .cart-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:880px) {
    .auth-split {
        grid-template-columns: 1fr !important
    }

    .ap-c {
        padding: 32px 28px;
        min-height: unset
    }

    .af {
        padding: 32px 28px
    }

    .af-tall {
        align-items: center;
        padding-top: 32px;
        padding-bottom: 36px
    }

    .ap-stats {
        gap: 16px 0;
        flex-wrap: wrap
    }

    .ap-stat {
        border-right: none;
        padding-right: 20px;
        margin-right: 0
    }

    .ap-sub {
        display: none
    }
}

@media(max-width:640px) {
    .g2, .g3, .g4, .pcards {
        grid-template-columns: 1fr
    }

    .nlinks {
        display: none
    }

    .ndrop {
        display: none
    }

    .nbtn {
        display: none
    }

    .nav-ham {
        display: flex
    }

    .mob-menu {
        display: block
    }

    .hero {
        padding: 44px 20px 40px
    }

    .sec {
        padding: 48px 20px
    }

    .fg2 {
        grid-template-columns: 1fr
    }

    .ft-top {
        grid-template-columns: 1fr
    }

    .auth-card {
        padding: 28px 22px
    }

    .ap-quote {
        display: none
    }

    .ap-c {
        padding: 24px 20px
    }

    .af {
        padding: 24px 20px
    }

    .af-in {
        max-width: 100%
    }

    .hst {
        padding-right: 20px;
        margin-right: 20px
    }

    .hero-stats {
        gap: 8px 0
    }

    .tabs {
        overflow-x: auto;
        width: 100%
    }

    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }

    .nav-w {
        padding: 0 16px
    }
}

@media(max-width:420px) {
    .ap-feats .ap-feat:nth-child(n+3) {
        display: none
    }
}
