/* ═══════════════════════════════════════════════════════════════
   FINNWARDMAN — screen.css
   Consolidated styles for all pages
   Source files:
     finnwardman_hero_v1.html   (dark pages — Inter only, authoritative)
     finnwardman_about_v1.html  (dark pages — Inter only)
     preview-blog.html          (light pages — Playfair + Inter)
     preview-epic-dream-grant.html (light pages — Playfair + Inter)
     preview-lite-application.html (dark form page — Playfair + Inter)
   Conflict resolution: hero_v1 wins where rules differ.
   ═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────
   GOOGLE FONTS
   Two imports kept: Inter (dark pages) and
   Playfair Display (light/form pages)
   ───────────────────────────────────────────── */
/* Fonts loaded via <link> in default.hbs */


/* ═══════════════════════════════════════════════════════════════
   1. DESIGN TOKENS (CSS custom properties)
   ═══════════════════════════════════════════════════════════════ */

:root {
    /* Colours */
    --color-primary:      #0C1825;        /* Deep navy */
    --color-accent:       #F0C132;        /* Warm yellow */
    --color-accent-hover: #d4a920;        /* Darker yellow hover */
    --color-bg:           #ffffff;
    --color-bg-alt:       #EEF3F8;        /* Light blue-tinted white */
    --color-bg-dark:      #0C1825;
    --color-text:         #1a1a2e;
    --color-text-muted:   #5A6A7E;
    --color-border:       #D5E2EE;

    /* Typography */
    --font-heading:    'Playfair Display', Georgia, serif;
    --font-body:       'Inter', 'Helvetica Neue', sans-serif;
    --font-size-base:  18px;
    --line-height-base: 1.75;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-s:  1rem;
    --spacing-m:  2rem;
    --spacing-l:  4rem;
    --spacing-xl: 8rem;

    /* Layout */
    --container-max:     1200px;
    --container-content: 740px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
}


/* ═══════════════════════════════════════════════════════════════
   2. RESET & BASE
   ═══════════════════════════════════════════════════════════════ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: #fff;
    background: #0C1825;
    line-height: var(--line-height-base);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--color-accent);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-s);
}

p {
    margin-bottom: var(--spacing-s);
}

p:last-child {
    margin-bottom: 0;
}


/* ═══════════════════════════════════════════════════════════════
   3. LAYOUT UTILITIES
   ═══════════════════════════════════════════════════════════════ */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-m);
}

.container--content {
    max-width: var(--container-content);
    margin: 0 auto;
    padding: 0 var(--spacing-m);
}

section {
    padding: var(--spacing-l) 0;
}


/* ═══════════════════════════════════════════════════════════════
   4. NAVIGATION — OLD SYSTEM
   Used by: finnwardman_hero_v1.html, finnwardman_about_v1.html
   Element: <nav> with .nav-logo / .nav-links
   ═══════════════════════════════════════════════════════════════ */

nav {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    height: 80px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* about page adds background to nav */
.about-hero ~ nav,
body > nav {
    background: #0C1825;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #F0C132;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

.nav-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

.nav-logo-text {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.4;
}

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

.nav-links a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}

.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #F0C132; }

/* CTA pill in old nav */
.nav-cta {
    background: #F0C132;
    color: #0C1825 !important;
    font-weight: 700 !important;
    padding: 10px 24px;
    border-radius: 32px;
    transition: background 0.2s !important;
}

.nav-cta:hover {
    background: #d4a920 !important;
    color: #0C1825 !important;
}


/* ═══════════════════════════════════════════════════════════════
   5. NAVIGATION — NEW SYSTEM (site-header)
   Used by: preview-blog.html, preview-epic-dream-grant.html
   Element: <header class="site-header"> + <nav class="site-nav">
   ═══════════════════════════════════════════════════════════════ */

.site-header {
    position: relative;
    z-index: 100;
    background: var(--color-primary);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-m);
    height: 80px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--color-primary);
    flex-shrink: 0;
    overflow: hidden;
}

.site-logo-text {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.3;
}

.site-nav ul {
    list-style: none;
    display: flex;
    gap: 2.25rem;
}

.site-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    transition: color 150ms ease;
}

.site-nav a:hover { color: #fff; }

.nav-current a {
    color: var(--color-accent);
    font-weight: 600;
}

.nav-cta-link {
    background: var(--color-accent) !important;
    color: var(--color-primary) !important;
    font-weight: 700 !important;
    padding: 0.55rem 1.4rem;
    border-radius: 40px;
}

.nav-cta-link:hover {
    background: var(--color-accent-hover) !important;
}


/* ═══════════════════════════════════════════════════════════════
   6. NAVIGATION — FORM PAGE SYSTEM
   Used by: preview-lite-application.html
   Element: <nav class="site-nav"> (fixed, full-bleed)
   ═══════════════════════════════════════════════════════════════ */

nav.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: 72px;
    display: flex;
    align-items: center;
    padding: 0 2.5rem;
    background: rgba(12,24,37,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
    max-width: var(--container-max);
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* .nav-logo and .nav-logo-icon / .nav-logo-text already defined above — shared */

.nav-back {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color var(--transition-base);
}

.nav-back:hover { color: #fff; }


/* ═══════════════════════════════════════════════════════════════
   7. BUTTONS
   ═══════════════════════════════════════════════════════════════ */

/* Light-page system (.btn base class) */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.8rem 1.75rem;
    border-radius: 40px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-primary);
    border-color: var(--color-accent);
}

.btn-primary:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    color: var(--color-primary);
    transform: translateY(-1px);
}

.btn-primary-lg {
    padding: 1rem 2.25rem;
    font-size: 1rem;
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}

.btn-ghost:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255,255,255,0.08);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

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

/* Alternative ghost variant used on dark hero/epic-dream pages */
.btn--ghost {
    background: rgba(255,255,255,0.07);
    color: #cbd5e1;
    border: 1px solid rgba(255,255,255,0.12);
}

.btn--ghost:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
}

/* Dark-page primary button (pill style, no .btn base class needed) */
/* Used by hero/about pages. Re-uses .btn-primary selector above. */
/* Override: on dark pages .btn-primary uses #F0C132 bg — consistent ✓ */


/* ═══════════════════════════════════════════════════════════════
   8. HERO SECTION
   Used by: finnwardman_hero_v1.html
   ═══════════════════════════════════════════════════════════════ */

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1505459668311-8dfac7952bf0?w=1800&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    z-index: 0;
}

.hero-body {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 32px 60px 80px;
}

.hero-text {
    flex: 0 0 560px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.hero-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #F0C132;
}

.hero-headline {
    font-size: 58px;
    font-weight: 900;
    line-height: 1.05;
    color: #fff;
}

.hero-headline .accent {
    color: #F0C132;
}

.hero-subtext {
    font-size: 17px;
    line-height: 1.65;
    color: #94A3B8;
    max-width: 460px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 8px;
}

/* Dark-page .btn-primary (hero pill) */
.hero .btn-primary,
.about-hero .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F0C132;
    color: #0C1825;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 40px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.hero .btn-primary:hover,
.about-hero .btn-primary:hover {
    background: #d4a920;
    transform: translateY(-1px);
}

/* Dark-page ghost link */
.hero .btn-ghost,
.about-hero .btn-ghost {
    font-size: 15px;
    font-weight: 500;
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.2s;
    background: none;
    border: none;
}

.hero .btn-ghost:hover,
.about-hero .btn-ghost:hover {
    color: #fff;
}

/* Hero video */
.hero-video {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: #0F2236;
    border: 2px solid rgba(255,255,255,0.08);
    cursor: pointer;
}

.hero-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.hero-video:hover img { opacity: 1; }

.play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background 0.2s;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.hero-video:hover .play-btn-circle {
    transform: scale(1.08);
    background: #fff;
}

.play-btn-circle svg {
    width: 26px;
    height: 26px;
    margin-left: 4px;
    fill: #0C1825;
}

.video-caption {
    position: absolute;
    bottom: 14px;
    left: 18px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.5px;
}


/* ═══════════════════════════════════════════════════════════════
   9. ABOUT SECTION (homepage)
   Used by: finnwardman_hero_v1.html
   ═══════════════════════════════════════════════════════════════ */

.about-finn {
    background: #0C1825;
    padding: 100px 0;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-photo-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #132030;
    aspect-ratio: 4/5;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    filter: grayscale(20%);
}

.about-photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
    padding: 32px 20px 16px;
}

.about-photo-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #F0C132;
}

.about-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #F0C132;
    margin-bottom: 16px;
}

.about-heading {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 28px;
}

.about-accent {
    color: #F0C132;
}

.about-body {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255,255,255,0.72);
    margin-bottom: 18px;
}

.about-body em {
    color: #fff;
    font-style: italic;
}

.about-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 14px 28px;
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 100px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}

.about-btn:hover {
    border-color: #F0C132;
    color: #F0C132;
}


/* ═══════════════════════════════════════════════════════════════
   10. ABOUT PAGE HERO
   Used by: finnwardman_about_v1.html
   ═══════════════════════════════════════════════════════════════ */

.about-hero {
    position: relative;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    padding-top: 2.5rem;
    padding-bottom: 4rem;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(20,45,80,0.7) 0%, transparent 70%),
        #0C1825;
    z-index: 0;
}

.about-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1.5px 1.5px at 10% 20%, rgba(255,255,255,0.35) 0%, transparent 100%),
        radial-gradient(1px 1px at 25% 55%, rgba(255,255,255,0.25) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 40% 10%, rgba(255,255,255,0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 60% 35%, rgba(255,255,255,0.2) 0%, transparent 100%),
        radial-gradient(2px 2px at 75% 15%, rgba(255,255,255,0.35) 0%, transparent 100%),
        radial-gradient(1px 1px at 85% 60%, rgba(255,255,255,0.2) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 90% 30%, rgba(255,255,255,0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 50% 70%, rgba(255,255,255,0.15) 0%, transparent 100%),
        radial-gradient(1px 1px at 15% 80%, rgba(255,255,255,0.2) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 68% 85%, rgba(255,255,255,0.25) 0%, transparent 100%);
}

.about-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 60px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: center;
}

.about-hero-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-hero-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #F0C132;
    margin-bottom: 20px;
}

.about-hero-headline {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 28px;
}

.about-hero-headline .accent {
    color: #F0C132;
    display: block;
}

.about-hero-subtext {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
    max-width: 500px;
    margin-bottom: 40px;
}

.about-hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.about-hero-scroll {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 52px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

.scroll-line {
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.2);
}

.about-hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.badge-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30,70,140,0.45) 0%, transparent 70%);
    pointer-events: none;
}

.badge-img {
    width: 380px;
    max-width: 100%;
    position: relative;
    z-index: 1;
}

.about-hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    padding-top: 4px;
}

.ah-stat-num {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.ah-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.ah-stat-divider {
    width: 1px;
    background: rgba(255,255,255,0.1);
    align-self: stretch;
}


/* ═══════════════════════════════════════════════════════════════
   11. TEAM SECTION
   Used by: finnwardman_about_v1.html
   ═══════════════════════════════════════════════════════════════ */

.team {
    background: #07111D;
    padding: 100px 0;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.team-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 60px;
}

.team-header {
    margin-bottom: 64px;
}

.team-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #F0C132;
    margin-bottom: 12px;
}

.team-title {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
}

.team-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.5);
    max-width: 480px;
    line-height: 1.65;
}

.team-group-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 14px;
    margin-bottom: 12px;
}
.team-group-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 32px;
    line-height: 1.5;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 72px;
}

.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 28px 32px;
    background: #0C1825;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    transition: border-color 0.2s, transform 0.2s;
}

.team-card:hover {
    border-color: rgba(240,193,50,0.25);
    transform: translateY(-4px);
}

.team-avatar-wrap {
    position: relative;
    margin-bottom: 24px;
}

.team-ig-ring {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-radius: 50%;
    padding: 3px;
    display: inline-block;
}

.team-ig-ring::before {
    content: '';
    display: block;
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    border: 3px solid #0C1825;
    z-index: 1;
    pointer-events: none;
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #132030;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 0;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
    display: block;
}

.team-avatar svg {
    width: 56px;
    height: 56px;
}

.team-ig-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease, opacity 0.15s ease;
    background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
    border-radius: 50%;
    border: 2px solid #0C1825;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.team-ig-badge:hover {
    transform: scale(1.15);
    opacity: 0.85;
}

.team-ig-badge svg {
    width: 13px;
    height: 13px;
}

.team-card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.team-card-role {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #F0C132;
}

.team-card-name {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.team-card-bio {
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    max-width: 280px;
}

/* 4-col grid for larger team group */
.team-grid--members {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.team-card--sm {
    padding: 28px 16px 24px;
}

.team-card--sm .team-avatar {
    width: 88px;
    height: 88px;
}

.team-card--sm .team-avatar svg {
    width: 40px;
    height: 40px;
}

.team-card--sm .team-ig-ring::before {
    inset: 3px;
    border-width: 2px;
}

.team-card--sm .team-avatar-wrap {
    margin-bottom: 16px;
}

.team-card--sm .team-card-name {
    font-size: 14px;
}

.team-card--sm .team-card-role {
    font-size: 9px;
}


/* ═══════════════════════════════════════════════════════════════
   12. EPIC DREAM GRANT PROMO TILE
   Used by: finnwardman_hero_v1.html
   ═══════════════════════════════════════════════════════════════ */

.edg-promo {
    background: #0C1825;
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.edg-promo::before {
    content: '';
    position: absolute;
    top: -160px; right: -80px;
    width: 580px; height: 580px;
    background: radial-gradient(circle, rgba(240,193,50,0.07) 0%, transparent 65%);
    pointer-events: none;
}

.edg-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: center;
}

.edg-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #F0C132;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.edg-eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px; height: 2px;
    background: #F0C132;
    flex-shrink: 0;
}

.edg-headline {
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 22px;
}

.edg-headline em {
    color: #F0C132;
    font-style: normal;
}

.edg-body {
    font-size: 17px;
    color: #94A3B8;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 40px;
}

.edg-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.edg-card {
    background: #132030;
    border: 1px solid rgba(240,193,50,0.3);
    border-radius: 20px;
    padding: 44px 40px;
    position: relative;
    overflow: hidden;
}

.edg-card::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(240,193,50,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.edg-amount {
    font-size: 76px;
    font-weight: 900;
    color: #F0C132;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 6px;
}

.edg-amount-label {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 36px;
}

.edg-specs {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 32px;
}

.edg-spec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    gap: 12px;
}

.edg-spec-label { color: rgba(255,255,255,0.35); }
.edg-spec-val   { color: #fff; font-weight: 600; text-align: right; }


/* ═══════════════════════════════════════════════════════════════
   13. GRANTS SECTION
   Used by: finnwardman_hero_v1.html
   ═══════════════════════════════════════════════════════════════ */

.grants {
    background: #07111D;
    padding: 100px 0;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.grants-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.grants-header {
    margin-bottom: 56px;
}

.grants-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.1;
}

.grants-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.55);
    max-width: 440px;
    line-height: 1.6;
}

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

.grant-card {
    background: #0C1825;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.grant-card--featured {
    background: #132030;
    border-color: #F0C132;
    position: relative;
    padding-top: 48px;
}

.grant-badge {
    position: absolute;
    top: -1px;
    left: 32px;
    background: #F0C132;
    color: #0C1825;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 0 0 8px 8px;
}

.grant-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 16px;
}

.grant-price {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 24px;
}

.grant-price--yellow {
    color: #F0C132;
}

.grant-dollar {
    font-size: 32px;
    vertical-align: super;
    margin-right: 2px;
}

.grant-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    margin-bottom: 28px;
    flex: 1;
}

.grant-tagline {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    font-style: italic;
    margin-bottom: 28px;
}

.grant-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s;
}

.grant-btn--outline {
    border: 1.5px solid rgba(255,255,255,0.25);
    color: #fff;
}

.grant-btn--outline:hover {
    border-color: #F0C132;
    color: #F0C132;
}

.grant-btn--primary {
    background: #F0C132;
    color: #0C1825;
    border: none;
}

.grant-btn--primary:hover {
    background: #ffd34e;
}


/* ═══════════════════════════════════════════════════════════════
   14. FROM THE FIELD (FTF) — Homepage preview
   Used by: finnwardman_hero_v1.html
   ═══════════════════════════════════════════════════════════════ */

.ftf {
    background: #07111D;
    padding: 80px 60px;
}

.ftf-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.ftf-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.ftf-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #F0C132;
    margin-bottom: 8px;
}

.ftf-title {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.ftf-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1.5px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 22px;
    border-radius: 32px;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
}

.ftf-all-btn:hover {
    border-color: #F0C132;
    color: #F0C132;
}

/* Podcast strip */
.ftf-podcast {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 48px;
    align-items: center;
    background: rgba(255,255,255,0.04);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.07);
}

.ftf-podcast-art {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
    background: #f5ede0;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    cursor: pointer;
}

.ftf-podcast-art-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0e6d3 0%, #e8d5b8 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
    position: relative;
}

.ftf-podcast-art-bg::before {
    content: '';
    position: absolute; inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(139,111,78,0.06) 28px, rgba(139,111,78,0.06) 29px),
        repeating-linear-gradient(90deg, transparent, transparent 28px, rgba(139,111,78,0.06) 28px, rgba(139,111,78,0.06) 29px);
}

.ftf-podcast-logo {
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(139,111,78,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    margin-bottom: 12px;
    position: relative; z-index: 1;
}

.ftf-podcast-name-art {
    font-weight: 900;
    font-size: 1.1rem; line-height: 1.15;
    color: #3d2b1f;
    margin-bottom: 4px;
    position: relative; z-index: 1;
}

.ftf-podcast-sub-art {
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em;
    text-transform: uppercase; color: #8b6f4e;
    position: relative; z-index: 1;
}

.ftf-podcast-play-overlay {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0);
    transition: background 0.2s;
    z-index: 2;
}

.ftf-podcast-art:hover .ftf-podcast-play-overlay { background: rgba(0,0,0,0.15); }

.ftf-podcast-play-btn {
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(255,255,255,0.9);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    opacity: 0.85;
    transition: opacity 0.2s, transform 0.2s;
}

.ftf-podcast-art:hover .ftf-podcast-play-btn { opacity: 1; transform: scale(1.05); }

.ftf-podcast-play-btn svg {
    width: 18px; height: 18px; margin-left: 3px; fill: #0C1825;
}

.ftf-podcast-label {
    font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
    text-transform: uppercase; color: #F0C132;
    margin-bottom: 10px;
}

.ftf-podcast-title {
    font-size: 28px; font-weight: 800;
    color: #fff; margin-bottom: 14px; line-height: 1.15;
}

.ftf-podcast-desc {
    font-size: 15px; color: rgba(255,255,255,0.6);
    line-height: 1.7; margin-bottom: 24px;
}

.ftf-platform-badges {
    display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
}

.ftf-platform-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 600;
    padding: 8px 18px; border-radius: 40px;
    border: 1.5px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.ftf-platform-badge:hover {
    border-color: #F0C132;
    color: #F0C132;
}

.ftf-shorts-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: -24px;
}

.ftf-shorts-label {
    font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
    text-transform: uppercase; color: #F0C132;
    margin-bottom: 6px;
}

.ftf-shorts-title {
    font-size: 28px; font-weight: 800;
    color: #fff; line-height: 1; margin: 0;
}

.ftf-shorts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.ftf-short-card {
    border-radius: 8px; overflow: hidden;
    background: #0F2236;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
}

.ftf-short-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.5); }

.ftf-short-thumb {
    width: 100%; aspect-ratio: 9/16;
    position: relative; overflow: hidden;
}

.ftf-short-play {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
}

.ftf-short-play-btn {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.88);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}

.ftf-short-card:hover .ftf-short-play-btn { transform: scale(1.12); }

.ftf-short-play-btn svg {
    width: 14px; height: 14px; margin-left: 2px; fill: #0C1825;
}

.ftf-short-badge {
    position: absolute; top: 8px; left: 8px;
    background: #F0C132; color: #0C1825;
    font-size: 9px; font-weight: 800; letter-spacing: 1px;
    text-transform: uppercase; padding: 3px 7px; border-radius: 3px;
}

.ftf-short-body { padding: 10px 10px 12px; }

.ftf-short-title {
    font-size: 13px; font-weight: 700;
    line-height: 1.35; color: #fff; margin: 0;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
}


/* ═══════════════════════════════════════════════════════════════
   15. FAQ — ICON GRID (homepage)
   Used by: finnwardman_hero_v1.html
   ═══════════════════════════════════════════════════════════════ */

.faq {
    background: #0C1825;
    padding: 100px 0;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.faq-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.faq-header {
    text-align: center;
    margin-bottom: 64px;
}

.faq-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #F0C132;
    margin-bottom: 12px;
}

.faq-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 48px;
}

.faq-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.faq-card-icon {
    width: 56px;
    height: 56px;
    color: #F0C132;
    margin-bottom: 20px;
}

.faq-card-icon svg {
    width: 100%;
    height: 100%;
}

.faq-card-title {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.faq-card-text {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255,255,255,0.55);
}


/* ═══════════════════════════════════════════════════════════════
   16. FAQ — ACCORDION (epic dream grant page)
   Used by: preview-epic-dream-grant.html
   ═══════════════════════════════════════════════════════════════ */

.faq-section { background: var(--color-bg-alt); }

.faq-section .container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--spacing-l);
    align-items: start;
}

.faq-label-col .section-label { margin-bottom: 0.6rem; }

.faq-headline {
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1.15;
}

.faq-list { list-style: none; }

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-q {
    width: 100%; background: none; border: none;
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
    color: var(--color-text); cursor: pointer;
    text-align: left;
    transition: color 150ms ease;
}

.faq-q:hover { color: var(--color-primary); }

.faq-icon {
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--color-border);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: background 200ms ease, transform 200ms ease;
}

.faq-icon svg {
    width: 10px; height: 10px;
    fill: var(--color-text-muted);
    transition: fill 200ms ease;
}

.faq-item.open .faq-icon { background: var(--color-accent); transform: rotate(45deg); }
.faq-item.open .faq-icon svg { fill: var(--color-primary); }

.faq-a {
    font-size: 0.9rem; color: var(--color-text-muted);
    line-height: 1.75; padding-bottom: 1.25rem;
    display: none;
}

.faq-item.open .faq-a { display: block; }


/* ═══════════════════════════════════════════════════════════════
   17. PROMO HERO (blog / epic-dream pages)
   Used by: preview-blog.html, preview-epic-dream-grant.html
   ═══════════════════════════════════════════════════════════════ */

.promo-hero {
    background: var(--color-primary);
    overflow: hidden;
    position: relative;
}

.promo-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(240,193,50,0.06) 0%, transparent 70%);
    pointer-events: none; z-index: 0;
}

.promo-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-top: 2.5rem;
    padding-bottom: 4rem;
    position: relative; z-index: 1;
}

.promo-content {}

.promo-eyebrow {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.promo-eyebrow::before {
    content: '';
    display: inline-block; width: 6px; height: 6px;
    border-radius: 50%; background: var(--color-accent);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.7); }
}

.promo-title {
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 900; color: #fff; line-height: 1.05;
    margin-bottom: 1.5rem;
}

.promo-title em { font-style: italic; color: var(--color-accent); }

.promo-body {
    font-size: 1rem; color: #94A3B8;
    line-height: 1.75; margin-bottom: 0.75rem;
    max-width: 460px;
}

.promo-grant-types {
    display: flex; gap: 0.75rem; flex-wrap: wrap;
    margin-bottom: 2rem;
}

.promo-tag {
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem; border-radius: 40px;
    border: 1px solid rgba(240,193,50,0.3);
    color: rgba(240,193,50,0.7);
}

.promo-actions { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }

.promo-meta {
    font-size: 0.75rem; color: rgba(255,255,255,0.3);
    margin-top: 1.25rem; margin-bottom: 0;
}

.promo-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 10px;
    border-radius: 12px;
    overflow: hidden;
}

.promo-img {
    position: relative; overflow: hidden;
    background: #1a2e44;
}

.promo-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
    filter: brightness(0.85) saturate(0.9);
}

.promo-img:hover img { transform: scale(1.04); filter: brightness(0.95) saturate(1); }

.promo-img--tall { grid-row: 1 / 3; }

.promo-img-label {
    position: absolute; bottom: 10px; left: 12px;
    font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(255,255,255,0.5);
}

.promo-img-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #1a2e44 0%, #0f1e2e 100%);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 0.5rem;
}

.promo-img-placeholder-icon { font-size: 2rem; opacity: 0.3; }

.promo-img-placeholder-text {
    font-size: 0.68rem; color: rgba(255,255,255,0.25);
    letter-spacing: 0.08em; text-transform: uppercase;
    font-weight: 600; text-align: center; padding: 0 1rem;
}

.promo-collage-bar {
    grid-column: 1 / 3;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent) 0%, transparent 100%);
    display: none;
}


/* ═══════════════════════════════════════════════════════════════
   18. SECTION LABELS / DIVIDERS (blog / epic-dream)
   ═══════════════════════════════════════════════════════════════ */

.section-label {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--color-accent-hover);
    margin-bottom: 0.6rem; display: block;
}

.section-label--light { color: rgba(240,193,50,0.7); }

.section-label-row {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: var(--spacing-l);
}

.section-title { margin-bottom: 0; }


/* ═══════════════════════════════════════════════════════════════
   19. PREVIEW BANNER
   Used by: preview-blog.html, preview-epic-dream-grant.html
   ═══════════════════════════════════════════════════════════════ */

.preview-banner {
    background: #1a2a3a; color: rgba(255,255,255,0.75);
    text-align: center; padding: 0.6rem var(--spacing-m);
    font-size: 0.78rem; font-family: var(--font-body); letter-spacing: 0.03em;
}

.preview-banner strong { color: var(--color-accent); }

.page-section-label {
    background: rgba(30,58,88,0.06);
    border-left: 3px solid var(--color-primary);
    padding: 0.4rem 0.75rem;
    font-size: 0.72rem;
    font-family: monospace;
    color: var(--color-primary);
    opacity: 0.5;
}


/* ═══════════════════════════════════════════════════════════════
   20. BLOG PAGE — YouTube / Shorts grid
   Used by: preview-blog.html
   ═══════════════════════════════════════════════════════════════ */

.shorts-section { background: var(--color-bg-alt); }

.shorts-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.short-card {
    border-radius: 8px; overflow: hidden;
    background: var(--color-primary);
    cursor: pointer;
    transition: transform 250ms ease, box-shadow 250ms ease;
    position: relative;
}

.short-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(12,24,37,0.2); }

.short-thumb {
    width: 100%; aspect-ratio: 9/16;
    background: var(--color-primary);
    position: relative; overflow: hidden;
}

.short-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.85);
    transition: filter 200ms ease;
}

.short-card:hover .short-thumb img { filter: brightness(1); }

.short-play {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
}

.short-play-btn {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.88);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    transition: transform 200ms ease;
}

.short-card:hover .short-play-btn { transform: scale(1.12); }

.short-play-btn svg { width: 14px; height: 14px; margin-left: 2px; fill: var(--color-primary); }

.short-badge {
    position: absolute; top: 8px; left: 8px;
    background: var(--color-accent); color: var(--color-primary);
    font-size: 0.6rem; font-weight: 800; letter-spacing: 0.08em;
    text-transform: uppercase; padding: 0.2rem 0.5rem; border-radius: 3px;
}

.short-body { padding: 0.75rem 0.6rem 0.85rem; }

.short-title {
    font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700;
    line-height: 1.3; color: #fff; margin: 0;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
}

.short-duration {
    font-size: 0.68rem; color: rgba(255,255,255,0.4);
    margin-top: 0.3rem;
}

/* YouTube card */
.yt-card {
    border-radius: 6px;
    overflow: hidden;
    background: var(--color-bg);
    transition: transform 250ms ease, box-shadow 250ms ease;
    cursor: pointer;
}

.yt-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(12,24,37,0.12); }

.yt-thumb {
    position: relative;
    width: 100%; height: 200px;
    background: var(--color-primary);
    overflow: hidden;
}

.yt-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
    filter: brightness(0.9);
}

.yt-card:hover .yt-thumb img { transform: scale(1.03); filter: brightness(1); }

.yt-play {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
}

.yt-play-circle {
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(255,255,255,0.92);
    display: flex; align-items: center; justify-content: center;
    transition: transform 200ms ease, background 200ms ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}

.yt-card:hover .yt-play-circle { transform: scale(1.1); background: #fff; }

.yt-play-circle svg { width: 20px; height: 20px; margin-left: 3px; fill: var(--color-primary); }

.yt-duration {
    position: absolute; bottom: 10px; right: 10px;
    background: rgba(0,0,0,0.75); color: #fff;
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.03em;
    padding: 0.2rem 0.5rem; border-radius: 3px;
}

.yt-thumb-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #0f2035 0%, #1a3050 100%);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.15);
    font-size: 0.75rem; letter-spacing: 0.05em; text-transform: uppercase;
}

.yt-body { padding: 1.1rem 0.25rem 0.5rem; }

.yt-meta-row {
    display: flex; align-items: center; gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.yt-tag {
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--color-accent-hover);
}

.yt-dot { color: var(--color-border); font-size: 0.6rem; }

.yt-date { font-size: 0.72rem; color: var(--color-text-muted); }

.yt-title {
    font-family: var(--font-heading);
    font-size: 1.05rem; font-weight: 700;
    line-height: 1.35; color: var(--color-text);
    margin-bottom: 0.4rem;
    transition: color 150ms ease;
}

.yt-card:hover .yt-title { color: var(--color-primary); }

.yt-excerpt {
    font-size: 0.85rem; color: var(--color-text-muted);
    line-height: 1.6; margin: 0;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Podcast section (blog page) */
.podcast-section { background: var(--color-bg-alt); }

.podcast-section .container {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: var(--spacing-l);
    align-items: center;
}

.podcast-art-card {
    border-radius: 12px; overflow: hidden;
    position: relative; aspect-ratio: 16/9;
    background: #f5ede0;
    box-shadow: 0 12px 40px rgba(12,24,37,0.15);
}

.podcast-art-bg {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #f0e6d3 0%, #e8d5b8 100%);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 2rem;
    position: relative;
}

.podcast-art-bg::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(139,111,78,0.06) 28px, rgba(139,111,78,0.06) 29px),
        repeating-linear-gradient(90deg, transparent, transparent 28px, rgba(139,111,78,0.06) 28px, rgba(139,111,78,0.06) 29px);
}

.podcast-art-logo {
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(139,111,78,0.2);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 0.75rem; font-size: 1.2rem;
    position: relative; z-index: 1;
}

.podcast-art-title {
    font-family: var(--font-heading); font-weight: 900;
    font-size: 1.4rem; line-height: 1.1;
    color: #5c3d1a; text-align: center;
    text-transform: uppercase; letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
    position: relative; z-index: 1;
}

.podcast-art-sub {
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.2em;
    text-transform: uppercase; color: #8b6f4e;
    position: relative; z-index: 1;
}

.podcast-play-overlay {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0); transition: background 200ms ease;
    z-index: 2;
}

.podcast-art-card:hover .podcast-play-overlay { background: rgba(0,0,0,0.15); }

.podcast-play-btn {
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(255,255,255,0.9);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 200ms ease, transform 200ms ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.podcast-art-card:hover .podcast-play-btn { opacity: 1; transform: scale(1.05); }

.podcast-play-btn svg { width: 18px; height: 18px; margin-left: 3px; fill: var(--color-primary); }

.podcast-info {}

.podcast-label {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--color-accent-hover);
    margin-bottom: 0.5rem;
}

.podcast-title {
    font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700;
    color: var(--color-text); margin-bottom: 0.75rem; line-height: 1.2;
}

.podcast-desc {
    font-size: 0.95rem; color: var(--color-text-muted);
    line-height: 1.7; margin-bottom: var(--spacing-m);
}

.podcast-platforms {
    display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap;
}

.platform-badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.78rem; font-weight: 600;
    padding: 0.5rem 1.1rem; border-radius: 40px;
    border: 1.5px solid var(--color-border);
    color: var(--color-text); transition: all 150ms ease;
}

.platform-badge:hover { border-color: var(--color-primary); background: var(--color-primary); color: #fff; }

/* Blog pagination */
.blog-pagination {
    text-align: center;
    padding: var(--spacing-m) 0 var(--spacing-l);
}


/* ═══════════════════════════════════════════════════════════════
   21. EPIC DREAM GRANT PAGE — Content sections
   Used by: preview-epic-dream-grant.html
   ═══════════════════════════════════════════════════════════════ */

/* Fund section */
.fund-section { background: var(--color-bg); }

.fund-section .container {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: var(--spacing-l);
    align-items: center;
}

.fund-copy .section-label { margin-bottom: 0.75rem; }

.fund-headline {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    font-weight: 900; line-height: 1.1;
    color: var(--color-primary);
    margin-bottom: 1.75rem;
}

.fund-copy p {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.fund-copy p strong { color: var(--color-text); font-weight: 600; }

.fund-copy .fund-sign-off {
    font-family: var(--font-heading);
    font-size: 1.1rem; font-style: italic;
    color: var(--color-primary); margin-top: 1.5rem;
}

.fund-photo {
    border-radius: 12px; overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--color-bg-alt);
    box-shadow: 0 20px 60px rgba(12,24,37,0.12);
    position: relative;
}

.fund-photo img { width: 100%; height: 100%; object-fit: cover; }

.fund-photo-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(160deg, #EEF3F8 0%, #dce8f2 100%);
}

.fund-photo-placeholder-icon { font-size: 3rem; opacity: 0.25; }

.fund-photo-placeholder-text {
    font-size: 0.72rem; color: var(--color-text-muted);
    letter-spacing: 0.08em; text-transform: uppercase;
    font-weight: 600; text-align: center; padding: 0 2rem;
}

.fund-photo-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(0deg, rgba(12,24,37,0.7) 0%, transparent 100%);
    padding: 1.5rem 1.25rem 1rem;
    color: rgba(255,255,255,0.7); font-size: 0.78rem;
}

/* Grant details — dark band */
.details-section {
    background: var(--color-primary);
    position: relative; overflow: hidden;
}

.details-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(240,193,50,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.details-section .container { position: relative; z-index: 1; }

.details-head { max-width: 640px; margin-bottom: var(--spacing-l); }

.details-headline {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    font-weight: 900; color: #fff; line-height: 1.1;
    margin-bottom: 1.25rem;
}

.details-body { font-size: 1rem; color: #94A3B8; line-height: 1.8; margin-bottom: 0; }

.details-specs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.07);
    border-radius: 8px; overflow: hidden;
    margin-top: var(--spacing-l);
}

.spec-item { background: rgba(255,255,255,0.03); padding: 1.75rem 1.5rem; }

.spec-label {
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em;
    text-transform: uppercase; color: rgba(240,193,50,0.6);
    margin-bottom: 0.5rem;
}

.spec-value {
    font-family: var(--font-heading);
    font-size: 1.3rem; font-weight: 900;
    color: #fff; line-height: 1.2;
}

.spec-note {
    font-size: 0.72rem; color: rgba(255,255,255,0.3);
    margin-top: 0.35rem; line-height: 1.4;
}

/* Categories */
.categories-section { background: var(--color-bg-alt); }

.categories-head {
    text-align: center; max-width: 560px;
    margin: 0 auto var(--spacing-l);
}

.categories-headline {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    font-weight: 900; color: var(--color-primary);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cat-card {
    background: var(--color-bg);
    border-radius: 12px; overflow: hidden;
    border: 1px solid var(--color-border);
    transition: transform 250ms ease, box-shadow 250ms ease;
}

.cat-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(12,24,37,0.1); }

.cat-card-img {
    height: 180px; background: var(--color-primary);
    position: relative; overflow: hidden;
}

.cat-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.75) saturate(0.85);
    transition: filter 300ms ease, transform 300ms ease;
}

.cat-card:hover .cat-card-img img { filter: brightness(0.9) saturate(1); transform: scale(1.03); }

.cat-card-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; opacity: 0.2;
}

.cat-card-tag {
    position: absolute; top: 12px; left: 12px;
    background: var(--color-accent); color: var(--color-primary);
    font-size: 0.62rem; font-weight: 800; letter-spacing: 0.12em;
    text-transform: uppercase; padding: 0.25rem 0.6rem; border-radius: 3px;
}

.cat-card-body { padding: 1.5rem; }

.cat-title {
    font-family: var(--font-heading);
    font-size: 1.3rem; font-weight: 900;
    color: var(--color-primary); margin-bottom: 0.75rem;
}

.cat-desc {
    font-size: 0.9rem; color: var(--color-text-muted);
    line-height: 1.7; margin: 0;
}

/* Eligibility */
.eligibility-section { background: var(--color-bg); }

.eligibility-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-l);
    align-items: start;
}

.eligibility-headline {
    font-size: clamp(1.8rem, 2.5vw, 2.6rem);
    font-weight: 900; color: var(--color-primary);
    line-height: 1.1; margin-bottom: 1.25rem;
}

.eligibility-lead {
    font-size: 1.15rem; color: var(--color-text);
    font-weight: 500; margin-bottom: 1rem;
}

.eligibility-copy {
    font-size: 0.95rem; color: var(--color-text-muted);
    line-height: 1.8;
}

.eligibility-list { list-style: none; margin: 1.5rem 0; }

.eligibility-list li {
    display: flex; align-items: flex-start; gap: 0.75rem;
    font-size: 0.95rem; color: var(--color-text);
    line-height: 1.6; margin-bottom: 0.9rem;
}

.eligibility-list li::before {
    content: '';
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--color-accent);
    flex-shrink: 0; margin-top: 0.45rem;
}

.eligibility-caveat {
    font-size: 0.9rem; color: var(--color-text-muted);
    font-style: italic; line-height: 1.7;
    border-left: 3px solid var(--color-border);
    padding-left: 1rem; margin-top: 1.5rem;
}

.eligibility-stat-block {
    background: var(--color-primary);
    border-radius: 16px; padding: 3rem 2.5rem;
    position: relative; overflow: hidden;
}

.eligibility-stat-block::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(240,193,50,0.08) 0%, transparent 60%);
}

.eligibility-stat-block > * { position: relative; z-index: 1; }

.eligibility-age {
    font-family: var(--font-heading);
    font-size: 5.5rem; font-weight: 900;
    color: var(--color-accent); line-height: 0.9;
    margin-bottom: 0.5rem;
}

.eligibility-age-label {
    font-size: 0.8rem; font-weight: 700; letter-spacing: 0.18em;
    text-transform: uppercase; color: rgba(255,255,255,0.4);
    margin-bottom: 2rem;
}

.eligibility-checklist { list-style: none; margin-top: 1.5rem; }

.eligibility-checklist li {
    display: flex; align-items: center; gap: 0.75rem;
    font-size: 0.9rem; color: rgba(255,255,255,0.65);
    margin-bottom: 0.85rem; line-height: 1.5;
}

.check-icon {
    width: 20px; height: 20px; border-radius: 50%;
    background: rgba(240,193,50,0.15);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.check-icon svg { width: 10px; height: 10px; fill: var(--color-accent); }

/* Judging criteria */
.criteria-section { background: var(--color-bg-alt); }

.criteria-head { max-width: 600px; margin-bottom: var(--spacing-l); }

.criteria-headline {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    font-weight: 900; color: var(--color-primary); line-height: 1.1;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.criterion {
    background: var(--color-bg);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--color-border);
    position: relative;
}

.criterion-number {
    font-family: var(--font-heading);
    font-size: 3.5rem; font-weight: 900;
    color: rgba(12,24,37,0.06);
    line-height: 1; position: absolute;
    top: 1.25rem; right: 1.5rem;
    user-select: none;
}

.criterion-title {
    font-family: var(--font-heading);
    font-size: 1.25rem; font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.criterion-title span {
    display: block;
    width: 28px; height: 3px;
    background: var(--color-accent);
    border-radius: 2px; margin-bottom: 0.75rem;
}

.criterion-body {
    font-size: 0.92rem; color: var(--color-text-muted);
    line-height: 1.75; margin: 0;
}

.criterion-body strong { color: var(--color-text); }

/* How to apply */
.apply-section {
    background: var(--color-primary);
    position: relative; overflow: hidden;
}

.apply-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 80% 80%, rgba(240,193,50,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.apply-section .container {
    display: flex; flex-direction: column;
    align-items: center;
    position: relative; z-index: 1;
}

.apply-header {
    text-align: center; max-width: 640px;
    margin-bottom: 3.5rem;
}

.apply-headline {
    font-size: clamp(1.8rem, 2.5vw, 2.6rem);
    font-weight: 900; color: #fff;
    line-height: 1.1; margin-bottom: 1.25rem;
}

.apply-subtext { font-size: 0.95rem; color: #94A3B8; line-height: 1.75; margin: 0; }

.apply-tracks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem; width: 100%; align-items: start;
}

.apply-track {
    border-radius: 16px; padding: 2.5rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.apply-track--primary {
    border-color: rgba(240,193,50,0.35);
    background: rgba(240,193,50,0.04);
}

.track-badge {
    display: inline-block;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem; border-radius: 40px;
    margin-bottom: 1.25rem;
}

.track-badge--primary { background: var(--color-accent); color: var(--color-primary); }
.track-badge--secondary { background: rgba(255,255,255,0.08); color: #94A3B8; }

.track-title {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 1.8vw, 1.75rem);
    font-weight: 900; color: #fff;
    line-height: 1.15; margin-bottom: 0.4rem;
}

.track-amount { font-size: 0.84rem; color: var(--color-accent); font-weight: 600; margin-bottom: 2rem; letter-spacing: 0.02em; }
.track-amount--muted { color: #64748B; }

.track-stage { margin-bottom: 1.75rem; }

.track-stage-label {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--color-accent);
    margin-bottom: 1rem; display: block;
}

.track-stage-label--muted { color: #64748B; }

.track-steps { list-style: none; }

.track-step {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 0.9rem; margin-bottom: 1.1rem; align-items: start;
}

.step-num {
    width: 28px; height: 28px; border-radius: 50%;
    border: 1.5px solid rgba(240,193,50,0.35);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-size: 0.78rem; font-weight: 900;
    color: var(--color-accent); flex-shrink: 0;
}

.step-num--muted { border-color: rgba(255,255,255,0.1); color: #64748B; }

.step-content {}

.step-title {
    font-family: var(--font-heading);
    font-size: 0.95rem; font-weight: 700;
    color: #fff; margin-bottom: 0.2rem;
}

.step-title--muted { color: #94A3B8; }

.step-body { font-size: 0.82rem; color: #64748B; line-height: 1.6; margin: 0; }

.track-connector {
    display: flex; align-items: flex-start; gap: 0.75rem;
    margin: 1.5rem 0; padding: 0.85rem 1rem;
    background: rgba(240,193,50,0.06);
    border-radius: 8px;
    border-left: 2px solid rgba(240,193,50,0.4);
}

.track-connector svg { color: var(--color-accent); flex-shrink: 0; margin-top: 2px; }
.track-connector-text { font-size: 0.82rem; color: #94A3B8; font-style: italic; line-height: 1.55; }

.track-cta-block {
    margin-top: 2rem; padding-top: 1.75rem;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.apply-cta-note {
    font-size: 0.74rem; color: rgba(255,255,255,0.22);
    margin-top: 0.9rem; line-height: 1.65;
}

/* Timeline */
.timeline-section { background: var(--color-bg); }

.timeline-head {
    text-align: center; max-width: 520px;
    margin: 0 auto var(--spacing-l);
}

.timeline-headline {
    font-size: clamp(1.6rem, 2vw, 2rem);
    font-weight: 900; color: var(--color-primary);
}

.timeline-track {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0; position: relative;
}

.timeline-track::before {
    content: '';
    position: absolute;
    top: 20px; left: 10%; right: 10%;
    height: 2px; background: var(--color-border); z-index: 0;
}

.timeline-item {
    display: flex; flex-direction: column;
    align-items: center; text-align: center;
    position: relative; z-index: 1; padding: 0 0.5rem;
}

.timeline-dot {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
    transition: border-color 200ms ease;
}

.timeline-dot svg { width: 14px; height: 14px; fill: var(--color-text-muted); }

.timeline-item--active .timeline-dot { background: var(--color-accent); border-color: var(--color-accent); }
.timeline-item--active .timeline-dot svg { fill: var(--color-primary); }

.timeline-date {
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--color-accent-hover);
    margin-bottom: 0.3rem;
}

.timeline-label {
    font-size: 0.82rem; font-weight: 600;
    color: var(--color-text); line-height: 1.3;
}

.timeline-note {
    font-size: 0.72rem; color: var(--color-text-muted);
    margin-top: 0.2rem; line-height: 1.4;
}

/* Final CTA */
.final-cta {
    background: var(--color-primary);
    position: relative; overflow: hidden;
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.final-cta::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(240,193,50,0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(240,193,50,0.04) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta .container { position: relative; z-index: 1; max-width: 720px; }

.final-cta-eyebrow {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em;
    text-transform: uppercase; color: rgba(240,193,50,0.6);
    margin-bottom: 1.5rem;
}

.final-cta-headline {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 900; color: #fff;
    line-height: 1.05; margin-bottom: 1.5rem;
}

.final-cta-headline em { font-style: italic; color: var(--color-accent); }

.final-cta-body {
    font-size: 1rem; color: #94A3B8;
    line-height: 1.8; max-width: 520px;
    margin: 0 auto 2.5rem;
}

.final-cta-meta { font-size: 0.72rem; color: rgba(255,255,255,0.25); margin-top: 1.25rem; }


/* ═══════════════════════════════════════════════════════════════
   22. APPLICATION FORM PAGE
   Used by: preview-lite-application.html
   ═══════════════════════════════════════════════════════════════ */

.form-page {
    min-height: 100vh;
    padding: 10rem 2.5rem 6rem;
    background: var(--color-primary);
    position: relative; overflow: hidden;
}

.form-page::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240,193,50,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.form-container {
    max-width: 680px;
    margin: 0 auto;
    position: relative; z-index: 1;
}

.form-eyebrow {
    display: inline-block;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1.25rem;
}

.form-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900; color: #fff;
    line-height: 1.05; margin-bottom: 1rem;
}

.form-subtitle {
    font-size: 0.95rem; color: #94A3B8;
    line-height: 1.75; margin-bottom: 0.75rem;
}

.form-meta {
    display: flex; gap: 1.5rem; flex-wrap: wrap;
    margin-bottom: 3.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.form-meta-item {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.78rem; color: rgba(255,255,255,0.35);
}

.form-meta-item svg { color: var(--color-accent); flex-shrink: 0; }

.form-body { display: flex; flex-direction: column; gap: 2.25rem; }

.field-group { display: flex; flex-direction: column; gap: 0.6rem; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

label {
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em;
    text-transform: uppercase; color: rgba(255,255,255,0.55);
}

.field-hint {
    font-size: 0.78rem; color: #475569;
    line-height: 1.55; margin-top: 0.2rem;
}

.field-required { color: var(--color-accent); margin-left: 2px; }

input[type="text"],
input[type="email"],
input[type="number"],
input[type="url"],
textarea,
select {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #fff;
    transition: border-color var(--transition-base), background var(--transition-base);
    outline: none;
    appearance: none;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="url"]::placeholder,
textarea::placeholder { color: #475569; }

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="url"]:focus,
textarea:focus,
select:focus {
    border-color: rgba(240,193,50,0.5);
    background: rgba(240,193,50,0.04);
}

textarea { resize: vertical; min-height: 140px; line-height: 1.65; }

.word-count {
    font-size: 0.72rem; color: #475569; text-align: right;
    margin-top: 0.35rem;
}

/* Radio cards */
.radio-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.85rem; }

.radio-card input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }

.radio-card label {
    display: flex; flex-direction: column; gap: 0.5rem;
    padding: 1.1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; cursor: pointer;
    transition: border-color var(--transition-base), background var(--transition-base);
    text-transform: none; letter-spacing: 0;
    font-size: 0.88rem; font-weight: 600; color: #94A3B8;
}

.radio-card label:hover {
    border-color: rgba(240,193,50,0.25);
    background: rgba(240,193,50,0.03);
    color: #cbd5e1;
}

.radio-card input[type="radio"]:checked + label {
    border-color: rgba(240,193,50,0.5);
    background: rgba(240,193,50,0.07);
    color: #fff;
}

.radio-card-icon { font-size: 1.3rem; line-height: 1; margin-bottom: 0.15rem; }

.radio-card-title { font-weight: 700; color: inherit; }

.radio-card-desc {
    font-size: 0.74rem; font-weight: 400; color: #475569; line-height: 1.5;
}

.radio-card input[type="radio"]:checked + label .radio-card-desc { color: #94A3B8; }

/* Select dropdown */
.select-wrapper { position: relative; }

.select-wrapper svg {
    position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
    color: #475569; pointer-events: none;
}

select { padding-right: 2.5rem; background-color: rgba(255,255,255,0.05); }

select option { background: #1e2d3d; color: #fff; }

.form-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* Submit area */
.submit-area { padding-top: 0.5rem; }

.submit-note {
    font-size: 0.78rem; color: #475569; line-height: 1.65;
    margin-bottom: 1.5rem;
}

.submit-note a { color: var(--color-accent); text-decoration: underline; text-underline-offset: 3px; }

.btn-submit {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: var(--color-accent);
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: 0.9rem; font-weight: 700; letter-spacing: 0.04em;
    padding: 1rem 2.25rem;
    border-radius: 40px;
    border: none; cursor: pointer;
    transition: background var(--transition-base), transform var(--transition-base);
}

.btn-submit:hover {
    background: var(--color-accent-hover);
    transform: translateY(-1px);
}

.btn-submit svg { flex-shrink: 0; }

.form-footer {
    background: var(--color-primary);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1.75rem 2.5rem;
    text-align: center;
}

.form-footer p {
    font-size: 0.78rem; color: rgba(255,255,255,0.2); line-height: 1.65;
}

.form-footer a { color: rgba(255,255,255,0.35); text-decoration: underline; text-underline-offset: 3px; }

.form-footer a:hover { color: rgba(255,255,255,0.6); }


/* ═══════════════════════════════════════════════════════════════
   23. FOOTER — FULL DARK (hero / about pages)
   Used by: finnwardman_hero_v1.html, finnwardman_about_v1.html
   ═══════════════════════════════════════════════════════════════ */

.site-footer {
    background: #050D17;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 72px 0 0;
    color: rgba(255,255,255,0.65);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F0C132;
    overflow: hidden;
    flex-shrink: 0;
}

.footer-logo-text {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
}

.footer-tagline {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.45);
    margin-bottom: 28px;
}

.footer-socials {
    display: flex;
    gap: 14px;
}

.footer-social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55);
    transition: border-color 0.2s, color 0.2s;
    text-decoration: none;
}

.footer-social:hover {
    border-color: #F0C132;
    color: #F0C132;
}

.footer-social svg {
    width: 16px;
    height: 16px;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #F0C132;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-address,
.footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover { color: rgba(255,255,255,0.7); }


/* ═══════════════════════════════════════════════════════════════
   24. FOOTER — COMPACT (blog / epic-dream pages)
   Used by: preview-blog.html, preview-epic-dream-grant.html
   ═══════════════════════════════════════════════════════════════ */

/* .site-footer is already declared above.
   Compact variant adds .footer-grid inside .container */

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-l);
    margin-bottom: var(--spacing-l);
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 1rem; font-weight: 700;
    color: #fff; line-height: 1.2;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: var(--spacing-s);
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
    font-size: 0.88rem;
    transition: color 150ms ease;
}

.footer-links a:hover { color: #fff; }

.footer-bottom--compact {
    padding-top: var(--spacing-m);
    border-top: 1px solid rgba(255,255,255,0.07);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    opacity: 0.35;
}


/* ═══════════════════════════════════════════════════════════════
   25. RESPONSIVE MEDIA QUERIES
   ═══════════════════════════════════════════════════════════════ */

/* ── Large / medium tablets (1024px) ── */
@media (max-width: 1024px) {
    /* Old nav */
    nav { padding: 0 32px; }

    /* Hero layout */
    .hero-body { flex-direction: column; padding: 40px 32px 60px; }
    .hero-text  { flex: none; width: 100%; }
    .hero-headline { font-size: 44px; }

    /* EDG promo */
    .edg-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 32px; }
    .edg-headline { font-size: 40px; }

    /* FTF */
    .ftf { padding: 60px 32px; }
    .ftf-podcast { grid-template-columns: 1fr; gap: 28px; }
    .ftf-shorts-grid { grid-template-columns: repeat(2, 1fr); }

    /* Team members */
    .team-grid--members { grid-template-columns: repeat(4, 1fr); }

    /* Blog podcast */
    .podcast-section .container { grid-template-columns: 1fr; }
}

/* ── Tablets (960px) ── */
@media (max-width: 960px) {
    /* About hero */
    .about-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 32px;
        gap: 48px;
    }
    .about-hero-headline  { font-size: 48px; }
    .about-hero-subtext   { margin: 0 auto 40px; }
    .about-hero-actions   { justify-content: center; }
    .about-hero-stats     { justify-content: center; }
    .about-hero-scroll    { justify-content: center; }
    .badge-img            { width: 280px; }
    nav { padding: 0 24px; }
}

/* ── Tablets (900px) ── */
@media (max-width: 900px) {
    /* About finn section */
    .about-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
    .about-heading { font-size: 32px; }

    /* Grants grid */
    .grants-grid  { grid-template-columns: 1fr; }
    .grants-inner { padding: 0 24px; }
    .grants-title { font-size: 36px; }
    .grant-card--featured { margin: 0; }

    /* FAQ icon grid */
    .faq-grid  { grid-template-columns: repeat(2, 1fr); }
    .faq-inner { padding: 0 32px; }
    .faq-title { font-size: 32px; }

    /* Team */
    .team-inner  { padding: 0 24px; }
    .team-grid   { grid-template-columns: 1fr 1fr; }
    .team-grid--members { grid-template-columns: repeat(4, 1fr); }
    .team-title  { font-size: 36px; }

    /* Full dark footer */
    .footer-top    { grid-template-columns: 1fr; gap: 48px; }
    .footer-inner  { padding: 0 24px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── Small tablets / large phones (768px) ── */
@media (max-width: 768px) {
    /* Site-header nav */
    .site-nav,
    .nav-cta {
        display: none;
    }
}

/* ── Phones (640px) ── */
@media (max-width: 640px) {
    /* Old nav */
    nav { padding: 0 20px; }
    .nav-logo-text { display: none; }
    .nav-links     { gap: 20px; }

    /* Hero */
    .hero-body    { padding: 32px 20px 48px; gap: 32px; }
    .hero-headline { font-size: 36px; }
    .hero-subtext  { font-size: 15px; }
    .hero .btn-primary { padding: 12px 28px; font-size: 14px; }

    /* EDG promo */
    .edg-inner   { padding: 0 20px; }
    .edg-headline { font-size: 34px; }
    .edg-amount  { font-size: 60px; }
    .edg-card    { padding: 32px 28px; }

    /* FTF */
    .ftf         { padding: 40px 20px; }
    .ftf-title   { font-size: 30px; }
    .ftf-shorts-grid { grid-template-columns: repeat(2, 1fr); }

    /* FAQ icon grid */
    .faq-grid  { grid-template-columns: 1fr; }
    .faq-inner { padding: 0 24px; }

    /* Team */
    .team-grid          { grid-template-columns: 1fr; }
    .team-grid--members { grid-template-columns: repeat(2, 1fr); }

    /* Blog shorts */
    .shorts-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Small phones (600px) ── */
@media (max-width: 600px) {
    /* Form page */
    .field-row    { grid-template-columns: 1fr; }
    .radio-cards  { grid-template-columns: 1fr; }
    .form-page    { padding: 8rem 1.25rem 4rem; }
}

/* ── Very small phones (560px) ── */
@media (max-width: 560px) {
    .faq-grid  { grid-template-columns: 1fr; }
    .faq-inner { padding: 0 24px; }
}


/* ═══════════════════════════════════════════════════════════════
   GHOST KOENIG EDITOR — Required card CSS
   ═══════════════════════════════════════════════════════════════ */

/* Required width classes */
.kg-width-wide {
    margin-left: calc(50% - 50vw + 2rem);
    margin-right: calc(50% - 50vw + 2rem);
    max-width: none;
}

.kg-width-full {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: none;
}

/* Image card */
.kg-image-card img,
.kg-image { max-width: 100%; height: auto; display: block; }

/* Gallery card */
.kg-gallery-container { display: flex; flex-direction: column; max-width: 100%; }
.kg-gallery-row { display: flex; gap: 4px; }
.kg-gallery-image { flex: 1; min-width: 0; }
.kg-gallery-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Bookmark card */
.kg-bookmark-card { border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; overflow: hidden; }
.kg-bookmark-container { display: flex; text-decoration: none; color: inherit; }
.kg-bookmark-content { padding: 1rem; flex: 1; }
.kg-bookmark-title { font-weight: 600; color: #fff; margin-bottom: 0.25rem; }
.kg-bookmark-description { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.kg-bookmark-thumbnail img { width: 160px; height: 100%; object-fit: cover; }

/* Video / embed card */
.kg-embed-card { display: flex; justify-content: center; }
.kg-embed-card iframe,
.kg-embed-card video { max-width: 100%; }

/* Callout card */
.kg-callout-card { display: flex; gap: 1rem; padding: 1.25rem; border-radius: 6px; background: rgba(255,255,255,0.05); }
.kg-callout-emoji { font-size: 1.4rem; line-height: 1; }

/* Toggle card */
.kg-toggle-card { border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 1rem; }
.kg-toggle-heading { display: flex; justify-content: space-between; cursor: pointer; }
.kg-toggle-content { margin-top: 0.75rem; }

/* File card */
.kg-file-card { display: flex; align-items: center; gap: 1rem; padding: 1rem; border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; }

/* Button card */
.kg-btn { display: inline-block; padding: 0.6rem 1.5rem; border-radius: 4px; font-weight: 600; text-decoration: none; }
.kg-btn-accent { background: #F0C132; color: #0C1825; }
