/* ========================================
   Lifting Tempo — Landing Page Styles
   ======================================== */

:root {
    --ecc: #1aff1a;
    --bot: #ffcc00;
    --con: #ff4444;
    --top: #0099ff;
    --purple: #a855f7;
    --radius: 16px;
    --radius-sm: 10px;
    --max-width: 1120px;
    --section-space: 100px;

    /* Dark (default) */
    --bg: #0a0a0a;
    --bg-elevated: #0f0f11;
    --bg-card: #111113;
    --bg-card-hover: #18181b;
    --text: #f0f0f0;
    --text-muted: #888;
    --text-dim: #555;
    --border: #1e1e22;
    --nav-bg: rgba(10, 10, 10, .82);
    --mobile-menu-bg: rgba(10, 10, 10, .97);
    --btn-primary-bg: #fff;
    --btn-primary-text: #000;
    --icon-bg: rgba(255, 255, 255, .05);
    --ring-track: #222;
    --card-shadow: 0 1px 2px rgba(0, 0, 0, .3);
    --card-shadow-hover: 0 8px 32px rgba(0, 0, 0, .4);
}

[data-theme="light"] {
    --bg: #f5f5f7;
    --bg-elevated: #fff;
    --bg-card: #fff;
    --bg-card-hover: #f8f8fa;
    --text: #1a1a1a;
    --text-muted: #666;
    --text-dim: #aaa;
    --border: #e5e5ea;
    --nav-bg: rgba(245, 245, 247, .82);
    --mobile-menu-bg: rgba(245, 245, 247, .97);
    --btn-primary-bg: #1a1a1a;
    --btn-primary-text: #fff;
    --icon-bg: rgba(0, 0, 0, .04);
    --ring-track: #e0e0e0;
    --ecc: #0fa00f;
    --bot: #b8920a;
    --con: #cc2222;
    --top: #0070c0;
    --purple: #7c2fd4;
    --card-shadow: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
    --card-shadow-hover: 0 12px 40px rgba(0, 0, 0, .1);
}

/* ---- Reset ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background .3s, color .3s;
}

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

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Nav ---- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 14px 0;
    transition: background .3s, backdrop-filter .3s, box-shadow .3s;
}

.nav.scrolled {
    background: var(--nav-bg);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -.01em;
}

.logo-icon {
    font-size: 1.2rem;
}

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

.nav-links a {
    font-size: .875rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color .2s;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 4px;
    -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background: var(--mobile-menu-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
}

.mobile-menu a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color .2s;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu a:hover {
    color: var(--text);
}

.mobile-menu.open {
    display: flex;
}

/* ---- Theme Toggle ---- */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-muted);
    cursor: pointer;
    transition: color .2s, border-color .2s, background .2s;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
}

.theme-toggle:hover {
    color: var(--text);
    border-color: var(--text-muted);
}

.icon-moon {
    display: none;
}

[data-theme="light"] .icon-sun {
    display: none;
}

[data-theme="light"] .icon-moon {
    display: block;
}

.nav-right-mobile {
    display: none;
    align-items: center;
    gap: 12px;
}

#theme-toggle-mobile {
    display: none;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .9rem;
    transition: background .2s, color .2s, border-color .2s, box-shadow .2s, transform .2s;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.btn:hover {
    background: var(--bg-card-hover);
    border-color: var(--text-dim);
    transform: translateY(-1px);
    box-shadow: var(--card-shadow);
}

.btn-sm {
    padding: 8px 18px;
    font-size: .8rem;
}

.btn-nav-cta {
    border-color: var(--ecc);
    color: var(--text);
    background: var(--bg-card);
    font-weight: 700;
}

.nav-links .btn-nav-cta:hover,
.mobile-menu .btn-nav-cta:hover {
    background: var(--bg-card-hover);
    border-color: var(--ecc);
    color: var(--text);
    transform: translateY(-1px);
    box-shadow: var(--card-shadow-hover);
}

.btn-nav-cta:focus-visible {
    outline: 2px solid var(--ecc);
    outline-offset: 2px;
}

.btn-primary {
    background: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    border-color: var(--btn-primary-bg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}

.btn-primary:hover {
    background: var(--ecc);
    border-color: var(--ecc);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

/* ---- Hero ---- */
.hero {
    position: relative;
    padding: 160px 0 100px;
    text-align: center;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(26, 255, 26, .07) 0%, transparent 70%);
    pointer-events: none;
}

[data-theme="light"] .hero-glow {
    background: radial-gradient(ellipse, rgba(15, 160, 15, .08) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 7px 18px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    font-size: .78rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 32px;
    letter-spacing: .04em;
}

.hero h1 {
    font-size: clamp(2.6rem, 6.5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -.035em;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--ecc), var(--bot), var(--con));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    max-width: 520px;
    margin: 0 auto 40px;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.hero-actions {
    margin-bottom: 60px;
}

/* ---- Tempo Demo ---- */
.hero-tempo-demo {
    display: inline-flex;
    align-items: flex-start;
    gap: 6px;
}

.tempo-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.tempo-col .phase {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    font-size: 2rem;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
    box-shadow: var(--card-shadow);
}

.tempo-col .phase.ecc {
    color: var(--ecc);
}

.tempo-col .phase.bot {
    color: var(--bot);
}

.tempo-col .phase.con {
    color: var(--con);
}

.tempo-col .phase.top {
    color: var(--top);
}

.tempo-col .label {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
    white-space: nowrap;
}

.tempo-col .label.ecc {
    color: var(--ecc);
}

.tempo-col .label.bot {
    color: var(--bot);
}

.tempo-col .label.con {
    color: var(--con);
}

.tempo-col .label.top {
    color: var(--top);
}

.tempo-sep {
    color: var(--text-dim);
    font-weight: 300;
    font-size: 1.6rem;
    line-height: 60px;
}

/* ---- Section Headers ---- */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-size: clamp(1.7rem, 3.8vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -.025em;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 440px;
    margin: 0 auto;
}

/* ---- Shared Section Spacing ---- */
:is(.features, .how-it-works, .timer-styles, .privacy-section, .testimonials, .tempo-education, .faq-section) {
    padding: var(--section-space) 0;
}

/* ---- Shared Section Dividers ---- */
:is(.how-it-works, .timer-styles, .testimonials, .tempo-education, .faq-section, .cta, .footer) {
    border-top: 1px solid var(--border);
}

/* ---- Shared Card Shells ---- */
:is(.feature-card, .style-card, .testimonial-card, .faq-item) {
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: var(--card-shadow);
}

/* ---- Shared Interactive Transitions ---- */
:is(.style-card, .testimonial-card, .faq-item) {
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

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

.feature-card {
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: background .2s, border-color .2s, transform .2s, box-shadow .2s;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--text-dim);
    transform: translateY(-3px);
    box-shadow: var(--card-shadow-hover);
}

.feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: var(--icon-bg);
    margin-bottom: 18px;
}

.feature-icon svg {
    width: 22px;
    height: 22px;
}

/* Accent colors via CSS vars — theme-aware */
.accent-ecc {
    color: var(--ecc);
}

.accent-bot {
    color: var(--bot);
}

.accent-con {
    color: var(--con);
}

.accent-top {
    color: var(--top);
}

.accent-purple {
    color: var(--purple);
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -.01em;
}

.feature-card p {
    color: var(--text-muted);
    font-size: .875rem;
    line-height: 1.65;
}

/* ---- How It Works ---- */

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.step {
    flex: 1;
    max-width: 280px;
    text-align: center;
}

.step-num {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--ecc);
    color: var(--ecc);
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -.01em;
}

.step p {
    color: var(--text-muted);
    font-size: .875rem;
    line-height: 1.65;
}

.step-arrow {
    color: var(--text-dim);
    margin-top: 10px;
    flex-shrink: 0;
}

/* ---- Timer Styles ---- */

.styles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.style-card {
    text-align: center;
    border-radius: var(--radius);
    padding: 40px 24px 32px;
}

.style-card:hover,
.testimonial-card:hover {
    border-color: var(--text-dim);
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-2px);
}

/* Override hardcoded SVG track strokes */
.ring-svg circle:first-child,
.quad-svg circle {
    stroke: var(--ring-track);
}

.style-preview {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ring-svg,
.quad-svg {
    width: 100%;
    height: 100%;
}

.ring-progress {
    animation: ring-fill 3s ease-in-out infinite;
}

@keyframes ring-fill {

    0%,
    100% {
        stroke-dasharray: 60 327;
        stroke: var(--ecc);
    }

    33% {
        stroke-dasharray: 200 327;
        stroke: var(--bot);
    }

    66% {
        stroke-dasharray: 300 327;
        stroke: var(--con);
    }
}

.fill-bar {
    width: 60px;
    height: 100px;
    border-radius: 10px;
    background: var(--bg);
    border: 2px solid var(--border);
    overflow: hidden;
    position: relative;
}

.fill-level {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, var(--ecc), var(--bot));
    border-radius: 0 0 8px 8px;
    animation: fill-up 3s ease-in-out infinite;
}

@keyframes fill-up {

    0%,
    100% {
        height: 15%;
    }

    50% {
        height: 85%;
    }
}

.style-card h4 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.style-card p {
    color: var(--text-muted);
    font-size: .82rem;
}

/* ---- Privacy ---- */
.privacy-card {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 72px 48px;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}

.privacy-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, .05), rgba(0, 153, 255, .05));
    pointer-events: none;
}

.privacy-icon {
    color: var(--purple);
    margin-bottom: 24px;
    position: relative;
}

.privacy-card h2 {
    font-size: clamp(1.4rem, 3.2vw, 1.9rem);
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: 16px;
    position: relative;
}

.privacy-card p {
    max-width: 500px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
}

.privacy-link {
    display: inline-block;
    margin-top: 28px;
    color: var(--purple);
    font-weight: 600;
    font-size: .9rem;
    transition: opacity .2s;
    position: relative;
}

.privacy-link:hover {
    opacity: .7;
}

/* ---- Testimonials ---- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    border-radius: var(--radius);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
}

.stars {
    color: var(--bot);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-card p {
    color: var(--text);
    font-size: .95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-card .author {
    color: var(--text-muted);
    font-size: .85rem;
    font-weight: 600;
}

/* ---- Tempo Education ---- */

.education-content {
    max-width: 720px;
    margin: 0 auto;
}

.education-block {
    margin-bottom: 40px;
}

.education-block:last-child {
    margin-bottom: 0;
}

.education-block h3 {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -.01em;
    margin-bottom: 12px;
}

.education-block p {
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.75;
    margin-bottom: 12px;
}

.education-block p:last-child {
    margin-bottom: 0;
}

.education-block strong {
    color: var(--text);
    font-weight: 600;
}

.education-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
}

.education-list li {
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.75;
    padding-left: 24px;
    position: relative;
    margin-bottom: 6px;
}

.education-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ecc);
}

/* ---- FAQ ---- */

.faq-list {
    max-width: 680px;
    margin: 0 auto;
}

.faq-item {
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
}

.faq-item:hover {
    border-color: var(--text-dim);
}

.faq-item[open] {
    border-color: var(--text-dim);
    box-shadow: var(--card-shadow-hover);
}

.faq-item summary {
    cursor: pointer;
    padding: 18px 24px;
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: -.01em;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

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

.faq-item summary::marker {
    display: none;
    content: '';
}

.faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-dim);
    flex-shrink: 0;
    transition: transform .2s;
}

.faq-item[open] summary::after {
    content: '\2212';
    color: var(--ecc);
}

.faq-item p {
    padding: 0 24px 18px;
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.7;
}

.faq-item strong {
    color: var(--text);
    font-weight: 600;
}

/* ---- CTA ---- */
.cta {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(26, 255, 26, .04) 0%, transparent 70%);
    pointer-events: none;
}

[data-theme="light"] .cta::before {
    background: radial-gradient(ellipse, rgba(15, 160, 15, .06) 0%, transparent 70%);
}

.cta h2 {
    font-size: clamp(1.7rem, 3.8vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -.025em;
    margin-bottom: 14px;
    position: relative;
}

.cta p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 36px;
    position: relative;
}

/* ---- Footer ---- */
.footer {
    padding: 40px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: .9rem;
}

.footer-sep {
    color: var(--text-dim);
}

.footer-company {
    color: var(--text-muted);
    font-weight: 400;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: .82rem;
    color: var(--text-muted);
    transition: color .2s;
}

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

.footer-copy {
    font-size: .78rem;
    color: var(--text-dim);
}

/* ---- Animations (scroll fade-in) ---- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */

/* Tablet */
@media (max-width: 960px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small tablet / large phone */
@media (max-width: 768px) {
    :root {
        --section-space: 72px;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-right-mobile {
        display: flex;
    }

    #theme-toggle-mobile {
        display: flex;
    }

    .container {
        padding: 0 20px;
    }

    /* Hero */
    .hero {
        padding: 130px 0 72px;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

    .hero-sub {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .hero-actions {
        margin-bottom: 48px;
    }

    /* Tempo demo — slightly smaller */
    .tempo-col .phase {
        width: 52px;
        height: 52px;
        font-size: 1.7rem;
        border-radius: 12px;
    }

    .tempo-col .label {
        font-size: .58rem;
    }

    .tempo-sep {
        font-size: 1.3rem;
        line-height: 52px;
    }

    /* Features single column */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Steps vertical */
    .steps {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .step {
        max-width: 360px;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 0;
    }

    /* Timer styles — 3 columns still but compact */
    .styles-grid {
        gap: 12px;
    }

    .style-preview {
        width: 90px;
        height: 90px;
        margin-bottom: 16px;
    }

    .style-card {
        padding: 28px 16px 24px;
    }

    .style-card h4 {
        font-size: .88rem;
    }

    .style-card p {
        font-size: .78rem;
    }

    .privacy-card {
        padding: 48px 24px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-copy {
        text-align: center;
    }

    .cta {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }
}

/* Phone */
@media (max-width: 480px) {
    :root {
        --section-space: 56px;
    }

    .hero {
        padding: 120px 0 60px;
    }

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

    .hero-sub {
        font-size: .92rem;
        line-height: 1.65;
    }

    .hero-badge {
        font-size: .72rem;
        padding: 6px 14px;
    }

    .hero-actions {
        margin-bottom: 40px;
    }

    /* Tempo demo — scale down for narrow screens */
    .hero-tempo-demo {
        gap: 4px;
    }

    .tempo-col .phase {
        width: 44px;
        height: 44px;
        font-size: 1.4rem;
        border-radius: 10px;
    }

    .tempo-col .label {
        font-size: .52rem;
        letter-spacing: .05em;
    }

    .tempo-col {
        gap: 8px;
    }

    .tempo-sep {
        font-size: 1.1rem;
        line-height: 44px;
    }

    /* Timer styles go single column */
    .styles-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

    .style-preview {
        width: 100px;
        height: 100px;
    }

    .style-card {
        padding: 32px 20px 28px;
    }

    /* Testimonials single column */
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }

    /* FAQ */
    .faq-item summary {
        padding: 16px 18px;
        font-size: .9rem;
    }

    .faq-item p {
        padding: 0 18px 16px;
        font-size: .85rem;
    }

    /* Buttons */
    .btn-lg {
        padding: 14px 28px;
        font-size: .92rem;
    }

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

    /* Feature cards */
    .feature-card {
        padding: 24px 22px;
    }

    .cta {
        padding: 64px 0;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: .95rem;
    }
}

/* Very small phones */
@media (max-width: 360px) {
    .container {
        padding: 0 16px;
    }

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

    .hero-tempo-demo {
        gap: 3px;
    }

    .tempo-col .phase {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
        border-radius: 9px;
    }

    .tempo-col .label {
        font-size: .48rem;
    }

    .tempo-sep {
        font-size: .95rem;
        line-height: 38px;
    }

    .btn-lg {
        padding: 13px 22px;
        font-size: .85rem;
    }
}