/* ================================================
   0. FONT IMPORT
   ================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ================================================
   1. DESIGN TOKENS
   ================================================ */
:root {
    /* Brand */
    --color-brand: #004aad;
    --color-brand-dark: #003680;
    --color-brand-light: #3374c4;
    --color-brand-subtle: #e8f0fe;

    /* Neutrals */
    --color-neutral-950: #0a0a0b;
    --color-neutral-900: #111113;
    --color-neutral-800: #1c1c1f;
    --color-neutral-700: #2e2e33;
    --color-neutral-600: #46464f;
    --color-neutral-500: #6b6b76;
    --color-neutral-400: #9090a0;
    --color-neutral-300: #c0c0cc;
    --color-neutral-200: #e0e0e8;
    --color-neutral-100: #f2f2f5;
    --color-neutral-50: #f9f9fb;
    --color-white: #ffffff;

    /* Warm */
    --color-warm-bg: #fdf8f3;

    /* Semantic */
    --color-text-primary: var(--color-neutral-900);
    --color-text-secondary: #444444;
    --color-text-tertiary: var(--color-neutral-400);
    --color-text-inverse: var(--color-white);
    --color-surface: var(--color-white);
    --color-surface-raised: var(--color-neutral-50);
    --color-border: var(--color-neutral-200);

    /* Legacy aliases for legal pages */
    --primary: #004aad;
    --primary-color: #004aad;
    --primary-dark: #003680;
    --primary-light: #e8f0fe;
    --text-dark: var(--color-neutral-900);
    --text-light: var(--color-neutral-500);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --text-xs:   clamp(0.75rem, 0.7rem + 0.15vw, 0.8125rem);
    --text-sm:   clamp(0.8125rem, 0.78rem + 0.15vw, 0.875rem);
    --text-base: clamp(0.9375rem, 0.9rem + 0.15vw, 1rem);
    --text-lg:   clamp(1.0625rem, 1rem + 0.2vw, 1.125rem);
    --text-xl:   clamp(1.25rem, 1.15rem + 0.3vw, 1.375rem);
    --text-2xl:  clamp(1.5rem, 1.3rem + 0.6vw, 1.875rem);
    --text-3xl:  clamp(1.875rem, 1.5rem + 1.2vw, 2.5rem);
    --text-4xl:  clamp(2.25rem, 1.8rem + 1.5vw, 3.25rem);
    --text-5xl:  clamp(2.75rem, 2rem + 2.5vw, 4.5rem);

    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;

    --leading-tight: 1.1;
    --leading-snug: 1.25;
    --leading-normal: 1.5;
    --leading-relaxed: 1.7;

    --tracking-tighter: -0.04em;
    --tracking-tight: -0.02em;
    --tracking-normal: 0;
    --tracking-wide: 0.02em;
    --tracking-wider: 0.06em;

    /* Spacing */
    --space-1:  0.25rem;
    --space-2:  0.5rem;
    --space-3:  0.75rem;
    --space-4:  1rem;
    --space-5:  1.25rem;
    --space-6:  1.5rem;
    --space-8:  2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;
    --section-py: clamp(4rem, 3rem + 4vw, 7.5rem);
    --section-px: clamp(1.25rem, 1rem + 1vw, 2rem);

    /* Layout */
    --max-width: 1120px;
    --max-width-narrow: 720px;
    --header-height: 64px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-brand: 0 8px 32px rgba(0, 74, 173, 0.25);

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 150ms var(--ease);
    --transition-base: 250ms var(--ease);
    --transition-slow: 400ms var(--ease);
}

/* ================================================
   2. RESET & BASE
   ================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    color: var(--color-text-primary);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

/* ================================================
   3. UTILITY CLASSES
   ================================================ */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--section-px);
}

.text-center {
    text-align: center;
}

/* ================================================
   4. SECTION HEADER (reusable)
   ================================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-header__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--color-brand);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    margin-bottom: var(--space-3);
}

.section-header__eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 3px;
    background: var(--color-brand);
    border-radius: 2px;
}

.section-header__eyebrow--light {
    color: rgba(255, 255, 255, 0.6);
}

.section-header__eyebrow--light::before {
    background: rgba(255, 255, 255, 0.4);
}

.section-header__title {
    font-size: var(--text-3xl);
    font-weight: var(--weight-bold);
    color: var(--color-text-primary);
    letter-spacing: var(--tracking-tighter);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-4);
}

.section-header__title--light {
    color: var(--color-white);
}

.section-header__subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    line-height: var(--leading-normal);
    max-width: 560px;
    margin: 0 auto;
}

.section-header__subtitle--light {
    color: rgba(255, 255, 255, 0.7);
}

/* ================================================
   5. HEADER & NAVIGATION
   ================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background: #f5f5f7;
    transition: background var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
    border-bottom: 1px solid transparent;
}

.header--scrolled {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom-color: var(--color-border);
    box-shadow: var(--shadow-xs);
}

.header--scrolled .header__logo-text {
    color: var(--color-text-primary);
}

.header--scrolled .header__link {
    color: var(--color-text-secondary);
}

.header--scrolled .header__link:hover {
    color: var(--color-text-primary);
}

.header--scrolled .header__link--cta {
    color: var(--color-white) !important;
}

.header--scrolled .header__hamburger span {
    background: var(--color-text-primary);
}

.header__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    text-decoration: none;
    z-index: 10;
}

.header__logo-img {
    height: 32px;
    width: auto;
}

.header__logo-text {
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
    color: var(--color-brand);
    letter-spacing: var(--tracking-tight);
    transition: color var(--transition-base);
}

.header__links {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.header__link {
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--color-neutral-600);
    transition: color var(--transition-fast);
}

.header__link:hover {
    color: var(--color-neutral-950);
}

.header__link--active {
    color: var(--color-brand) !important;
}

.header__link--cta {
    background: var(--color-brand);
    color: var(--color-white) !important;
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.header__link--cta:hover {
    background: var(--color-brand-dark);
    transform: scale(1.03);
}

/* Hamburger */
.header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 4px;
}

.header__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-neutral-950);
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.header__hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header__hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.header__hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ================================================
   6. HERO SECTION
   ================================================ */
.hero {
    position: relative;
    background: #f5f5f7;
    padding: calc(var(--header-height) + var(--space-8)) 0 var(--space-4) 0;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero__lottie-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 60%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
}

.hero__bg-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 50%, rgba(0, 74, 173, 0.08) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
}

.hero__container {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-16);
    align-items: center;
}

.hero__content {
    z-index: 1;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    color: var(--color-brand);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    margin-bottom: var(--space-5);
    padding: var(--space-3) var(--space-6);
    border: 2px solid var(--color-brand);
    border-radius: var(--radius-full);
    background: rgba(0, 74, 173, 0.08);
}

.hero__title {
    font-size: clamp(1.75rem, 1.4rem + 1.2vw, 2.75rem);
    font-weight: var(--weight-bold);
    background: linear-gradient(135deg, #004aad 0%, #3374c4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: var(--leading-snug);
    letter-spacing: var(--tracking-tighter);
    margin-bottom: var(--space-4);
}

.hero__subtitle {
    font-size: var(--text-xl);
    font-weight: var(--weight-semibold);
    color: var(--color-neutral-700);
    margin-bottom: var(--space-3);
}

.hero__description {
    font-size: var(--text-lg);
    color: var(--color-neutral-600);
    line-height: var(--leading-relaxed);
    max-width: 480px;
    margin-bottom: var(--space-4);
}

.hero__long-desc {
    font-size: var(--text-base);
    color: var(--color-neutral-500);
    line-height: var(--leading-relaxed);
    max-width: 480px;
    margin-bottom: var(--space-10);
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-sans);
    font-weight: var(--weight-medium);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn--primary {
    background: var(--color-brand);
    color: var(--color-white);
    border-radius: var(--radius-full);
    box-shadow: 0 0 0 0 rgba(0, 74, 173, 0);
}

.btn--primary:hover {
    background: var(--color-brand-light);
    box-shadow: var(--shadow-brand);
    transform: translateY(-1px);
}

.btn--outline {
    background: transparent;
    color: var(--color-brand);
    border: 2px solid var(--color-brand);
    border-radius: var(--radius-full);
}

.btn--outline:hover {
    background: var(--color-brand);
    color: var(--color-white);
    transform: translateY(-1px);
}

.btn--ghost {
    background: transparent;
    color: var(--color-neutral-600);
}

.btn--ghost:hover {
    color: var(--color-neutral-950);
}

.btn--ghost svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-fast);
}

.btn--ghost:hover svg {
    transform: translateX(4px);
}

.btn--lg {
    padding: 14px 32px;
    font-size: var(--text-base);
}

/* Hero visual */
.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.hero__hero-img {
    max-width: 380px;
    max-height: 420px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.15));
    animation: hero-float 6s ease-in-out infinite;
}

/* Scroll indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-neutral-400);
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    letter-spacing: var(--tracking-wide);
    animation: scroll-bounce 2s ease-in-out infinite;
    z-index: 2;
}

.hero__scroll-indicator svg {
    width: 20px;
    height: 20px;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 0.5; }
}

/* ================================================
   7. ABOUT SECTION
   ================================================ */
.about {
    padding: var(--section-py) var(--section-px);
    background: var(--color-white);
}

.about__body {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    text-align: center;
}

.about__body p {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-4);
}

.about__body p:last-child {
    margin-bottom: 0;
}

/* ================================================
   8. WHY NEWSROLL SECTION
   ================================================ */
.why-newsroll {
    position: relative;
    padding: var(--section-py) var(--section-px);
    background: var(--color-neutral-950);
    overflow: hidden;
}

.why-newsroll__lottie-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 60%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.12;
}

.why-newsroll__glow {
    position: absolute;
    width: 50%;
    height: 60%;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.why-newsroll__glow--left {
    top: -20%;
    left: -10%;
    background: radial-gradient(ellipse, rgba(0, 74, 173, 0.2) 0%, transparent 70%);
}

.why-newsroll__glow--right {
    bottom: -20%;
    right: -10%;
    background: radial-gradient(ellipse, rgba(0, 74, 173, 0.15) 0%, transparent 70%);
}

.why-newsroll__container {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
}

.why-newsroll__header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.why-newsroll__title {
    font-size: var(--text-4xl);
    font-weight: var(--weight-bold);
    color: var(--color-white);
    letter-spacing: var(--tracking-tighter);
}

.why-newsroll__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

.why-card {
    text-align: center;
    padding: var(--space-10) var(--space-6);
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base), border-color var(--transition-base);
    box-shadow: 0 0 20px rgba(0, 74, 173, 0.05);
}

.why-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 74, 173, 0.3);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 74, 173, 0.1);
}

.why-card--wide {
    grid-column: 1 / -1;
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
}

.why-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-5);
    background: linear-gradient(135deg, var(--color-brand) 0%, var(--color-brand-light) 100%);
    border-radius: var(--radius-lg);
    display: grid;
    place-items: center;
    color: var(--color-white);
    box-shadow: 0 8px 24px rgba(0, 74, 173, 0.3);
}

.why-card__icon svg {
    width: 28px;
    height: 28px;
}

.why-card__title {
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
    color: var(--color-white);
    letter-spacing: var(--tracking-tight);
    margin-bottom: var(--space-3);
}

.why-card__desc {
    font-size: var(--text-base);
    color: var(--color-neutral-400);
    line-height: var(--leading-relaxed);
}

/* ================================================
   9. HOW IT WORKS SECTION
   ================================================ */
.how-it-works {
    padding: var(--section-py) var(--section-px);
    background: var(--color-white);
}

.how-it-works__steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-4);
}

.step-card {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: var(--space-10) var(--space-6);
    background: var(--color-neutral-50);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.step-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-brand) 0%, var(--color-brand-light) 100%);
    color: var(--color-white);
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-5);
    box-shadow: var(--shadow-brand);
}

.step-card__title {
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
    color: var(--color-text-primary);
    letter-spacing: var(--tracking-tight);
    margin-bottom: var(--space-3);
}

.step-card__desc {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: var(--leading-relaxed);
}

.step-card__connector {
    display: flex;
    align-items: center;
    padding-top: var(--space-16);
    color: var(--color-neutral-300);
}

.step-card__connector svg {
    width: 40px;
    height: 20px;
}

/* ================================================
   10. COVERAGE SECTION
   ================================================ */
.coverage {
    padding: var(--section-py) var(--section-px);
    background: var(--color-neutral-50);
}

.coverage__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3);
    max-width: 800px;
    margin: 0 auto;
}

.coverage__tag {
    display: inline-flex;
    align-items: center;
    padding: var(--space-3) var(--space-6);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: var(--text-base);
    font-weight: var(--weight-medium);
    color: var(--color-text-primary);
    transition: all var(--transition-base);
}

.coverage__tag:hover {
    background: var(--color-brand);
    color: var(--color-white);
    border-color: var(--color-brand);
    transform: translateY(-2px);
    box-shadow: var(--shadow-brand);
}

/* ================================================
   11. FOR JOURNALISTS SECTION
   ================================================ */
.for-journalists {
    padding: var(--section-py) var(--section-px);
    background: var(--color-white);
}

.for-journalists__intro {
    text-align: center;
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    line-height: var(--leading-relaxed);
    max-width: var(--max-width-narrow);
    margin: calc(-1 * var(--space-8)) auto var(--space-12);
}

.for-journalists__benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-12);
}

.benefit-card {
    padding: var(--space-8);
    background: var(--color-neutral-50);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.benefit-card__icon {
    width: 48px;
    height: 48px;
    background: var(--color-brand-subtle);
    border-radius: var(--radius-md);
    display: grid;
    place-items: center;
    color: var(--color-brand);
    margin-bottom: var(--space-4);
}

.benefit-card__icon svg {
    width: 24px;
    height: 24px;
}

.benefit-card__title {
    font-size: var(--text-lg);
    font-weight: var(--weight-bold);
    color: var(--color-text-primary);
    letter-spacing: var(--tracking-tight);
    margin-bottom: var(--space-2);
}

.benefit-card__desc {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: var(--leading-relaxed);
}

.for-journalists__cta {
    text-align: center;
    padding: var(--space-12) var(--space-8);
    background: var(--color-neutral-50);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
}

.for-journalists__cta p {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-6);
}

/* ================================================
   12. CONTACT / ENROLMENT SECTION
   ================================================ */
.contact {
    padding: var(--section-py) var(--section-px);
    background: var(--color-neutral-50);
}

.contact__layout {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: var(--space-10);
    align-items: start;
}

/* Form Wrapper */
.contact__form-wrap {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-10);
}

.onboard-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.form-label {
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--color-text-primary);
}

.form-req {
    color: #e53e3e;
}

.form-input {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    padding: var(--space-3) var(--space-4);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-white);
    color: var(--color-text-primary);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
    width: 100%;
}

.form-input::placeholder {
    color: var(--color-neutral-400);
}

.form-input:focus {
    border-color: var(--color-brand);
    box-shadow: 0 0 0 3px rgba(0, 74, 173, 0.1);
}

.form-input.form-error {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b6b76' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: var(--space-10);
}

.form-submit {
    align-self: flex-start;
    border: none;
    cursor: pointer;
    margin-top: var(--space-2);
}

.form-reassurance {
    font-size: var(--text-xs);
    color: var(--color-neutral-400);
    margin-top: var(--space-1);
}

.form-status {
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    min-height: 20px;
}

.form-status--success {
    color: #16a34a;
}

.form-status--error {
    color: #e53e3e;
}

/* Contact Info Cards */
.contact__info {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-3);
    padding: var(--space-8);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.contact-card:hover {
    border-color: var(--color-brand-subtle);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.contact-card__icon {
    width: 36px;
    height: 36px;
    color: var(--color-brand);
}

.contact-card__title {
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
}

.contact-card__value {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
}

/* ================================================
   13. MISSION & VISION SECTION
   ================================================ */
.mission-vision {
    padding: var(--section-py) var(--section-px);
    background: var(--color-white);
}

.mission-vision__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
}

.mission-vision__card {
    padding: var(--space-12) var(--space-10);
    background: linear-gradient(135deg, #f0f6ff 0%, #e8f0fe 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 74, 173, 0.1);
    text-align: center;
}

.mission-vision__card .section-header__eyebrow {
    margin-bottom: var(--space-5);
}

.mission-vision__text {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    line-height: var(--leading-relaxed);
    max-width: 400px;
    margin: 0 auto;
}

/* ================================================
   14. DOWNLOAD CTA SECTION
   ================================================ */
.download-cta {
    padding: var(--section-py) var(--section-px);
    background: linear-gradient(135deg, #003a8c 0%, var(--color-brand) 50%, #0058cc 100%);
    text-align: center;
}

.download-cta__title {
    font-size: var(--text-3xl);
    font-weight: var(--weight-bold);
    color: var(--color-white);
    letter-spacing: var(--tracking-tighter);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-4);
}

.download-cta__subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.75);
    line-height: var(--leading-normal);
    max-width: 480px;
    margin: 0 auto var(--space-12);
}

.download-cta__buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-8);
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    color: var(--color-white);
    text-decoration: none;
    transition: all var(--transition-base);
}

.store-btn:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.store-btn__icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.store-btn__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-btn__label {
    font-size: var(--text-xs);
    opacity: 0.8;
    font-weight: var(--weight-regular);
    line-height: 1.3;
}

.store-btn__store {
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    letter-spacing: var(--tracking-tight);
    line-height: 1.3;
}

/* ================================================
   15. FOOTER
   ================================================ */
.footer {
    background: var(--color-neutral-900);
    color: var(--color-white);
    padding: var(--space-16) 0 var(--space-8);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-12);
    padding: 0 var(--section-px);
    max-width: var(--max-width);
    margin: 0 auto var(--space-12);
}

.footer__brand {
    max-width: 280px;
}

.footer__logo {
    height: 32px;
    width: auto;
    margin-bottom: var(--space-4);
}

.footer__brand-name {
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
    color: var(--color-white);
    margin-bottom: var(--space-2);
}

.footer__tagline {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-4);
    line-height: var(--leading-relaxed);
}

.footer__desc {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    line-height: var(--leading-relaxed);
}

.footer__social {
    display: flex;
    gap: var(--space-4);
    margin-top: var(--space-5);
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition-fast);
}

.footer__social-link:hover {
    background: var(--color-brand);
    color: var(--color-white);
}

.footer__social-link svg {
    width: 18px;
    height: 18px;
}

.footer__col h4 {
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: var(--space-5);
}

.footer__col li {
    margin-bottom: var(--space-3);
}

.footer__col a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer__col a:hover {
    color: var(--color-white);
}

.footer__bottom {
    text-align: center;
    padding: var(--space-8) var(--section-px) 0;
    margin-top: var(--space-12);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
}

.footer__bottom p {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.5);
}

/* ================================================
   16. LEGAL PAGES (policy-container)
   ================================================ */
.policy-container {
    max-width: 900px;
    margin: calc(var(--header-height) + var(--space-12)) auto var(--space-16);
    padding: var(--space-12);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.policy-container h1 {
    color: var(--color-brand);
    margin-bottom: var(--space-5);
    font-size: var(--text-3xl);
    font-weight: var(--weight-bold);
    letter-spacing: var(--tracking-tight);
}

.policy-container h2 {
    color: var(--color-text-primary);
    margin-top: var(--space-10);
    margin-bottom: var(--space-4);
    font-size: var(--text-2xl);
    font-weight: var(--weight-semibold);
    letter-spacing: var(--tracking-tight);
}

.policy-container h3 {
    color: var(--color-text-primary);
    margin-top: var(--space-6);
    margin-bottom: var(--space-3);
    font-size: var(--text-xl);
    font-weight: var(--weight-semibold);
}

.policy-container p {
    color: var(--color-text-secondary);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-3);
    font-size: var(--text-base);
}

.policy-container ul,
.policy-container ol {
    margin-left: var(--space-5);
    color: var(--color-text-secondary);
    line-height: var(--leading-relaxed);
    font-size: var(--text-base);
}

.policy-container li {
    margin-bottom: var(--space-2);
}

.policy-container strong {
    color: var(--color-text-primary);
}

.policy-container a {
    color: var(--color-brand);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.policy-container a:hover {
    color: var(--color-brand-dark);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
    color: var(--color-brand);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    transition: gap var(--transition-fast);
}

.back-link:hover {
    gap: var(--space-3);
}

/* Legal page inline styles overrides */
.policy-box {
    background: var(--color-surface-raised);
    border-left: 4px solid var(--color-brand);
    padding: var(--space-6);
    margin: var(--space-8) 0;
    border-radius: var(--radius-sm);
}

.policy-box h3 {
    margin-top: 0;
    color: var(--color-brand);
}

.warning-box {
    background: #fff8e6;
    border-left: 4px solid #e8a44a;
    padding: var(--space-6);
    margin: var(--space-6) 0;
    border-radius: var(--radius-sm);
}

.warning-box h3 {
    color: #92640d;
    margin-top: 0;
    margin-bottom: var(--space-3);
}

.warning-box p {
    color: #92640d;
    margin-bottom: 0;
}

.info-box {
    background: #e8f4f8;
    border-left: 4px solid #0c5460;
    padding: var(--space-6);
    margin: var(--space-6) 0;
    border-radius: var(--radius-sm);
}

.info-box h3 {
    color: #0c5460;
    margin-top: 0;
    margin-bottom: var(--space-3);
}

.info-box p {
    color: #0c5460;
    margin-bottom: 0;
}

.deletion-option {
    background: var(--color-surface-raised);
    border: 1px solid var(--color-border);
    padding: var(--space-8);
    margin: var(--space-6) 0;
    border-radius: var(--radius-md);
}

.deletion-option h3 {
    color: var(--color-brand);
    margin-top: 0;
    margin-bottom: var(--space-4);
}

.contact-button {
    display: inline-block;
    background: var(--color-brand);
    color: var(--color-white);
    padding: var(--space-3) var(--space-8);
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: var(--weight-semibold);
    margin-top: var(--space-3);
    transition: background var(--transition-fast);
}

.contact-button:hover {
    background: var(--color-brand-dark);
    color: var(--color-white);
}

/* Legal page header (non-transparent) */
.header--solid {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--color-border);
}

.header--solid .header__logo-text,
.header--solid .header__link {
    color: var(--color-text-primary);
}

.header--solid .header__link:hover {
    color: var(--color-brand);
}

.header--solid .header__hamburger span {
    background: var(--color-text-primary);
}

/* ================================================
   17. ANIMATIONS & KEYFRAMES
   ================================================ */
@keyframes hero-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.reveal:nth-child(2) { transition-delay: 80ms; }
.reveal:nth-child(3) { transition-delay: 160ms; }
.reveal:nth-child(4) { transition-delay: 240ms; }
.reveal:nth-child(5) { transition-delay: 320ms; }
.reveal:nth-child(6) { transition-delay: 400ms; }
.reveal:nth-child(7) { transition-delay: 480ms; }

/* ================================================
   18. RESPONSIVE — TABLET (max-width: 1024px)
   ================================================ */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-12);
    }

    .hero__visual {
        order: -1;
    }

    .hero__hero-img {
        max-width: 280px;
    }

    .hero__scroll-indicator {
        display: none;
    }

    .hero__description,
    .hero__long-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero {
        min-height: auto;
        padding: calc(var(--header-height) + var(--space-16)) 0 var(--space-16) 0;
    }

    .hero__bg-glow {
        width: 100%;
        background: radial-gradient(ellipse at 50% 30%, rgba(0, 74, 173, 0.15) 0%, transparent 65%);
    }

    /* Navigation */
    .header__hamburger {
        display: flex;
    }

    .header__links {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--space-8);
        padding: var(--space-8);
    }

    .header__links--open {
        display: flex;
    }

    .header__links--open .header__link {
        color: var(--color-text-primary);
        font-size: var(--text-xl);
    }

    .header__links--open .header__link--cta {
        color: var(--color-white) !important;
        font-size: var(--text-base);
    }

    /* Why NewsRoll */
    .why-newsroll__grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .why-card--wide {
        max-width: none;
    }

    /* How It Works */
    .how-it-works__steps {
        flex-direction: column;
        align-items: center;
    }

    .step-card {
        max-width: 400px;
        width: 100%;
    }

    .step-card__connector {
        transform: rotate(90deg);
        padding-top: 0;
        padding: var(--space-2) 0;
    }

    /* Mission & Vision */
    .mission-vision__grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact__layout {
        grid-template-columns: 1fr;
    }

    .contact__info {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-card {
        flex: 1;
        min-width: 160px;
    }

    /* Footer */
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }
}

/* ================================================
   19. RESPONSIVE — MOBILE (max-width: 768px)
   ================================================ */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .download-cta__buttons {
        flex-direction: column;
        align-items: center;
    }

    .store-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .contact__info {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-card {
        min-width: auto;
    }

    .for-journalists__benefits {
        grid-template-columns: 1fr;
    }
}

/* ================================================
   20. RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ================================================ */
@media (max-width: 480px) {
    .hero__hero-img {
        max-width: 220px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .policy-container {
        padding: var(--space-6);
        margin: calc(var(--header-height) + var(--space-6)) var(--space-4) var(--space-8);
        border-radius: var(--radius-lg);
    }

    .form-submit {
        width: 100%;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__actions .btn {
        text-align: center;
        justify-content: center;
    }
}

/* ================================================
   21. REDUCED MOTION
   ================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
