/* ============================================
   FINISH MY SHOW — Savings Calculator
   save.finishmyshow.com
   ============================================ */

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #1a1a26;
    --bg-card-hover: #222233;
    --bg-accent: #FF6B35;
    --bg-accent-hover: #ff8555;
    --bg-accent-glow: rgba(255, 107, 53, 0.15);
    --bg-savings: #0d2b1a;

    --text-primary: #f0f0f5;
    --text-secondary: #a0a0b8;
    --text-muted: #6a6a80;
    --text-accent: #FF6B35;
    --text-savings: #4ade80;

    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-card: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(255, 107, 53, 0.3);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'Space Mono', 'SF Mono', monospace;

    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(255, 107, 53, 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: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo { height: 28px; }

.btn-header {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-accent);
    text-decoration: none;
    padding: 8px 20px;
    border: 1px solid var(--border-accent);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.btn-header:hover {
    background: var(--bg-accent);
    color: #fff;
    border-color: var(--bg-accent);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(255, 107, 53, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-accent);
    background: var(--bg-accent-glow);
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid var(--border-accent);
    margin-bottom: 28px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    max-width: 720px;
    margin: 0 auto 24px;
}

.hero h1 em {
    font-style: italic;
    color: var(--text-accent);
}

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

.hero-sub strong {
    color: var(--text-primary);
}

/* BUTTONS */
.btn-primary {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: var(--bg-accent);
    padding: 14px 36px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.25);
}

.btn-primary:hover {
    background: var(--bg-accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(255, 107, 53, 0.35);
}

.btn-secondary {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: var(--bg-accent);
    padding: 12px 28px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--bg-accent-hover);
}

.btn-full {
    display: block;
    text-align: center;
    margin-top: 20px;
}

.btn-ghost {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: transparent;
    border: 1px solid var(--border-card);
    padding: 10px 24px;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    color: var(--text-primary);
    border-color: var(--text-secondary);
}

/* ============================================
   PAIN POINTS
   ============================================ */
.pain-section {
    padding: 0 0 80px;
}

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

.pain-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
}

.pain-stat {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-accent);
    margin-bottom: 8px;
}

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

/* ============================================
   CALCULATOR
   ============================================ */
.calculator-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.calculator-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.section-sub {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.calc-wrapper {
    max-width: 640px;
    margin: 0 auto;
}

.calc-step {
    display: none;
    animation: fadeUp 0.4s ease;
}

.calc-step.active {
    display: block;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Progress Bar */
.step-indicator {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.step-bar {
    flex: 1;
    height: 4px;
    background: var(--bg-card);
    border-radius: 4px;
    overflow: hidden;
}

.step-progress {
    height: 100%;
    background: var(--bg-accent);
    border-radius: 4px;
    transition: width 0.4s ease;
}

.step-count {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.calc-step h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.step-hint {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.calc-step h3 + .option-grid {
    margin-top: 24px;
}

/* Option Buttons */
.option-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.option-btn {
    position: relative;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    cursor: pointer;
    text-align: left;
    transition: all 0.25s ease;
    line-height: 1.4;
}

.option-btn:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-accent);
}

.option-btn.selected {
    background: var(--bg-accent-glow);
    border-color: var(--bg-accent);
    color: var(--text-primary);
}

.option-tag {
    display: block;
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 4px;
}

.option-btn.selected .option-tag {
    color: var(--text-secondary);
}

/* ============================================
   RESULTS
   ============================================ */
.results-section {
    padding: 80px 0;
    animation: fadeUp 0.5s ease;
}

.results-header {
    text-align: center;
    margin-bottom: 48px;
}

.results-header h2 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.results-sub {
    color: var(--text-secondary);
}

/* Cards Grid */
.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.result-card {
    position: relative;
    background: var(--bg-secondary);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow-card);
}

.diy-card {
    opacity: 0.85;
}

.fms-card {
    border-color: var(--bg-accent);
    box-shadow: var(--shadow-glow);
}

.card-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
    background: var(--bg-accent);
    padding: 4px 14px;
    border-radius: 100px;
}

.card-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.cost-big {
    font-family: var(--font-mono);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.diy-card .cost-big {
    color: #ef4444;
}

.fms-card .cost-big {
    color: var(--text-accent);
}

.cost-period {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.cost-details {
    border-top: 1px solid var(--border-subtle);
    padding-top: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.detail-row span:last-child {
    font-weight: 600;
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 0.85rem;
}

.total-row {
    border-top: 1px solid var(--border-subtle);
    margin-top: 8px;
    padding-top: 12px;
}

.savings-row span:last-child {
    color: var(--text-savings);
    font-size: 1rem;
}

/* Savings Banner */
.savings-banner {
    background: var(--bg-savings);
    border: 1px solid rgba(74, 222, 128, 0.15);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    margin-bottom: 60px;
}

.savings-amount {
    font-family: var(--font-mono);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-savings);
    letter-spacing: -0.03em;
}

.savings-text {
    font-size: 1.1rem;
    color: rgba(74, 222, 128, 0.7);
    margin-top: 4px;
}

/* Reclaim Section */
.reclaim-section {
    margin-bottom: 60px;
}

.reclaim-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.reclaim-section h3 span {
    color: var(--text-accent);
    font-family: var(--font-mono);
}

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

.reclaim-card {
    text-align: center;
    padding: 24px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
}

.reclaim-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.reclaim-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.reclaim-text strong {
    color: var(--text-primary);
}

/* CTA Section */
.results-cta {
    margin-bottom: 40px;
}

.cta-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.cta-card {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
}

.cta-primary {
    background: var(--bg-accent-glow);
    border: 1px solid var(--border-accent);
    text-align: center;
}

.cta-secondary {
    background: var(--bg-secondary);
    border: 1px solid var(--border-card);
}

.cta-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.cta-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Email Form */
.email-form {
    display: flex;
    gap: 8px;
}

.email-form input {
    flex: 1;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 100px;
    padding: 12px 20px;
    outline: none;
    transition: border-color 0.3s ease;
}

.email-form input::placeholder {
    color: var(--text-muted);
}

.email-form input:focus {
    border-color: var(--bg-accent);
}

.email-success {
    padding: 12px 16px;
    background: var(--bg-savings);
    border-radius: var(--radius-sm);
    color: var(--text-savings);
    font-size: 0.9rem;
    font-weight: 500;
}

.privacy-note {
    font-size: 0.78rem !important;
    color: var(--text-muted) !important;
    margin-top: 12px !important;
    margin-bottom: 0 !important;
}

.recalc {
    text-align: center;
}

/* ============================================
   TRUST / SOCIAL PROOF
   ============================================ */
.trust-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
}

.trust-quote {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.trust-quote blockquote {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.trust-quote cite {
    font-size: 0.9rem;
    font-style: normal;
    color: var(--text-muted);
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.trust-stat {
    text-align: center;
}

.trust-num {
    font-family: var(--font-mono);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-accent);
    margin-bottom: 4px;
}

.trust-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    padding: 48px 0;
    border-top: 1px solid var(--border-subtle);
}

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

.footer-logo {
    height: 24px;
    margin-bottom: 12px;
    opacity: 0.6;
}

.footer-inner p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero { padding: 120px 0 60px; }
    .hero h1 { font-size: 1.8rem; }

    .pain-grid { grid-template-columns: 1fr; gap: 12px; }
    .pain-card { padding: 24px 16px; }
    .pain-stat { font-size: 1.6rem; }

    .option-grid { grid-template-columns: 1fr; }

    .results-grid { grid-template-columns: 1fr; }
    .fms-card { order: -1; }

    .reclaim-grid { grid-template-columns: 1fr 1fr; }

    .cta-options { grid-template-columns: 1fr; }

    .email-form { flex-direction: column; }

    .trust-stats { grid-template-columns: 1fr; gap: 16px; }

    .savings-amount { font-size: 2.5rem; }
    .cost-big { font-size: 2.2rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.55rem; }
    .reclaim-grid { grid-template-columns: 1fr; }
}
