/* =====================================================
   SOLVÉRINE — Soft Gradient Editorial Guide
   Color system: pale blue, lavender, sand transitions
   ===================================================== */

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    line-height: 1.7;
    color: #3d4a5c;
    background: #f9f8f6;
    letter-spacing: 0.02em;
}

a {
    color: #6d8ab5;
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover {
    color: #8aa3c9;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* === COLOR VARIABLES === */
:root {
    --sv-blue: #7c9bc9;
    --sv-blue-pale: #e8eef5;
    --sv-lavender: #b8a9c9;
    --sv-lavender-pale: #f0ecf5;
    --sv-sand: #d4b8a4;
    --sv-sand-pale: #f5efe8;
    --sv-bg: #f9f8f6;
    --sv-surface: #ffffff;
    --sv-text: #3d4a5c;
    --sv-text-light: #6b7a8c;
    --sv-border: #e2dcd4;
    --sv-shadow: rgba(60, 70, 90, 0.06);
}

/* === CONTAINER === */
.sv-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.sv-container--narrow {
    max-width: 800px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    line-height: 1.35;
    color: #2c3a4f;
    margin-bottom: 0.8rem;
}

h1 {
    font-size: 2.6rem;
    font-weight: 300;
    letter-spacing: -0.3px;
    color: #2c3a4f;
}

h2 {
    font-size: 1.8rem;
    font-weight: 350;
    letter-spacing: -0.2px;
    color: #3d4a5c;
}

h3 {
    font-size: 1.35rem;
    font-weight: 400;
    color: #3d4a5c;
}

p {
    margin-bottom: 1.25rem;
    color: #3d4a5c;
    line-height: 1.75;
}

ul, ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.4rem;
    color: #3d4a5c;
    line-height: 1.6;
}

/* === TOPBAR === */
.sv-topbar {
    background: linear-gradient(135deg, #e8eef5 0%, #f0ecf5 50%, #f5efe8 100%);
    border-bottom: 1px solid var(--sv-border);
    padding: 10px 0;
}

.sv-topbar__text {
    font-size: 0.82rem;
    color: var(--sv-text-light);
    margin: 0;
    line-height: 1.5;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* === HEADER === */
.sv-header {
    background: var(--sv-surface);
    border-bottom: 1px solid var(--sv-border);
    position: sticky;
    top: 0;
    z-index: 900;
}

.sv-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
}

.sv-logo__img {
    display: block;
}

/* Menu Toggle */
.sv-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    gap: 5px;
}

.sv-menu-toggle__bar {
    width: 24px;
    height: 2px;
    background: var(--sv-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Navigation */
.sv-nav__list {
    list-style: none;
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
}

.sv-nav__item {
    margin: 0;
}

.sv-nav__link {
    display: block;
    padding: 10px 16px;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--sv-text);
    letter-spacing: 0.3px;
    transition: background 0.2s ease;
}

.sv-nav__link:hover {
    background: var(--sv-blue-pale);
    color: var(--sv-blue);
    border-radius: 4px;
}

/* === BUTTONS === */
.sv-btn {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid var(--sv-border);
    border-radius: 24px;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    letter-spacing: 0.3px;
    background: var(--sv-surface);
    color: var(--sv-text);
}

.sv-btn--primary {
    background: linear-gradient(135deg, var(--sv-blue) 0%, var(--sv-lavender) 100%);
    color: #fff;
    border: none;
}

.sv-btn--primary:hover {
    background: linear-gradient(135deg, var(--sv-blue) 0%, var(--sv-lavender) 100%);
    box-shadow: 0 4px 16px rgba(124, 155, 201, 0.3);
    transform: translateY(-1px);
    color: #fff;
}

.sv-btn--outline {
    background: transparent;
    border: 1px solid var(--sv-blue);
    color: var(--sv-blue);
}

.sv-btn--outline:hover {
    background: var(--sv-blue);
    color: #fff;
}

.sv-btn--sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.sv-btn--lg {
    padding: 14px 36px;
    font-size: 0.95rem;
}

/* === HERO (Storytelling #9) === */
.sv-hero {
    padding: 5rem 0 4rem;
    background: linear-gradient(180deg, #e8eef5 0%, #f9f8f6 100%);
    position: relative;
}

.sv-hero__inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.sv-hero__label {
    display: inline-block;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sv-text-light);
    margin-bottom: 1.5rem;
}

.sv-hero h1 {
    margin-bottom: 1.5rem;
}

.sv-hero__lead {
    font-size: 1.1rem;
    color: var(--sv-text-light);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.sv-hero__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 3rem 0 2.5rem;
}

.sv-hero__step {
    background: var(--sv-surface);
    border: 1px solid var(--sv-border);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.sv-hero__step:hover {
    box-shadow: 0 8px 24px var(--sv-shadow);
}

.sv-hero__step-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--sv-blue-pale) 0%, var(--sv-lavender-pale) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--sv-blue);
}

.sv-hero__step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.sv-hero__step p {
    font-size: 0.9rem;
    color: var(--sv-text-light);
    margin: 0;
}

.sv-hero__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

/* === ANCHOR NAV (#9) === */
.sv-anchor-nav {
    background: var(--sv-surface);
    border-bottom: 1px solid var(--sv-border);
    padding: 0;
    position: sticky;
    top: 64px;
    z-index: 800;
}

.sv-anchor-nav__list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 0;
    padding: 0;
    overflow-x: auto;
}

.sv-anchor-nav__item {
    margin: 0;
    flex-shrink: 0;
}

.sv-anchor-nav__link {
    display: block;
    padding: 12px 20px;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.85rem;
    color: var(--sv-text-light);
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.sv-anchor-nav__link:hover,
.sv-anchor-nav__link--active {
    color: var(--sv-blue);
    border-bottom-color: var(--sv-blue);
}

/* === SECTIONS === */
.sv-section {
    padding: 4rem 0;
}

.sv-section--alt {
    background: #f5f3f0;
}

.sv-section--light {
    background: var(--sv-surface);
}

.sv-section--gradient {
    background: linear-gradient(180deg, #e8eef5 0%, #f9f8f6 100%);
}

.sv-section__title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.sv-section__title h2 {
    margin-bottom: 0.8rem;
}

.sv-section__subtitle {
    font-size: 1rem;
    color: var(--sv-text-light);
    max-width: 650px;
    margin: 0 auto;
}

.sv-section__content {
    max-width: 850px;
    margin: 0 auto;
}

.sv-section__content p {
    margin-bottom: 1.25rem;
}

/* === STORY CARDS (Storytelling #9) === */
.sv-story-cards {
    display: grid;
    gap: 2rem;
}

.sv-story-cards--2 {
    grid-template-columns: 1fr 1fr;
}

.sv-story-cards--3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.sv-card {
    background: var(--sv-surface);
    border: 1px solid var(--sv-border);
    border-radius: 16px;
    padding: 2rem;
    transition: box-shadow 0.3s ease;
}

.sv-card:hover {
    box-shadow: 0 8px 24px var(--sv-shadow);
}

.sv-card__title {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.sv-card__text {
    font-size: 0.95rem;
    color: var(--sv-text-light);
    margin: 0;
}

/* === CRITERIA NARRATIVE CARDS === */
.sv-criteria-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.sv-criteria-card {
    background: var(--sv-surface);
    border: 1px solid var(--sv-border);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 3px solid var(--sv-blue);
}

.sv-criteria-card__title {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--sv-blue);
    margin-bottom: 0.5rem;
}

.sv-criteria-card__text {
    font-size: 0.9rem;
    color: var(--sv-text-light);
    margin: 0;
}

/* === PLATFORM CARDS === */
.sv-platforms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.sv-platform-card {
    background: var(--sv-surface);
    border: 1px solid var(--sv-border);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.3s ease;
}

.sv-platform-card:hover {
    box-shadow: 0 8px 24px var(--sv-shadow);
}

.sv-platform-card__logo {
    max-width: 100px;
    height: auto;
    margin: 0 auto 1rem;
}

.sv-platform-card__title {
    text-align: center;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--sv-text);
    margin-bottom: 0.5rem;
}

.sv-platform-card__meta {
    text-align: center;
    font-size: 0.8rem;
    color: var(--sv-text-light);
    margin-bottom: 1rem;
}

.sv-platform-card__meta span {
    display: block;
    margin-bottom: 0.2rem;
}

.sv-platform-card__reading {
    font-size: 0.92rem;
    color: var(--sv-text);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.sv-platform-card__criteria {
    margin-bottom: 1rem;
}

.sv-platform-card__criteria-title {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--sv-lavender);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sv-platform-card__criteria-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.sv-platform-card__criteria-list li {
    display: inline-block;
    font-size: 0.82rem;
    color: var(--sv-text-light);
    background: var(--sv-blue-pale);
    padding: 3px 10px;
    border-radius: 12px;
    margin: 0;
}

.sv-platform-card__source {
    font-size: 0.88rem;
    color: var(--sv-text-light);
    font-style: italic;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.sv-platform-card__action {
    margin-top: auto;
    text-align: center;
}

/* === FAQ === */
.sv-faq {
    max-width: 750px;
    margin: 0 auto;
}

.sv-faq__item {
    border: 1px solid var(--sv-border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.sv-faq__question {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--sv-text);
    background: var(--sv-surface);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
    list-style: none;
}

.sv-faq__question::-webkit-details-marker {
    display: none;
}

.sv-faq__question:hover {
    background: var(--sv-blue-pale);
}

.sv-faq__question::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--sv-blue);
    transition: transform 0.3s ease;
}

.sv-faq__item[open] .sv-faq__question::after {
    transform: rotate(45deg);
}

.sv-faq__answer {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.92rem;
    color: var(--sv-text-light);
    line-height: 1.7;
}

.sv-faq__answer p {
    margin-bottom: 0.75rem;
    font-size: 0.92rem;
    color: var(--sv-text-light);
}

.sv-faq__answer p:last-child {
    margin-bottom: 0;
}

/* === TRANSPARENCY SECTION === */
.sv-transparency {
    background: linear-gradient(135deg, #e8eef5 0%, #f0ecf5 50%, #f5efe8 100%);
    border-radius: 16px;
    padding: 2.5rem;
}

.sv-transparency p {
    font-size: 0.95rem;
}

/* === CTA BLOCK (#7 end-of-section) === */
.sv-cta {
    background: var(--sv-surface);
    border: 1px solid var(--sv-border);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    margin-top: 2rem;
}

.sv-cta__title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.sv-cta__text {
    font-size: 0.95rem;
    color: var(--sv-text-light);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* === AGE GATE === */
.sv-age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 58, 79, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.sv-age-gate--visible {
    display: flex;
}

.sv-age-gate__panel {
    background: var(--sv-surface);
    border-radius: 20px;
    padding: 3rem;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(44, 58, 79, 0.15);
    animation: svFadeUp 0.35s ease;
}

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

.sv-age-gate__icon {
    font-size: 3rem;
    font-weight: 700;
    color: var(--sv-lavender);
    margin-bottom: 1rem;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--sv-lavender-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.sv-age-gate__title {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.sv-age-gate__text {
    font-size: 0.92rem;
    color: var(--sv-text-light);
    margin-bottom: 2rem;
}

.sv-age-gate__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.sv-age-gate__actions .sv-btn {
    min-width: 100px;
}

/* === COOKIES BANNER === */
.sv-cookies {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9998;
    max-width: 380px;
    width: calc(100% - 40px);
}

.sv-cookies--visible {
    display: block;
    animation: svFadeUp 0.35s ease;
}

.sv-cookies__panel {
    background: var(--sv-surface);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(44, 58, 79, 0.12);
    border: 1px solid var(--sv-border);
}

.sv-cookies__title {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.sv-cookies__text {
    font-size: 0.85rem;
    color: var(--sv-text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.sv-cookies__actions {
    display: flex;
    gap: 8px;
}

.sv-cookies__actions .sv-btn {
    flex: 1;
}

.sv-cookies__more {
    margin-top: 0.75rem;
    margin-bottom: 0;
    font-size: 0.78rem;
    text-align: center;
}

/* === FOOTER === */
.sv-footer {
    background: #ece8e2;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    border-top: 1px solid var(--sv-border);
}

.sv-footer__disclosure {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
}

.sv-footer__disclosure-title {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--sv-text);
    margin-bottom: 0.75rem;
}

.sv-footer__disclosure p {
    font-size: 0.88rem;
    color: var(--sv-text-light);
    margin: 0;
    line-height: 1.6;
}

.sv-footer__resources {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--sv-border);
}

.sv-footer__resource-link {
    flex: 1;
    min-width: calc(25% - 1rem);
    max-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(61, 74, 92, 0.08);
    padding: 1.25rem;
    border-radius: 12px;
    transition: background 0.3s ease;
}

.sv-footer__resource-link:hover {
    background: rgba(61, 74, 92, 0.15);
}

.sv-footer__resource-link img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.sv-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.sv-footer__col-title {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--sv-text);
    margin-bottom: 0.75rem;
}

.sv-footer__col-text {
    font-size: 0.88rem;
    color: var(--sv-text-light);
    margin: 0;
}

.sv-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sv-footer__list li {
    margin-bottom: 0.4rem;
}

.sv-footer__list a {
    font-size: 0.88rem;
    color: var(--sv-text-light);
}

.sv-footer__list a:hover {
    color: var(--sv-blue);
}

.sv-footer__bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--sv-border);
}

.sv-footer__bottom p {
    font-size: 0.82rem;
    color: var(--sv-text-light);
    margin: 0;
}

/* === PRE-FOOTER === */
.sv-pre-footer {
    padding: 2rem 0;
    text-align: center;
}

.sv-pre-footer p {
    font-size: 0.92rem;
    color: var(--sv-text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* === CONTENT PAGE STYLES === */
.sv-content-page {
    padding: 3rem 0;
}

.sv-content-page h1 {
    margin-bottom: 1.5rem;
}

.sv-content-page h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.sv-content-page h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.sv-content-page p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.sv-content-page ul, .sv-content-page ol {
    margin-bottom: 1.25rem;
}

.sv-content-page li {
    margin-bottom: 0.5rem;
}

.sv-content-page blockquote {
    border-left: 3px solid var(--sv-blue);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--sv-blue-pale);
    border-radius: 0 8px 8px 0;
}

.sv-content-page blockquote p {
    margin: 0;
    font-style: italic;
    color: var(--sv-text-light);
}

/* === CONTACT PAGE === */
.sv-contact-info {
    background: var(--sv-surface);
    border: 1px solid var(--sv-border);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.sv-contact-info__label {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--sv-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.sv-contact-info__value {
    font-size: 1.1rem;
    color: var(--sv-text);
}

/* === BREADCRUMB === */
.sv-breadcrumb {
    font-size: 0.85rem;
    color: var(--sv-text-light);
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--sv-border);
}

.sv-breadcrumb a {
    color: var(--sv-text-light);
}

.sv-breadcrumb a:hover {
    color: var(--sv-blue);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .sv-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }

    .sv-container {
        padding: 0 16px;
    }

    .sv-menu-toggle {
        display: flex;
    }

    .sv-nav {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--sv-surface);
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .sv-nav--open {
        max-height: 100vh;
        overflow-y: auto;
    }

    .sv-nav__list {
        flex-direction: column;
        width: 100%;
        border-top: 1px solid var(--sv-border);
    }

    .sv-nav__item {
        width: 100%;
        border-bottom: 1px solid var(--sv-border);
    }

    .sv-nav__link {
        padding: 16px 20px;
        font-size: 1rem;
    }

    /* Hero */
    .sv-hero {
        padding: 3rem 0 2.5rem;
    }

    .sv-hero__steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .sv-hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .sv-hero__actions .sv-btn {
        width: 100%;
        max-width: 300px;
    }

    /* Section */
    .sv-section {
        padding: 2.5rem 0;
    }

    /* Platform cards */
    .sv-platforms {
        grid-template-columns: 1fr;
    }

    /* Story cards */
    .sv-story-cards--2,
    .sv-story-cards--3 {
        grid-template-columns: 1fr;
    }

    /* Criteria grid */
    .sv-criteria-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .sv-footer__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .sv-footer__resources {
        gap: 0.75rem;
    }

    .sv-footer__resource-link {
        min-width: calc(50% - 0.75rem);
        max-width: none;
    }

    /* Age gate */
    .sv-age-gate__panel {
        padding: 2rem;
    }

    .sv-age-gate__actions {
        flex-direction: column;
    }

    .sv-age-gate__actions .sv-btn {
        width: 100%;
    }

    /* Cookies */
    .sv-cookies {
        bottom: 10px;
        right: 10px;
        left: 10px;
        width: auto;
        max-width: none;
    }

    /* Anchor nav */
    .sv-anchor-nav__list {
        justify-content: flex-start;
    }

    .sv-anchor-nav__link {
        padding: 10px 14px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .sv-footer__resource-link {
        min-width: 100%;
    }
}

/* === CLEAN UTILITIES === */
.sv-mt-2 { margin-top: 2rem; }
.sv-mb-2 { margin-bottom: 2rem; }
.sv-text-center { text-align: center; }
.sv-text-muted { color: var(--sv-text-light); }
