:root {
    --cream: #000000;
    --cream-dark: #1a1a1a;
    --ink: #1a1a1a;
    --ink-soft: #3d3d3d;
    --muted: #6b6257;
    --green: #4b00ff;
    --green-hover: #3900c4;
    --yellow: #ccff00;
    --yellow-hover: #b7e600;
    --magenta: #ec008c;
    --violet: #4b00ff;
    --orange: #ff6a00;
    --card: #000000;
    --border: #000000;
    --radius: 18px;
    --radius-lg: 28px;
}

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

html, body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Inter', -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    background-image:
        repeating-linear-gradient(90deg,
            transparent 0,
            transparent 38px,
            rgba(128, 128, 128, 0.25) 38px,
            rgba(128, 128, 128, 0.25) 39px),
        repeating-linear-gradient(0deg,
            transparent 0,
            transparent 38px,
            rgba(128, 128, 128, 0.25) 38px,
            rgba(128, 128, 128, 0.25) 39px);
}

.page {
    max-width: 1240px;
    margin: 0 auto;
    padding: 24px 32px 48px;
}

/* ---- Nav ---- */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    background: var(--cream);
    border-radius: 999px;
    border: 1px solid var(--border);
    margin-bottom: 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: 'Bruno Ace', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    margin-left: 10px;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand-mark-image {
    width: 126px;
    height: auto;
    flex: 0 0 auto;
    display: block;
}

.brand-text {
    display: inline-block;
    line-height: 1.05;
}

.brand .brand-name {
    font-size: 21px;
}

/* Desktop layout only (>1024px), at narrow widths where the brand wraps:
   force "Evans" onto its own line, left-aligned under "Timothy". */
@media (min-width: 1025px) and (max-width: 1400px) {
    .brand {
        line-height: 1.1;
    }
    .brand .brand-name {
        display: inline-block;
        vertical-align: middle;
        text-align: left;
    }
    .brand .brand-last {
        display: block;
        font-size: inherit;
        padding-right: 0;
    }
}

.nav-links {
    display: flex;
    gap: 32px;
    margin-right: 24px;
}

.nav-links a {
    position: relative;
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.22s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    filter: brightness(1.25);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
    transform: scaleX(1);
}

.nav-links a:nth-child(1) { color: #fff; }
.nav-links a:nth-child(2) { color: #2eb8b8; }
.nav-links a:nth-child(3) { color: #a0005f; }
.nav-links a:nth-child(4) { color: #8eb300; }

.nav-status {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #fff;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 0;
    padding: 6px 24px 12px;
}

.nav-status time {
    text-align: right;
}

.cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green);
    color: #fff;
    text-decoration: none;
    padding: 5px 10px 5px 20px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.2s;
    white-space: nowrap;
}
.cta-pill > span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.cta-pill:hover { background: var(--green-hover); }
.cta-pill .arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
}
.cta-pill .contactme {
    font-size: 24px;
}

body.modal-open {
    overflow: hidden;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
}

.modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.62);
    cursor: pointer;
}

.modal-panel {
    position: relative;
    z-index: 1;
    width: min(560px, 100%);
    min-height: 360px;
    max-height: calc(100vh - 48px);
    overflow: auto;
    padding: 4px;
    background: var(--yellow);
    color: #fff;
    clip-path: polygon(28px 0, calc(100% - 28px) 0, 100% 28px, 100% calc(100% - 28px), calc(100% - 28px) 100%, 28px 100%, 0 calc(100% - 28px), 0 28px);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.4);
}

.modal-panel:focus {
    outline: 2px solid var(--yellow);
    outline-offset: 4px;
}

.modal-frame {
    position: relative;
    min-height: 352px;
    padding: 34px;
    background: #000;
    clip-path: polygon(25px 0, calc(100% - 25px) 0, 100% 25px, 100% calc(100% - 25px), calc(100% - 25px) 100%, 25px 100%, 0 calc(100% - 25px), 0 25px);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 18px;
    z-index: 2;
    border: 0;
    background: transparent;
    color: var(--yellow);
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
}

.modal-step {
    display: none;
}

.modal-step.is-visible {
    display: grid;
    gap: 14px;
}

.modal h2 {
    margin: 0 0 18px;
    text-align: center;
    color: #fff;
    font-size: 34px;
    line-height: 1.1;
}

.modal a,
.modal-form button,
.modal-choice button {
    display: block;
    width: 100%;
    padding: 15px 18px;
    border: 2px solid var(--yellow);
    border-radius: 8px;
    background: var(--yellow);
    color: #000;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.modal-choice button,
.modal-choice .modal-secondary-link,
.modal-form button:first-child {
    background: transparent;
    color: var(--yellow);
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.modal input,
.modal select,
.modal textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: #000;
    color: #fff;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 15px;
    padding: 12px 13px;
    outline: none;
}

.modal textarea {
    min-height: 132px;
    resize: vertical;
}

.modal input:focus,
.modal select:focus,
.modal textarea:focus {
    border-color: var(--yellow);
}

/* ---- About banner (sits above the hero) ---- */
.about-intro-banner {
    margin-top: 8px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #050505;
    border: 1px solid var(--border);
    overflow: hidden;
}

.about-intro-banner img {
    display: block;
    width: 100%;
    height: auto;
}

.about-banner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: stretch;
    margin-top: 8px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #b3b3b8;
    border: 1px solid var(--border);
    overflow: hidden;
    max-height: 520px;
}

.about-left {
    overflow: hidden;
}

.about-image-frame {
    width: 100%;
    height: 100%;
}

.about-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-right {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-right .lede { line-height: 1.8; }

.glyph-hero-section,
.glyph-discover-section {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.glyph-hero-section {
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.glyph-hero-shell {
    max-width: 1320px;
    margin: 0 auto;
    padding: 68px 32px;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 28px;
    align-items: center;
}

.glyph-kicker {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(204, 255, 0, 0.18);
    color: #d9d9dd;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.glyph-hero-title,
.glyph-discover-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(44px, 7vw, 86px);
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.glyph-hero-text,
.glyph-discover-copy,
.glyph-feature-card p {
    font-size: 16px;
    line-height: 1.75;
    color: #b7b1a3;
}

.glyph-hero-text {
    max-width: 34rem;
    margin-top: 22px;
}

.glyph-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.glyph-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.glyph-pill:hover {
    transform: translateY(-1px);
}

.glyph-pill-primary {
    background: var(--yellow);
    color: #111111;
}

.glyph-pill-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.glyph-phone-cluster {
    width: 100%;
}

.glyph-hero-image-frame {
    margin: 0;
    padding: 12px;
    border-radius: 36px;
    overflow: hidden;
    background: #171721;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.glyph-hero-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 28px;
}

.glyph-phone {
    width: 100%;
    max-width: 760px;
    padding: 9px;
    border-radius: 34px;
    background: #171721;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glyph-phone-left,
.glyph-phone-right {
    transform: scale(0.9);
    opacity: 0.9;
}

.glyph-phone-left {
    rotate: -9deg;
}

.glyph-phone-right {
    rotate: 8deg;
    max-width: 680px;
}

.glyph-phone-main {
    max-width: 840px;
}

.glyph-phone-screen {
    min-height: 380px;
    border-radius: 28px;
    padding: 22px;
    background: #111119;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.glyph-phone-screen-onboard {
    display: flex;
    flex-direction: column;
    background: #14141e;
}

.glyph-phone-screen-wallet {
    background: #11111a;
}

.glyph-phone-screen-discover {
    background: #14141d;
}

.glyph-phone-top,
.glyph-wallet-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.glyph-onboard-visual {
    position: relative;
    flex: 1;
    min-height: 132px;
    margin: 20px 0 14px;
}

.glyph-onboard-card,
.glyph-onboard-cube {
    position: absolute;
    border-radius: 22px;
}

.glyph-onboard-card {
    inset: 0 14% auto;
    height: 128px;
    background: rgba(75, 0, 255, 0.22);
    transform: rotate(-12deg);
}

.glyph-onboard-cube {
    width: 84px;
    height: 84px;
    right: 14%;
    bottom: 2px;
    background: var(--yellow);
    transform: rotate(18deg);
}

.glyph-phone-heading,
.glyph-discover-banner strong {
    font-family: 'Fraunces', Georgia, serif;
    color: #ffffff;
}

.glyph-phone-heading {
    font-size: 28px;
    line-height: 1.12;
    margin-bottom: 12px;
}

.glyph-phone-stack {
    display: grid;
    gap: 12px;
}

.glyph-phone-button {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--yellow);
    color: #111111;
    font-size: 14px;
    font-weight: 700;
}

.glyph-phone-button-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.glyph-wallet-card {
    margin-top: 14px;
    padding: 16px;
    border-radius: 22px;
    background: #1a1a24;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    gap: 6px;
}

.glyph-wallet-card strong,
.glyph-discover-metrics strong {
    color: #ffffff;
    font-size: 28px;
    line-height: 1.05;
}

.glyph-wallet-label,
.glyph-wallet-sub,
.glyph-discover-banner span,
.glyph-discover-metrics span {
    color: #b7b1a3;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.glyph-wallet-assets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.glyph-wallet-asset {
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    font-weight: 700;
}

.glyph-wallet-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    color: #d9d9dd;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.glyph-wallet-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.glyph-wallet-nav span {
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.5);
}

.glyph-wallet-nav span.active {
    color: #111111;
    background: var(--yellow);
}

.glyph-discover-banner {
    margin-top: 14px;
    padding: 16px;
    border-radius: 22px;
    background: #201b31;
    display: grid;
    gap: 10px;
}

.glyph-discover-banner strong {
    font-size: 30px;
    line-height: 1.02;
}

.glyph-discover-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.glyph-discover-metrics > div {
    min-width: 0;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    display: grid;
    gap: 6px;
    overflow: hidden;
}

.glyph-discover-metrics em {
    color: var(--yellow);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
}

.glyph-discover-metrics em.down {
    color: #ff8dbd;
}

.glyph-discover-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.glyph-discover-tags span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
}

.glyph-discover-lines {
    margin-top: 12px;
    display: grid;
    gap: 10px;
}

.glyph-discover-lines span {
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--violet), var(--yellow));
}

.glyph-discover-lines span:last-child {
    width: 82%;
}

.glyph-discover-section {
    background: #080808;
    padding: 72px 24px 82px;
}

.glyph-discover-inner {
    max-width: 1320px;
    margin: 0 auto;
}

.glyph-discover-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 34px;
}

.glyph-discover-copy {
    margin: 18px auto 0;
    max-width: 42rem;
}

.glyph-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.glyph-feature-showcase {
    width: min(1100px, 100%);
    margin: 42px auto 0;
}

.glyph-feature-showcase-image {
    display: block;
    width: 100%;
    height: auto;
}

.glyph-feature-card {
    padding: 28px 24px;
    border-radius: 24px;
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glyph-feature-card-highlight {
    background: #121212;
}

.glyph-feature-icon {
    width: 104px;
    height: 104px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(204, 255, 0, 0.12);
    color: var(--yellow);
    font-size: 22px;
    margin-bottom: 18px;
}

.glyph-feature-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.glyph-feature-card h3 {
    color: #ffffff;
    font-size: 22px;
    line-height: 1.15;
    margin-bottom: 12px;
}

.glyph-feature-card span {
    display: inline-block;
    margin-top: 12px;
    color: var(--yellow);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.faq-section {
    margin-top: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 72px 24px;
    background: #b3b3b8;
    color: #111111;
}

.faq-inner {
    max-width: 760px;
    margin: 0 auto;
}

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

.faq-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 52px;
    line-height: 1.05;
    font-weight: 500;
    margin-bottom: 18px;
}

.faq-filters {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 8px;
    border-radius: 14px;
    background: #e8e8ea;
}

.faq-filter {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    cursor: pointer;
    font: inherit;
}

.faq-filter-active {
    background: var(--violet);
    color: #fff;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid #d9d9df;
    padding: 0;
}

.faq-item summary {
    list-style: none;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 0 22px;
    cursor: pointer;
    font-size: 19px;
    line-height: 1.45;
    font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    flex-shrink: 0;
    font-size: 34px;
    line-height: 1;
    font-weight: 400;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 48px 24px 0;
    color: #2c2c2c;
    font-size: 17px;
    line-height: 1.75;
}

@media (max-width: 1024px) {
    .nav {
        flex-wrap: wrap;
        gap: 16px;
        border-radius: 28px;
    }
    .brand {
        margin-left: 0;
    }
    .nav-links {
        order: 3;
        width: 100%;
        flex-wrap: wrap;
        gap: 14px 20px;
        margin-right: 0;
    }
    .cta-pill {
        margin-left: auto;
    }
    .nav-status {
        padding: 6px 16px 12px;
    }
    .about-banner { grid-template-columns: 1fr; max-height: none; }
    .about-left { min-height: 320px; }
    .about-right { padding: 32px; }
    .glyph-hero-shell { grid-template-columns: 1fr; padding: 54px 24px; }
    .glyph-hero-image-frame { padding: 10px; }
    .glyph-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ---- Hero ---- */
.hero {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 0;
    margin-top: 44px;
    align-items: stretch;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: var(--card);
    border: 1px solid var(--border);
    overflow: hidden;
}

.hero-left {
    background: var(--card);
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--cream-dark);
    border: 1px solid var(--border);
    padding: 6px 14px 6px 8px;
    border-radius: 999px;
    width: fit-content;
    margin-bottom: 28px;
}
.badge-dots { display: inline-flex; }
.badge-dots span {
    width: 22px; height: 22px; border-radius: 50%;
    border: 2px solid var(--cream-dark);
    margin-left: -6px;
    background: linear-gradient(135deg, #c4a77b, #8a6a3f);
}
.badge-dots span:first-child { margin-left: 0; }
.badge-dots span:nth-child(2) { background: linear-gradient(135deg, #b38c5f, #6d4b21); }
.badge-dots span:nth-child(3) { background: linear-gradient(135deg, #d6b683, #a17944); }
.badge-text {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.headline {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    font-size: 64px;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: #fff;
}
.headline em {
    font-style: italic;
    font-weight: 500;
    color: #c9c0a8;
}

.lede {
    font-size: 16px;
    color: var(--darkreader-text-000000, #e8e6e3);
    margin-bottom: 36px;
    max-width: 460px;
}

.cta-yellow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--yellow);
    color: var(--ink);
    text-decoration: none;
    padding: 10px 10px 10px 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    width: fit-content;
    transition: background 0.2s, transform 0.2s;
}
.cta-yellow:hover { background: var(--yellow-hover); transform: translateY(-1px); }
.arrow-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--yellow);
}

/* ---- Hero media ---- */
.hero-right { display: flex; }

.media-frame {
    position: relative;
    width: 100%;
    min-height: 520px;
    overflow: hidden;
    background: #111;
}
.media-frame video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}
.media-frame .video-desktop { display: block; }

/* ---- Partners ---- */
.partners {
    margin-top: 44px;
    padding: 24px 32px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.partners-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #b5ac97;
}
.partners-list {
    list-style: none;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    flex: 1;
    justify-content: space-around;
}
.partners-list li {
    display: flex;
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 168px;
    padding: 12px 16px;
    border-radius: 999px;
    background: #000;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Satoshi', 'Inter', Arial, sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.partner-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.partner-name {
    line-height: 1;
}

/* ---- Manifesto bridge ---- */
.manifesto-bridge {
    margin-top: 44px;
}

.manifesto-bridge-shell {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 28px;
    padding: 32px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(135deg, rgba(232, 242, 63, 0.04), transparent 45%),
        rgba(255, 255, 255, 0.02);
}

.manifesto-bridge-main .eyebrow {
    margin-bottom: 16px;
}

.manifesto-bridge-title {
    font-family: 'Fraunces', Georgia, serif;
    color: #fff;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.03;
    letter-spacing: -0.03em;
    font-weight: 600;
}

.manifesto-bridge-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-content: flex-start;
    gap: 18px;
}

.manifesto-bridge-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.manifesto-bridge-tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(232, 242, 63, 0.22);
    background: rgba(232, 242, 63, 0.08);
    color: #e8f23f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.manifesto-keypad-shell {
    width: 100%;
    padding: 18px;
    border-radius: 26px;
    border: 1px solid rgba(75, 0, 255, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 240, 255, 0.9));
    box-shadow: 0 22px 40px rgba(75, 0, 255, 0.08);
    overflow: hidden;
}

.manifesto-keypad {
    position: relative;
    width: min(100%, 320px);
    margin: 0 auto;
    aspect-ratio: 400 / 310;
    transform-style: preserve-3d;
    -webkit-tap-highlight-color: transparent;
}

.manifesto-keypad img {
    display: block;
    width: 100%;
    height: auto;
}

.manifesto-keypad__base,
.manifesto-key {
    transition: translate 0.18s ease-out;
}

.manifesto-keypad__base {
    position: absolute;
    inset: auto 0 0;
    width: 100%;
}

.manifesto-key {
    --travel: 22;
    --hue: 248;
    --saturate: 1;
    --brightness: 1;
    position: absolute;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    transform-style: preserve-3d;
}

.manifesto-key[data-keypad-trigger='o'] {
    --hue: 114;
    --saturate: 1.4;
    --brightness: 1.2;
}

.manifesto-key[data-keypad-trigger='g'] {
    --hue: 0;
    --saturate: 0;
    --brightness: 1.4;
}

.manifesto-key[data-keypad-trigger='Enter'] {
    --travel: 18;
    --hue: 0;
    --saturate: 0;
    --brightness: 0.45;
}

.manifesto-key:focus-visible {
    outline: 2px solid rgba(75, 0, 255, 0.4);
    outline-offset: 6px;
}

.manifesto-key__mask,
.manifesto-key__content {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.manifesto-key__content {
    position: relative;
    transition: translate 0.12s ease-out;
    container-type: inline-size;
}

.manifesto-key[data-pressed='true'] .manifesto-key__content,
.manifesto-key:active .manifesto-key__content {
    translate: 0 calc(var(--travel) * 1%);
}

.manifesto-key__text {
    position: absolute;
    top: 5%;
    left: 0;
    z-index: 2;
    width: 86%;
    height: 46%;
    padding: 1ch;
    color: hsl(0 0% 94%);
    font-size: 12cqi;
    text-align: left;
    translate: 8% 10%;
    transform: rotateX(36deg) rotateY(45deg) rotateX(-90deg);
    pointer-events: none;
}

.manifesto-keypad__single .manifesto-key__text {
    width: 52%;
    height: 62%;
    font-size: 18cqi;
    translate: 45% -16%;
}

.manifesto-keypad__single {
    width: 40.5%;
    left: 54%;
    bottom: 36%;
    height: 46%;
    clip-path: polygon(0 0, 54% 0, 89% 24%, 100% 70%, 54% 100%, 46% 100%, 0 69%, 12% 23%, 47% 0%);
    mask: url(https://assets.codepen.io/605876/keypad-single.png?format=auto&quality=86) 50% 50% / 100% 100%;
}

.manifesto-keypad__single--left {
    left: 29.3%;
    bottom: 54.2%;
}

.manifesto-keypad__single img {
    position: absolute;
    top: 0;
    left: 50%;
    width: 96%;
    translate: -50% 1%;
}

.manifesto-keypad__double {
    width: 64%;
    height: 65%;
    left: 6%;
    bottom: 17.85%;
    clip-path: polygon(34% 0, 93% 44%, 101% 78%, 71% 100%, 66% 100%, 0 52%, 0 44%, 7% 17%, 30% 0);
    mask: url(https://assets.codepen.io/605876/keypad-double.png?format=auto&quality=86) 50% 50% / 100% 100%;
}

.manifesto-keypad__double img {
    position: absolute;
    top: 0;
    left: 50%;
    width: 99%;
    translate: -50% 1%;
}

.manifesto-key img {
    filter: hue-rotate(calc(var(--hue) * 1deg)) saturate(var(--saturate)) brightness(var(--brightness));
}

/* ---- Marqee Tracks ---- */
.tracks {
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.track {
    display: flex;
    width: 100%;
    overflow: hidden;
    padding: 12px 0;
    position: relative;
}
.track:nth-child(2) {
    border-top: 1px solid var(--line);
    background: var(--cream-faint);
}

/* mask edges */
.track::before, .track::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.track::before {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}
.track::after {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}

.track-inner {
    display: flex;
    gap: 0;
    white-space: nowrap;
    will-change: transform;
}

/* Track 2 → moves RIGHT (opposite) */
.track-inner-b {
    animation: scrollRight 30s linear infinite;
}
@keyframes scrollLeft {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
    }
@keyframes scrollRight {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

/* ── MARQUEE ITEMS ── */
.item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(22px, 3.5vw, 36px);
    letter-spacing: 0.08em;
    color: var(--cream);
}
.item-sep {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--amber);
    flex-shrink: 0;
    opacity: 0.7;
}

/* Alternating word styles */
.item:nth-child(odd)  .word { color: gold }
.item:nth-child(even) .word {
    color: transparent;
    -webkit-text-stroke: 1px rgba(240,235,224,0.4);
}

/* Track 2 different color accent */
.track:nth-child(2) .item-sep { background: var(--teal); }
.track:nth-child(2) .item { color: rgba(240,235,224,0.7); }

/* Direction arrows on items */
.item-arrow {
    font-size: 0.7em;
    opacity: 0.7;
}

/* ---- Why section ---- */
.why {
    margin-top: 44px;
    text-align: center;
}
.eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #b5ac97;
    margin-bottom: 18px;
}
.section-headline {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 48px;
    color: #fff;
}
.section-headline em {
    font-style: italic;
    font-weight: 500;
    color: #c9c0a8;
}

.proof-carousel {
    position: relative;
    margin-bottom: 34px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

.proof-carousel::before,
.proof-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 96px;
    z-index: 2;
    pointer-events: none;
}

.proof-carousel::before {
    left: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.92), transparent);
}

.proof-carousel::after {
    right: 0;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.92), transparent);
}

.proof-carousel-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 28px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(232, 242, 63, 0.55) rgba(255, 255, 255, 0.05);
}

.proof-carousel-track::-webkit-scrollbar {
    height: 12px;
}

.proof-carousel-track::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.proof-carousel-track::-webkit-scrollbar-thumb {
    background: rgba(232, 242, 63, 0.55);
    border-radius: 999px;
}

.proof-card-live {
    width: min(22rem, 72vw);
    min-height: 260px;
    padding: 26px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
        #060606;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    justify-content: space-between;
    scroll-snap-align: start;
    text-align: left;
}

.proof-card-live-media {
    margin: -6px -6px 18px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    aspect-ratio: 5 / 4;
}

.proof-card-live-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.proof-brand-live {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 34px;
    color: #fff;
    line-height: 1;
}

.proof-card-live p {
    color: #c9c0a8;
    line-height: 1.7;
    font-size: 14px;
    margin: 18px 0 20px;
}

.proof-pill-live {
    display: inline-flex;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(232, 242, 63, 0.1);
    border: 1px solid rgba(232, 242, 63, 0.24);
    color: #e8f23f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* ---- Palette refresh ---- */
.nav-links a:nth-child(1) { color: #fff; }
.nav-links a:nth-child(2) { color: #2eb8b8; }
.nav-links a:nth-child(3) { color: #a0005f; }
.nav-links a:nth-child(4) { color: #8eb300; }

.badge-dots span {
    background: linear-gradient(135deg, var(--yellow), #8eb300);
}

.badge-dots span:nth-child(2) {
    background: linear-gradient(135deg, var(--magenta), #a0005f);
}

.badge-dots span:nth-child(3) {
    background: linear-gradient(135deg, var(--violet), #2a008f);
}

.headline em {
    color: #d1c5ff;
}

.section-headline em {
    color: #ffb27d;
}

.partners-list li {
    color: #f3f0ff;
}

.manifesto-bridge-shell {
    background: #ffffff;
    border-color: rgba(255, 255, 255, 0.9);
}

.manifesto-bridge-title {
    color: #111111;
}

.manifesto-bridge-main .eyebrow {
    color: #6b6257;
}

.manifesto-bridge-tag {
    border: 1px solid rgba(75, 0, 255, 0.22);
    background: rgba(75, 0, 255, 0.08);
    color: #4b00ff;
}

.item:nth-child(odd) .word {
    color: var(--yellow);
}

.item:nth-child(even) .word {
    -webkit-text-stroke: 1px rgba(236, 0, 140, 0.65);
}

.track:nth-child(2) .item-sep {
    background: var(--orange);
}

.track:nth-child(2) .item {
    color: rgba(188, 168, 255, 0.85);
}

.proof-carousel-track {
    scrollbar-color: rgba(75, 0, 255, 0.6) rgba(255, 255, 255, 0.05);
}

.proof-carousel-track::-webkit-scrollbar-thumb {
    background: rgba(75, 0, 255, 0.6);
}

.proof-pill-live {
    background: rgba(255, 106, 0, 0.12);
    border: 1px solid rgba(255, 106, 0, 0.32);
    color: #ffb27d;
}

/* ---- Pricing ---- */
.pricing-section {
    margin-top: 56px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 56px 40px;
    background: #ffffff;
    color: #111111;
}

.pricing-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 34px;
}

.pricing-eyebrow {
    color: #6b6257;
}

.pricing-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 52px;
    line-height: 1.02;
    margin-bottom: 14px;
}

.pricing-intro {
    font-size: 18px;
    line-height: 1.6;
    color: #2a2a2a;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 1260px;
    margin: 0 auto;
}

.pricing-card {
    border-radius: 22px;
    padding: 34px 28px 18px;
}

.pricing-card-image {
    padding: 0;
    overflow: hidden;
    background: #e8dcc2;
    min-height: 100%;
}

.pricing-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
}

.pricing-card h3 {
    font-size: 44px;
    line-height: 1;
    margin-bottom: 18px;
    font-weight: 500;
}

.pricing-card-light {
    background: #f4f4f6;
    color: #111111;
    display: flex;
    flex-direction: column;
}

.pricing-card-dark {
    background: #050505;
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

.pricing-copy {
    font-size: 15px;
    line-height: 1.65;
    max-width: 34ch;
    margin-bottom: 34px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 18px;
}

.pricing-amount {
    font-size: 38px;
    line-height: 1;
    font-weight: 500;
}

.pricing-meta {
    font-size: 15px;
    line-height: 1.4;
}

.pricing-divider {
    height: 1px;
    background: rgba(17, 17, 17, 0.14);
    margin-bottom: 20px;
}

.pricing-card-dark .pricing-divider {
    background: rgba(255, 255, 255, 0.2);
}

.pricing-plus {
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.5;
}

.pricing-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.pricing-list li {
    position: relative;
    padding-left: 22px;
    font-size: 15px;
    line-height: 1.55;
}

.pricing-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
}

.pricing-button {
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    border-radius: 14px;
    padding: 16px 18px;
    background: var(--violet);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: background 0.2s ease, transform 0.2s ease;
}

.pricing-button:hover {
    background: var(--green-hover);
    transform: translateY(-1px);
}

.pricing-button-dark {
    background: var(--violet);
}

.pricing-note {
    margin-top: 24px;
    text-align: center;
    font-size: 15px;
    color: #2a2a2a;
}

/* ---- Footer ---- */
.site-footer {
    margin-top: 56px;
    padding: 28px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-top {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.site-footer-brand-row {
    display: flex;
    align-items: center;
}

.site-footer-brand {
    color: #fff;
    text-decoration: none;
    font-family: 'Bruno Ace', sans-serif;
    font-size: 22px;
    letter-spacing: 0.08em;
}

.site-footer-brand .brand-mark-image {
    width: 150px;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.7fr 0.7fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.footer-subscribe {
    background: #ffffff;
    color: #111;
    border-radius: 22px;
    padding: 28px;
}

.footer-subscribe h2 {
    font-size: 22px;
    line-height: 1.1;
    margin-bottom: 14px;
}

.footer-subscribe p {
    font-size: 15px;
    line-height: 1.65;
    color: #2a2a2a;
    margin-bottom: 22px;
}

.footer-subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-subscribe-form input {
    width: 100%;
    padding: 16px 18px;
    border-radius: 12px;
    border: 1px solid #d2d2d2;
    background: #fff;
    color: #111;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

.footer-subscribe-form button {
    border: none;
    border-radius: 14px;
    background: var(--violet);
    color: #fff;
    padding: 16px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.footer-subscribe-form button:hover {
    background: var(--green-hover);
    transform: translateY(-1px);
}

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

.footer-column h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-column a {
    color: #d9d9d9;
    text-decoration: none;
    font-size: 17px;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--yellow);
}

.site-footer-bottom {
    margin-top: 34px;
    padding: 22px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-footer-socials {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer-socials a:hover {
    color: var(--yellow);
    transform: translateY(-1px);
}

.site-footer-copy {
    font-size: 13px;
    color: var(--muted);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .headline { font-size: 48px; }
    .section-headline { font-size: 38px; }
    .hero { grid-template-columns: 1fr; }
    .hero-left { padding: 40px; }
    .manifesto-bridge-shell { grid-template-columns: 1fr; }
    .media-frame { min-height: 380px; }
    .media-frame .video-desktop { display: none; }
    .media-frame .video-tablet { display: block; }
}

@media (max-width: 768px) {
    .page { padding: 16px 16px 40px; }
    .nav {
        padding: 14px 16px 16px;
        align-items: flex-start;
    }
    .nav-links {
        display: flex;
    }
    .nav-links a {
        font-size: 13px;
    }
    .nav-status {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
        font-size: 18px;
    }
    .nav-status time {
        text-align: left;
    }
    .brand { font-size: 13px; }
    .brand-lockup { gap: 10px; }
    .brand-mark-image { width: 102px; }
    .brand .brand-name { font-size: 15px; }
    .cta-pill {
        padding: 8px 8px 8px 16px;
        font-size: 13px;
        margin-left: 0;
    }
    .cta-pill .arrow { width: 24px; height: 24px; }
    .field-row {
        grid-template-columns: 1fr;
    }
    .modal-panel {
        padding: 4px;
    }
    .modal-frame {
        padding: 30px 18px;
    }

    .hero-left { padding: 28px; }
    .headline { font-size: 36px; }
    .lede { font-size: 15px; }
    .section-headline { font-size: 28px; }
    .manifesto-bridge-shell { padding: 24px; gap: 18px; }
    .manifesto-bridge-title { font-size: 32px; }
    .manifesto-keypad-shell { padding: 14px; }
    .faq-section { padding: 48px 20px; }
    .faq-title { font-size: 36px; }
    .faq-filters { gap: 8px; }
    .faq-filter { padding: 9px 12px; font-size: 13px; }
    .faq-item summary { font-size: 18px; padding: 22px 0 18px; }
    .faq-item p { padding: 0 24px 20px 0; font-size: 15px; }
    .glyph-discover-section { padding: 54px 20px 62px; }
    .glyph-hero-title,
    .glyph-discover-title { font-size: 42px; }
    .glyph-hero-image-frame {
        padding: 10px;
        border-radius: 28px;
    }
    .glyph-hero-image {
        border-radius: 22px;
    }
    .glyph-feature-grid { grid-template-columns: 1fr; }
    .glyph-feature-showcase {
        margin-top: 28px;
    }

    .proof-carousel::before,
    .proof-carousel::after { width: 40px; }

    .proof-carousel-track { padding: 18px; gap: 16px; }

    .proof-card-live { min-height: 220px; }

    .pricing-section { padding: 36px 20px; }
    .pricing-title { font-size: 38px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card h3 { font-size: 34px; }

    .media-frame { min-height: 280px; }
    .media-frame .video-tablet { display: none; }
    .media-frame .video-mobile { display: block; }

    .partners { flex-direction: column; align-items: flex-start; gap: 14px; }
    .partners-list { gap: 22px; }

    .site-footer-grid { grid-template-columns: 1fr; gap: 26px; }
    .site-footer-bottom { flex-direction: column; align-items: flex-start; }
    .site-footer-brand .brand-mark-image { width: 120px; }
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
    }
}
