/* ============================================
   YOUR PLATFORM PROFILE — Design System CSS
   Brand: #016FD0 (Blue)
   ============================================ */

/* --- CSS Variables --- */
:root {
    --brand: #016FD0;
    --brand-light: #3B8FE0;
    --brand-dark: #015AAB;
    --brand-glow: rgba(1, 111, 208, 0.10);
    --brand-glow-md: rgba(1, 111, 208, 0.18);
    --brand-glow-strong: rgba(1, 111, 208, 0.28);

    --ink: #111118;
    --ink-soft: #3a3a4a;
    --ink-muted: #6e6e80;
    --surface: #fafafa;
    --white: #ffffff;
    --surface-dim: #f2f1f6;
    --surface-border: #e4e2ec;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Epilogue', sans-serif;
    font-size: 17px;
    line-height: 1.72;
    color: var(--ink-soft);
    background: var(--surface);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--brand-glow-strong);
    color: var(--ink);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: 'Big Shoulders Display', cursive;
    text-transform: uppercase;
    color: var(--ink);
}

h1 {
    font-weight: 800;
    font-size: clamp(48px, 6vw, 80px);
    line-height: 0.95;
    letter-spacing: -0.01em;
}

h2 {
    font-weight: 700;
    font-size: clamp(34px, 4.2vw, 52px);
    line-height: 1.05;
    letter-spacing: 0.005em;
}

h3 {
    font-weight: 600;
    font-size: clamp(22px, 2.5vw, 28px);
    line-height: 1.15;
}

h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
}

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

p { max-width: 640px; }

strong { color: var(--ink); font-weight: 600; }

/* --- Section Labels (Eyebrows) --- */
.section-label {
    font-family: 'Epilogue', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 16px;
}

/* --- Hero Pill --- */
.hero-pill {
    display: inline-block;
    font-family: 'Epilogue', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand);
    background: var(--brand-glow);
    border: 1px solid var(--brand-glow-md);
    border-radius: 100px;
    padding: 7px 16px;
    margin-bottom: 24px;
}

/* --- Layout --- */
.section {
    max-width: 1100px;
    margin: 0 auto;
    padding: clamp(80px, 10vw, 140px) 32px;
}

.section-full {
    width: 100%;
    padding: clamp(80px, 10vw, 140px) 0;
}

.section-full-white {
    background: var(--white);
    border-top: 1px solid var(--surface-border);
    border-bottom: 1px solid var(--surface-border);
}

.section-full-dark {
    background: var(--ink);
    color: #fff;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(250, 250, 250, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
    border-bottom-color: var(--surface-border);
    box-shadow: 0 1px 24px rgba(0, 0, 0, 0.04);
}

.nav-inner {
    max-width: 1100px;
    width: 100%;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    font-family: 'Big Shoulders Display', cursive;
    font-weight: 700;
    font-size: 25px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ink);
    white-space: nowrap;
}

.nav-brand span { color: var(--brand); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-family: 'Epilogue', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink-muted);
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--ink);
}

.nav-cta {
    font-size: 13px;
    font-weight: 600;
    color: #fff !important;
    background: var(--brand);
    padding: 8px 20px;
    border-radius: 8px;
    transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
    background: var(--brand-dark);
    transform: translateY(-1px);
    color: #fff !important;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    background: none;
    border: none;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* --- Buttons --- */
.btn-primary {
    display: inline-block;
    font-family: 'Epilogue', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: var(--brand);
    padding: 15px 30px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(1, 111, 208, 0.3);
}

.btn-ghost {
    display: inline-block;
    font-family: 'Epilogue', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    background: transparent;
    padding: 15px 30px;
    border-radius: 10px;
    border: 1.5px solid var(--surface-border);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.btn-ghost:hover {
    border-color: var(--brand);
    color: var(--brand);
    transform: translateY(-2px);
}

.btn-on-dark {
    display: inline-block;
    font-family: 'Epilogue', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: var(--brand);
    padding: 15px 30px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-on-dark:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(1, 111, 208, 0.3);
}

.btn-ghost-dark {
    display: inline-block;
    font-family: 'Epilogue', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
    padding: 15px 30px;
    border-radius: 10px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.btn-ghost-dark:hover {
    border-color: var(--brand-light);
    color: var(--brand-light);
    transform: translateY(-2px);
}

.btn-pair {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* --- Sticky CTA --- */
.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s, transform 0.4s;
    pointer-events: none;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-cta a {
    display: inline-block;
    font-family: 'Epilogue', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--brand);
    padding: 14px 28px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(1, 111, 208, 0.35), 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.sticky-cta a:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(1, 111, 208, 0.45), 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* --- Hero --- */
.hero-wrapper {
    background: var(--surface);
    border-bottom: 1px solid var(--surface-border);
}

.hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 150px 32px clamp(80px, 10vw, 140px);
}

.hero h1 { margin-bottom: 24px; max-width: 800px; }
.hero p { margin-bottom: 32px; max-width: 640px; font-size: 17px; }

/* --- Cards --- */
.card {
    background: var(--white);
    border: 1px solid var(--surface-border);
    border-radius: 14px;
    padding: 32px 28px;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.card:hover {
    border-color: var(--brand);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.05);
}

.card-on-surface {
    background: var(--surface);
}

.card-icon {
    width: 44px;
    height: 44px;
    background: var(--brand-glow);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
    color: var(--brand);
}

.card h4 { margin-bottom: 12px; }
.card p { font-size: 15px; line-height: 1.65; color: var(--ink-soft); max-width: none; }

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

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

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

/* --- Dark Section Cards --- */
.section-full-dark .card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.section-full-dark .card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--brand-light);
}

.section-full-dark .card p { color: rgba(255, 255, 255, 0.55); }
.section-full-dark .card h4 { color: #fff; }
.section-full-dark .section-label { color: var(--brand-light); }
.section-full-dark h2 { color: #fff; }
.section-full-dark h3 { color: #fff; }
.section-full-dark p { color: rgba(255, 255, 255, 0.55); }
.section-full-dark .accent { color: var(--brand-light); }

.dark-muted { color: rgba(255, 255, 255, 0.55); }

/* Product ecosystem cards */
.product-card { position: relative; }
.product-card .card-price {
    font-family: 'Epilogue', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-light);
    margin-top: 14px;
}
.product-card .card-link {
    font-family: 'Epilogue', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
}
.product-card .card-link a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}
.product-card .card-link a:hover { color: var(--brand-light); }

.product-card.current-product {
    border-color: var(--brand-light);
}
.product-card .current-badge {
    font-family: 'Epilogue', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-light);
    margin-top: 14px;
}

/* --- Pullquote --- */
.pullquote {
    font-family: 'Big Shoulders Display', cursive;
    font-weight: 500;
    font-size: clamp(22px, 2.8vw, 34px);
    text-transform: uppercase;
    color: var(--ink);
    border-left: 3px solid var(--brand);
    padding-left: 24px;
    max-width: 700px;
    line-height: 1.15;
}

/* --- Steps --- */
.step { margin-bottom: 64px; }
.step:last-child { margin-bottom: 0; }

.step-number {
    font-family: 'Big Shoulders Display', cursive;
    font-weight: 800;
    font-size: 64px;
    color: var(--brand-glow-md);
    line-height: 1;
    margin-bottom: 8px;
}

.step h3 { margin-bottom: 16px; }
.step p { margin-bottom: 12px; }

/* --- FAQ --- */
.faq-item {
    background: var(--white);
    border: 1px solid var(--surface-border);
    border-radius: 14px;
    padding: 28px 28px;
    transition: border-color 0.25s;
}

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

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink-soft);
    max-width: none;
}

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

/* --- Pricing Card (centered box) --- */
.pricing-card {
    max-width: 420px;
    margin: 0 auto;
    background: var(--white);
    border: 2px solid var(--brand);
    border-radius: 14px;
    padding: 48px 32px;
    text-align: center;
    box-shadow: 0 0 60px rgba(1, 111, 208, 0.15);
}

.pricing-price {
    font-family: 'Big Shoulders Display', cursive;
    font-weight: 800;
    font-size: 56px;
    color: var(--ink);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.pricing-period {
    font-size: 16px;
    color: var(--ink-muted);
    margin-bottom: 32px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 32px;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 15px;
    max-width: none;
}

.pricing-feature::before {
    content: "\2713";
    color: var(--brand);
    font-weight: 700;
    flex-shrink: 0;
}

/* --- Pricing Table --- */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 32px;
}

.pricing-table th,
.pricing-table td {
    text-align: left;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 15px;
}

.pricing-table th {
    font-family: 'Epilogue', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.pricing-table td { color: rgba(255, 255, 255, 0.7); }
.pricing-table td strong { color: #fff; font-weight: 600; }
.pricing-table td .price-val { color: var(--brand-light); font-weight: 600; }

/* --- Platform badges --- */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.platform-card .platform-badge {
    display: inline-block;
    font-family: 'Epilogue', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 14px;
}

.badge-both {
    background: var(--brand-glow);
    color: var(--brand);
}

.badge-adapt {
    background: rgba(1, 111, 208, 0.06);
    color: var(--ink-muted);
}

/* --- Modes Section --- */
.modes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mode-card { padding: 36px 32px; }
.mode-card h4 { font-size: 22px; margin-bottom: 14px; }
.mode-card .mode-example {
    font-style: italic;
    font-size: 15px;
    color: var(--ink-muted);
    margin-bottom: 14px;
    max-width: none;
}

/* --- Compat items (AI tools) --- */
.compat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* --- What's Inside sections --- */
.inside-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.inside-item h4 { font-size: 18px; margin-bottom: 8px; }

/* --- Content spacing helpers --- */
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* --- Footer --- */
.footer {
    padding: 48px 32px;
    border-top: 1px solid var(--surface-border);
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand {
    font-family: 'Big Shoulders Display', cursive;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    color: var(--ink);
}

.footer-brand span { color: var(--brand); }

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

.footer-links a {
    font-size: 13px;
    color: var(--ink-muted);
    transition: color 0.2s;
}

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

.footer-copy {
    font-size: 12.5px;
    color: var(--ink-muted);
}

/* --- Scroll Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1), transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }
.reveal-d6 { transition-delay: 0.48s; }

/* --- Responsive --- */
@media (max-width: 900px) {
    .card-grid,
    .compat-grid { grid-template-columns: 1fr; }
    .card-grid-2,
    .faq-grid,
    .modes-grid,
    .inside-grid { grid-template-columns: 1fr; }
    .card-grid-4,
    .platform-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-table th:first-child,
    .pricing-table td:first-child { min-width: 140px; }
}

@media (max-width: 700px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--surface);
        border-bottom: 1px solid var(--surface-border);
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
        padding: 20px 32px;
        gap: 16px;
    }

    .card-grid-4,
    .platform-grid { grid-template-columns: 1fr; }

    .hero { padding-top: 120px; }

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

    h1 { font-size: clamp(38px, 8vw, 60px); }
}

/* ============================================
   SURVEY STYLES
   ============================================ */

.survey-wrapper {
    min-height: 100vh;
    padding: 100px 32px 80px;
    background: var(--surface);
}

.survey-container {
    max-width: 680px;
    margin: 0 auto;
}

.survey-progress {
    margin-bottom: 48px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: var(--surface-border);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--brand);
    border-radius: 4px;
    transition: width 0.4s ease;
    width: 0%;
}

.progress-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-top: 10px;
}

.survey-step h2 {
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: 8px;
    text-transform: none;
    line-height: 1.2;
}

.survey-subtitle {
    font-size: 15px;
    color: var(--ink-muted);
    margin-bottom: 24px;
    max-width: none;
}

.mt-survey { margin-top: 40px; }

.survey-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 8px;
}

.platform-grid-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (max-width: 500px) {
    .platform-grid-options { grid-template-columns: 1fr; }
}

.survey-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    border: 1.5px solid var(--surface-border);
    border-radius: 10px;
    background: var(--white);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
    user-select: none;
}

.survey-option:hover {
    border-color: var(--brand);
    transform: translateY(-1px);
}

.survey-option.selected {
    border-color: var(--brand);
    background: var(--brand-glow);
}

.option-check, .option-radio {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 1.5px solid var(--surface-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--brand);
    flex-shrink: 0;
    margin-top: 1px;
}

.option-radio {
    border-radius: 50%;
    font-size: 10px;
}

.survey-option.selected .option-check,
.survey-option.selected .option-radio {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.option-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.option-icon {
    font-size: 20px;
    margin-bottom: 4px;
}

.option-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.4;
}

.option-subtitle {
    font-size: 13px;
    color: var(--ink-muted);
    line-height: 1.4;
}

/* Click-to-rank */
.rank-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rank-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border: 1.5px solid var(--surface-border);
    border-radius: 10px;
    background: var(--white);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    user-select: none;
}

.rank-option:hover {
    border-color: var(--brand);
}

.rank-option.ranked {
    border-color: var(--brand);
    background: var(--brand-glow);
}

.rank-badge {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--surface-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Big Shoulders Display', cursive;
    font-weight: 700;
    font-size: 16px;
    color: var(--ink-muted);
    flex-shrink: 0;
}

.rank-option.ranked .rank-badge {
    background: var(--brand);
    color: #fff;
}

.rank-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
}

/* Platform header in survey */
.platform-header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Big Shoulders Display', cursive;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--brand);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--brand-glow-md);
}

.platform-header-icon {
    font-size: 24px;
}

/* Reddit notice */
.reddit-notice {
    margin-top: 24px;
    padding: 20px;
    border-left: 3px solid var(--brand);
    background: var(--brand-glow);
    border-radius: 0 10px 10px 0;
}

.reddit-notice p {
    font-size: 14px;
    color: var(--ink-soft);
    max-width: none;
    line-height: 1.6;
}

/* Email input */
.email-input-wrap {
    margin-top: 8px;
}

.survey-email-input {
    width: 100%;
    padding: 16px 18px;
    font-family: 'Epilogue', sans-serif;
    font-size: 16px;
    border: 1.5px solid var(--surface-border);
    border-radius: 10px;
    background: var(--white);
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s;
}

.survey-email-input:focus {
    border-color: var(--brand);
}

/* Survey navigation */
.survey-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--surface-border);
}

.survey-back {
    padding: 12px 24px;
}

.survey-next {
    margin-left: auto;
    padding: 15px 36px;
    font-size: 16px;
}

.survey-next:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Survey error */
.survey-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 16px;
    display: none;
}

/* ============================================
   PROFILE PAGE STYLES
   ============================================ */

.profile-wrapper {
    min-height: 100vh;
    padding: 120px 32px 80px;
    background: var(--surface);
}

.profile-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.profile-header h1 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 12px;
}

.profile-header p {
    font-size: 16px;
    color: var(--ink-soft);
    max-width: none;
}

.profile-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.profile-display {
    background: var(--white);
    border: 1px solid var(--surface-border);
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    max-height: 70vh;
    overflow-y: auto;
}

.profile-content {
    padding: 40px 36px;
    font-size: 15px;
    line-height: 1.72;
    color: var(--ink-soft);
}

.profile-content h1 {
    font-family: 'Big Shoulders Display', cursive;
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--ink);
    margin: 32px 0 16px;
    line-height: 1.1;
}

.profile-content h1:first-child { margin-top: 0; }

.profile-content h2 {
    font-family: 'Big Shoulders Display', cursive;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--ink);
    margin: 28px 0 12px;
    line-height: 1.15;
}

.profile-content h3 {
    font-family: 'Big Shoulders Display', cursive;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--ink);
    margin: 24px 0 10px;
    line-height: 1.2;
}

.profile-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin: 20px 0 8px;
}

.profile-content p {
    margin-bottom: 12px;
    max-width: none;
}

.profile-content ul, .profile-content ol {
    margin: 12px 0;
    padding-left: 24px;
}

.profile-content li {
    margin-bottom: 6px;
}

.profile-content strong {
    color: var(--ink);
    font-weight: 600;
}

.profile-content em {
    font-style: italic;
}

.profile-content hr {
    border: none;
    border-top: 1px solid var(--surface-border);
    margin: 32px 0;
}

.profile-content code {
    font-size: 13px;
    background: var(--surface-dim);
    padding: 2px 6px;
    border-radius: 4px;
}

.profile-content blockquote {
    border-left: 3px solid var(--brand);
    padding-left: 16px;
    margin: 16px 0;
    color: var(--ink-muted);
}

@media (max-width: 700px) {
    .profile-content {
        padding: 24px 20px;
    }
    .profile-display {
        max-height: 60vh;
    }
}

/* ============================================
   CHECKOUT / COUPON STYLES (Pricing Page)
   ============================================ */

.coupon-section {
    margin-bottom: 28px;
}

.coupon-row {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.coupon-input {
    flex: 1;
    padding: 0 16px;
    height: 46px;
    font-family: 'Epilogue', sans-serif;
    font-size: 14px;
    border: 1.5px solid var(--surface-border);
    border-radius: 8px;
    background: var(--surface);
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.coupon-input:focus {
    border-color: var(--brand);
}

.coupon-apply {
    height: 46px;
    padding: 0 20px;
    font-size: 14px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.coupon-message {
    font-size: 13px;
    margin-top: 8px;
    min-height: 18px;
}

.checkout-btn {
    font-size: 16px !important;
    padding: 16px 32px !important;
}

.checkout-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.checkout-error {
    font-size: 13px;
    color: #c0392b;
    margin-top: 8px;
    min-height: 18px;
    text-align: center;
}

/* ============================================
   STICKY CTA SPAN FALLBACK
   ============================================ */

.sticky-cta span {
    display: inline-block;
    font-family: 'Epilogue', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--brand);
    padding: 14px 28px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(1, 111, 208, 0.35), 0 2px 8px rgba(0, 0, 0, 0.1);
}
