:root {
    --bg: #fffaf3;
    --surface: #ffffff;
    --surface-soft: #f6f0ff;
    --ink: #1e1733;
    --muted: #6f647d;
    --brand: #4b2aad;
    --brand-dark: #2d176e;
    --brand-soft: #ece3ff;
    --gold: #f2b84b;
    --rose: #ffedf3;
    --border: rgba(75, 42, 173, 0.14);
    --shadow: 0 24px 70px rgba(45, 23, 110, 0.13);
    --radius: 28px;
    --radius-sm: 16px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 12% 8%, rgba(242, 184, 75, 0.16), transparent 28%),
        radial-gradient(circle at 82% 0%, rgba(75, 42, 173, 0.18), transparent 30%),
        var(--bg);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    color: var(--muted);
    margin: 0 0 18px;
}

h1,
h2,
h3,
h4 {
    line-height: 1.12;
    margin: 0;
    color: var(--ink);
}

h1 {
    font-size: clamp(42px, 6vw, 76px);
    letter-spacing: -2.8px;
}

h2 {
    font-size: clamp(30px, 4vw, 48px);
    letter-spacing: -1.6px;
}

h3 {
    font-size: 22px;
    letter-spacing: -0.5px;
}

.container {
    width: min(var(--max), calc(100% - 36px));
    margin: 0 auto;
}

.narrow {
    width: min(850px, calc(100% - 36px));
}

.site-shell {
    min-height: 100vh;
    overflow: hidden;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 250, 243, 0.86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(75, 42, 173, 0.08);
}

.nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: #fff;
    font-weight: 900;
    letter-spacing: -1px;
    box-shadow: 0 12px 30px rgba(75, 42, 173, 0.25);
}

.brand strong {
    display: block;
    font-size: 19px;
    letter-spacing: -0.4px;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-top: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 26px;
    font-weight: 700;
    color: rgba(30, 23, 51, 0.78);
}

.nav-menu a {
    transition: color 180ms ease, transform 180ms ease;
}

.nav-menu a:hover {
    color: var(--brand);
    transform: translateY(-1px);
}

.nav-cta {
    padding: 12px 18px;
    border-radius: 999px;
    color: #fff !important;
    background: var(--brand);
    box-shadow: 0 12px 26px rgba(75, 42, 173, 0.22);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface);
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--ink);
    display: block;
    margin: 5px auto;
}

.hero {
    padding: 86px 0 72px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 58px;
    align-items: center;
}

.hero-copy p {
    font-size: 20px;
    max-width: 690px;
    margin-top: 24px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand);
    background: rgba(75, 42, 173, 0.08);
    border: 1px solid rgba(75, 42, 173, 0.08);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

.eyebrow.light {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.16);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-actions.centered {
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 900;
    border: 0;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    font-size: 15px;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    box-shadow: 0 16px 34px rgba(75, 42, 173, 0.26);
}

.btn-soft {
    color: var(--brand);
    background: var(--brand-soft);
}

.btn-light {
    background: #fff;
    color: var(--brand-dark);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
}

.full-btn {
    width: 100%;
    margin-top: 22px;
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.trust-strip span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border);
    color: var(--muted);
    font-weight: 800;
    font-size: 13px;
}

.hero-card {
    min-height: 520px;
    position: relative;
    border-radius: 42px;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.52), transparent 28%),
        linear-gradient(145deg, #6c3be8, #2d176e 68%);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 28px;
}

.orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(1px);
}

.orb-one {
    width: 220px;
    height: 220px;
    top: 42px;
    right: 38px;
    background: rgba(242, 184, 75, 0.42);
}

.orb-two {
    width: 150px;
    height: 150px;
    left: 34px;
    top: 120px;
    background: rgba(255, 237, 243, 0.45);
}

.class-card {
    position: relative;
    width: 100%;
    padding: 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.93);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
}

.status-pill {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--rose);
    color: #a3124e;
    font-weight: 900;
    font-size: 12px;
    margin-bottom: 14px;
}

.class-card ul {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}

.class-card li {
    position: relative;
    padding-left: 28px;
    margin: 12px 0;
    color: var(--muted);
    font-weight: 700;
}

.class-card li::before,
.tick-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--brand);
    font-weight: 900;
}

.section {
    padding: 78px 0;
}

.section-soft {
    background: rgba(246, 240, 255, 0.78);
    border-top: 1px solid rgba(75, 42, 173, 0.08);
    border-bottom: 1px solid rgba(75, 42, 173, 0.08);
}

.section-dark {
    background:
        radial-gradient(circle at 15% 15%, rgba(242, 184, 75, 0.24), transparent 28%),
        linear-gradient(135deg, #2d176e, #1b123e);
    color: #fff;
}

.section-dark h2,
.section-dark p {
    color: #fff;
}

.section-head {
    text-align: center;
    margin-bottom: 42px;
}

.section-head p {
    max-width: 720px;
    margin: 16px auto 0;
    font-size: 18px;
}

.row-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    text-align: left;
}

.row-head p {
    margin-left: 0;
}

.text-link {
    color: var(--brand);
    font-weight: 900;
}

.feature-grid,
.card-grid,
.article-grid,
.values-grid {
    display: grid;
    gap: 22px;
}

.feature-grid {
    grid-template-columns: repeat(4, 1fr);
}

.card-grid {
    grid-template-columns: repeat(3, 1fr);
}

.article-grid {
    grid-template-columns: repeat(3, 1fr);
}

.values-grid {
    grid-template-columns: repeat(4, 1fr);
}

.feature-card,
.course-card,
.article-card,
.values-grid article,
.contact-card,
.aura-form {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 18px 50px rgba(45, 23, 110, 0.08);
}

.feature-card,
.course-card,
.article-card,
.values-grid article,
.contact-card {
    padding: 28px;
}

.icon-bubble {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: var(--brand-soft);
    color: var(--brand);
    font-weight: 900;
    margin-bottom: 22px;
}

.course-card span,
.article-card span {
    display: block;
    color: var(--brand);
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.course-card p,
.article-card p {
    margin-top: 14px;
}

.course-card a,
.article-card a {
    display: inline-flex;
    margin-top: 12px;
    color: var(--brand);
    font-weight: 900;
}

.course-card.expanded {
    display: flex;
    flex-direction: column;
}

.tick-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}

.tick-list li {
    position: relative;
    padding-left: 28px;
    margin: 9px 0;
    color: var(--muted);
    font-weight: 750;
}

.split {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: start;
}

.rich-text p {
    font-size: 18px;
}

.process-list {
    display: grid;
    gap: 14px;
}

.process-list div {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--border);
    padding: 18px;
    border-radius: 18px;
}

.process-list strong {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--brand);
    color: #fff;
}

.process-list span {
    font-weight: 900;
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.cta-band p {
    max-width: 760px;
    margin-top: 14px;
}

.page-hero {
    padding: 88px 0 62px;
    text-align: center;
}

.page-hero p {
    font-size: 20px;
}

.article-hero {
    background: rgba(246, 240, 255, 0.6);
}

.article-body {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 44px;
    box-shadow: var(--shadow);
}

.article-body p {
    font-size: 19px;
    color: #4f465c;
}

.article-action {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.timeline {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 44px;
}

.timeline-list {
    display: grid;
    gap: 18px;
}

.timeline-list div {
    padding: 24px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 18px 45px rgba(45, 23, 110, 0.06);
}

.timeline-list strong {
    color: var(--brand);
    font-size: 13px;
    letter-spacing: 0.08em;
}

.form-wrap {
    width: min(900px, calc(100% - 36px));
}

.aura-form {
    padding: 32px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.aura-form label {
    display: block;
    margin-bottom: 18px;
}

.aura-form label span {
    display: block;
    font-weight: 900;
    margin-bottom: 8px;
}

.aura-form input,
.aura-form textarea,
.aura-form select {
    width: 100%;
    border: 1px solid rgba(75, 42, 173, 0.18);
    border-radius: 15px;
    min-height: 50px;
    padding: 13px 15px;
    font: inherit;
    color: var(--ink);
    background: #fff;
    outline: none;
    transition: border 180ms ease, box-shadow 180ms ease;
}

.aura-form textarea {
    resize: vertical;
}

.aura-form input:focus,
.aura-form textarea:focus,
.aura-form select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(75, 42, 173, 0.09);
}

.hidden-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.captcha-row {
    width: min(320px, 100%);
}

.check-row {
    display: flex !important;
    gap: 12px;
    align-items: flex-start;
}

.check-row input {
    width: 18px;
    min-height: 18px;
    margin-top: 4px;
}

.check-row span {
    margin: 0 !important;
    font-weight: 700 !important;
    color: var(--muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 28px;
    align-items: start;
}

.contact-card h2 {
    margin-bottom: 22px;
}

.contact-card p {
    margin-bottom: 22px;
}

.success-hero {
    min-height: 60vh;
    display: grid;
    place-items: center;
}

.success-box {
    width: min(420px, 100%);
    margin: 26px auto 0;
    padding: 18px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 16px 34px rgba(45, 23, 110, 0.08);
}

.success-box strong,
.success-box span {
    display: block;
}

.success-box span {
    color: var(--brand);
    font-weight: 900;
    margin-top: 4px;
}

.flash-zone {
    padding: 18px 0 0;
}

.flash {
    padding: 14px 18px;
    border-radius: 16px;
    font-weight: 800;
    margin-bottom: 10px;
}

.flash-error {
    background: #fff0f0;
    color: #a31313;
    border: 1px solid rgba(163, 19, 19, 0.16);
}

.flash-success {
    background: #eefaf0;
    color: #176a28;
    border: 1px solid rgba(23, 106, 40, 0.16);
}

.footer {
    background: #160d34;
    color: #fff;
    padding: 62px 0 24px;
}

.footer p,
.footer small {
    color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.65fr 0.75fr 1.1fr;
    gap: 34px;
}

.footer h4 {
    color: #fff;
    margin-bottom: 16px;
}

.footer a {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 10px;
}

.footer-brand {
    margin-bottom: 18px;
}

.footer-bottom {
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 60;
    background: #1fab5b;
    color: #fff;
    padding: 13px 18px;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 18px 38px rgba(31, 171, 91, 0.3);
}

@media (max-width: 980px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        left: 18px;
        right: 18px;
        top: 86px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 22px;
        padding: 16px;
        box-shadow: var(--shadow);
    }

    .nav-menu.is-open {
        display: flex;
    }

    .nav-menu a {
        padding: 12px;
    }

    .hero-grid,
    .split,
    .timeline,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        min-height: 420px;
    }

    .feature-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-grid,
    .article-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-band,
    .row-head,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .container,
    .narrow,
    .form-wrap {
        width: min(100% - 26px, var(--max));
    }

    h1 {
        letter-spacing: -1.8px;
    }

    .hero,
    .section,
    .page-hero {
        padding: 54px 0;
    }

    .feature-grid,
    .card-grid,
    .article-grid,
    .values-grid,
    .form-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .aura-form,
    .article-body {
        padding: 22px;
    }

    .hero-card {
        border-radius: 28px;
        padding: 18px;
    }

    .class-card {
        padding: 22px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
    }
}
/* Aura Saha Compact UI Patch */
:root {
    --max: 1080px;
    --radius: 20px;
    --radius-sm: 12px;
    --shadow: 0 14px 38px rgba(45, 23, 110, 0.10);
}

body {
    font-size: 14.5px;
    line-height: 1.52;
}

h1 {
    font-size: clamp(30px, 4.2vw, 52px);
    letter-spacing: -1.8px;
}

h2 {
    font-size: clamp(22px, 3vw, 34px);
    letter-spacing: -1px;
}

h3 {
    font-size: 18px;
}

p {
    margin-bottom: 12px;
}

.nav-wrap {
    min-height: 64px;
}

.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
}

.brand strong {
    font-size: 17px;
}

.nav-menu {
    gap: 16px;
    font-size: 14px;
}

.nav-cta {
    padding: 9px 14px;
}

.hero {
    padding: 56px 0 48px;
}

.page-hero {
    padding: 54px 0 38px;
}

.page-hero.compact-hero {
    padding: 42px 0 30px;
}

.page-hero p,
.hero-copy p,
.section-head p {
    font-size: 16px;
}

.section {
    padding: 46px 0;
}

.section-head {
    margin-bottom: 26px;
}

.hero-actions {
    gap: 10px;
    margin-top: 20px;
}

.btn {
    min-height: 42px;
    padding: 10px 16px;
    font-size: 14px;
}

.feature-card,
.course-card,
.article-card,
.values-grid article,
.contact-card {
    padding: 20px;
}

.aura-form {
    padding: 22px;
}

.aura-form label {
    margin-bottom: 14px;
}

.aura-form label span {
    margin-bottom: 6px;
}

.aura-form input,
.aura-form textarea,
.aura-form select {
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 11px;
    font-size: 14px;
}

.form-grid {
    gap: 14px;
}

.card-grid,
.article-grid,
.feature-grid,
.values-grid {
    gap: 16px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 12px 34px rgba(45, 23, 110, 0.08);
}

.metric-card span {
    display: block;
    color: var(--muted);
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.metric-card strong {
    display: block;
    font-size: 26px;
    line-height: 1.1;
    margin: 8px 0 4px;
    color: var(--brand-dark);
}

.metric-card small {
    color: var(--muted);
}

.mini-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.mini-row small {
    display: block;
    color: var(--muted);
    margin-top: 3px;
}

.quick-action-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.quick-action-grid a {
    display: block;
    padding: 13px;
    border-radius: 14px;
    background: var(--brand-soft);
    color: var(--brand-dark);
    font-weight: 900;
    text-align: center;
}

.safety-card {
    margin-top: 22px;
    border-color: rgba(242, 184, 75, 0.38);
}

@media (max-width: 1100px) {
    .dashboard-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .quick-action-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 720px) {
    .dashboard-grid,
    .quick-action-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        gap: 10px;
    }
}
/* Compact final UI scale */
body {
    font-size: 14px;
}

.container {
    width: min(1080px, calc(100% - 32px));
}

.topbar {
    backdrop-filter: blur(14px);
}

.nav-wrap {
    min-height: 60px;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 14px;
}

.brand strong {
    font-size: 16px;
}

.brand small {
    font-size: 11px;
}

.nav-menu {
    gap: 14px;
    font-size: 13.5px;
}

.nav-menu a {
    white-space: nowrap;
}

.nav-cta {
    padding: 8px 13px;
}

.page-hero {
    padding: 46px 0 32px;
}

.page-hero.compact-hero {
    padding: 38px 0 26px;
}

h1 {
    font-size: clamp(28px, 3.6vw, 46px);
    letter-spacing: -1.4px;
}

h2 {
    font-size: clamp(21px, 2.5vw, 30px);
    letter-spacing: -0.8px;
}

h3 {
    font-size: 17px;
}

.page-hero p,
.hero-copy p,
.section-head p {
    font-size: 15.5px;
}

.section {
    padding: 40px 0;
}

.btn {
    min-height: 40px;
    padding: 9px 15px;
    font-size: 13.5px;
}

.contact-card,
.course-card,
.article-card,
.feature-card,
.values-grid article {
    padding: 18px;
    border-radius: 18px;
}

.aura-form {
    padding: 20px;
    border-radius: 20px;
}

.aura-form input,
.aura-form textarea,
.aura-form select {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 13.5px;
    border-radius: 11px;
}

.aura-form label {
    margin-bottom: 13px;
}

.form-grid {
    gap: 13px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 13px;
}

.metric-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 26px rgba(45, 23, 110, 0.08);
}

.metric-card span {
    display: block;
    color: var(--muted);
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.metric-card strong {
    display: block;
    font-size: 23px;
    line-height: 1.15;
    margin: 7px 0 4px;
    color: var(--brand-dark);
}

.metric-card small {
    color: var(--muted);
    line-height: 1.5;
}

.safety-card {
    border-color: rgba(242, 184, 75, 0.42);
}

@media (max-width: 1100px) {
    .dashboard-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 720px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}