@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap');

:root {
    --bg-0: #020414;
    --bg-1: #050717;
    --bg-card: #090b19;
    --bg-card-2: #0d1022;
    --accent: #8f171c;
    --accent-mid: #b4252b;
    --accent-light: #e8dfe2;
    --accent-pale: #ffffff;
    --blood: #350606;
    --navy-glow: #020a39;
    --border: rgba(255, 255, 255, 0.12);
    --border-hover: rgba(180, 37, 43, 0.42);
    --text-primary: #f7f7fb;
    --text-secondary: #d7dae4;
    --text-muted: #9da3b5;
    --text-dim: #5e647a;
    --font-display: "Playfair Display", Georgia, serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    --r-md: 10px;
    --r-lg: 14px;
    --r-xl: 20px;
    --r-full: 9999px;
    --ease: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
    overflow-x: hidden;
    background:
        radial-gradient(circle at 50% -12%, rgba(80, 8, 10, 0.55), transparent 34rem),
        radial-gradient(circle at 50% 55%, rgba(2, 10, 57, 0.28), transparent 36rem),
        var(--bg-0);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    background-size: 200px;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.5;
}

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

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

button,
input {
    font: inherit;
}

.container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container--sm {
    max-width: 760px;
}

.container--xs {
    max-width: 640px;
}

.section {
    padding: 7rem 0;
}

.text-accent {
    background: linear-gradient(130deg, #ffffff 0%, #d8dce8 48%, #8f171c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.divider {
    width: 100%;
    max-width: 200px;
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent 0%, rgba(143, 23, 28, 0.78) 50%, transparent 100%);
    opacity: 0.38;
}

/* ── HERO ── */

.hero {
    position: relative;
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    z-index: 0;
    width: min(42vw, 520px);
    height: min(42vw, 520px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom-color: transparent;
    border-radius: 50%;
    opacity: 0.42;
    pointer-events: none;
}

.hero::before {
    left: -16vw;
    top: 10rem;
    transform: rotate(-18deg);
}

.hero::after {
    right: -16vw;
    top: 10rem;
    transform: rotate(18deg);
}

.hero__monogram {
    position: absolute;
    left: 50%;
    bottom: 3.5rem;
    z-index: 0;
    color: rgba(255, 255, 255, 0.035);
    font-family: var(--font-display);
    font-size: clamp(6rem, 18vw, 16rem);
    line-height: 1;
    transform: translateX(-50%);
    pointer-events: none;
}

/* ── HERO PORTRAIT ── */

.hero__portrait {
    position: absolute;
    right: max(2rem, calc((100vw - 1080px) / 2));
    bottom: 0;
    z-index: 1;
    width: min(22vw, 280px);
    pointer-events: none;
    opacity: 0.18;
    mask-image: linear-gradient(to top, transparent 0%, black 30%, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, transparent 0%, black 30%, black 70%, transparent 100%);
}

.hero__portrait img {
    width: 100%;
    height: auto;
    filter: grayscale(0.95) brightness(0.72) sepia(0.18) hue-rotate(175deg);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 78% 45% at 50% -8%, rgba(74, 8, 9, 0.72) 0%, transparent 60%),
        radial-gradient(circle at 50% 18%, rgba(118, 18, 22, 0.18), transparent 42%),
        radial-gradient(circle at 50% 76%, rgba(4, 13, 61, 0.55), transparent 46%),
        var(--bg-0);
}

.hero__bg::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 4.5rem;
    width: min(82vw, 880px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(143, 23, 28, 0.75), transparent);
    transform: translateX(-50%);
    opacity: 0.75;
}

.hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.008) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 65%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

/* ── EYEBROW / PILL ── */

.hero__eyebrow,
.section-title span,
.bio__tag,
.form-header .eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--r-full);
    background: rgba(255, 255, 255, 0.045);
    color: #e9e9ef;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    padding: 0.35rem 1rem;
    text-transform: uppercase;
}

.hero__eyebrow {
    margin-bottom: 1.75rem;
}

.hero__eyebrow span {
    color: var(--text-dim);
}

/* ── HEADLINE ── */

.hero__headline {
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    font-size: clamp(1.85rem, 4.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.18;
}

.hero__headline::after {
    content: "";
    display: block;
    width: 118px;
    height: 2px;
    margin: 1.4rem auto 0;
    background: linear-gradient(90deg, transparent, rgba(180, 37, 43, 0.9), transparent);
}

.hero__subtitle {
    max-width: 560px;
    margin: 0 auto 1.75rem;
    color: var(--text-muted);
    font-size: clamp(0.95rem, 1.3vw, 1.05rem);
    font-weight: 400;
    line-height: 1.8;
}

.countdown {
    width: min(100%, 520px);
    margin: 0 auto 2rem;
}

.capture-countdown {
    width: 100%;
    margin: 0.35rem 0 0.65rem;
}

.countdown__label {
    margin-bottom: 0.7rem;
    color: rgba(247, 247, 251, 0.52);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.capture-countdown .countdown__label {
    margin-bottom: 0.6rem;
    text-align: left;
}

.countdown__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--r-lg);
    background: rgba(143, 23, 28, 0.16);
}

.countdown__grid div {
    min-width: 0;
    background: rgba(5, 7, 23, 0.82);
    padding: 0.9rem 0.55rem;
}

.capture-countdown .countdown__grid div {
    padding: 0.72rem 0.45rem;
}

.countdown__grid strong {
    display: block;
    color: var(--text-primary);
    font-size: clamp(1.25rem, 3vw, 1.8rem);
    font-weight: 700;
    line-height: 1;
}

.capture-countdown .countdown__grid strong {
    font-size: clamp(1.05rem, 3vw, 1.35rem);
}

.countdown__grid span {
    display: block;
    margin-top: 0.35rem;
    color: var(--text-dim);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ── VIDEO ── */

.video-wrap {
    position: relative;
    width: 100%;
    max-width: 680px;
    aspect-ratio: 16 / 9;
    margin: 0 auto 2rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r-xl);
    background:
        radial-gradient(circle at 50% 0%, rgba(143, 23, 28, 0.18), transparent 44%),
        var(--bg-card);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.03) inset,
        0 24px 80px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(0, 0, 0, 0.2);
}

.video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: inherit;
}

.vsl-facade {
    position: absolute;
    inset: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vsl-facade__thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.vsl-facade__play {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 48px;
    border: none;
    background: none;
    cursor: pointer;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
    transition: transform 0.25s ease, filter 0.25s ease;
}

.vsl-facade:hover .vsl-facade__play {
    transform: scale(1.12);
    filter: drop-shadow(0 6px 28px rgba(0, 0, 0, 0.6));
}

.vsl-facade__play svg path:first-child {
    fill: rgba(0, 0, 0, 0.65);
    transition: fill 0.25s ease;
}

.vsl-facade:hover .vsl-facade__play svg path:first-child {
    fill: rgba(143, 23, 28, 0.85);
}

.video-wrap::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.5), transparent);
    z-index: 2;
}

.video-wrap__corner {
    position: absolute;
    z-index: 2;
    width: 44px;
    height: 44px;
    border-color: rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.video-wrap__corner--tl {
    top: 18px;
    left: 18px;
    border-top: 1px solid;
    border-left: 1px solid;
}

.video-wrap__corner--br {
    right: 18px;
    bottom: 18px;
    border-right: 1px solid;
    border-bottom: 1px solid;
}

.video-wrap--placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(145deg, rgba(143, 23, 28, 0.12) 0%, transparent 62%),
        radial-gradient(circle at 50% 85%, rgba(3, 10, 57, 0.5), transparent 46%);
}

.video-wrap__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    padding: 1.5rem;
    text-align: center;
}

.play-btn {
    display: flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #741015, #b4252b);
    box-shadow: 0 0 0 8px rgba(143, 23, 28, 0.1), 0 0 40px rgba(143, 23, 28, 0.18);
    transition: transform var(--ease), box-shadow var(--ease);
}

.video-wrap:hover .play-btn {
    transform: scale(1.06);
    box-shadow: 0 0 0 10px rgba(143, 23, 28, 0.15), 0 0 50px rgba(143, 23, 28, 0.24);
}

.play-btn svg {
    margin-left: 3px;
    width: 22px;
    height: 22px;
}

.video-wrap__text p {
    color: var(--accent-light);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.video-wrap__text h2 {
    margin-top: 0.25rem;
    font-size: clamp(1.15rem, 2.4vw, 1.6rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.15;
}

.video-wrap__text span {
    display: block;
    max-width: 380px;
    margin-top: 0.5rem;
    color: var(--text-dim);
    font-size: 0.85rem;
}

/* ── CTA BUTTON ── */

.btn-primary {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: var(--r-full);
    background: linear-gradient(135deg, #7a1015, #b4252b);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.1) inset,
        0 -1px 0 rgba(0, 0, 0, 0.2) inset,
        0 8px 24px -4px rgba(143, 23, 28, 0.42);
    color: #fff;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 0 2.5rem;
    text-transform: uppercase;
    transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #93171d, #c62e34);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.1) inset,
        0 -1px 0 rgba(0, 0, 0, 0.2) inset,
        0 12px 32px -4px rgba(143, 23, 28, 0.48);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.1) inset,
        0 -1px 0 rgba(0, 0, 0, 0.2) inset,
        0 4px 12px rgba(143, 23, 28, 0.28);
}

/* ── COUNTDOWN ── */

.countdown {
    max-width: 420px;
    margin: 0 auto 2rem;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--r-lg);
    background: rgba(9, 11, 25, 0.7);
    padding: 1.25rem 1.5rem;
}

.countdown__label {
    color: rgba(247, 247, 251, 0.62);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0.75rem;
}

.countdown__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    text-align: center;
}

.countdown__grid div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.countdown__grid strong {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--text-primary);
}

.countdown__grid span {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
}

/* ── ABOUT ── */

.about,
.bio {
    background:
        radial-gradient(circle at 50% 0%, rgba(74, 8, 9, 0.18), transparent 44%),
        var(--bg-1);
}

.about {
    position: relative;
    overflow: hidden;
}

.about::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: min(100% - 4rem, 980px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
    transform: translateX(-50%);
}

.about__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 3.5rem;
    align-items: center;
}

.about__quote {
    margin-bottom: 2rem;
    text-align: left;
}

.about__quote h2,
.purpose__statement,
.section-title h2 {
    font-family: var(--font-body);
    font-size: clamp(1.45rem, 3.2vw, 2.35rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.28;
}

.about__quote h2 span {
    display: block;
}

.about__body {
    max-width: 600px;
    margin: 0;
    color: var(--text-muted);
    font-size: clamp(0.95rem, 1.3vw, 1.08rem);
    line-height: 1.85;
    text-align: left;
}

/* ── PHOTO FRAMES ── */

.photo-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--r-xl);
}

.photo-frame::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: calc(var(--r-xl) - 6px);
    z-index: 1;
    pointer-events: none;
}

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

.photo-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 46%, rgba(2, 4, 20, 0.72));
    pointer-events: none;
}

.photo-frame--portrait {
    aspect-ratio: 4 / 5;
}

/* ── PURPOSE ── */

.purpose__layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 3.5rem;
    align-items: center;
    max-width: 940px;
    margin: 0 auto;
}

.purpose {
    position: relative;
    overflow: hidden;
}

.purpose::before {
    content: "";
    position: absolute;
    right: -12rem;
    top: 22%;
    width: 28rem;
    height: 28rem;
    border: 1px solid rgba(143, 23, 28, 0.2);
    border-radius: 50%;
    opacity: 0.45;
}

.photo-frame--story {
    aspect-ratio: 3 / 4;
}

.purpose__inner {
    max-width: 780px;
    margin: 0;
    text-align: left;
}

.purpose__statement {
    margin-bottom: 2rem;
}

.purpose__body {
    max-width: 620px;
    margin: 0;
    color: var(--text-muted);
    font-size: clamp(0.95rem, 1.3vw, 1.08rem);
    line-height: 1.9;
}

.purpose__body strong {
    color: var(--text-secondary);
    font-weight: 600;
}

.purpose__closing {
    grid-column: 1 / -1;
    max-width: 620px;
    margin: 2.5rem auto 0;
    color: var(--text-secondary);
    font-size: clamp(1.05rem, 1.5vw, 1.18rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.85;
    text-align: center;
    opacity: 0.85;
}

/* ── LIVE TOPICS ── */

.live-topics {
    background:
        radial-gradient(circle at 50% 50%, rgba(2, 10, 57, 0.42), transparent 54%),
        var(--bg-0);
}

.section-title {
    max-width: 660px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-title span {
    margin-bottom: 1rem;
}

.section-title h2 {
    margin-top: 1rem;
}

.topic-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.topic-card {
    position: relative;
    min-height: 200px;
    background: var(--bg-card);
    padding: 1.75rem 1.5rem;
    transition: background var(--ease);
}

.topic-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(180, 37, 43, 0.75), transparent);
    opacity: 0;
    transition: opacity var(--ease);
}

.topic-card:hover {
    background: rgba(143, 23, 28, 0.08);
}

.topic-card:hover::before {
    opacity: 0.4;
}

.topic-card span {
    display: block;
    color: rgba(255, 255, 255, 0.24);
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
}

.topic-card p {
    margin-top: 1.25rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ── SOCIAL PROOF ── */

.proof-grid {
    grid-column: 1 / -1;
    position: relative;
    columns: 4;
    column-gap: 0.75rem;
    opacity: 0.55;
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

.proof-img {
    width: 100%;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r-md);
    break-inside: avoid;
    filter: brightness(0.85);
}

.proof-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* ── BIO ── */

.bio__card {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    max-width: 640px;
    margin: 0 auto;
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    background:
        linear-gradient(145deg, rgba(12, 10, 18, 0.96), rgba(4, 6, 18, 0.98)),
        var(--bg-card);
    box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.35);
    padding: 2.5rem 3rem;
    position: relative;
    overflow: hidden;
}

.bio__card::after {
    content: "AM";
    position: absolute;
    right: 2rem;
    bottom: -1.7rem;
    color: rgba(255, 255, 255, 0.035);
    font-family: var(--font-display);
    font-size: 6rem;
    line-height: 1;
    pointer-events: none;
}

.bio__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(180, 37, 43, 0.38), transparent);
}

.bio__photo {
    width: 96px;
    height: 96px;
    flex-shrink: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 50%;
}

.bio__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: grayscale(0.2);
}

.bio__tag {
    margin-bottom: 0.6rem;
    padding: 0;
    border: 0;
    background: none;
    font-size: 0.62rem;
}

.bio__name {
    margin-bottom: 0.4rem;
    font-family: "Dancing Script", cursive;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.1;
    background: linear-gradient(130deg, #ffffff 0%, #d8dce8 60%, #8f171c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bio__tagline {
    color: var(--text-dim);
    font-size: 0.85rem;
    font-style: italic;
    letter-spacing: 0.02em;
}

/* ── FOOTER ── */

.footer {
    border-top: 1px solid var(--border);
    background: #02030f;
    padding: 4rem 0 2.5rem;
}

.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
}

.footer__brand {
    font-family: "Dancing Script", cursive;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.footer__tagline {
    color: var(--text-dim);
    font-size: 0.82rem;
    font-style: italic;
    letter-spacing: 0.04em;
}

.social-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.social-btn {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: transparent;
    color: var(--text-dim);
    transition: border-color var(--ease), color var(--ease), transform var(--ease);
}

.social-btn:hover {
    border-color: var(--accent-mid);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.footer__copy {
    color: var(--text-dim);
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    margin-top: 0.5rem;
}

/* ── CAPTURE PAGE ── */

.capture-page {
    min-height: 100vh;
    background:
        radial-gradient(ellipse 70% 50% at 50% -5%, rgba(74, 8, 9, 0.46) 0%, transparent 56%),
        radial-gradient(circle at 50% 90%, rgba(2, 10, 57, 0.48), transparent 46%),
        var(--bg-0);
}

.capture-hero {
    min-height: 100vh;
    padding: 5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.capture-grid {
    display: grid;
    grid-template-columns: 1fr minmax(0, 480px);
    gap: 5rem;
    align-items: center;
    max-width: 1060px;
    margin: 0 auto;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
    color: var(--text-dim);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color var(--ease);
}

.back-link:hover {
    color: var(--accent-light);
}

/* ── Dates block ── */

.dates__inner {
    margin-bottom: 2rem;
}

.dates__label {
    color: var(--accent-light);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.dates__numbers {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.dates__day {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dates__num {
    font-size: clamp(3rem, 7vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    color: #fff;
}

.dates__month {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.dates__sep {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    color: var(--text-dim);
    margin-top: -0.8rem;
}

/* ── Capture copy ── */

.capture-copy__title {
    margin: 0 0 1rem;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.capture-copy__sub {
    max-width: 420px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.capture-copy h1 {
    margin: 1.5rem 0;
    font-size: clamp(1.85rem, 4.5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.capture-copy > p:not(.eyebrow):not(.hero__eyebrow) {
    max-width: 520px;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.75;
}

.lead-form {
    display: grid;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--r-xl);
    background:
        linear-gradient(145deg, rgba(12, 10, 18, 0.96), rgba(4, 6, 18, 0.98)),
        rgba(11, 11, 23, 0.95);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.02) inset,
        0 24px 64px -12px rgba(0, 0, 0, 0.4);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.lead-form::after {
    content: "";
    position: absolute;
    right: -4rem;
    top: -4rem;
    width: 11rem;
    height: 11rem;
    border: 1px solid rgba(143, 23, 28, 0.2);
    border-radius: 50%;
    pointer-events: none;
}

.lead-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(180, 37, 43, 0.38), transparent);
}

.form-header h2 {
    margin: 0.8rem 0 0.4rem;
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.form-header p:not(.eyebrow):not(.hero__eyebrow) {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.lead-form label {
    display: grid;
    gap: 0.4rem;
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.lead-form input {
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r-md);
    outline: none;
    background: rgba(255, 255, 255, 0.04);
    color: white;
    font-size: 0.92rem;
    padding: 0 1rem;
    transition: border-color var(--ease), box-shadow var(--ease);
}

.lead-form input:focus {
    border-color: rgba(180, 37, 43, 0.48);
    box-shadow: 0 0 0 3px rgba(143, 23, 28, 0.12);
}

.lead-form input::placeholder {
    color: var(--text-dim);
}

.btn-submit {
    width: 100%;
    margin-top: 0.5rem;
}

.form-note {
    color: var(--text-dim);
    font-size: 0.72rem;
    text-align: center;
    letter-spacing: 0.01em;
}

.form-error {
    display: none;
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: var(--r-md);
    background: rgba(239, 68, 68, 0.06);
    color: #fca5a5;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.8rem;
    text-align: center;
}

.form-error.is-visible {
    display: block;
}

.form-success {
    display: none;
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: var(--r-md);
    background: rgba(34, 197, 94, 0.06);
    color: #bbf7d0;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.8rem;
    text-align: center;
}

.form-success.is-visible {
    display: block;
}

/* ── ANIMATIONS ── */

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

.anim {
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) forwards;
}

.anim-d1 { animation-delay: 0.15s; }
.anim-d2 { animation-delay: 0.3s; }
.anim-d3 { animation-delay: 0.45s; }
.anim-d4 { animation-delay: 0.6s; }
.anim-d5 { animation-delay: 0.75s; }

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ── */

@media (max-width: 900px) {
    .hero__portrait {
        display: none;
    }

    .about__grid,
    .purpose__layout {
        grid-template-columns: 1fr;
    }

    .about__quote,
    .about__body,
    .purpose__inner {
        text-align: center;
    }

    .proof-grid {
        columns: 3;
    }

    .about__body,
    .purpose__body {
        margin: 0 auto;
    }

    .photo-frame {
        max-width: 360px;
        margin: 0 auto;
    }

    .topic-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .section {
        padding: 5rem 0;
    }

    .hero {
        min-height: auto;
    }

    .hero__content {
        padding: 4.5rem 1.5rem;
    }

    .hero__headline {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .hero__subtitle {
        margin-bottom: 1.5rem;
    }

    .video-wrap {
        max-width: 100%;
    }

    .about__grid,
    .purpose__layout {
        gap: 2.5rem;
    }

    .bio__card {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
        text-align: center;
    }

    .capture-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 480px;
        margin: 0 auto;
    }

    .capture-copy {
        text-align: center;
    }

    .dates__numbers {
        justify-content: center;
    }

    .capture-copy__sub {
        margin: 0 auto;
    }

    .capture-hero {
        min-height: auto;
        padding: 3rem 0;
    }

    .lead-form {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .container {
        padding: 0 1.25rem;
    }

    .section {
        padding: 4rem 0;
    }

    .proof-grid {
        columns: 2;
        column-gap: 0.6rem;
    }

    .proof-img {
        margin-bottom: 0.6rem;
    }

    .hero__content {
        padding: 3.5rem 1.25rem;
    }

    .hero__headline {
        font-size: clamp(1.85rem, 10.5vw, 2.6rem);
        line-height: 1.16;
    }

    .hero__eyebrow,
    .section-title span,
    .bio__tag,
    .form-header .eyebrow {
        max-width: 100%;
        white-space: normal;
        text-align: center;
    }

    .topic-grid {
        grid-template-columns: 1fr;
        border-radius: var(--r-md);
    }

    .topic-card {
        min-height: auto;
        padding: 1.5rem 1.25rem;
    }

    .video-wrap {
        border-radius: var(--r-lg);
        aspect-ratio: 4 / 3;
    }

    .countdown__grid strong {
        font-size: 1.18rem;
    }

    .countdown__grid span {
        font-size: 0.58rem;
    }

    .video-wrap__overlay {
        padding: 1.25rem;
    }

    .btn-primary {
        width: 100%;
    }

    .lead-form {
        padding: 1.5rem;
    }

    .lead-form input {
        min-width: 0;
    }

    .bio__card {
        padding: 1.75rem;
    }
}

@media (max-width: 380px) {
    .container {
        padding: 0 1rem;
    }

    .hero__headline {
        font-size: 1.72rem;
    }

    .lead-form {
        padding: 1.2rem;
    }

    .btn-primary {
        font-size: 0.74rem;
        letter-spacing: 0.07em;
        padding-right: 1rem;
        padding-left: 1rem;
    }
}
