:root {
    --bg-color: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --gold: #c7a16b;
    --gold-hover: #d8b785;
    --border-color: rgba(255, 255, 255, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --page-padding: 10%;
    --section-gap: 7rem;
}

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

body {
    background: radial-gradient(circle at 15% 0%, rgba(199, 161, 107, 0.1), transparent 45%), var(--bg-color);
    color: var(--text-primary);
    font-family: Geist, Inter, -apple-system, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.mission-text,
.mission-statement {
    font-family: Instrument Serif, serif;
    font-weight: 500;
    text-wrap: balance;
}

strong {
    color: var(--text-primary);
    font-weight: 500;
}


.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    background: rgba(10, 10, 10, 0.86);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-app-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.logo-text {
    font-family: Instrument Serif, serif;
    font-size: 1.5rem;
    letter-spacing: 0.4px;
}

/* Hamburger button — hidden on desktop */
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-direction: column;
    gap: 5px;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
    display: flex;
    gap: 1.6rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

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

.nav-links .nav-cta {
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.25s ease;
}

.nav-links .nav-cta:hover {
    background: var(--gold);
    color: var(--bg-color);
}

main {
    position: relative;
    z-index: 1;
}

.microcopy {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 2.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.section-badge {
    display: inline-block;
    border: 1px solid var(--border-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    background: var(--glass-bg);
}

.center-badge {
    margin: 0 auto 2rem;
    display: block;
    width: max-content;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.12;
    margin-bottom: 1rem;
    text-align: center;
}

.section-title.align-left {
    text-align: left;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.btn-primary {
    display: inline-block;
    background-color: var(--gold);
    color: var(--bg-color);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--gold);
    color: var(--gold);
}

.mac-window {
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    width: 100%;
}

.mac-window.dark {
    background: rgba(20, 20, 20, 0.9);
}

.window-header {
    height: 48px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    padding: 0 1rem;
    position: relative;
}

.mac-dots {
    display: flex;
    gap: 8px;
    position: absolute;
    left: 1rem;
}

.mac-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #444;
}

.window-title {
    width: 100%;
    text-align: center;
    color: #888;
    font-size: 0.85rem;
    font-weight: 500;
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(20, 20, 20, 0.8);
    border: 1px dashed rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    margin: 0;
}

.video-placeholder h3 {
    margin-top: 0.9rem;
    font-size: 1.25rem;
    font-family: Geist, Inter, sans-serif;
    font-weight: 500;
}

.video-placeholder p {
    color: var(--text-secondary);
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.video-placeholder ul {
    text-align: left;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #aaa;
    padding-left: 1rem;
}

.vp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 66px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    font-size: 0.67rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.hero-size {
    height: 400px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border: none;
}

.small-video {
    height: 160px;
}

.medium-video {
    height: 280px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border: none;
}

.tall-video {
    height: 450px;
    border: none;
}

.flex-center {
    height: 120px;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(255, 255, 255, 0.16);
    background: transparent;
    padding: 0;
}

.gold-border {
    border-color: rgba(199, 161, 107, 0.4);
    background: rgba(199, 161, 107, 0.05);
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 9rem var(--page-padding) 0;
    position: relative;
    gap: 4rem;
}

.video-section {
    padding: 0 var(--page-padding) var(--section-gap);
    display: flex;
    justify-content: center;
}

.video-section-inner {
    width: 100%;
    max-width: 900px;
}

.hero-content {
    max-width: 820px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.4rem;
    color: var(--text-primary);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.4rem;
}

.hero-visual {
    width: 100%;
    max-width: 900px;
    z-index: 2;
}

/* ── Hero video wrapper (clips vignette + overlay to rounded corners) */
.hero-video-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 32px 96px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.hero-promo {
    width: 100%;
    display: block;
}

/* ── Play overlay */
.hero-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.hero-play-vignette {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, transparent 25%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.hero-play-overlay:hover .hero-play-vignette {
    opacity: 1.0;
}

.hero-play-btn {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    border: 1.5px solid var(--gold);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    position: relative;
    z-index: 2;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s ease,
                background 0.25s ease;
}

.hero-play-icon {
    width: 22px;
    height: 22px;
    margin-left: 3px; /* optical center for triangle */
}

.hero-play-overlay:hover .hero-play-btn {
    transform: scale(1.1);
    background: rgba(0, 0, 0, 0.7);
    box-shadow:
        0 0 0 8px rgba(199, 161, 107, 0.14),
        0 0 32px rgba(199, 161, 107, 0.28);
}

.hero-play-label {
    margin-top: 0.9rem;
    font-size: 0.65rem;
    letter-spacing: 2.8px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    transition: color 0.25s ease, letter-spacing 0.3s ease;
}

.hero-play-overlay:hover .hero-play-label {
    color: var(--gold-hover);
    letter-spacing: 3.2px;
}

/* ── Promo video lightbox */
.promo-lightbox[hidden] {
    display: none;
}

.promo-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(4, 4, 4, 0.95);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.promo-lightbox.active {
    opacity: 1;
}

.promo-lightbox-inner {
    position: relative;
    width: 100%;
    max-width: 960px;
    transform: scale(0.94);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.promo-lightbox.active .promo-lightbox-inner {
    transform: scale(1);
}

.promo-lightbox-video {
    width: 100%;
    display: block;
    border-radius: 10px;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8);
}

.promo-close {
    position: absolute;
    top: -2.8rem;
    right: 0;
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0.4rem;
    line-height: 1;
    transition: color 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-close:hover {
    color: var(--gold-hover);
    transform: rotate(90deg);
}

.deep-dive {
    padding: var(--section-gap) var(--page-padding);
    border-top: 1px solid var(--border-color);
}

.feature-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 2.5rem auto 0;
}

.mac-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.6rem;
    height: 100%;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.icon-box {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    color: var(--text-secondary);
}

.icon-box.gold {
    background: rgba(199, 161, 107, 0.1);
    border-color: rgba(199, 161, 107, 0.3);
    color: var(--gold-hover);
}

.card-header h3 {
    font-size: 1.5rem;
    line-height: 1.25;
}

.mode-type-label {
    font-size: 0.68rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.2rem;
    font-family: Geist, Inter, sans-serif;
    font-weight: 500;
}

.mode-type-label--muted {
    color: var(--text-secondary);
}

.desc {
    color: var(--text-secondary);
    font-size: 1.03rem;
    line-height: 1.6;
}

.schedule-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.schedule-text,
.schedule-visual {
    flex: 1;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-list li {
    position: relative;
    padding-left: 24px;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 600;
}

.interception {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: var(--section-gap) var(--page-padding);
    border-top: 1px solid var(--border-color);
    position: relative;
    gap: 4rem;
}

.interception-content,
.interception-demo {
    flex: 1;
}

.interception-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.interception-content p {
    font-size: 1.08rem;
    color: var(--text-secondary);
    margin-bottom: 1.8rem;
}

.features-inline {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    flex-wrap: wrap;
}

.features-inline .dot {
    color: var(--gold);
}

.interception-demo {
    height: 450px;
    position: relative;
}

.demo-screen {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    background: #000;
}

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

.features-grid {
    padding: var(--section-gap) var(--page-padding);
}

.grid-container {
    display: grid;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-container.three-col {
    grid-template-columns: repeat(6, 1fr);
    max-width: 1300px;
}

.grid-container.three-col .feature-card {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
}

.grid-container.three-col .feature-card:nth-child(4),
.grid-container.three-col .feature-card:nth-child(5) {
    grid-column: span 3;
}

/* Heading reserves 2-line height so body text aligns across all cards */
.grid-container.three-col .card-content h3 {
    min-height: calc(2 * 1.2 * 1.9rem);
}

/* card-content fills card height; card-visual is pushed to the bottom */
.grid-container.three-col .card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.grid-container.three-col .card-visual {
    margin-top: auto;
}

.feature-card {
    border-top: 1px solid var(--border-color);
    padding: 2rem 0 0;
    transition: border-color 0.28s ease;
}

.feature-card:hover {
    border-color: rgba(199, 161, 107, 0.45);
}

.feature-card:hover .card-visual {
    border-color: rgba(255, 255, 255, 0.14);
}

.card-content h3 {
    font-size: 1.9rem;
    margin-bottom: 0.75rem;
}

.card-content p {
    color: var(--text-secondary);
    margin-bottom: 1.4rem;
    max-width: 55ch;
}

.grid-container.three-col .card-content p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-visual {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

/* ── Demo Videos ─────────────────────────────── */

.demo-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.demo-video.hero-size {
    height: 400px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.demo-video.small-video {
    height: 160px;
}

.demo-video.medium-video {
    height: 280px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.demo-video.tall-video {
    height: 450px;
    border-radius: 0;
}

.card-visual-video {
    border-radius: 0;
}

/* ── Feature card inline mocks ─────────────────── */

.limits-mock {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding: 16px 20px;
}

.limits-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.limits-icon {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    flex-shrink: 0;
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
}

.limits-icon--yt   { background: #FF0000; }
.limits-icon--x    { background: #0f1419; }
.limits-icon--reddit { background: #FF4500; }

.limits-bar-wrap {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
}

.limits-bar {
    height: 100%;
    background: var(--gold);
    opacity: 0.65;
    border-radius: 2px;
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.limits-mock.limits-animated .limits-bar {
    transform: scaleX(1);
}

.limits-mock.limits-animated .limits-row:nth-child(2) .limits-bar {
    transition-delay: 0.12s;
}

.limits-mock.limits-animated .limits-row:nth-child(3) .limits-bar {
    transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
    .limits-bar { transform: scaleX(1); }
}

.limits-bar--warn {
    background: #e8945a;
    opacity: 0.85;
}

.limits-bar--full {
    background: #c96060;
    opacity: 1;
}

.limits-time {
    font-size: 0.7rem;
    color: var(--text-secondary);
    min-width: 52px;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.limits-time--warn {
    color: #e8945a;
}

.limits-time--blocked {
    color: #c96060;
    font-weight: 500;
}

.pomo-mock {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 8px;
    padding: 16px 20px;
}

.pomo-timer {
    font-family: Instrument Serif, serif;
    font-size: 2rem;
    line-height: 1;
    color: var(--gold);
    letter-spacing: 1px;
}

.pomo-track {
    display: flex;
    align-items: center;
    gap: 4px;
}

.pomo-seg {
    width: 36px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
}

.pomo-seg--done {
    background: rgba(199, 161, 107, 0.35);
}

.pomo-seg--active {
    background: var(--gold);
}

.pomo-sep {
    width: 14px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.06);
}

.pomo-sep--done {
    background: rgba(199, 161, 107, 0.2);
}

.pomo-meta {
    font-size: 0.68rem;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
}


.coming-soon-badge {
    display: inline-block;
    border: 1px solid var(--border-color);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    background: var(--glass-bg);
}

.testimonials,
.faq-section,
.pricing-section {
    padding: var(--section-gap) var(--page-padding);
}

.testimonials-inner,
.faq-inner,
.pricing-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.testimonials-inner .section-title {
    margin-bottom: 2.5rem;
}

.marquee {
    overflow: hidden;
    padding: 1.5rem 0;
}

.marquee-track {
    display: flex;
    gap: 1.2rem;
    width: max-content;
    animation: testimonial-scroll 55s linear infinite;
    padding: 0 1.2rem;
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

.testimonial {
    min-width: 360px;
    max-width: 360px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.025);
    padding: 1.8rem 1.6rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, background 0.3s ease,
        transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial:hover {
    border-color: rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}

/* Decorative watermark quote mark — visible on close inspection */
.testimonial::before {
    content: '\201C';
    position: absolute;
    top: -0.75rem;
    right: 1.1rem;
    font-family: Instrument Serif, serif;
    font-size: 7rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.07;
    pointer-events: none;
    user-select: none;
    transition: opacity 0.3s ease;
}

.testimonial:hover::before {
    opacity: 0.11;
}

/* Subtle top-edge highlight on hover */
.testimonial::after {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(199, 161, 107, 0.35), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.testimonial:hover::after {
    opacity: 1;
}

.testimonial p {
    font-family: Instrument Serif, serif;
    font-style: italic;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.08rem;
    line-height: 1.65;
    flex: 1;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.11);
    color: var(--text-secondary);
    font-size: 0.64rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.testimonial-author span {
    display: block;
    color: var(--text-secondary);
    font-size: 0.78rem;
    margin-top: 0.1rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.faq-item {
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    background: rgba(26, 26, 26, 0.5);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    color: var(--text-primary);
    font-family: Geist, Inter, -apple-system, sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 1rem 1.2rem;
    min-height: 44px;
    cursor: pointer;
}

.faq-question::after {
    content: '+';
    float: right;
    color: var(--gold);
    font-weight: 600;
}

.faq-item.open .faq-question::after {
    content: '−';
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
    color: var(--text-secondary);
    min-height: 0;
    overflow: hidden;
    padding: 0 1.2rem;
}

.faq-item.open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
    padding-bottom: 1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.4rem;
}

.pricing-card {
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    background: rgba(26, 26, 26, 0.7);
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
}

.pricing-card h3 {
    font-size: 1.7rem;
    margin-bottom: 0.2rem;
}

.pricing-card .price {
    font-size: 2.3rem;
    line-height: 1.05;
    margin-bottom: 0.5rem;
}

.pricing-card .price span {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-card .label {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 1.2rem;
}

.btn-pricing {
    display: inline-block;
    margin-top: auto;
    padding: 0.55rem 1.1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-secondary);
    background: transparent;
    transition: border-color 0.2s, color 0.2s;
}

.btn-pricing:hover {
    border-color: var(--gold);
    color: var(--gold-hover);
}

.btn-pricing--primary {
    border-color: rgba(199, 161, 107, 0.5);
    color: var(--gold-hover);
    background: rgba(199, 161, 107, 0.07);
}

.btn-pricing--primary:hover {
    background: rgba(199, 161, 107, 0.14);
}

.pricing-card.popular {
    border-color: rgba(199, 161, 107, 0.45);
    box-shadow: 0 0 0 1px rgba(199, 161, 107, 0.2) inset;
}

.plans-include {
    margin-top: 1.4rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--section-gap) var(--page-padding);
    border-top: 1px solid var(--border-color);
}

.footer-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.final-content h2 {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

.final-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.6rem;
}

/* ── Platforms section ──────────────────────── */

.platforms-section {
    padding: 7rem var(--page-padding) 10rem;
    background: radial-gradient(ellipse at 60% 50%, rgba(199, 161, 107, 0.07) 0%, transparent 70%),
                linear-gradient(180deg, transparent 0%, rgba(199, 161, 107, 0.04) 40%, rgba(199, 161, 107, 0.06) 100%);
    border-top: 1px solid rgba(199, 161, 107, 0.15);
}

.platforms-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
}

.platforms-text {
    padding-left: 0;
}

.platforms-image-link {
    display: block;
}

.platforms-image {
    width: 100%;
    border-radius: 16px;
    display: block;
    transition: opacity 0.2s ease;
}

.platforms-image-link:hover .platforms-image {
    opacity: 0.88;
}

.platforms-heading {
    font-size: 2.6rem;
    margin-bottom: 0.75rem;
}

.platforms-body {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 52ch;
}

/* ── Site Footer ──────────────────────────── */

.site-footer {
    border-top: 1px solid var(--border-color);
    padding: 2rem var(--page-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-legal {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-legal a {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.footer-legal a:hover {
    opacity: 1;
}

.bestself-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
}

.bestself-made {
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 0.2px;
}

.bestself-logo {
    height: 18px;
    width: auto;
    opacity: 0.75;
    transition: opacity 0.2s ease;
}

.bestself-link:hover .bestself-logo {
    opacity: 1;
}

.bestself-wordmark {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.bestself-link:hover .bestself-wordmark {
    color: var(--gold-hover);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 0.78rem;
    color: var(--text-secondary);
    text-decoration: none;
    letter-spacing: 0.2px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.reveal-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.94) translateY(16px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1) translateY(0);
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtle-glow {
    0%,
    100% {
        box-shadow: 0 0 20px rgba(199, 161, 107, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(199, 161, 107, 0.4);
    }
}

@keyframes testimonial-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fade-in-up 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}

.fade-in.visible {
    opacity: 1;
}

.delay-1 {
    animation-delay: 0.15s;
    transition-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
    transition-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.45s;
    transition-delay: 0.45s;
}

.delay-4 {
    animation-delay: 0.6s;
    transition-delay: 0.6s;
}

@media (max-width: 1024px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .feature-split,
    .schedule-container,
    .interception {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .grid-container.three-col,
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }

    .grid-container.three-col .feature-card,
    .grid-container.three-col .feature-card:nth-child(4),
    .grid-container.three-col .feature-card:nth-child(5) {
        grid-column: span 1;
    }

}

@media (max-width: 768px) {
    .nav-hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 1.2rem;
        padding: 1rem 0 0.5rem;
    }

    .nav-links.open {
        display: flex;
    }

    .navbar {
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .hero {
        padding: 6rem 1.2rem 2.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .video-section {
        padding: 0 1.2rem 4rem;
    }

    .hero-video-wrap {
        border-radius: 8px;
    }

    .hero-play-btn {
        width: 60px;
        height: 60px;
    }

    .hero-play-icon {
        width: 18px;
        height: 18px;
    }

    .promo-lightbox {
        padding: 1rem;
    }

    .promo-close {
        top: -2.4rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .deep-dive,
    .features-grid,
    .testimonials,
    .faq-section,
    .pricing-section {
        padding: 4.5rem 1.2rem;
    }

    .grid-container.three-col,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .interception-content h2,
    .final-content h2 {
        font-size: 2.3rem;
    }

    .testimonial {
        min-width: 300px;
        max-width: 300px;
    }
}

/* ── Screen-reader only utility ─────────────── */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

/* ── Reduced motion ──────────────────────────── */

@media (prefers-reduced-motion: reduce) {
    .reveal-up,
    .reveal-scale {
        transition: opacity 0.3s ease;
        transform: none;
    }

    .fade-in-up {
        animation-duration: 0.3s;
    }

    .marquee-track {
        animation-play-state: paused;
    }

    .typewriter-cursor {
        animation: none;
        opacity: 1;
    }
}

/* ── Download Install Modal ─────────────────── */

body.modal-open {
    overflow: hidden;
}

.download-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.download-overlay[hidden] {
    display: none;
}

.download-overlay.active {
    opacity: 1;
    visibility: visible;
}

.download-modal {
    position: relative;
    max-width: 1120px;
    width: min(96vw, 1120px);
    background: #111111;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 36px 72px -22px rgba(0, 0, 0, 0.6);
    padding: 2.5rem 3rem 2.25rem;
    text-align: center;
    transform: scale(0.92) translateY(12px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.download-overlay.active .download-modal {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.download-close {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.12);
    border: 0;
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease;
}

.download-close:hover {
    background: rgba(0, 0, 0, 0.24);
    color: #fff;
}

.download-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.download-heading {
    font-family: Instrument Serif, serif;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.download-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.download-step-placeholder {
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.25s ease;
}

.download-step:hover .download-step-placeholder {
    border-color: rgba(199, 161, 107, 0.45);
}

.download-step-number {
    font-family: Instrument Serif, serif;
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.6;
}

.download-step-caption {
    margin-top: 0.65rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.download-step-caption strong {
    color: var(--text-primary);
    font-weight: 500;
}

.download-retry {
    display: inline-block;
    color: var(--text-secondary);
    font-size: 0.82rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.download-retry:hover {
    color: var(--gold);
}

.download-step-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Hero Worldview Badge ────────────────────── */
.worldview-badge {
    text-transform: none;
    letter-spacing: 0.3px;
    font-size: 0.82rem;
    color: var(--gold);
    border-color: rgba(199, 161, 107, 0.3);
    background: rgba(199, 161, 107, 0.06);
    margin-bottom: 1.4rem;
}

/* ── Hero Social Proof Stat ─────────────────── */
.hero-social-proof {
    margin-top: 2rem;
}

.hero-stat {
    display: inline-flex;
    align-items: baseline;
    gap: 0.6rem;
    padding: 0.75rem 1.4rem;
    border: 1px solid rgba(199, 161, 107, 0.25);
    border-radius: 10px;
    background: rgba(199, 161, 107, 0.06);
}

.hero-stat-number {
    font-family: Instrument Serif, serif;
    font-size: 1.6rem;
    color: var(--gold-hover);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.82rem;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

/* ── Platform Badges (cross-platform card) ───── */
.platform-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.platform-badge {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 4px;
}

.platform-badge--live {
    background: rgba(199, 161, 107, 0.12);
    border: 1px solid rgba(199, 161, 107, 0.35);
    color: var(--gold-hover);
}

.platform-badge--soon {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
}

/* ── Comparison Table ────────────────────────── */
.comparison-section {
    padding: var(--section-gap) var(--page-padding);
}

.comparison-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.comparison-table-wrap {
    margin-top: 3rem;
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.comparison-table thead tr {
    border-bottom: 1px solid var(--glass-border);
}

.comparison-table th {
    padding: 1rem 1.2rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

.comparison-table th.col-helm {
    color: var(--gold-hover);
    background: rgba(199, 161, 107, 0.05);
}

.col-price {
    display: block;
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-top: 0.15rem;
    letter-spacing: 0;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--glass-border);
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table td {
    padding: 0.85rem 1.2rem;
    color: var(--text-secondary);
    vertical-align: middle;
}

.comparison-table td:first-child {
    color: var(--text-primary);
    font-weight: 500;
}

.comparison-table td.col-helm {
    background: rgba(199, 161, 107, 0.04);
}

.ct-yes {
    color: var(--gold-hover);
    font-weight: 600;
}

.ct-no {
    color: rgba(255, 255, 255, 0.25);
}

.ct-partial {
    color: var(--text-secondary);
    font-size: 0.82rem;
}

/* ── Hero Testimonial ────────────────────────── */
.hero-testimonial {
    margin-top: 2rem;
    padding: 1rem 1.4rem;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    max-width: 420px;
    text-align: left;
}

.hero-testimonial p {
    color: #ddd;
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0 0 0.5rem;
}

.hero-testimonial cite {
    color: var(--gold-hover);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-style: normal;
}

/* ── Worldview Section ───────────────────────── */
.worldview-section {
    padding: var(--section-gap) var(--page-padding);
}

.worldview-inner {
    max-width: 860px;
    margin: 0 auto;
}

.worldview-body {
    color: var(--text-secondary);
    font-size: 1.08rem;
    line-height: 1.75;
}

.worldview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.worldview-stat-wrap {
    display: flex;
    flex-direction: column;
}

.worldview-stat-wrap .worldview-stat {
    flex: 1;
}

.worldview-stat-wrap .stat-cite {
    margin-top: 0.6rem;
    padding: 0 0.2rem;
}

.worldview-stat {
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.6rem;
    background: var(--glass-bg);
    transition: border-color 0.28s ease;
}

.worldview-stat:hover {
    border-color: rgba(199, 161, 107, 0.35);
}

.worldview-stat .stat-number {
    font-family: Instrument Serif, serif;
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.6rem;
}

.worldview-stat .stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.worldview-callout {
    padding: 1.25rem 0;
    border-top: 1px solid rgba(199, 161, 107, 0.3);
    border-bottom: 1px solid rgba(199, 161, 107, 0.3);
    font-family: Instrument Serif, serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.65;
}

.stat-cite {
    display: block;
    font-size: 0.68rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    font-style: normal;
    letter-spacing: 0.02em;
}

.stat-cite-link {
    color: #606060;
    text-decoration: none;
}

.stat-cite-link:hover {
    color: #888;
}

/* ── How It Works Section ────────────────────── */
.how-it-works {
    padding: var(--section-gap) var(--page-padding);
}

.hiw-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.hiw-toggle {
    display: flex;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    width: max-content;
    margin: 2.5rem auto 4rem;
    overflow: hidden;
    background: var(--glass-bg);
}

.hiw-tab {
    padding: 0.65rem 2rem;
    min-height: 44px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: transparent;
    border: 0;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hiw-tab:focus-visible {
    outline: 2px solid rgba(199, 161, 107, 0.7);
    outline-offset: -2px;
    border-radius: 6px;
}

.hiw-tab.active {
    background: rgba(199, 161, 107, 0.12);
    color: var(--gold);
}

.hiw-panel {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.hiw-hidden {
    display: none;
}

.hiw-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.step-number {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--gold);
    opacity: 0.8;
    margin-bottom: 0.6rem;
    font-family: Geist, Inter, sans-serif;
    font-weight: 500;
}

.hiw-step-text h3 {
    font-size: 1.9rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.hiw-step-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.hiw-step-mock {
    background: rgba(26, 26, 26, 0.7);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.hiw-step-mock--center {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mock-list-label {
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
    opacity: 0.7;
}

.mock-list-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
}

.mock-icon {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.72rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.mock-icon--gold {
    background: rgba(199, 161, 107, 0.12);
    color: var(--gold);
}

.mock-icon img {
    width: 18px;
    height: 18px;
    border-radius: 3px;
    display: block;
}

.mock-list-item > span:not(.mock-tag) {
    font-size: 0.88rem;
    color: var(--text-primary);
    flex: 1;
}

.mock-tag {
    font-size: 0.7rem;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    padding: 2px 6px;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
}

.mock-toggle {
    width: 28px;
    height: 16px;
    border-radius: 8px;
    flex-shrink: 0;
}

.mock-toggle--off {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--glass-border);
}

.mock-toggle--on {
    background: rgba(199, 161, 107, 0.35);
    border: 1px solid rgba(199, 161, 107, 0.5);
}

/* Mission card mock */
.mission-card-mock {
    background: rgba(199, 161, 107, 0.05);
    border: 1px solid rgba(199, 161, 107, 0.22);
    border-radius: 10px;
    padding: 1.25rem;
}

.mission-card-label {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    opacity: 0.85;
}

.mission-card-text {
    font-family: Instrument Serif, serif;
    font-size: 1.35rem;
    color: var(--text-primary);
    line-height: 1.4;
    min-height: 1.9rem;
    margin: 0;
}

.typewriter-cursor {
    display: inline-block;
    width: 1.5px;
    height: 1em;
    background: var(--gold);
    vertical-align: middle;
    margin-left: 1px;
    animation: cursor-blink 0.9s step-end infinite;
}

@keyframes cursor-blink {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}

/* Timer mock */
.mock-duration {
    font-family: Instrument Serif, serif;
    font-size: 3.2rem;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.mock-duration-label {
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.mock-start-pill {
    display: inline-block;
    background: var(--gold);
    color: var(--bg-color);
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.8px;
}

/* Blocked / mission reminder mock */
.mock-blocked-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.9rem;
    color: var(--text-secondary);
}

.mock-blocked-icon-wrap--gold {
    border-color: rgba(199, 161, 107, 0.4);
    color: var(--gold);
}

.mock-blocked-title {
    font-family: Instrument Serif, serif;
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}

.mock-blocked-url {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 24ch;
    text-align: center;
}

@media (max-width: 1024px) {
    .hiw-step {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .worldview-stats {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .worldview-section,
    .how-it-works {
        padding: 4.5rem 1.2rem;
    }

    .worldview-stats {
        grid-template-columns: 1fr;
    }

    .hiw-toggle {
        width: 100%;
    }

    .hiw-tab {
        flex: 1;
        padding: 0.65rem 1rem;
    }
}

/* ── Site Footer ──────────────────────────── */

@media (max-width: 768px) {
    .site-footer {
        padding: 1.5rem 1.2rem;
    }

    .site-footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* ── Download Install Modal ─────────────────── */

@media (max-width: 768px) {
    .download-modal {
        padding: 2rem 1.5rem 1.5rem;
    }

    .download-heading {
        font-size: 1.6rem;
    }

    .download-steps {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .download-step-placeholder {
        aspect-ratio: 16 / 9;
    }
}

/* ── Focus stat section ─────────────────────────────────── */
.focus-stat-section {
    padding: var(--section-gap) var(--page-padding);
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.focus-stat-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.focus-stat-number {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(5rem, 12vw, 9rem);
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -0.01em;
}

.focus-stat-label {
    font-size: 0.95rem;
    color: var(--text-tertiary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
