/* ===== MENTION BY NAME — DESIGN SYSTEM ===== */

/* --- Variables --- */
:root {
    --blue: #2563EB;
    --blue-light: #3B82F6;
    --blue-dark: #1D4ED8;
    --blue-glow: rgba(37, 99, 235, 0.15);
    --blue-glow-strong: rgba(37, 99, 235, 0.25);
    --navy: #0F172A;
    --slate-900: #0F172A;
    --slate-800: #1E293B;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748B;
    --slate-400: #94A3B8;
    --slate-300: #CBD5E1;
    --slate-200: #E2E8F0;
    --slate-100: #F1F5F9;
    --slate-50: #F8FAFC;
    --white: #FFFFFF;
    --bg: #F8FAFC;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

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

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 4px 16px rgba(0,0,0,0.10);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-blue: 0 4px 24px rgba(37,99,235,0.20);
    --shadow-blue-lg: 0 8px 48px rgba(37,99,235,0.30);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--slate-800);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--blue-dark); }

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

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

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--navy);
    line-height: 1.2;
    font-weight: 600;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); }
h4 { font-size: 1.125rem; }

p { color: var(--slate-600); }

.section-title {
    margin-bottom: 12px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--slate-500);
    font-size: 1.125rem;
    margin-bottom: 56px;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
}

.center { text-align: center; }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue-lg);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--blue);
    border: 2px solid var(--blue);
}

.btn-secondary:hover {
    background: var(--blue);
    color: var(--white);
}

/* --- Navigation --- */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(248, 250, 252, 0.90);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--slate-200);
}

.nav-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--navy);
}

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

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--slate-600);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--slate-700);
    border-radius: 2px;
    transition: var(--transition);
}

/* --- Hero --- */
.hero {
    min-height: calc(100vh - 68px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero-tag {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--blue-glow);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-title {
    margin-bottom: 20px;
    font-size: clamp(2.25rem, 6vw, 4rem);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--slate-600);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    z-index: 1;
    margin-top: 64px;
}

/* Audio Visualizer */
.audio-visualizer {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    height: 80px;
}

.audio-visualizer .bar {
    width: 6px;
    background: var(--blue);
    border-radius: 3px;
    animation: sound 1.2s ease-in-out infinite;
    box-shadow: 0 0 8px var(--blue-glow);
}

.audio-visualizer .bar:nth-child(1) { animation-delay: 0s; height: 30px; }
.audio-visualizer .bar:nth-child(2) { animation-delay: 0.15s; height: 55px; }
.audio-visualizer .bar:nth-child(3) { animation-delay: 0.30s; height: 40px; }
.audio-visualizer .bar:nth-child(4) { animation-delay: 0.45s; height: 70px; }
.audio-visualizer .bar:nth-child(5) { animation-delay: 0.60s; height: 45px; }

@keyframes sound {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.4); }
}

/* --- How It Works --- */
.how-it-works {
    padding: 100px 0;
    background: var(--white);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.step {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.step:hover {
    border-color: var(--blue-light);
    box-shadow: var(--shadow-blue);
    transform: translateY(-4px);
}

.step-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 16px;
    opacity: 0.3;
}

.step h3 {
    margin-bottom: 10px;
}

.step p {
    font-size: 0.9375rem;
    color: var(--slate-500);
}

/* --- Featured Stories --- */
.featured-stories {
    padding: 100px 0;
    background: var(--slate-50);
}

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

.story-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
}

.story-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--blue-light);
}

.story-audio {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--slate-50);
    border-radius: var(--radius);
}

.play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.play-btn:hover {
    background: var(--blue-dark);
    transform: scale(1.08);
}

.play-btn svg {
    width: 16px;
    height: 16px;
    margin-left: 2px;
}

.audio-wave {
    display: flex;
    align-items: center;
    gap: 3px;
    flex: 1;
    overflow: hidden;
}

.audio-wave span {
    display: block;
    width: 3px;
    height: 100%;
    background: var(--blue);
    border-radius: 2px;
    opacity: 0.3;
    animation: wave 1.4s ease-in-out infinite;
}

.audio-wave span:nth-child(1) { height: 60%; animation-delay: 0s; }
.audio-wave span:nth-child(2) { height: 80%; animation-delay: 0.1s; }
.audio-wave span:nth-child(3) { height: 45%; animation-delay: 0.2s; }
.audio-wave span:nth-child(4) { height: 90%; animation-delay: 0.3s; }
.audio-wave span:nth-child(5) { height: 55%; animation-delay: 0.4s; }
.audio-wave span:nth-child(6) { height: 70%; animation-delay: 0.5s; }
.audio-wave span:nth-child(7) { height: 40%; animation-delay: 0.6s; }
.audio-wave span:nth-child(8) { height: 85%; animation-delay: 0.7s; }
.audio-wave span:nth-child(9) { height: 50%; animation-delay: 0.8s; }
.audio-wave span:nth-child(10) { height: 65%; animation-delay: 0.9s; }

@keyframes wave {
    0%, 100% { transform: scaleY(1); opacity: 0.3; }
    50% { transform: scaleY(0.3); opacity: 0.7; }
}

.audio-duration {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--slate-500);
    white-space: nowrap;
}

.story-card h3 {
    margin-bottom: 10px;
}

.story-excerpt {
    font-size: 0.9375rem;
    color: var(--slate-500);
    margin-bottom: 16px;
    font-style: italic;
    line-height: 1.6;
}

.story-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.story-link:hover { gap: 8px; }

/* --- Podcast Section --- */
.podcast-section {
    padding: 100px 0;
    background: var(--navy);
    color: var(--white);
}

.podcast-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.podcast-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue-light);
    margin-bottom: 12px;
}

.podcast-section h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.podcast-section p {
    color: var(--slate-400);
    margin-bottom: 12px;
    line-height: 1.7;
}

.podcast-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.podcast-section .feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--slate-300);
    font-size: 0.9375rem;
}

.podcast-section .feature svg {
    width: 20px;
    height: 20px;
    color: var(--blue-light);
    flex-shrink: 0;
}

.podcast-card {
    background: var(--slate-800);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.podcast-artwork {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.podcast-artwork img {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    box-shadow: var(--shadow-blue-lg);
}

.podcast-info {
    padding: 24px;
}

.podcast-info h4 {
    color: var(--white);
    margin-bottom: 4px;
}

.podcast-info p {
    color: var(--slate-400);
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.podcast-player-mini {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mini-play {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.mini-play svg { width: 14px; height: 14px; margin-left: 2px; }

.mini-progress {
    flex: 1;
    height: 4px;
    background: var(--slate-700);
    border-radius: 2px;
    overflow: hidden;
}

.mini-bar {
    width: 35%;
    height: 100%;
    background: var(--blue-light);
    border-radius: 2px;
}

.mini-time {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--slate-400);
}

/* --- CTA Section --- */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    text-align: center;
}

.cta-content { max-width: 560px; margin: 0 auto; }

.cta-section h2 { color: var(--white); margin-bottom: 12px; font-size: clamp(1.75rem, 4vw, 2.5rem); }

.cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 1.0625rem;
    margin-bottom: 32px;
}

.cta-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}

.cta-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    outline: none;
}

.cta-form input:focus { box-shadow: 0 0 0 3px rgba(255,255,255,0.3); }

.cta-note {
    color: rgba(255,255,255,0.65);
    font-size: 0.875rem;
    margin-top: 16px;
}

.cta-note a { color: rgba(255,255,255,0.9); text-decoration: underline; }

/* --- Footer --- */
.footer {
    background: var(--navy);
    color: var(--slate-400);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: var(--slate-500);
    line-height: 1.7;
    margin-top: 12px;
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.footer-links h4 {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--slate-300);
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: var(--slate-500);
    font-size: 0.9375rem;
    margin-bottom: 10px;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid var(--slate-800);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--slate-600);
}

/* ===== ABOUT PAGE ===== */

.page-header {
    padding: 80px 0 60px;
    text-align: center;
    background: var(--white);
    border-bottom: 1px solid var(--slate-200);
}

.page-header .page-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--blue-glow);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.page-header h1 { margin-bottom: 16px; }

.page-subtitle {
    color: var(--slate-500);
    font-size: 1.125rem;
    max-width: 560px;
    margin: 0 auto;
}

/* --- Origin Story --- */
.origin-story { padding: 100px 0; background: var(--bg); }

.origin-content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 64px;
    align-items: center;
}

.origin-text h2 { margin-bottom: 20px; }

.origin-text p {
    color: var(--slate-600);
    margin-bottom: 16px;
    line-height: 1.8;
}

.origin-text blockquote {
    margin-top: 28px;
    padding: 20px 24px;
    border-left: 3px solid var(--blue);
    background: var(--blue-glow);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.origin-text blockquote p {
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-style: italic;
    margin: 0;
}

.origin-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    width: 100%;
    box-shadow: var(--shadow-sm);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--blue);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 8px;
}

.stat-arrow {
    font-size: 1.5rem;
    color: var(--blue);
}

/* --- What We Do --- */
.what-we-do { padding: 100px 0; background: var(--white); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.feature-card {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--blue-light);
    box-shadow: var(--shadow-blue);
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--blue-glow);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.feature-icon svg {
    width: 26px;
    height: 26px;
    color: var(--blue);
}

.feature-card h3 { margin-bottom: 8px; font-size: 1.0625rem; }

.feature-card p {
    font-size: 0.875rem;
    color: var(--slate-500);
    line-height: 1.6;
}

/* --- Philosophy --- */
.our-philosophy { padding: 100px 0; background: var(--slate-50); }

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.philosophy-text p {
    color: var(--slate-600);
    margin-bottom: 16px;
    line-height: 1.8;
}

.philosophy-text strong { color: var(--navy); }

.philosophy-quote blockquote.large {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow);
    position: relative;
}

blockquote.large .quote-mark {
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--blue);
    opacity: 0.2;
    position: absolute;
    top: 8px;
    left: 24px;
    line-height: 1;
}

blockquote.large p {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-style: italic;
    color: var(--navy);
    line-height: 1.5;
    margin-bottom: 20px;
    position: relative;
}

blockquote.large cite {
    font-size: 0.875rem;
    color: var(--slate-500);
    font-style: normal;
    font-weight: 500;
}

/* --- How It Works Detail --- */
.how-it-works-detail { padding: 100px 0; background: var(--white); }

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 48px;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    align-items: start;
    padding: 32px 0;
    border-bottom: 1px solid var(--slate-200);
    position: relative;
}

.process-step:last-child { border-bottom: none; }

.step-marker {
    width: 56px;
    height: 56px;
    background: var(--blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 { margin-bottom: 8px; }
.step-content p { color: var(--slate-600); line-height: 1.7; }

/* --- Team --- */
.team-section { padding: 100px 0; background: var(--slate-50); }

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.team-member {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: var(--blue-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.team-avatar span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue);
}

.team-member h3 { margin-bottom: 4px; }

.team-role {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.team-member p {
    font-size: 0.9375rem;
    color: var(--slate-500);
    line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    
    .nav-links {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        border-bottom: 1px solid var(--slate-200);
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
        gap: 20px;
    }
    
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .steps { grid-template-columns: 1fr 1fr; }
    .stories-grid { grid-template-columns: 1fr; }
    .podcast-content { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .origin-content { grid-template-columns: 1fr; }
    .philosophy-content { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .cta-form { flex-direction: column; }
}

@media (max-width: 480px) {
    .steps { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .hero-cta { flex-direction: column; }
}

/* ===== STORY PAGE ===== */

.story { padding: 80px 0 60px; }

.story-header {
    text-align: center;
    margin-bottom: 48px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.story-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--blue);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.story-header h1 { margin-bottom: 16px; }

.story-lead {
    font-size: 1.125rem;
    color: var(--slate-600);
    line-height: 1.7;
    margin-bottom: 16px;
}

.story-lead strong { color: var(--blue-dark); }

.story-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 0.875rem;
    color: var(--slate-500);
}

.story-meta .story-topic {
    background: var(--blue-glow);
    color: var(--blue);
    padding: 4px 12px;
    border-radius: 100px;
    font-weight: 500;
}

/* Story Audio Player */
.story-audio-player {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--navy);
    border-radius: var(--radius-xl);
    padding: 24px 28px;
    margin-bottom: 48px;
}

.play-btn-large {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: var(--shadow-blue);
}

.play-btn-large:hover {
    background: var(--blue-dark);
    transform: scale(1.08);
    box-shadow: var(--shadow-blue-lg);
}

.player-info { flex: 1; min-width: 0; }

.player-info h3 { color: var(--white); font-size: 1rem; margin-bottom: 2px; }
.player-info p { color: var(--slate-400); font-size: 0.875rem; margin-bottom: 12px; }

.player-progress { margin-top: 8px; }

.progress-bar {
    height: 4px;
    background: var(--slate-700);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: var(--blue-light);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.player-time {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--slate-500);
    margin-top: 4px;
}

/* Story Body */
.story-body {
    max-width: 720px;
    margin: 0 auto 48px;
}

.story-body p {
    color: var(--slate-700);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-body h2 {
    margin-top: 48px;
    margin-bottom: 16px;
}

.story-body blockquote {
    margin: 28px 0;
    padding: 20px 24px;
    border-left: 3px solid var(--blue);
    background: var(--blue-glow);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.story-body blockquote p {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--navy);
    margin: 0;
}

.story-body strong { color: var(--navy); }
.story-body em { font-style: italic; }

.story-closing {
    font-size: 1.25rem !important;
    font-family: var(--font-display) !important;
    text-align: center;
    color: var(--blue-dark) !important;
    margin-top: 48px !important;
    padding: 32px;
    background: var(--blue-glow);
    border-radius: var(--radius-lg);
}

/* Story CTA */
.story-cta {
    text-align: center;
    padding: 48px;
    background: var(--slate-50);
    border-radius: var(--radius-xl);
    margin-bottom: 64px;
}

.story-cta h3 {
    margin-bottom: 20px;
}

/* Story Comments */
.story-comments {
    max-width: 720px;
    margin: 0 auto 64px;
}

.story-comments h3 {
    font-size: 1.25rem;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--slate-200);
}

.comment {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--slate-200);
}

.comment:last-child { border-bottom: none; }

.comment-avatar {
    width: 40px;
    height: 40px;
    background: var(--blue-glow);
    color: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.comment-body { flex: 1; }

.comment-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 6px;
}

.comment-name {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.9375rem;
}

.comment-time {
    font-size: 0.8125rem;
    color: var(--slate-400);
}

.comment-body p {
    color: var(--slate-600);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* More Stories */
.more-stories {
    padding: 80px 0;
    background: var(--slate-50);
}

.more-stories h2 {
    text-align: center;
    margin-bottom: 40px;
}

.more-stories .story-card {
    display: block;
    text-decoration: none;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.more-stories .story-card:hover {
    border-color: var(--blue-light);
    box-shadow: var(--shadow-blue);
    transform: translateY(-4px);
}

.more-stories .story-card h3 {
    margin-bottom: 8px;
}

.more-stories .story-card p {
    color: var(--slate-500);
    font-size: 0.9375rem;
}

@media (max-width: 768px) {
    .story-audio-player {
        flex-direction: column;
        text-align: center;
    }
    .story-body { padding: 0 8px; }
    .story-cta { padding: 32px 20px; }
    .story-meta { flex-direction: column; gap: 8px; }
}
