:root {
    --accent: #e07a3f;
    --accent-strong: #c75f24;
    --accent-soft: #f6e3d6;
    --bg-canvas: #f6f0e6;
    --bg-subtle: #fbf8f2;
    --surface: #fffdf8;
    --surface-muted: #f8f2ea;
    --border: #e7dbcb;
    --border-strong: #d9c8b4;
    --text: #2f241b;
    --text-muted: #6f6257;
    --text-soft: #96887a;
    --shadow-sm: 0 10px 30px rgba(93, 66, 43, 0.06);
    --shadow-md: 0 18px 48px rgba(93, 66, 43, 0.1);
    --shadow-lg: 0 28px 72px rgba(93, 66, 43, 0.12);
    --success: #5c8f6a;
    --success-soft: #e7f1ea;
    --warning: #c4973e;
    --warning-soft: #f5ecd5;
    --danger: #8d6b52;
    --radius-sm: 14px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --max-width: 1180px;

    /* Compatibility vars for older inline references */
    --brand-purple: var(--accent);
    --brand-violet: var(--accent);
    --brand-light-purple: var(--accent-soft);
    --brand-orange: var(--accent);
    --brand-coral: var(--accent);
    --brand-cyan: var(--accent);
    --neon-pink: var(--accent);
    --neon-saffron: var(--accent);
    --bg-light: var(--bg-canvas);
    --bg-white: var(--surface);
    --card-bg: var(--surface);
    --card-border: var(--border);
    --text-dark: var(--text);
    --nav-width: 340px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.72), transparent 32%),
        linear-gradient(180deg, #fbf8f2 0%, #f6f0e6 52%, #f2eadf 100%);
    color: var(--text);
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body.scrollable {
    min-height: 100vh;
}

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

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

.site-shell {
    width: min(calc(100% - 2rem), var(--max-width));
    margin: 0 auto;
    padding: 1.25rem 0 2rem;
}

.top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    flex-shrink: 0;
}

.brand-mark svg {
    width: 100%;
    height: 100%;
}

.brand-stroke {
    stroke: var(--text);
}

.brand-fill-muted {
    fill: var(--text-soft);
}

.brand-fill-accent {
    fill: var(--accent-strong);
}

.brand-wordmark {
    display: inline-flex;
    align-items: baseline;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
}

.brand-wordmark-main {
    color: var(--text);
}

.brand-wordmark-sub {
    color: var(--text-soft);
    font-weight: 500;
}

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

.header-link,
.header-cta,
.nav-cta,
.neon-button,
.btn,
.watch-back,
.freebie-claim {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 46px;
    padding: 0.8rem 1.15rem;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn,
.neon-button,
.freebie-claim {
    border: none;
    cursor: pointer;
    font-weight: 700;
}

.header-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
}

.header-link-muted {
    color: var(--text-soft);
}

.header-cta,
.nav-cta,
.neon-button,
.btn-primary,
.freebie-claim {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #fffdf8;
    border: 1px solid transparent;
    box-shadow: 0 16px 32px rgba(199, 95, 36, 0.2);
    animation: ctaPulse 3s ease-in-out infinite;
}

.btn-secondary,
.watch-back,
.header-cta-secondary {
    background: var(--surface);
    border: 1px solid var(--border-strong);
    color: var(--text);
    box-shadow: var(--shadow-sm);
}

.header-cta:hover,
.nav-cta:hover,
.neon-button:hover,
.btn:hover,
.watch-back:hover,
.freebie-claim:hover,
.header-link:hover {
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--border-strong);
    border-radius: 14px;
    background: var(--surface);
    cursor: pointer;
}

.hamburger span {
    width: 16px;
    height: 2px;
    border-radius: 99px;
    background: var(--text);
    display: block;
    margin: 2px 0;
}

.nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(var(--nav-width), 100vw);
    height: 100vh;
    padding: 1.4rem;
    background: rgba(255, 253, 248, 0.98);
    border-left: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    overflow-y: auto;
    transition: right 0.28s ease;
}

.nav-overlay.open {
    right: 0;
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(47, 36, 27, 0.18);
    display: none;
    z-index: 999;
}

.nav-backdrop.show {
    display: block;
}

.nav-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.nav-logo {
    width: fit-content;
}

.nav-caption {
    color: var(--text-soft);
    font-size: 0.85rem;
    margin-top: 0.35rem;
    max-width: 18rem;
}

.nav-close {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
    color: var(--text);
    font-size: 1.4rem;
    cursor: pointer;
}

.nav-links {
    list-style: none;
    display: grid;
    gap: 0.3rem;
    margin-bottom: 1.25rem;
}

.nav-section-title {
    margin-top: 1rem;
    padding: 0.8rem 0.6rem 0.25rem;
    color: var(--text-soft);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-links a {
    display: block;
    padding: 0.8rem 0.9rem;
    border-radius: 14px;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
    background: var(--surface-muted);
}

.main-frame {
    background: rgba(255, 253, 248, 0.88);
    border: 1px solid rgba(231, 219, 203, 0.8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(8px);
}

.main-frame.home {
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
}

.content-layer {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    padding: 2rem;
}

.headline,
.watch-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
    color: var(--text);
}

.subheadline {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 48rem;
}

.hero-accent,
.text-accent {
    color: var(--accent-strong);
}

.section-kicker,
.eyebrow,
.platform-badge,
.news-tag,
.shop-tag,
.tier-name,
.mini-kicker,
.dashboard-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: fit-content;
    padding: 0.42rem 0.8rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.72);
    color: var(--text-muted);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.badge-free {
    background: var(--success-soft);
    border-color: rgba(92, 143, 106, 0.2);
    color: var(--success);
}

.badge-paid {
    background: var(--warning-soft);
    border-color: rgba(196, 151, 62, 0.2);
    color: var(--warning);
}

p,
li,
label,
summary {
    color: inherit;
}

.page-content {
    display: grid;
    gap: 1rem;
    color: var(--text-muted);
}

.page-content h2 {
    margin-top: 1rem;
    font-family: 'Sora', sans-serif;
    color: var(--text);
    font-size: 1.35rem;
}

.page-content a,
.form-link {
    color: var(--accent-strong);
    text-decoration: none;
    font-weight: 700;
}

.page-content a:hover,
.form-link:hover {
    text-decoration: underline;
}

.input-group,
.contact-form {
    display: grid;
    gap: 1rem;
    width: 100%;
}

.form-group {
    display: grid;
    gap: 0.45rem;
}

.form-label,
.tier-label {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 700;
}

.form-hint,
.auth-info,
.boost-hint,
.watch-hint,
.footer-meta,
.footer-copy,
.form-note {
    color: var(--text-soft);
    font-size: 0.88rem;
}

.neon-input,
select.neon-input,
textarea.neon-input {
    width: 100%;
    min-height: 52px;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    border: 1px solid var(--border-strong);
    background: #fff;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea.neon-input {
    min-height: 140px;
    resize: vertical;
}

.neon-input::placeholder {
    color: #b1a497;
}

.neon-input:focus,
select.neon-input:focus,
textarea.neon-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(224, 122, 63, 0.12);
}

.alert {
    padding: 0.95rem 1rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--surface-muted);
    color: var(--text-muted);
}

.alert-success {
    background: var(--success-soft);
    border-color: rgba(92, 143, 106, 0.2);
    color: var(--success);
}

.alert-error {
    background: #f7efe6;
    border-color: #e8d7c2;
    color: var(--danger);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.service-card,
.blog-card,
.news-card,
.tool-card,
.game-card,
.shop-card,
.freebie-card,
.stat-card,
.metric-card,
.process-card,
.commitment-card,
.dashboard-panel,
.contact-card,
.order-row,
.scarcity-panel,
.unity-panel,
.progress-card,
.trust-stat,
.feature-card,
.micro-card {
    background: rgba(255, 253, 248, 0.94);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.service-card,
.tool-card,
.game-card,
.freebie-card,
.stat-card,
.commitment-card,
.progress-card,
.feature-card,
.micro-card {
    padding: 1.25rem;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    min-height: 172px;
    justify-content: space-between;
    text-decoration: none;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255,255,255,0.55), transparent 45%);
    pointer-events: none;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, var(--card-accent, var(--accent)), rgba(255,255,255,0));
    opacity: 0.9;
}

.service-card:hover,
.blog-card:hover,
.news-card:hover,
.tool-card:hover,
.game-card:hover,
.shop-card:hover,
.freebie-card:hover,
.commitment-card:hover,
.feature-card:hover,
.micro-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 40px;
    height: 40px;
    fill: var(--card-accent, var(--accent-strong));
}

.service-name {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.home-grid .service-card {
    min-height: 186px;
}

.blog-card,
.news-card,
.shop-card {
    display: grid;
    gap: 0.55rem;
    padding: 1.3rem;
    text-decoration: none;
}

.blog-card h3,
.news-card h4,
.tool-card h4,
.game-card h4,
.shop-card h4,
.freebie-card h4,
.process-card h3,
.feature-card h3,
.commitment-card h3,
.progress-card h3,
.contact-card h3,
.dashboard-panel h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    color: var(--text);
}

.blog-card p,
.news-card p,
.tool-card p,
.game-card p,
.shop-card p,
.freebie-card p,
.boost-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.blog-meta,
.support-label,
.recent-orders-title {
    color: var(--text-soft);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.news-card {
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 1rem;
}

.news-icon,
.tool-icon,
.game-icon,
.freebie-icon {
    font-size: 2rem;
}

.tool-card,
.game-card,
.freebie-card {
    display: grid;
    justify-items: start;
    gap: 0.6rem;
    text-align: left;
}

.game-reward,
.shop-price,
.watch-stat-value,
.stat-value,
.bs-value,
.metric-value,
.progress-value {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    color: var(--accent-strong);
}

.shop-price,
.stat-value,
.metric-value,
.progress-value,
.watch-stat-value,
.bs-value,
.tier-qty {
    font-size: 1.7rem;
    letter-spacing: -0.04em;
}

.shop-old-price,
.stat-label,
.metric-label,
.progress-label,
.watch-stat-label,
.bs-label,
.tier-time,
.shop-card p,
.game-card p,
.freebie-card p {
    color: var(--text-soft);
    font-size: 0.82rem;
}

.shop-old-price {
    text-decoration: line-through;
}

.home-hero {
    display: grid;
    gap: 1.5rem;
}

.hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.9fr);
    gap: 1.4rem;
    align-items: stretch;
}

.hero-copy,
.hero-proof,
.section-panel,
.final-cta {
    background: rgba(255, 253, 248, 0.92);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.7rem;
    box-shadow: var(--shadow-md);
}

.hero-copy {
    display: grid;
    gap: 1rem;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255, 250, 244, 0.95)),
        linear-gradient(135deg, rgba(246, 227, 214, 0.32), transparent 60%);
}

.hero-copy .headline {
    max-width: 13ch;
}

.hero-actions,
.inline-actions,
.action-row,
.quick-actions,
.support-actions,
.option-row,
.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-proof {
    display: grid;
    gap: 1rem;
    align-content: start;
    background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(247, 242, 234, 0.96));
}

.proof-strip,
.metrics-grid,
.process-grid,
.commitment-grid,
.progress-grid,
.dashboard-grid,
.contact-grid {
    display: grid;
    gap: 1rem;
}

.proof-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-stat,
.metric-card,
.process-card,
.commitment-card,
.progress-card,
.contact-card {
    padding: 1.2rem;
}

.trust-stat strong,
.metric-card strong,
.mini-stat strong {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 1.4rem;
    letter-spacing: -0.04em;
    color: var(--text);
}

.trust-stat span,
.metric-card span,
.mini-stat span,
.process-card p,
.commitment-card p,
.progress-card p,
.contact-card p {
    color: var(--text-soft);
    font-size: 0.85rem;
}

.hero-note,
.trust-note,
.micro-note,
.capacity-note {
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: var(--surface-muted);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.92rem;
}

.section-block {
    display: grid;
    gap: 1.1rem;
    margin-top: 0.25rem;
}

.section-heading {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.section-heading h2,
.final-cta h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.55rem, 3vw, 2.4rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.section-heading p,
.final-cta p,
.scarcity-panel p,
.unity-panel p {
    color: var(--text-muted);
}

.commitment-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.commitment-card {
    text-decoration: none;
    display: grid;
    gap: 0.7rem;
}

.commitment-step,
.process-index,
.progress-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-strong);
    font-size: 0.82rem;
    font-weight: 800;
}

.process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-card {
    display: grid;
    gap: 0.4rem;
}

.metrics-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.scarcity-panel {
    padding: 1.4rem;
    display: grid;
    gap: 1rem;
    background: linear-gradient(180deg, rgba(255,253,248,0.96), rgba(245, 239, 230, 0.92));
}

.scarcity-grid,
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.mini-stat {
    padding: 1rem;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.74);
}

.mini-stat.discovery {
    background: var(--success-soft);
    border-color: rgba(92, 143, 106, 0.18);
}

.mini-stat.discovery strong,
.mini-stat.discovery span {
    color: var(--success);
}

.faq-list,
.support-faq {
    display: grid;
    gap: 0.85rem;
}

.faq-item,
.support-faq details {
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(255, 253, 248, 0.94);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-item summary,
.support-faq summary {
    list-style: none;
    cursor: pointer;
    padding: 1rem 1.1rem;
    font-weight: 700;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

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

.faq-item p,
.support-faq p {
    padding: 0 1.1rem 1.05rem;
    color: var(--text-muted);
}

.progress-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.progress-card {
    display: grid;
    gap: 0.8rem;
}

.unity-panel,
.final-cta {
    padding: 1.6rem;
}

.final-cta {
    display: grid;
    gap: 1rem;
    text-align: left;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.88), rgba(246, 238, 227, 0.98)),
        linear-gradient(135deg, rgba(246, 227, 214, 0.3), transparent 60%);
}

.boost-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.boost-feature {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 18px;
    background: var(--surface-muted);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 600;
}

.bf-icon {
    font-size: 1.1rem;
}

.boost-form,
.order-form,
.auth-panel {
    background: rgba(255, 253, 248, 0.94);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.4rem;
    box-shadow: var(--shadow-sm);
}

.tier-selector {
    display: grid;
    gap: 0.85rem;
}

.tier-options,
.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
}

.tier-option,
.payment-option {
    position: relative;
    cursor: pointer;
}

.tier-option input[type="radio"],
.payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.tier-card,
.payment-card {
    height: 100%;
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.tier-option.selected .tier-card,
.payment-option input:checked + .payment-card {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(224, 122, 63, 0.12);
    transform: translateY(-1px);
}

.payment-card strong {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
}

.payment-card span {
    color: var(--text-soft);
    font-size: 0.84rem;
}

.auth-layout,
.order-layout,
.dashboard-layout,
.support-layout,
.contact-layout {
    display: grid;
    gap: 1.25rem;
}

.auth-layout,
.order-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.8fr);
    align-items: start;
}

.auth-copy,
.order-copy,
.dashboard-hero,
.support-hero,
.contact-hero {
    display: grid;
    gap: 0.9rem;
}

.dashboard-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dashboard-panel {
    padding: 1.25rem;
    display: grid;
    gap: 0.85rem;
}

.dashboard-hero {
    padding: 1.35rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(247, 242, 234, 0.96));
    box-shadow: var(--shadow-sm);
}

.order-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.1rem;
}

.order-row-main {
    display: grid;
    gap: 0.2rem;
}

.order-row-main strong {
    color: var(--text);
}

.order-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.38rem 0.7rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
}

.order-status.completed {
    background: var(--success-soft);
    color: var(--success);
}

.order-status.processing {
    background: var(--warning-soft);
    color: var(--warning);
}

.contact-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.8fr);
}

.contact-card {
    display: grid;
    gap: 0.6rem;
}

.contact-card a {
    color: var(--accent-strong);
    text-decoration: none;
    font-weight: 700;
}

.support-actions .btn,
.quick-actions .btn {
    flex: 1 1 180px;
}

.site-footer {
    margin-top: 1.6rem;
    padding: 1.35rem 0 0.4rem;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(217, 200, 180, 0.7);
}

.footer-copy {
    max-width: 42rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;
}

.watch-page {
    min-height: calc(100vh - 130px);
    display: grid;
    place-items: center;
}

.watch-card {
    width: min(100%, 560px);
    padding: 1.8rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: rgba(255, 253, 248, 0.96);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.watch-header-icon,
.boost-popup-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.7rem;
    fill: var(--accent-strong);
}

.watch-link {
    color: var(--text-soft);
    font-size: 0.84rem;
    margin-top: 0.6rem;
    word-break: break-all;
}

.watch-timer-ring,
.boost-timer-ring {
    position: relative;
    width: 144px;
    height: 144px;
    margin: 1.4rem auto;
}

.watch-timer-ring svg,
.boost-timer-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.ring-bg {
    fill: none;
    stroke: rgba(224, 122, 63, 0.14);
    stroke-width: 8;
}

.ring-progress {
    fill: none;
    stroke: var(--accent);
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.4s ease;
}

.watch-timer-text,
.timer-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--text);
}

.watch-stats,
.boost-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.2rem;
}

.watch-stat,
.boost-stat {
    display: grid;
    gap: 0.25rem;
    justify-items: center;
}

.watch-status,
.boost-status {
    min-height: 52px;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: var(--surface-muted);
    border: 1px solid var(--border);
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.watch-ad-container,
.boost-ad-container {
    min-height: 104px;
    margin-bottom: 1rem;
    padding: 0.8rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: #fff;
}

.watch-hint {
    margin-bottom: 1rem;
}

@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 0 16px 32px rgba(199, 95, 36, 0.2);
    }
    50% {
        box-shadow: 0 16px 38px rgba(199, 95, 36, 0.28);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}

@media (max-width: 1024px) {
    .hero-shell,
    .auth-layout,
    .order-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .commitment-grid,
    .process-grid,
    .progress-grid,
    .scarcity-grid,
    .info-grid,
    .boost-features,
    .dashboard-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .header-link,
    .header-cta {
        display: none;
    }

    .hamburger {
        display: inline-flex;
    }
}

@media (min-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .home-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .site-shell {
        width: min(calc(100% - 1rem), var(--max-width));
        padding-top: 0.75rem;
    }

    .top-header {
        margin-bottom: 1rem;
    }

    .content-layer,
    .watch-card,
    .hero-copy,
    .hero-proof,
    .section-panel,
    .final-cta,
    .boost-form,
    .auth-panel,
    .order-form,
    .dashboard-panel,
    .dashboard-hero {
        padding: 1.25rem;
    }

    .headline,
    .watch-title {
        font-size: clamp(1.8rem, 9vw, 2.6rem);
    }

    .services-grid,
    .proof-strip,
    .metrics-grid,
    .commitment-grid,
    .process-grid,
    .progress-grid,
    .scarcity-grid,
    .info-grid,
    .boost-features,
    .tier-options,
    .payment-options,
    .dashboard-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .watch-stats,
    .boost-stats,
    .footer-row,
    .order-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-actions {
        gap: 0.5rem;
    }

    .brand-wordmark {
        font-size: 1.25rem;
    }

    .brand-mark {
        width: 2.4rem;
        height: 2.4rem;
    }
}
