/* ============================================================
   TLA STAR — Web-exclusive redesign
   Brand: Oxanium (display) + Inter (body), dark base, orange-gold accent
   ============================================================ */

:root {
    --bg: #0d0d10;
    --bg-2: #08080a;
    --surface: rgba(255, 255, 255, 0.035);
    --surface-2: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.10);
    --border-2: rgba(255, 255, 255, 0.16);

    --text: #ededef;
    --muted: #9a9aa2;
    --faint: #6c6c74;

    --accent-1: #f0a868;
    --accent-2: #e2793e;
    --accent-3: #d0642c;
    --gold: #f6cf94;
    --glow: rgba(232, 149, 99, 0.30);

    --accent-grad: linear-gradient(100deg, #f6cf94 0%, #f0a868 42%, #e2793e 100%);

    --radius: 14px;
    --radius-lg: 22px;
    --radius-sm: 11px;

    --maxw: 1180px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);

    --font-display: "Oxanium", system-ui, sans-serif;
    --font-body: "Inter", -apple-system, "system-ui", "Segoe UI", sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
}

/* Ambient background: deep gradient + starfield canvas */
.bg-field {
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(1100px 620px at 50% -8%, rgba(226, 121, 62, 0.16), transparent 60%),
        radial-gradient(900px 700px at 88% 8%, rgba(120, 70, 160, 0.12), transparent 62%),
        radial-gradient(800px 800px at 6% 30%, rgba(226, 121, 62, 0.06), transparent 60%),
        var(--bg);
}

#stars {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.7;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
}

.wrap {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
.display {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.01em;
}

.eyebrow {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent-1);
}

.grad-text {
    background: var(--accent-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.section-title {
    font-size: clamp(1.9rem, 4.2vw, 3rem);
}

.lead {
    color: var(--muted);
    font-size: clamp(1rem, 1.6vw, 1.18rem);
    max-width: 60ch;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55em;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.98rem;
    padding: 0.92em 1.6em;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: transform 0.18s var(--ease), box-shadow 0.25s var(--ease),
        background 0.25s var(--ease), border-color 0.25s var(--ease);
    white-space: nowrap;
}

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

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: var(--accent-grad);
    color: #1a0f06;
    font-weight: 700;
    box-shadow: 0 10px 30px -10px var(--glow), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 16px 42px -12px var(--glow), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-ghost {
    background: var(--surface);
    color: var(--text);
    border-color: var(--border-2);
}

.btn-ghost:hover {
    background: var(--surface-2);
    border-color: var(--accent-2);
}

.btn-lg {
    padding: 1.05em 1.9em;
    font-size: 1.05rem;
}

/* ---------- Nav ---------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: transparent;
    border-bottom: 0;
    transition: background 0.3s;
}

/* on scroll, only a soft top fade for legibility, never a solid black bar */
.nav.scrolled {
    background: linear-gradient(180deg, rgba(10, 10, 13, 0.72), rgba(10, 10, 13, 0));
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    flex-wrap: wrap;
    gap: 4px 14px;
}

/* the Subscribe / About toggle now lives in the nav, centred */
.nav-inner .secnav {
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-cta .link {
    color: var(--muted);
    font-size: 0.94rem;
    font-family: var(--font-body);
    transition: color 0.2s;
}

.nav-cta .link:hover {
    color: var(--text);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.18rem;
    letter-spacing: 0.02em;
}

.brand .mark {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    background: var(--accent-grad);
    box-shadow: 0 6px 18px -6px var(--glow);
}

.brand .mark svg {
    width: 22px;
    height: 22px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a.link {
    color: var(--muted);
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a.link:hover {
    color: var(--text);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-signin {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--muted);
    padding: 0.62em 1.15em;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: color 0.2s, border-color 0.2s;
}

.nav-signin:hover {
    color: var(--text);
    border-color: var(--border-2);
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    color: var(--text);
}

.mobile-only {
    display: none;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: clamp(52px, 9vh, 96px) 0 clamp(40px, 6vh, 68px);
    text-align: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.5em 1em;
    border-radius: 999px;
    color: var(--gold);
    background: linear-gradient(180deg, rgba(246, 207, 148, 0.12), rgba(226, 121, 62, 0.06));
    border: 1px solid rgba(246, 207, 148, 0.28);
}

.badge .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-1);
    box-shadow: 0 0 10px var(--accent-1);
}

.hero h1 {
    font-size: clamp(2.2rem, 5.4vw, 4rem);
    margin: 22px auto 0;
    max-width: 16ch;
    font-weight: 800;
}

.hero .lead {
    margin: 24px auto 0;
    text-align: center;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 38px;
}

.hero-note {
    margin-top: 20px;
    color: var(--faint);
    font-size: 0.9rem;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-note b {
    color: var(--muted);
    font-weight: 600;
}

/* store badges row */
.stores {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.store {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 0.7em 1.15em;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease);
}

.store:hover {
    border-color: var(--border-2);
    background: var(--surface-2);
    transform: translateY(-2px);
}

.store svg {
    width: 26px;
    height: 26px;
    flex: none;
}

.store .st-txt {
    text-align: left;
    line-height: 1.15;
}

.store .st-txt small {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--faint);
}

.store .st-txt span {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.02rem;
}

/* ---------- Hero compare table ---------- */
.hero-compare {
    max-width: 470px;
    margin: 28px auto 0;
}

.cmptab {
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    background: var(--surface);
}

.ctr {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
}

.ctr.head {
    background: rgba(255, 255, 255, 0.03);
}

.ctr+.ctr {
    border-top: 1px solid var(--border);
}

.ctc {
    padding: 12px 12px;
    text-align: center;
    font-family: var(--font-display);
}

.ctc.lbl {
    text-align: left;
    font-weight: 600;
    color: var(--text);
    font-size: 1rem;
}

.ctr.head .ctc {
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--faint);
}

.ctr.head .ctc.here {
    color: var(--gold);
}

.ctc.app {
    color: var(--faint);
    font-size: 1rem;
}

.ctc.app s {
    text-decoration-color: rgba(255, 255, 255, 0.28);
}

.ctc.here {
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    background: linear-gradient(180deg, rgba(226, 121, 62, 0.10), transparent);
}

.ctc .sm {
    display: block;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.72rem;
    color: var(--gold);
    margin-top: 3px;
}

.compare-cta {
    width: 100%;
    margin-top: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.compare-sub {
    color: var(--muted);
    font-size: 0.9rem;
    margin-top: 12px;
}

@media (max-width: 520px) {
    .ctc {
        padding: 12px 8px;
    }

    .ctc.lbl {
        font-size: 0.9rem;
    }

    .ctc.here {
        font-size: 1.15rem;
    }

    .ctc.app {
        font-size: 1rem;
    }
}

/* ---------- Section nav (2 parts) ---------- */
.secnav {
    display: flex;
    justify-content: center;
    padding: 22px 20px 6px;
}

.secnav-inner {
    display: inline-flex;
    background: var(--surface);
    border: 1px solid var(--border-2);
    border-radius: 999px;
    padding: 5px;
    gap: 4px;
    max-width: 100%;
}

.secnav a,
.secnav button {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.62em 1.15em;
    border-radius: 999px;
    color: var(--muted);
    text-decoration: none;
    white-space: nowrap;
    background: none;
    border: 0;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.secnav .n {
    font-weight: 700;
    opacity: 0.7;
}

.secnav a:hover,
.secnav button:hover {
    color: var(--text);
}

.secnav a.act,
.secnav button.act {
    background: var(--accent-grad);
    color: #1a0f06;
}

.secnav .act .n {
    opacity: 0.85;
}

@media (max-width: 420px) {

    .secnav a,
    .secnav button {
        font-size: 0.8rem;
        padding: 0.55em 0.85em;
    }
}

/* tab panels (in-place switch) */
.tabpanel[hidden] {
    display: none;
}

/* app carousel: photo + writeup, one slide at a time */
.carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 940px;
    margin: 30px auto 0;
}

.carousel:focus {
    outline: none;
}

.carousel:focus-visible {
    outline: 2px solid rgba(246, 207, 148, 0.45);
    outline-offset: 8px;
    border-radius: 24px;
}

.cviewport {
    flex: 1;
    overflow: hidden;
    border-radius: 22px;
}

.ctrack {
    display: flex;
    will-change: transform;
    transition: transform 0.55s var(--ease);
}

.cslide {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    gap: 38px;
    padding: 10px 6px;
}

.cshot {
    flex: none;
    width: 244px;
    max-width: 42%;
}

.cshot img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 22px;
    border: 1px solid var(--border);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.cinfo {
    flex: 1;
}

.ctag {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--border-2);
    border-radius: 999px;
    padding: 0.34em 0.85em;
    margin-bottom: 16px;
}

.cinfo h3 {
    font-family: var(--font-display);
    font-weight: 800;
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2.05rem);
    line-height: 1.12;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
}

.cinfo p {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.68;
    max-width: 44ch;
}

.cinfo p b {
    color: var(--text);
    font-weight: 600;
}

.cbtn {
    flex: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--border-2);
    background: var(--surface);
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s, border-color 0.18s, transform 0.18s var(--ease);
}

.cbtn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    transform: translateY(-1px);
}

.cdots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 26px;
}

.cdots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: var(--border-2);
    cursor: pointer;
    transition: width 0.3s var(--ease), background 0.3s;
}

.cdots button.on {
    width: 28px;
    background: var(--accent-grad);
}

@media (max-width: 680px) {
    .carousel {
        gap: 0;
    }

    .cslide {
        flex-direction: column;
        text-align: center;
        gap: 22px;
        padding: 4px 2px;
    }

    .cshot {
        width: 210px;
        max-width: 62%;
    }

    .cinfo p {
        max-width: 100%;
    }

    .carousel:not(.reviews) .cbtn {
        position: absolute;
        top: 32%;
        z-index: 3;
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
        background: rgba(10, 10, 12, 0.72);
        backdrop-filter: blur(4px);
    }

    .carousel:not(.reviews) .cbtn.prev {
        left: 2px;
    }

    .carousel:not(.reviews) .cbtn.next {
        right: 2px;
    }
}

/* reviews carousel: 3 cards per slide */
.carousel.reviews {
    max-width: 1120px;
    align-items: stretch;
}

.rslide {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 6px 6px 8px;
    align-items: stretch;
}

.carousel.reviews .rev-card {
    height: 100%;
    margin: 0;
}

@media (max-width: 860px) {
    .rslide {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 620px) {
    .rslide {
        grid-template-columns: 1fr;
    }

    .carousel.reviews {
        gap: 6px;
    }
}

/* ---------- Auth / sign-in ---------- */
.auth-main {
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px 60px;
}

.auth-card {
    width: 100%;
    max-width: 440px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    padding: 40px 34px;
    text-align: center;
}

.auth-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    font-family: var(--font-display);
    font-size: 0.74rem;
    letter-spacing: 0.03em;
}

.auth-steps .s {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--faint);
}

.auth-steps .s.on {
    color: var(--gold);
}

.auth-steps .s .n {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid currentColor;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
}

.auth-steps .s.on .n {
    background: var(--accent-grad);
    color: #1a0f06;
    border-color: transparent;
}

.auth-steps .sep {
    width: 16px;
    height: 1px;
    background: var(--border-2);
}

.auth-card h1 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.auth-card .auth-sub {
    color: var(--muted);
    font-size: 0.96rem;
    margin-bottom: 26px;
}

.auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    width: 100%;
    padding: 0.92em 1em;
    margin-bottom: 12px;
    border: 1px solid var(--border-2);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.98rem;
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s, transform 0.18s var(--ease);
}

.auth-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--border-3, rgba(255, 255, 255, 0.22));
    transform: translateY(-1px);
}

.auth-btn svg {
    width: 20px;
    height: 20px;
    flex: none;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--faint);
    font-size: 0.8rem;
    margin: 18px 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

.auth-field {
    text-align: left;
    margin-bottom: 12px;
}

.auth-field label {
    display: block;
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 6px;
    font-family: var(--font-display);
}

.auth-input {
    width: 100%;
    padding: 0.85em 1em;
    border: 1px solid var(--border-2);
    border-radius: var(--radius);
    background: rgba(0, 0, 0, 0.25);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.98rem;
}

.auth-input:focus {
    outline: none;
    border-color: rgba(246, 207, 148, 0.5);
}

.auth-cta {
    width: 100%;
    margin-top: 4px;
    font-weight: 700;
}

.auth-fine {
    color: var(--faint);
    font-size: 0.8rem;
    line-height: 1.55;
    margin-top: 20px;
}

.auth-fine a {
    color: var(--muted);
    text-decoration: underline;
}

.auth-back {
    display: inline-block;
    margin-top: 18px;
    color: var(--muted);
    font-size: 0.88rem;
    font-family: var(--font-display);
}

.auth-back:hover {
    color: var(--text);
}

.auth-steps .s.done {
    color: var(--gold);
}

.auth-steps .s.done .n {
    background: rgba(246, 207, 148, 0.16);
    color: var(--gold);
    border-color: rgba(246, 207, 148, 0.45);
}

.auth-check {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--accent-grad);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.auth-check svg {
    width: 32px;
    height: 32px;
    color: #1a0f06;
}

.auth-email {
    display: inline-block;
    font-family: var(--font-mono, monospace);
    font-size: 0.9rem;
    color: var(--gold);
    background: rgba(246, 207, 148, 0.1);
    border: 1px solid rgba(246, 207, 148, 0.25);
    padding: 0.3em 0.7em;
    border-radius: 8px;
    word-break: break-all;
}

.dl-stores {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 22px 0 6px;
}

.app-dl-panel {
    text-align: left;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 18px;
}

.app-dl-title {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.app-dl-text {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.app-dl-text b {
    color: var(--text);
    font-weight: 600;
}

.app-dl-email-row {
    margin-top: 10px;
}

.app-dl-email-lbl {
    display: block;
    color: var(--faint);
    font-size: 0.82rem;
    margin-bottom: 4px;
}

/* ---------- USP: world's first ---------- */
.usp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 10px;
}

.usp-card {
    position: relative;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    padding: 30px 28px;
    transition: transform 0.2s var(--ease), border-color 0.2s;
}

.usp-card.us {
    border-color: rgba(246, 207, 148, 0.42);
    background: linear-gradient(180deg, rgba(226, 121, 62, 0.11), rgba(255, 255, 255, 0.02));
}

.usp-card:hover {
    transform: translateY(-3px);
}

.usp-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1a0f06;
    background: var(--accent-grad);
    padding: 0.42em 0.9em;
    border-radius: 999px;
}

.usp-mark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.usp-card.them .usp-mark {
    color: var(--faint);
}

.usp-card.us .usp-mark {
    color: var(--gold);
}

.usp-mark svg {
    width: 18px;
    height: 18px;
}

.usp-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
    margin: 16px 0 8px;
    letter-spacing: -0.01em;
}

.usp-card.them h3 {
    color: var(--muted);
}

.usp-card p {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.6;
}

.usp-foot {
    text-align: center;
    margin-top: 26px;
    color: var(--muted);
    font-size: 1rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.usp-foot b {
    color: var(--text);
    font-weight: 600;
}

.usp-note {
    text-align: center;
    max-width: 660px;
    margin: 22px auto 0;
    padding: 16px 22px;
    border: 1px solid rgba(246, 207, 148, 0.28);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(226, 121, 62, 0.08), transparent);
    color: var(--gold);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.55;
}

.usp-punch {
    text-align: center;
    font-family: var(--font-display);
    font-weight: 700;
    color: #fff;
    font-size: clamp(1.15rem, 2.6vw, 1.6rem);
    letter-spacing: -0.01em;
    margin: 32px auto 0;
}

.usp-punch .grad-text {
    font-weight: 700;
}

.usp-speed {
    text-align: center;
    max-width: 680px;
    margin: 22px auto 0;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1rem, 2.2vw, 1.22rem);
    color: var(--text);
    line-height: 1.5;
}

.usp-speed .old {
    color: var(--faint);
    text-decoration: line-through;
    text-decoration-color: rgba(255, 255, 255, 0.32);
}

.usp-speed .grad-text {
    font-weight: 800;
}

@media (max-width: 720px) {
    .usp-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- About: everyday use cases ---------- */
.usecases {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 740px;
    margin: 24px auto 0;
}

.usecase {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.62em 1.1em;
    border: 1px solid var(--border-2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.94rem;
    color: var(--text);
}

.usecase .em {
    font-size: 1.1rem;
}

/* ---------- About: benefits ---------- */
.benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 28px;
    max-width: 760px;
    margin: 28px auto 0;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
}

.benefit svg {
    flex: none;
    width: 22px;
    height: 22px;
    color: var(--gold);
    margin-top: 2px;
}

.benefit p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.55;
}

.benefit b {
    color: var(--text);
    font-weight: 600;
}

@media (max-width: 600px) {
    .benefits {
        grid-template-columns: 1fr;
    }
}

/* ---------- About: real example card ---------- */
.example {
    max-width: 640px;
    margin: 32px auto 0;
    border: 1px solid rgba(246, 207, 148, 0.3);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(226, 121, 62, 0.08), rgba(255, 255, 255, 0.02));
    padding: 28px 28px;
    text-align: left;
}

.example .ex-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1a0f06;
    background: var(--accent-grad);
    padding: 0.35em 0.85em;
    border-radius: 999px;
    margin-bottom: 14px;
}

.example h3 {
    font-family: var(--font-display);
    font-weight: 800;
    color: #fff;
    font-size: 1.35rem;
    margin-bottom: 4px;
}

.example .ex-row {
    padding: 16px 0;
    border-top: 1px solid var(--border);
}

.example .ex-row:first-of-type {
    border-top: 0;
    padding-top: 6px;
}

.example .ex-lbl {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--faint);
    margin-bottom: 5px;
}

.example .ex-val {
    color: var(--text);
    font-size: 1.02rem;
}

.example .ex-val.good {
    color: #7ee0a8;
    font-weight: 600;
}

.example ul {
    list-style: none;
    margin-top: 10px;
    display: grid;
    gap: 9px;
}

.example ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
    font-size: 0.98rem;
}

.example ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-1);
    margin-top: 8px;
    flex: none;
}

/* ---------- About punchline (that astrologer is TLA STAR) ---------- */
.about-punch {
    font-family: var(--font-display);
    font-weight: 800;
    color: #fff;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -0.01em;
    font-size: clamp(1.9rem, 4.8vw, 3.4rem);
    max-width: 18ch;
    margin: 30px auto 0;
    perspective: 800px;
}

.about-punch .w {
    display: inline-block;
}

.about-punch .nowrap {
    white-space: nowrap;
}

.about-punch .grad-text {
    text-shadow: 0 0 30px rgba(246, 207, 148, 0.28);
}

#aboutIntro .hl {
    color: var(--muted);
    font-weight: 600;
    transition: color 0.5s ease, text-shadow 0.5s ease;
}

#aboutIntro .hl.on {
    color: var(--gold);
    text-shadow: 0 0 16px rgba(246, 207, 148, 0.5);
}

.about-sub {
    text-align: center;
    margin-top: 18px;
}

.about-sub .pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 0.58em 1.15em;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(246, 207, 148, 0.12), rgba(226, 121, 62, 0.06));
    border: 1px solid rgba(246, 207, 148, 0.3);
}

/* ---------- Reviews ---------- */
.rating-hero {
    text-align: center;
    margin: 6px auto 0;
}

.rating-hero .stars {
    color: #F6CF94;
    font-size: 1.7rem;
    letter-spacing: 3px;
}

.rating-hero .rline {
    font-family: var(--font-display);
    font-weight: 700;
    color: #fff;
    font-size: 1.15rem;
    margin-top: 8px;
}

.rating-hero .rsub {
    color: var(--muted);
    font-size: 0.92rem;
    margin-top: 4px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 30px;
}

@media (max-width: 760px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

.rev-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--surface);
    padding: 22px;
    text-align: left;
}

.rev-card .rstars {
    color: #F6CF94;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.rev-card p {
    color: var(--muted);
    font-size: 0.97rem;
    line-height: 1.6;
    margin-top: 10px;
}

.rev-card .rname {
    font-family: var(--font-display);
    font-weight: 600;
    color: #fff;
    margin-top: 14px;
    font-size: 0.92rem;
}

.rev-card .rname span {
    color: var(--faint);
    font-weight: 400;
}

/* ---------- About the founder ---------- */
.founder-wrap {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
    align-items: start;
    max-width: 940px;
    margin: 6px auto 0;
}

@media (max-width: 760px) {
    .founder-wrap {
        grid-template-columns: 1fr;
    }
}

.founder-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    padding: 30px 28px;
    text-align: center;
}

.founder-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 2px solid rgba(246, 207, 148, 0.45);
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-card h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.35rem;
    color: #fff;
}

.founder-card .role {
    color: var(--gold);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 5px;
}

.founder-card p {
    color: var(--muted);
    margin-top: 14px;
    font-size: 0.96rem;
    line-height: 1.6;
}

.founder-social {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.f-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.6em 1.05em;
    border: 1px solid var(--border-2);
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.f-btn:hover {
    border-color: rgba(246, 207, 148, 0.5);
}

.f-btn.primary {
    background: var(--accent-grad);
    color: #1a0f06;
    border-color: transparent;
}

.f-btn svg {
    width: 16px;
    height: 16px;
}

.founder-links {
    display: grid;
    gap: 14px;
}

.link-tile {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface);
    padding: 16px 18px;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s var(--ease);
}

.link-tile:hover {
    border-color: rgba(246, 207, 148, 0.4);
    transform: translateX(4px);
}

.link-tile .lt-ic {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(246, 207, 148, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex: none;
}

.link-tile .lt-ic svg {
    width: 21px;
    height: 21px;
}

.link-tile .lt-txt h4 {
    font-family: var(--font-display);
    font-weight: 600;
    color: #fff;
    font-size: 1.02rem;
}

.link-tile .lt-txt p {
    color: var(--muted);
    font-size: 0.85rem;
    margin-top: 2px;
}

.link-tile .lt-arrow {
    margin-left: auto;
    color: var(--faint);
    flex: none;
}

/* ---------- Brand logo image ---------- */
.brand .mark {
    overflow: hidden;
}

.brand .mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
}

/* ---------- Hero statement cards (app vs here) ---------- */
.stmt {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 480px;
    margin: 26px auto 0;
}

.stmt-card {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--surface);
    padding: 20px 20px;
    text-align: left;
    transition: transform 0.2s var(--ease), border-color 0.2s;
}

.stmt-card:hover {
    transform: translateY(-2px);
}

.stmt-card.feat {
    border-color: rgba(246, 207, 148, 0.42);
    background: linear-gradient(180deg, rgba(226, 121, 62, 0.11), rgba(255, 255, 255, 0.02));
}

.stmt-card .lab {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--faint);
}

.stmt-card .app {
    color: var(--muted);
    font-size: 0.9rem;
    margin-top: 12px;
}

.stmt-card .app s {
    color: var(--faint);
}

.stmt-card .arrow-i {
    color: var(--gold);
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 0.85rem;
    margin-top: 6px;
}

.stmt-card .here {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 2px;
}

.stmt-card .here b {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.95rem;
    color: #fff;
    line-height: 1;
}

.stmt-card .here span {
    color: var(--muted);
    font-size: 0.82rem;
}

.stmt-card .op-note {
    margin-top: 8px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--faint);
}

.stmt-card .save {
    position: absolute;
    top: -11px;
    right: 14px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.64rem;
    color: #1a0f06;
    background: var(--accent-grad);
    padding: 0.3em 0.7em;
    border-radius: 999px;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .stmt {
        gap: 12px;
    }

    .stmt-card {
        padding: 18px 16px;
    }

    .stmt-card .here b {
        font-size: 1.6rem;
    }
}

/* ---------- Hero inline offer ---------- */
.hero-offer {
    max-width: 600px;
    margin: 40px auto 0;
}

.offer-plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.offer-plan {
    position: relative;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    padding: 22px 22px 20px;
    text-align: left;
    transition: border-color 0.2s, transform 0.2s var(--ease);
}

.offer-plan:hover {
    border-color: var(--border-2);
    transform: translateY(-2px);
}

.offer-plan.featured {
    border-color: rgba(246, 207, 148, 0.42);
    background: linear-gradient(180deg, rgba(226, 121, 62, 0.12), rgba(255, 255, 255, 0.02));
}

.op-label {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--muted);
    letter-spacing: 0.03em;
}

.op-price {
    display: flex;
    align-items: baseline;
    gap: 9px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.op-price s {
    color: var(--faint);
    font-size: 1.02rem;
    font-family: var(--font-display);
    font-weight: 500;
}

.op-price b {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2rem;
    line-height: 1;
    color: #fff;
}

.op-price .op-per {
    color: var(--muted);
    font-size: 0.88rem;
}

.op-save {
    position: absolute;
    top: -11px;
    right: 14px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #1a0f06;
    background: var(--accent-grad);
    padding: 0.4em 0.85em;
    border-radius: 999px;
    white-space: nowrap;
}

.offer-cta {
    width: 100%;
    margin-top: 22px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 700;
}

.offer-sub {
    color: var(--muted);
    font-size: 0.94rem;
    margin-top: 18px;
}

/* ---------- Section shell ---------- */
section.block {
    padding: clamp(48px, 7vh, 78px) 0;
    position: relative;
}

.sec-head {
    max-width: 720px;
    margin: 0 auto 54px;
    text-align: center;
}

.sec-head .eyebrow {
    display: block;
    margin-bottom: 16px;
}

.sec-head p {
    color: var(--muted);
    margin-top: 18px;
    font-size: 1.05rem;
}

/* value strip */
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.value-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: border-color 0.25s, transform 0.25s var(--ease), background 0.25s;
}

.value-card:hover {
    border-color: var(--border-2);
    transform: translateY(-4px);
    background: var(--surface-2);
}

.value-card .ic {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    background: linear-gradient(180deg, rgba(246, 207, 148, 0.14), rgba(226, 121, 62, 0.05));
    border: 1px solid rgba(246, 207, 148, 0.22);
    color: var(--accent-1);
}

.value-card .ic svg {
    width: 26px;
    height: 26px;
}

.value-card h3 {
    font-size: 1.28rem;
    margin-bottom: 10px;
}

.value-card p {
    color: var(--muted);
    font-size: 0.97rem;
}

/* ---------- Steps / flow ---------- */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    counter-reset: step;
}

.step {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 34px 30px 32px;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.25s var(--ease);
}

.step:hover {
    border-color: var(--border-2);
    transform: translateY(-4px);
}

.step .num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 3.4rem;
    line-height: 1;
    background: var(--accent-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.9;
}

.step h3 {
    font-size: 1.32rem;
    margin: 14px 0 10px;
}

.step p {
    color: var(--muted);
    font-size: 0.98rem;
}

.step .pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 16px;
    font-size: 0.82rem;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--gold);
    padding: 0.4em 0.85em;
    border-radius: 999px;
    background: rgba(246, 207, 148, 0.08);
    border: 1px solid rgba(246, 207, 148, 0.22);
}

.step .connector {
    position: absolute;
    top: 54px;
    right: -13px;
    color: var(--accent-2);
    z-index: 2;
}

.step:last-child .connector {
    display: none;
}

/* platform sign-in cards */
.platforms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 26px;
}

.platform {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
}

.platform .p-ic {
    width: 56px;
    height: 56px;
    border-radius: 15px;
    flex: none;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-2);
}

.platform .p-ic svg {
    width: 30px;
    height: 30px;
}

.platform h4 {
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.platform .p-sub {
    color: var(--accent-1);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.platform p {
    color: var(--muted);
    font-size: 0.95rem;
}

/* ---------- Features ---------- */
.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feat {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px 28px;
    transition: border-color 0.25s, transform 0.25s var(--ease), background 0.25s;
}

.feat:hover {
    border-color: var(--border-2);
    transform: translateY(-4px);
    background: var(--surface-2);
}

.feat .ic {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    background: linear-gradient(180deg, rgba(246, 207, 148, 0.13), rgba(226, 121, 62, 0.05));
    border: 1px solid rgba(246, 207, 148, 0.20);
    color: var(--accent-1);
}

.feat .ic svg {
    width: 24px;
    height: 24px;
}

.feat h3 {
    font-size: 1.18rem;
    margin-bottom: 9px;
}

.feat p {
    color: var(--muted);
    font-size: 0.94rem;
}

/* ---------- CTA band ---------- */
.cta-band {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    padding: clamp(48px, 8vw, 80px) 28px;
    background:
        radial-gradient(600px 300px at 50% 0%, rgba(226, 121, 62, 0.22), transparent 70%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--border-2);
}

.cta-band h2 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    max-width: 18ch;
    margin: 0 auto;
}

.cta-band p {
    color: var(--muted);
    margin: 18px auto 0;
    max-width: 52ch;
}

.cta-band .hero-actions {
    margin-top: 30px;
}

/* ---------- Footer ---------- */
footer.foot {
    border-top: 1px solid var(--border);
    padding: 60px 0 40px;
    margin-top: 40px;
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
}

.foot-brand p {
    color: var(--muted);
    font-size: 0.92rem;
    margin-top: 14px;
    max-width: 34ch;
}

.foot-col h5 {
    font-family: var(--font-display);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--faint);
    margin-bottom: 16px;
}

.foot-col a {
    display: block;
    color: var(--muted);
    font-size: 0.94rem;
    padding: 5px 0;
    transition: color 0.2s;
}

.foot-col a:hover {
    color: var(--accent-1);
}

.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 46px;
    padding-top: 26px;
    border-top: 1px solid var(--border);
    color: var(--faint);
    font-size: 0.86rem;
}

/* ---------- Reveal animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.in {
    opacity: 1;
    transform: none;
}

.reveal.d1 {
    transition-delay: 0.08s;
}

.reveal.d2 {
    transition-delay: 0.16s;
}

.reveal.d3 {
    transition-delay: 0.24s;
}

/* ======================= Plans page ======================= */
.plans-hero {
    padding: clamp(60px, 10vh, 100px) 0 20px;
    text-align: center;
}

.plan-toggle {
    display: inline-flex;
    gap: 4px;
    padding: 5px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
    margin-top: 30px;
}

.plan-toggle button {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--muted);
    padding: 0.62em 1.4em;
    border: 0;
    border-radius: 999px;
    background: none;
    transition: color 0.2s;
}

.plan-toggle button.active {
    color: #1a0f06;
    background: var(--accent-grad);
}

.plan-toggle .save {
    font-size: 0.72rem;
    color: var(--gold);
    margin-left: 6px;
}

.pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
    margin-top: 20px;
}

.pricing.two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.plan .permo {
    color: var(--faint);
    font-size: 0.86rem;
    margin-top: 2px;
}

.plan {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 34px 30px;
    transition: border-color 0.25s, transform 0.25s var(--ease);
}

.plan:hover {
    border-color: var(--border-2);
    transform: translateY(-4px);
}

.plan.featured {
    border-color: rgba(246, 207, 148, 0.4);
    background: linear-gradient(180deg, rgba(226, 121, 62, 0.10), rgba(255, 255, 255, 0.02));
    box-shadow: 0 24px 60px -30px var(--glow);
}

.plan .tag {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1a0f06;
    background: var(--accent-grad);
    padding: 0.42em 1em;
    border-radius: 999px;
    white-space: nowrap;
}

.plan h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
}

.plan .plan-sub {
    color: var(--muted);
    font-size: 0.92rem;
    margin-top: 6px;
    min-height: 40px;
}

.plan .price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin: 20px 0 4px;
}

.plan .price .cur {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--muted);
}

.plan .price .amt {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 3rem;
    line-height: 1;
}

.plan .price .per {
    color: var(--muted);
    font-size: 0.95rem;
}

.plan .was {
    color: var(--faint);
    font-size: 0.9rem;
}

.plan .was s {
    color: var(--faint);
}

.plan .was b {
    color: var(--gold);
    font-weight: 600;
}

.plan ul {
    list-style: none;
    margin: 24px 0 28px;
    display: grid;
    gap: 12px;
}

.plan ul li {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    color: var(--muted);
    font-size: 0.95rem;
}

.plan ul li svg {
    width: 19px;
    height: 19px;
    flex: none;
    color: var(--accent-1);
    margin-top: 2px;
}

.plan .btn {
    width: 100%;
    margin-top: auto;
}

.compare-note {
    max-width: 640px;
    margin: 40px auto 0;
    text-align: center;
    color: var(--muted);
    font-size: 0.95rem;
    padding: 18px 24px;
    border: 1px dashed var(--border-2);
    border-radius: var(--radius);
    background: var(--surface);
}

.compare-note b {
    color: var(--gold);
}

/* FAQ */
.faq {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq details {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq details[open] {
    border-color: var(--border-2);
}

.faq summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 24px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary .chev {
    transition: transform 0.25s var(--ease);
    color: var(--accent-1);
    flex: none;
}

.faq details[open] summary .chev {
    transform: rotate(180deg);
}

.faq details p {
    padding: 0 24px 22px;
    color: var(--muted);
    font-size: 0.97rem;
}

/* placeholder marker for editable numbers */
.editable {
    position: relative;
}

/* ======================= Legal / info pages ======================= */
.nav-slim .nav-links a.link {
    font-size: 0.92rem;
}

.legal {
    padding: clamp(48px, 8vh, 84px) 0 40px;
}

.legal-head {
    max-width: 780px;
    margin: 0 auto 40px;
}

.legal-head .eyebrow {
    display: block;
    margin-bottom: 14px;
}

.legal-head h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
}

.legal-head .updated {
    color: var(--faint);
    font-size: 0.9rem;
    margin-top: 14px;
}

.legal-body {
    max-width: 780px;
    margin: 0 auto;
}

.legal-body h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    margin: 40px 0 14px;
    padding-top: 8px;
}

.legal-body h2:first-child {
    margin-top: 0;
}

.legal-body h3 {
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 600;
    margin: 24px 0 8px;
    color: var(--gold);
}

.legal-body p {
    color: var(--muted);
    margin-bottom: 16px;
}

.legal-body ul {
    list-style: none;
    margin: 0 0 20px;
    display: grid;
    gap: 12px;
}

.legal-body ul li {
    position: relative;
    padding-left: 26px;
    color: var(--muted);
}

.legal-body ul li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: var(--accent-grad);
}

.legal-body ul li b {
    color: var(--text);
    font-weight: 600;
}

.legal-body a {
    color: var(--accent-1);
    border-bottom: 1px solid rgba(240, 168, 104, 0.35);
}

.legal-body a:hover {
    color: var(--gold);
}

.legal-body .caps {
    text-transform: none;
}

.legal-body .note {
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent-2);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 18px 22px;
    margin: 22px 0;
}

.legal-body .note p {
    margin: 0;
    color: var(--text);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.92rem;
    margin-bottom: 30px;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--accent-1);
}

.legal-contact-card {
    display: grid;
    gap: 6px;
    margin: 26px 0;
    padding: 26px 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
}

.legal-contact-card small {
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--faint);
}

.legal-contact-card a {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    border: 0;
}

.foot-slim {
    border-top: 1px solid var(--border);
    padding: 34px 0;
    margin-top: 50px;
    text-align: center;
    color: var(--faint);
    font-size: 0.86rem;
}

.foot-slim .foot-legal-links {
    display: flex;
    gap: 22px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.foot-slim .foot-legal-links a {
    color: var(--muted);
    transition: color 0.2s;
}

.foot-slim .foot-legal-links a:hover {
    color: var(--accent-1);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {

    .value-grid,
    .steps,
    .feat-grid,
    .pricing {
        grid-template-columns: 1fr;
    }

    .platforms {
        grid-template-columns: 1fr;
    }

    .step .connector {
        display: none;
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .nav-feat {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav {
        padding-top: max(10px, env(safe-area-inset-top, 0px));
    }

    .nav .wrap {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* keep mobile nav to logo + Plans + Sign in */
    .nav-inner.has-secnav {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        align-items: center;
        gap: 12px 10px;
        padding-top: 6px;
        padding-bottom: 8px;
        min-height: 0;
    }

    .nav-inner.has-secnav .secnav {
        grid-column: 1 / -1;
        grid-row: 2;
        order: unset;
        flex: none;
        flex-basis: auto;
        margin: 4px 0 0;
        padding: 0;
        justify-content: center;
    }

    .nav-inner.has-secnav .secnav-inner {
        width: auto;
        max-width: 100%;
        justify-content: center;
    }

    .nav-inner.has-secnav .secnav a {
        flex: 0 1 auto;
        justify-content: center;
        text-align: center;
        font-size: 0.8rem;
        padding: 0.58em 1em;
    }

    .nav-inner.has-secnav .brand {
        grid-column: 1;
        grid-row: 1;
        font-size: 1.05rem;
    }

    .nav-inner.has-secnav .brand .mark {
        width: 34px;
        height: 34px;
    }

    .nav-inner.has-secnav .nav-cta {
        grid-column: 2;
        grid-row: 1;
        gap: 8px;
    }

    .nav-inner.has-secnav .nav-signin {
        font-size: 0.82rem;
        padding: 0.5em 0.85em;
    }

    .nav-inner:not(.has-secnav) .secnav {
        order: 3;
        flex-basis: 100%;
        flex: none;
        margin: 6px 0 2px;
    }

    /* toggle drops to its own centred row */
    .nav-links.open a.link.cta-line {
        margin-top: 8px;
        padding: 13px 0 4px;
        border-top: 1px solid var(--border);
        color: var(--accent-1);
    }
}

@media (max-width: 560px) {
    .foot-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .plan .price .amt {
        font-size: 2.6rem;
    }

    .pricing.two {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .btn:hover,
    .value-card:hover,
    .step:hover,
    .feat:hover,
    .plan:hover,
    .store:hover {
        transform: none;
    }
}

/* ============ CONSTELLATION (About + Reviews star map) ============ */
.skywrap {
    position: relative;
    max-width: 1000px;
    margin: 8px auto 0;
}

#appshow .skywrap {
    max-width: 820px;
    margin-top: 20px;
}

#skyAbout .orbit.spin {
    transform-origin: 50% 54%;
    animation: orbitSpinAbout 50s linear infinite;
}

#skyAbout .orbit.spin .fstar-in {
    animation: orbitSpinAboutInner 50s linear infinite;
}

@keyframes orbitSpinAbout {
    to {
        transform: rotate(360deg);
    }
}

@keyframes orbitSpinAboutInner {
    to {
        transform: rotate(-360deg);
    }
}

#skyAbout::before {
    width: 480px;
    height: 480px;
    top: 54%;
}

/* fully transparent: the swastik sits on the page's own starfield, no boxed division */
.sky {
    position: relative;
    height: 600px;
    overflow: visible;
    border: 0;
    background: transparent;
}

.sky.rev {
    height: 520px;
}

/* soft central glow behind the centre, a circle that fades out so there is no edge */
.sky::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 48%;
    width: 620px;
    height: 620px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(226, 121, 62, 0.13), rgba(246, 207, 148, 0.05) 32%, transparent 62%);
    pointer-events: none;
    z-index: 0;
}

.sky-bgstars {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.sky-bgstars i {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.5;
    animation: bgtwinkle 3.4s var(--ease) infinite;
}

@keyframes bgtwinkle {

    0%,
    100% {
        opacity: 0.16;
    }

    50% {
        opacity: 0.85;
    }
}

.sky-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sky-lines line {
    stroke: rgba(246, 207, 148, 0.30);
    stroke-width: 0.22;
    stroke-dasharray: 0.9 0.9;
}

.fstar {
    position: absolute;
    transform: translate(-50%, -50%);
    background: none;
    border: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    z-index: 2;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.28s var(--ease);
}

.fstar:hover,
.fstar:focus-visible {
    transform: translate(-50%, -50%) scale(1.14);
    z-index: 4;
}

.fstar.hero:hover,
.fstar.hero:focus-visible {
    transform: translate(-50%, -50%) scale(1.1);
}

.fstar .dot {
    position: relative;
    width: 22px;
    height: 22px;
    border-radius: 0;
    background: var(--accent-grad);
    box-shadow: none;
    -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Ccircle%20cx='12'%20cy='12'%20r='3.6'/%3E%3Cpath%20d='M12%201%2012.8%208%2012%209%2011.2%208Z%20M12%2023%2011.2%2016%2012%2015%2012.8%2016Z%20M1%2012%208%2012.8%209%2012%208%2011.2Z%20M23%2012%2016%2011.2%2015%2012%2016%2012.8Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Ccircle%20cx='12'%20cy='12'%20r='3.6'/%3E%3Cpath%20d='M12%201%2012.8%208%2012%209%2011.2%208Z%20M12%2023%2011.2%2016%2012%2015%2012.8%2016Z%20M1%2012%208%2012.8%209%2012%208%2011.2Z%20M23%2012%2016%2011.2%2015%2012%2016%2012.8Z'/%3E%3C/svg%3E") center / contain no-repeat;
    filter: drop-shadow(0 0 6px rgba(246, 207, 148, 0.7));
    transition: transform 0.25s var(--ease), filter 0.25s;
    animation: starpulse 5.5s ease-in-out infinite;
}

.fstar .dot::before {
    display: none;
}

@keyframes starpulse {

    0%,
    72%,
    100% {
        filter: drop-shadow(0 0 5px rgba(246, 207, 148, 0.55));
    }

    86% {
        filter: drop-shadow(0 0 12px rgba(246, 207, 148, 0.95));
    }
}

.fstar .lbl {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.94rem;
    color: #fff;
    text-shadow: 0 0 16px rgba(246, 207, 148, 0.5);
    white-space: nowrap;
}

.fstar .sub {
    font-family: var(--font-display);
    font-size: 0.71rem;
    color: var(--gold);
    opacity: 0.85;
    margin-top: -3px;
}

.fstar:hover .dot,
.fstar:focus-visible .dot {
    transform: scale(1.3);
    filter: drop-shadow(0 0 15px rgba(246, 207, 148, 1));
}

.fstar:hover .lbl,
.fstar:focus-visible .lbl {
    color: #fff;
    text-shadow: 0 0 24px rgba(246, 207, 148, 0.95), 0 0 8px rgba(246, 207, 148, 0.7);
}

.fstar:focus-visible {
    outline: none;
}

.fstar.hero .dot {
    width: 34px;
    height: 34px;
    box-shadow: none;
    animation: heropulse 5s ease-in-out infinite;
}

.fstar.hero .dot::before,
.fstar.hero .dot::after {
    display: none;
}

.fstar.hero .lbl {
    font-size: 1.4rem;
    font-weight: 800;
}

.fstar.hero .sub {
    font-size: 0.8rem;
    opacity: 1;
}

@keyframes heropulse {

    0%,
    72%,
    100% {
        filter: drop-shadow(0 0 8px rgba(246, 207, 148, 0.6));
    }

    86% {
        filter: drop-shadow(0 0 18px rgba(246, 207, 148, 1));
    }
}

.fstar.brand .logo {
    width: 58px;
    height: 58px;
    border-radius: 15px;
    border: 1px solid rgba(246, 207, 148, 0.55);
    box-shadow: 0 0 34px 9px rgba(246, 207, 148, 0.5);
    animation: heropulse 5.5s ease-in-out infinite;
}

.fstar.brand .lbl {
    font-size: 1.15rem;
    font-weight: 800;
    margin-top: 6px;
}

.fstar.brand .sub {
    font-size: 0.75rem;
}

.fstar.brand:hover .logo,
.fstar.brand:focus-visible .logo {
    box-shadow: 0 0 44px 14px rgba(246, 207, 148, 0.75);
}

.fstar.accent {
    pointer-events: none;
}

.fstar.accent .dot {
    width: 9px;
    height: 9px;
    box-shadow: 0 0 10px 2px rgba(246, 207, 148, 0.4);
}

.fstar.accent .dot::before {
    display: none;
}

/* glass popup: frosted, blends with the sky behind */
.note-ov {
    position: absolute;
    inset: 0;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px;
    background: rgba(8, 8, 12, 0.42);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
}

.note-ov.open {
    opacity: 1;
    pointer-events: auto;
}

.note {
    width: 100%;
    max-width: 540px;
    border: 1px solid rgba(246, 207, 148, 0.30);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(22, 20, 28, 0.48);
    backdrop-filter: blur(26px) saturate(140%);
    -webkit-backdrop-filter: blur(26px) saturate(140%);
    box-shadow: 0 44px 110px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transform: scale(0.92);
    opacity: 0;
    transition: transform 0.45s var(--ease), opacity 0.35s var(--ease);
}

.note-ov.open .note {
    transform: scale(1);
    opacity: 1;
}

.note-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px 13px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.note-top .tt {
    display: flex;
    align-items: center;
    gap: 9px;
}

.note-top .tt .d {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent-grad);
    box-shadow: 0 0 8px rgba(246, 207, 148, 0.7);
}

.note-top .tag {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

.note-top .x {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--border-2);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s;
}

.note-top .x:hover {
    background: rgba(255, 255, 255, 0.14);
}

.note-body {
    display: flex;
    gap: 20px;
    padding: 22px;
    background-image: repeating-linear-gradient(180deg, transparent 0, transparent 33px, rgba(246, 207, 148, 0.06) 33px, rgba(246, 207, 148, 0.06) 34px);
}

.note-body img {
    width: 128px;
    flex: none;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5);
    align-self: flex-start;
}

.note-body img.hide {
    display: none;
}

.note-rstars {
    color: #F6CF94;
    letter-spacing: 3px;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.note-rstars.hide {
    display: none;
}

.note-body h3 {
    font-family: var(--font-display);
    font-weight: 800;
    color: #fff;
    font-size: 1.36rem;
    line-height: 1.15;
    margin-bottom: 10px;
}

.note-body p {
    color: var(--muted);
    font-size: 0.97rem;
    line-height: 1.62;
}

.note-body p b {
    color: var(--text);
    font-weight: 600;
}

.note-body .rmeta {
    display: block;
    margin-top: 12px;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--gold);
    font-size: 0.86rem;
}

.note-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.note-foot button {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.86rem;
    color: var(--muted);
    background: none;
    border: 0;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 8px;
    transition: color 0.18s;
}

.note-foot button:hover {
    color: var(--gold);
}

.note-foot .idx {
    font-family: var(--font-display);
    font-size: 0.78rem;
    color: var(--faint);
    letter-spacing: 0.05em;
}

.sky-hint {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -60px;
    text-align: center;
    color: var(--faint);
    font-size: 0.82rem;
    font-family: var(--font-display);
}

@media (max-width: 640px) {

    /* square-ish sky keeps the swastik's ratio intact on narrow screens */
    .sky {
        height: auto;
        aspect-ratio: 1 / 1;
    }

    #appshow .skywrap {
        max-width: min(100%, 440px);
        width: 100%;
        margin-top: 8px;
    }

    #skyAbout.sky {
        height: auto;
        aspect-ratio: 1 / 1;
        max-height: none;
        min-height: min(92vw, 440px);
    }

    #skyAbout .orbit.spin {
        animation: orbitSpinAboutMob 200s linear infinite !important;
    }

    #skyAbout .orbit.spin .fstar-in {
        animation: orbitSpinAboutInner 200s linear infinite !important;
    }

    @keyframes orbitSpinAboutMob {
        to {
            transform: rotate(360deg);
        }
    }

    .sky.rev {
        height: auto;
        aspect-ratio: 1 / 1.05;
    }

    /* reviews stay static on mobile */
    .sky.rev .orbit.spin,
    .sky.rev .orbit.spin .fstar-in {
        animation: none !important;
    }

    /* full-screen modal detail on touch devices */
    .sky .dpanel.dpanel--modal {
        position: fixed;
        inset: 0;
        z-index: 200;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        background: rgba(8, 8, 12, 0.78);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: max(12px, env(safe-area-inset-top)) 16px max(16px, env(safe-area-inset-bottom));
        overflow-y: auto;
    }

    .sky.showing .dpanel.dpanel--modal {
        opacity: 1;
        pointer-events: auto;
    }

    .sky .dpanel.dpanel--modal .dback {
        position: static;
        top: auto;
        left: auto;
        align-self: center;
        order: -1;
        flex-shrink: 0;
        margin: 0 0 14px;
    }

    .sky .dpanel.dpanel--modal .dp-in {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
        flex: 1 1 auto;
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 18px;
        border-radius: 20px;
        border: 1px solid rgba(246, 207, 148, 0.28);
        background: linear-gradient(180deg, rgba(30, 26, 37, 0.92), rgba(15, 13, 19, 0.96));
        box-shadow: 0 32px 80px rgba(0, 0, 0, 0.65);
        transform: none;
    }

    .sky .dpanel.dpanel--modal .dctrl {
        position: static;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: 420px;
        margin: 14px auto 0;
        padding-top: 4px;
        flex-shrink: 0;
    }

    body.sky-modal-open {
        overflow: hidden;
    }

    .fstar .lbl {
        font-size: 0.74rem;
    }

    .fstar.hero .lbl {
        font-size: 1rem;
    }

    .fstar.brand .logo {
        width: 48px;
        height: 48px;
    }

    .fstar .dot {
        width: 18px;
        height: 18px;
    }

    .fstar.hero .dot {
        width: 26px;
        height: 26px;
    }

    .fstar .sub {
        display: none;
    }

    /* hide all subs on mobile (Muhurat & TLA STAR taglines too) */
    .htip {
        width: 210px;
    }

    .note-body {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .note-body img {
        width: 150px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .sky-bgstars i,
    .fstar .dot,
    .fstar.hero .dot,
    .fstar.brand .logo {
        animation: none;
    }

    .note,
    .note-ov {
        transition: opacity 0.2s;
    }
}

/* ============ IN-PLACE MORPH (star map becomes the feature) ============ */
.sky .dpanel {
    position: absolute;
    inset: 0;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 34px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease);
}

.sky .dpanel .dp-in {
    display: flex;
    gap: 30px;
    align-items: center;
    max-width: 800px;
    transform: translateY(16px);
    transition: transform 0.55s var(--ease);
}

.sky.showing .dpanel {
    opacity: 1;
    pointer-events: auto;
}

.sky.showing .dpanel .dp-in {
    transform: none;
}

.sky.showing .fstar,
.sky.showing .sky-lines,
.sky.showing .sky-hint {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
}

.dpanel .dp-img {
    width: 172px;
    flex: none;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
}

.dpanel .dp-img.hide {
    display: none;
}

.dpanel .dtxt {
    max-width: 46ch;
}

.dpanel .dtag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.dpanel .dtag .d {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-grad);
    box-shadow: 0 0 8px rgba(246, 207, 148, 0.7);
}

.dpanel .drs {
    color: #F6CF94;
    letter-spacing: 3px;
    font-size: 1rem;
    margin-bottom: 10px;
}

.dpanel .drs.hide {
    display: none;
}

.dpanel h3 {
    font-family: var(--font-display);
    font-weight: 800;
    color: #fff;
    font-size: clamp(1.4rem, 2.6vw, 1.75rem);
    line-height: 1.12;
    margin-bottom: 12px;
}

.dpanel p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.64;
}

.dpanel .rmeta {
    display: block;
    margin-top: 12px;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--gold);
    font-size: 0.88rem;
}

.dpanel .dp-shead {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--gold);
    font-size: 1.02rem;
    line-height: 1.25;
    margin-bottom: 8px;
}

.dpanel .dp-shead.hide {
    display: none;
}

.dpanel .dp-slide {
    min-height: 104px;
}

.dpanel .dp-slide.swap {
    animation: dpFade 0.4s var(--ease);
}

@keyframes dpFade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.dpanel .dback {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-2);
    border-radius: 999px;
    padding: 8px 14px;
    cursor: pointer;
    transition: 0.18s;
}

.dpanel .dback:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.dpanel .dctrl {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.dpanel .dnav {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--muted);
    background: none;
    border: 0;
    cursor: pointer;
    padding: 6px 8px;
    transition: color 0.18s;
}

.dpanel .dnav:hover {
    color: var(--gold);
}

.dpanel .dctrl .idx {
    font-family: var(--font-display);
    font-size: 0.78rem;
    color: var(--faint);
    letter-spacing: 0.05em;
}

.dpanel .dp-dots {
    display: inline-flex;
    gap: 9px;
    align-items: center;
}

.dpanel .dp-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: rgba(246, 207, 148, 0.3);
    cursor: pointer;
    transition: transform 0.2s var(--ease), background 0.2s;
}

.dpanel .dp-dots button.on {
    background: var(--accent-grad);
    transform: scale(1.35);
    box-shadow: 0 0 9px rgba(246, 207, 148, 0.6);
}

@media (max-width: 680px) {
    .dpanel .dp-in {
        flex-direction: column;
        text-align: center;
        gap: 18px;
    }

    .dpanel .dp-img {
        width: 150px;
    }

    .dpanel .dtxt {
        max-width: 100%;
    }
}

/* ============ COSMIC SUBSCRIBE (star-style hero + steps) ============ */
.cos {
    position: relative;
    text-align: center;
    padding: 52px 20px 20px;
    overflow: hidden;
}

.cos-glow {
    position: absolute;
    left: 50%;
    top: 60px;
    width: 900px;
    max-width: 120vw;
    height: 760px;
    transform: translateX(-50%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle, rgba(226, 121, 62, 0.15), rgba(246, 207, 148, 0.05) 34%, transparent 62%);
}

.cos>* {
    position: relative;
    z-index: 1;
}

.cos>.cos-glow {
    position: absolute;
    z-index: 0;
}

.cos .eyebrow {
    color: var(--gold);
}

.cos h1 {
    font-family: var(--font-display);
    font-weight: 800;
    color: #fff;
    font-size: clamp(2rem, 5.2vw, 3.6rem);
    line-height: 1.08;
    margin: 16px auto 0;
    max-width: 16ch;
}

.cos .lead {
    color: var(--muted);
    margin: 16px auto 0;
    max-width: 42ch;
    font-size: 1.02rem;
    text-align: center;
}

.plan-stars {
    display: flex;
    gap: 26px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 46px auto 0;
    max-width: 760px;
}

.pstar {
    position: relative;
    flex: 1;
    min-width: 260px;
    max-width: 340px;
    border: 1px solid rgba(246, 207, 148, 0.24);
    border-radius: 22px;
    padding: 44px 26px 28px;
    text-align: center;
    background: rgba(20, 18, 26, 0.5);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: transform 0.3s var(--ease), border-color 0.3s;
}

.pstar:hover {
    transform: translateY(-6px);
    border-color: rgba(246, 207, 148, 0.5);
}

.pstar .orb {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-grad);
    box-shadow: 0 0 26px 6px rgba(246, 207, 148, 0.55);
    animation: orbTwinkle 5.5s ease-in-out infinite;
}

@keyframes orbTwinkle {

    0%,
    72%,
    100% {
        box-shadow: 0 0 22px 5px rgba(246, 207, 148, 0.5);
    }

    86% {
        box-shadow: 0 0 34px 10px rgba(246, 207, 148, 0.85);
    }
}

.pstar .plab {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}

.pstar .was {
    color: var(--faint);
    font-size: 0.9rem;
    margin-top: 12px;
}

.pstar .now {
    margin-top: 6px;
}

.pstar .now b {
    font-family: var(--font-display);
    font-weight: 800;
    color: #fff;
    font-size: 2.6rem;
}

.pstar .now span {
    color: var(--muted);
    font-size: 1rem;
}

.pstar .save {
    display: inline-block;
    margin-top: 14px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    color: #7ee0a8;
    border: 1px solid rgba(126, 224, 168, 0.35);
    border-radius: 999px;
    padding: 0.35em 0.9em;
}

.pstar .pfeat {
    list-style: none;
    text-align: left;
    margin: 20px auto 4px;
    padding: 20px 4px 0;
    max-width: 240px;
    display: grid;
    gap: 11px;
    border-top: 1px solid rgba(246, 207, 148, 0.14);
}

.pstar .pfeat li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.4;
}

.pstar .pfeat li svg {
    width: 16px;
    height: 16px;
    flex: none;
    margin-top: 2px;
    color: var(--gold);
}

.pstar .pnote {
    color: var(--faint);
    font-size: 0.82rem;
    margin-top: 16px;
}

/* ===== Detailed plan comparison (Plans page) ===== */
.cmp-wrap {
    max-width: 780px;
    margin: 0 auto;
}

.cmp {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(20, 18, 26, 0.42);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.cmp table {
    width: 100%;
    border-collapse: collapse;
    min-width: 540px;
}

.cmp th,
.cmp td {
    padding: 13px 12px;
    text-align: center;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cmp tr:last-child td {
    border-bottom: 0;
}

.cmp thead th {
    position: sticky;
    top: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.74rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--faint);
    background: rgba(16, 14, 20, 0.9);
    padding-top: 16px;
    padding-bottom: 16px;
}

.cmp thead th.cy {
    color: var(--gold);
}

.cmp thead th.col-cur {
    color: var(--gold);
    background: linear-gradient(180deg, rgba(226, 121, 62, 0.18), rgba(16, 14, 20, 0.9));
}

.cmp td.col-cur,
.cmp tr.price-row td.col-cur {
    background: linear-gradient(180deg, rgba(226, 121, 62, 0.12), rgba(226, 121, 62, 0.03));
}

.cmp thead th .curtag {
    display: block;
    font-size: 0.58rem;
    color: #7ee0a8;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-top: 2px;
    text-transform: uppercase;
}

.cmp td:first-child,
.cmp th:first-child {
    text-align: left;
    color: var(--text);
    font-weight: 500;
    min-width: 190px;
}

.cmp td.cy,
.cmp th.cy {
    background: rgba(246, 207, 148, 0.06);
}

.cmp .tick {
    color: #7ee0a8;
    font-weight: 700;
}

.cmp .cross {
    color: #7a6f63;
}

.cmp .dash {
    color: var(--faint);
}

.cmp td.val {
    color: var(--muted);
}

.cmp tr.price-row td {
    font-family: var(--font-display);
    font-weight: 800;
    color: #fff;
    font-size: 1rem;
    border-top: 1px solid rgba(246, 207, 148, 0.16);
}

.cmp tr.price-row td.cy {
    color: var(--gold);
}

.cmp-note {
    text-align: center;
    color: var(--faint);
    font-size: 0.85rem;
    margin-top: 14px;
}

/* ===== How we are different ===== */
.diff-grid {
    display: grid;
    gap: 16px;
    max-width: 880px;
    margin: 10px auto 0;
}

.diff {
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(20, 18, 26, 0.42);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
}

.diff-topic {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 15px 22px 2px;
}

.diff-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.diff-other,
.diff-us {
    padding: 12px 22px 18px;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.diff-us {
    background: rgba(246, 207, 148, 0.06);
    border-left: 1px solid var(--border);
    color: var(--text);
}

.dx,
.dc {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.dx {
    color: var(--faint);
}

.dx::before {
    content: "\2715  ";
    color: #7a6f63;
}

.dc {
    color: var(--gold);
}

.dc::before {
    content: "\2713  ";
    color: #7ee0a8;
}

@media (max-width: 620px) {
    .diff-cols {
        grid-template-columns: 1fr;
    }

    .diff-us {
        border-left: 0;
        border-top: 1px solid var(--border);
    }
}

.mx-wrap {
    max-width: 820px;
    margin: 10px auto 0;
}

.mx {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(20, 18, 26, 0.42);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.mx table {
    width: 100%;
    border-collapse: collapse;
    min-width: 540px;
}

.mx th,
.mx td {
    padding: 15px 16px;
    text-align: left;
    font-size: 0.93rem;
    line-height: 1.5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    vertical-align: top;
}

.mx tr:last-child td {
    border-bottom: 0;
}

.mx thead th {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.74rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--faint);
}

.mx thead th.cu {
    color: var(--gold);
}

.mx td.topic,
.mx th:first-child {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text);
    width: 24%;
}

.mx td.them {
    color: var(--muted);
}

.mx td.us,
.mx th.cu {
    background: rgba(246, 207, 148, 0.06);
}

.mx td.us {
    color: var(--text);
}

.diff-hi {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 880px;
    margin: 20px auto 0;
}

.diff-hi .hi {
    border: 1px solid rgba(246, 207, 148, 0.24);
    border-radius: 16px;
    padding: 22px 20px;
    background: rgba(246, 207, 148, 0.05);
}

.diff-hi .hi-t {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 8px;
}

.diff-hi .hi p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

@media (max-width: 720px) {
    .diff-hi {
        grid-template-columns: 1fr;
    }
}

/* emphasized "world first" block with the 720-crore logic */
.wf {
    position: relative;
    max-width: 820px;
    margin: 0 auto 20px;
    padding: 34px 34px 30px;
    text-align: center;
    border: 1px solid rgba(246, 207, 148, 0.4);
    border-radius: 22px;
    background: rgba(246, 207, 148, 0.06);
    box-shadow: 0 0 70px -22px rgba(246, 207, 148, 0.6);
    overflow: hidden;
}

.wf::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-grad);
}

.wf-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #1a0f06;
    background: var(--accent-grad);
    border-radius: 999px;
    padding: 0.4em 1em;
    margin-bottom: 18px;
}

.wf-h {
    font-family: var(--font-display);
    font-weight: 800;
    color: #fff;
    font-size: clamp(1.5rem, 3.4vw, 2.3rem);
    line-height: 1.18;
    max-width: 20ch;
    margin: 0 auto 14px;
}

.wf-lead {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.6;
    max-width: 46ch;
    margin: 0 auto 20px;
}

.wf-stat {
    max-width: 40ch;
    margin: 0 auto 20px;
    padding: 18px 20px;
    border: 1px solid rgba(208, 128, 104, 0.4);
    border-radius: 14px;
    background: rgba(208, 128, 104, 0.08);
}

.wf-stat b {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.wf-stat span {
    color: #e6b8a6;
    font-size: 0.95rem;
    line-height: 1.5;
}

.wf-close {
    color: var(--text);
    font-size: 1.02rem;
    line-height: 1.62;
    max-width: 50ch;
    margin: 0 auto;
}

@media (max-width: 620px) {
    .wf {
        padding: 26px 20px 24px;
    }
}

/* Vision narrative */
.vis-prose {
    max-width: 60ch;
    margin: 26px auto 0;
    text-align: center;
}

.vis-prose p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.72;
    margin-bottom: 16px;
}

.vis-prose p:last-child {
    margin-bottom: 0;
}

.vis-prose b {
    color: var(--text);
    font-weight: 600;
}

.vis-begin {
    text-align: center;
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--gold);
    font-size: 1.25rem;
    margin-top: 40px;
}

.vis-pull {
    max-width: 30ch;
    margin: 40px auto 0;
    padding-top: 26px;
    border: 0;
    border-top: 1px solid rgba(246, 207, 148, 0.3);
    font-family: var(--font-display);
    font-weight: 700;
    color: #fff;
    font-size: clamp(1.35rem, 3.2vw, 2rem);
    line-height: 1.3;
    text-align: center;
}

.vis-elon {
    max-width: 44ch;
    margin: 16px auto 0;
    text-align: center;
    color: var(--muted);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.55;
}

.vis-close {
    text-align: center;
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--gold);
    font-size: clamp(1.2rem, 2.8vw, 1.7rem);
    line-height: 1.4;
    margin: 40px auto 0;
    max-width: 26ch;
}

/* Vision, Elon / mission-log style */
.elon-wrap {
    max-width: 760px;
    margin: 0 auto;
    text-align: left;
}

.elon-tag {
    display: block;
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
}

.elon-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.9rem, 5.4vw, 3.2rem);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: #fff;
    line-height: 1.04;
    margin: 12px 0 8px;
}

.elon-title .g {
    background: var(--accent-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.elon-sub {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 52ch;
}

.elon-log {
    margin-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.elon-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 22px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    align-items: baseline;
}

.elon-row .k {
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
}

.elon-row .v {
    color: #e2e2e5;
    font-size: 1.02rem;
    line-height: 1.6;
}

.elon-row .v b {
    color: #fff;
    font-weight: 600;
}

.elon-launch {
    margin-top: 38px;
    text-align: center;
    font-family: var(--font-display);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #fff;
    font-size: clamp(1.25rem, 2.8vw, 1.9rem);
    line-height: 1.25;
}

.elon-launch .g {
    background: var(--accent-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.elon-mono {
    font-family: ui-monospace, Menlo, monospace;
    color: var(--faint);
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-align: center;
    margin-top: 12px;
}

.elon-mono b {
    color: var(--gold);
}

@media (max-width:600px) {
    .elon-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}

/* Vision mission-dossier sections */
.ms {
    margin-top: 34px;
}

.ms-block {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 28px;
    padding: 26px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ms-num {
    font-family: ui-monospace, Menlo, monospace;
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.ms-name {
    font-family: var(--font-display);
    font-weight: 800;
    color: #fff;
    font-size: 1.08rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-top: 6px;
    line-height: 1.15;
}

.ms-tag {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-top: 9px;
}

.ms-body p {
    color: #d7d7db;
    font-size: 1.02rem;
    line-height: 1.66;
    margin-bottom: 12px;
}

.ms-body p:last-child {
    margin-bottom: 0;
}

.ms-body b {
    color: #fff;
    font-weight: 600;
}

.ms-body .ms-eq {
    color: var(--gold);
    font-family: var(--font-display);
    font-weight: 700;
}

@media(max-width:640px) {
    .ms-block {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

/* Vision accordion */
.vacc {
    margin-top: 28px;
}

.vacc details {
    border-top: 1px solid var(--border);
}

.vacc details:last-of-type {
    border-bottom: 1px solid var(--border);
}

.vacc summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 4px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
}

.vacc summary::-webkit-details-marker {
    display: none;
}

.vacc summary:hover .aname {
    color: var(--gold);
}

.vacc .anum {
    font-family: ui-monospace, Menlo, monospace;
    color: var(--gold);
    font-size: 0.85rem;
}

.vacc .aname {
    font-family: var(--font-display);
    font-weight: 800;
    color: #fff;
    font-size: 1.14rem;
    line-height: 1.15;
    transition: color .18s;
}

.vacc .ak {
    color: var(--gold);
    font-size: 0.86rem;
    font-family: var(--font-display);
    font-weight: 600;
    margin-top: 3px;
}

.vacc .chev {
    color: var(--muted);
    transition: transform .25s var(--ease);
}

.vacc details[open] .chev {
    transform: rotate(180deg);
}

.vacc .abody {
    padding: 0 40px 22px 40px;
    max-width: 62ch;
}

.vacc .abody p {
    color: var(--muted);
    line-height: 1.72;
    font-size: 1rem;
    margin: 0 0 12px;
}

.vacc .abody p:last-child {
    margin: 0;
}

.vacc .abody p b {
    color: var(--text);
    font-weight: 600;
}

.vacc .abody p.k {
    color: var(--gold);
    font-family: var(--font-display);
    font-weight: 700;
}

@media(max-width:560px) {
    .vacc .abody {
        padding: 0 0 20px 0;
    }
}

/* bigger stars for the two-star vision map */
#skyVision .fstar .dot {
    width: 32px;
    height: 32px;
}

#skyVision .fstar .lbl {
    font-size: 1.08rem;
}

#skyVision .fstar:hover .dot,
#skyVision .fstar:focus-visible .dot {
    transform: scale(1.25);
}

.scroll-cue {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin: 2px 0 26px;
}

.scroll-cue span {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--faint);
}

.scroll-cue svg {
    width: 26px;
    height: 26px;
    color: var(--gold);
    animation: cueBounce 1.7s var(--ease) infinite;
}

@keyframes cueBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.5;
    }

    50% {
        transform: translateY(8px);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-cue svg {
        animation: none;
    }
}

.pstar.feat {
    border-color: rgba(246, 207, 148, 0.55);
    box-shadow: 0 0 60px -14px rgba(246, 207, 148, 0.5);
    transform: scale(1.04);
}

.pstar.feat:hover {
    transform: scale(1.04) translateY(-6px);
}

.pstar.feat .orb {
    width: 54px;
    height: 54px;
    top: -26px;
    box-shadow: 0 0 34px 9px rgba(246, 207, 148, 0.75);
    animation-delay: 2.6s;
}

.pstar .best {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1a0f06;
    background: var(--accent-grad);
    border-radius: 999px;
    padding: 0.3em 0.7em;
}

.cos-cta {
    margin: 40px auto 0;
}

.cos-sub {
    color: var(--faint);
    font-size: 0.9rem;
    margin-top: 14px;
}

.cos-stores {
    justify-content: center;
    margin: 34px auto 0;
}

/* 3-step constellation path */
.path {
    max-width: 820px;
    margin: 0 auto;
    padding: 6px 20px;
}

.path-title {
    font-family: var(--font-display);
    font-weight: 800;
    color: #fff;
    font-size: clamp(1.4rem, 3vw, 2rem);
    text-align: center;
    margin-bottom: 6px;
}

.path-sub {
    color: var(--muted);
    text-align: center;
    margin-bottom: 40px;
}

.steps3 {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.steps3::before {
    content: "";
    position: absolute;
    top: 26px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: repeating-linear-gradient(90deg, rgba(246, 207, 148, 0.4) 0 7px, transparent 7px 15px);
}

.snode {
    position: relative;
    flex: 1;
    text-align: center;
}

.snode .sdot {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: rgba(20, 18, 26, 0.7);
    border: 1px solid rgba(246, 207, 148, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--gold);
    font-size: 1.2rem;
    box-shadow: 0 0 20px 2px rgba(246, 207, 148, 0.3);
    position: relative;
    z-index: 1;
}

.snode h4 {
    font-family: var(--font-display);
    font-weight: 700;
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.snode p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 620px) {
    .steps3 {
        flex-direction: column;
        gap: 26px;
    }

    .steps3::before {
        display: none;
    }

    .pstar.feat {
        transform: none;
    }

    .pstar.feat:hover {
        transform: translateY(-6px);
    }
}

/* orbit: the whole swastik of icons revolves slowly around the centre */
.orbit {
    position: absolute;
    inset: 0;
}

.orbit.spin {
    animation: orbitSpin 150s linear infinite;
    transform-origin: 50% 50%;
}

.orbit.spin .fstar-in {
    animation: orbitSpin 150s linear infinite reverse;
    transform-origin: 50% 50%;
}

@keyframes orbitSpin {
    to {
        transform: rotate(360deg);
    }
}

.fstar-in {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* revolve never pauses (speed is slow enough to click comfortably) */
@media (prefers-reduced-motion: reduce) {

    .orbit.spin,
    .orbit.spin .fstar-in,
    #skyAbout .orbit.spin,
    #skyAbout .orbit.spin .fstar-in {
        animation: none;
    }

    #skyAbout .orbit.spin {
        transform: scale(0.86);
    }
}

/* reviews hover-reveal tooltip */
.htip {
    position: absolute;
    transform: translate(-50%, 0);
    width: 250px;
    max-width: 78vw;
    background: linear-gradient(180deg, rgba(30, 26, 37, 0.74), rgba(15, 13, 19, 0.82));
    backdrop-filter: blur(28px) saturate(140%);
    -webkit-backdrop-filter: blur(28px) saturate(140%);
    border: 1px solid rgba(246, 207, 148, 0.2);
    border-radius: 16px;
    padding: 16px 18px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s var(--ease);
    z-index: 7;
    text-align: center;
    box-shadow: 0 24px 66px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.htip::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-grad);
    opacity: 0.9;
}

.htip.on {
    opacity: 1;
}

.htip .hst {
    color: #F6CF94;
    letter-spacing: 2px;
    font-size: 0.76rem;
}

.htip .htz {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.5;
    margin-top: 6px;
}

.htip .hrm {
    display: block;
    margin-top: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.76rem;
    color: var(--gold);
}

/* Aries glyph outline that gently appears (shows the ram shape) then fades out, on a loop */
.aries-glyph {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    animation: ariesReveal 13s ease-in-out infinite;
}

.aries-glyph path {
    fill: none;
    stroke: rgba(246, 207, 148, 0.42);
    stroke-width: 0.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@keyframes ariesReveal {

    0%,
    10%,
    100% {
        opacity: 0;
    }

    22%,
    45% {
        opacity: 1;
    }

    58% {
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .aries-glyph {
        animation: none;
        opacity: 0;
    }
}

/* ============ VISION (About panel closing manifesto) ============ */
.vision {
    position: relative;
    text-align: center;
    overflow: hidden;
}

.vision-glow {
    position: absolute;
    left: 50%;
    top: 46%;
    width: 720px;
    max-width: 130vw;
    height: 520px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(226, 121, 62, 0.15), rgba(246, 207, 148, 0.05) 38%, transparent 66%);
    pointer-events: none;
    z-index: 0;
}

.vision>.wrap {
    position: relative;
    z-index: 1;
}

.vision .eyebrow {
    color: var(--gold);
}

.vision h2 {
    font-family: var(--font-display);
    font-weight: 800;
    color: #fff;
    font-size: clamp(1.9rem, 4.6vw, 3.1rem);
    line-height: 1.1;
    max-width: 20ch;
    margin: 14px auto 0;
    letter-spacing: -0.01em;
}

.vision p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 46ch;
    margin: 18px auto 0;
}

/* vision: two-column Global / Personal */
.vision-two {
    display: flex;
    gap: 26px;
    max-width: 840px;
    margin: 34px auto 0;
    text-align: left;
}

.vision-two .vcol {
    flex: 1;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(20, 18, 26, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 22px 24px;
}

.vision-two .vc-h {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--gold);
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.vision-two .vc-h svg {
    width: 20px;
    height: 20px;
}

.vision-two .vcol p {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.62;
    max-width: none;
    margin: 0;
}

@media (max-width: 640px) {
    .vision-two {
        flex-direction: column;
        gap: 16px;
    }
}

/* vision + special as a star map */
#skyVision {
    height: 420px;
}

.htip.htip-v {
    width: 300px;
}

.htip .vt-title {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--gold);
    font-size: 0.98rem;
    margin-bottom: 6px;
}

.htip .vt-text {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

@media (max-width: 640px) {
    #skyVision {
        height: auto;
        aspect-ratio: 1 / 1.05;
    }
}

/* ============ MANAGE SUBSCRIPTION (manage.html) ============ */
.sub-main {
    max-width: 660px;
    margin: 0 auto;
    padding: 40px 20px 70px;
}

.sub-hero {
    text-align: center;
    margin-bottom: 26px;
}

.sub-hero .om {
    font-size: 2rem;
}

.sub-hero h1 {
    font-family: var(--font-display);
    font-weight: 800;
    color: #fff;
    font-size: clamp(1.4rem, 3.4vw, 1.9rem);
    line-height: 1.15;
    margin-top: 8px;
    max-width: 20ch;
    margin-left: auto;
    margin-right: auto;
}

.sub-hero p {
    color: var(--muted);
    margin-top: 8px;
    font-size: 0.95rem;
}

.sec-lbl {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--faint);
    margin: 26px 0 10px;
}

.planbox {
    border: 1px solid rgba(246, 207, 148, 0.35);
    border-radius: 18px;
    background: var(--surface);
    overflow: hidden;
}

.planbox .pb-top {
    padding: 20px 22px;
}

.pb-row1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.premium {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #1a0f06;
    background: var(--accent-grad);
    padding: 0.35em 0.8em;
    border-radius: 999px;
}

.active {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #7ee0a8;
    border: 1px solid rgba(126, 224, 168, 0.35);
    border-radius: 999px;
    padding: 0.3em 0.7em;
}

.active .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #7ee0a8;
}

.planbox h2 {
    font-family: var(--font-display);
    font-weight: 800;
    color: #fff;
    font-size: 2rem;
    margin-top: 14px;
}

.planbox .pb-price {
    color: var(--muted);
    font-size: 1rem;
    margin-top: 2px;
}

.planbox .pb-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px;
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
}

.planbox .pb-foot .l {
    color: var(--faint);
    font-size: 0.85rem;
}

.planbox .pb-foot .r {
    font-family: var(--font-display);
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
}

.upsell {
    border: 1px solid rgba(246, 207, 148, 0.42);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(226, 121, 62, 0.12), rgba(255, 255, 255, 0.02));
    padding: 22px;
    margin-top: 16px;
}

.upsell .u-h {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    color: #fff;
    font-size: 1.2rem;
}

.upsell .u-why {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.25);
    padding: 14px 16px;
    margin-top: 14px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.upsell .u-why h4 {
    font-family: var(--font-display);
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
}

.upsell .u-why p {
    color: var(--muted);
    font-size: 0.9rem;
    margin-top: 3px;
    line-height: 1.5;
}

.upsell .u-fam {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 14px 2px;
}

.note-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    padding: 16px 18px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.note-card b {
    color: var(--gold);
    font-weight: 600;
}

.note-card .ni {
    font-size: 1.1rem;
    flex: none;
}

.subtable {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    background: var(--surface);
}

.strow {
    display: grid;
    grid-template-columns: 1.45fr 0.75fr 0.95fr 0.95fr;
    align-items: center;
}

.strow+.strow {
    border-top: 1px solid var(--border);
}

.sthead {
    background: rgba(255, 255, 255, 0.03);
}

.stc {
    padding: 11px 8px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text);
}

.stc.lbl {
    text-align: left;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text);
    line-height: 1.25;
}

.sthead .stc {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--faint);
}

.col-cur {
    background: linear-gradient(180deg, rgba(226, 121, 62, 0.12), rgba(226, 121, 62, 0.03));
}

.sthead .col-cur {
    color: var(--gold);
}

.curtag {
    display: block;
    font-size: 0.58rem;
    color: #7ee0a8;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

.subtable .tick {
    color: #7ee0a8;
    font-weight: 700;
}

.subtable .cross {
    color: #5f5f5b;
}

.subtable .dash {
    color: var(--faint);
}

.stc small {
    color: var(--muted);
    font-size: 0.72rem;
    display: block;
}

.stc.price {
    font-family: var(--font-display);
    font-weight: 800;
    color: #fff;
    font-size: 0.95rem;
}

.stc.plabel {
    font-weight: 800;
}

.billing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    padding: 15px 18px;
}

.billing .l {
    color: var(--muted);
    font-size: 0.95rem;
}

.billing .r {
    font-family: var(--font-display);
    font-weight: 800;
    color: #fff;
    font-size: 1.05rem;
}

.cancel-link {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 20px;
    color: #d9534f;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    background: none;
    border: 0;
    padding: 0;
}

.cancel-link:hover {
    color: #ef6f6f;
}

.cancel-link:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.after-note {
    text-align: center;
    color: var(--muted);
    font-size: 0.88rem;
    margin-top: 12px;
}

.demo-bar {
    margin-top: 30px;
    text-align: center;
}

.demo-bar .dl {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--faint);
    margin-bottom: 8px;
}

.demo-bar .drow {
    display: inline-flex;
    gap: 6px;
    background: var(--surface);
    border: 1px solid var(--border-2);
    border-radius: 999px;
    padding: 4px;
}

.demo-bar .drow button,
.demo-bar .drow span {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--muted);
    background: none;
    border: 0;
    border-radius: 999px;
    padding: 0.5em 0.9em;
    cursor: default;
    white-space: nowrap;
}

.demo-bar .drow button.on,
.demo-bar .drow span.on {
    background: var(--accent-grad);
    color: #1a0f06;
}

.state-mid {
    max-width: 480px;
    margin: 0 auto;
}

@media (max-width: 480px) {
    .strow {
        grid-template-columns: 1.2fr 0.7fr 0.85fr 0.85fr;
    }

    .stc {
        padding: 9px 5px;
        font-size: 0.72rem;
    }

    .stc.lbl {
        font-size: 0.72rem;
    }
}