/* ============================================
   GLYPH LANDING + DESCUBRA — styles.css (v3)
   ============================================ */

:root {
    --bg: #0a0a0f;
    --bg-alt: #0c0c13;
    --bg-card: rgba(255, 255, 255, 0.04);
    --border-card: rgba(255, 255, 255, 0.07);
    --text: #e8e8e8;
    --text-dim: #888888;
    --text-faint: #555;
    --purple: #a78bfa;
    --cyan: #00e5ff;
    --pink: #f472b6;
    --green: #34d399;
    --orange: #fb923c;
    --gold: #d4a642;
    --gold-light: #e8c36a;
    --glow-purple: rgba(167, 139, 250, 0.15);
    --glow-cyan: rgba(0, 229, 255, 0.15);
    --glow-pink: rgba(244, 114, 182, 0.15);
    --glow-green: rgba(52, 211, 153, 0.15);
    --glow-orange: rgba(251, 146, 60, 0.15);
    --glow-gold: rgba(212, 166, 66, 0.15);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius: 16px;
    --radius-sm: 10px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.1) transparent;
    overflow-x: hidden;
}
html::-webkit-scrollbar { width: 6px; }
html::-webkit-scrollbar-track { background: transparent; }
html::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }
html::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }
body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input { font-family: inherit; }
img { display: block; max-width: 100%; }

/* ---------- Utilities ---------- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--border-card);
    border-radius: var(--radius);
}
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================
   NAV
   ============================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 12px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10,10,15,0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.logo { display: flex; align-items: center; gap: 8px; }
.logo-img { width: 24px; height: 24px; object-fit: contain; }
.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #c9952c, #e8c36a, #c9952c);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gold-shimmer 4s ease-in-out infinite;
}
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-link {
    font-size: 0.78rem;
    color: var(--text-dim);
    transition: color 0.2s;
    letter-spacing: 0.02em;
}
.nav-link:hover { color: var(--text); }
.nav-login {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold);
    padding: 6px 14px;
    border: 1px solid rgba(212,166,66,0.3);
    border-radius: 100px;
    transition: background 0.25s, border-color 0.25s;
    letter-spacing: 0.02em;
}
.nav-login:hover {
    background: rgba(212,166,66,0.1);
    border-color: rgba(212,166,66,0.5);
}

/* Sub-nav (abas) — second fixed row */
.sub-nav {
    position: fixed;
    top: 62px;
    left: 0; right: 0;
    z-index: 99;
    display: flex;
    justify-content: center;
    gap: 4px;
    padding: 6px 16px;
    background: rgba(10,10,15,0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
}
.sub-nav--visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* ============================
   HERO
   ============================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 24px 60px;
}
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}
.hero-glow--purple {
    width: 520px; height: 520px;
    top: -10%; right: -8%;
    background: radial-gradient(circle, var(--glow-purple), transparent 70%);
    animation: glow-pulse 5s ease-in-out infinite;
}
.hero-glow--gold {
    width: 400px; height: 400px;
    bottom: -5%; left: -6%;
    background: radial-gradient(circle, var(--glow-gold), transparent 70%);
    animation: glow-pulse 6s ease-in-out 1.5s infinite;
}
@keyframes glow-pulse {
    0%, 100% { opacity: 0.35; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.08); }
}
.hero-content {
    position: relative; z-index: 2;
    text-align: center; max-width: 720px;
}
.hero-logo {
    width: 72px; height: 72px;
    object-fit: contain;
    margin: 0 auto 28px;
    filter: drop-shadow(0 0 24px var(--glow-gold));
    animation: logo-float 4s ease-in-out infinite;
}
@keyframes logo-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.hero-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.6rem, 6.5vw, 4.5rem);
    line-height: 1.08;
    margin-bottom: 18px;
}
.hero-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: var(--text-dim);
    letter-spacing: 0.03em;
    margin-bottom: 28px;
}

/* Hero social proof */
.hero-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeInUp 0.8s 0.5s ease forwards;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.hero-proof-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.hero-proof-label {
    font-size: 0.78rem;
    color: var(--text-faint);
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.hero-proof-sep {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.08);
}
@media (max-width: 520px) {
    .hero-proof { gap: 16px; }
    .hero-proof-number { font-size: 1.2rem; }
    .hero-proof-label { font-size: 0.7rem; }
    .hero-proof-sep { height: 24px; }
}

/* Email form */
.email-form {
    display: flex; gap: 0; padding: 6px;
    max-width: 560px; margin: 0 auto; position: relative;
}
.name-input,
.email-input {
    flex: 1; background: transparent;
    border: none; outline: none;
    padding: 14px 20px; font-size: 0.95rem;
    color: var(--text); min-width: 0;
}
.name-input { flex: 0.7; border-right: 1px solid rgba(255,255,255,0.06); }
.name-input::placeholder,
.email-input::placeholder { color: var(--text-faint); }
.cta-btn {
    padding: 14px 28px; border: none;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--purple), var(--gold));
    color: #0a0a0f; font-weight: 700;
    font-size: 0.9rem; white-space: nowrap;
    display: flex; align-items: center; gap: 8px;
    transition: transform 0.2s, box-shadow 0.35s;
}
.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 24px var(--glow-purple), 0 4px 40px var(--glow-gold);
}
.cta-btn:active { transform: translateY(0); }
.cta-btn--gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
.cta-loading[hidden] { display: none; }
.form-message {
    position: absolute; bottom: -28px; left: 0; right: 0;
    text-align: center; font-size: 0.82rem;
    min-height: 20px; color: var(--purple);
}
.form-message.error { color: #ff5c5c; }

/* Scroll indicator */
.scroll-indicator { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); }
.scroll-line {
    width: 1px; height: 48px;
    background: linear-gradient(to bottom, var(--text-faint), transparent);
    animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim {
    0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    40% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    60% { opacity: 1; transform: scaleY(1); transform-origin: bottom; }
    100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ============================
   SECTION DIVIDER
   ============================ */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 8px 0;
    max-width: 480px;
    margin: 0 auto;
}
.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.35;
}
.section-divider__icon {
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    border: 1px solid var(--gold);
    opacity: 0.5;
    flex-shrink: 0;
}

/* ============================
   SECTIONS (shared)
   ============================ */
.section { padding: clamp(12px, 1.5vw, 20px) 0; }
.section--no-top { padding-top: clamp(8px, 1vw, 14px); }
.section-title {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    line-height: 1.15; text-align: center;
    margin-bottom: 16px;
}
/* .section-title em and .text-gold now use gold-shimmer gradient — see GOLD SHIMMER section */
.text-cyan { color: var(--cyan); }
.text-green { color: var(--green); }
.text-orange { color: var(--orange); }
.text-purple { color: var(--purple); }
.text-pink { color: var(--pink); }
.section-label {
    display: block; text-align: center;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 12px;
}
.section-subtitle {
    text-align: center; color: var(--text-dim);
    font-size: clamp(0.92rem, 1.6vw, 1.05rem);
    max-width: 560px; margin: 0 auto 48px;
    line-height: 1.7;
}

/* ============================
   PROBLEM
   ============================ */
#problema { border-top: 1px solid rgba(255,255,255,0.03); }
.manifesto-quote {
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.8;
    color: var(--gold);
    max-width: 640px;
    margin: 0 auto 32px;
    border: none;
    padding: 0;
    font-style: italic;
}
.manifesto-quote em {
    font-style: normal;
    font-weight: 700;
}
.problem-conclusion {
    text-align: center; font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: var(--text-dim); max-width: 540px;
    margin: 0 auto; line-height: 1.7;
}

/* ============================
   FEATURE SHOWCASE (screenshot + text)
   ============================ */
.feature {
    display: flex; align-items: center;
    gap: clamp(32px, 6vw, 80px);
    margin-bottom: clamp(80px, 12vw, 120px);
}
.feature--reverse { flex-direction: row-reverse; }
.feature-visual { flex: 0 0 auto; position: relative; }
.phone-mockup { position: relative; z-index: 2; }
.phone-bezel {
    width: clamp(180px, 22vw, 240px);
    border-radius: 24px; overflow: hidden;
    border: 2px solid rgba(255,255,255,0.08);
    background: #0d0d14;
    box-shadow: 0 16px 64px rgba(0,0,0,0.6);
}
.phone-screenshot { width: 100%; height: auto; display: block; }
.phone-glow {
    position: absolute; width: 200%; height: 200%;
    top: -50%; left: -50%; border-radius: 50%;
    filter: blur(80px); pointer-events: none;
    z-index: 1; opacity: 0.3;
}
.phone-glow--purple { background: radial-gradient(circle, var(--glow-purple), transparent 60%); }
.phone-glow--cyan { background: radial-gradient(circle, var(--glow-cyan), transparent 60%); }
.phone-glow--pink { background: radial-gradient(circle, var(--glow-pink), transparent 60%); }
.phone-glow--green { background: radial-gradient(circle, var(--glow-green), transparent 60%); }
.phone-glow--orange { background: radial-gradient(circle, var(--glow-orange), transparent 60%); }
.phone-glow--gold { background: radial-gradient(circle, var(--glow-gold), transparent 60%); }
.feature-text { flex: 1; min-width: 0; }
.feature-tag {
    display: inline-block; font-size: 0.72rem;
    font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; padding: 4px 14px;
    border-radius: 100px; margin-bottom: 16px;
}
.feature-tag--purple { color: var(--purple); background: rgba(167,139,250,0.08); border: 1px solid rgba(167,139,250,0.15); }
.feature-tag--cyan { color: var(--cyan); background: rgba(0,229,255,0.08); border: 1px solid rgba(0,229,255,0.15); }
.feature-tag--pink { color: var(--pink); background: rgba(244,114,182,0.08); border: 1px solid rgba(244,114,182,0.15); }
.feature-tag--green { color: var(--green); background: rgba(52,211,153,0.08); border: 1px solid rgba(52,211,153,0.15); }
.feature-tag--orange { color: var(--orange); background: rgba(251,146,60,0.08); border: 1px solid rgba(251,146,60,0.15); }
.feature-tag--gold { color: var(--gold); background: rgba(212,166,66,0.08); border: 1px solid rgba(212,166,66,0.15); }
.feature-title {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.15; margin-bottom: 14px;
}
.feature-desc {
    font-size: clamp(0.9rem, 1.5vw, 1.02rem);
    color: var(--text-dim); line-height: 1.7; max-width: 440px;
}

/* ============================
   ORÁCULO — Mode Grid
   ============================ */
.mode-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.mode-card {
    padding: 24px 20px;
    text-align: center;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.mode-card:hover {
    border-color: rgba(255,255,255,0.1);
    box-shadow: 0 0 24px rgba(167,139,250,0.05);
    transform: translateY(-3px);
}
.mode-icon {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px; margin: 0 auto 12px;
}
.mode-icon--purple { color: var(--purple); background: rgba(167,139,250,0.06); }
.mode-icon--cyan { color: var(--cyan); background: rgba(0,229,255,0.06); }
.mode-icon--pink { color: var(--pink); background: rgba(244,114,182,0.06); }
.mode-icon--green { color: var(--green); background: rgba(52,211,153,0.06); }
.mode-icon--orange { color: var(--orange); background: rgba(251,146,60,0.06); }
.mode-icon--gold { color: var(--gold); background: rgba(212,166,66,0.06); }
.mode-name { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.mode-desc { font-size: 0.82rem; color: var(--text-dim); line-height: 1.5; }

/* ============================
   MUNDO — Feature Grid
   ============================ */
.mundo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.mundo-card {
    padding: 24px 20px;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.mundo-card:hover {
    border-color: rgba(212,166,66,0.12);
    box-shadow: 0 0 24px rgba(212,166,66,0.05);
    transform: translateY(-3px);
}
.mundo-name { font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.mundo-desc { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; }

/* ============================
   IMPACT — Database Metrics
   ============================ */
.impact-grid {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: nowrap;
}
.impact-block {
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
    padding: 24px 8px;
    border-radius: var(--radius);
    border: 1px solid var(--border-card);
    background: var(--bg-card);
    transition: border-color 0.3s, transform 0.3s;
}
.impact-block:hover {
    transform: translateY(-2px);
}
.impact-number {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
@media (max-width: 520px) {
    .impact-grid { flex-wrap: wrap; }
    .impact-block { flex: 1 1 calc(50% - 10px); max-width: none; }
}
/* Impact per-aba colors */
.impact-block--cyan { border-color: rgba(0,229,255,0.1); }
.impact-block--cyan:hover { border-color: rgba(0,229,255,0.2); }
.impact-block--cyan .impact-number { color: var(--cyan); }
.impact-block--orange { border-color: rgba(251,146,60,0.1); }
.impact-block--orange:hover { border-color: rgba(251,146,60,0.2); }
.impact-block--orange .impact-number { color: var(--orange); }
.impact-block--gold { border-color: rgba(212,166,66,0.15); background: rgba(212,166,66,0.03); }
.impact-block--gold:hover { border-color: rgba(212,166,66,0.25); }
.impact-block--gold .impact-number { color: var(--gold); }
.impact-block--green { border-color: rgba(52,211,153,0.1); }
.impact-block--green:hover { border-color: rgba(52,211,153,0.2); }
.impact-block--green .impact-number { color: var(--green); }
.impact-block--pink { border-color: rgba(244,114,182,0.1); }
.impact-block--pink:hover { border-color: rgba(244,114,182,0.2); }
.impact-block--pink .impact-number { color: var(--pink); }
.impact-label {
    display: block;
    font-weight: 700;
    font-size: 0.88rem;
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}
.impact-detail {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-faint);
    line-height: 1.4;
    opacity: 0.6;
}
.impact-cta {
    display: inline-block;
    text-align: center;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--purple);
    padding: 10px 28px;
    border: 1px solid rgba(167,139,250,0.2);
    border-radius: 100px;
    transition: background 0.25s, border-color 0.25s;
    margin: 0 auto;
}
.section--impact .container { text-align: center; }
.impact-cta:hover {
    background: rgba(167,139,250,0.06);
    border-color: rgba(167,139,250,0.4);
}

/* ============================
   SOCIAL PROOF
   ============================ */
.section--social { text-align: center; }
.badge {
    display: inline-block; padding: 6px 18px;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(212,166,66,0.25);
    border-radius: 100px;
    background: rgba(212,166,66,0.06);
    margin-bottom: 20px;
}
.counter-block {
    display: flex; flex-direction: column;
    align-items: center; gap: 4px; margin-bottom: 40px;
}
.counter-number {
    font-family: var(--font-display);
    font-weight: 700; font-size: clamp(2.4rem, 5vw, 3.5rem);
    color: var(--text); line-height: 1;
}
.counter-label { font-size: 0.85rem; color: var(--text-dim); letter-spacing: 0.04em; }

/* ============================
   FOOTER
   ============================ */
.footer {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 40px 0;
}
.footer-inner {
    display: flex; flex-direction: column;
    align-items: center; gap: 14px;
}
.footer-logo { width: 32px; height: 32px; object-fit: contain; opacity: 0.6; margin-bottom: 4px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 0.85rem; color: var(--text-dim); transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 0.78rem; color: var(--text-faint); }

/* ============================
   OVERLAY
   ============================ */
.overlay {
    position: fixed; inset: 0; z-index: 500;
    display: flex; align-items: center; justify-content: center;
    background: rgba(5,5,10,0.85);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    opacity: 0; pointer-events: none;
    transition: opacity 0.5s ease; padding: 24px;
}
.overlay.active { opacity: 1; pointer-events: auto; }
.confirmation {
    position: relative; max-width: 420px; width: 100%;
    padding: 52px 40px 44px; text-align: center;
    overflow: hidden; border-color: rgba(212,166,66,0.12);
}
.overlay-close {
    position: absolute; top: 14px; right: 18px;
    background: none; border: none;
    color: var(--text-dim); font-size: 1.6rem; line-height: 1;
    transition: color 0.2s;
}
.overlay-close:hover { color: var(--text); }
.confirmation-logo {
    width: 56px; height: 56px; object-fit: contain;
    margin: 0 auto 24px;
    filter: drop-shadow(0 0 20px var(--glow-gold));
}
.confirmation-title {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(1.4rem, 3.5vw, 1.8rem);
    margin-bottom: 12px;
}
.confirmation-pos { font-size: 1rem; color: var(--text-dim); }
.confirmation-pos strong { color: var(--gold); font-size: 1.2rem; }
.confirmation-glow {
    position: absolute; bottom: -40px; left: 50%;
    transform: translateX(-50%); width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,166,66,0.12), transparent 70%);
    filter: blur(40px); pointer-events: none;
}

/* ============================
   DESCUBRA PAGE
   ============================ */
.descubra-hero {
    position: relative;
    padding: 140px 0 80px;
    text-align: center;
    overflow: hidden;
}
.descubra-logo {
    width: 56px; height: 56px;
    object-fit: contain; margin: 0 auto 24px;
    filter: drop-shadow(0 0 20px var(--glow-gold));
}

/* Tab links (inside .sub-nav) */
.tab-link {
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-dim);
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
    letter-spacing: 0.02em;
}
.tab-link:hover { color: var(--text); }
.tab-link.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* Aba sections */
.aba-section { padding: 20px 0; }
.aba-section--alt { background: var(--bg-alt); }
.aba-header { text-align: center; margin-bottom: 28px; }
.aba-count {
    display: inline-block;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--purple); margin-bottom: 10px;
    padding: 4px 14px; border-radius: 100px;
    background: rgba(167,139,250,0.06);
    border: 1px solid rgba(167,139,250,0.12);
}
.aba-title {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
}
.aba-desc {
    font-size: clamp(0.92rem, 1.6vw, 1.05rem);
    color: var(--text-dim); max-width: 560px;
    margin: 0 auto; line-height: 1.7;
}

/* Aba showcase (phone mockup per section) */
.aba-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 52px;
}
.aba-showcase .phone-bezel {
    width: clamp(200px, 24vw, 260px);
}
.aba-showcase .phone-glow {
    position: absolute;
    width: 300%;
    height: 300%;
    top: -100%;
    left: -100%;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.2;
}
.aba-showcase .phone-mockup {
    position: relative;
    z-index: 2;
}

/* Aba card grids */
.aba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.aba-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}
.aba-card {
    padding: 18px 16px;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.aba-card:hover {
    border-color: rgba(167,139,250,0.1);
    box-shadow: 0 0 20px rgba(167,139,250,0.04);
    transform: translateY(-2px);
}

/* Card icons */
.aba-card-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 10px;
}
.aba-card-icon svg { width: 16px; height: 16px; }
.aba-card-icon--purple {
    color: var(--purple);
    background: rgba(167, 139, 250, 0.06);
    border: 1px solid rgba(167, 139, 250, 0.1);
}
.aba-card-icon--cyan {
    color: var(--cyan);
    background: rgba(0, 229, 255, 0.06);
    border: 1px solid rgba(0, 229, 255, 0.1);
}
.aba-card-icon--pink {
    color: var(--pink);
    background: rgba(244, 114, 182, 0.06);
    border: 1px solid rgba(244, 114, 182, 0.1);
}
.aba-card-icon--green {
    color: var(--green);
    background: rgba(52, 211, 153, 0.06);
    border: 1px solid rgba(52, 211, 153, 0.1);
}
.aba-card-icon--orange {
    color: var(--orange);
    background: rgba(251, 146, 60, 0.06);
    border: 1px solid rgba(251, 146, 60, 0.1);
}
.aba-card-icon--gold {
    color: var(--gold);
    background: rgba(212, 166, 66, 0.06);
    border: 1px solid rgba(212, 166, 66, 0.1);
}

.aba-card-title {
    font-weight: 700; font-size: 0.9rem;
    margin-bottom: 6px;
}
.aba-card-desc {
    font-size: 0.78rem; color: var(--text-dim);
    line-height: 1.55;
}

/* Card thumbnails (extra screenshots inside cards) */
.aba-card--has-thumb {
    padding-bottom: 16px;
}
.aba-card-thumb-wrap {
    margin-top: 16px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: #0d0d14;
}
.aba-card-thumb {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.9;
    transition: opacity 0.3s;
}
.aba-card:hover .aba-card-thumb {
    opacity: 1;
}

/* ============================
   RESPONSIVE
   ============================ */
/* ============================
   5 ABAS QUICK NAV CARDS
   ============================ */
.section--abas-nav { padding-top: 40px; padding-bottom: 20px; }
.abas-nav-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}
.aba-nav-card {
    padding: 28px 18px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
}
.aba-nav-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
/* Icon container */
.aba-nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px; height: 52px;
    margin: 0 auto 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.aba-nav-name {
    font-weight: 700; font-size: 1rem;
    margin-bottom: 6px;
    transition: color 0.3s;
}
.aba-nav-desc {
    font-size: 0.78rem; color: var(--text-dim);
    line-height: 1.5;
}
/* Per-aba colors: icon + name + hover glow */
.aba-nav-card--cyan .aba-nav-icon { color: var(--cyan); background: rgba(0,229,255,0.05); border-color: rgba(0,229,255,0.1); }
.aba-nav-card--cyan:hover .aba-nav-icon { box-shadow: 0 0 20px rgba(0,229,255,0.15); }
.aba-nav-card--cyan:hover { border-color: rgba(0,229,255,0.18); }
.aba-nav-card--cyan .aba-nav-name { color: var(--cyan); }

.aba-nav-card--orange .aba-nav-icon { color: var(--orange); background: rgba(251,146,60,0.05); border-color: rgba(251,146,60,0.1); }
.aba-nav-card--orange:hover .aba-nav-icon { box-shadow: 0 0 20px rgba(251,146,60,0.15); }
.aba-nav-card--orange:hover { border-color: rgba(251,146,60,0.18); }
.aba-nav-card--orange .aba-nav-name { color: var(--orange); }

.aba-nav-card--purple .aba-nav-icon { color: var(--purple); background: rgba(167,139,250,0.05); border-color: rgba(167,139,250,0.1); }
.aba-nav-card--purple:hover .aba-nav-icon { box-shadow: 0 0 20px rgba(167,139,250,0.15); }
.aba-nav-card--purple:hover { border-color: rgba(167,139,250,0.18); }
.aba-nav-card--purple .aba-nav-name { color: var(--purple); }

.aba-nav-card--green .aba-nav-icon { color: var(--green); background: rgba(52,211,153,0.05); border-color: rgba(52,211,153,0.1); }
.aba-nav-card--green:hover .aba-nav-icon { box-shadow: 0 0 20px rgba(52,211,153,0.15); }
.aba-nav-card--green:hover { border-color: rgba(52,211,153,0.18); }
.aba-nav-card--green .aba-nav-name { color: var(--green); }

.aba-nav-card--pink .aba-nav-icon { color: var(--pink); background: rgba(244,114,182,0.05); border-color: rgba(244,114,182,0.1); }
.aba-nav-card--pink:hover .aba-nav-icon { box-shadow: 0 0 20px rgba(244,114,182,0.15); }
.aba-nav-card--pink:hover { border-color: rgba(244,114,182,0.18); }
.aba-nav-card--pink .aba-nav-name { color: var(--pink); }

.aba-nav-card--gold .aba-nav-icon { color: var(--gold); background: rgba(212,166,66,0.05); border-color: rgba(212,166,66,0.1); }
.aba-nav-card--gold:hover .aba-nav-icon { box-shadow: 0 0 20px rgba(212,166,66,0.15); }
.aba-nav-card--gold:hover { border-color: rgba(212,166,66,0.18); }
.aba-nav-card--gold .aba-nav-name { color: var(--gold); }

/* Section label color variants */
.section-label--cyan { color: var(--cyan); }
.section-label--orange { color: var(--orange); }
.section-label--green { color: var(--green); }
.section-label--pink { color: var(--pink); }

/* ============================
   TIMELINE — Um dia no Glyph
   ============================ */
.section--timeline { background: var(--bg-alt); }
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 0;
}
.timeline-line {
    position: absolute;
    left: 50%; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.06) 10%, rgba(255,255,255,0.06) 90%, transparent);
    transform: translateX(-50%);
}
.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
    width: 50%;
}
.timeline-item[data-side="left"] {
    padding-right: 40px;
    text-align: right;
    flex-direction: row-reverse;
    margin-left: 0;
}
.timeline-item[data-side="right"] {
    padding-left: 40px;
    margin-left: 50%;
}
.timeline-dot {
    position: absolute;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--dot-clr, var(--gold));
    box-shadow: 0 0 12px var(--dot-clr, var(--gold));
    top: 18px;
    z-index: 2;
}
.timeline-item[data-side="left"] .timeline-dot { right: -7px; }
.timeline-item[data-side="right"] .timeline-dot { left: -7px; }
.timeline-time {
    position: absolute;
    top: 16px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dim);
    white-space: nowrap;
}
.timeline-item[data-side="left"] .timeline-time { right: -72px; }
.timeline-item[data-side="right"] .timeline-time { left: -72px; }
.timeline-card {
    padding: 20px; flex: 1;
    text-align: left;
}
.timeline-emoji {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 8px;
}
.timeline-card h4 {
    font-weight: 700; font-size: 0.95rem;
    margin-bottom: 4px;
}
.timeline-card p {
    font-size: 0.85rem; color: var(--text-dim);
    line-height: 1.55;
}

/* ============================
   RANKS — Vagante → Soberano
   ============================ */
.rank-video-wrap {
    display: flex; justify-content: center;
    margin-bottom: 28px;
}
.rank-video {
    width: 100%; max-width: 340px;
    border-radius: 20px;
    border: 2px solid rgba(255,255,255,0.08);
    background: #0d0d14;
}
.rank-bar {
    max-width: 700px;
    margin: 0 auto;
}
.rank-track {
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 14px;
}
.rank-fill {
    height: 100%;
    width: 0%;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--gold), var(--purple));
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.rank-stops {
    display: flex;
    justify-content: space-between;
}
.rank-stop {
    display: flex; flex-direction: column;
    align-items: center; gap: 6px;
}
.rank-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.08);
    transition: all 0.4s;
}
.rank-stop--active .rank-dot {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 8px var(--glow-gold);
}
.rank-name {
    font-size: 0.62rem;
    color: var(--text-faint);
    letter-spacing: 0.01em;
    transition: color 0.4s;
    white-space: nowrap;
}
.rank-stop--active .rank-name { color: var(--gold); }

/* ============================
   CHEST — Baú Opening
   ============================ */
.section--chest { background: var(--bg-alt); }
.chest-player {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.08);
    background: #0d0d14;
    cursor: pointer;
}
.chest-video {
    width: 100%; display: block;
    border-radius: 18px;
}
.chest-play-btn {
    position: absolute;
    inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 10px;
    background: rgba(0,0,0,0.5);
    border: none;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    transition: background 0.3s;
}
.chest-play-btn:hover { background: rgba(0,0,0,0.35); }
.chest-play-btn.hidden { opacity: 0; pointer-events: none; }

/* ============================
   MUNDO — Visual Enhancement
   ============================ */
.mundo-visual {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}
.mundo-visual .phone-bezel {
    width: clamp(200px, 24vw, 260px);
}
.mundo-visual .phone-glow {
    position: absolute;
    width: 300%; height: 300%;
    top: -100%; left: -100%;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none; z-index: 0; opacity: 0.2;
}
.mundo-visual .phone-mockup {
    position: relative; z-index: 2;
}

/* ============================
   CODEX PREVIEW
   ============================ */
.codex-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.codex-card {
    padding: 24px 20px;
    position: relative;
    transition: border-color 0.3s, transform 0.3s;
}
.codex-card:hover {
    border-color: rgba(212,166,66,0.12);
    transform: translateY(-2px);
}
.codex-week {
    display: inline-block;
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 3px 10px; border-radius: 100px;
    margin-bottom: 12px;
    color: var(--text-dim);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
}
.codex-week--cyan { color: var(--cyan); background: rgba(0,229,255,0.06); border-color: rgba(0,229,255,0.12); }
.codex-week--gold { color: var(--gold); background: rgba(212,166,66,0.06); border-color: rgba(212,166,66,0.12); }
.codex-week--green { color: var(--green); background: rgba(52,211,153,0.06); border-color: rgba(52,211,153,0.12); }
.codex-title {
    font-weight: 700; font-size: 1rem;
    margin-bottom: 8px;
}
.codex-desc {
    font-size: 0.82rem; color: var(--text-dim);
    line-height: 1.55; margin-bottom: 14px;
}
.codex-status {
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.03em;
}
.codex-status--done { color: var(--green); }
.codex-status--progress { color: var(--gold); }
.codex-card--locked {
    opacity: 0.4;
    filter: blur(1px);
    pointer-events: none;
    position: relative;
}
.codex-lock {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    filter: blur(0px);
}

/* ============================
   GOLD SHIMMER
   ============================ */
@keyframes gold-shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
.gold-shimmer {
    background: linear-gradient(90deg, #b8862d, #e8c36a, #f5dfa0, #e8c36a, #b8862d);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gold-shimmer 4s ease-in-out infinite;
}
.section-title em {
    font-style: italic;
    background: linear-gradient(135deg, #c9952c, #e8c36a, #f0d674, #e8c36a, #c9952c);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gold-shimmer 5s ease-in-out infinite;
    text-shadow: none;
}
.text-gold {
    color: transparent;
    background: linear-gradient(90deg, #c9952c, #e8c36a, #c9952c);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gold-shimmer 4s ease-in-out infinite;
    font-weight: inherit;
}

/* ============================
   CALCULADORA — Nível Geral
   ============================ */
.section--calc { background: var(--bg-alt); }
.calc-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
    gap: 32px;
}
.calc-sliders {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 40px;
    width: 100%;
}
.calc-item {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.calc-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.calc-row label {
    width: 80px;
    font-size: 0.85rem;
    color: var(--text-dim);
    text-align: right;
    flex-shrink: 0;
}
.calc-range {
    -webkit-appearance: none;
    appearance: none;
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
}
.calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    box-shadow: 0 0 8px var(--glow-gold);
}
.calc-range::-moz-range-thumb {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    border: none;
    box-shadow: 0 0 8px var(--glow-gold);
}
.calc-val {
    width: 28px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    text-align: center;
}
.calc-phrase {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--gold);
    opacity: 0.85;
    padding-left: 0;
    margin: 2px 0 4px;
    min-height: 20px;
    transition: opacity 0.3s;
    text-shadow: 0 0 18px rgba(212, 166, 66, 0.15);
}
.calc-chart-wrap {
    position: relative;
    flex-shrink: 0;
}
#radar-chart {
    width: 320px; height: 320px;
}
.calc-score {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
}
.calc-avg {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1;
}
.calc-score-label {
    font-size: 0.72rem;
    color: var(--text-dim);
    letter-spacing: 0.05em;
}
.calc-bottom {
    text-align: center;
    margin-top: 36px;
    font-size: 1.1rem;
    color: var(--text-dim);
}
.calc-bottom strong {
    color: var(--gold);
    font-size: 1.3rem;
}

/* ============================
   TESTIMONIALS — Depoimentos
   ============================ */
.section--testimonials { background: var(--bg); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}
.testimonial-card {
    padding: 32px 28px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s, border-color 0.3s;
}
.testimonial-card:hover {
    transform: translateY(-4px);
}
.testimonial-card--cyan { border-color: rgba(0, 229, 255, 0.15); }
.testimonial-card--cyan:hover { border-color: rgba(0, 229, 255, 0.3); }
.testimonial-card--gold { border-color: rgba(212, 166, 66, 0.15); }
.testimonial-card--gold:hover { border-color: rgba(212, 166, 66, 0.3); }
.testimonial-card--green { border-color: rgba(52, 211, 153, 0.15); }
.testimonial-card--green:hover { border-color: rgba(52, 211, 153, 0.3); }
.testimonial-quote {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.25;
    position: absolute;
    top: 16px;
    left: 24px;
    pointer-events: none;
}
.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-dim);
    flex: 1;
    position: relative;
    z-index: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #0a0a0f;
    flex-shrink: 0;
}
.testimonial-avatar--cyan { background: var(--cyan); }
.testimonial-avatar--gold { background: var(--gold); }
.testimonial-avatar--green { background: var(--green); }
.testimonial-name {
    display: block;
    font-size: 0.9rem;
    color: var(--text);
}
.testimonial-streak {
    font-size: 0.78rem;
    color: var(--gold);
    opacity: 0.7;
}
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}

/* ============================
   COUNTDOWN — Temporada
   ============================ */
.season-video-wrap {
    display: flex; justify-content: center;
    margin-bottom: 40px;
}
.season-video {
    width: 100%; max-width: 340px;
    border-radius: 20px;
    border: 2px solid rgba(255,255,255,0.08);
    background: #0d0d14;
}
.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.countdown-block {
    text-align: center;
    padding: 16px 20px;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    min-width: 72px;
}
.countdown-num {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2rem;
    color: var(--gold);
    line-height: 1;
}
.countdown-block small {
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.countdown-sep {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--text-faint);
    padding-bottom: 12px;
}

/* ============================ */

@media (max-width: 900px) {
    .mode-grid, .mundo-grid, .aba-grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .codex-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 680px) {
    .calc-sliders {
        grid-template-columns: 1fr;
    }
    #radar-chart { width: 260px; height: 260px; }
}

@media (max-width: 768px) {
    .feature {
        flex-direction: column !important;
        text-align: center; gap: 32px;
    }
    .feature-text { order: 2; }
    .feature-visual { order: 1; }
    .feature-desc { max-width: 100%; margin: 0 auto; }
    .phone-bezel { width: 200px; }

    .mode-grid, .mundo-grid {
        grid-template-columns: 1fr;
    }
    .aba-grid, .aba-grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .codex-grid { grid-template-columns: 1fr; }
    .abas-nav-grid { grid-template-columns: repeat(2, 1fr); }
    .abas-nav-grid .aba-nav-card:last-child { grid-column: span 2; max-width: 50%; justify-self: center; }

    /* Timeline mobile: single column */
    .timeline-line { left: 16px; }
    .timeline-item,
    .timeline-item[data-side="left"],
    .timeline-item[data-side="right"] {
        width: 100%;
        margin-left: 0;
        padding-left: 44px;
        padding-right: 0;
        flex-direction: row;
        text-align: left;
    }
    .timeline-item[data-side="left"] .timeline-dot,
    .timeline-item[data-side="right"] .timeline-dot {
        left: 9px; right: auto;
    }
    .timeline-item[data-side="left"] .timeline-time,
    .timeline-item[data-side="right"] .timeline-time {
        position: static;
        font-size: 0.82rem;
        margin-bottom: 4px;
        display: block;
        color: var(--text-faint);
    }
    .timeline-card { text-align: left; }
    .timeline-time {
        position: static !important;
        font-size: 0.82rem;
    }

    /* Calc mobile */
    .calc-row label { width: 70px; font-size: 0.8rem; }
    #radar-chart { width: 240px; height: 240px; }

    /* Countdown mobile */
    .countdown { gap: 4px; flex-wrap: wrap; justify-content: center; }
    .countdown-block { min-width: 60px; padding: 12px 14px; }
    .countdown-num { font-size: 1.5rem; }

    /* Rank bar mobile */
    .rank-name { font-size: 0.6rem; }
    .rank-stops { gap: 2px; }

    .email-form { flex-direction: column; padding: 6px; }
    .name-input { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .name-input, .email-input { text-align: center; padding: 14px 16px; }
    .cta-btn { justify-content: center; width: 100%; }
    .form-message { position: static; margin-top: 8px; }

    .hero { padding: 80px 20px 50px; }
    .hero-logo { width: 56px; height: 56px; margin-bottom: 22px; }
    .nav { padding: 14px 16px; }
    .nav-right { gap: 14px; }
    .nav-link { font-size: 0.8rem; }
    .logo-img { width: 22px; height: 22px; }

    .impact-grid { gap: 10px; }
    .impact-block { flex: 1 1 130px; padding: 20px 12px; }

    .tab-link { padding: 12px 14px; font-size: 0.8rem; }
}

@media (max-width: 420px) {
    .hero-title { font-size: 2.2rem; }
    .phone-bezel { width: 170px; }
    .impact-block { flex: 1 1 45%; }
    .mode-card, .mundo-card { padding: 20px 16px; }
    .nav-right { gap: 8px; }
    .nav-link { font-size: 0.68rem; }
    .nav-login { font-size: 0.68rem; padding: 5px 10px; }
    .sub-nav {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0;
        padding: 4px 12px;
    }
    .sub-nav::-webkit-scrollbar { display: none; }
    .sub-nav .tab-link { padding: 5px 12px; font-size: 0.72rem; }
}
