/* ========================================
   Deliverpendence - Premium Editorial Design
   $1M Framer-Level Aesthetic
   ======================================== */

/* CSS Variables */
:root {
    /* Colors - Warm Luxury Palette */
    --bg-primary: #FAF8F5;
    --bg-secondary: #F5F2ED;
    --bg-tertiary: #EDE8E0;
    --bg-dark: #0D0D0D;
    --bg-dark-secondary: #1A1A1A;

    --text-primary: #0D0D0D;
    --text-secondary: #4A4A4A;
    --text-tertiary: #8A8A8A;
    --text-inverse: #FAF8F5;

    --accent: #C45C3E;
    --accent-light: #D97B5E;
    --accent-dark: #A34830;

    --border: rgba(13, 13, 13, 0.08);
    --border-strong: rgba(13, 13, 13, 0.15);

    /* Typography */
    --font-display: 'Instrument Serif', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    --font-signature: 'Caveat', cursive;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 10rem;

    /* Animation */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Layout */
    --max-width: 1200px;
    --content-width: 800px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

::selection {
    background: var(--accent);
    color: var(--text-inverse);
}

/* Cursor Glow Effect */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: radial-gradient(circle, rgba(196, 92, 62, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
}

body:hover .cursor-glow {
    opacity: 1;
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--accent);
    z-index: 10000;
    width: 0%;
    transition: width 0.1s linear;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) var(--space-lg);
    transition: all 0.4s var(--ease-out);
}

.nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(250, 248, 245, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

.nav.scrolled::before {
    opacity: 1;
}

.nav.scrolled {
    padding: var(--space-sm) var(--space-lg);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
}

.nav-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s var(--ease-out);
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.1);
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s var(--ease-out);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-cta {
    background: var(--text-primary);
    color: var(--text-inverse) !important;
    padding: 0.625rem 1.25rem;
    border-radius: 100px;
    transition: all 0.3s var(--ease-out);
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: var(--space-3xl) var(--space-lg);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(196, 92, 62, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(196, 92, 62, 0.08) 0%, transparent 50%);
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.hero-lines {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 10%;
    pointer-events: none;
}

.hero-lines span {
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, var(--border) 20%, var(--border) 80%, transparent 100%);
    opacity: 0.5;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-lg);
}

.title-line {
    display: block;
}

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

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 100px;
    cursor: pointer;
    border: none;
    transition: all 0.4s var(--ease-out);
}

.btn-primary {
    background: var(--text-primary);
    color: var(--text-inverse);
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(196, 92, 62, 0.3);
}

.btn-primary .btn-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease-out);
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-strong);
}

.btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--text-primary);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-strong);
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-tertiary);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.scroll-indicator {
    width: 20px;
    height: 32px;
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    position: relative;
}

.scroll-dot {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { top: 6px; opacity: 1; }
    50% { top: 16px; opacity: 0.3; }
}

/* Sections */
.section {
    padding: var(--space-3xl) var(--space-lg);
    position: relative;
}

.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-header,
.social-header,
.declaration-header,
.sign-header,
.signatories-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

/* Podcast Section */
.section-podcast {
    background: var(--bg-secondary);
}

.podcast-featured {
    max-width: 900px;
    margin: 0 auto var(--space-xl);
    background: var(--bg-primary);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    position: relative;
}

.podcast-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.5rem 1rem;
    background: var(--text-primary);
    color: var(--text-inverse);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.podcast-video-wrapper {
    padding: var(--space-md);
    padding-bottom: 0;
}

.podcast-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-dark);
}

.podcast-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.podcast-meta {
    padding: var(--space-lg);
}

.podcast-ep {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.podcast-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text-primary);
    margin: var(--space-xs) 0;
}

.podcast-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Podcast List */
.podcast-list {
    max-width: 700px;
    margin: 0 auto;
}

.list-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-md);
}

.podcast-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--bg-primary);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
    border: 1px solid transparent;
}

.podcast-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.podcast-item.active {
    border-color: var(--accent);
}

.item-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--accent);
    min-width: 40px;
}

.item-content {
    flex: 1;
}

.item-title {
    display: block;
    font-weight: 500;
    color: var(--text-primary);
}

.item-duration {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

.item-status {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Social Section */
.section-social {
    background: var(--bg-primary);
}

.tiktok-wrapper {
    display: flex;
    justify-content: center;
}

/* Declaration Section */
.section-declaration {
    background: var(--bg-dark);
    color: var(--text-inverse);
    position: relative;
    overflow: hidden;
}

.declaration-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.declaration-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 20% 20%, rgba(196, 92, 62, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 80% 80%, rgba(196, 92, 62, 0.1) 0%, transparent 50%);
}

.section-declaration .section-label {
    color: var(--accent-light);
}

.section-declaration .section-title {
    color: var(--text-inverse);
}

.declaration-content {
    max-width: var(--content-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.declaration-block {
    margin-bottom: var(--space-xl);
}

.declaration-preamble {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    line-height: 1.6;
    color: rgba(250, 248, 245, 0.95);
}

.drop-cap {
    float: left;
    font-family: var(--font-display);
    font-size: 4.5rem;
    line-height: 0.8;
    padding-right: var(--space-sm);
    padding-top: 0.1em;
    color: var(--accent);
}

.declaration-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(250, 248, 245, 0.85);
}

.declaration-text em {
    color: var(--accent-light);
    font-style: italic;
}

.declaration-aside {
    margin: var(--space-lg) 0;
    padding: var(--space-md) var(--space-lg);
    border-left: 3px solid var(--accent);
    font-style: italic;
    color: rgba(250, 248, 245, 0.7);
    background: rgba(196, 92, 62, 0.08);
    border-radius: 0 8px 8px 0;
}

.declaration-heading {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text-inverse);
    margin-bottom: var(--space-md);
    position: relative;
    display: inline-block;
}

.declaration-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--accent);
}

.declaration-intro {
    font-size: 0.95rem;
    color: rgba(250, 248, 245, 0.6);
    font-style: italic;
    margin-bottom: var(--space-md);
}

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

.declaration-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    font-size: 1.05rem;
    color: rgba(250, 248, 245, 0.85);
    border-bottom: 1px solid rgba(250, 248, 245, 0.08);
}

.declaration-list li:last-child {
    border-bottom: none;
}

.list-marker {
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: var(--accent);
    border-radius: 50%;
    margin-top: 0.5em;
}

.list-check {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: var(--accent);
    border-radius: 50%;
    position: relative;
    margin-top: 0.2em;
}

.list-check::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 4px;
    width: 5px;
    height: 9px;
    border: solid var(--bg-dark);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.declaration-pledge {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    text-align: center;
    color: var(--text-inverse);
    margin-top: var(--space-lg);
}

.declaration-pledge strong {
    color: var(--accent);
}

.declaration-closing {
    text-align: center;
    margin-top: var(--space-2xl);
}

.declaration-date {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: rgba(250, 248, 245, 0.8);
    margin-bottom: var(--space-lg);
}

.declaration-date strong {
    color: var(--accent-light);
}

.declaration-seal {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 50%, var(--accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        inset 0 4px 10px rgba(255, 255, 255, 0.2),
        inset 0 -4px 10px rgba(0, 0, 0, 0.2),
        0 10px 40px rgba(196, 92, 62, 0.4);
    position: relative;
    animation: sealFloat 6s ease-in-out infinite;
}

.declaration-seal::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.seal-year {
    font-family: var(--font-signature);
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

@keyframes sealFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(3deg); }
}

/* Sign Section */
.section-sign {
    background: var(--bg-secondary);
}

.sign-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: var(--space-sm);
}

.sign-form {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.signature-preview-wrapper {
    margin-bottom: var(--space-md);
}

.signature-preview {
    font-family: var(--font-signature);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-tertiary);
    min-height: 60px;
    transition: color 0.3s var(--ease-out);
}

.signature-preview.has-value {
    color: var(--text-primary);
}

.input-wrapper {
    position: relative;
    margin-bottom: var(--space-lg);
}

.signature-input {
    width: 100%;
    background: transparent;
    border: none;
    font-family: var(--font-signature);
    font-size: 1.5rem;
    color: var(--text-primary);
    text-align: center;
    padding: var(--space-sm) 0;
    outline: none;
}

.signature-input::placeholder {
    color: var(--text-tertiary);
}

.input-line {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--border-strong) 20%, var(--border-strong) 80%, transparent 100%);
    transition: background 0.3s ease;
}

.signature-input:focus + .input-line {
    background: linear-gradient(90deg, transparent 0%, var(--accent) 20%, var(--accent) 80%, transparent 100%);
}

.btn-sign {
    background: var(--text-primary);
    color: var(--text-inverse);
    padding: 1.25rem 3rem;
    font-size: 1rem;
}

.btn-sign:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(196, 92, 62, 0.3);
}

.btn-sign svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease-out);
}

.btn-sign:hover svg {
    transform: translateX(4px);
}

.sign-confirmation {
    margin-top: var(--space-lg);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s var(--ease-out);
    pointer-events: none;
}

.sign-confirmation.visible {
    opacity: 1;
    transform: translateY(0);
}

.confirmation-check {
    width: 48px;
    height: 48px;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.sign-confirmation p {
    color: var(--text-secondary);
}

.signature-count {
    font-weight: 600;
    color: var(--accent);
}

/* Signatories Section */
.section-signatories {
    background: var(--bg-primary);
}

.signatories-count {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: var(--space-xs);
}

.signatories-count span {
    font-weight: 600;
    color: var(--accent);
}

.signature-wall {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md) var(--space-lg);
    padding: var(--space-xl);
    background: var(--bg-secondary);
    border-radius: 24px;
    min-height: 200px;
}

.signature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    opacity: 0;
    animation: fadeInSignature 0.5s var(--ease-out) forwards;
}

.sig-name {
    font-family: var(--font-signature);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--text-primary);
}

.sig-time {
    font-size: 0.7rem;
    color: var(--text-tertiary);
}

.other-signees {
    width: 100%;
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
}

.other-signees .sig-name {
    font-style: italic;
    color: var(--text-secondary);
}

@keyframes fadeInSignature {
    from {
        opacity: 0;
        transform: translateY(10px) rotate(var(--rotation, 0deg));
    }
    to {
        opacity: 1;
        transform: translateY(0) rotate(var(--rotation, 0deg));
    }
}

/* Footer */
.footer {
    padding: var(--space-xl) var(--space-lg);
    background: var(--bg-dark);
    color: var(--text-inverse);
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.footer-name {
    font-family: var(--font-display);
    font-size: 1.125rem;
}

.footer-meta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: rgba(250, 248, 245, 0.6);
}

.footer-divider {
    opacity: 0.3;
}

.footer-tagline {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.footer-hashtag {
    font-size: 0.9rem;
    color: var(--accent);
}

/* Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
}

[data-animate].animated {
    animation: fadeUp 0.8s var(--ease-out) forwards;
}

[data-animate][data-delay="1"].animated { animation-delay: 0.1s; }
[data-animate][data-delay="2"].animated { animation-delay: 0.2s; }
[data-animate][data-delay="3"].animated { animation-delay: 0.3s; }
[data-animate][data-delay="4"].animated { animation-delay: 0.4s; }

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

/* Loading & Empty States */
.loading-text, .empty-text {
    font-style: italic;
    color: var(--text-tertiary);
    text-align: center;
    width: 100%;
    padding: var(--space-xl);
}

/* Responsive */
@media (max-width: 768px) {
    :root {
        --space-xl: 3rem;
        --space-2xl: 4rem;
        --space-3xl: 6rem;
    }

    .nav-links {
        display: none;
    }

    .hero-stats {
        gap: var(--space-lg);
    }

    .stat-divider {
        display: none;
    }

    .hero-scroll {
        display: none;
    }

    .podcast-featured {
        border-radius: 16px;
    }

    .podcast-video-wrapper {
        padding: var(--space-sm);
    }

    .podcast-video {
        border-radius: 12px;
    }

    .podcast-item {
        padding: var(--space-md);
    }

    .declaration-seal {
        width: 80px;
        height: 80px;
    }

    .signature-wall {
        padding: var(--space-lg);
        border-radius: 16px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .podcast-meta {
        padding: var(--space-md);
    }

    .podcast-badge {
        top: var(--space-sm);
        left: var(--space-sm);
        font-size: 0.65rem;
    }

    .drop-cap {
        font-size: 3rem;
    }
}

/* Signature animation delays */
.signature-item:nth-child(1) { animation-delay: 0s; }
.signature-item:nth-child(2) { animation-delay: 0.05s; }
.signature-item:nth-child(3) { animation-delay: 0.1s; }
.signature-item:nth-child(4) { animation-delay: 0.15s; }
.signature-item:nth-child(5) { animation-delay: 0.2s; }
.signature-item:nth-child(6) { animation-delay: 0.25s; }
.signature-item:nth-child(7) { animation-delay: 0.3s; }
.signature-item:nth-child(8) { animation-delay: 0.35s; }
.signature-item:nth-child(9) { animation-delay: 0.4s; }
.signature-item:nth-child(10) { animation-delay: 0.45s; }

/* Shake animation */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}
