@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* Base */
.au-home {
    font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
    background: #0b1021;
    color: #f8fafc;
}

.au-home main {
    background: radial-gradient(120% 120% at 20% 20%, #1b2a4a 0%, #0b1021 46%, #0b1021 100%);
}

.au-home .container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero */
.home-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 84px;
    background: radial-gradient(140% 120% at 10% 10%, rgba(71, 118, 230, 0.16), rgba(255, 121, 69, 0.05)), linear-gradient(135deg, #0f172a 0%, #111827 65%);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.home-hero::after {
    content: "";
    position: absolute;
    inset: 12% -20% auto -30%;
    height: 420px;
    background: radial-gradient(40% 40% at 50% 50%, rgba(251, 146, 60, 0.22), rgba(17, 24, 39, 0));
    filter: blur(42px);
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #cbd5f5;
    font-size: 13px;
}

.live-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    font-weight: 700;
    color: #f97316;
}

.live-chip::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.18);
}

.meta-muted {
    color: #cbd5e1;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    font-size: 12px;
    color: #94a3b8;
    margin: 0;
}

.hero-title {
    font-size: clamp(2.4rem, 3vw, 3rem);
    line-height: 1.05;
    margin: 4px 0 6px;
    color: #f8fafc;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: #cbd5e1;
    margin: 0 0 6px;
    max-width: 720px;
}

.hero-search {
    display: flex;
    gap: 12px;
    margin: 24px 0 28px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 10px 12px;
}

.hero-search input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 15px;
    color: #111827;
    outline: none;
}

.hero-search button {
    border: none;
    background: #1d4ed8;
    color: #ffffff;
    font-weight: 600;
    border-radius: 10px;
    padding: 12px 18px;
    cursor: pointer;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 10px;
}

.highlight {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 16px 16px 14px;
    backdrop-filter: blur(6px);
}

.highlight span {
    display: block;
    font-weight: 700;
    font-size: 20px;
    color: #fefefe;
}

.highlight label {
    display: block;
    color: #cbd5e1;
    font-size: 13px;
    margin-top: 4px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.hero-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-solid,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 18px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: transform 120ms ease, box-shadow 120ms ease;
}

.btn-solid {
    background: linear-gradient(135deg,#fb923c,#f97316);
    color: #ffffff;
    border: 1px solid #fb923c;
    box-shadow: 0 16px 32px rgba(249, 115, 22, 0.3);
}

.btn-ghost {
    background: transparent;
    color: #e2e8f0;
    border: 1px solid rgba(255,255,255,0.22);
}

.btn-solid:hover,
.btn-ghost:hover {
    transform: translateY(-2px);
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0 6px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    color: #f8fafc;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.pill::after {
    content: "↗";
    font-size: 13px;
    opacity: 0.8;
}

.pill.ghost {
    background: transparent;
    color: #cbd5e1;
    border-color: rgba(255,255,255,0.16);
}

.hero-stats .stat-card {
    border-color: rgba(255,255,255,0.16);
    background: rgba(255, 255, 255, 0.08);
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #f8fafc;
}

.hero-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 4px 0 6px;
}

.step-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.status-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-top: 4px;
}

.status-dot.success { background: #22c55e; box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.16); }
.status-dot.info { background: #38bdf8; box-shadow: 0 0 0 8px rgba(56, 189, 248, 0.16); }
.status-dot.warn { background: #fb923c; box-shadow: 0 0 0 8px rgba(251, 146, 60, 0.16); }

.step-row strong { color: #e2e8f0; display: block; }
.step-row p { margin: 2px 0 0; color: #cbd5e1; font-size: 14px; }

/* Hero panel */
.hero-panel {
    background: #0f172a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 18px 44px rgba(7, 89, 133, 0.25);
}

.panel-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.panel-label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #cbd5e1;
    font-size: 12px;
    margin: 0 0 4px 0;
}

.panel-heading h3 {
    margin: 0;
    color: #f8fafc;
    font-size: 20px;
}

.panel-badge {
    background: rgba(56, 189, 248, 0.14);
    color: #38bdf8;
    padding: 8px 12px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 12px;
}

.panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.panel-list li {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
    background: rgba(255,255,255,0.03);
}

.list-title {
    margin: 0 0 4px 0;
    font-weight: 600;
    color: #e2e8f0;
}

.list-sub {
    margin: 0;
    color: #cbd5e1;
    font-size: 14px;
    max-width: 480px;
    line-height: 1.45;
}

.panel-list a {
    color: #1d4ed8;
    font-weight: 700;
    text-decoration: none;
}

.panel-footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 12px;
    color: #cbd5e1;
    font-size: 14px;
    margin-top: 4px;
}

.panel-status .status-chip {
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.status-chip.success { background: rgba(34,197,94,0.15); color: #4ade80; border: 1px solid rgba(34,197,94,0.35); }
.status-chip.info { background: rgba(56,189,248,0.12); color: #7dd3fc; border: 1px solid rgba(56,189,248,0.32); }
.status-chip.warn { background: rgba(251,146,60,0.12); color: #fdba74; border: 1px solid rgba(251,146,60,0.32); }

/* Sections */
.learning-section,
.tools-section {
    padding: 70px 0 0;
}

.section-header {
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    color: #f8fafc;
    margin: 0;
}

.section-subtitle {
    margin: 0;
    color: #cbd5e1;
    font-size: 15px;
    max-width: 760px;
}

/* Learning paths */
.learning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.path-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(15,23,42,0.78));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 18px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.path-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #cbd5e1;
    font-size: 13px;
}

.path-marker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: #f97316;
    background: rgba(249,115,22,0.12);
    padding: 6px 10px;
    border-radius: 999px;
}

.path-length {
    background: rgba(255,255,255,0.08);
    padding: 6px 10px;
    border-radius: 10px;
    font-weight: 600;
    color: #e2e8f0;
}

.path-card h3 {
    margin: 0;
    font-size: 18px;
    color: #f8fafc;
}

.path-card p {
    margin: 0;
    color: #cbd5e1;
    line-height: 1.45;
}

.path-points {
    list-style: disc;
    padding-left: 18px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #cbd5e1;
    font-size: 14px;
}

.path-cta {
    margin-top: 6px;
    font-weight: 700;
    color: #fbbf24;
    font-size: 14px;
}

/* Tools */
.tools-section {
    padding-bottom: 12px;
}

.tool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.tool-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 16px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.28);
}

.tool-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #cbd5e1;
}

.tool-kicker {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    color: #f8fafc;
}

.pill-success,
.pill-neutral,
.pill-info {
    padding: 6px 10px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 12px;
}

.pill-success {
    background: rgba(34,197,94,0.16);
    color: #4ade80;
}

.pill-neutral {
    background: rgba(255,255,255,0.08);
    color: #e2e8f0;
}

.pill-info {
    background: rgba(59,130,246,0.12);
    color: #bfdbfe;
}

.tool-card h3 {
    margin: 0;
    font-size: 17px;
    color: #f8fafc;
}

.tool-card p {
    margin: 0;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.45;
}

.tool-link {
    margin-top: auto;
    font-weight: 700;
    color: #fbbf24;
    font-size: 14px;
}

.qa-home { padding: 56px 0; background: rgba(15, 23, 42, 0.6); border-top: 1px solid rgba(255,255,255,0.06); }
.qa-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap:12px; }
.qa-card { background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08); border-radius:12px; padding:14px 16px; box-shadow:0 8px 20px rgba(15,23,42,0.18); }
.qa-card h3 { margin:0 0 6px; font-size:15px; font-weight:800; color:#f8fafc; }
.qa-card p { margin:0 0 8px; color:#cbd5e1; font-size:14px; line-height:1.5; }
.qa-try { font-weight:700; color:#fbbf24; }
.ref-strip { display:flex; flex-wrap:wrap; gap:8px; margin-top:14px; }
.ref-pill { display:inline-block; padding:10px 12px; background:rgba(255,255,255,0.06); color:#e5e7eb; border-radius:10px; border:1px solid rgba(255,255,255,0.12); text-decoration:none; font-weight:700; }
.ref-pill:hover { color:#fff; }

/* CTA */
.cta-section {
    padding: 70px 0 72px;
}

.cta-banner {
    background: linear-gradient(135deg, #0f172a, #111827);
    color: #ffffff;
    border-radius: 18px;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.24);
}

.cta-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cta-label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    margin: 0;
    color: #cbd5f5;
}

.cta-text h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.cta-body {
    margin: 0;
    color: #e2e8f0;
    max-width: 620px;
    line-height: 1.5;
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-banner .btn-solid {
    background: #ffffff;
    color: #0f172a;
    border-color: #ffffff;
}

.cta-banner .btn-ghost {
    color: #e0e7ff;
    border-color: #475569;
    background: transparent;
}

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

    .hero-panel {
        order: -1;
    }
}

@media (max-width: 760px) {
    .home-hero {
        padding: 72px 0 52px;
    }

    .hero-highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .panel-list li {
        flex-direction: column;
    }

    .cta-banner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Spotlight + trust */
.spotlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.spotlight-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.28);
}

.spotlight-badge {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(56,189,248,0.16);
    color: #7dd3fc;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 12px;
}

.spotlight-card h4 {
    margin: 10px 0 8px;
    color: #f8fafc;
    font-size: 18px;
}

.spotlight-card p {
    margin: 0 0 10px;
    color: #cbd5e1;
}

.spotlight-card ul {
    margin: 0 0 10px 16px;
    padding: 0;
    color: #cbd5e1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.spotlight-cta {
    color: #fbbf24;
    font-weight: 700;
    text-decoration: none;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.logo-fake {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 14px;
    color: #cbd5e1;
    display: flex;
    gap: 10px;
    align-items: center;
}

.logo-fake svg { color: #fbbf24; }
.logo-fake strong { display: block; color: #f8fafc; }

.arcade-section {
    padding: 72px 0 52px;
}

.arcade-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.arcade-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.28);
}

.arcade-kicker {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #7dd3fc;
    font-size: 12px;
    margin-bottom: 6px;
}

.arcade-title {
    margin: 0 0 8px;
    color: #f8fafc;
    font-size: 18px;
}

.arcade-sub {
    margin: 0 0 10px;
    color: #cbd5e1;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 10px 0 8px;
}

.quiz-option {
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    color: #e2e8f0;
    border-radius: 10px;
    padding: 10px 12px;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 120ms ease, transform 120ms ease;
}

.quiz-option:hover { border-color: rgba(255,255,255,0.24); transform: translateY(-1px); }
.quiz-option.correct { border-color: #22c55e; color: #bbf7d0; }
.quiz-option.wrong { border-color: #fb923c; color: #fed7aa; }

.quiz-status {
    margin: 4px 0 8px;
    color: #cbd5e1;
    font-size: 14px;
}

.quiz-next {
    width: 100%;
    justify-content: center;
}

.spinner-pill {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #cbd5e1;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 8px;
}

.spinner-action {
    color: #fbbf24;
    font-weight: 700;
    margin: 8px 0 14px;
}

.micro-challenges {
    margin-top: 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 16px;
}

.micro-head h4 { margin: 0 0 4px; color: #f8fafc; }
.micro-head p { margin: 0 0 10px; color: #cbd5e1; }

.micro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 10px;
}

.micro-card {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 10px 12px;
}

.micro-card strong { color: #f8fafc; }
.micro-card p { margin: 2px 0 0; color: #cbd5e1; font-size: 14px; }

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-top: 4px;
}
.dot.success { background: #22c55e; box-shadow: 0 0 0 6px rgba(34,197,94,0.16); }
.dot.info { background: #38bdf8; box-shadow: 0 0 0 6px rgba(56,189,248,0.16); }
.dot.warn { background: #fb923c; box-shadow: 0 0 0 6px rgba(251,146,60,0.16); }

/* Utilities */
code { background: rgba(255,255,255,0.08); padding: 2px 6px; border-radius: 6px; color: #e2e8f0; }

/* ---- Static overrides (no animations on home) ---- */
body::before {
    animation: none !important;
    opacity: 0 !important;
}

#scroll-progress {
    display: none !important;
}

.home-hero,
.hero-bg-glow {
    transform: none !important;
}

.ripple {
    display: none !important;
}
