/* ============================= TOKENS ============================= */
:root {
    --green: #1f9e59;
    --green-dark: #16804a;
    --green-light: #e8f7ed;
    --navy: #1a2152;
    --navy-2: #262e63;
    --navy-3: #10153a;
    --navy-deep: #0e1f38;
    --ink: #1a2152;
    --muted: #646b82;
    --paper: #fcfbf8;
    --line: #e6e8f0;
    --gold: #f3a93c;
    --radius: 18px;
    --shadow-sm: 0 2px 10px rgba(20, 28, 60, 0.06);
    --shadow-md: 0 18px 40px -12px rgba(20, 28, 60, 0.18);
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Inter", sans-serif;
    color: var(--ink);
    background: #fff;
    -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
.font-display {
    font-family: "Sora", sans-serif;
    color: var(--navy);
    letter-spacing: -0.01em;
}
.font-mono {
    font-family: "JetBrains Mono", monospace;
}
a {
    text-decoration: none;
}
.text-green {
    color: var(--green) !important;
}
.text-muted-c {
    color: var(--muted);
}
.bg-paper {
    background: var(--paper);
}
.bg-mint {
    background: var(--green-light);
}
.bg-navy {
    background: var(--navy);
}
.bg-navy-2 {
    background: linear-gradient(135deg, var(--navy-3), var(--navy-2));
}
.section-pad {
    padding: 96px 0;
}
@media (max-width: 767px) {
    .section-pad {
        padding: 64px 0;
    }
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-dark);
    background: var(--green-light);
    border: 1px solid rgba(31, 158, 89, 0.18);
    padding: 7px 16px;
    border-radius: 30px;
}
.eyebrow-light {
    background: rgba(255, 255, 255, 0.08);
    color: #bfe9d2;
    border: 1px solid rgba(255, 255, 255, 0.16);
}
.divider-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
    display: inline-block;
}
.lead-muted {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

/* ============================= BUTTONS ============================= */
.btn-brand {
    background: var(--green);
    border: 1px solid var(--green);
    color: #fff;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 50px;
    transition: 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-brand:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: #fff;
    transform: translateY(-1px);
}
.btn-ghost-navy {
    background: transparent;
    border: 1.5px solid var(--line);
    color: var(--navy);
    font-weight: 600;
    padding: 12px 26px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s ease;
}
.btn-ghost-navy:hover {
    border-color: var(--navy);
    background: var(--navy);
    color: #fff;
}
.btn-light-pill {
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--navy);
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 50px;
}
.icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.icon-circle svg {
    width: 16px;
    height: 16px;
}

/* ============================= NAVBAR ============================= */
.navbar-msr {
    background: #fff;
    padding: 16px 0;
    transition: 0.25s ease;
    border-bottom: 1px solid transparent;
}
.navbar-msr.is-scrolled {
    box-shadow: 0 4px 24px rgba(20, 28, 60, 0.08);
    border-bottom-color: var(--line);
}
.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    /*background: var(--navy);*/
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.brand-mark svg {
    width: 22px;
    height: 22px;
}
.brand-wordmark {
    font-family: "Sora", sans-serif;
    font-weight: 700;
    line-height: 1.05;
    font-size: 0.95rem;
}
.brand-wordmark .l2 {
    color: var(--green);
}
.nav-link-msr {
    font-weight: 600;
    font-size: 0.94rem;
    color: var(--navy) !important;
    padding: 8px 16px !important;
    position: relative;
}
.nav-link-msr::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 2px;
    height: 2px;
    background: var(--green);
    transform: scaleX(0);
    transition: 0.2s ease;
    transform-origin: left;
}
.nav-link-msr:not(.father-of-child):hover::after,
.nav-link-msr.active::after {
    transform: scaleX(1);
}
.nav-link-msr.father-of-child {
    font-weight: bold;
    text-decoration: underline;
    text-underline-offset: 4px;
    color: var(--green) !important;
    padding: 8px 16px 0 !important;
    position: relative;
}
.btn-cart {
    color: var(--navy);
    background: var(--paper);
    border: 1px solid var(--line);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
    position: relative;
}
.btn-cart:hover {
    background: var(--green-light);
    color: var(--green-dark);
    border-color: rgba(31, 158, 89, 0.18);
    transform: translateY(-1px);
}
.cart-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background: var(--green);
    color: #fff;
    font-size: 0.68rem;
    font-family: "JetBrains Mono", monospace;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.cart-badge.bump {
    transform: scale(1.3);
}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        order: 2;
    }
    .navbar-actions-wrap {
        order: 3;
        margin-left: 10px;
    }
    .navbar-expand-lg .navbar-toggler {
        display: none;
    }
}

/* ============================= HERO ============================= */
.hero {
    padding: 130px 0 80px;
    background:
        radial-gradient(
            ellipse 700px 420px at 88% -8%,
            rgba(31, 158, 89, 0.1),
            transparent 70%
        ),
        radial-gradient(
            ellipse 600px 400px at 0% 100%,
            rgba(26, 33, 82, 0.06),
            transparent 70%
        ),
        #fff;
    position: relative;
    overflow: hidden;
}
.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.12;
}
@media (max-width: 767px) {
    .hero {
        padding: 120px 0 60px;
    }
    .hero h1 {
        font-size: 2.15rem;
    }
}
.underline-stroke {
    position: relative;
    display: inline;
}
.underline-stroke svg {
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 10px;
}

/* hero illustration — stacked "papers" composition */
.paper-stack {
    position: relative;
    height: 430px;
}
.sheet {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 22px;
}
.sheet-back {
    width: 78%;
    height: 300px;
    top: 10px;
    right: 0;
    transform: rotate(6deg);
    background: var(--green-light);
    border: 1px solid rgba(31, 158, 89, 0.18);
}
.sheet-mid {
    width: 74%;
    height: 300px;
    top: 34px;
    right: 10%;
    transform: rotate(-4deg);
}
.sheet-front {
    width: 72%;
    height: 300px;
    top: 60px;
    right: 6%;
    border-top: 5px solid var(--green);
}
.line-bar {
    height: 8px;
    border-radius: 5px;
    background: var(--line);
    margin-bottom: 10px;
}
.line-bar.w-60 {
    width: 60%;
}
.line-bar.w-80 {
    width: 80%;
}
.line-bar.w-40 {
    width: 40%;
}
.tag-pill-mini {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    background: var(--green-light);
    color: var(--green-dark);
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    text-transform: uppercase;
}
.float-chip {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--line);
    animation: floaty 5s ease-in-out infinite;
}
.float-chip.c1 {
    top: 18px;
    left: -10px;
    animation-delay: 0.2s;
}
.float-chip.c2 {
    bottom: 30px;
    left: 10px;
    animation-delay: 1.1s;
}
@keyframes floaty {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
.mini-chart {
    width: 60px;
    height: 30px;
}
.stars-row svg {
    width: 14px;
    height: 14px;
}
.avatar-stack {
    display: flex;
}
.avatar-stack img,
.avatar-stack .av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2.5px solid #fff;
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
}
.avatar-stack .av1 {
    background: #3d6bff;
}
.avatar-stack .av2 {
    background: #f3a93c;
}
.avatar-stack .av3 {
    background: #e45b7a;
}
.avatar-stack .av4 {
    background: var(--green);
}

/* ============================= MARQUEE ============================= */
.marquee-wrap {
    background: linear-gradient(120deg, var(--green-dark), var(--green));
    overflow: hidden;
    padding: 16px 0;
    position: relative;
    transform: skewY(-1.2deg);
    margin: 0 -2px;
}
.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: scroll-left 28s linear infinite;
    width: max-content;
}
.marquee-wrap:hover .marquee-track {
    animation-play-state: paused;
}
@keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.marquee-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 0 28px;
    letter-spacing: 0.02em;
}
.marquee-item svg {
    width: 16px;
    height: 16px;
    opacity: 0.85;
}

/* ============================= STATS ============================= */
.stat-band {
    position: relative;
    overflow: hidden;
}
.stat-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.06) 1px,
        transparent 1px
    );
    background-size: 22px 22px;
    opacity: 0.5;
    pointer-events: none;
}
.stat-col {
    position: relative;
    text-align: center;
    padding: 8px 10px;
}
.stat-col + .stat-col::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    bottom: 14px;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
}
.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(31, 158, 89, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 1px solid rgba(31, 158, 89, 0.3);
}
.stat-icon svg {
    width: 22px;
    height: 22px;
    color: #bfe9d2;
}
.stat-num {
    font-size: 2.1rem;
    font-weight: 700;
    color: #fff;
}
.stat-label {
    color: #a8afcb;
    font-size: 0.88rem;
    font-weight: 500;
}

/* ============================= PAPER CARD (signature) ============================= */
.card-paper {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    transition: 0.25s ease;
    height: 100%;
}
.card-paper::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    border-width: 0 22px 22px 0;
    border-style: solid;
    border-color: transparent var(--green-light) transparent transparent;
    transition: 0.25s ease;
}
.card-paper:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(31, 158, 89, 0.25);
}
.card-paper:hover::after {
    border-color: transparent var(--green) transparent transparent;
}

/* feature checklist */
.check-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 22px;
}
.check-ico {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.check-ico svg {
    width: 13px;
    height: 13px;
}

/* ============================= FEATURE GRID ============================= */
.feature-card {
    padding: 32px 26px;
}
.feature-num {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.75rem;
    color: var(--muted);
    position: absolute;
    top: 18px;
    right: 30px;
}
.feature-ico-wrap {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.feature-ico-wrap svg {
    width: 24px;
    height: 24px;
    color: var(--green-dark);
}

/* ============================= HOW IT WORKS ============================= */
.step-track {
    position: relative;
}
.step-line {
    position: absolute;
    top: 28px;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        var(--line) 0 10px,
        transparent 10px 18px
    );
    display: none;
}
@media (min-width: 992px) {
    .step-line {
        display: block;
    }
}
.step-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "JetBrains Mono", monospace;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    margin-bottom: 22px;
    border: 5px solid #fff;
}
.step-circle.is-green {
    background: var(--green);
}

/* ============================= PRICING ============================= */
.seg-toggle {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 50px;
    display: inline-flex;
    padding: 5px;
    position: relative;
}
.seg-btn {
    border: none;
    background: transparent;
    padding: 10px 26px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--muted);
    font-size: 0.92rem;
    position: relative;
    z-index: 1;
    transition: 0.2s ease;
    cursor: pointer;
}
.seg-btn.active {
    background: var(--navy);
    color: #fff;
}
.pill-tabs .nav-link {
    border: none;
    background: transparent;
    color: var(--muted);
    font-weight: 600;
    padding: 10px 4px;
    margin-right: 30px;
    border-bottom: 2px solid transparent;
    border-radius: 0;
}
.pill-tabs .nav-link.active {
    color: var(--navy);
    border-bottom-color: var(--green);
    background: transparent;
}

.price-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 38px 32px;
    height: 100%;
    position: relative;
}
.price-card.featured {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
    box-shadow: var(--shadow-md);
    transform: scale(1.02);
}
.price-card.featured h3,
.price-card.featured .ink-flip {
    color: #fff;
}
.price-card.featured .lead-muted {
    color: #b7bedb;
}
.featured-tag {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 30px;
    white-space: nowrap;
}
.ticket-cut {
    border-top: 1px dashed rgba(0, 0, 0, 0.14);
    position: relative;
    margin: 26px 0;
}
.price-card.featured .ticket-cut {
    border-top-color: rgba(255, 255, 255, 0.22);
}
.ticket-cut::before,
.ticket-cut::after {
    content: "";
    position: absolute;
    top: -10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
}
.ticket-cut::before {
    left: -32px;
}
.ticket-cut::after {
    right: -32px;
}
.price-card.featured .ticket-cut::before,
.price-card.featured .ticket-cut::after {
    background: var(--navy);
}
.price-amount {
    font-family: "JetBrains Mono", monospace;
    font-size: 2.6rem;
    font-weight: 700;
}
.price-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.price-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 0.92rem;
    color: var(--muted);
}
.price-card.featured .price-list li {
    color: #d5daf0;
}
.price-list svg {
    width: 17px;
    height: 17px;
    color: var(--green);
    flex-shrink: 0;
    margin-top: 2px;
}
.price-card.featured .price-list svg {
    color: #7ce2a6;
}

/* ============================= PRODUCTS ============================= */
.product-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    transition: 0.25s ease;
    position: relative;
}
.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.product-thumb {
    height: 190px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    color: #fff;
    overflow: hidden;
}
.product-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 80% 110%,
        rgba(255, 255, 255, 0.18),
        transparent 60%
    );
}
.thumb-blue {
    background: linear-gradient(150deg, #2451c7, #1a2152);
}
.thumb-green {
    background: linear-gradient(150deg, #1f9e59, #0f5b33);
}
.thumb-amber {
    background: linear-gradient(150deg, #f3a93c, #c97412);
}
.thumb-violet {
    background: linear-gradient(150deg, #7a4fe0, #3e1f8c);
}
.year-pill {
    font-family: "JetBrains Mono", monospace;
    background: rgba(255, 255, 255, 0.22);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 6px;
    width: fit-content;
    backdrop-filter: blur(2px);
}
.thumb-title {
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.25;
    position: relative;
    z-index: 1;
}
.discount-ribbon {
    position: absolute;
    top: 14px;
    right: -32px;
    width: 130px;
    text-align: center;
    background: var(--gold);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 0;
    transform: rotate(40deg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    letter-spacing: 0.04em;
    z-index: 2;
}
.stars-row svg path {
    fill: var(--gold);
}
.price-old {
    color: var(--muted);
    text-decoration: line-through;
    font-size: 0.88rem;
}
.price-new {
    font-family: "JetBrains Mono", monospace;
    font-weight: 700;
    color: var(--navy);
    font-size: 1.15rem;
}

/* ============================= TESTIMONIALS ============================= */
.testi-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    height: 100%;
}
.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* ============================= FAQ ============================= */
.accordion-msr .accordion-item {
    border: 1px solid var(--line);
    border-radius: 14px !important;
    margin-bottom: 14px;
    overflow: hidden;
}
.accordion-msr .accordion-button {
    font-weight: 600;
    color: var(--navy);
    font-family: "Sora", sans-serif;
    padding: 20px 22px;
}
.accordion-msr .accordion-button:not(.collapsed) {
    background: var(--green-light);
    color: var(--green-dark);
    box-shadow: none;
}
.accordion-msr .accordion-button:focus {
    box-shadow: none;
    border-color: var(--line);
}
.accordion-msr .accordion-button::after {
    filter: hue-rotate(100deg);
}
.accordion-msr .accordion-body {
    color: var(--muted);
    padding: 4px 22px 22px;
}

/* ============================= NEWSLETTER ============================= */
.newsletter-box {
    border-radius: 28px;
    position: relative;
    overflow: hidden;
}
.newsletter-box::before {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    border: 60px solid rgba(255, 255, 255, 0.04);
    top: -220px;
    right: -160px;
}
.newsletter-box::after {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    border: 40px solid rgba(255, 255, 255, 0.04);
    bottom: -200px;
    left: -120px;
}
.input-pill {
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 14px 22px;
}
.input-pill::placeholder {
    color: #b7bedb;
}
.input-pill:focus {
    box-shadow: none;
    border-color: var(--green);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* ============================= FOOTER ============================= */
.footer-msr {
    background: var(--navy-3);
    color: #a8afcb;
}
.footer-msr h6 {
    color: #fff;
    font-family: "Sora", sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
}
.footer-msr a {
    color: #a8afcb;
    font-size: 0.92rem;
}
.footer-msr a:hover {
    color: var(--green);
}
.footer-msr ul {
    list-style: none;
    padding: 0;
}
.footer-msr li {
    margin-bottom: 12px;
}
.social-ico {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
}
.social-ico:hover {
    background: var(--green);
    border-color: var(--green);
}
.social-ico svg {
    width: 15px;
    height: 15px;
}
hr.footer-line {
    border-color: rgba(255, 255, 255, 0.08);
}

/* ========================== */
/* ======  Custom CSS ====== */
/* =============================== */
.new-logo {
    width: 155px;
    height: 100%;
    object-fit: contain;
}

/* ── PAGE WRAPPER ── */
.auth-page {
    margin-top: 85px;
    min-height: calc(100vh - 65px);
    display: flex;
    align-items: stretch;
 }

/* ── LEFT PANEL ── */
.auth-left {
    width: 42%;
    flex-shrink: 0;
    background: linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem 3.2rem;
}
@media (max-width: 991px) {
    .auth-left {
        display: none;
    }
}
.auth-left::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(201, 162, 75, 0.18),
        transparent 70%
    );
}
.auth-left::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(30, 140, 95, 0.22),
        transparent 70%
    );
}

.left-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}
.left-brand .bi {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
}
.left-brand .bt {
    font-family: "Fraunces", serif;
    font-weight: 700;
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.1;
}
.left-brand .bt span {
    display: block;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    color: #9fd9bc;
    text-transform: uppercase;
}

.left-headline {
    position: relative;
    z-index: 2;
    margin-bottom: 2.5rem;
}
.left-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(30, 140, 95, 0.2);
    color: #9fd9bc;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.38rem 0.9rem;
    border-radius: 30px;
    margin-bottom: 1rem;
}
.left-headline h2 {
    font-size: 1.9rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 0.8rem;
}
.left-headline h2 span {
    color: var(--gold);
}
.left-headline p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.75;
}

.feature-list {
    position: relative;
    z-index: 2;
    margin-bottom: auto;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    margin-bottom: 1.1rem;
}
.feat-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.09);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.feat-text h6 {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    margin: 0 0 0.15rem;
    font-family: "Inter", sans-serif;
}
.feat-text span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
}

.left-stats {
    display: flex;
    gap: 2rem;
    position: relative;
    z-index: 2;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}
.left-stat .num {
    font-family: "Fraunces", serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--gold);
}
.left-stat .lbl {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

/* ── RIGHT PANEL ── */
.auth-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.5rem;
    background: var(--cream);
    background-image: radial-gradient(
        circle at 1px 1px,
        rgba(21, 43, 77, 0.06) 1px,
        transparent 0
    );
    background-size: 22px 22px;
}
.auth-box {
    width: 100%;
    max-width: 460px;
}

/* TABS */
.auth-tabs {
    display: flex;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.3rem;
    margin-bottom: 2rem;
    gap: 0.3rem;
}
.auth-tab {
    flex: 1;
    padding: 0.65rem;
    border: none;
    border-radius: 9px;
    background: transparent;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--slate);
    cursor: pointer;
    transition: 0.2s;
}
.auth-tab.active {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 4px 14px -4px rgba(21, 43, 77, 0.4);
}

/* FORM PANELS */
.auth-panel {
    display: none;
}
.auth-panel.active {
    display: block;
}

.form-head {
    margin-bottom: 1.8rem;
}
.form-head h3 {
    font-size: 1.55rem;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 0.3rem;
}
.form-head p {
    font-size: 0.85rem;
    color: var(--slate);
}

/* GOOGLE BTN */
.btn-google {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 12px;
    border: 1.5px solid var(--line);
    background: var(--paper);
    color: var(--ink);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: 0.2s;
}
.btn-google:hover {
    border-color: var(--navy);
    background: #f9f9ff;
}
.btn-google img {
    width: 20px;
    height: 20px;
}
.google-icon {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.divider {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin: 1.4rem 0;
}
.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--line);
}
.divider span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--slate);
    white-space: nowrap;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* FIELDS */
.field-group {
    margin-bottom: 1.1rem;
}
.field-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 0.42rem;
}
.field-wrap {
    position: relative;
}
.field-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--slate);
    font-size: 0.85rem;
    pointer-events: none;
}
.field-input {
    width: 100%;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    padding: 0.78rem 1rem 0.78rem 2.7rem;
    font-size: 0.9rem;
    font-family: "Inter", sans-serif;
    color: var(--ink);
    background: var(--paper);
    outline: none;
    transition: 0.2s;
}
.field-input:focus {
    border-color: var(--emerald);
    box-shadow: 0 0 0 4px rgba(30, 140, 95, 0.1);
}
.field-input::placeholder {
    color: var(--slate);
    opacity: 0.65;
}
.eye-btn {
    position: absolute;
    right: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--slate);
    cursor: pointer;
    padding: 0.2rem;
    font-size: 0.82rem;
}
.eye-btn:hover {
    color: var(--navy);
}

/* STRENGTH BAR */
.strength-wrap {
    margin-top: 0.5rem;
}
.strength-bars {
    display: flex;
    gap: 3px;
    margin-bottom: 0.3rem;
}
.strength-bar {
    flex: 1;
    height: 4px;
    border-radius: 2px;
    background: var(--line);
    transition: 0.3s;
}
.strength-bar.weak {
    background: #ef4444;
}
.strength-bar.fair {
    background: var(--gold);
}
.strength-bar.good {
    background: var(--emerald);
}
.strength-label {
    font-size: 0.7rem;
    color: var(--slate);
    font-weight: 600;
}

/* EXTRAS */
.extras-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.3rem;
}
.check-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--slate);
    cursor: pointer;
}
.check-label input {
    accent-color: var(--emerald);
    width: 14px;
    height: 14px;
}
.forgot-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--emerald-deep);
}
.forgot-link:hover {
    color: var(--navy);
}

/* SUBMIT */
.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-deep));
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 0.9rem;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    cursor: pointer;
    transition: 0.22s;
    box-shadow: 0 10px 28px -10px rgba(30, 140, 95, 0.55);
}
.btn-submit:hover {
    background: linear-gradient(135deg, var(--emerald-deep), #0d4f32);
    transform: translateY(-1px);
    box-shadow: 0 14px 32px -10px rgba(30, 140, 95, 0.6);
}

.switch-text {
    text-align: center;
    font-size: 0.82rem;
    color: var(--slate);
    margin-top: 1.2rem;
}
.switch-text a {
    color: var(--emerald-deep);
    font-weight: 700;
}
.switch-text a:hover {
    color: var(--navy);
}

/* TERMS */
.terms-check {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}
.terms-check input {
    accent-color: var(--emerald);
    width: 14px;
    height: 14px;
    margin-top: 0.18rem;
    flex-shrink: 0;
}
.terms-check label {
    font-size: 0.79rem;
    color: var(--slate);
    line-height: 1.5;
}
.terms-check label a {
    color: var(--emerald-deep);
    font-weight: 600;
}

/* ERROR STATE */
.field-input.error {
    border-color: #ef4444;
}
.field-error {
    font-size: 0.74rem;
    color: #ef4444;
    margin-top: 0.3rem;
    display: none;
}
.field-input.error + .field-error {
    display: block;
}

/* TOAST */
.toast-msg {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--emerald);
    color: #fff;
    padding: 0.9rem 1.4rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.86rem;
    z-index: 9999;
    box-shadow: 0 14px 30px -10px rgba(30, 140, 95, 0.6);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transform: translateY(100px);
    opacity: 0;
    transition: 0.4s;
}
.toast-msg.show {
    transform: translateY(0);
    opacity: 1;
}

/* PASSWORD VISIBLE toggle */
.field-input[type="password"] {
    letter-spacing: 0.08em;
}
