:root {
    --bg: #f8f9fc;
    --card: #ffffff;
    --muted: #6b7280;
    --accent: #0b1226;
    --accent-2: #0e66ff;
    --radius: 12px;
    --container: 1100px;
    --gap: 24px;
    --ani-fast: 260ms;
    --ani-medium: 480ms;
    --ani-slow: 680ms;
    font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: #0b1226;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--accent);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important
    }
}

/* Header */
.site-header {
    background: white;
    border-bottom: 1px solid #f0f3f7
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    width: 100%
}

.brand {
    font-weight: 700;
    font-size: 1.1rem
}

.nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    gap: 40px
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 22px
}

.nav a {
    margin-left: 0;
    text-decoration: none;
    color: var(--accent);
    font-weight: 600
}

.nav a.btn-primary {
    color: white;
}

.btn-link {
    padding: 8px 12px;
    border-radius: 8px;
    background: transparent;
    border: 1px solid #e6e9ef;
    transition: transform var(--ani-fast) ease, box-shadow var(--ani-fast)
}

/* Launch hero */

/* Launch Hero */

.hero-launch {
    position: relative;
    background: black;
    color: white;
    padding: 140px 0;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    background:
        radial-gradient(circle at 30% 30%, rgba(0, 120, 255, 0.25), transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(0, 150, 255, 0.15), transparent 45%);
    animation: auraiumMove 16s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
}

@keyframes auraiumMove {
    0% {
        transform: translate(-60px, -40px) scale(1);
    }

    50% {
        transform: translate(40px, 60px) scale(1.08);
    }

    100% {
        transform: translate(-20px, 40px) scale(1.05);
    }
}

.launch-title {
    font-size: 42px;
    margin-bottom: 14px;
}

.launch-sub {
    opacity: 0.85;
    max-width: 620px;
    margin: 0 auto 18px auto;
    line-height: 1.6;
}

.countdown {
    font-size: 88px;
    font-weight: 700;
    letter-spacing: 4px;
    margin: 12px 0 14px 0;
}

.launch-date {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 28px;
}

.launch-date strong {
    color: #3b82f6;
    font-weight: 600;
}

.hero-launch .btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

/* Primary button */
.btn-primary {
    background: #0d2767;
    color: white;
    padding: 14px 26px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 99, 255, 0.35);
    transition: all 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(37, 99, 255, 0.45);
}

/* Secondary button */
.btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.75);
    padding: 14px 22px;
    border-radius: 10px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.45);
    color: white;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 30px;
}

.waitlist-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: black;
    overflow: hidden;
}

.small-btn {
    background: #eef2f7;
    border-radius: 6px;
    padding: 6px 10px;
    border: 0;
    cursor: pointer
}

/* Why grid */
.why {
    padding: 36px 0
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 18px
}

.card {
    background: var(--card);
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(11, 18, 38, 0.04);
    transform: translateY(6px);
    transition: transform var(--ani-fast), box-shadow var(--ani-fast)
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 44px rgba(11, 18, 38, 0.06)
}

h2 {
    margin: 12px 0
}

/* How it works - staged reveal */
.how {
    padding: 40px 0
}

.stages {
    counter-reset: steps;
    margin: 0;
    padding-left: 0;
    list-style: none
}

.stage-item {
    background: var(--card);
    padding: 18px;
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: 0 6px 18px rgba(11, 18, 38, 0.03);
    opacity: 0;
    transform: translateY(14px) scale(.998);
    transition: opacity var(--ani-medium) cubic-bezier(.2, .9, .3, 1), transform var(--ani-medium) cubic-bezier(.2, .9, .3, 1)
}

.stage-item::before {
    counter-increment: steps;
    content: counter(steps);
    display: inline-block;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #eef2f7;
    color: #0b1226;
    line-height: 34px;
    text-align: center;
    margin-right: 12px;
    font-weight: 700
}

.stage-item.reveal {
    opacity: 1;
    transform: none
}

/* stagger support: we allow JS to set --delay variable */
.stage-item {
    transition-delay: var(--delay, 0s)
}

/* Explainability card */
.explain {
    padding: 32px 0
}

.example-card {
    background: var(--card);
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 8px 30px rgba(11, 18, 38, 0.04);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity var(--ani-medium), transform var(--ani-medium)
}

.example-card.reveal {
    opacity: 1;
    transform: none
}

.example-meta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 10px
}

.example-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px
}

.explanation {
    border-top: 1px dashed #e7edf4;
    padding-top: 12px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--ani-medium) cubic-bezier(.2, .9, .3, 1), box-shadow var(--ani-fast)
}

.explanation.open {
    max-height: 520px;
    box-shadow: inset 0 10px 40px rgba(14, 102, 255, 0.03);
    padding-top: 12px
}

.hidden {
    display: none
}

.flagged .verdict {
    color: #b00020;
    font-weight: 700
}

/* small animation for explanation text fade */
.explanation p,
.explanation ul,
.explanation ol {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity var(--ani-medium) var(--ani-fast), transform var(--ani-medium) var(--ani-fast)
}

.explanation.open p,
.explanation.open ul,
.explanation.open ol {
    opacity: 1;
    transform: none
}

/* Privacy */
.privacy {
    padding: 36px 0
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 18px
}

.privacy-card {
    background: var(--card);
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(11, 18, 38, 0.03);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity var(--ani-medium), transform var(--ani-medium)
}

.privacy-card.reveal {
    opacity: 1;
    transform: none
}

.privacy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 44px rgba(11, 18, 38, 0.06)
}

/* FAQ */
.faq {
    padding: 28px 0
}

details {
    background: var(--card);
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 6px 18px rgba(11, 18, 38, 0.03)
}

/* CTA + footer */
.cta {
    padding: 26px 0;
    text-align: center
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    color: var(--muted);
    font-size: 0.95rem;
    border-top: 1px solid #eef2f6;
    background: white
}

/* reveal on scroll helper (for headings) */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity var(--ani-medium), transform var(--ani-medium)
}

.reveal-on-scroll.reveal {
    opacity: 1;
    transform: none
}

/* small screens */
@media (max-width:900px) {

    .grid-3,
    .privacy-grid {
        grid-template-columns: 1fr
    }

    .example-meta {
        flex-direction: column
    }

    .header-inner {
        flex-direction: column;
        gap: 12px
    }

    .nav a {
        margin-left: 8px
    }
}

/* ----- A: SVG timeline styles ----- */
.pipeline-visual {
    padding: 36px 0 10px;
}

#svg-timeline {
    width: 100%;
    height: 240px;
    display: block;
}

#timeline-path {
    filter: blur(0.2px);
}

.node-label {
    font-size: 12px;
    fill: #0b1226;
    text-anchor: middle;
    font-weight: 600;
    pointer-events: none;
}

.node .node-ring {
    fill: rgba(14, 102, 255, 0.06);
    stroke: rgba(14, 102, 255, 0.12);
    stroke-width: 2;
    transition: transform .36s cubic-bezier(.2, .9, .3, 1), fill .28s;
}

.node .node-core {
    fill: #ffffff;
    stroke: #0b1226;
    stroke-width: 1.5;
    transition: r .18s;
}

#walker .walker-core {
    fill: #0e66ff;
}

#walker .walker-glow {
    fill: rgba(14, 102, 255, 0.12);
    transform-origin: center;
    transition: transform .36s ease, opacity .36s ease;
}

/* on reveal: glow & core enlarge */
.node.revealed .node-ring {
    transform: scale(1.08);
    fill: rgba(14, 102, 255, 0.12);
}

.node.revealed .node-core {
    r: 12;
    transform: scale(1.1);
}

/* legend */
.timeline-legend {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 12px;
    color: var(--muted);
    font-size: 0.95rem;
}

/* ----- B: Parallax layers (place within hero) ----- */
.hero-parallax {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.hero {
    position: relative;
    z-index: 2;
}

/* ensures hero text sits above layers */

.hero-parallax .parallax-layer {
    position: absolute;
    width: 160%;
    height: 140%;
    left: -30%;
    top: -20%;
    background: radial-gradient(circle at 10% 30%, rgba(14, 102, 255, 0.06), transparent 15%),
        radial-gradient(circle at 80% 70%, rgba(14, 207, 255, 0.03), transparent 20%);
    transform: translate3d(0, 0, 0);
    transition: transform 0.18s linear;
}

.hero-parallax .parallax-layer.accent {
    background: radial-gradient(circle at 60% 20%, rgba(14, 102, 255, 0.10), transparent 20%),
        radial-gradient(circle at 30% 80%, rgba(14, 102, 255, 0.04), transparent 30%);
    mix-blend-mode: screen;
}

/* ----- C: Horizontal pipeline flow ----- */
.horizontal-pipeline {
    padding: 28px 0 40px;
}

.hpipe-viewport {
    overflow: hidden;
    width: 100%;
    background: var(--card);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 8px 30px rgba(11, 18, 38, 0.04);
}

.hpipe-track {
    display: flex;
    gap: 20px;
    transition: transform .6s cubic-bezier(.2, .9, .3, 1);
    will-change: transform;
    padding: 14px;
}

.hpipe-card {
    min-width: 280px;
    max-width: 320px;
    background: transparent;
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 6px 18px rgba(11, 18, 38, 0.03);
    flex: 0 0 auto;
}

.hpipe-card h4 {
    margin: 0 0 8px;
}

/* when reveal, nudge into view */
.hpipe-track.revealed {
    transform: translateX(0);
}

.hpipe-track:not(.revealed) {
    transform: translateX(40px) scale(.995);
    opacity: 0.01;
}

/* ----- D: ML→Decision→LLM diagram ----- */
.mini-diagram {
    padding: 22px 0 40px;
}

.diagram-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    padding: 16px;
    background: var(--card);
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(11, 18, 38, 0.04);
    position: relative;
    overflow: hidden
}

.diagram-node {
    width: 150px;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    background: linear-gradient(180deg, #fff, #fbfdff);
    box-shadow: 0 6px 18px rgba(11, 18, 38, 0.03);
    transform: translateY(8px);
    opacity: 0;
    transition: transform .48s cubic-bezier(.2, .9, .3, 1), opacity .48s;
}

.diagram-node.reveal {
    opacity: 1;
    transform: none;
}

.diagram-node .node-title {
    font-weight: 700;
    margin-bottom: 8px;
}

.diagram-node .node-body {
    color: var(--muted);
    font-size: 0.95rem;
}

/* graphical arrows style */
.diagram-arrows {
    position: absolute;
    left: 0;
    right: 0;
    pointer-events: none;
    height: 100%;
    top: 0;
}

/* responsive */
@media (max-width:900px) {
    #svg-timeline {
        height: 320px;
    }

    .diagram-wrap {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .hpipe-track {
        padding-bottom: 20px;
    }
}

/* ----- A: SVG timeline styles ----- */
.pipeline-visual {
    padding: 36px 0 10px;
}

#svg-timeline {
    width: 100%;
    height: 240px;
    display: block;
}

#timeline-path {
    filter: blur(0.2px);
}

.node-label {
    font-size: 12px;
    fill: #0b1226;
    text-anchor: middle;
    font-weight: 600;
    pointer-events: none;
}

.node .node-ring {
    fill: rgba(14, 102, 255, 0.06);
    stroke: rgba(14, 102, 255, 0.12);
    stroke-width: 2;
    transition: transform .36s cubic-bezier(.2, .9, .3, 1), fill .28s;
}

.node .node-core {
    fill: #ffffff;
    stroke: #0b1226;
    stroke-width: 1.5;
    transition: r .18s;
}

#walker .walker-core {
    fill: #0e66ff;
}

#walker .walker-glow {
    fill: rgba(14, 102, 255, 0.12);
    transform-origin: center;
    transition: transform .36s ease, opacity .36s ease;
}

/* on reveal: glow & core enlarge */
.node.revealed .node-ring {
    transform: scale(1.08);
    fill: rgba(14, 102, 255, 0.12);
}

.node.revealed .node-core {
    r: 12;
    transform: scale(1.1);
}

/* legend */
.timeline-legend {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 12px;
    color: var(--muted);
    font-size: 0.95rem;
}

/* ----- B: Parallax layers (place within hero) ----- */
.hero-parallax {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.hero {
    position: relative;
    z-index: 2;
}

/* ensures hero text sits above layers */

.hero-parallax .parallax-layer {
    position: absolute;
    width: 160%;
    height: 140%;
    left: -30%;
    top: -20%;
    background: radial-gradient(circle at 10% 30%, rgba(14, 102, 255, 0.06), transparent 15%),
        radial-gradient(circle at 80% 70%, rgba(14, 207, 255, 0.03), transparent 20%);
    transform: translate3d(0, 0, 0);
    transition: transform 0.18s linear;
}

.hero-parallax .parallax-layer.accent {
    background: radial-gradient(circle at 60% 20%, rgba(14, 102, 255, 0.10), transparent 20%),
        radial-gradient(circle at 30% 80%, rgba(14, 102, 255, 0.04), transparent 30%);
    mix-blend-mode: screen;
}

/* ----- C: Horizontal pipeline flow ----- */
.horizontal-pipeline {
    padding: 28px 0 40px;
}

.hpipe-viewport {
    overflow: hidden;
    width: 100%;
    background: var(--card);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 8px 30px rgba(11, 18, 38, 0.04);
}

.hpipe-track {
    display: flex;
    gap: 20px;
    transition: transform .6s cubic-bezier(.2, .9, .3, 1);
    will-change: transform;
    padding: 14px;
}

.hpipe-card {
    min-width: 280px;
    max-width: 320px;
    background: transparent;
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 6px 18px rgba(11, 18, 38, 0.03);
    flex: 0 0 auto;
}

.hpipe-card h4 {
    margin: 0 0 8px;
}

/* when reveal, nudge into view */
.hpipe-track.revealed {
    transform: translateX(0);
}

.hpipe-track:not(.revealed) {
    transform: translateX(40px) scale(.995);
    opacity: 0.01;
}

/* ----- D: ML→Decision→LLM diagram ----- */
.mini-diagram {
    padding: 22px 0 40px;
}

.diagram-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    padding: 16px;
    background: var(--card);
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(11, 18, 38, 0.04);
    position: relative;
    overflow: hidden
}

.diagram-node {
    width: 150px;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    background: linear-gradient(180deg, #fff, #fbfdff);
    box-shadow: 0 6px 18px rgba(11, 18, 38, 0.03);
    transform: translateY(8px);
    opacity: 0;
    transition: transform .48s cubic-bezier(.2, .9, .3, 1), opacity .48s;
}

.diagram-node.reveal {
    opacity: 1;
    transform: none;
}

.diagram-node .node-title {
    font-weight: 700;
    margin-bottom: 8px;
}

.diagram-node .node-body {
    color: var(--muted);
    font-size: 0.95rem;
}

/* graphical arrows style */
.diagram-arrows {
    position: absolute;
    left: 0;
    right: 0;
    pointer-events: none;
    height: 100%;
    top: 0;
}

/* responsive */
@media (max-width:900px) {
    #svg-timeline {
        height: 320px;
    }

    .diagram-wrap {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .hpipe-track {
        padding-bottom: 20px;
    }
}

/* Horizontal pipeline: polished scroll + snap + nav */
.hpipe-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.hpipe-nav {
    background: #fff;
    border: 1px solid #eef2f6;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(11, 18, 38, 0.04);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.hpipe-nav:active {
    transform: translateY(1px)
}

.hpipe-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    width: 100%;
}

.hpipe-track {
    display: flex;
    gap: 20px;
    padding: 14px;
    align-items: stretch;
    scroll-snap-type: x mandatory;
}

.hpipe-card {
    min-width: 280px;
    max-width: 320px;
    scroll-snap-align: center;
    background: transparent;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 6px 18px rgba(11, 18, 38, 0.03);
    flex: 0 0 auto;
    transition: transform 220ms cubic-bezier(.2, .9, .3, 1), box-shadow 220ms;
}

.hpipe-card:focus-within,
.hpipe-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(11, 18, 38, 0.06);
    outline: none;
}

#hpipe-viewport:focus {
    outline: 2px dashed rgba(14, 102, 255, 0.18);
    outline-offset: 6px;
    border-radius: 10px;
}

.hpipe-viewport::-webkit-scrollbar {
    height: 10px;
}

.hpipe-viewport::-webkit-scrollbar-thumb {
    background: rgba(11, 18, 38, 0.06);
    border-radius: 10px;
}

.hpipe-viewport {
    scrollbar-color: rgba(11, 18, 38, 0.06) transparent;
    scrollbar-width: thin;
}

@media (max-width:900px) {
    .hpipe-nav {
        display: none
    }

    .hpipe-card {
        min-width: 86vw;
    }
}

/* Avatar style */
.avatar-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.avatar-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #4a80ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    user-select: none;
    cursor: pointer;
}

/* Dropdown Menu */
.avatar-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 9999;
    opacity: 0;
    transform: translateY(-6px) scale(.98);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms cubic-bezier(.2, .9, .3, 1);
    will-change: opacity, transform;
}

.avatar-wrapper.open .avatar-menu {
    opacity: 1;
    transform: translateY(6px) scale(1);
    pointer-events: auto;
}

.avatar-menu .menu-item {
    padding: 10px 14px;
    font-size: 14px;
    color: #111827;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    background: transparent;
    transform: translateY(-4px);
    opacity: 0;
    transition: transform 200ms ease, opacity 180ms ease;
}

.avatar-wrapper.open .avatar-menu .menu-item {
    transform: translateY(0);
    opacity: 1;
}

.avatar-wrapper.open .avatar-menu .menu-item:nth-child(1) {
    transition-delay: 0ms;
}

.avatar-wrapper.open .avatar-menu .menu-item:nth-child(2) {
    transition-delay: 30ms;
}

.avatar-wrapper.open .avatar-menu .menu-item:nth-child(3) {
    transition-delay: 60ms;
}

.avatar-menu .menu-item:last-child {
    border-bottom: none;
}

.avatar-menu .menu-item:hover {
    background: #f6f7fb;
}

.avatar-menu .logout {
    color: #d9534f;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
    .hero-launch {
        padding: 80px 16px;
    }

    .launch-title {
        font-size: 28px;
    }

    .launch-sub {
        font-size: 14px;
        max-width: 95%;
        padding: 0 8px;
    }

    .countdown {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .launch-date {
        font-size: 13px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
        padding: 0 16px;
    }

    .btn-primary,
    .btn-ghost {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 14px;
    }

    .header-inner {
        flex-direction: row;
        padding: 14px 16px;
    }

    .nav-left {
        display: none;
    }

    .nav {
        gap: 12px;
    }

    .nav-right .btn-primary {
        padding: 10px 16px;
        font-size: 13px;
    }

    .container {
        padding: 0 16px;
    }

    .brand {
        font-size: 1rem;
    }
}

/* ── Pricing comparison table ── */
.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    font-size: 0.95rem;
    border: 1px solid #e8ecf2;
}

.pricing-table th,
.pricing-table td {
    padding: 20px 24px;
    text-align: center;
    border-bottom: 1px solid #eef2f7;
}

.pricing-table th {
    background: #f5f7fb;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666;
}

.pricing-table th:first-child {
    border-top-left-radius: 16px;
}

.pricing-table th:last-child {
    border-top-right-radius: 16px;
}

.pricing-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #1a1a2e;
    font-size: 0.93rem;
}

.pricing-table tr:last-child td:first-child {
    border-bottom-left-radius: 16px;
}

.pricing-table tr:last-child td:last-child {
    border-bottom-right-radius: 16px;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tbody tr {
    transition: background 0.15s;
}

.pricing-table tbody tr:hover {
    background: #f7f9fe;
}

/* Highlighted Auraium column */
.pricing-table .col-auraium {
    background: rgba(14, 102, 255, 0.04);
    font-weight: 600;
}

.pricing-table thead .col-auraium {
    background: rgba(14, 102, 255, 0.10);
    color: #0e66ff;
    font-weight: 800;
}

.pricing-table tbody tr:hover .col-auraium {
    background: rgba(14, 102, 255, 0.07);
}