/* ── Darkframe Hub Theme ────────────────────────────────────────────────────── */

/* Custom Properties */
:root {
    /* Surfaces */
    --dfh-bg:           #0c0f1a;
    --dfh-surface:      #121726;
    --dfh-surface-2:    #1a2035;
    --dfh-surface-3:    #212840;

    /* Borders */
    --dfh-border:       #1e2640;
    --dfh-border-2:     #2a3356;

    /* Text */
    --dfh-text:         #e2e8f0;
    --dfh-text-2:       #94a3b8;
    --dfh-text-3:       #64748b;

    /* Accent — Darkframe red */
    --dfh-accent:       #e95d6b;
    --dfh-accent-dark:  #c94958;
    --dfh-accent-glow:  rgba(233, 93, 107, 0.15);

    /* Status */
    --dfh-success:      #22c55e;
    --dfh-warning:      #f59e0b;
    --dfh-error:        #ef4444;

    /* Typography */
    --dfh-font:         'Inter', system-ui, -apple-system, sans-serif;
    --dfh-radius:       8px;
    --dfh-radius-lg:    12px;
    --dfh-radius-xl:    16px;

    /* Layout */
    --dfh-header-h:     64px;
    --dfh-max-w:        1200px;
    --dfh-content-max:  840px;
}

/* ── Reset & Base ─────────────────────────────────────────────────────────── */

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

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

body {
    background-color: var(--dfh-bg);
    color: var(--dfh-text);
    font-family: var(--dfh-font);
    font-size: 1rem;
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: var(--dfh-accent);
    text-decoration: none;
    transition: color 0.15s ease;
}

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

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

/* ── Site Header ──────────────────────────────────────────────────────────── */

.dfh-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--dfh-header-h);
    background-color: var(--dfh-surface);
    border-bottom: 1px solid var(--dfh-border);
    display: flex;
    align-items: center;
}

.dfh-header__inner {
    width: 100%;
    max-width: var(--dfh-max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.dfh-header__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.dfh-header__logo img {
    height: 28px;
    width: auto;
}

.dfh-header__logo a {
    display: flex;
    align-items: center;
}

/* ── Primary Navigation ───────────────────────────────────────────────────── */

.dfh-nav {
    flex: 1;
}

.dfh-nav__list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dfh-nav__list li a {
    display: block;
    padding: 6px 14px;
    color: var(--dfh-text-2);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--dfh-radius);
    transition: background 0.15s ease, color 0.15s ease;
}

.dfh-nav__list li a:hover,
.dfh-nav__list li.current-menu-item a,
.dfh-nav__list li.current_page_item a {
    background-color: var(--dfh-surface-2);
    color: var(--dfh-text);
}

.dfh-nav__list li a { position: relative; display: inline-flex; align-items: center; gap: 6px; }
.dfh-nav__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--dfh-accent, #e95d6b);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1;
}

.dfh-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

/* Force consistent header button styling regardless of plugin CSS load order. */
.dfh-header .dfh-header__actions .dfh-btn,
.dfh-header .dfh-header__actions .dfh-btn.dfh-btn--sm,
.dfh-header .dfh-header__actions a.dfh-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    gap: 8px !important;
    height: 40px !important;
    padding: 0 20px !important;
    border-radius: 8px !important;
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    border: 1px solid var(--dfh-border-2) !important;
    background-color: transparent !important;
    color: var(--dfh-text-2) !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.dfh-header .dfh-header__actions .dfh-btn:hover {
    background-color: var(--dfh-surface-2);
    color: var(--dfh-text);
}
.dfh-header .dfh-header__actions .dfh-btn--primary {
    background-color: var(--dfh-accent);
    border-color: var(--dfh-accent);
    color: #fff;
}
.dfh-header .dfh-header__actions .dfh-btn--primary:hover {
    background-color: var(--dfh-accent-dark);
    border-color: var(--dfh-accent-dark);
    color: #fff;
}
.dfh-header .dfh-header__actions .dfh-btn--account { padding-left: 6px; }
.dfh-header__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    margin: -4px 2px -4px -4px;
    border-radius: 100px;
    overflow: hidden;
    background: linear-gradient(135deg, #e95d6b 0%, #c73e4c 100%);
    flex: 0 0 auto;
}
.dfh-header__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dfh-header__avatar-initial {
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1;
}

/* ── Mobile Nav Toggle ────────────────────────────────────────────────────── */

.dfh-header__nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: none;
    border: 1px solid var(--dfh-border-2);
    border-radius: var(--dfh-radius);
    color: var(--dfh-text-2);
    cursor: pointer;
    flex-shrink: 0;
    margin-left: auto;
    transition: background 0.15s ease, color 0.15s ease;
}

.dfh-header__nav-toggle:hover {
    background-color: var(--dfh-surface-2);
    color: var(--dfh-text);
}

/* ── Mobile Nav Drawer ────────────────────────────────────────────────────── */

.dfh-nav--mobile {
    display: none;
    position: fixed;
    inset: var(--dfh-header-h) 0 0 0;
    background-color: var(--dfh-surface);
    border-top: 1px solid var(--dfh-border);
    z-index: 99;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
}

.dfh-nav--mobile.is-open {
    transform: translateX(0);
}

.dfh-nav__list--mobile {
    list-style: none;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dfh-nav__list--mobile li a {
    display: block;
    padding: 12px 16px;
    color: var(--dfh-text-2);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--dfh-radius);
    transition: background 0.15s ease, color 0.15s ease;
}

.dfh-nav__list--mobile li a:hover {
    background-color: var(--dfh-surface-2);
    color: var(--dfh-text);
}

.dfh-nav__list--mobile .dfh-nav__join {
    display: block;
    padding: 12px 16px;
    background-color: var(--dfh-accent);
    color: #fff;
    font-weight: 600;
    border-radius: var(--dfh-radius);
    text-align: center;
    margin-top: 4px;
}

.dfh-nav__divider {
    height: 1px;
    background-color: var(--dfh-border);
    margin: 8px 0;
}

/* ── Site Footer ──────────────────────────────────────────────────────────── */

.dfh-footer {
    background-color: var(--dfh-surface);
    border-top: 1px solid var(--dfh-border);
    padding: 40px 24px;
    margin-top: auto;
}

.dfh-footer__inner {
    max-width: var(--dfh-max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.dfh-footer__logo img {
    height: 22px;
    width: auto;
    opacity: 0.7;
}

.dfh-footer__center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}

.dfh-footer__made {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--dfh-text-3);
}

.dfh-footer__heart {
    display: inline-block;
    flex-shrink: 0;
}

.dfh-footer__copy {
    font-size: 0.8rem;
    color: var(--dfh-text-3);
}

.dfh-footer__nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.dfh-footer__social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dfh-footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid var(--dfh-border);
    color: var(--dfh-text-2);
    background: transparent;
    transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.dfh-footer__social-link:hover {
    color: #fff;
    border-color: var(--dfh-accent, #e95d6b);
    background: var(--dfh-accent, #e95d6b);
    transform: translateY(-1px);
}

.dfh-footer__legal {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dfh-footer__nav a {
    font-size: 0.8rem;
    color: var(--dfh-text-3);
    transition: color 0.15s ease;
}

.dfh-footer__nav a:hover {
    color: var(--dfh-text-2);
}

.dfh-footer__sep {
    color: var(--dfh-text-3);
    font-size: 0.8rem;
}

/* ── Page Layout ──────────────────────────────────────────────────────────── */

.dfh-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.dfh-main {
    flex: 1;
    width: 100%;
    max-width: var(--dfh-max-w);
    margin: 0 auto;
    padding: 48px 24px;
}

.dfh-main--narrow {
    max-width: var(--dfh-content-max);
}

.dfh-main--full {
    max-width: none;
    padding: 0;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */

.dfh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--dfh-radius);
    font-family: var(--dfh-font);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.1s ease;
    text-decoration: none;
    white-space: nowrap;
}

.dfh-btn:active {
    transform: translateY(1px);
}

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

.dfh-btn--primary:hover {
    background-color: var(--dfh-accent-dark);
    border-color: var(--dfh-accent-dark);
    color: #fff;
}

.dfh-btn--ghost {
    background-color: transparent;
    border-color: var(--dfh-border-2);
    color: var(--dfh-text-2);
}

.dfh-btn--ghost:hover {
    background-color: var(--dfh-surface-2);
    border-color: var(--dfh-border-2);
    color: var(--dfh-text);
}

.dfh-btn--full {
    width: 100%;
}

.dfh-btn--sm {
    padding: 6px 14px;
    font-size: 0.825rem;
}

/* ── Cards ────────────────────────────────────────────────────────────────── */

.dfh-card {
    background-color: var(--dfh-surface);
    border: 1px solid var(--dfh-border);
    border-radius: var(--dfh-radius-lg);
    overflow: hidden;
}

.dfh-card__header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--dfh-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.dfh-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dfh-text);
}

.dfh-card__body {
    padding: 24px;
}

/* ── Games Grid (from [dfh_games] shortcode) ──────────────────────────────── */

.dfh-games {
    display: grid;
    gap: 20px;
}

.dfh-games__card {
    background-color: var(--dfh-surface);
    border: 1px solid var(--dfh-border);
    border-radius: var(--dfh-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.dfh-games__card:hover {
    border-color: var(--dfh-border-2);
    transform: translateY(-2px);
}

.dfh-games__logo-wrap {
    background-color: var(--dfh-surface-2);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.dfh-games__logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dfh-games__body {
    padding: 20px;
    flex: 1;
}

.dfh-games__title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dfh-text);
    margin-bottom: 8px;
}

.dfh-games__description {
    font-size: 0.875rem;
    color: var(--dfh-text-2);
    line-height: 1.55;
}

.dfh-games__footer {
    padding: 0 20px 20px;
}

/* ── Badges / Status ──────────────────────────────────────────────────────── */

.dfh-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.dfh-badge--active  { background-color: rgba(34, 197, 94, 0.15);  color: #22c55e; }
.dfh-badge--warning { background-color: rgba(245, 158, 11, 0.15); color: #f59e0b; }
.dfh-badge--error   { background-color: rgba(239, 68, 68, 0.15);  color: #ef4444; }
.dfh-badge--muted   { background-color: var(--dfh-surface-2);     color: var(--dfh-text-3); }

/* ── Responsive ───────────────────────────────────────────────────────────── */

@media ( max-width: 860px ) {
    .dfh-header__inner {
        padding: 0 16px;
        gap: 16px;
    }

    .dfh-nav {
        display: none;
    }

    .dfh-header__actions {
        display: none;
    }

    .dfh-header__nav-toggle {
        display: flex;
    }

    .dfh-nav--mobile {
        display: block;
    }

    .dfh-main {
        padding: 32px 16px;
    }

    .dfh-footer__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .dfh-footer__center {
        align-items: flex-start;
        text-align: left;
    }
}

/* ── Admin Bar offset ───────────────────────────────────────────── */

.admin-bar .dfh-header {
    top: 32px;
}

@media screen and ( max-width: 782px ) {
    .admin-bar .dfh-header {
        top: 46px;
    }
}

/* ────────────────────────────────────────────────────────────────────────────
   Home
   ──────────────────────────────────────────────────────────────────────────── */

.dfh-home { padding: 0; }
.dfh-home section { position: relative; }

.dfh-home .dfh-btn--lg { padding: 14px 28px; font-size: 1rem; }
.dfh-home .dfh-btn--ghost {
    background: transparent;
    color: var(--dfh-text);
    border: 1px solid var(--dfh-border-2);
    padding: 12px 22px;
    border-radius: var(--dfh-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.18s ease;
}
.dfh-home .dfh-btn--ghost:hover {
    background: rgba(255,255,255,0.04);
    border-color: var(--dfh-accent);
    color: var(--dfh-accent);
}

/* Reveal */
.dfh-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(.2,.7,.2,1), transform 0.8s cubic-bezier(.2,.7,.2,1);
    will-change: opacity, transform;
}
.dfh-reveal.is-visible { opacity: 1; transform: none; }
.dfh-reveal--delay-1 { transition-delay: 0.12s; }
.dfh-reveal--delay-2 { transition-delay: 0.24s; }
.dfh-reveal--delay-3 { transition-delay: 0.36s; }
@media (prefers-reduced-motion: reduce) {
    .dfh-reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Hero ── */
.dfh-home__hero {
    min-height: calc(100vh - var(--dfh-header-h));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dfh-bg);
}
.dfh-home__hero-bg {
    position: absolute; inset: -8% -4%;
    background-size: cover;
    background-position: center;
    filter: saturate(0.85) brightness(0.55);
    animation: dfh-drift 28s ease-in-out infinite alternate;
    z-index: 0;
}
.dfh-home__hero-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(233,93,107,0.18), transparent 60%),
        linear-gradient(180deg, rgba(12,15,26,0.4) 0%, rgba(12,15,26,0.85) 60%, rgba(12,15,26,1) 100%);
    z-index: 1;
}
.dfh-home__hero-grain {
    position: absolute; inset: 0;
    background-image:
        repeating-linear-gradient(0deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 3px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.014) 0 1px, transparent 1px 3px);
    mix-blend-mode: overlay;
    pointer-events: none;
    animation: dfh-grain 8s steps(6) infinite;
    z-index: 2;
}
.dfh-home__hero-inner {
    position: relative;
    z-index: 3;
    max-width: 880px;
    padding: 120px 24px 140px;
    text-align: center;
}
.dfh-home__eyebrow {
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 0.75rem;
    color: var(--dfh-accent);
    margin: 0 0 18px;
    font-weight: 600;
}
.dfh-home__hero-heading {
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    line-height: 1.05;
    font-weight: 700;
    margin: 0 0 24px;
    color: var(--dfh-text);
    letter-spacing: -0.02em;
}
.dfh-home__hero-sub {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    color: var(--dfh-text-2);
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto 36px;
}
.dfh-home__hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

@keyframes dfh-drift {
    0%   { transform: scale(1.05) translate(0, 0); }
    100% { transform: scale(1.12) translate(-2%, -1.5%); }
}
@keyframes dfh-grain {
    0%   { transform: translate(0, 0); }
    25%  { transform: translate(-1%, 1%); }
    50%  { transform: translate(1%, -1%); }
    75%  { transform: translate(-1%, -1%); }
    100% { transform: translate(0, 0); }
}

/* ── Section shared ── */
.dfh-home__section-title {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 700;
    color: var(--dfh-text);
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}
.dfh-home__section-sub {
    color: var(--dfh-text-2);
    font-size: 1.05rem;
    margin: 0 0 40px;
}

/* ── Intro ── */
.dfh-home__intro { padding: 120px 24px; background: var(--dfh-bg); }
.dfh-home__intro-inner {
    max-width: var(--dfh-max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.dfh-home__intro-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin: 0 0 20px;
    color: var(--dfh-text);
    letter-spacing: -0.01em;
}
.dfh-home__intro-text p {
    color: var(--dfh-text-2);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}
.dfh-home__intro-media img {
    width: 100%;
    height: auto;
    border-radius: var(--dfh-radius-xl);
    border: 1px solid var(--dfh-border);
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

/* ── Pillars ── */
.dfh-home__pillars { padding: 100px 24px; background: var(--dfh-surface); border-top: 1px solid var(--dfh-border); border-bottom: 1px solid var(--dfh-border); }
.dfh-home__pillars-inner { max-width: var(--dfh-max-w); margin: 0 auto; text-align: center; }
.dfh-home__pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.dfh-home__pillar {
    background: var(--dfh-surface-2);
    border: 1px solid var(--dfh-border);
    border-radius: var(--dfh-radius-xl);
    padding: 36px 28px;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.dfh-home__pillar:hover {
    transform: translateY(-4px);
    border-color: var(--dfh-accent);
}
.dfh-home__pillar-icon {
    width: 44px; height: 44px;
    color: var(--dfh-accent);
    margin-bottom: 18px;
}
.dfh-home__pillar-icon svg { width: 100%; height: 100%; }
.dfh-home__pillar h3 { font-size: 1.2rem; margin: 0 0 10px; color: var(--dfh-text); }
.dfh-home__pillar p { color: var(--dfh-text-2); margin: 0; line-height: 1.6; }

/* ── How It Works ── */
.dfh-home__how {
    padding: 120px 24px;
    background: var(--dfh-bg);
    text-align: center;
}
.dfh-home__how-inner {
    max-width: 900px;
    margin: 0 auto;
}
.dfh-home__how-eyebrow {
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.72rem;
    color: var(--dfh-accent);
    margin: 0 0 16px;
}
.dfh-home__how-heading {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 700;
    color: var(--dfh-text);
    letter-spacing: -0.01em;
    margin: 0 0 16px;
    line-height: 1.15;
}
.dfh-home__how-sub {
    color: var(--dfh-text-2);
    font-size: 1.1rem;
    line-height: 1.65;
    margin: 0 0 56px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.dfh-home__how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    counter-reset: step;
}
.dfh-home__how-step {
    position: relative;
    text-align: left;
    padding: 32px 28px;
    border-radius: var(--dfh-radius-xl);
    border: 1px solid var(--dfh-border);
    background: var(--dfh-surface);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.dfh-home__how-step:hover {
    transform: translateY(-4px);
    border-color: var(--dfh-accent);
}
.dfh-home__how-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--dfh-accent);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.dfh-home__how-step h3 {
    font-size: 1.15rem;
    margin: 0 0 10px;
    color: var(--dfh-text);
}
.dfh-home__how-step p {
    color: var(--dfh-text-2);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ── Stories ── */
.dfh-home__stories { padding: 120px 24px; background: var(--dfh-bg); }
.dfh-home__stories-inner { max-width: var(--dfh-max-w); margin: 0 auto; text-align: center; }
.dfh-home__stories-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    margin-top: 16px;
}
.dfh-home__stories-grid > .dfh-story-card { width: calc((100% - 56px) / 3); min-width: 280px; max-width: 380px; }
.dfh-home__story {
    display: block;
    background: var(--dfh-surface);
    border: 1px solid var(--dfh-border);
    border-radius: var(--dfh-radius-xl);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.4s ease, border-color 0.3s ease, box-shadow 0.4s ease;
    text-align: left;
}
.dfh-home__story:hover {
    transform: translateY(-6px);
    border-color: var(--dfh-accent);
    box-shadow: 0 24px 60px -20px rgba(233,93,107,0.35);
}
.dfh-home__story-cover {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--dfh-surface-2);
}
.dfh-home__story-cover img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.dfh-home__story:hover .dfh-home__story-cover img { transform: scale(1.06); }
.dfh-home__story-status {
    position: absolute;
    top: 14px; left: 14px;
    background: rgba(12,15,26,0.85);
    border: 1px solid var(--dfh-accent);
    color: var(--dfh-accent);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 10px;
    border-radius: 100px;
    font-weight: 600;
    backdrop-filter: blur(6px);
}
.dfh-home__story-body { padding: 24px 26px 28px; }
.dfh-home__story-body h3 { font-size: 1.3rem; margin: 0 0 8px; color: var(--dfh-text); }
.dfh-home__story-body p { color: var(--dfh-text-2); margin: 0 0 16px; line-height: 1.55; }
.dfh-home__story-more { color: var(--dfh-accent); font-weight: 600; font-size: 0.9rem; }

/* ── Process ── */
.dfh-home__process { padding: 120px 24px; background: var(--dfh-surface); border-top: 1px solid var(--dfh-border); }
.dfh-home__process-inner { max-width: var(--dfh-max-w); margin: 0 auto; }
.dfh-home__process-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 64px;
}
.dfh-home__process-row--reverse .dfh-home__process-media { order: 2; }
.dfh-home__process-media img {
    width: 100%; height: auto;
    border-radius: var(--dfh-radius-xl);
    border: 1px solid var(--dfh-border);
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.dfh-home__process-text h3 { font-size: 1.6rem; margin: 0 0 14px; color: var(--dfh-text); }
.dfh-home__process-text p { color: var(--dfh-text-2); line-height: 1.7; margin: 0; font-size: 1.05rem; }

/* ── Join band ── */
.dfh-home__join {
    padding: 100px 24px;
    background:
        radial-gradient(ellipse at center, rgba(233,93,107,0.18), transparent 70%),
        var(--dfh-bg);
    border-top: 1px solid var(--dfh-border);
    border-bottom: 1px solid var(--dfh-border);
    text-align: center;
}
.dfh-home__join-inner { max-width: 720px; margin: 0 auto; }
.dfh-home__join-inner h2 {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    color: var(--dfh-text);
    margin: 0 0 16px;
}
.dfh-home__join-inner p {
    color: var(--dfh-text-2);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 32px;
}

/* ── Final CTA ── */
.dfh-home__cta { padding: 140px 24px; text-align: center; background: var(--dfh-bg); }
.dfh-home__cta-inner h2 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    color: var(--dfh-text);
    margin: 0 0 32px;
    letter-spacing: -0.02em;
}

/* ── Mobile ── */
@media (max-width: 860px) {
    .dfh-home__intro-inner,
    .dfh-home__process-row,
    .dfh-home__process-row--reverse {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .dfh-home__process-row--reverse .dfh-home__process-media { order: 0; }
    .dfh-home__pillars-grid,
    .dfh-home__how-steps {
        grid-template-columns: 1fr;
    }
    .dfh-home__stories-grid > .dfh-story-card { width: 100%; min-width: 0; max-width: none; }
    .dfh-home__intro,
    .dfh-home__pillars,
    .dfh-home__stories,
    .dfh-home__how,
    .dfh-home__process,
    .dfh-home__join,
    .dfh-home__cta { padding-left: 20px; padding-right: 20px; padding-top: 80px; padding-bottom: 80px; }
    .dfh-home__hero-inner { padding: 100px 20px; }
}

/* ────────────────────────────────────────────────────────────────────────────
   About
   ──────────────────────────────────────────────────────────────────────────── */

.dfh-about { padding: 0; }
.dfh-about section { position: relative; }

/* Hero */
.dfh-about__hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dfh-bg);
}
.dfh-about__hero-bg {
    position: absolute; inset: -8% -4%;
    background-size: cover;
    background-position: center;
    filter: saturate(0.85) brightness(0.5);
    animation: dfh-drift 32s ease-in-out infinite alternate;
    z-index: 0;
}
.dfh-about__hero-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 50% 40%, rgba(233,93,107,0.15), transparent 65%),
        linear-gradient(180deg, rgba(12,15,26,0.45) 0%, rgba(12,15,26,0.9) 70%, rgba(12,15,26,1) 100%);
    z-index: 1;
}
.dfh-about__hero-grain {
    position: absolute; inset: 0;
    background-image:
        repeating-linear-gradient(0deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 3px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.014) 0 1px, transparent 1px 3px);
    mix-blend-mode: overlay;
    pointer-events: none;
    animation: dfh-grain 8s steps(6) infinite;
    z-index: 2;
}
.dfh-about__hero-inner {
    position: relative;
    z-index: 3;
    max-width: 880px;
    padding: 140px 24px 120px;
    text-align: center;
}
.dfh-about__eyebrow {
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 0.75rem;
    color: var(--dfh-accent);
    margin: 0 0 18px;
    font-weight: 600;
}
.dfh-about__hero-heading {
    font-size: clamp(2.2rem, 5.5vw, 4.4rem);
    line-height: 1.08;
    font-weight: 700;
    margin: 0 0 24px;
    color: var(--dfh-text);
    letter-spacing: -0.02em;
}
.dfh-about__hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--dfh-text-2);
    line-height: 1.65;
    max-width: 680px;
    margin: 0 auto;
}

/* Mission */
.dfh-about__mission {
    padding: 120px 24px;
    background: var(--dfh-bg);
    text-align: center;
    border-bottom: 1px solid var(--dfh-border);
}
.dfh-about__mission-inner { max-width: 820px; margin: 0 auto; }
.dfh-about__mission-tag {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.7rem;
    color: var(--dfh-accent);
    border: 1px solid var(--dfh-accent);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
    font-weight: 600;
}
.dfh-about__mission h2 {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    color: var(--dfh-text);
    margin: 0 0 24px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}
.dfh-about__mission p {
    color: var(--dfh-text-2);
    font-size: 1.1rem;
    line-height: 1.75;
    margin: 0;
}

/* Split rows */
.dfh-about__split { padding: 120px 24px; background: var(--dfh-bg); }
.dfh-about__split--surface {
    background: var(--dfh-surface);
    border-top: 1px solid var(--dfh-border);
    border-bottom: 1px solid var(--dfh-border);
}
.dfh-about__split-inner {
    max-width: var(--dfh-max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.dfh-about__split--reverse .dfh-about__split-media { order: 2; }
.dfh-about__split-media img {
    width: 100%;
    height: auto;
    border-radius: var(--dfh-radius-xl);
    border: 1px solid var(--dfh-border);
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.dfh-about__kicker {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.7rem;
    color: var(--dfh-accent);
    margin-bottom: 14px;
    font-weight: 600;
}
.dfh-about__split-text h2 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    color: var(--dfh-text);
    margin: 0 0 18px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}
.dfh-about__split-text p {
    color: var(--dfh-text-2);
    font-size: 1.05rem;
    line-height: 1.75;
    margin: 0;
}

/* Section title shared */
.dfh-about__section-title {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 700;
    color: var(--dfh-text);
    margin: 0 0 12px;
    letter-spacing: -0.01em;
    text-align: center;
}
.dfh-about__section-sub {
    color: var(--dfh-text-2);
    font-size: 1.05rem;
    margin: 0 auto 48px;
    text-align: center;
    max-width: 640px;
    line-height: 1.6;
}

/* Values */
.dfh-about__values {
    padding: 120px 24px;
    background: var(--dfh-bg);
    border-top: 1px solid var(--dfh-border);
}
.dfh-about__values-inner { max-width: var(--dfh-max-w); margin: 0 auto; }
.dfh-about__values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.dfh-about__value {
    background: var(--dfh-surface-2);
    border: 1px solid var(--dfh-border);
    border-radius: var(--dfh-radius-xl);
    padding: 32px 28px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
}
.dfh-about__value:hover {
    transform: translateY(-4px);
    border-color: var(--dfh-accent);
}
.dfh-about__value-num {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--dfh-accent);
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.dfh-about__value h3 { font-size: 1.15rem; margin: 0 0 10px; color: var(--dfh-text); }
.dfh-about__value p { color: var(--dfh-text-2); margin: 0; line-height: 1.6; }

/* Team */
.dfh-about__team {
    padding: 120px 24px;
    background: var(--dfh-surface);
    border-top: 1px solid var(--dfh-border);
    border-bottom: 1px solid var(--dfh-border);
}
.dfh-about__team-inner { max-width: var(--dfh-max-w); margin: 0 auto; }
.dfh-about__team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 16px;
}
.dfh-about__team-card {
    background: var(--dfh-surface-2);
    border: 1px solid var(--dfh-border);
    border-radius: var(--dfh-radius-xl);
    overflow: hidden;
    display: grid;
    grid-template-columns: 200px 1fr;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.dfh-about__team-card:hover {
    transform: translateY(-4px);
    border-color: var(--dfh-accent);
}
.dfh-about__team-photo {
    background: var(--dfh-surface-3);
    height: 100%;
    min-height: 240px;
}
.dfh-about__team-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.dfh-about__team-body { padding: 26px 28px; }
.dfh-about__team-body h3 {
    font-size: 1.25rem;
    color: var(--dfh-text);
    margin: 0 0 4px;
}
.dfh-about__team-role {
    color: var(--dfh-accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 12px;
    font-weight: 600;
}
.dfh-about__team-body p {
    color: var(--dfh-text-2);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA */
.dfh-about__cta {
    padding: 140px 24px;
    text-align: center;
    background:
        radial-gradient(ellipse at center, rgba(233,93,107,0.18), transparent 70%),
        var(--dfh-bg);
}
.dfh-about__cta-inner h2 {
    font-size: clamp(2.2rem, 4.6vw, 3.2rem);
    color: var(--dfh-text);
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}
.dfh-about__cta-inner p {
    color: var(--dfh-text-2);
    font-size: 1.1rem;
    margin: 0 0 32px;
}
.dfh-about__cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 860px) {
    .dfh-about__split-inner { grid-template-columns: 1fr; gap: 40px; }
    .dfh-about__split--reverse .dfh-about__split-media { order: 0; }
    .dfh-about__values-grid { grid-template-columns: 1fr; }
    .dfh-about__team-grid { grid-template-columns: 1fr; }
    .dfh-about__team-card { grid-template-columns: 1fr; }
    .dfh-about__team-photo { aspect-ratio: 16 / 9; }
    .dfh-about__hero-inner { padding: 120px 20px 100px; }
    .dfh-about__mission,
    .dfh-about__split,
    .dfh-about__values,
    .dfh-about__team,
    .dfh-about__cta { padding-left: 20px; padding-right: 20px; padding-top: 80px; padding-bottom: 80px; }
}

/* ────────────────────────────────────────────────────────────────────────────
   Stories
   ──────────────────────────────────────────────────────────────────────────── */

.dfh-stories { padding: 0; }

.dfh-stories__hero {
    position: relative;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(233,93,107,0.2), transparent 60%),
        var(--dfh-bg);
    padding: 140px 24px 100px;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid var(--dfh-border);
}
.dfh-stories__hero-grain {
    position: absolute; inset: 0;
    background-image:
        repeating-linear-gradient(0deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 3px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.014) 0 1px, transparent 1px 3px);
    mix-blend-mode: overlay;
    pointer-events: none;
    animation: dfh-grain 8s steps(6) infinite;
}
.dfh-stories__hero-inner { position: relative; max-width: 820px; margin: 0 auto; }
.dfh-stories__eyebrow {
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 0.75rem;
    color: var(--dfh-accent);
    margin: 0 0 18px;
    font-weight: 600;
}
.dfh-stories__heading {
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.08;
    font-weight: 700;
    margin: 0 0 22px;
    color: var(--dfh-text);
    letter-spacing: -0.02em;
}
.dfh-stories__intro {
    color: var(--dfh-text-2);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto;
}

/* Free Episode Banner */
.dfh-stories__free-banner {
    background: var(--dfh-surface);
    border-bottom: 1px solid var(--dfh-border);
    padding: 20px 24px;
}
.dfh-stories__free-banner-inner {
    max-width: var(--dfh-max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.dfh-stories__free-banner-icon {
    width: 20px;
    height: 20px;
    color: var(--dfh-accent);
    flex-shrink: 0;
}
.dfh-stories__free-banner p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--dfh-text-2);
    line-height: 1.5;
}
.dfh-stories__free-banner strong {
    color: var(--dfh-text);
}

.dfh-stories__grid-section { padding: 100px 24px 140px; background: var(--dfh-bg); }
.dfh-stories__grid-inner { max-width: var(--dfh-max-w); margin: 0 auto; }
.dfh-stories__empty {
    text-align: center;
    color: var(--dfh-text-2);
    padding: 60px 20px;
    background: var(--dfh-surface);
    border: 1px dashed var(--dfh-border);
    border-radius: var(--dfh-radius-xl);
}
.dfh-stories__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
}
.dfh-stories__grid > .dfh-story-card { width: calc((100% - 56px) / 3); min-width: 280px; max-width: 380px; }

/* Card */
.dfh-story-card {
    appearance: none;
    -webkit-appearance: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    background: var(--dfh-surface);
    border: 1px solid var(--dfh-border);
    border-radius: var(--dfh-radius-xl);
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.3s ease, box-shadow 0.4s ease;
    text-align: left;
    box-sizing: border-box;
}
.dfh-story-card:hover,
.dfh-story-card:focus-visible {
    transform: translateY(-6px);
    border-color: var(--dfh-accent);
    box-shadow: 0 24px 60px -20px rgba(233,93,107,0.35);
}
.dfh-story-card:focus-visible { outline: 2px solid var(--dfh-accent); outline-offset: 2px; }
.dfh-story-card__logo {
    aspect-ratio: 16 / 9;
    background:
        radial-gradient(ellipse at center, rgba(233,93,107,0.15), transparent 70%),
        var(--dfh-surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--dfh-border);
    overflow: hidden;
}
.dfh-story-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.dfh-story-card:hover .dfh-story-card__logo img { transform: scale(1.06); }
.dfh-story-card__logo-fallback {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dfh-accent);
}
.dfh-story-card__body { padding: 24px 26px 28px; }
.dfh-story-card__body h3 { font-size: 1.25rem; margin: 0 0 8px; color: var(--dfh-text); }
.dfh-story-card__body p { color: var(--dfh-text-2); margin: 0 0 16px; line-height: 1.55; }
.dfh-story-card__more { color: var(--dfh-accent); font-weight: 600; font-size: 0.9rem; }

/* Modal */
.dfh-story-modal {
    position: fixed; inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.dfh-story-modal.is-open { display: flex; }
.dfh-story-modal__backdrop {
    position: absolute; inset: 0;
    background: rgba(6, 8, 16, 0.78);
    backdrop-filter: blur(6px);
    animation: dfh-fade-in 0.25s ease;
}
.dfh-story-modal__panel {
    position: relative;
    width: 100%;
    max-width: 720px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    background: var(--dfh-surface);
    border: 1px solid var(--dfh-border);
    border-radius: var(--dfh-radius-xl);
    box-shadow: 0 40px 100px -20px rgba(0,0,0,0.7);
    animation: dfh-pop-in 0.32s cubic-bezier(.2,.7,.2,1);
}
.dfh-story-modal__close {
    position: absolute;
    top: 14px; right: 14px;
    width: 38px; height: 38px;
    border-radius: 100px;
    border: 1px solid var(--dfh-border-2);
    background: rgba(12,15,26,0.6);
    color: var(--dfh-text);
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.18s ease;
    backdrop-filter: blur(6px);
}
.dfh-story-modal__close:hover {
    background: var(--dfh-accent);
    border-color: var(--dfh-accent);
    color: #fff;
}
.dfh-story-modal__close svg { width: 16px; height: 16px; }
.dfh-story-modal__header {
    position: relative;
    aspect-ratio: 16 / 7;
    background:
        radial-gradient(ellipse at center, rgba(233,93,107,0.22), transparent 70%),
        var(--dfh-surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--dfh-border);
    overflow: hidden;
}
.dfh-story-modal__header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.dfh-story-modal__logo-fallback {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dfh-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.dfh-story-modal__header-grain {
    position: absolute; inset: 0;
    background-image:
        repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 3px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 3px);
    mix-blend-mode: overlay;
    pointer-events: none;
}
.dfh-story-modal__body { padding: 32px 36px 36px; }
.dfh-story-modal__body h2 {
    font-size: clamp(1.6rem, 3vw, 2rem);
    color: var(--dfh-text);
    margin: 0 0 14px;
    letter-spacing: -0.01em;
}
.dfh-story-modal__desc {
    color: var(--dfh-text-2);
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0 0 22px;
}
.dfh-story-modal__synopsis {
    border-top: 1px solid var(--dfh-border);
    padding-top: 22px;
    margin-bottom: 28px;
}
.dfh-story-modal__synopsis h4 {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.7rem;
    color: var(--dfh-accent);
    margin: 0 0 10px;
    font-weight: 600;
}
.dfh-story-modal__synopsis p {
    color: var(--dfh-text-2);
    line-height: 1.7;
    margin: 0;
}
.dfh-story-modal__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@keyframes dfh-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes dfh-pop-in {
    from { opacity: 0; transform: translateY(20px) scale(0.98); }
    to   { opacity: 1; transform: none; }
}

body.dfh-modal-open { overflow: hidden; }

@media (max-width: 860px) {
    .dfh-stories__grid > .dfh-story-card { width: 100%; min-width: 0; max-width: none; }
    .dfh-stories__grid-section { padding: 70px 20px 100px; }
    .dfh-stories__hero { padding: 110px 20px 80px; }
    .dfh-story-modal { padding: 12px; }
    .dfh-story-modal__body { padding: 24px 22px 26px; }
}

/* ────────────────────────────────────────────────────────────────────────────
   Plans
   ──────────────────────────────────────────────────────────────────────────── */

.dfh-plans { padding: 0; }

/* Hero (reuses pattern from stories hero) */
.dfh-plans__hero {
    position: relative;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(233,93,107,0.2), transparent 60%),
        var(--dfh-bg);
    padding: 140px 24px 100px;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid var(--dfh-border);
}
.dfh-plans__hero-grain {
    position: absolute; inset: 0;
    background-image:
        repeating-linear-gradient(0deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 3px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.014) 0 1px, transparent 1px 3px);
    mix-blend-mode: overlay;
    pointer-events: none;
    animation: dfh-grain 8s steps(6) infinite;
}
.dfh-plans__hero-inner { position: relative; max-width: 820px; margin: 0 auto; }
.dfh-plans__eyebrow {
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 0.75rem;
    color: var(--dfh-accent);
    margin: 0 0 18px;
    font-weight: 600;
}
.dfh-plans__heading {
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.08;
    font-weight: 700;
    margin: 0 0 22px;
    color: var(--dfh-text);
    letter-spacing: -0.02em;
}
.dfh-plans__intro {
    color: var(--dfh-text-2);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto;
}

/* Sections */
.dfh-plans__section { padding: 110px 24px; background: var(--dfh-bg); }
.dfh-plans__section--studio { border-bottom: 1px solid var(--dfh-border); }
.dfh-plans__section--games {
    background: var(--dfh-surface);
    border-bottom: 1px solid var(--dfh-border);
}
.dfh-plans__section-inner { max-width: var(--dfh-max-w); margin: 0 auto; }
.dfh-plans__section-head {
    text-align: center;
    margin-bottom: 56px;
}
.dfh-plans__kicker {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.7rem;
    color: var(--dfh-accent);
    border: 1px solid var(--dfh-accent);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
    font-weight: 600;
}
.dfh-plans__section-head h2 {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    color: var(--dfh-text);
    margin: 0 0 14px;
    letter-spacing: -0.01em;
}
.dfh-plans__section-head p {
    color: var(--dfh-text-2);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto;
}
.dfh-plans__empty {
    text-align: center;
    color: var(--dfh-text-2);
    padding: 60px 20px;
    background: var(--dfh-surface-2);
    border: 1px dashed var(--dfh-border);
    border-radius: var(--dfh-radius-xl);
}

/* Plan grid */
.dfh-plans__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}
.dfh-plans__grid > * { width: calc((100% - 48px) / 3); min-width: 280px; }

/* Plan card */
.dfh-plan-card {
    display: flex;
    flex-direction: column;
    background: var(--dfh-surface-2);
    border: 1px solid var(--dfh-border);
    border-radius: var(--dfh-radius-xl);
    padding: 32px 28px 28px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.4s ease;
}
.dfh-plans__section--games .dfh-plan-card { background: var(--dfh-surface-3); }
.dfh-plan-card:hover {
    transform: translateY(-4px);
    border-color: var(--dfh-accent);
    box-shadow: 0 24px 60px -20px rgba(233,93,107,0.3);
}
.dfh-plan-card__head { flex: 1; }
.dfh-plan-card__badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.dfh-plan-card__badge {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.65rem;
    padding: 5px 10px;
    border-radius: 100px;
    font-weight: 600;
}
.dfh-plan-card__badge--type {
    background: rgba(233,93,107,0.12);
    color: var(--dfh-accent);
    border: 1px solid rgba(233,93,107,0.4);
}
.dfh-plan-card__badge--access {
    background: rgba(255,255,255,0.04);
    color: var(--dfh-text-2);
    border: 1px solid var(--dfh-border-2);
}
.dfh-plan-card__title {
    font-size: 1.35rem;
    color: var(--dfh-text);
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}
.dfh-plan-card__desc {
    color: var(--dfh-text-2);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 22px;
}
.dfh-plan-card__price {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 4px 0 24px;
}
.dfh-plan-card__price-amount {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--dfh-text);
    letter-spacing: -0.02em;
    line-height: 1;
}
.dfh-plan-card__price-interval {
    color: var(--dfh-text-2);
    font-size: 0.95rem;
}
.dfh-plan-card__stripe-badge {
    width: 100px;
    margin-left: auto;
    opacity: 0.4;
    flex-shrink: 0;
}
.dfh-plan-card__cta {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Per-game group */
.dfh-plans__game {
    margin-top: 64px;
    padding-top: 56px;
    border-top: 1px solid var(--dfh-border);
}
.dfh-plans__game:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}
.dfh-plans__game-head {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 36px;
}
.dfh-plans__game-logo {
    width: 96px;
    height: 96px;
    flex-shrink: 0;
    border-radius: var(--dfh-radius-lg);
    overflow: hidden;
    background:
        radial-gradient(ellipse at center, rgba(233,93,107,0.18), transparent 70%),
        var(--dfh-surface-2);
    border: 1px solid var(--dfh-border);
    display: flex;
    align-items: center;
    justify-content: center;
}
.dfh-plans__game-logo img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.dfh-plans__game-logo span {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--dfh-accent);
}
.dfh-plans__game-meta h3 {
    font-size: 1.6rem;
    color: var(--dfh-text);
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}
.dfh-plans__game-meta p {
    color: var(--dfh-text-2);
    margin: 0;
    line-height: 1.5;
}

/* Studio section — split layout */
.dfh-plans__section-inner--split {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    align-items: center;
}
.dfh-plans__section-inner--split .dfh-plans__section-head {
    text-align: left;
    margin-bottom: 0;
}
.dfh-plans__section-inner--split .dfh-plans__section-head p {
    margin: 0;
    max-width: none;
}
.dfh-plans__section-inner--split .dfh-plans__grid {
    justify-content: flex-start;
}
.dfh-plans__section-inner--split .dfh-plans__grid > * {
    width: calc((100% - 24px) / 2);
    min-width: 220px;
}

@media (max-width: 860px) {
    .dfh-plans__hero { padding: 110px 20px 80px; }
    .dfh-plans__section { padding: 70px 20px; }
    .dfh-plans__grid > * { width: 100%; min-width: 0; }
    .dfh-plans__game-head { flex-direction: column; align-items: flex-start; gap: 16px; }
    .dfh-plans__game-logo { width: 72px; height: 72px; }
    .dfh-plans__section-inner--split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .dfh-plans__section-inner--split .dfh-plans__section-head {
        text-align: center;
    }
    .dfh-plans__section-inner--split .dfh-plans__section-head p {
        margin: 0 auto;
        max-width: 480px;
    }
    .dfh-plans__section-inner--split .dfh-plans__grid > * {
        width: 100%;
    }
}

/* ── Legal pages ──────────────────────────────────────────────────────────── */

.dfh-page-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 64px 0 80px;
    color: var(--dfh-text);
    font-size: 1rem;
    line-height: 1.75;
}
.dfh-page-content h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: -0.02em;
    color: var(--dfh-text);
    margin: 0 0 8px;
}
.dfh-page-content .dfh-legal-meta {
    color: var(--dfh-text-2);
    font-size: 0.9rem;
    margin: 0 0 56px;
}
.dfh-page-content h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dfh-text);
    margin: 48px 0 12px;
    letter-spacing: -0.01em;
}
.dfh-page-content h2:first-of-type { margin-top: 0; }
.dfh-page-content p { margin: 0 0 16px; color: var(--dfh-text-2); }
.dfh-page-content ul, .dfh-page-content ol {
    padding-left: 24px;
    margin: 0 0 16px;
    color: var(--dfh-text-2);
}
.dfh-page-content li { margin-bottom: 6px; }
.dfh-page-content a { color: var(--dfh-accent); text-decoration: underline; }
.dfh-page-content strong { color: var(--dfh-text); font-weight: 600; }
.dfh-page-content hr {
    border: none;
    border-top: 1px solid var(--dfh-border);
    margin: 48px 0;
}

/* ────────────────────────────────────────────────────────────────────────────
   Redeem
   ──────────────────────────────────────────────────────────────────────────── */

.dfh-redeem { padding: 0; }

.dfh-redeem__hero {
    position: relative;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(233,93,107,0.22), transparent 60%),
        var(--dfh-bg);
    padding: 140px 24px 90px;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid var(--dfh-border);
}
.dfh-redeem__hero-grain {
    position: absolute; inset: 0;
    background-image:
        repeating-linear-gradient(0deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 3px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.014) 0 1px, transparent 1px 3px);
    mix-blend-mode: overlay;
    pointer-events: none;
    animation: dfh-grain 8s steps(6) infinite;
}
.dfh-redeem__hero-inner { position: relative; max-width: 760px; margin: 0 auto; }
.dfh-redeem__eyebrow {
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 0.75rem;
    color: var(--dfh-accent);
    margin: 0 0 18px;
    font-weight: 600;
}
.dfh-redeem__heading {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.1;
    font-weight: 700;
    margin: 0 0 20px;
    color: var(--dfh-text);
    letter-spacing: -0.02em;
}
.dfh-redeem__intro {
    color: var(--dfh-text-2);
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 600px;
    margin: 0 auto;
}

.dfh-redeem__body {
    padding: 100px 24px 140px;
    background: var(--dfh-bg);
}
.dfh-redeem__body-inner {
    max-width: 580px;
    margin: 0 auto;
}

.dfh-redeem__card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    padding: 38px 36px 32px;
    background:
        radial-gradient(circle at 80% 0%, rgba(233,93,107,0.28), transparent 55%),
        radial-gradient(circle at 0% 100%, rgba(120,80,200,0.22), transparent 55%),
        linear-gradient(155deg, #1c1f2a 0%, #11131a 60%, #0c0d13 100%);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 30px 80px -30px rgba(0,0,0,0.8),
        0 0 0 1px rgba(255,255,255,0.03) inset,
        0 1px 0 rgba(255,255,255,0.06) inset;
}
.dfh-redeem__card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.08) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: dfh-card-shine 6s ease-in-out infinite;
    pointer-events: none;
}
@keyframes dfh-card-shine {
    0%, 100% { transform: translateX(-100%); }
    50%      { transform: translateX(100%); }
}
.dfh-redeem__card-grain {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg, rgba(255,255,255,0.015) 0 1px, transparent 1px 3px);
    mix-blend-mode: overlay;
    pointer-events: none;
}
.dfh-redeem__card-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}
.dfh-redeem__card-brand {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--dfh-text-2);
}
.dfh-redeem__card-chip {
    width: 44px;
    height: 32px;
    border-radius: 6px;
    background: linear-gradient(135deg, #e8c66b 0%, #b8902f 60%, #6b521a 100%);
    color: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.4);
}
.dfh-redeem__card-chip svg { width: 22px; height: 22px; }
.dfh-redeem__card-title {
    position: relative;
    margin-bottom: 26px;
}
.dfh-redeem__card-eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.7rem;
    color: var(--dfh-accent);
    font-weight: 600;
    margin-bottom: 10px;
}
.dfh-redeem__card-title h2 {
    font-size: 1.7rem;
    margin: 0 0 10px;
    color: var(--dfh-text);
    letter-spacing: -0.01em;
}
.dfh-redeem__card-title p {
    color: var(--dfh-text-2);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}
.dfh-redeem__card-form {
    position: relative;
    margin-bottom: 24px;
}
.dfh-redeem__card-form .dfh-field { margin-bottom: 18px; }
.dfh-redeem__card-form .dfh-field label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.7rem;
    color: var(--dfh-text-2);
    margin-bottom: 10px;
    font-weight: 600;
}
.dfh-redeem__card-form .dfh-input {
    width: 100%;
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
    font-size: clamp(1.3rem, 3vw, 1.7rem);
    letter-spacing: 0.18em;
    text-align: center;
    text-transform: uppercase;
    padding: 20px 18px;
    background: rgba(0,0,0,0.45);
    color: var(--dfh-text);
    border: 1.5px solid rgba(233,93,107,0.45);
    border-radius: 14px;
    box-shadow:
        inset 0 2px 8px rgba(0,0,0,0.5),
        0 0 0 0 rgba(233,93,107,0);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.dfh-redeem__card-form .dfh-input::placeholder {
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.18em;
}
.dfh-redeem__card-form .dfh-input:focus {
    outline: none;
    border-color: var(--dfh-accent);
    background: rgba(0,0,0,0.6);
    box-shadow:
        inset 0 2px 8px rgba(0,0,0,0.5),
        0 0 0 4px rgba(233,93,107,0.18);
}
.dfh-redeem__card-form #dfh-redeem-btn {
    display: block;
    width: 100%;
    padding: 18px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    background: linear-gradient(135deg, #e95d6b 0%, #c73e4c 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow:
        0 12px 28px -10px rgba(233,93,107,0.6),
        0 1px 0 rgba(255,255,255,0.2) inset;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.dfh-redeem__card-form #dfh-redeem-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow:
        0 18px 36px -10px rgba(233,93,107,0.7),
        0 1px 0 rgba(255,255,255,0.25) inset;
}
.dfh-redeem__card-form #dfh-redeem-btn:active { transform: translateY(0); }
.dfh-redeem__card-form #dfh-redeem-btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.dfh-redeem__card-footer {
    position: relative;
    padding-top: 20px;
    border-top: 1px dashed rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.85rem;
    color: var(--dfh-text-3);
}
.dfh-redeem__card-footer a {
    color: var(--dfh-accent);
    text-decoration: none;
}
.dfh-redeem__card-footer a:hover { text-decoration: underline; }

.dfh-redeem__gate {
    background: var(--dfh-surface);
    border: 1px solid var(--dfh-border);
    border-radius: var(--dfh-radius-xl);
    padding: 56px 40px 48px;
    text-align: center;
}
.dfh-redeem__gate-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    color: var(--dfh-accent);
    background: rgba(233,93,107,0.12);
    border: 1px solid rgba(233,93,107,0.4);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dfh-redeem__gate-icon svg { width: 26px; height: 26px; }
.dfh-redeem__gate h2 {
    font-size: 1.6rem;
    color: var(--dfh-text);
    margin: 0 0 14px;
    letter-spacing: -0.01em;
}
.dfh-redeem__gate p {
    color: var(--dfh-text-2);
    line-height: 1.65;
    margin: 0 0 28px;
}
.dfh-redeem__gate-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 22px;
}
.dfh-redeem__gate-note {
    color: var(--dfh-text-3);
    font-size: 0.85rem;
    margin: 0;
}

@media (max-width: 860px) {
    .dfh-redeem__hero { padding: 110px 20px 70px; }
    .dfh-redeem__body { padding: 70px 20px 100px; }
    .dfh-redeem__card  { padding: 30px 24px 26px; }
    .dfh-redeem__gate  { padding: 44px 24px 36px; }
}

/* ── Account dashboard ──────────────────────────────────────────────────── */
.dfh-account-page { background: var(--dfh-bg); }

.dfh-acct__hero {
    position: relative;
    padding: 130px 24px 60px;
    background:
        radial-gradient(circle at 80% 0%, rgba(233,93,107,0.18), transparent 55%),
        radial-gradient(circle at 0% 100%, rgba(120,80,200,0.14), transparent 55%),
        linear-gradient(180deg, #0c0d12 0%, #11131a 100%);
    border-bottom: 1px solid var(--dfh-border);
    overflow: hidden;
}
.dfh-acct__hero-grain {
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.015) 0 1px, transparent 1px 3px);
    mix-blend-mode: overlay;
    pointer-events: none;
}
.dfh-acct__hero-inner {
    position: relative;
    max-width: var(--dfh-max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
}
.dfh-acct__avatar {
    flex: 0 0 auto;
    width: 84px;
    height: 84px;
    border-radius: 100px;
    overflow: hidden;
    background: linear-gradient(135deg, #e95d6b 0%, #c73e4c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.9rem;
    color: #fff;
    letter-spacing: 1px;
    box-shadow: 0 12px 30px -10px rgba(233,93,107,0.6), inset 0 1px 0 rgba(255,255,255,0.25);
}
.dfh-acct__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dfh-acct__hero-text { flex: 1 1 auto; min-width: 0; }
.dfh-acct__eyebrow {
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.72rem;
    color: var(--dfh-accent);
    margin: 0 0 8px;
    font-weight: 600;
}
.dfh-acct__hero-text h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin: 0 0 8px;
    color: var(--dfh-text);
    letter-spacing: -0.01em;
}
.dfh-acct__hero-sub { color: var(--dfh-text-2); margin: 0; font-size: 1rem; }

.dfh-acct__body {
    padding: 50px 24px 120px;
}
.dfh-acct__body-inner {
    max-width: var(--dfh-max-w, 1200px);
    margin: 0 auto;
}

.dfh-acct__stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}
.dfh-acct__stat {
    background: var(--dfh-surface);
    border: 1px solid var(--dfh-border);
    border-radius: var(--dfh-radius-lg, 14px);
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.dfh-acct__stat-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.7rem;
    color: var(--dfh-text-3);
    font-weight: 600;
}
.dfh-acct__stat-value {
    font-size: 1.25rem;
    color: var(--dfh-text);
    font-weight: 600;
}

.dfh-acct__pill {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.dfh-acct__pill.is-success { background: rgba(34,197,94,0.15);  color: #4ade80; border: 1px solid rgba(34,197,94,0.35); }
.dfh-acct__pill.is-warning { background: rgba(245,158,11,0.15); color: #fbbf24; border: 1px solid rgba(245,158,11,0.35); }
.dfh-acct__pill.is-error   { background: rgba(239,68,68,0.15);  color: #f87171; border: 1px solid rgba(239,68,68,0.35); }
.dfh-acct__pill.is-muted   { background: rgba(255,255,255,0.06); color: var(--dfh-text-2); border: 1px solid rgba(255,255,255,0.1); }

.dfh-acct__notice {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 0.95rem;
}
.dfh-acct__notice--success { background: rgba(34,197,94,0.1); color: #4ade80; border: 1px solid rgba(34,197,94,0.3); }
.dfh-acct__notice--error   { background: rgba(239,68,68,0.1); color: #f87171; border: 1px solid rgba(239,68,68,0.3); }

.dfh-acct__layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 28px;
    align-items: flex-start;
}

.dfh-acct__sidebar {
    position: sticky;
    top: 100px;
    background: var(--dfh-surface);
    border: 1px solid var(--dfh-border);
    border-radius: var(--dfh-radius-lg, 14px);
    padding: 14px;
}
.dfh-acct__nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.dfh-acct__nav-link {
    display: block;
    padding: 11px 14px;
    border-radius: 10px;
    color: var(--dfh-text-2);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
}
.dfh-acct__nav-link:hover {
    background: rgba(255,255,255,0.05);
    color: var(--dfh-text);
}
.dfh-acct__nav-link.is-active {
    background: rgba(233,93,107,0.12);
    color: var(--dfh-accent);
}
.dfh-acct__sidebar-foot {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--dfh-border);
}

.dfh-acct__main {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}

.dfh-acct__card {
    background: var(--dfh-surface);
    border: 1px solid var(--dfh-border);
    border-radius: var(--dfh-radius-lg, 14px);
    overflow: hidden;
    scroll-margin-top: 90px;
}
.dfh-acct__panel { display: none; }
.dfh-acct__panel.is-active {
    display: block;
    animation: dfh-acct-fade 0.25s ease both;
}
@keyframes dfh-acct-fade {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.dfh-acct__card-head {
    padding: 24px 28px 18px;
    border-bottom: 1px solid var(--dfh-border);
    background: rgba(255,255,255,0.02);
}
.dfh-acct__card-head h2 {
    margin: 0 0 4px;
    font-size: 1.2rem;
    color: var(--dfh-text);
    letter-spacing: -0.01em;
}
.dfh-acct__card-sub {
    color: var(--dfh-text-3);
    font-size: 0.88rem;
}
.dfh-acct__card-body { padding: 24px 28px 28px; }

.dfh-acct__plan {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
}
.dfh-acct__plan-name {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.dfh-acct__plan-name strong {
    font-size: 1.4rem;
    color: var(--dfh-text);
    font-weight: 600;
}
.dfh-acct__plan-meta { color: var(--dfh-text-2); margin: 0; font-size: 0.95rem; }
.dfh-acct__plan-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}
.dfh-acct__plan-empty p { color: var(--dfh-text-2); margin: 0 0 18px; }

.dfh-acct__games {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}
.dfh-acct__game {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--dfh-border);
    border-radius: 12px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.dfh-acct__game:hover { transform: translateY(-2px); border-color: rgba(233,93,107,0.4); }
.dfh-acct__game-logo {
    flex: 0 0 auto;
    width: 64px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, #1f2330 0%, #15181f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.dfh-acct__game-logo img { width: 100%; height: 100%; object-fit: cover; }
.dfh-acct__game-logo span { font-size: 1.6rem; font-weight: 700; color: var(--dfh-accent); }
.dfh-acct__game-info { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.dfh-acct__game-info h3 { margin: 0; font-size: 1rem; color: var(--dfh-text); }
.dfh-acct__game-info p {
    margin: 0;
    color: var(--dfh-text-2);
    font-size: 0.85rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.dfh-acct__game-info .dfh-btn { align-self: flex-start; margin-top: 6px; }

.dfh-acct__empty {
    text-align: center;
    padding: 28px 16px;
    color: var(--dfh-text-2);
}
.dfh-acct__empty p { margin: 0 0 16px; }

.dfh-acct__form { display: flex; flex-direction: column; gap: 18px; }
.dfh-acct__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.dfh-acct__field { display: flex; flex-direction: column; gap: 8px; }
.dfh-acct__field label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.7rem;
    color: var(--dfh-text-3);
    font-weight: 600;
}
.dfh-acct__field input {
    padding: 12px 14px;
    background: rgba(0,0,0,0.35);
    color: var(--dfh-text);
    border: 1px solid var(--dfh-border);
    border-radius: 10px;
    font-size: 0.95rem;
    transition: border-color 0.15s, box-shadow 0.15s;
    font-family: inherit;
}
.dfh-acct__field input:focus {
    outline: none;
    border-color: var(--dfh-accent);
    box-shadow: 0 0 0 3px rgba(233,93,107,0.18);
}
.dfh-acct__field input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.dfh-acct__field-help {
    color: var(--dfh-text-3);
    font-size: 0.8rem;
    margin: 0;
}
.dfh-acct__form-actions {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.dfh-acct__table-wrap { overflow-x: auto; }
.dfh-acct__table {
    width: 100%;
    border-collapse: collapse;
}
.dfh-acct__table th,
.dfh-acct__table td {
    text-align: left;
    padding: 12px 14px;
    border-bottom: 1px solid var(--dfh-border);
    font-size: 0.92rem;
    color: var(--dfh-text);
}
.dfh-acct__table th {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.7rem;
    color: var(--dfh-text-3);
    font-weight: 600;
}
.dfh-acct__table tbody tr:last-child td { border-bottom: none; }
.dfh-acct__num { text-align: right; }

.dfh-acct__community-foot {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--dfh-border);
}

@media (max-width: 960px) {
    .dfh-acct__layout { grid-template-columns: 1fr; }
    .dfh-acct__sidebar { position: static; }
    .dfh-acct__nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
    }
    .dfh-acct__sidebar-foot { display: none; }
    .dfh-acct__stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .dfh-acct__hero { padding: 110px 20px 50px; }
    .dfh-acct__hero-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
    .dfh-acct__body { padding: 36px 20px 90px; }
    .dfh-acct__form-row { grid-template-columns: 1fr; }
    .dfh-acct__card-head { padding: 20px 22px 14px; }
    .dfh-acct__card-body { padding: 20px 22px 24px; }
}

/* ── Login / Auth fullscreen ─────────────────────────────────────────────── */
body.dfh-login-page {
    margin: 0;
    background: var(--dfh-bg);
    min-height: 100vh;
    overflow-x: hidden;
}
body.dfh-login-page .dfh-header,
body.dfh-login-page .dfh-footer,
body.dfh-login-page .dfh-nav--mobile { display: none !important; }

.dfh-auth {
    display: grid;
    grid-template-columns: minmax(420px, 1fr) minmax(440px, 560px);
    min-height: 100vh;
    background: var(--dfh-bg);
    color: var(--dfh-text);
}

/* Brand panel */
.dfh-auth__brand {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 56px 56px 48px;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 0%, rgba(233,93,107,0.25), transparent 55%),
        radial-gradient(circle at 80% 100%, rgba(120,80,200,0.18), transparent 55%),
        linear-gradient(160deg, #11131a 0%, #0c0d12 60%, #08090e 100%);
    border-right: 1px solid var(--dfh-border);
}
.dfh-auth__brand-grain {
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.015) 0 1px, transparent 1px 3px);
    mix-blend-mode: overlay;
    pointer-events: none;
}
.dfh-auth__brand-glow {
    position: absolute;
    width: 460px; height: 460px;
    top: -120px; right: -120px;
    background: radial-gradient(circle, rgba(233,93,107,0.22) 0%, transparent 65%);
    filter: blur(20px);
    pointer-events: none;
}
.dfh-auth__brand-logo {
    position: relative;
    display: inline-block;
    margin-bottom: auto;
}
.dfh-auth__brand-logo img { display: block; width: 180px; height: auto; }

.dfh-auth__brand-text {
    position: relative;
    margin: 60px 0 36px;
    max-width: 460px;
}
.dfh-auth__eyebrow {
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.72rem;
    color: var(--dfh-accent);
    margin: 0 0 14px;
    font-weight: 600;
}
.dfh-auth__brand-text h1 {
    font-size: clamp(2rem, 3.4vw, 2.9rem);
    line-height: 1.1;
    margin: 0 0 18px;
    color: var(--dfh-text);
    letter-spacing: -0.02em;
    font-weight: 700;
}
.dfh-auth__brand-sub {
    color: var(--dfh-text-2);
    font-size: 1.02rem;
    line-height: 1.6;
    margin: 0;
}

.dfh-auth__brand-bullets {
    position: relative;
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.dfh-auth__brand-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dfh-text-2);
    font-size: 0.95rem;
}
.dfh-auth__bullet-dot {
    width: 8px; height: 8px;
    border-radius: 100px;
    background: var(--dfh-accent);
    box-shadow: 0 0 12px rgba(233,93,107,0.6);
    flex: 0 0 auto;
}
.dfh-auth__brand-foot {
    position: relative;
    color: var(--dfh-text-3);
    font-size: 0.8rem;
    margin: 0;
}

/* Form panel */
.dfh-auth__form-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px 48px 48px;
    background: var(--dfh-bg);
    overflow-y: auto;
}
.dfh-auth__back {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--dfh-text-3);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 8px 12px;
    border-radius: 8px;
    transition: color 0.15s, background 0.15s;
}
.dfh-auth__back:hover {
    color: var(--dfh-text);
    background: var(--dfh-surface);
}
.dfh-auth__form-inner {
    width: 100%;
    max-width: 420px;
    margin: auto;
    padding: 24px 0;
}
.dfh-auth__mobile-logo {
    display: none;
    margin: 0 auto 28px;
}
.dfh-auth__mobile-logo img { display: block; width: 150px; height: auto; }

.dfh-auth__form-head {
    margin-bottom: 28px;
    text-align: center;
}
.dfh-auth__form-head h2 {
    font-size: 1.8rem;
    margin: 0 0 8px;
    color: var(--dfh-text);
    letter-spacing: -0.01em;
}
.dfh-auth__form-head p {
    color: var(--dfh-text-2);
    margin: 0;
    font-size: 0.95rem;
}

.dfh-auth__form-body {
    background: var(--dfh-surface);
    border: 1px solid var(--dfh-border);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 20px 60px -30px rgba(0,0,0,0.6);
}

.dfh-auth__form-foot {
    text-align: center;
    margin: 22px 0 0;
    color: var(--dfh-text-3);
    font-size: 0.8rem;
    line-height: 1.6;
}
.dfh-auth__form-foot a {
    color: var(--dfh-text-2);
    text-decoration: underline;
}
.dfh-auth__form-foot a:hover { color: var(--dfh-accent); }

/* Restyle the auth.css shortcode markup so it fits the dark panel. */
.dfh-auth__form-body .dfh-login-wrap { color: var(--dfh-text); }

.dfh-auth__form-body .dfh-tabs {
    display: flex;
    gap: 4px;
    background: rgba(0,0,0,0.35);
    padding: 4px;
    border-radius: 10px;
    margin-bottom: 22px;
    border: 1px solid var(--dfh-border);
}
.dfh-auth__form-body .dfh-tab {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--dfh-text-2);
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.dfh-auth__form-body .dfh-tab:hover { color: var(--dfh-text); }
.dfh-auth__form-body .dfh-tab--active {
    background: var(--dfh-accent);
    color: #fff;
    box-shadow: 0 6px 18px -8px rgba(233,93,107,0.7);
}

.dfh-auth__form-body .dfh-panel { display: none; }
.dfh-auth__form-body .dfh-panel--active { display: block; }

.dfh-auth__form-body .dfh-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}
.dfh-auth__form-body .dfh-field label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.7rem;
    color: var(--dfh-text-3);
    font-weight: 600;
}
.dfh-auth__form-body .dfh-field input[type="email"],
.dfh-auth__form-body .dfh-field input[type="text"],
.dfh-auth__form-body .dfh-field input[type="password"] {
    padding: 13px 14px;
    background: rgba(0,0,0,0.35);
    color: var(--dfh-text);
    border: 1px solid var(--dfh-border);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.dfh-auth__form-body .dfh-field input:focus {
    outline: none;
    border-color: var(--dfh-accent);
    box-shadow: 0 0 0 3px rgba(233,93,107,0.18);
}
.dfh-auth__form-body .dfh-field-hint {
    color: var(--dfh-text-3);
    font-size: 0.78rem;
}

.dfh-auth__form-body .dfh-field--inline {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.dfh-auth__form-body .dfh-checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dfh-text-2);
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
}
.dfh-auth__form-body .dfh-checkbox-label input {
    width: 16px;
    height: 16px;
    accent-color: var(--dfh-accent);
}
.dfh-auth__form-body .dfh-link-btn {
    background: none;
    border: none;
    color: var(--dfh-accent);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
}
.dfh-auth__form-body .dfh-link-btn:hover { text-decoration: underline; }

.dfh-auth__form-body .dfh-btn--primary {
    width: 100%;
    padding: 14px 18px;
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    background: linear-gradient(135deg, #e95d6b 0%, #c73e4c 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 12px 28px -10px rgba(233,93,107,0.6);
    transition: transform 0.15s, filter 0.15s;
    margin-top: 6px;
}
.dfh-auth__form-body .dfh-btn--primary:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
}
.dfh-auth__form-body .dfh-btn--ghost {
    padding: 13px 18px;
    background: transparent;
    color: var(--dfh-text-2);
    border: 1px solid var(--dfh-border-2);
    border-radius: 10px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
}

.dfh-auth__form-body .dfh-divider {
    border: none;
    border-top: 1px solid var(--dfh-border);
    margin: 22px 0 18px;
}
.dfh-auth__form-body .dfh-subheading {
    margin: 0 0 6px;
    font-size: 1rem;
    color: var(--dfh-text);
}
.dfh-auth__form-body .dfh-form-hint {
    margin: 0 0 14px;
    color: var(--dfh-text-3);
    font-size: 0.85rem;
}
.dfh-auth__form-body .dfh-field-row {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}
.dfh-auth__form-body .dfh-field-row .dfh-btn { flex: 1; }
.dfh-auth__form-body .dfh-field-row--names {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 0;
}
.dfh-auth__form-body .dfh-field-row--names .dfh-field { margin-bottom: 0; }
@media (max-width: 480px) {
    .dfh-auth__form-body .dfh-field-row--names { grid-template-columns: 1fr; gap: 0; }
}

.dfh-auth__form-body .dfh-notice {
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 0.88rem;
    margin-bottom: 16px;
    border: 1px solid;
}
.dfh-auth__form-body .dfh-notice--success {
    background: rgba(34,197,94,0.1);
    color: #4ade80;
    border-color: rgba(34,197,94,0.3);
}
.dfh-auth__form-body .dfh-notice--error {
    background: rgba(239,68,68,0.1);
    color: #f87171;
    border-color: rgba(239,68,68,0.3);
}

.dfh-auth__form-body .dfh-form-title {
    margin: 0 0 18px;
    font-size: 1.3rem;
    color: var(--dfh-text);
}

@media (max-width: 960px) {
    .dfh-auth { grid-template-columns: 1fr; }
    .dfh-auth__brand { display: none; }
    .dfh-auth__mobile-logo { display: block; }
    .dfh-auth__form-panel { padding: 24px 24px 48px; }
}

/* ── Home pitch CTA (Stories section) ── */
.dfh-home__pitch {
    margin-top: 64px;
    text-align: left;
}
.dfh-home__pitch-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
    padding: 36px 44px;
    border-radius: var(--dfh-radius-xl);
    background:
        linear-gradient(135deg, rgba(233, 93, 107, 0.10), rgba(233, 93, 107, 0.02)),
        var(--dfh-surface);
    border: 1px solid var(--dfh-border);
    position: relative;
    overflow: hidden;
}
.dfh-home__pitch-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(233, 93, 107, 0.12), transparent 60%);
    pointer-events: none;
}
.dfh-home__pitch-text { position: relative; }
.dfh-home__pitch-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--dfh-accent);
    margin: 0 0 8px;
    font-weight: 600;
}
.dfh-home__pitch-text h3 {
    font-size: 1.6rem;
    color: var(--dfh-text);
    margin: 0 0 10px;
    line-height: 1.25;
}
.dfh-home__pitch-text p {
    color: var(--dfh-text-2);
    margin: 0;
    max-width: 640px;
    line-height: 1.6;
}
.dfh-home__pitch-action { position: relative; }
@media (max-width: 820px) {
    .dfh-home__pitch-inner {
        grid-template-columns: 1fr;
        padding: 28px 24px;
        text-align: center;
    }
    .dfh-home__pitch-text p { margin: 0 auto; }
}

/* ── Contact page ── */
.dfh-contact__hero {
    padding: 140px 24px 80px;
    text-align: center;
    background: var(--dfh-bg);
    border-bottom: 1px solid var(--dfh-border);
}
.dfh-contact__hero-inner { max-width: 760px; margin: 0 auto; }
.dfh-contact__eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--dfh-accent);
    margin: 0 0 12px;
    font-weight: 600;
}
.dfh-contact__heading {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--dfh-text);
    margin: 0 0 16px;
    line-height: 1.1;
}
.dfh-contact__intro {
    color: var(--dfh-text-2);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.dfh-contact__body { padding: 80px 24px 120px; background: var(--dfh-bg); }
.dfh-contact__grid {
    max-width: var(--dfh-max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: start;
}

.dfh-contact__form-card {
    background: var(--dfh-surface);
    border: 1px solid var(--dfh-border);
    border-radius: var(--dfh-radius-xl);
    padding: 36px;
}
.dfh-contact__form-card h2 {
    font-size: 1.3rem;
    margin: 0 0 6px;
    color: var(--dfh-text);
}
.dfh-contact__form-card .dfh-contact__form-sub {
    color: var(--dfh-text-3);
    font-size: 0.9rem;
    margin: 0 0 24px;
}
.dfh-contact__form .dfh-field { margin-bottom: 16px; }
.dfh-contact__form label {
    display: block;
    font-size: 0.85rem;
    color: var(--dfh-text-2);
    margin-bottom: 6px;
    font-weight: 500;
}
.dfh-contact__form input,
.dfh-contact__form textarea {
    width: 100%;
    box-sizing: border-box;
    background: var(--dfh-bg);
    border: 1px solid var(--dfh-border-2);
    border-radius: 8px;
    color: var(--dfh-text);
    padding: 12px 14px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.dfh-contact__form input:focus,
.dfh-contact__form textarea:focus {
    outline: none;
    border-color: var(--dfh-accent);
    background: var(--dfh-surface-2);
}
.dfh-contact__form textarea { min-height: 160px; resize: vertical; }
.dfh-contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.dfh-contact__form-actions { margin-top: 8px; }
.dfh-contact__form-actions .dfh-btn { width: 100%; justify-content: center; }

.dfh-contact__notice {
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}
.dfh-contact__notice--success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
}
.dfh-contact__notice--error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.dfh-contact__info {
    background: var(--dfh-surface);
    border: 1px solid var(--dfh-border);
    border-radius: var(--dfh-radius-xl);
    padding: 36px;
}
.dfh-contact__info h2 {
    font-size: 1.3rem;
    margin: 0 0 20px;
    color: var(--dfh-text);
}
.dfh-contact__info-item {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--dfh-border);
}
.dfh-contact__info-item:last-child { border-bottom: none; }
.dfh-contact__info-icon {
    width: 36px; height: 36px;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(233, 93, 107, 0.12);
    color: var(--dfh-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.dfh-contact__info-icon svg { width: 18px; height: 18px; }
.dfh-contact__info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--dfh-text-3);
    margin: 0 0 2px;
}
.dfh-contact__info-value {
    color: var(--dfh-text);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}
.dfh-contact__info-value a { color: inherit; text-decoration: none; }
.dfh-contact__info-value a:hover { color: var(--dfh-accent); }
.dfh-contact__info-flag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 2px 6px;
    margin-right: 8px;
    border-radius: 4px;
    background: rgba(233, 93, 107, 0.12);
    color: var(--dfh-accent);
    vertical-align: middle;
}

@media (max-width: 860px) {
    .dfh-contact__grid { grid-template-columns: 1fr; gap: 28px; }
    .dfh-contact__form-card,
    .dfh-contact__info { padding: 24px; }
    .dfh-contact__form-row { grid-template-columns: 1fr; }
}

/* ── Support page ── */
.dfh-support-page__hero {
    padding: 90px 24px 60px;
    text-align: center;
    background: linear-gradient(180deg, rgba(233,93,107,0.06), transparent);
}
.dfh-support-page__hero-inner { max-width: 780px; margin: 0 auto; }
.dfh-support-page__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.82rem;
    color: var(--dfh-accent, #e95d6b);
    font-weight: 600;
    margin: 0 0 16px;
}
.dfh-support-page__heading { font-size: clamp(2rem, 4.5vw, 3.2rem); margin: 0 0 18px; }
.dfh-support-page__intro   { font-size: 1.05rem; color: #4b5563; max-width: 580px; margin: 0 auto; }

.dfh-support-page__body {
    max-width: var(--dfh-max-w, 1200px);
    margin: 0 auto;
    padding: 0 24px 80px;
}
.dfh-support-page__body #dfh-support-root { min-height: 300px; display: block; }
.dfh-support-signin {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.dfh-support-signin p { margin: 0; font-size: 1.05rem; color: #374151; }
.dfh-support-signin a { color: var(--dfh-accent, #e95d6b); font-weight: 600; text-decoration: none; }
.dfh-support-signin a:hover { text-decoration: underline; }

/* ── Referrals (inside account panel) ── */
.dfh-referrals__intro { margin: 0 0 16px; color: var(--dfh-muted, #94a3b8); }
.dfh-referrals__link { display: flex; gap: 10px; margin-bottom: 20px; }
.dfh-referrals__link .dfh-input { flex: 1; }
.dfh-referrals__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-bottom: 24px;
}
.dfh-referrals__stat {
  background: var(--dfh-surface-2, rgba(255,255,255,0.04));
  border: 1px solid var(--dfh-border, rgba(255,255,255,0.08));
  border-radius: 10px; padding: 14px 16px; text-align: center;
}
.dfh-referrals__stat-value { display: block; font-size: 26px; font-weight: 600; color: var(--dfh-text, #fff); }
.dfh-referrals__stat-label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--dfh-muted, #94a3b8); margin-top: 4px; }
.dfh-referrals__heading { font-size: 15px; font-weight: 600; margin: 24px 0 10px; color: var(--dfh-text, #fff); }
.dfh-referrals__tiers { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.dfh-referrals__tier {
  display: flex; align-items: center; gap: 16px; padding: 14px 16px;
  background: var(--dfh-surface-2, rgba(255,255,255,0.04));
  border: 1px solid var(--dfh-border, rgba(255,255,255,0.08));
  border-radius: 10px;
}
.dfh-referrals__tier-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.dfh-referrals__tier-plan { color: var(--dfh-muted, #94a3b8); font-size: 13px; }
.dfh-referrals__tier-cost { font-weight: 600; color: var(--dfh-text, #fff); min-width: 80px; text-align: right; }
.dfh-referrals__redeem-btn[disabled] { opacity: 0.5; cursor: not-allowed; }
.dfh-referrals__muted { color: var(--dfh-muted, #94a3b8); font-size: 13px; margin: 8px 0; }
.dfh-referrals__table {
  width: 100%; border-collapse: collapse; margin-top: 8px;
  background: var(--dfh-surface-2, rgba(255,255,255,0.03));
  border: 1px solid var(--dfh-border, rgba(255,255,255,0.08));
  border-radius: 10px; overflow: hidden;
}
.dfh-referrals__table th, .dfh-referrals__table td {
  padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--dfh-border, rgba(255,255,255,0.06));
  font-size: 14px;
}
.dfh-referrals__table th { font-weight: 600; color: var(--dfh-muted, #94a3b8); text-transform: uppercase; font-size: 11px; letter-spacing: 0.05em; }
.dfh-referrals__table tr:last-child td { border-bottom: none; }
.dfh-referrals__table code { background: rgba(255,255,255,0.06); padding: 2px 6px; border-radius: 4px; font-size: 13px; }
.dfh-referrals__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.dfh-referrals__list-item {
  display: flex; align-items: center; gap: 12px; padding: 10px 14px;
  background: var(--dfh-surface-2, rgba(255,255,255,0.03));
  border: 1px solid var(--dfh-border, rgba(255,255,255,0.06));
  border-radius: 8px;
}
.dfh-referrals__list-name { flex: 1; font-weight: 500; color: var(--dfh-text, #fff); }
.dfh-referrals__list-date { color: var(--dfh-muted, #94a3b8); font-size: 13px; }
@media (max-width: 640px) {
  .dfh-referrals__stats { grid-template-columns: 1fr; }
  .dfh-referrals__tier { flex-wrap: wrap; }
  .dfh-referrals__tier-cost { text-align: left; }
  .dfh-referrals__link { flex-direction: column; }
}

/* ── Homepage — Why Section ─────────────────────────────────────────────────── */
.dfh-home__why {
    background: var(--dfh-surface);
    border-top: 1px solid var(--dfh-border);
    border-bottom: 1px solid var(--dfh-border);
    padding: 100px 24px;
}
.dfh-home__why-inner {
    max-width: var(--dfh-max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.dfh-home__why-media {
    border-radius: var(--dfh-radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--dfh-surface-2);
}
.dfh-home__why-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.dfh-home__why-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--dfh-text);
    margin: 0 0 20px;
    letter-spacing: -0.01em;
    line-height: 1.25;
}
.dfh-home__why-text p {
    color: var(--dfh-text-2);
    line-height: 1.8;
    margin: 0 0 32px;
    font-size: 1.05rem;
}
@media (max-width: 860px) {
    .dfh-home__why { padding: 70px 20px; }
    .dfh-home__why-inner { grid-template-columns: 1fr; gap: 36px; }
}

/* ── Why Page ────────────────────────────────────────────────────────────────── */
.dfh-why { background: var(--dfh-bg); }

/* Hero — mirrors About hero exactly */
.dfh-why__hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dfh-bg);
    position: relative;
}
.dfh-why__hero-bg {
    position: absolute; inset: -8% -4%;
    background-size: cover;
    background-position: center;
    filter: saturate(0.85) brightness(0.5);
    animation: dfh-drift 32s ease-in-out infinite alternate;
    z-index: 0;
}
.dfh-why__hero-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 50% 40%, rgba(233,93,107,0.15), transparent 65%),
        linear-gradient(180deg, rgba(12,15,26,0.45) 0%, rgba(12,15,26,0.9) 70%, rgba(12,15,26,1) 100%);
    z-index: 1;
}
.dfh-why__hero-grain {
    position: absolute; inset: 0;
    background-image:
        repeating-linear-gradient(0deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 3px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.014) 0 1px, transparent 1px 3px);
    mix-blend-mode: overlay;
    pointer-events: none;
    animation: dfh-grain 8s steps(6) infinite;
    z-index: 2;
}
.dfh-why__hero-inner {
    position: relative;
    z-index: 3;
    max-width: 880px;
    padding: 140px 24px 120px;
    text-align: center;
}
.dfh-why__eyebrow {
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 0.75rem;
    color: var(--dfh-accent);
    margin: 0 0 18px;
    font-weight: 600;
}
.dfh-why__hero-heading {
    font-size: clamp(2.2rem, 5.5vw, 4.4rem);
    line-height: 1.08;
    font-weight: 700;
    margin: 0 0 24px;
    color: var(--dfh-text);
    letter-spacing: -0.02em;
}
.dfh-why__hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--dfh-text-2);
    line-height: 1.65;
    max-width: 680px;
    margin: 0 auto;
}

/* Mission block — mirrors About mission */
.dfh-why__mission {
    padding: 120px 24px;
    background: var(--dfh-bg);
    text-align: center;
    border-bottom: 1px solid var(--dfh-border);
}
.dfh-why__mission-inner { max-width: 820px; margin: 0 auto; }
.dfh-why__mission-tag {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.7rem;
    color: var(--dfh-accent);
    border: 1px solid var(--dfh-accent);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
    font-weight: 600;
}
.dfh-why__mission h2 {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    color: var(--dfh-text);
    margin: 0 0 40px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

/* Sub-heading inside mission */
.dfh-why__mission-sub {
    color: var(--dfh-text-2);
    font-size: 1.05rem;
    margin: -16px 0 36px;
    font-style: italic;
}

/* Container cards grid */
.dfh-why__containers {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 8px;
}
.dfh-why__container-card {
    background: var(--dfh-surface-2);
    border: 1px solid var(--dfh-border);
    border-radius: var(--dfh-radius-xl);
    padding: 28px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    transition: border-color 0.25s ease, transform 0.25s ease;
}
.dfh-why__container-card:hover {
    border-color: var(--dfh-border-2);
    transform: translateY(-3px);
}
.dfh-why__container-icon {
    width: 44px;
    height: 44px;
    color: var(--dfh-accent);
    opacity: 0.75;
    flex-shrink: 0;
}
.dfh-why__container-icon svg { width: 100%; height: 100%; }
.dfh-why__container-card span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dfh-text-2);
    letter-spacing: 0.01em;
}
@media (max-width: 860px) {
    .dfh-why__containers { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 540px) {
    .dfh-why__containers { grid-template-columns: repeat(2, 1fr); }
    .dfh-why__containers .dfh-why__container-card:last-child { grid-column: span 2; max-width: 200px; margin: 0 auto; }
}

/* Split rows — mirrors About split */
.dfh-why__split { padding: 120px 24px; background: var(--dfh-bg); }
.dfh-why__split--surface {
    background: var(--dfh-surface);
    border-top: 1px solid var(--dfh-border);
    border-bottom: 1px solid var(--dfh-border);
}
.dfh-why__split-inner {
    max-width: var(--dfh-max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.dfh-why__split-media img {
    width: 100%;
    height: auto;
    border-radius: var(--dfh-radius-xl);
    border: 1px solid var(--dfh-border);
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.dfh-why__kicker {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.7rem;
    color: var(--dfh-accent);
    margin-bottom: 14px;
    font-weight: 600;
}
.dfh-why__split-text h2 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    color: var(--dfh-text);
    margin: 0 0 18px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}
.dfh-why__split-text p {
    color: var(--dfh-text-2);
    font-size: 1.05rem;
    line-height: 1.75;
    margin: 0;
}

/* Platform grid — mirrors About values */
.dfh-why__platform {
    padding: 120px 24px;
    background: var(--dfh-bg);
    border-top: 1px solid var(--dfh-border);
}
.dfh-why__platform-inner { max-width: var(--dfh-max-w); margin: 0 auto; }
.dfh-why__section-title {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 700;
    color: var(--dfh-text);
    margin: 0 0 12px;
    letter-spacing: -0.01em;
    text-align: center;
}
.dfh-why__section-sub {
    color: var(--dfh-text-2);
    font-size: 1.05rem;
    margin: 0 auto 48px;
    text-align: center;
    max-width: 640px;
    line-height: 1.6;
}
.dfh-why__platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.dfh-why__platform-card {
    background: var(--dfh-surface-2);
    border: 1px solid var(--dfh-border);
    border-radius: var(--dfh-radius-xl);
    padding: 32px 28px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.dfh-why__platform-card:hover {
    transform: translateY(-4px);
    border-color: var(--dfh-accent);
}
.dfh-why__platform-num {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--dfh-accent);
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.dfh-why__platform-card h3 { font-size: 1.15rem; margin: 0 0 10px; color: var(--dfh-text); }
.dfh-why__platform-card p  { color: var(--dfh-text-2); margin: 0; line-height: 1.6; }

/* Expanded mission section to accommodate the grid */
.dfh-why__mission--expanded { border-bottom: 1px solid var(--dfh-border); }
.dfh-why__mission--expanded .dfh-about__mission-inner { max-width: var(--dfh-max-w); }
.dfh-why__mission--expanded p { max-width: 720px; margin: 0 auto 48px; }

/* Not-quite grid */
.dfh-why__not-quite-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: var(--dfh-max-w);
    margin: 0 auto;
}
.dfh-why__nq-card {
    background: var(--dfh-surface-2);
    border: 1px solid var(--dfh-border);
    border-radius: var(--dfh-radius-xl);
    padding: 28px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    transition: border-color 0.25s ease, transform 0.25s ease;
}
.dfh-why__nq-card:hover {
    border-color: var(--dfh-border-2);
    transform: translateY(-3px);
}
.dfh-why__nq-icon {
    width: 40px;
    height: 40px;
    color: var(--dfh-accent);
    opacity: 0.7;
}
.dfh-why__nq-icon svg { width: 100%; height: 100%; }
.dfh-why__nq-card span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dfh-text-2);
    line-height: 1.4;
}
@media (max-width: 860px) {
    .dfh-why__not-quite-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
    .dfh-why__split-inner { grid-template-columns: 1fr; gap: 40px; }
    .dfh-why__platform-grid { grid-template-columns: 1fr; }
    .dfh-why__hero-inner { padding: 120px 20px 100px; }
    .dfh-why__mission,
    .dfh-why__split,
    .dfh-why__platform { padding-left: 20px; padding-right: 20px; padding-top: 80px; padding-bottom: 80px; }
}
