﻿/* ─── Design Tokens ──────────────────────────────────────────────────── */
:root {
    --bg: #fafafa;
    --surface: #ffffff;
    --text: #0f1117;
    --text-soft: #3d4250;
    --muted: #6b7280;
    --line: #e5e7eb;
    --accent: #e8175d;
    --accent-deep: #bf0d4a;
    --accent-light: #fff0f5;
    --accent-ink: #1a2072;
    --green: #16a34a;
    --violet: #6d28d9;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
    --shadow: 0 4px 24px rgba(15,17,23,0.08), 0 1px 4px rgba(15,17,23,0.04);
    --shadow-lg: 0 12px 48px rgba(15,17,23,0.12), 0 4px 16px rgba(15,17,23,0.06);
    --radius-xl: 32px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
}

/* ─── Reset & Base ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    margin: 0;
    font-family: "Manrope", system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding-left: 20px; }
button { font-family: inherit; }

/* ─── Typography Scale ───────────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: "Space Grotesk", system-ui, sans-serif;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 0;
    color: var(--text);
}
h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); letter-spacing: -0.05em; line-height: 1.0; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); letter-spacing: -0.04em; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p { margin: 0; color: var(--muted); line-height: 1.7; }

/* ─── Page Shells ────────────────────────────────────────────────────── */
.landing-shell,
.simple-page,
.creator-shell {
    width: min(1360px, calc(100% - 48px));
    margin: 0 auto;
    padding-bottom: 80px;
}

.page-login {
    min-height: 100vh;
    background: linear-gradient(135deg, #fef6fa 0%, #f0f4ff 100%);
}

/* ─── Buttons ────────────────────────────────────────────────────────── */
.button, .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 999px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.97rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    white-space: nowrap;
    cursor: pointer;
    border: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s;
}
.button:hover, .nav-cta:hover { transform: translateY(-1px); }
.button:active { transform: translateY(0); }

.button-primary, .nav-cta {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 6px 20px rgba(232, 23, 93, 0.28);
}
.button-primary:hover, .nav-cta:hover {
    box-shadow: 0 10px 28px rgba(232, 23, 93, 0.36);
}
.button-secondary {
    background: #fff;
    color: var(--text);
    border: 1.5px solid var(--line);
    box-shadow: var(--shadow-sm);
}
.button-secondary:hover {
    border-color: #cbd5e1;
}
.button-purple {
    background: var(--accent-ink);
    color: #fff;
    box-shadow: 0 6px 20px rgba(26, 32, 114, 0.28);
}
.button-sm { padding: 10px 18px; font-size: 0.9rem; }

/* ─── Brand ──────────────────────────────────────────────────────────── */
.brand {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: -0.04em;
    color: var(--accent-ink);
}
.brand-with-mark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.brand-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* ─── Eyebrow ────────────────────────────────────────────────────────── */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 14px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
}
.badge-eyebrow {
    padding: 7px 14px;
    border-radius: 999px;
    background: var(--accent-light);
    border: 1px solid rgba(232, 23, 93, 0.15);
}

/* ─── Header / Nav ───────────────────────────────────────────────────── */
.marketing-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0 36px;
    position: relative;
}
.marketing-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--text);
    box-shadow: var(--shadow-sm);
}
.marketing-menu-toggle .icon { width: 20px; height: 20px; }
.marketing-nav {
    display: flex;
    gap: 4px;
    align-items: center;
    flex-wrap: wrap;
}
.marketing-nav a {
    padding: 8px 14px;
    border-radius: 99px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-soft);
    transition: background 0.15s, color 0.15s;
}
.marketing-nav a:hover {
    background: #f1f3f8;
    color: var(--text);
}
.marketing-nav .nav-cta {
    margin-left: 8px;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: #fff;
}

/* ─── Hero ───────────────────────────────────────────────────────────── */
.hero-refined {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(540px, 1.08fr);
    gap: 72px;
    align-items: center;
    max-width: 1280px;
    min-height: 670px;
    padding: 32px 0 56px;
    margin: 0 auto;
    overflow: visible;
}
.hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-width: 560px;
}
.hero-copy h1 {
    margin-bottom: 18px;
    font-size: clamp(3.2rem, 5.6vw, 5.2rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    max-width: 9ch;
}

.hero-text {
    font-size: 1.14rem;
    line-height: 1.72;
    color: var(--text-soft);
    margin-bottom: 30px;
    max-width: 560px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.hero-badges li {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-soft);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(226, 230, 241, 0.9);
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(22, 28, 45, 0.06);
    backdrop-filter: blur(8px);
}
.hero-badges li::before {
    content: "\2713";
    font-size: 0.92rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-visual {
    position: relative;
    min-height: 690px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: visible;
}
.hero-glow {
    position: absolute;
    inset: 14% 6% 12% 20%;
    border-radius: 60px;
    background:
        radial-gradient(circle at 35% 35%, rgba(255, 89, 171, 0.24) 0%, rgba(255, 89, 171, 0) 48%),
        radial-gradient(circle at 72% 42%, rgba(151, 71, 255, 0.22) 0%, rgba(151, 71, 255, 0) 52%),
        radial-gradient(circle at 48% 78%, rgba(255, 143, 214, 0.16) 0%, rgba(255, 143, 214, 0) 58%);
    filter: blur(26px);
    transform: translate(10px, 18px);
    pointer-events: none;
}
.hero-image {
    position: relative;
    z-index: 1;
    display: block;
    width: min(920px, 132%);
    max-width: none;
    height: auto;
    margin-right: -110px;
    overflow: hidden;
}

/* ─── Section spacing helpers ────────────────────────────────────────── */
.section {
    padding: 72px 0;
    border-top: 1px solid var(--line);
}
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header p {
    margin-top: 12px;
    font-size: 1.06rem;
    max-width: 560px;
    margin-inline: auto;
}

/* ─── Audience cards ─────────────────────────────────────────────────── */
.audience-showcase { padding: 64px 0; border-top: 1px solid var(--line); }
.audience-showcase h2 { text-align: center; margin-bottom: 12px; }
.audience-showcase > p { text-align: center; margin-bottom: 44px; max-width: 520px; margin-inline: auto; }

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

.audience-card {
    padding: 32px 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.audience-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.audience-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin-bottom: 18px;
    font-size: 1.1rem;
}
.audience-icon .icon { width: 22px; height: 22px; }
.audience-icon.viewer  { background: #fff0f5; color: var(--accent); }
.audience-icon.parent  { background: #f0fdf4; color: #16a34a; }
.audience-icon.creator { background: #eff0ff; color: var(--accent-ink); }
.audience-card h3 { margin-bottom: 10px; }
.audience-card-image {
    display: block;
    width: 100%;
    margin-top: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    box-shadow: 0 18px 36px rgba(22, 28, 45, 0.08);
}
.audience-benefits {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.audience-benefits li {
    position: relative;
    padding-left: 18px;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--text-soft);
    font-weight: 600;
}
.audience-benefits li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: 900;
}
.audience-cta {
    margin-top: 22px;
}
.mini-panel {
    margin-top: 20px;
    height: 108px;
    border-radius: var(--radius-md);
    background: #f8f9fb;
    border: 1px solid var(--line);
}
.viewer-panel  { background: linear-gradient(135deg, #0f1220 40%, transparent 40%), radial-gradient(circle at 75% 35%, #ffd6e7 0 18%, transparent 19%), linear-gradient(180deg, #fff, #fdf6fb); }
.parent-panel  { background: radial-gradient(circle at 24% 44%, #a7e8b3 0 13%, transparent 14%), radial-gradient(circle at 50% 44%, #ffd299 0 13%, transparent 14%), radial-gradient(circle at 76% 44%, #ffc0c0 0 13%, transparent 14%), linear-gradient(180deg, #fff, #f5fff6); }
.creator-panel { background: linear-gradient(180deg, #fff 0 40%, #f3f4ff 40%), linear-gradient(90deg, #1a2072 0 28%, transparent 28%); }

/* ─── Problem section ────────────────────────────────────────────────── */
.problem-section {
    padding: 64px 0;
    border-top: 1px solid var(--line);
}
.problem-band {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 40px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}
.problem-copy h2 { margin-bottom: 16px; }
.compare-grid-tight { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.compare-card {
    padding: 24px;
    background: #f9fafb;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}
.compare-card h3 { margin-bottom: 14px; font-size: 1rem; }
.compare-card ul { list-style: none; padding: 0; }
.compare-card ul li {
    padding: 6px 0;
    font-size: 0.92rem;
    color: var(--text-soft);
    font-weight: 600;
    border-bottom: 1px solid #f0f0f0;
}
.compare-card ul li:last-child { border-bottom: none; }
.compare-card.accent-soft { background: #fff7fb; border-color: rgba(232,23,93,0.12); }
.compare-card.accent-soft h3 { color: var(--accent); }
.compare-card.accent-soft li { color: var(--text); }

/* ─── How it works / Steps ───────────────────────────────────────────── */
.steps-section { padding: 72px 0; border-top: 1px solid var(--line); }
.steps-section h2 { text-align: center; margin-bottom: 48px; }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.steps-grid article {
    padding: 24px 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
}
.steps-grid strong {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 99px;
    background: var(--accent);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 800;
    margin: 0 auto 14px;
}
.steps-grid span { display: block; font-weight: 700; font-size: 0.98rem; margin-bottom: 6px; }
.steps-grid small { display: block; color: var(--muted); font-size: 0.85rem; line-height: 1.5; }

/* ─── Benefit panels ─────────────────────────────────────────────────── */
.benefit-panels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 72px 0;
    border-top: 1px solid var(--line);
}
.benefit-card {
    padding: 32px 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}
.benefit-card h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: 12px; }
.benefit-card p { margin-bottom: 18px; }
.benefit-card ul { list-style: none; padding: 0; }
.benefit-card ul li {
    padding: 6px 0;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-soft);
    display: flex;
    align-items: center;
    gap: 8px;
}
.benefit-card ul li::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}
.benefit-card-parent {
    background: linear-gradient(180deg, #f0fdf4, #fff);
}
.benefit-card-parent ul li::before { background-color: var(--green); }
.benefit-card-creator {
    background: linear-gradient(180deg, #eff0ff, #fff);
}
.benefit-card-creator ul li::before { background-color: var(--accent-ink); }

/* ─── Creator showcase ───────────────────────────────────────────────── */
.creator-showcase-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 32px;
    align-items: center;
    padding: 80px 0;
    border-top: 1px solid var(--line);
}
.creator-showcase-copy h2 {
    font-size: clamp(2rem, 3.8vw, 3.3rem);
    margin-bottom: 14px;
}
.creator-showcase-copy > p:not(.eyebrow) {
    max-width: 560px;
    margin-bottom: 24px;
    font-size: 1.02rem;
}
.creator-showcase-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
}
.creator-showcase-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--text-soft);
}
.creator-showcase-list li::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-ink);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}
.creator-showcase-visual {
    position: relative;
}
.creator-browser-mockup {
    background: linear-gradient(180deg, #eef0f7 0%, #fff 100%);
    border: 1px solid #dfe4ef;
    border-radius: 28px;
    padding: 16px;
    box-shadow: 0 28px 70px rgba(19, 24, 38, 0.12);
}
.creator-browser-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 2px 14px;
}
.creator-browser-bar span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d0d6e3;
}
.creator-browser-bar span:first-child { background: #ff8a95; }
.creator-browser-bar span:nth-child(2) { background: #ffd36d; }
.creator-browser-bar span:nth-child(3) { background: #6ed69c; }
.creator-browser-image {
    display: block;
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(209, 215, 229, 0.9);
    box-shadow: 0 20px 40px rgba(19, 24, 38, 0.08);
}

/* ─── Testimonials ───────────────────────────────────────────────────── */
.testimonials { padding: 72px 0; border-top: 1px solid var(--line); }
.testimonials h2 { text-align: center; margin-bottom: 8px; }
.testimonial-lead { text-align: center; margin-bottom: 40px; }

.testimonial-grid-real {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: start;
}
.testimonial-grid-real article {
    padding: 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.testimonial-grid-real p {
    font-size: 0.9rem;
    line-height: 1.55;
    font-weight: 600;
    color: var(--text);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.featured-line {
    margin-top: 40px;
    text-align: center;
}
.featured-line strong {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.1rem;
    color: var(--accent-ink);
    margin-bottom: 6px;
}
.featured-line > span {
    display: block;
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 16px;
}
.featured-chips {
    display: flex;
    justify-content: center;
    gap: 12px;
}
.featured-chips span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #f3f4f8;
}
.featured-chips .icon { width: 22px; height: 22px; }

/* ─── Comparison table ───────────────────────────────────────────────── */
.comparison-table { padding: 72px 0; border-top: 1px solid var(--line); }
.comparison-lead {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: end;
    margin-bottom: 28px;
}
.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}
.comparison-table th,
.comparison-table td {
    padding: 16px 22px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table thead th {
    background: #f9fafb;
    font-weight: 800;
    color: var(--text);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.comparison-table td:first-child { color: var(--text-soft); font-weight: 600; }
.comparison-table td:not(:first-child) { font-weight: 700; text-align: center; width: 160px; }
.comparison-table td.yes { color: var(--green); }
.comparison-table td.no  { color: #dc2626; }
.comparison-table td.limited { color: #d97706; }

/* ─── Pricing ────────────────────────────────────────────────────────── */
.pricing-preview { padding: 72px 0; border-top: 1px solid var(--line); }
.pricing-preview > .eyebrow { display: flex; margin-bottom: 8px; }
.pricing-preview > h2 { margin-bottom: 12px; }
.pricing-preview > p { margin-bottom: 44px; max-width: 520px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.pricing-grid article {
    padding: 32px 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}
.pricing-grid article.featured {
    background: var(--accent);
    border-color: var(--accent-deep);
    color: #fff;
    box-shadow: 0 12px 40px rgba(232,23,93,0.28);
    transform: scale(1.03);
}
.pricing-grid h3 { font-size: 1.5rem; margin-bottom: 4px; }
.pricing-grid .price {
    font-family: "Space Grotesk", sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin: 12px 0;
    color: var(--text);
}
.pricing-grid article.featured .price { color: #fff; }
.pricing-grid .price sup { font-size: 1.2rem; }
.pricing-grid .price sub { font-size: 0.9rem; font-weight: 500; }
.pricing-grid .plan-note { font-size: 0.82rem; font-weight: 700; margin-bottom: 20px; }
.pricing-grid article.featured .plan-note { color: rgba(255,255,255,0.75); }
.pricing-grid ul { list-style: none; padding: 0; margin: 0 0 24px; }
.pricing-grid ul li {
    padding: 8px 0;
    font-size: 0.91rem;
    font-weight: 600;
    color: var(--text-soft);
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pricing-grid ul li::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--green);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
}
.pricing-grid ul li:last-child { border-bottom: none; }
.pricing-grid article.featured ul li { color: rgba(255,255,255,0.9); border-bottom-color: rgba(255,255,255,0.15); }
.pricing-grid article.featured ul li::before { background-color: rgba(255,255,255,0.3); }

/* ─── Final CTA ──────────────────────────────────────────────────────── */
.final-cta-band {
    margin-top: 72px;
    padding: 56px 60px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, #0f1117 0%, #1a2072 60%, #35104a 100%);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
}
.final-cta-band h2 { color: #fff; margin-bottom: 12px; font-size: clamp(1.8rem, 3vw, 2.6rem); }
.final-cta-band h2 span { color: var(--accent); }
.final-cta-band p { color: rgba(255,255,255,0.65); margin-bottom: 28px; }
.cta-preview {
    width: 260px;
    height: 180px;
    border-radius: 20px;
    flex-shrink: 0;
    background:
        url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=600&q=80") center/cover;
    opacity: 0.7;
}

/* ─── Simple marketing pages ─────────────────────────────────────────── */
.simple-page {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.simple-page h1 { font-size: clamp(2rem, 4vw, 3.4rem); }

/* ─── Creator public page ────────────────────────────────────────────── */
.creator-avatar {
    width: 112px;
    height: 112px;
    border-radius: 26px;
    object-fit: cover;
    box-shadow: 0 18px 36px rgba(22, 28, 45, 0.12);
}
.creator-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    padding: 48px 0 40px;
    border-bottom: 1px solid var(--line);
}
.creator-identity {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}
.creator-copy h1 {
    margin-bottom: 12px;
}
.creator-copy p:not(.eyebrow) {
    max-width: 760px;
}
.creator-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.creator-badges span {
    padding: 8px 14px;
    border-radius: 999px;
    background: #f5f6fb;
    border: 1px solid #e4e7f0;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-soft);
}
.creator-hero-actions {
    display: flex;
    align-items: center;
}
.creator-featured {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    padding: 48px 0;
    align-items: center;
}
.creator-overview-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 18px;
    padding: 32px 0 8px;
}
.creator-overview-card {
    padding: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.creator-overview-card h2,
.creator-overview-card h3 {
    margin-bottom: 10px;
}
.creator-overview-card-accent {
    background: linear-gradient(135deg, #fff6fb 0%, #ffffff 100%);
    border-color: rgba(232, 23, 93, 0.14);
}
.creator-link-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.creator-link-list a {
    color: var(--accent);
    font-weight: 700;
}
.creator-collections,
.creator-latest { padding: 48px 0; border-top: 1px solid var(--line); }
.creator-section-head {
    margin-bottom: 24px;
}
.creator-section-head h2 {
    margin-bottom: 0;
}
.collection-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.collection-card {
    padding: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.collection-card h3 {
    margin-bottom: 6px;
}
.collection-card p {
    margin-bottom: 8px;
    font-size: 0.84rem;
}
.collection-card small {
    display: block;
    margin-bottom: 14px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
}
.collection-card a {
    display: block;
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid #f0f0f0;
    color: var(--accent);
    font-weight: 600;
}
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.video-tile {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.video-tile img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.video-tile h3, .video-tile p { padding: 0 14px; margin: 8px 0; font-size: 0.88rem; }
.video-tile p { padding-bottom: 14px; }

/* ─── Player stage ───────────────────────────────────────────────────── */
.player-stage {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #101010;
}
.player-stage iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ─── Login ──────────────────────────────────────────────────────────── */
.login-screen {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px 16px;
}
.login-brand {
    position: absolute;
    top: 24px;
    left: 28px;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--accent-ink);
}
.login-modal {
    width: min(100%, 440px);
}
.login-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 36px 32px 28px;
    box-shadow: var(--shadow-lg);
}
.login-card h2 {
    font-size: 1.6rem;
    margin-bottom: 6px;
    text-align: center;
}
.login-card > p {
    text-align: center;
    font-size: 0.93rem;
    margin-bottom: 28px;
}
.google-login-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1.5px solid #e0dde8;
    background: #fff;
    color: var(--text);
    font-size: 0.97rem;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.google-login-button:hover {
    border-color: #c5c0d8;
    box-shadow: var(--shadow-sm);
}
.icon-google { width: 20px !important; height: 20px !important; }
.login-divider {
    position: relative;
    margin: 22px 0;
    text-align: center;
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 700;
}
.login-divider::before,
.login-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: calc(50% - 24px);
    height: 1px;
    background: var(--line);
}
.login-divider::before { left: 0; }
.login-divider::after  { right: 0; }
.login-form { display: grid; gap: 16px; }
.login-form label {
    display: grid;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
}
.login-form input {
    width: 100%;
    padding: 13px 16px;
    border-radius: 10px;
    border: 1.5px solid #dde0ea;
    background: #fff;
    color: var(--text);
    font-size: 0.97rem;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.login-form input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(232,23,93,0.1);
}
.login-submit {
    width: 100%;
    margin-top: 4px;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: var(--accent);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(232,23,93,0.25);
    transition: box-shadow 0.15s, transform 0.15s;
}
.login-submit:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(232,23,93,0.3); }
.login-feedback {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    background: #fff5f7;
    border: 1px solid rgba(232,23,93,0.2);
    color: var(--accent-deep);
}
.login-feedback.is-success {
    background: #f0fdf4;
    border-color: rgba(22,163,74,0.25);
    color: #15803d;
}
.login-feedback.is-error {
    background: #fff5f5;
    border-color: rgba(220,38,38,0.2);
    color: #dc2626;
}
.login-link {
    display: block;
    margin-top: 12px;
    border: none;
    background: transparent;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    transition: color 0.15s;
}
.login-link:hover { color: var(--text); }
.login-links-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 16px; }
.login-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    vertical-align: -3px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 1279px) {
    .hero-refined {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
        padding-bottom: 24px;
    }
    .hero-copy {
        max-width: 640px;
    }
    .hero-visual {
        min-height: auto;
        justify-content: center;
    }
    .hero-glow {
        inset: 10% 10% 8%;
        transform: none;
    }
    .hero-image {
        width: min(860px, 112%);
        margin-right: 0;
        transform: none;
        border-radius: 28px;
    }
    .comparison-lead { grid-template-columns: 1fr; gap: 12px; }
    .final-cta-band { grid-template-columns: 1fr; gap: 24px; }
    .cta-preview { display: none; }
}
@media (max-width: 1279px) {
    .audience-grid,
    .benefit-panels,
    .creator-showcase-section,
    .pricing-grid,
    .steps-grid { grid-template-columns: 1fr; }
    .creator-overview-grid {
        grid-template-columns: 1fr 1fr;
    }
    .creator-hero {
        grid-template-columns: 1fr;
    }
    .creator-identity {
        flex-direction: column;
    }
    .testimonial-grid-real { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid article.featured { transform: none; }
    .problem-band { grid-template-columns: 1fr; padding: 28px; }
    .compare-grid-tight { grid-template-columns: 1fr; }
    .marketing-header { flex-wrap: wrap; padding-bottom: 24px; }
    .marketing-nav { gap: 2px; flex-wrap: wrap; }
    .marketing-nav a { font-size: 0.85rem; padding: 7px 10px; }
    .creator-featured { grid-template-columns: 1fr; }
    .video-grid { grid-template-columns: repeat(2, 1fr); }
    .creator-rich-hero-grid,
    .creator-featured-rich,
    .creator-mid-grid,
    .creator-cta-band,
    .creator-featured-card { grid-template-columns: 1fr; }
    .creator-resource-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .creator-rich-hero-copy { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 639px) {
    .landing-shell, .simple-page, .creator-shell { width: calc(100% - 32px); }
    .login-screen {
        align-items: start;
        padding-top: 96px;
        padding-bottom: 24px;
    }
    .login-brand {
        position: fixed;
        top: 20px;
        left: 16px;
        z-index: 5;
        font-size: 1.2rem;
    }
    .login-modal {
        width: 100%;
    }
    .marketing-header {
        flex-wrap: nowrap;
        padding: 18px 0 24px;
    }
    .marketing-menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }
    .marketing-nav {
        position: absolute;
        top: calc(100% - 8px);
        right: 0;
        left: 0;
        z-index: 20;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 22px;
        background: rgba(255,255,255,0.98);
        box-shadow: var(--shadow-lg);
        backdrop-filter: blur(12px);
    }
    .marketing-nav.is-open {
        display: flex;
    }
    .marketing-nav a,
    .marketing-nav .nav-cta {
        width: 100%;
        margin: 0;
        justify-content: center;
        text-align: center;
    }
    .creator-overview-grid {
        grid-template-columns: 1fr;
    }
    .creator-showcase-list {
        grid-template-columns: 1fr;
    }
    .hero-copy h1 {
        font-size: clamp(2.7rem, 14vw, 4rem);
        max-width: none;
    }
    .hero-text {
        font-size: 1rem;
    }
    .hero-actions {
        width: 100%;
    }
    .hero-actions .button {
        width: 100%;
        justify-content: center;
    }
    .hero-badges {
        gap: 10px;
    }
    .hero-badges li {
        width: 100%;
        justify-content: center;
    }
    .hero-visual {
        min-height: auto;
    }
    .hero-image {
        width: 116%;
        max-width: 116%;
        margin-right: -8%;
        transform: none;
        border-radius: 22px;
    }
    .testimonial-grid-real { grid-template-columns: 1fr; }
    .final-cta-band { padding: 36px 28px; }
    .collection-grid { grid-template-columns: 1fr; }
    .video-grid { grid-template-columns: 1fr; }
    .creator-resource-grid { grid-template-columns: 1fr; }
    .creator-rich-topnav { align-items: flex-start; flex-direction: column; }
    .creator-rich-hero-grid { padding: 22px 18px 18px; }
    .creator-rich-hero-copy { gap: 20px; }
    .creator-copy h1 { font-size: clamp(2.8rem, 12vw, 3.6rem); }
    .creator-avatar-large { width: 116px; height: 116px; }
    .creator-mini-collection { grid-template-columns: 1fr; }
    .creator-mini-collection-image { width: 100%; height: 132px; }
    .creator-cta-band,
    .creator-hero-preview-copy,
    .creator-featured-copy,
    .creator-about-card { padding: 20px; }
    .login-card { padding: 28px 20px 22px; }
    .legal-card { padding: 24px 18px; border-radius: 24px; }
    .legal-grid { grid-template-columns: 1fr; }
    .footer-inner { align-items: flex-start; gap: 16px; }
}

/* --- Footer --- */
.landing-footer {
    border-top: 1px solid var(--line);
    margin-top: 64px;
    padding: 40px 0;
}
.footer-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer-nav {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}
.footer-nav a {
    padding: 6px 12px;
    border-radius: 99px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--muted);
    transition: color 0.15s;
}
.footer-nav a:hover { color: var(--text); }
.footer-copy {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0;
}

.legal-shell {
    padding: 40px 0 32px;
}
.legal-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    padding: 36px;
}
.legal-card h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    margin-bottom: 16px;
    max-width: 12ch;
}
.legal-lead {
    font-size: 1.05rem;
    max-width: 64ch;
    margin-bottom: 28px;
}
.legal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 28px;
}
.legal-section + .legal-section,
.legal-grid + .legal-section {
    margin-top: 24px;
}
.legal-card h2 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}
.legal-card article p + p {
    margin-top: 12px;
}
.legal-list {
    padding-left: 20px;
    color: var(--text-soft);
}
.legal-list li + li {
    margin-top: 10px;
}

/* Ensure hidden attribute actually hides elements (CSS reset safety) */
[hidden] { display: none !important; }

/* ─── Marketing page shared hero ───────────────────────────────────── */
.marketing-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 40px 0 64px;
}
.mhero-copy { display: flex; flex-direction: column; }
.mhero-copy h1 { margin-bottom: 20px; }
.text-accent { color: var(--accent); }
.marketing-hero-green .eyebrow-green { color: var(--green); }
.marketing-hero-ink .eyebrow-ink { color: var(--accent-ink); }
.eyebrow-green { color: var(--green) !important; }
.eyebrow-ink   { color: var(--accent-ink) !important; }
.button-green {
    background: var(--green);
    color: #fff;
    box-shadow: 0 6px 20px rgba(22,163,74,0.28);
}
.button-green:hover { box-shadow: 0 10px 28px rgba(22,163,74,0.38); }

/* ─── Parent UI mockup ──────────────────────────────────────────── */
.mhero-visual-parent {
    display: flex;
    align-items: center;
    justify-content: center;
}
.parent-hero-frame {
    width: 100%;
    max-width: 620px;
    padding: 10px;
    border-radius: 34px;
    background: linear-gradient(180deg, #f1fff5 0%, #ffffff 100%);
    border: 1px solid #bbf7d0;
    box-shadow: 0 28px 70px rgba(22, 101, 52, 0.12);
}
.parent-hero-image {
    display: block;
    width: 100%;
    border-radius: 26px;
    border: 1px solid rgba(187, 247, 208, 0.9);
    box-shadow: 0 18px 36px rgba(20, 83, 45, 0.08);
}

/* ─── Creator UI mockup ─────────────────────────────────────────── */
.mhero-visual-creator {
    display: flex;
    align-items: center;
    justify-content: center;
}
.creator-hero-frame {
    width: 100%;
    max-width: 660px;
    padding: 12px;
    border-radius: 34px;
    background: linear-gradient(180deg, #f2f3ff 0%, #ffffff 100%);
    border: 1px solid #d9dcff;
    box-shadow: 0 28px 70px rgba(31, 41, 95, 0.12);
}
.creator-hero-image {
    display: block;
    width: 100%;
    border-radius: 24px;
    border: 1px solid rgba(217, 220, 255, 0.9);
    box-shadow: 0 18px 36px rgba(31, 41, 95, 0.08);
}

/* ─── Features section ──────────────────────────────────────────── */
.features-section { padding: 72px 0; border-top: 1px solid var(--line); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card {
    padding: 28px 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.feature-card h3 { margin: 14px 0 8px; font-size: 1.05rem; }
.feature-card p { font-size: 0.9rem; }
.feature-card code {
    font-size: 0.82rem;
    background: #f3f4f8;
    padding: 2px 6px;
    border-radius: 5px;
    color: var(--accent-ink);
}
.feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}
.feature-icon .icon { width: 20px; height: 20px; }
.feature-icon-green { background: #dcfce7; color: var(--green); }
.feature-icon-ink   { background: #eff0ff; color: var(--accent-ink); }
.feature-icon-pink  { background: var(--accent-light); color: var(--accent); }

/* ─── Creator why section ───────────────────────────────────────── */
.creator-why-section { padding: 72px 0; border-top: 1px solid var(--line); }
.creator-demo-section { padding: 72px 0; border-top: 1px solid var(--line); }

/* ─── Pricing page ──────────────────────────────────────────────── */
.pricing-hero {
    padding: 40px 0 52px;
    text-align: center;
}
.pricing-hero h1 { margin-bottom: 18px; }
.pricing-lead {
    max-width: 540px;
    margin: 0 auto;
    font-size: 1.08rem;
}
.pricing-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.08fr 1fr;
    gap: 20px;
    align-items: start;
    margin-bottom: 72px;
}
.pricing-page-grid > .pricing-tier { display: block; }
.pricing-tier {
    padding: 32px 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    position: relative;
}
.pricing-tier-featured {
    background: #e8175d;
    border-color: #bf0d4a;
    box-shadow: 0 16px 48px rgba(232,23,93,0.28);
}
.tier-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 14px;
    border-radius: 99px;
}
.tier-header { margin-bottom: 24px; }
.tier-header h2 { font-size: 1.6rem; margin-bottom: 10px; }
.pricing-tier-featured .tier-header h2 { color: #fff; }
.tier-price { margin-bottom: 10px; }
.price-amount {
    font-family: "Space Grotesk", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: var(--text);
    line-height: 1;
}
.pricing-tier-featured .price-amount { color: #fff; }
.price-note {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted);
    margin-top: 4px;
}
.pricing-tier-featured .price-note { color: rgba(255,255,255,0.75); }
.tier-desc { font-size: 0.9rem; color: var(--muted); margin: 0; }
.pricing-tier-featured .tier-desc { color: rgba(255,255,255,0.8); }
.tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    border-top: 1px solid var(--line);
    padding-top: 20px;
}
.pricing-tier-featured .tier-features { border-top-color: rgba(255,255,255,0.2); }
.tier-features li {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 0;
    font-size: 0.91rem;
    font-weight: 600;
    color: var(--text-soft);
    border-bottom: 1px solid #f0f1f4;
}
.pricing-tier-featured .tier-features li { color: rgba(255,255,255,0.9); border-bottom-color: rgba(255,255,255,0.15); }
.tier-features li:last-child { border-bottom: none; }
.tier-features li::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--green);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
}
.pricing-tier-featured .tier-features li::before { background-color: rgba(255,255,255,0.3); }
.tier-features strong { color: var(--text); }
.pricing-tier-featured .tier-features strong { color: #fff; }
.tier-features code {
    font-size: 0.82rem;
    background: #f3f4f8;
    padding: 2px 6px;
    border-radius: 5px;
    color: var(--accent-ink);
}
.tier-cta { display: flex; flex-direction: column; align-items: stretch; gap: 10px; }
.tier-cta .button { text-align: center; }
.tier-cta form { display: block; }
.tier-cta form .button { width: 100%; }
.pricing-tier-featured .button-primary {
    background: #fff4bf;
    color: #221433;
    box-shadow: 0 14px 32px rgba(34,20,51,0.18);
}
.pricing-tier-featured .button-primary:hover {
    background: #ffe78a;
}
.tier-guarantee {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
    text-align: center;
    margin: 0;
}
.pricing-addon-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 32px;
    margin-bottom: 72px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
}
.pricing-addon-strip h2 { margin-bottom: 10px; }
.pricing-addon-strip p { margin: 0; max-width: 720px; }
.pricing-addon-actions { flex-shrink: 0; }

/* ─── Pricing FAQ ───────────────────────────────────────────────── */
.pricing-faq { padding: 72px 0; border-top: 1px solid var(--line); }
.pricing-faq h2 { text-align: center; margin-bottom: 44px; }
.faq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.faq-item { padding: 0; }
.faq-item h3 { font-size: 1rem; margin-bottom: 10px; }
.faq-item p { font-size: 0.9rem; }

/* ─── CTA strip ─────────────────────────────────────────────────── */
.pricing-cta-strip {
    background: linear-gradient(135deg, #0f1117 0%, #1a2072 60%, #35104a 100%);
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    text-align: center;
    margin-bottom: 64px;
    color: #fff;
}
.pricing-cta-strip .eyebrow { color: var(--accent); justify-content: center; }
.pricing-cta-strip h2 { color: #fff; margin-bottom: 24px; font-size: clamp(1.8rem,3vw,2.6rem); }
.pricing-cta-green { background: linear-gradient(135deg, #052e16 0%, #166534 60%, #14532d 100%); }
.pricing-cta-green .eyebrow { color: #4ade80; }
.pricing-cta-strip .hero-actions { justify-content: center; }
.creator-interest-section {
    padding: 72px 0;
    border-top: 1px solid var(--line);
}
.creator-interest-form {
    max-width: 760px;
    margin: 36px auto 0;
    padding: 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    display: grid;
    gap: 18px;
}
.creator-interest-form label {
    display: grid;
    gap: 8px;
    color: var(--text);
    font-weight: 600;
}
.creator-interest-form input,
.creator-interest-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px 16px;
    font: inherit;
    background: #fff;
    color: var(--text);
}
.creator-interest-form textarea {
    resize: vertical;
    min-height: 120px;
}
.page-creator {
    background:
        radial-gradient(circle at top center, rgba(116, 54, 255, 0.18), transparent 22%),
        linear-gradient(180deg, #06070b 0%, #090b12 100%);
    color: #f5f7fb;
}
.creator-shell-rich {
    width: min(1660px, calc(100% - 24px));
    color: #f5f7fb;
    background: linear-gradient(180deg, #090b12 0%, #0b0d15 100%);
    border-radius: 18px;
    padding: 12px;
    margin-top: 12px;
    box-shadow: 0 22px 60px rgba(5, 8, 16, 0.28);
}
/* ─── Creator Rich Page ──────────────────────────────────────────────── */
.creator-brand-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
}
.creator-rich-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.56rem;
    color: rgba(255,255,255,0.92);
    font-weight: 800;
}
.creator-topnav-cta {
    padding: 10px 18px;
    font-size: 0.82rem;
}
.creator-rich-profile {
    position: relative;
    flex-shrink: 0;
    align-self: flex-start;
}
.creator-verified-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #6c47ff;
    border: 3px solid #10131d;
    color: #fff;
}
.creator-verified-badge .icon {
    width: 12px;
    height: 12px;
}
.creator-stat-icon {
    display: block;
    width: 16px;
    height: 16px;
    margin-bottom: 6px;
    opacity: 0.6;
}
.creator-about-readmore {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.84rem;
    font-weight: 700;
    color: #cdbdff;
    text-decoration: none;
    transition: color 0.15s;
}
.creator-about-readmore:hover { color: #fff; }
.creator-contact-row {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    gap: 2px;
}
.creator-contact-row:last-child { border-bottom: none; }
.creator-contact-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(230,235,245,0.9);
}
.creator-contact-detail {
    font-size: 0.74rem;
    color: rgba(200,210,225,0.58);
}
.creator-rich-hero {
    background: linear-gradient(180deg, #19142a 0%, #10131c 72%, #0b0d14 100%);
    color: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.creator-rich-body {
    padding: 12px 0 0;
}
.creator-rich-topnav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.creator-rich-topnav nav {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.76);
    font-size: 0.62rem;
}
.creator-rich-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.5fr);
    gap: 24px;
    padding: 24px 18px 20px;
    align-items: stretch;
}
.creator-rich-hero-copy {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    min-width: 0;
    max-width: 760px;
}
.creator-rich-profile {
    flex-shrink: 0;
}
.creator-avatar-large {
    width: 104px;
    height: 104px;
    border-radius: 999px;
    object-fit: cover;
    box-shadow: 0 14px 30px rgba(0,0,0,0.22);
    border: 4px solid rgba(255,255,255,0.04);
}
.creator-copy {
    min-width: 0;
    max-width: 560px;
}
.creator-copy h1 {
    font-size: clamp(3.2rem, 5vw, 4.8rem);
    line-height: 0.94;
    margin-bottom: 8px;
    color: #fff;
    max-width: 10ch;
}
.creator-copy > p:not(.eyebrow):not(.creator-topic-line) {
    color: rgba(242,245,250,0.82);
    font-size: 0.86rem;
    line-height: 1.62;
    max-width: 58ch;
}
.creator-topic-line {
    color: #ff7bb0;
    font-weight: 700;
    font-size: 0.66rem;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}
.creator-hero-tagline {
    color: rgba(242,245,250,0.82);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 52ch;
    margin-bottom: 4px;
}
.creator-stat-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 18px 0 16px;
}
.creator-stat-chip {
    min-width: 108px;
    padding: 16px 18px 14px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.creator-stat-chip strong {
    display: block;
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}
.creator-stat-chip span {
    color: rgba(255,255,255,0.55);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.creator-hero-preview {
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    min-height: 100%;
}
.creator-hero-preview-thumb {
    position: relative;
    min-height: 248px;
}
.creator-hero-preview-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.creator-hero-preview-thumb span {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0,0,0,0.72);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
}
.creator-hero-preview-copy {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
}
.creator-hero-preview-copy h3 {
    font-size: 1.55rem;
    line-height: 1.05;
    color: #fff;
}
.creator-hero-preview-copy p:not(.eyebrow) {
    color: rgba(220,226,236,0.7);
    font-size: 0.82rem;
}
.creator-partner-strip {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
    background: #10131d;
    margin-top: 10px;
    padding: 22px 24px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.07);
}
.creator-partner-label {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.38);
    margin-right: 8px;
    white-space: nowrap;
}
.creator-fake-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.72);
}
.creator-fake-logo-mark {
    width: 28px;
    height: 28px;
    border-radius: 999px 999px 999px 6px;
    border: 2px solid rgba(255,255,255,0.28);
    background: rgba(255,255,255,0.04);
}
.creator-fake-logo strong {
    color: rgba(255,255,255,0.9);
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.creator-featured-rich {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
    gap: 18px;
    padding: 18px 0 0;
}
.creator-featured-card,
.creator-about-card,
.creator-cta-band {
    background: linear-gradient(180deg, #131722 0%, #0d111a 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    box-shadow: 0 16px 34px rgba(7, 10, 18, 0.18);
}
.creator-featured-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    overflow: hidden;
}
.creator-featured-thumb {
    position: relative;
}
.creator-featured-thumb img {
    width: 100%;
    height: 100%;
    min-height: 298px;
    object-fit: cover;
}
.creator-featured-thumb span {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0,0,0,0.68);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
}
.creator-featured-copy,
.creator-about-card {
    padding: 24px;
}
.creator-section-head-dark .eyebrow {
    color: #ff4d8d;
}
.creator-section-head-dark h2 {
    color: #f7f9fc;
}
.creator-featured-copy h2,
.creator-about-card h3,
.creator-cta-band h2,
.creator-resource-card strong,
.creator-mini-collection strong,
.collection-card h3,
.video-tile h3,
.creator-work-card h3 {
    color: #f7f9fc;
}
.creator-featured-copy p:not(.eyebrow),
.creator-about-card p,
.creator-resource-card p,
.creator-mini-collection span,
.creator-mini-row,
.collection-card p,
.collection-card small,
.video-tile p,
.creator-cta-copy p {
    color: rgba(220,226,236,0.7);
}
.creator-mid-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
    gap: 18px;
    padding: 18px 0;
    align-items: start;
}
.creator-resource-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.creator-resource-card,
.creator-mini-collection {
    background: linear-gradient(180deg, #111521 0%, #0d111b 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 12px 26px rgba(7, 10, 18, 0.14);
}
.creator-resource-card {
    min-height: 156px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.creator-resource-card small {
    margin-top: auto;
    color: rgba(255,255,255,0.48);
    font-size: 0.74rem;
    font-weight: 700;
}
.creator-resource-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(232, 23, 93, 0.16);
    color: #ff4d8d;
    flex-shrink: 0;
}
.creator-resource-icon .icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}
.creator-mini-collections {
    display: grid;
    gap: 12px;
}
.creator-mini-collection {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
}
.creator-mini-collection-image {
    width: 96px;
    height: 64px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
}
.creator-mini-collection-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.creator-about-long-copy {
    margin-top: 14px;
    font-size: 0.84rem;
    line-height: 1.72;
}
.creator-cta-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 24px;
    padding: 28px;
    margin-bottom: 22px;
    align-items: center;
}
.creator-cta-copy {
    min-width: 0;
}
.creator-cta-copy h2 {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.creator-work-card {
    min-width: 240px;
}
.creator-work-card h3 {
    margin-bottom: 12px;
}
.creator-collections,
.creator-latest {
    padding: 34px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.creator-copy h1,
.creator-copy p,
.creator-rich-topnav .button {
    color: inherit;
}
.collection-card,
.video-tile {
    background: linear-gradient(180deg, #111521 0%, #0d111b 100%);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 14px 28px rgba(7, 10, 18, 0.14);
    border-radius: 14px;
}
.collection-card a {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: #cdbdff;
}
.collection-card a:hover {
    color: #fff;
}
.video-tile {
    overflow: hidden;
}
.video-tile img {
    filter: saturate(0.95) contrast(1.02);
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.video-grid {
    gap: 16px;
}
.video-tile h3,
.video-tile p {
    padding-inline: 16px;
}
.video-tile h3 {
    padding-top: 12px;
}
.video-tile p {
    padding-bottom: 14px;
}
.creator-rich-topnav .button-primary {
    background: var(--accent);
}
.creator-rich-hero .button-secondary {
    background: rgba(255,255,255,0.97);
    color: #10131d;
    border-color: transparent;
    box-shadow: none;
}
.creator-rich-hero .button-primary,
.creator-rich-hero .button-secondary,
.creator-cta-band .button-primary,
.creator-featured-copy .button-primary {
    padding: 12px 20px;
    font-size: 0.86rem;
}
.creator-inline-check {
    color: #ff4d8d;
    margin-right: 6px;
}

.plan-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 24px;
    margin: 18px 0 22px;
    border: 1px solid #f2d6df;
    border-radius: 18px;
    background: linear-gradient(135deg, #fff8fb 0%, #ffffff 100%);
}
.plan-banner h2 { margin-bottom: 6px; }
.plan-banner p { margin: 0; color: var(--muted); }

/* ─── Responsive additions ──────────────────────────────────────── */
@media (max-width: 1279px) {
    .marketing-hero { grid-template-columns: 1fr; gap: 40px; }
    .pricing-page-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-addon-strip,
    .plan-banner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 639px) {
    .features-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .pricing-cta-strip { padding: 40px 28px; }
}

/* ─── Public Channel / Video / Directory pages ───────────────────── */
.marketing-section { max-width: 1100px; margin: 0 auto; padding: 60px 24px; }
.marketing-section h1 { font-size: clamp(1.6rem,3vw,2.4rem); margin-bottom: 8px; }
.marketing-section > p { color: var(--muted); margin-bottom: 40px; }
.marketing-section h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 24px; }

/* Channels directory grid */
.channels-directory {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}
.dir-channel-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.15s, border-color 0.15s;
}
.dir-channel-card:hover { box-shadow: var(--shadow-md); border-color: var(--accent); }
.dir-channel-card img { width: 48px; height: 48px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.dir-channel-card strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--text); }
.dir-channel-card span { display: block; font-size: 0.76rem; color: var(--muted); }
.dir-channel-card small { display: block; font-size: 0.72rem; color: var(--muted); margin-top: 2px; }

/* Channel public page header */
.ch-header {
    display: flex;
    align-items: center;
    gap: 28px;
    max-width: 1100px;
    margin: 48px auto 0;
    padding: 0 24px;
    flex-wrap: wrap;
}
.ch-avatar { width: 96px; height: 96px; border-radius: 20px; object-fit: cover; flex-shrink: 0; }
.ch-meta h1 { font-size: 1.8rem; font-weight: 800; margin: 0 0 4px; }
.ch-meta p { color: var(--muted); margin: 0 0 14px; }
.ch-meta { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
.ch-meta .button { margin-right: 8px; margin-top: 0; }

/* Public video grid */
.public-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.pub-video-card {
    text-decoration: none;
    color: inherit;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.15s, border-color 0.15s;
    display: flex;
    flex-direction: column;
}
.pub-video-card:hover { box-shadow: var(--shadow-md); border-color: var(--accent); }
.pub-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #000; }
.pub-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pub-duration {
    position: absolute;
    bottom: 6px; right: 6px;
    background: rgba(0,0,0,0.82);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
}
.pub-video-info { padding: 12px 14px; flex: 1; }
.pub-video-info h3 { font-size: 0.85rem; font-weight: 700; margin: 0 0 5px; line-height: 1.35; color: var(--text); }
.pub-video-info small { font-size: 0.72rem; color: var(--muted); }

/* Public watch page */
.watch-public-section {
    max-width: 900px;
    margin: 48px auto;
    padding: 0 24px;
}
.watch-iframe-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #000;
    margin-bottom: 24px;
}
.watch-iframe-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.watch-meta h1 { font-size: clamp(1.2rem,2.5vw,1.8rem); font-weight: 800; margin-bottom: 8px; }
.watch-channel { font-size: 0.9rem; color: var(--muted); margin-bottom: 6px; }
.watch-channel a { color: var(--accent); text-decoration: none; font-weight: 600; }
.watch-stats { font-size: 0.82rem; color: var(--muted); margin-bottom: 20px; }
.watch-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.watch-pitch { font-size: 0.88rem; color: var(--muted); border-top: 1px solid var(--line); padding-top: 16px; }
.watch-description { font-size: 0.86rem; color: var(--text-soft); line-height: 1.6; margin-bottom: 20px; white-space: pre-line; }

.ch-handle { color: var(--muted); font-size: 0.88rem; margin: 0 0 10px; }
.ch-description { font-size: 0.86rem; color: var(--text-soft); line-height: 1.6; margin: 8px 0 16px; max-width: 560px; }
.ch-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
