@font-face {
    font-family: 'Satoshi';
    src: url('/v2/fonts/Satoshi-Variable.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
    font-style: normal;
}
@font-face {
    font-family: 'Satoshi';
    src: url('/v2/fonts/Satoshi-VariableItalic.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
    font-style: italic;
}

:root {
    /* Figma tokens */
    --dirty-ice: #6B7B84;
    --dirty-ice-lighter: #94A0A6;
    --pale-text: #C7CFD9;
    --bright-white: #F4F9FF;
    --second-white: #ECF2F9;
    --primary-dark: #171717;
    --secondary-dark: #222222;

    /* Effects */
    --shadow-section: 10px 10px 22.6px 2px rgba(68, 69, 82, 0.11);
    --shadow-button: 2px 4px 6.7px 0 rgba(68, 69, 82, 0.12);
    --shadow-card: 0 4px 4px rgba(0, 0, 0, 0.25);
    --shadow-soft: 10px 10px 22.6px 0 rgba(68, 69, 82, 0.11);

    /* Radii */
    --radius-card: 24px;
    --radius-large: 40px;
    --radius-pill: 20px;

    /* Layout */
    --frame-w: 1920px;
    --content-w: 1120px;
    --page-pad: clamp(14px, 3vw, 56px);
    --header-h: 64px;

    /* Fluid typography — calmer caps for a normal web feel */
    --fs-eyebrow: clamp(20px, 2.2vw, 36px);
    --fs-h1: clamp(24px, 2.6vw, 40px);
    --fs-h1-large: clamp(32px, 3.8vw, 56px);
    --fs-card-title: clamp(22px, 2.4vw, 36px);
    --fs-body: clamp(14px, 1.15vw, 17px);
    --fs-body-sm: clamp(12px, 0.95vw, 14px);
    --fs-small: clamp(11px, 0.8vw, 13px);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    background: var(--bright-white);
    color: var(--primary-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; color: inherit; }

main {
    display: block;
    padding-top: var(--header-h);
    flex: 1 0 auto;
}
.site-footer { flex-shrink: 0; margin-top: auto; }

/* ================================================================
   HEADER
   ================================================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--header-h);
    padding: 0 clamp(16px, 3vw, 56px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 249, 255, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.header-menu-btn {
    position: absolute;
    left: clamp(16px, 3vw, 56px);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dirty-ice);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1;
}
.hamburger-icon {
    width: 18px;
    height: 13px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hamburger-icon span {
    display: block;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
}

.header-logo {
    height: 22px;
    width: auto;
}

.header-signin {
    position: absolute;
    right: clamp(16px, 3vw, 56px);
    top: 50%;
    transform: translateY(-50%);
    color: var(--dirty-ice);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1;
    transition: color 0.15s ease;
}
.header-signin:hover { color: var(--primary-dark); }
.header-signin:focus-visible {
    outline: 2px solid var(--dirty-ice);
    outline-offset: 4px;
    border-radius: 4px;
}

.header-user-slot {
    position: absolute;
    right: clamp(16px, 3vw, 56px);
    top: 50%;
    transform: translateY(-50%);
}
.header-profile-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid var(--dirty-ice);
    background: transparent;
    color: var(--dirty-ice);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}
.header-profile-btn svg { width: 20px; height: 20px; }
.header-profile-initials {
    font-family: 'Satoshi', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.04em;
    line-height: 1;
    color: var(--dirty-ice);
    text-transform: uppercase;
    user-select: none;
}
.header-profile-btn:hover .header-profile-initials,
.header-profile-btn[aria-expanded="true"] .header-profile-initials {
    color: var(--primary-dark);
}
.header-profile-btn:hover,
.header-profile-btn[aria-expanded="true"] {
    background: rgba(107, 123, 132, 0.1);
}
.header-profile-btn:focus-visible {
    outline: 2px solid var(--dirty-ice);
    outline-offset: 3px;
}

.profile-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    width: max-content;
    min-width: 0;
    padding: 4px;
    border-radius: 14px;
    background: rgba(244, 249, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(107, 123, 132, 0.12);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translateY(-5px);
    pointer-events: none;
    transition: opacity 150ms ease-out, transform 150ms ease-out;
    z-index: 110;
}
.profile-dropdown.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.profile-dropdown form {
    margin: 0;
    display: flex;
    justify-content: flex-end;
}
.profile-dropdown a,
.profile-dropdown button {
    width: 100%;
    height: 42px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Satoshi', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--dirty-ice);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    text-decoration: none;
    transition: background 0.12s ease, color 0.12s ease;
}
.profile-dropdown a:hover,
.profile-dropdown a:focus-visible,
.profile-dropdown button:hover,
.profile-dropdown button:focus-visible {
    background: rgba(107, 123, 132, 0.08);
    color: var(--primary-dark);
    outline: none;
}
.profile-dropdown svg { width: 18px; height: 18px; flex: 0 0 18px; }
/* Sign Out button: tighter frame, content-width only.
   inline-flex (not flex) so the button doesn't stretch to fill the
   200px dropdown — it shrinks to just the icon + "Sign Out" label.
   !important defeats any specificity stomping from the multi-selector
   rule above. */
.profile-dropdown button[type="submit"] {
    display: inline-flex !important;
    width: auto !important;
    max-width: max-content !important;
    flex: 0 0 auto;
    height: 32px;
    padding: 0 10px;
    margin: 0;
    gap: 8px;
    border-radius: 8px;
}
.profile-dropdown button[type="submit"] svg { width: 14px; height: 14px; flex: 0 0 14px; }
.profile-dropdown hr {
    margin: 4px 12px;
    border: none;
    border-top: 1px solid rgba(107, 123, 132, 0.12);
}

@media (max-width: 900px) {
    .header-profile-btn { width: 26px; height: 26px; }
    .header-profile-btn svg { width: 18px; height: 18px; }
}
@media (max-width: 360px) {
    .profile-dropdown { max-width: calc(100vw - 28px); }
}

/* ================================================================
   MENU OVERLAY
   ================================================================ */

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: var(--dirty-ice);
    display: flex;
    flex-direction: column;
    padding: 24px clamp(16px, 3vw, 56px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.menu-overlay.active { opacity: 1; visibility: visible; }
.menu-overlay-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}
.menu-overlay-logo {
    height: 22px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}
.menu-close-btn {
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(244, 249, 255, 0.6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bright-white);
    font-size: 18px;
    transition: border-color 0.2s;
}
.menu-close-btn:hover { border-color: var(--bright-white); }

.menu-nav {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px clamp(40px, 8vw, 140px);
    align-content: center;
    padding: 0 clamp(16px, 3vw, 56px);
}
.menu-nav a {
    font-size: clamp(28px, 3.6vw, 52px);
    font-weight: 300;
    text-transform: uppercase;
    color: rgba(244, 249, 255, 0.55);
    line-height: 1.35;
    transition: color 0.2s;
}
.menu-nav a:hover,
.menu-nav a.active { color: var(--bright-white); }

/* ================================================================
   HERO
   ================================================================ */

.hero {
    position: relative;
    width: 100%;
    min-height: calc(100dvh - var(--header-h));
    overflow: hidden;
    background: #1a1f26 url('/v2/img/hero-chain-bg.png') center / cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: clamp(68px, 6.5vw, 104px);
    padding: clamp(48px, 7vw, 110px) clamp(20px, 8vw, 140px);
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 14, 18, 0.35) 0%, rgba(10, 14, 18, 0) 40%, rgba(10, 14, 18, 0.6) 100%);
    pointer-events: none;
    z-index: 0;
}
.hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    color: var(--bright-white);
    text-align: center;
    margin: 0 auto;
}
.hero-title {
    font-family: 'Satoshi', sans-serif;
    font-weight: 900;
    font-size: clamp(40px, 5.4vw, 84px);
    line-height: 0.9;
    letter-spacing: -0.005em;
    color: #F5F5F5;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
}
.hero-title span { display: block; }
.hero-subtitle {
    margin: 16px auto 0;
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: clamp(13px, 1.15vw, 18px);
    line-height: 1.35;
    color: #FFFFFF;
    text-align: center;
    text-wrap: balance;
}
.hero-predictions {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(14px, 1.4vw, 20px);
}
/* ================================================================
   SECTION LAYOUT
   ================================================================ */

.section {
    width: 100%;
    padding: clamp(28px, 3.4vw, 64px) var(--page-pad) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    /* Anchor jumps from the hamburger menu must clear the fixed header so
       the section eyebrow (PRODUCT / SERVICES / CLIENTS / CREATORS) is
       visible at the top of the viewport, matching desktop behavior. */
    scroll-margin-top: var(--header-h);
}
.section:last-of-type { padding-bottom: clamp(28px, 3.4vw, 64px); }
.section-inner {
    width: 100%;
    max-width: var(--content-w);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(18px, 2vw, 30px);
}

.section-eyebrow {
    font-family: 'Satoshi', sans-serif;
    font-weight: 300;
    font-size: var(--fs-eyebrow);
    line-height: 1;
    color: var(--dirty-ice);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0;
    margin: 0;
}
.hero-eyebrow {
    color: #F5F5F5;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.section-title {
    font-family: 'Satoshi', sans-serif;
    font-weight: 900;
    font-size: var(--fs-h1);
    line-height: 0.95;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    color: var(--bright-white);
}
.section-title--dark { color: var(--primary-dark); }

.section-body {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: var(--fs-body);
    line-height: 1.3;
    color: var(--bright-white);
    text-align: center;
}
.section-body p + p { margin-top: 1em; }

.section-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: clamp(30px, 2.4vw, 40px);
    padding: 0 clamp(14px, 1.6vw, 26px);
    backdrop-filter: blur(2.75px);
    -webkit-backdrop-filter: blur(2.75px);
    box-shadow: var(--shadow-button);
    background: rgba(244, 249, 255, 0.7);
    border-radius: 6px;
    color: var(--primary-dark);
    font-size: clamp(14px, 1.5vw, 22px);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1;
    text-align: center;
}

/* ================================================================
   TODAY'S PREDICTIONS TABLE (home)
   ================================================================ */

.predictions-card {
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    background: var(--bright-white);
}

.predictions-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Satoshi', sans-serif;
}
.predictions-table thead { background: var(--dirty-ice); }
.predictions-table th {
    padding: clamp(12px, 1.2vw, 18px) clamp(8px, 0.9vw, 14px);
    color: var(--bright-white);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: center;
    white-space: nowrap;
}
.predictions-table tbody tr:nth-child(odd) { background: var(--bright-white); }
.predictions-table tbody tr:nth-child(even) { background: var(--second-white); }
.predictions-table td {
    padding: clamp(12px, 1.2vw, 18px) clamp(8px, 0.9vw, 14px);
    color: var(--dirty-ice);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    vertical-align: middle;
}
.predictions-table .symbol-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--dirty-ice);
    color: var(--bright-white);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.04em;
    padding: 0 4px;
    height: 26px;
    border-radius: 8px;
    width: 76px;
    box-sizing: border-box;
}

.predictions-cta {
    background: var(--second-white);
    padding: 16px 0 20px;
    text-align: center;
}
.predictions-access-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border: 1px solid var(--dirty-ice);
    border-radius: var(--radius-pill);
    color: var(--dirty-ice);
    font-size: 14px;
    font-weight: 500;
    background: transparent;
    transition: background 0.15s, color 0.15s;
}
.predictions-access-btn:hover {
    background: var(--dirty-ice);
    color: var(--bright-white);
}

.predictions-footnote {
    color: var(--dirty-ice);
    font-size: var(--fs-body-sm);
    font-weight: 300;
    line-height: 1.3;
    text-align: center;
}

/* ================================================================
   HERO CARD (WHAT + CLIENTS)
   ================================================================ */

.hero-card {
    width: 100%;
    max-width: var(--content-w);
    border-radius: var(--radius-card);
    padding: clamp(36px, 4vw, 72px) clamp(20px, 3.2vw, 48px);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2.2vw, 32px);
    position: relative;
    overflow: hidden;
    color: var(--bright-white);
    text-align: center;
    background: var(--dirty-ice);
}
.hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/v2/img/pattern-data.png') center / cover no-repeat;
    opacity: 0.1;
    pointer-events: none;
    border-radius: inherit;
}
.hero-card--clients {
    background: var(--dirty-ice-lighter);
    min-height: clamp(240px, 22vw, 360px);
    padding: clamp(36px, 4vw, 72px) clamp(20px, 3.2vw, 48px);
}
.hero-card > * { position: relative; z-index: 1; }
.hero-card .section-title { max-width: 720px; font-size: var(--fs-h1); }
.hero-card .section-body { max-width: 680px; font-size: var(--fs-body); }
#what .hero-card .section-body,
#clients .hero-card .section-body {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    hyphens: manual;
    overflow-wrap: normal;
    word-break: normal;
}

/* ================================================================
   SERVICES (mirrors the creators carousel: fixed row on desktop,
   1-up slider with arrows + swipe on mobile)
   ================================================================ */

.services-section { padding-top: clamp(40px, 4.5vw, 88px); }
.services-section .section-inner { gap: clamp(14px, 1.4vw, 20px); max-width: var(--content-w); }

.services-wrap {
    width: 100%;
    max-width: var(--content-w);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(14px, 1.6vw, 22px);
}
.services-carousel {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.6vw, 26px);
    justify-content: center;
}
.services-arrow {
    width: 44px;
    height: 44px;
    color: var(--dirty-ice);
    opacity: 0.55;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.15s, transform 0.15s;
    background: none;
    border: none;
    cursor: pointer;
}
.services-arrow:hover { opacity: 1; transform: scale(1.06); }
.services-arrow svg { width: 26px; height: 26px; }
.services-arrow[disabled] { opacity: 0.2; cursor: default; }

.services-slider {
    flex: 1 1 auto;
    overflow: hidden;
    max-width: 100%;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
}
.services-track {
    display: flex;
    gap: clamp(10px, 1.2vw, 18px);
    align-items: stretch;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.service-card {
    flex: 0 0 clamp(260px, 32vw, 380px);
    min-height: clamp(440px, 38vw, 600px);
    background: var(--dirty-ice);
    color: var(--bright-white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    padding: clamp(52px, 5.2vw, 84px) clamp(24px, 2.4vw, 40px) clamp(28px, 2.8vw, 44px);
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 2.2vw, 32px);
    justify-content: flex-start;
    overflow: hidden;
    position: relative;
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/v2/img/services-card-bg.png') center / cover no-repeat;
    opacity: 0.38;
    pointer-events: none;
    border-radius: inherit;
    z-index: 0;
}
.service-card > * { position: relative; z-index: 1; }
.service-card h3 {
    font-family: 'Satoshi', sans-serif;
    font-weight: 900;
    font-size: clamp(20px, 1.9vw, 30px);
    line-height: 1;
    color: var(--bright-white);
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    flex: 0 0 auto;
    min-height: clamp(66px, 9vw, 100px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.service-card .service-body {
    color: var(--bright-white);
    font-size: var(--fs-body-sm);
    line-height: 1.55;
    font-weight: 400;
    text-align: left;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.service-card .service-body p + p { margin-top: 1.1em; }

@media (min-width: 901px) {
    .services-arrow { display: none; }
    .services-slider {
        max-width: 100%;
        overflow: visible;
        flex: 1 1 auto;
    }
    .services-track {
        width: 100%;
        transform: none !important;
        justify-content: center;
    }
    .service-card {
        flex: 1 1 0;
        width: auto;
        min-width: 0;
    }
}


/* ================================================================
   CREATORS
   ================================================================ */

.creators-section { padding-top: clamp(40px, 4.5vw, 88px); }
.creators-section .section-inner { max-width: var(--content-w); }

.creators-wrap {
    width: 100%;
    max-width: var(--content-w);
    background: var(--second-white);
    border-radius: var(--radius-card);
    padding: clamp(28px, 3vw, 52px) clamp(14px, 2vw, 36px) clamp(40px, 4.5vw, 80px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(14px, 1.6vw, 22px);
}

.creators-carousel {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.6vw, 26px);
    justify-content: center;
}
.creators-arrow {
    width: 44px;
    height: 44px;
    color: var(--dirty-ice);
    opacity: 0.55;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.15s, transform 0.15s;
}
.creators-arrow:hover { opacity: 1; transform: scale(1.06); }
.creators-arrow svg { width: 26px; height: 26px; }

.creators-slider {
    flex: 1 1 auto;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
}
.creators-track {
    display: flex;
    gap: clamp(14px, 1.6vw, 26px);
    align-items: stretch;
    transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.creator-card {
    -webkit-tap-highlight-color: transparent;
}
.creator-photo-wrap,
.creator-photo {
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-touch-callout: none;
    pointer-events: none;
}
.creator-card {
    flex: 0 0 var(--card-w, clamp(220px, 22vw, 360px));
    width: var(--card-w, clamp(220px, 22vw, 360px));
    min-height: clamp(420px, 36vw, 620px);
    height: auto;
    background: rgba(244, 249, 255, 0.42);
    backdrop-filter: blur(3.7px);
    -webkit-backdrop-filter: blur(3.7px);
    border-radius: var(--radius-card);
    box-shadow: 8px 8px 18px 1px rgba(68, 69, 82, 0.08), inset 7px 9px 29.9px 0 rgba(255, 255, 255, 0.65);
    padding: clamp(14px, 1.5vw, 22px) clamp(16px, 1.8vw, 30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(12px, 1.4vw, 22px);
    transition: box-shadow 0.5s ease, background 0.5s ease;
}
.creator-card.is-active {
    background: rgba(244, 249, 255, 0.78);
    box-shadow: 14px 14px 32px 4px rgba(68, 69, 82, 0.18), inset 7px 9px 29.9px 0 rgba(255, 255, 255, 0.85);
}
.creator-photo-wrap {
    width: clamp(130px, 11vw, 190px);
    height: clamp(130px, 11vw, 190px);
    border-radius: 50%;
    overflow: hidden;
    background: rgba(199, 207, 217, 0.3);
    flex: 0 0 auto;
}
.creator-photo { width: 100%; height: 100%; object-fit: cover; transform: scale(1.18); transform-origin: center 58%; }
.creator-name {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: clamp(15px, 1.3vw, 20px);
    color: var(--primary-dark);
    text-align: left;
    align-self: stretch;
    line-height: 1;
    margin: 0;
}
.creator-role {
    font-family: 'Satoshi', sans-serif;
    font-weight: 300;
    font-size: clamp(12px, 0.95vw, 14px);
    color: var(--primary-dark);
    text-align: left;
    align-self: stretch;
    line-height: 1.35;
    margin-top: 4px;
}
.creator-bio {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: var(--fs-body-sm);
    color: var(--primary-dark);
    line-height: 1.25;
    text-align: left;
    align-self: stretch;
}
.creator-bio p { text-align: left; }
.creator-bio p + p { margin-top: 0.7em; }

/* Editorial pagination row — segmented pips + numeric counter */
.creators-pagination {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.2vw, 32px);
    width: 100%;
    justify-content: center;
    padding: 0 clamp(8px, 1vw, 16px);
}
.creators-pagination-track {
    display: flex;
    gap: 8px;
}
.creators-pip {
    width: 28px;
    height: 2px;
    background: rgba(107, 123, 132, 0.25);
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease, width 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.creators-pip:hover { background: rgba(107, 123, 132, 0.55); }
.creators-pip[aria-selected="true"] {
    background: var(--dirty-ice);
    width: 44px;
}

/* ================================================================
   CONTACT — THANK YOU (PopUp02)
   ================================================================ */

.thanks-page {
    width: 100%;
    padding: clamp(24px, 3vw, 56px) var(--page-pad) clamp(40px, 4.5vw, 88px);
    display: flex;
    justify-content: center;
}
.thanks-card {
    width: 100%;
    max-width: var(--content-w);
    position: relative;
    background-color: var(--dirty-ice);
    background-image: url('/v2/img/thanks-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 30px;
    box-shadow: 10px 10px 22.6px 2px rgba(68, 69, 82, 0.11);
    color: var(--bright-white);
    padding: clamp(60px, 10vw, 160px) clamp(24px, 8vw, 120px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}
.thanks-card > * { position: relative; z-index: 1; }

.thanks-card.thanks-card--pattern {
    background-color: var(--dirty-ice);
    background-image: none;
}
.thanks-card.thanks-card--pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/v2/img/pattern-data.png') center / cover no-repeat;
    opacity: 0.1;
    pointer-events: none;
    border-radius: inherit;
    z-index: 0;
}

.thanks-eyebrow {
    font-family: 'Satoshi', sans-serif;
    font-weight: 300;
    font-size: clamp(22px, 2vw, 36px);
    letter-spacing: 0.08em;
    line-height: 1;
    color: var(--bright-white);
    margin: 0 0 clamp(28px, 3vw, 48px);
}
.thanks-title {
    font-family: 'Satoshi', sans-serif;
    font-weight: 300;
    font-size: clamp(32px, 3.6vw, 52px);
    line-height: 1;
    color: var(--bright-white);
    margin: 0 0 clamp(32px, 3.8vw, 56px);
}
.thanks-body {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: clamp(18px, 1.6vw, 26px);
    line-height: 1.45;
    color: var(--bright-white);
    max-width: 940px;
    margin: 0 0 clamp(36px, 4.5vw, 72px);
}
.thanks-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 23px;
    background: rgba(234, 241, 250, 0.73);
    border: 1px solid var(--dirty-ice);
    color: var(--dirty-ice);
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 1;
    text-decoration: none;
    transition: background 0.15s, transform 0.15s;
}
.thanks-btn:hover {
    background: rgba(234, 241, 250, 0.92);
    transform: translateY(-1px);
}
.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.thanks-btn--ghost {
    background: transparent;
    color: var(--bright-white);
    border-color: rgba(234, 241, 250, 0.55);
}
.thanks-btn--ghost:hover {
    background: rgba(234, 241, 250, 0.15);
}
.thanks-note {
    margin-top: clamp(18px, 2vw, 28px);
    font-family: 'Satoshi', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 1;
    color: #F5F5F5;
}
.thanks-note strong { font-weight: 700; }

@media (max-width: 720px) {
    .thanks-card { padding: 56px 20px; border-radius: 22px; }
    .thanks-body { font-size: 16px; }
}

/* ================================================================
   FAQ PAGE
   ================================================================ */

.faq-page {
    width: 100%;
    padding: clamp(24px, 3vw, 48px) var(--page-pad) clamp(40px, 4.5vw, 88px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(28px, 3vw, 48px);
}
.faq-head {
    width: 100%;
    max-width: var(--content-w);
}
.faq-head-title {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: var(--fs-h1-large);
    line-height: 0.85;
    color: var(--dirty-ice);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}
.faq-head-sub {
    margin-top: 12px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 1.6vw, 22px);
    line-height: 1.1;
    color: rgba(107, 123, 132, 0.6);
    text-transform: uppercase;
}
.faq-list {
    width: 100%;
    max-width: var(--content-w);
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 1.4vw, 18px);
}
.faq-card {
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: var(--second-white);
}

.faq-question {
    display: flex;
    align-items: center;
    width: 100%;
    background: rgba(107, 123, 132, 0.85);
    padding: clamp(12px, 1.4vw, 20px) clamp(16px, 2vw, 28px);
    margin: 0;
    font-family: 'Satoshi', sans-serif;
    font-weight: 900;
    font-size: clamp(15px, 1.4vw, 22px);
    line-height: 1.15;
    color: var(--bright-white);
    text-transform: uppercase;
    text-align: left;
}
.faq-question-text {
    flex: 1 1 auto;
}
.faq-answer {
    padding: clamp(16px, 1.8vw, 24px) clamp(18px, 2.4vw, 36px);
    background: var(--second-white);
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: var(--fs-body-sm);
    line-height: 1.45;
    color: var(--dirty-ice);
}
.faq-answer a {
    color: #00D1FF;
    font-style: italic;
    font-weight: 500;
    text-decoration: underline;
}
.faq-answer p + p { margin-top: 0.7em; }
.faq-answer ul { list-style: disc; padding-left: 1.4em; margin: 0.5em 0; }
.faq-answer li { margin-top: 0.25em; }
.faq-answer p + ul, .faq-answer ul + p { margin-top: 0.6em; }
.faq-answer table { width: 100%; border-collapse: collapse; margin: 0.7em 0; font-size: 0.95em; }
.faq-answer th, .faq-answer td { text-align: left; padding: 8px 12px; border-bottom: 1px solid rgba(107, 123, 132, 0.2); vertical-align: top; }
.faq-answer th { font-weight: 700; background: rgba(107, 123, 132, 0.08); }

/* ================================================================
   GENERIC PAGE HEADER (Predictions / Contact / Auth pages)
   ================================================================ */

.page-head {
    width: 100%;
    max-width: var(--content-w);
    margin: 40px auto 0;
    padding: 20px 0;
}
.page-head h1 {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: var(--fs-h1-large);
    line-height: 0.85;
    color: var(--dirty-ice);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}
.page-head p {
    font-size: clamp(14px, 1.6vw, 22px);
    line-height: 1.1;
    color: rgba(107, 123, 132, 0.6);
    text-transform: uppercase;
    margin-top: 12px;
}

/* ================================================================
   PREDICTIONS PAGE
   ================================================================ */

.predictions-page {
    width: 100%;
    padding: clamp(24px, 3vw, 48px) var(--page-pad) clamp(40px, 4.5vw, 88px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(24px, 2.8vw, 40px);
}

.predictions-filters {
    width: 100%;
    max-width: var(--content-w);
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 12px;
    align-items: center;
}
.predictions-search {
    height: 44px;
    border-radius: var(--radius-pill);
    background: var(--bright-white);
    border: 1px solid rgba(107, 123, 132, 0.4);
    padding: 0 22px;
    color: var(--dirty-ice);
    font-size: 14px;
    outline: none;
}
.predictions-search::placeholder { color: rgba(107, 123, 132, 0.7); }
select.predictions-search {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 200px;
    justify-self: start;
    padding-right: 42px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1 L6 6 L11 1' fill='none' stroke='%236B7B84' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 18px center;
    cursor: pointer;
}
.predictions-daterange {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 44px;
    border-radius: var(--radius-pill);
    background: var(--dirty-ice);
    padding: 0 6px;
    color: var(--bright-white);
    box-shadow: var(--shadow-button);
}
.predictions-daterange label {
    font-size: 13px;
    font-weight: 500;
    padding: 0 14px;
    line-height: 1;
    white-space: nowrap;
    width: 68px;
    box-sizing: border-box;
    text-align: center;
}
.predictions-daterange input[type="date"],
.predictions-daterange input.zoia-datepicker {
    background: var(--bright-white);
    border: none;
    border-radius: var(--radius-pill);
    padding: 0 14px;
    height: 32px;
    width: 128px;
    color: var(--dirty-ice);
    font-size: 13px;
    outline: none;
    font-family: 'Satoshi', sans-serif;
}
.predictions-daterange input.zoia-datepicker::placeholder { color: rgba(107, 123, 132, 0.6); }
.predictions-go {
    height: 44px;
    padding: 0 36px;
    border-radius: var(--radius-pill);
    background: var(--dirty-ice);
    color: var(--bright-white);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: background 0.15s;
}
.predictions-go:hover { background: #586772; }

.predictions-full-table-wrap {
    width: 100%;
    max-width: var(--content-w);
    border-radius: var(--radius-card);
    background: var(--bright-white);
    box-shadow: var(--shadow-soft);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.predictions-full-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    font-family: 'Satoshi', sans-serif;
}
.predictions-full-table thead { background: var(--dirty-ice); }
.predictions-full-table th {
    padding: clamp(12px, 1.3vw, 20px) clamp(8px, 1vw, 16px);
    color: var(--bright-white);
    font-size: var(--fs-body-sm);
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.predictions-full-table th + th { border-left: 1px solid rgba(255, 255, 255, 0.18); }
.predictions-full-table td {
    padding: clamp(12px, 1.3vw, 20px) clamp(8px, 1vw, 16px);
    color: var(--dirty-ice);
    font-size: var(--fs-body-sm);
    text-align: center;
    border-top: 1px solid rgba(107, 123, 132, 0.1);
}
.predictions-full-table td.sep { border-left: none; }
.predictions-full-table tbody tr:hover { background: var(--second-white); }

.predictions-pagination {
    width: 100%;
    max-width: var(--content-w);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(8px, 1vw, 14px);
    margin-top: clamp(14px, 1.8vw, 24px);
    font-family: 'Satoshi', sans-serif;
    color: var(--primary-dark);
}
.predictions-pagination-info {
    font-size: var(--fs-body-sm);
    color: rgba(107, 123, 132, 0.9);
}
.predictions-pagination-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}
.predictions-pagination-list .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border-radius: 8px;
    background: var(--second-white);
    color: var(--primary-dark);
    text-decoration: none;
    font-size: var(--fs-body-sm);
    font-weight: 500;
    border: 1px solid rgba(107, 123, 132, 0.18);
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.predictions-pagination-list .page-link:hover {
    background: var(--dirty-ice);
    color: var(--bright-white);
    border-color: var(--dirty-ice);
}
.predictions-pagination-list .page-link.active {
    background: var(--primary-dark);
    color: var(--bright-white);
    border-color: var(--primary-dark);
    cursor: default;
}
.predictions-pagination-list .page-link.disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}
.predictions-pagination-list .page-ellipsis {
    padding: 0 4px;
    color: rgba(107, 123, 132, 0.7);
}

/* ================================================================
   CONTACT / AUTH (shared underline form style)
   ================================================================ */

.contact-page {
    width: 100%;
    padding: clamp(24px, 3vw, 48px) var(--page-pad) clamp(40px, 4.5vw, 88px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(24px, 3vw, 48px);
}
.contact-body {
    width: 100%;
    max-width: var(--content-w);
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(28px, 3vw, 42px);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 1.8vw, 24px);
    width: 100%;
    max-width: 440px;
}
.contact-form h2 {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: clamp(20px, 1.9vw, 28px);
    color: var(--dirty-ice);
    margin: 0;
    line-height: 0.9;
}
.contact-form .row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(12px, 1.6vw, 20px);
}
.contact-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.contact-field input,
.contact-field textarea {
    width: 100%;
    padding: 6px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(34, 34, 34, 0.85);
    color: var(--primary-dark);
    font-size: 14px;
    line-height: 1.3;
    outline: none;
    transition: border-color 0.15s;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #7F868F;
    font-size: 14px;
}
.contact-field input:focus,
.contact-field textarea:focus {
    border-bottom-color: var(--dirty-ice);
}
.contact-field textarea {
    resize: vertical;
    min-height: 70px;
}

.contact-send {
    width: 100%;
    height: 44px;
    border-radius: 30px;
    background: var(--dirty-ice);
    color: var(--bright-white);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: background 0.15s;
    box-shadow: var(--shadow-button);
}
.contact-send:hover { background: #586772; }


.contact-sidebar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(14px, 1.8vw, 22px);
    width: 100%;
    max-width: 540px;
}
.contact-sidebar h2 {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: clamp(20px, 1.9vw, 28px);
    color: var(--dirty-ice);
    margin: 0;
    line-height: 0.9;
}
.contact-sidebar p {
    font-size: 13px;
    color: var(--dirty-ice);
    line-height: 1.35;
    margin: 0;
    max-width: 540px;
}
.contact-sidebar .contact-socials {
    display: flex;
    gap: 16px;
    align-items: center;
}
.contact-sidebar .contact-socials a {
    width: 24px;
    height: 24px;
    color: var(--dirty-ice);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s, color 0.15s;
}
.contact-sidebar .contact-socials a:hover { color: var(--primary-dark); transform: scale(1.08); }
.contact-sidebar .contact-socials svg { width: 100%; height: 100%; }

.contact-msg {
    font-size: 13px;
    color: var(--dirty-ice);
    margin-top: 6px;
    min-height: 16px;
}

/* All form content inside the card is left-aligned by default.
   The card itself stays wide (var(--content-w)) so the form + sidebar
   sit flush to the left with breathing room on the right, matching
   the Talk to ZOIA layout. */
.contact-body .contact-form,
.contact-body .contact-sidebar,
.contact-body .contact-form h2,
.contact-body .contact-sidebar h2,
.contact-body .contact-sidebar p,
.contact-body .contact-msg { text-align: left; }

/* ================================================================
   FOOTER
   ================================================================ */

.site-footer {
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
    background: var(--dirty-ice);
    box-shadow: var(--shadow-soft);
}
.footer-inner {
    width: 100%;
    max-width: var(--content-w);
    color: var(--second-white);
    padding: clamp(32px, 3.6vw, 60px) clamp(20px, 3vw, 72px) clamp(22px, 2.4vw, 42px);
    position: relative;
}
.footer-top {
    display: flex;
    flex-direction: row;
    gap: clamp(24px, 3vw, 56px);
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(20px, 2.6vw, 42px);
    padding: 0 clamp(12px, 2.4vw, 36px);
}
.footer-logo {
    height: 20px;
    width: auto;
    margin-top: 0;
    flex: 0 0 auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}
.footer-columns {
    flex: 1 1 auto;
    display: flex;
    gap: clamp(32px, 4.4vw, 80px);
    justify-content: center;
    padding-left: 0;
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 13px;
    font-weight: 300;
    line-height: 0.9;
    text-align: center;
}
.footer-col a { color: var(--second-white); transition: color 0.15s; }
.footer-col a:hover { color: var(--bright-white); }

.footer-tagline {
    text-align: center;
    color: var(--bright-white);
    font-family: 'Satoshi', sans-serif;
    font-weight: 300;
    font-size: clamp(18px, 2vw, 28px);
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin: 0 auto clamp(20px, 2.4vw, 36px);
}
.footer-middle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    padding: 0 clamp(12px, 2.4vw, 36px);
}
.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
}
.footer-policy-links {
    display: flex;
    gap: clamp(16px, 2vw, 28px);
    align-items: center;
    justify-content: flex-end;
    font-size: 13px;
    font-weight: 300;
}
.footer-policy-links a { color: var(--second-white); transition: color 0.15s; }
.footer-policy-links a:hover { color: var(--bright-white); }
.footer-social a {
    width: 20px;
    height: 20px;
    color: var(--bright-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s;
}
.footer-social a:hover { transform: scale(1.1); }
.footer-social svg { width: 100%; height: 100%; }

.footer-divider {
    height: 1px;
    background: rgba(244, 249, 255, 0.35);
    margin-bottom: 24px;
}
.footer-legal {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    max-width: 1172px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* ================================================================
   AUTH extras (Remember me / Forgot password rows, alerts)
   ================================================================ */

.auth-alert {
    width: 100%;
    padding: 10px 14px;
    background: rgba(192, 57, 43, 0.08);
    border-left: 3px solid #C0392B;
    color: #B23A2A;
    font-size: 12px;
    border-radius: 8px;
}
.auth-alert--success {
    background: rgba(39, 174, 96, 0.08);
    border-left-color: #27AE60;
    color: #1E8449;
}
.auth-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--dirty-ice);
}
.auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 13px;
    color: var(--dirty-ice);
    padding: 0 2px;
}
.auth-options a { color: var(--dirty-ice); transition: color 0.15s; }
.auth-options a:hover { color: var(--primary-dark); }

/* ================================================================
   RESPONSIVE — ≤ 900 px
   ================================================================ */

@media (max-width: 900px) {
    :root {
        --page-pad: 14px;
        --content-w: 100%;
        --header-h: 56px;
    }

    .site-header { padding: 0 14px; }

    .menu-nav {
        grid-template-columns: 1fr;
        padding: 0 10px;
        gap: 6px 0;
    }
    .menu-nav a { font-size: 24px; }

    .hero {
        min-height: calc(100dvh - var(--header-h));
        padding: clamp(28px, 6vw, 48px) 20px;
        gap: clamp(20px, 5vw, 32px);
    }

    .section { padding: 36px 14px 0; }
    .section:last-of-type { padding-bottom: 36px; }

    /* Services becomes a 1-up slider on mobile, same pattern as creators. */
    .services-wrap { padding: 0; }
    .services-carousel { gap: 6px; }
    .services-arrow { width: 28px; height: 28px; }
    .services-arrow svg { width: 18px; height: 18px; }
    .services-slider { max-width: 100%; }
    .services-track { gap: 10px; }
    .service-card {
        flex: 0 0 100%;
        width: 100%;
        min-width: 0;
        min-height: auto;
        padding: 24px 20px 28px;
        gap: 14px;
    }
    .service-card h3 { font-size: clamp(18px, 5vw, 24px); }
    .service-card .service-body { font-size: 13px; line-height: 1.4; }

    .hero-card { padding: 36px 18px; gap: 22px; min-height: auto; border-radius: 18px; }
    .hero-card--clients { padding: 36px 18px; }

    .creators-wrap { padding: 22px 10px 36px; border-radius: 18px; }
    .creators-carousel { gap: 6px; }
    .creators-arrow { width: 28px; height: 28px; }
    .creators-arrow svg { width: 18px; height: 18px; }
    .creators-slider { flex: 1 1 auto; min-width: 0; max-width: 100%; }
    .creators-track { gap: 10px; }
    .creator-card {
        flex: 0 0 var(--card-w, 100%);
        width: var(--card-w, 100%);
        min-width: 0;
        height: auto;
        min-height: 0;
        padding: 24px 20px 28px;
        gap: 16px;
    }
    .creator-card .creator-bio { font-size: 13px; line-height: 1.4; }
    .creator-photo-wrap { width: 170px; height: 170px; }

    .faq-page { padding: 18px 14px 36px; gap: 24px; }
    .faq-card { border-radius: 16px; }

    .predictions-card { max-width: 100%; }
    .predictions-table th {
        padding: 10px 3px;
        font-size: 10px;
        letter-spacing: 0.02em;
    }
    .predictions-table td {
        padding: 10px 3px;
        font-size: 11px;
    }
    .predictions-table .symbol-badge {
        width: 56px;
        height: 22px;
        font-size: 10px;
        padding: 0 2px;
    }
    .predictions-cta { padding: 12px 0 14px; }
    .predictions-access-btn { padding: 10px 14px; font-size: 12px; }

    .predictions-page { padding: 18px 14px 36px; gap: 18px; }
    .predictions-filters {
        grid-template-columns: 1fr;
        gap: 10px;
        justify-items: start;
    }
    .predictions-filters > select.predictions-search {
        width: 200px;
        justify-self: start;
    }
    .predictions-daterange {
        width: auto;
        height: 44px;
        padding: 0 6px;
    }
    .predictions-daterange label { font-size: 13px; padding: 0 14px; width: 68px; }
    .predictions-daterange input.zoia-datepicker {
        width: 128px;
        flex: 0 0 auto;
        font-size: 16px;
    }
    .predictions-go {
        width: auto;
        padding: 0 36px;
    }

    .contact-page { padding: 18px 14px 36px; gap: 24px; }
    .contact-body { grid-template-columns: 1fr; gap: 28px; }
    .contact-form .row2 { grid-template-columns: 1fr; gap: 12px; }

    .site-footer { padding: 0; }
    .footer-inner { padding: 36px 20px 24px; }
    .footer-top { flex-direction: column; gap: 22px; margin-bottom: 24px; }
    .footer-logo { margin-top: 0; }
    .footer-columns { gap: 32px; flex-wrap: wrap; padding-left: 0; }
    .footer-col { gap: 10px; font-size: 13px; }
    .footer-middle { flex-direction: column-reverse; align-items: center; gap: 36px; }
    .footer-social { gap: 10px; margin-bottom: 20px; }
    .footer-social a { width: 20px; height: 20px; }
    .footer-legal { font-size: 11px; }
}
