:root {
    --bg: #08080a;
    --bg-2: #0E0E14;
    --bg-3: #14141C;
    --ink: #E8EAF0;
    --muted: #9CA3B4;
    --accent: #4A90E2;
    --accent-2: #A78BFA;
    --accent-3: #60A5FA;
    --green: #10B981;
    --border: #1A1E2E;
}
html, body {
    background: var(--bg);
    color: var(--ink);
    font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,-apple-system, BlinkMacSystemFont, sans-serif;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.magic-text {
    background: linear-gradient(135deg, #60A5FA, #A78BFA, #4A90E2);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header */
.ts-site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(8, 8, 10, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.ts-header-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 0; gap: 2rem;
}
.ts-brand img { height: 28px; }
.ts-nav { display: flex; gap: 1.5rem; align-items: center; font-size: 0.9rem; }
.ts-nav a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.ts-nav a:hover, .ts-nav a.active { color: var(--ink); }
.ts-nav .cta {
    padding: 0.55rem 1.1rem; border-radius: 8px;
    background: linear-gradient(135deg, #60A5FA, #A78BFA);
    color: var(--bg); font-weight: 600; border: none;
}
.ts-nav .cta:hover { color: var(--bg); transform: translateY(-1px); }
@media (max-width: 768px) {
    .ts-nav { gap: 0.85rem; font-size: 0.82rem; }
    .ts-nav .nav-secondary { display: none; }
    .ts-nav .cta { padding: 0.45rem 0.85rem; font-size: 0.8rem; }
    .ts-header-inner { gap: 1rem; }
}
@media (max-width: 420px) {
    .ts-nav { gap: 0.6rem; font-size: 0.78rem; }
    .ts-brand img { height: 22px; }
}

/* Hero */
.lift-hero {
    text-align: center; padding: 5rem 0 3.5rem; position: relative;
    background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(167,139,250,0.12), transparent 70%);
}
.lift-hero .kicker {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px; border-radius: 999px;
    background: rgba(167,139,250,0.1); border: 1px solid rgba(167,139,250,0.25);
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em;
    text-transform: uppercase; color: #A78BFA; margin-bottom: 1.5rem;
}
.lift-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    font-weight: 700; line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}
.lift-hero .lede {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    color: var(--muted); max-width: 720px; margin: 0 auto 2.25rem;
    line-height: 1.65;
}
.lift-hero .lede strong { color: var(--ink); font-weight: 600; }
.cta-row { display: flex; gap: 0.85rem; justify-content: center; flex-wrap: wrap; }
.btn-primary { box-sizing: border-box;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 0.75rem 1.6rem; border-radius: 10px; font-weight: 600;
    font-size: 0.95rem; text-decoration: none;
    background: linear-gradient(135deg, #60A5FA, #A78BFA); color: #08080a;
    transition: all 0.25s; border: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(167,139,250,0.3); }
.btn-glass { box-sizing: border-box;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 0.75rem 1.6rem; border-radius: 10px; font-weight: 600;
    font-size: 0.95rem; text-decoration: none;
    background: rgba(255,255,255,0.05); color: var(--ink);
    border: 1px solid rgba(255,255,255,0.12); transition: all 0.25s;
}
.btn-glass:hover { border-color: rgba(167,139,250,0.4); background: rgba(167,139,250,0.08); }

/* Sections */
section { padding: 4rem 0; }
h2.section-h {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 700;
    line-height: 1.15; letter-spacing: -0.01em; margin-bottom: 1rem;
    text-align: center;
}
.section-lede {
    text-align: center; color: var(--muted);
    max-width: 680px; margin: 0 auto 2.75rem;
    font-size: 1.05rem; line-height: 1.65;
}

/* Problem */
.problem-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem; margin-top: 2rem;
}
.problem-item {
    padding: 1.5rem; border-radius: 12px;
    background: rgba(20, 20, 28, 0.5); border: 1px solid var(--border);
}
.problem-item h3 { font-size: 1rem; color: var(--ink); margin-bottom: 0.5rem; font-weight: 600; }
.problem-item p { font-size: 0.9rem; color: var(--muted); line-height: 1.55; margin: 0; }

/* Window mockup (visual) */
.window-shell {
    max-width: 920px; margin: 0 auto;
    border-radius: 16px; overflow: hidden;
    background: #0c0c12; border: 1px solid rgba(167,139,250,0.18);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 60px rgba(167,139,250,0.08);
}
.window-titlebar {
    padding: 0.85rem 1.25rem; background: rgba(20, 20, 28, 0.7);
    border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px;
}
.window-titlebar .dot { width: 11px; height: 11px; border-radius: 50%; }
.window-titlebar .dot.r { background: #ef4444; }
.window-titlebar .dot.y { background: #f59e0b; }
.window-titlebar .dot.g { background: #10b981; }
.window-titlebar .url {
    flex: 1; text-align: center; font-size: 0.78rem; color: var(--muted);
    font-family: 'SFMono-Regular',Menlo,Monaco,Consolas,'Liberation Mono','Courier New',monospace;
}
.window-body { padding: 1.5rem 1.75rem; }
.window-row {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem; margin-bottom: 1rem;
}
.stat-tile {
    padding: 1rem 1.25rem; border-radius: 10px;
    background: rgba(20, 20, 28, 0.6); border: 1px solid var(--border);
}
.stat-tile .label { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.stat-tile .value { font-size: 1.5rem; font-weight: 700; color: var(--ink); margin-top: 0.25rem; }
.stat-tile .delta { font-size: 0.78rem; color: var(--green); }

/* Capability grid */
.cap-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem; margin-top: 2rem;
}
.cap-card {
    padding: 1.75rem; border-radius: 14px;
    background: rgba(20, 20, 28, 0.5); border: 1px solid var(--border);
    transition: all 0.25s;
}
.cap-card:hover { border-color: rgba(167,139,250,0.3); transform: translateY(-2px); }
.cap-card .icon {
    width: 38px; height: 38px; border-radius: 10px;
    background: linear-gradient(135deg, rgba(96,165,250,0.15), rgba(167,139,250,0.15));
    border: 1px solid rgba(167,139,250,0.2);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem; color: #A78BFA; font-size: 1.2rem;
}
.cap-card h3 { font-size: 1.1rem; font-weight: 600; color: var(--ink); margin-bottom: 0.6rem; }
.cap-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* Eligibility (Codex P1) */
.elig-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem;
}
@media (max-width: 720px) { .elig-grid { grid-template-columns: 1fr; } }
.elig-card {
    padding: 1.75rem 2rem; border-radius: 14px;
}
.elig-card.yes {
    background: linear-gradient(135deg, rgba(16,185,129,0.08), rgba(16,185,129,0.02));
    border: 1px solid rgba(16,185,129,0.2);
}
.elig-card.no {
    background: linear-gradient(135deg, rgba(239,68,68,0.06), rgba(239,68,68,0.02));
    border: 1px solid rgba(239,68,68,0.18);
}
.elig-card h3 {
    font-size: 0.95rem; font-weight: 600; letter-spacing: 0.05em;
    text-transform: uppercase; margin-bottom: 1rem;
}
.elig-card.yes h3 { color: #10B981; }
.elig-card.no h3 { color: #F87171; }
.elig-card ul { list-style: none; padding: 0; margin: 0; }
.elig-card ul li {
    font-size: 0.92rem; color: var(--ink); line-height: 1.55;
    padding: 0.5rem 0 0.5rem 1.5rem; position: relative;
}
.elig-card.yes li::before {
    content: '✓'; position: absolute; left: 0; color: #10B981; font-weight: 700;
}
.elig-card.no li::before {
    content: '→'; position: absolute; left: 0; color: #F87171; font-weight: 700;
}
.elig-card li small { display: block; color: var(--muted); font-size: 0.82rem; margin-top: 0.15rem; }

/* First week */
.week-timeline {
    max-width: 760px; margin: 2rem auto 0;
    position: relative; padding-left: 2rem;
}
.week-timeline::before {
    content: ''; position: absolute; left: 12px; top: 8px; bottom: 8px;
    width: 2px; background: linear-gradient(to bottom, #60A5FA, #A78BFA, transparent);
}
.week-step {
    position: relative; padding: 0.75rem 0 1.5rem 1.25rem;
}
.week-step::before {
    content: ''; position: absolute; left: -1.75rem; top: 1.1rem;
    width: 14px; height: 14px; border-radius: 50%;
    background: #A78BFA; border: 3px solid var(--bg);
    box-shadow: 0 0 0 2px rgba(167,139,250,0.3);
}
.week-step .day {
    font-size: 0.72rem; color: #A78BFA; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
}
.week-step h4 {
    font-size: 1.1rem; color: var(--ink); margin: 0.3rem 0;
    font-weight: 600;
}
.week-step p {
    font-size: 0.92rem; color: var(--muted); line-height: 1.6; margin: 0;
}

/* Pricing */
.pricing-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
    max-width: 880px; margin: 2rem auto 0;
}
@media (max-width: 720px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
    padding: 2rem; border-radius: 16px;
    background: rgba(20, 20, 28, 0.55); border: 1px solid var(--border);
    position: relative;
}
.price-card.featured {
    border-color: rgba(167,139,250,0.4);
    background: linear-gradient(135deg, rgba(167,139,250,0.08), rgba(96,165,250,0.04));
}
.price-card .tier-name {
    font-size: 0.85rem; color: #A78BFA; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem;
}
.price-card .price {
    font-size: 2.5rem; font-weight: 700; line-height: 1;
    color: var(--ink); margin-bottom: 0.25rem;
}
.price-card .price small { font-size: 0.95rem; color: var(--muted); font-weight: 400; }
.price-card .price-note { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.5rem; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.price-card ul li {
    font-size: 0.92rem; color: var(--ink); line-height: 1.55;
    padding: 0.45rem 0 0.45rem 1.5rem; position: relative;
}
.price-card ul li::before {
    content: '✓'; position: absolute; left: 0; color: #A78BFA; font-weight: 700;
}
.price-card .annual-note {
    font-size: 0.78rem; color: var(--green); margin-top: 0.85rem;
}

/* Trust */
.trust-banner {
    padding: 2rem 2.5rem; border-radius: 16px;
    background: rgba(20, 20, 28, 0.6); border: 1px solid var(--border);
    text-align: center; max-width: 920px; margin: 0 auto;
}
.trust-banner h3 { font-size: 1.25rem; color: var(--ink); margin-bottom: 0.85rem; font-weight: 600; }
.trust-banner p { color: var(--muted); max-width: 640px; margin: 0 auto 1.25rem; line-height: 1.65; }
.trust-pills { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; margin-top: 1rem; }
.trust-pill {
    padding: 0.4rem 1rem; border-radius: 999px; font-size: 0.78rem;
    background: rgba(167,139,250,0.08); border: 1px solid rgba(167,139,250,0.2);
    color: #A78BFA; font-weight: 500;
}

/* Upgrade path */
.upgrade-card {
    padding: 2.5rem; border-radius: 18px;
    background: linear-gradient(135deg, rgba(96,165,250,0.06), rgba(167,139,250,0.04));
    border: 1px solid rgba(167,139,250,0.18); max-width: 920px; margin: 0 auto;
}
.upgrade-card h3 { font-size: 1.4rem; color: var(--ink); margin-bottom: 0.85rem; font-weight: 600; }
.upgrade-card p { color: var(--muted); margin-bottom: 1.25rem; line-height: 1.65; }
.upgrade-triggers {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem 1.5rem;
    font-size: 0.9rem; color: var(--ink);
    padding: 1rem 0 1.25rem; border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 1.25rem;
}
@media (max-width: 720px) { .upgrade-triggers { grid-template-columns: 1fr; } }
.upgrade-triggers div { padding-left: 1.25rem; position: relative; }
.upgrade-triggers div::before {
    content: '↗'; position: absolute; left: 0; color: #A78BFA;
}

/* Final CTA */
.final-cta {
    padding: 3.5rem 2.5rem; text-align: center; border-radius: 20px;
    background: linear-gradient(135deg, rgba(167,139,250,0.12), rgba(96,165,250,0.06));
    border: 1px solid rgba(167,139,250,0.25); max-width: 920px; margin: 0 auto;
}
.final-cta h2 { font-size: clamp(1.6rem, 3.2vw, 2.2rem); margin-bottom: 0.85rem; font-weight: 700; }
.final-cta p { color: var(--muted); max-width: 540px; margin: 0 auto 1.75rem; }

/* Footer */
.ts-footer {
    padding: 3.5rem 0 2rem; border-top: 1px solid var(--border); margin-top: 4rem;
    font-size: 0.9rem;
}
.ts-footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem;
    margin-bottom: 2rem;
}
@media (max-width: 768px) { .ts-footer-grid { grid-template-columns: 1fr 1fr; } }
.ts-footer-grid h4 { font-size: 0.85rem; color: var(--ink); font-weight: 600; margin-bottom: 0.85rem; }
.ts-footer-grid ul { list-style: none; padding: 0; margin: 0; }
.ts-footer-grid ul li { padding: 0.3rem 0; }
.ts-footer-grid ul a { color: var(--muted); text-decoration: none; font-size: 0.88rem; }
.ts-footer-grid ul a:hover { color: var(--ink); }
.ts-footer-bottom {
    padding-top: 1.5rem; border-top: 1px solid var(--border);
    text-align: center; font-size: 0.82rem; color: var(--muted);
}
.ts-footer-bottom a { color: var(--muted); text-decoration: none; }
.ts-footer-bottom a:hover { color: var(--ink); }

/* Codex R8: utility classes — replacing inline style="" attrs (CSP-blocked) */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
.section-tight-top { padding-top: 2rem; }
.stat-tile-full { grid-column: 1 / -1; }
.delta.is-muted { color: var(--muted); }
.activity-list { font-size: 0.85rem; color: var(--muted); margin-top: 0.5rem; line-height: 1.7; }
.link-accent { color: #A78BFA; text-decoration: none; }
.link-accent:hover { color: #C4B5FD; text-decoration: underline; }
.btn-block { width: 100%; justify-content: center; }
.no-mb { margin-bottom: 0; }
.footer-logo { height: 24px; margin-bottom: 0.85rem; }
.footer-tag { color: var(--muted); font-size: 0.85rem; line-height: 1.55; margin: 0; }

/* Private-preview pricing block */
.preview-card {
    max-width: 760px; margin: 0 auto;
    padding: 2.75rem 2.5rem; border-radius: 18px;
    background: linear-gradient(135deg, rgba(167,139,250,0.07), rgba(96,165,250,0.04));
    border: 1px solid rgba(167,139,250,0.25);
    text-align: center; position: relative;
}
.preview-pill {
    display: inline-block; margin-bottom: 1.25rem;
    padding: 6px 14px; border-radius: 999px;
    background: rgba(167,139,250,0.12); border: 1px solid rgba(167,139,250,0.3);
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em;
    text-transform: uppercase; color: #A78BFA;
}
.preview-card .section-h { margin-bottom: 0.85rem; }
.preview-card .section-lede { max-width: 620px; margin: 0 auto 1.75rem; line-height: 1.65; }
.preview-points {
    list-style: none; padding: 0; margin: 0 auto 1.75rem;
    text-align: left; max-width: 580px;
}
.preview-points li {
    padding: 0.55rem 0 0.55rem 1.5rem; position: relative;
    color: var(--muted); font-size: 0.92rem; line-height: 1.6;
}
.preview-points li::before {
    content: '→'; position: absolute; left: 0; color: #A78BFA; font-weight: 700;
}
.preview-points li strong { color: var(--ink); font-weight: 600; }
.preview-card .cta-row { justify-content: center; }