:root {
    --paper: #f2eadc;
    --paper-light: #fff9ef;
    --ink: #121012;
    --purple: #6f2cff;
    --purple-dark: #43129b;
    --violet: #a45cff;
    --lime: #d9ff43;
    --coral: #ff6358;
    --yellow: #ffc83d;
    --blue: #376dff;
    --teal: #17bba7;
    --body-font: "Outfit", Arial, sans-serif;
    --display-font: "Space Grotesk", "Arial Black", Arial, sans-serif;
    --shell: 1480px;
}

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

html {
    scroll-behavior: smooth;
    background: var(--paper);
}

body {
    margin: 0;
    color: var(--ink);
    background-color: var(--paper);
    background-image:
        radial-gradient(rgba(18, 16, 18, 0.045) 0.7px, transparent 0.8px),
        radial-gradient(rgba(255, 255, 255, 0.55) 0.8px, transparent 0.9px);
    background-position: 0 0, 7px 9px;
    background-size: 17px 17px, 19px 19px;
    font-family: var(--body-font);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

img {
    max-width: 100%;
}

[hidden] {
    display: none !important;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100000;
    padding: 12px 16px;
    color: var(--paper-light);
    background: var(--ink);
    border: 2px solid var(--lime);
    transform: translateY(-160%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 4px;
}

.landing-page {
    min-height: 100vh;
    overflow: clip;
    background-color: var(--paper);
    background:
        linear-gradient(90deg, transparent 0 97%, color-mix(in srgb, var(--purple) 8%, transparent) 97% 100%);
}

.section-shell {
    width: min(calc(100% - 64px), var(--shell));
    margin-inline: auto;
}

.topbar {
    position: relative;
    z-index: 100;
    min-height: 88px;
    padding: 0 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    border-bottom: 2px solid var(--ink);
    background: var(--paper);
    background: color-mix(in srgb, var(--paper) 94%, transparent);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    font-family: var(--display-font);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.brand-logo {
    width: 44px;
    height: 44px;
    display: block;
    object-fit: contain;
    border: 2px solid var(--ink);
    background: var(--paper-light);
}

.brand-mark {
    position: relative;
    width: 40px;
    height: 51px;
    display: grid;
    place-items: center;
    color: var(--purple);
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 46px;
    line-height: 1;
    letter-spacing: -0.14em;
}

.brand-mark::after,
.brand-spectrum {
    content: "";
    position: absolute;
    left: 3px;
    right: -2px;
    bottom: -2px;
    height: 5px;
    background: linear-gradient(
        90deg,
        var(--purple) 0 49%,
        var(--coral) 49% 62%,
        var(--yellow) 62% 74%,
        var(--teal) 74% 86%,
        var(--blue) 86% 100%
    );
}

.desktop-nav,
.auth-nav,
.nav-cluster {
    display: flex;
    align-items: center;
}

.nav-cluster {
    margin-left: auto;
    gap: 34px;
}

.desktop-nav {
    gap: 26px;
}

.desktop-nav a,
.login-link {
    padding: 10px 0 7px;
    border-bottom: 2px solid transparent;
    font-size: 13px;
    font-weight: 800;
}

.desktop-nav a:hover,
.login-link:hover {
    color: var(--purple);
    border-color: currentColor;
}

.auth-nav {
    gap: 24px;
}

.primary-cta,
.secondary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border: 2px solid var(--ink);
    font-size: 14px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.primary-cta {
    color: #fff;
    background: var(--purple);
    box-shadow: 5px 5px 0 var(--lime);
}

.primary-cta:hover {
    transform: translate(3px, 3px);
    box-shadow: 2px 2px 0 var(--lime);
}

.secondary-cta {
    color: var(--ink);
    background: var(--paper-light);
    box-shadow: 5px 5px 0 var(--coral);
}

.secondary-cta:hover {
    color: var(--paper-light);
    background: var(--ink);
    transform: translate(3px, 3px);
    box-shadow: 2px 2px 0 var(--coral);
}

.mobile-menu-toggle {
    display: none;
    min-height: 42px;
    padding: 9px 14px;
    color: var(--ink);
    background: var(--lime);
    border: 2px solid var(--ink);
    box-shadow: 3px 3px 0 var(--ink);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 90;
    padding: 112px 24px 32px;
    color: var(--paper-light);
    background: var(--ink);
    overflow-y: auto;
}

.mobile-menu-inner {
    display: grid;
    gap: 12px;
}

.mobile-menu a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    font-family: var(--display-font);
    font-size: clamp(26px, 9vw, 46px);
    font-weight: 900;
    letter-spacing: -0.05em;
}

.mobile-menu .mobile-cta {
    margin-top: 22px;
    padding: 16px 18px;
    color: var(--ink);
    background: var(--lime);
    border: 2px solid var(--paper-light);
    font-size: 18px;
    text-align: center;
}

.hero {
    position: relative;
    min-height: max(790px, calc(100svh - 88px));
    overflow: hidden;
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    top: 34px;
    bottom: 34px;
    left: 27px;
    width: 2px;
    background: var(--ink);
    opacity: 0.2;
}

.hero::after {
    content: "PRISM / CARD / 01";
    position: absolute;
    top: 212px;
    right: -28px;
    z-index: 20;
    padding: 7px 18px;
    color: var(--paper-light);
    background: var(--ink);
    font: 800 10px/1 Arial, sans-serif;
    letter-spacing: 0.2em;
    transform: rotate(90deg);
}

.eyebrow {
    position: absolute;
    top: 31px;
    left: 58px;
    z-index: 12;
    display: flex;
    align-items: center;
    gap: 13px;
    margin: 0;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 38px;
    height: 6px;
    background: linear-gradient(90deg, var(--purple) 0 65%, var(--coral) 65% 100%);
}

.hero-title {
    position: absolute;
    top: 66px;
    left: 54px;
    z-index: 5;
    width: min(82vw, 1260px);
    margin: 0;
    font-family: var(--display-font);
    font-size: clamp(90px, 9.15vw, 148px);
    font-weight: 900;
    line-height: 0.78;
    letter-spacing: -0.075em;
    text-transform: uppercase;
}

.hero-title span {
    display: block;
    width: max-content;
    max-width: 100%;
    white-space: nowrap;
}

.hero-title .line-two {
    margin-left: 15vw;
    color: transparent;
    -webkit-text-stroke: 2.5px var(--ink);
}

.hero-title .line-three {
    margin-left: 2vw;
    color: var(--paper);
    -webkit-text-stroke: 3px var(--ink);
}

.hero-title .line-four {
    position: relative;
    z-index: 7;
    margin-left: 8vw;
    color: var(--purple);
    -webkit-text-stroke: 2px var(--ink);
    text-shadow: 6px 6px 0 var(--lime);
}

.hero-intro {
    position: absolute;
    bottom: 38px;
    left: 59px;
    z-index: 35;
    width: 370px;
}

.hero-intro strong {
    display: block;
    max-width: 350px;
    font-size: 21px;
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.hero-intro p {
    margin: 11px 0 17px;
    max-width: 360px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.hero-actions .primary-cta,
.hero-actions .secondary-cta {
    min-height: 42px;
    padding: 10px 15px;
    font-size: 12px;
}

.spectrum-rule {
    width: 168px;
    height: 8px;
    margin-top: 20px;
    border: 1px solid var(--ink);
    background: linear-gradient(
        90deg,
        var(--purple) 0 51%,
        var(--violet) 51% 62%,
        var(--coral) 62% 75%,
        var(--yellow) 75% 85%,
        var(--teal) 85% 93%,
        var(--blue) 93% 100%
    );
}

.pwa-slot {
    margin-top: 16px;
}

.pwa-slot #pwa-install-banner {
    margin-top: 0 !important;
}

.pwa-slot #pwa-install-banner > div {
    padding: 10px 12px !important;
    color: var(--ink) !important;
    background: var(--paper-light) !important;
    border: 2px solid var(--ink) !important;
    border-radius: 0 !important;
    box-shadow: 5px 5px 0 var(--coral) !important;
    backdrop-filter: none !important;
}

.pwa-slot .pwa-install-icon {
    width: 40px;
    height: 40px;
    overflow: hidden;
    color: #fff;
    border: 1.5px solid var(--ink);
}

.pwa-slot .pwa-install-copy p {
    margin: 0;
}

.pwa-slot .pwa-install-copy p + p {
    margin-top: 3px;
    color: rgba(18, 16, 18, 0.62);
}

.pwa-slot #install-pwa {
    color: #fff !important;
    background: var(--purple) !important;
    border: 1px solid var(--ink) !important;
    border-radius: 0 !important;
    cursor: pointer;
}

.pwa-slot #install-pwa:hover {
    color: var(--ink) !important;
    background: var(--lime) !important;
}

.pwa-slot .pwa-install-close {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    padding: 0;
    color: rgba(18, 16, 18, 0.55);
    background: transparent;
    border: 0;
    cursor: pointer;
}

.pwa-slot .pwa-install-close:hover {
    color: var(--ink);
}

.object-layer {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.product-object {
    position: absolute;
    border: 2.5px solid var(--ink);
}

.wallet-card {
    top: 55px;
    right: 3.1vw;
    z-index: 7;
    width: clamp(410px, 31.5vw, 520px);
    aspect-ratio: 1.68;
    padding: 31px 34px;
    overflow: hidden;
    color: #fff;
    background: var(--ink);
    border-radius: 26px;
    box-shadow: 13px 14px 0 var(--coral);
    transform: rotate(7deg);
}

.wallet-content,
.virtual-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-top,
.card-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.card-brand {
    font-size: 17px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.card-kind,
.mini-label {
    font-size: 9px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.balance-label {
    margin-bottom: 8px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.74;
}

.balance {
    font-family: var(--display-font);
    font-size: clamp(37px, 3.1vw, 51px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.065em;
}

.balance small {
    display: inline-block;
    margin-left: 5px;
    font-size: 14px;
    letter-spacing: 0.04em;
}

.wallet-card .facet {
    position: absolute;
    z-index: 1;
    transform-origin: center;
}

.facet-one {
    right: -68px;
    bottom: -133px;
    width: 260px;
    height: 320px;
    background: var(--purple);
    transform: rotate(28deg);
}

.facet-two {
    right: 68px;
    bottom: -76px;
    width: 104px;
    height: 184px;
    background: var(--coral);
    clip-path: polygon(0 0, 100% 25%, 72% 100%, 12% 74%);
}

.facet-three {
    right: -3px;
    bottom: 1px;
    width: 77px;
    height: 92px;
    background: var(--lime);
    clip-path: polygon(54% 0, 100% 100%, 0 76%);
}

.facet-four {
    right: 127px;
    bottom: -19px;
    width: 62px;
    height: 78px;
    background: var(--teal);
    clip-path: polygon(20% 0, 100% 21%, 62% 100%, 0 70%);
}

.virtual-card {
    top: 342px;
    right: 29vw;
    z-index: 4;
    width: clamp(350px, 26.5vw, 430px);
    aspect-ratio: 1.68;
    padding: 25px 28px;
    overflow: hidden;
    color: #fff;
    background: var(--purple);
    border-radius: 23px;
    box-shadow: 11px 12px 0 var(--ink);
    transform: rotate(-11deg);
}

.virtual-card::before,
.virtual-card::after {
    content: "";
    position: absolute;
}

.virtual-card::before {
    right: -48px;
    bottom: -58px;
    width: 190px;
    height: 180px;
    background: var(--lime);
    clip-path: polygon(56% 0, 100% 80%, 33% 100%, 0 26%);
}

.virtual-card::after {
    right: 67px;
    bottom: -36px;
    width: 88px;
    height: 123px;
    background: var(--coral);
    clip-path: polygon(0 0, 100% 30%, 63% 100%, 14% 78%);
}

.chip {
    width: 42px;
    height: 31px;
    margin: 12px 0 2px;
    border: 2px solid var(--ink);
    background:
        linear-gradient(90deg, transparent 45%, var(--ink) 45% 51%, transparent 51%),
        linear-gradient(transparent 45%, var(--ink) 45% 52%, transparent 52%),
        var(--yellow);
}

.card-number {
    font-family: "Courier New", monospace;
    font-size: 19px;
    font-weight: 900;
    letter-spacing: 0.09em;
}

.status-block {
    padding: 5px 8px;
    color: var(--ink);
    background: var(--lime);
    border: 1.5px solid var(--ink);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.activity-ticket {
    top: 520px;
    right: 19.5vw;
    z-index: 9;
    width: 282px;
    padding: 20px 19px 18px;
    background: var(--paper-light);
    box-shadow: 8px 9px 0 var(--purple);
    transform: rotate(4.5deg);
}

.ticket-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--ink);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.activity-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1.5px dashed var(--ink);
    font-size: 12px;
}

.activity-row b,
.activity-row strong {
    display: block;
    font-size: 12px;
    white-space: nowrap;
}

.activity-row small {
    display: block;
    margin-top: 3px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.ticket-balance {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-top: 13px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.market-ticket {
    top: 492px;
    right: -26px;
    z-index: 8;
    width: 360px;
    min-height: 235px;
    padding: 21px 28px 23px 32px;
    pointer-events: auto;
    background: var(--coral);
    box-shadow: 10px 11px 0 var(--ink);
    clip-path: polygon(0 0, 92% 0, 100% 13%, 100% 100%, 8% 100%, 0 86%);
    transform: rotate(11deg);
}

.market-kicker {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.market-ticket h2 {
    margin: 9px 0 13px;
    font-family: var(--display-font);
    font-size: 45px;
    line-height: 0.77;
    letter-spacing: -0.07em;
    text-transform: uppercase;
}

.market-offer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 11px;
    border-top: 2px solid var(--ink);
    font-size: 11px;
    font-weight: 900;
    line-height: 1.25;
    text-transform: uppercase;
}

.market-arrow {
    display: grid;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    place-items: center;
    color: var(--lime);
    background: var(--ink);
    font-size: 22px;
}

.action-rail {
    position: absolute;
    right: 4.2vw;
    bottom: 46px;
    left: 30.2vw;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 92px;
    color: var(--ink);
    background: var(--lime);
    border: 2.5px solid var(--ink);
    box-shadow: 10px 11px 0 var(--ink);
    transform: rotate(-3.2deg);
}

.action-rail a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 17px 18px;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: -0.025em;
    transition: color 0.2s ease, background 0.2s ease;
}

.action-rail a + a {
    border-left: 2px solid var(--ink);
}

.action-rail a:hover {
    color: var(--lime);
    background: var(--ink);
}

.action-index {
    display: grid;
    flex: 0 0 31px;
    width: 31px;
    height: 31px;
    place-items: center;
    border: 1.5px solid currentColor;
    font: 900 10px/1 Arial, sans-serif;
}

.black-reveal {
    min-height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 32px;
    color: var(--paper-light);
    background: var(--ink);
    border-block: 2px solid var(--ink);
    font-family: var(--display-font);
    font-size: clamp(28px, 3vw, 50px);
    font-weight: 900;
    line-height: 0.94;
    letter-spacing: -0.065em;
    text-align: center;
    text-transform: uppercase;
}

.black-reveal span {
    max-width: 100%;
    text-wrap: balance;
}

.metrics-section {
    padding: 92px 0 110px;
    background: var(--paper-light);
    border-bottom: 2px solid var(--ink);
}

.section-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 22px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-kicker::before {
    content: "";
    width: 44px;
    height: 7px;
    background: var(--coral);
    border: 1px solid var(--ink);
}

.section-heading {
    max-width: 1120px;
    margin: 0;
    font-family: var(--display-font);
    font-size: clamp(52px, 7.2vw, 112px);
    font-weight: 900;
    line-height: 0.86;
    letter-spacing: -0.075em;
    text-transform: uppercase;
}

.section-heading .outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--ink);
}

.metric-tape {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 66px;
    border: 2px solid var(--ink);
    box-shadow: 11px 12px 0 var(--purple);
}

.metric {
    min-height: 190px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--paper);
}

.metric + .metric {
    border-left: 2px solid var(--ink);
}

.metric:nth-child(2) {
    background: var(--lime);
}

.metric:nth-child(3) {
    color: var(--paper-light);
    background: var(--ink);
}

.metric:nth-child(4) {
    background: var(--coral);
}

.metric-index {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.metric strong {
    display: block;
    font-family: var(--display-font);
    font-size: clamp(42px, 4.5vw, 72px);
    line-height: 0.9;
    letter-spacing: -0.065em;
}

.metric span:last-child {
    max-width: 180px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
}

.features-section {
    padding: 118px 0 132px;
    border-bottom: 2px solid var(--ink);
}

.features-lead {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
    align-items: end;
    gap: 44px;
}

.features-lead p:last-child {
    max-width: 480px;
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.45;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    margin-top: 70px;
}

.feature-card {
    position: relative;
    grid-column: span 4;
    min-height: 310px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 2px solid var(--ink);
    background: var(--paper-light);
    box-shadow: 9px 10px 0 var(--ink);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:nth-child(3n + 1) {
    transform: rotate(-1.2deg);
}

.feature-card:nth-child(3n + 2) {
    color: var(--paper-light);
    background: var(--purple);
    transform: translateY(24px) rotate(1.3deg);
}

.feature-card:nth-child(3n + 3) {
    background: var(--lime);
    transform: rotate(-0.7deg);
}

.feature-card:nth-child(4n) {
    color: var(--paper-light);
    background: var(--ink);
}

.feature-card:nth-child(5n) {
    color: var(--ink);
    background: var(--coral);
}

.feature-card:hover {
    z-index: 2;
    transform: translate(4px, 4px) rotate(0deg);
    box-shadow: 4px 5px 0 var(--ink);
}

.feature-number {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 2px solid currentColor;
    font-size: 11px;
    font-weight: 900;
}

.feature-card h3 {
    max-width: 330px;
    margin: auto 0 15px;
    font-family: var(--display-font);
    font-size: clamp(28px, 2.5vw, 42px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.feature-card p {
    margin: 0;
    max-width: 370px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}

.workflow-section {
    padding: 120px 0;
    color: var(--paper-light);
    background: var(--ink);
    border-bottom: 2px solid var(--ink);
}

.workflow-section .section-kicker::before {
    background: var(--lime);
}

.workflow-section .section-heading .outline {
    -webkit-text-stroke-color: var(--paper-light);
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 74px;
    border: 2px solid var(--paper-light);
}

.workflow-step {
    position: relative;
    min-height: 390px;
    padding: 28px;
    overflow: hidden;
}

.workflow-step + .workflow-step {
    border-left: 2px solid var(--paper-light);
}

.workflow-step:nth-child(2) {
    color: var(--ink);
    background: var(--coral);
}

.workflow-step:nth-child(3) {
    color: var(--ink);
    background: var(--lime);
}

.step-number {
    position: absolute;
    top: -34px;
    right: 2px;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 249, 239, 0.58);
    font-family: var(--display-font);
    font-size: 180px;
    font-weight: 900;
    line-height: 1;
    opacity: 0.34;
}

.workflow-step:nth-child(2) .step-number,
.workflow-step:nth-child(3) .step-number {
    -webkit-text-stroke-color: rgba(18, 16, 18, 0.65);
}

.workflow-step h3 {
    position: relative;
    z-index: 1;
    margin: 215px 0 12px;
    font-family: var(--display-font);
    font-size: clamp(30px, 3vw, 46px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.workflow-step p {
    position: relative;
    z-index: 1;
    max-width: 330px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.testimonials-section {
    padding: 118px 0 138px;
    background: var(--paper-light);
    border-bottom: 2px solid var(--ink);
}

.testimonials-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
    gap: 44px;
    align-items: end;
}

.testimonials-heading > p {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.45;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 68px;
}

.testimonial-card {
    position: relative;
    min-height: 330px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    border: 2px solid var(--ink);
    background: var(--paper);
    box-shadow: 8px 9px 0 var(--purple);
}

.testimonial-card:nth-child(2n) {
    background: var(--coral);
    box-shadow-color: var(--ink);
    transform: rotate(1deg);
}

.testimonial-card:nth-child(3n) {
    background: var(--lime);
    box-shadow-color: var(--ink);
    transform: rotate(-1deg);
}

.quote-mark {
    font-family: Georgia, serif;
    font-size: 80px;
    line-height: 0.7;
}

.testimonial-card blockquote {
    margin: 20px 0 30px;
    font-family: var(--display-font);
    font-size: 23px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.testimonial-author {
    margin-top: auto;
    padding-top: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1.5px dashed currentColor;
}

.testimonial-avatar,
.testimonial-initial {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border: 2px solid var(--ink);
    object-fit: cover;
}

.testimonial-initial {
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--purple);
    font-weight: 900;
}

.testimonial-author strong,
.testimonial-author span {
    display: block;
}

.testimonial-author strong {
    font-size: 14px;
}

.testimonial-author span {
    margin-top: 2px;
    font-size: 11px;
    font-weight: 700;
}

.final-cta {
    position: relative;
    padding: 126px 0 140px;
    overflow: hidden;
    border-bottom: 2px solid var(--paper-light);
    color: var(--paper-light);
    background: var(--purple);
}

.final-cta::before,
.final-cta::after {
    content: "";
    position: absolute;
    border: 2px solid var(--ink);
}

.final-cta::before {
    top: -110px;
    right: -70px;
    width: 430px;
    height: 270px;
    background: var(--coral);
    box-shadow: 12px 13px 0 var(--ink);
    transform: rotate(14deg);
}

.final-cta::after {
    right: 12vw;
    bottom: -90px;
    width: 300px;
    height: 200px;
    background: var(--lime);
    box-shadow: 10px 11px 0 var(--ink);
    transform: rotate(-11deg);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 1080px;
}

.final-cta .section-kicker::before {
    background: var(--lime);
}

.final-cta h2 {
    margin: 0;
    font-family: var(--display-font);
    font-size: clamp(58px, 9vw, 144px);
    font-weight: 900;
    line-height: 0.78;
    letter-spacing: -0.08em;
    text-transform: uppercase;
}

.final-cta p {
    max-width: 650px;
    margin: 34px 0;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.45;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.final-cta .primary-cta {
    color: var(--ink);
    background: var(--lime);
    box-shadow: 6px 6px 0 var(--ink);
}

.final-cta .secondary-cta {
    color: var(--paper-light);
    background: transparent;
    border-color: var(--paper-light);
    box-shadow: 6px 6px 0 var(--coral);
}

.site-footer {
    padding: 88px 0 34px;
    color: var(--paper-light);
    background: var(--ink);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 0.72fr);
    gap: 54px;
}

.footer-brand p {
    max-width: 430px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.55;
}

.site-footer .brand-logo {
    border-color: var(--paper-light);
}

.footer-heading {
    margin: 0 0 20px;
    color: var(--lime);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.footer-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-list li + li {
    margin-top: 12px;
}

.footer-list a,
.footer-list span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
    font-weight: 600;
}

.footer-list a:hover {
    color: var(--lime);
}

.social-links {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.social-links a {
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.social-links a:hover {
    color: var(--ink);
    background: var(--lime);
    border-color: var(--lime);
}

.footer-bottom {
    margin-top: 64px;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
}

.api-coming-body {
    min-height: 100vh;
    overflow-x: hidden;
}

.api-coming-page {
    min-height: 100svh;
    overflow: clip;
    background:
        linear-gradient(90deg, transparent 0 97%, color-mix(in srgb, var(--purple) 9%, transparent) 97% 100%),
        var(--paper);
}

.api-coming-topbar {
    position: relative;
}

.api-coming-header-actions,
.api-coming-status {
    display: flex;
    align-items: center;
}

.api-coming-header-actions {
    gap: 24px;
}

.api-coming-status {
    gap: 9px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.api-coming-status > span {
    width: 10px;
    height: 10px;
    border: 2px solid var(--ink);
    background: var(--lime);
    box-shadow: 2px 2px 0 var(--purple);
}

.api-coming-topbar .secondary-cta {
    min-height: 42px;
    padding: 9px 16px;
    font-size: 12px;
}

.api-coming-hero {
    position: relative;
    min-height: calc(100svh - 88px);
    padding: 72px clamp(32px, 6vw, 100px) 64px;
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(430px, 0.97fr);
    align-items: center;
    gap: clamp(44px, 6vw, 110px);
    isolation: isolate;
}

.api-coming-hero::before {
    content: "API";
    position: absolute;
    right: -0.08em;
    bottom: -0.17em;
    z-index: -1;
    color: color-mix(in srgb, var(--purple) 8%, transparent);
    font-family: var(--display-font);
    font-size: clamp(280px, 40vw, 650px);
    font-weight: 900;
    line-height: 0.72;
    letter-spacing: -0.12em;
}

.api-coming-copy {
    position: relative;
    z-index: 3;
}

.api-coming-kicker {
    margin: 0 0 34px;
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.api-coming-kicker > span {
    width: 58px;
    height: 8px;
    border: 1.5px solid var(--ink);
    background: linear-gradient(90deg, var(--purple) 0 57%, var(--coral) 57% 100%);
}

.api-coming-copy h1 {
    margin: 0;
    font-family: var(--display-font);
    font-size: clamp(76px, 8.3vw, 148px);
    font-weight: 900;
    line-height: 0.78;
    letter-spacing: -0.085em;
    text-transform: uppercase;
}

.api-coming-copy h1 span {
    color: var(--purple);
    text-shadow: 5px 5px 0 var(--lime);
}

.api-coming-lead {
    max-width: 690px;
    margin: 44px 0 0;
    font-size: clamp(18px, 1.55vw, 25px);
    font-weight: 650;
    line-height: 1.35;
}

.api-coming-tags {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.api-coming-tags span {
    padding: 8px 11px;
    border: 1.5px solid var(--ink);
    background: var(--paper-light);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.api-coming-tags span:nth-child(2) {
    background: var(--lime);
}

.api-coming-tags span:nth-child(3) {
    background: var(--coral);
}

.api-coming-actions {
    margin-top: 42px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

.api-coming-actions strong {
    padding-bottom: 5px;
    border-bottom: 6px solid var(--purple);
    font-family: var(--display-font);
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.api-coming-visual {
    position: relative;
    min-height: 590px;
}

.api-coming-visual::before {
    content: "";
    position: absolute;
    top: 42px;
    right: 5%;
    width: min(480px, 84%);
    height: 470px;
    border: 2px solid var(--ink);
    background: var(--purple);
    transform: rotate(-5deg);
    box-shadow: 12px 12px 0 var(--coral);
}

.api-coming-card {
    position: absolute;
    top: 87px;
    left: 0;
    z-index: 3;
    width: min(540px, 94%);
    overflow: hidden;
    color: var(--paper-light);
    background: var(--ink);
    border: 2px solid var(--ink);
    box-shadow: 12px 13px 0 var(--lime);
    transform: rotate(2.5deg);
}

.api-coming-card-head {
    min-height: 54px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--ink);
    background: var(--paper-light);
    border-bottom: 2px solid var(--ink);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.api-coming-card-head span:last-child {
    color: var(--purple);
}

.api-coming-endpoint {
    margin: 22px 20px 0;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.06);
}

.api-coming-endpoint span {
    padding: 5px 7px;
    color: var(--ink);
    background: var(--lime);
    font-size: 10px;
    font-weight: 950;
}

.api-coming-endpoint code {
    font-size: 14px;
    font-weight: 700;
}

.api-coming-code {
    padding: 22px 20px;
    color: #eee7ff;
    font-family: Consolas, "Courier New", monospace;
    font-size: 13px;
    line-height: 1.75;
}

.api-coming-code > div {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 12px;
}

.api-coming-code span {
    color: rgba(255, 255, 255, 0.3);
    user-select: none;
}

.api-coming-code code {
    min-width: 0;
    overflow-wrap: anywhere;
}

.api-coming-response {
    min-height: 82px;
    padding: 16px 20px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 15px;
    color: var(--ink);
    background: var(--paper-light);
    border-top: 2px solid var(--ink);
}

.api-coming-response > span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 2px solid var(--ink);
    background: var(--coral);
    font-weight: 950;
}

.api-coming-response p {
    margin: 0;
    display: grid;
    gap: 3px;
    font-size: 12px;
    line-height: 1.3;
}

.api-coming-response strong {
    font-family: var(--display-font);
    font-size: 15px;
}

.api-coming-stamp {
    position: absolute;
    right: -4%;
    bottom: 44px;
    z-index: 4;
    padding: 14px 18px 11px;
    border: 2px solid var(--ink);
    color: var(--paper-light);
    background: var(--blue);
    box-shadow: 6px 6px 0 var(--ink);
    font-family: var(--display-font);
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 0.12em;
    transform: rotate(-6deg);
}

.api-coming-orbit {
    position: absolute;
    display: block;
    border: 2px solid var(--ink);
    border-radius: 50%;
}

.api-coming-orbit-one {
    top: 0;
    left: -42px;
    width: 100px;
    height: 100px;
    background: var(--yellow);
}

.api-coming-orbit-two {
    right: 1%;
    bottom: 6px;
    width: 62px;
    height: 62px;
    background: var(--teal);
}

@media (max-width: 960px) {
    .api-coming-hero {
        min-height: auto;
        padding: 72px 30px 80px;
        grid-template-columns: minmax(0, 1fr);
        gap: 50px;
    }

    .api-coming-copy {
        max-width: 800px;
    }

    .api-coming-visual {
        min-height: 560px;
    }

    .api-coming-card {
        left: 6%;
    }

    .api-coming-stamp {
        right: 4%;
    }
}

@media (max-width: 620px) {
    .api-coming-topbar {
        padding-inline: 16px;
    }

    .api-coming-header-actions {
        gap: 12px;
    }

    .api-coming-status {
        display: none;
    }

    .api-coming-topbar .secondary-cta {
        padding-inline: 12px;
        font-size: 11px;
    }

    .api-coming-hero {
        padding: 55px 18px 72px;
    }

    .api-coming-kicker {
        margin-bottom: 25px;
        font-size: 10px;
    }

    .api-coming-copy h1 {
        font-size: clamp(58px, 18vw, 82px);
        line-height: 0.82;
    }

    .api-coming-copy h1 span {
        text-shadow: 3px 3px 0 var(--lime);
    }

    .api-coming-lead {
        margin-top: 34px;
        font-size: 17px;
    }

    .api-coming-actions {
        align-items: stretch;
    }

    .api-coming-actions .primary-cta {
        width: 100%;
    }

    .api-coming-visual {
        min-height: 510px;
    }

    .api-coming-visual::before {
        top: 30px;
        right: 0;
        width: 94%;
        height: 410px;
        box-shadow: 8px 8px 0 var(--coral);
    }

    .api-coming-card {
        top: 60px;
        left: 0;
        width: calc(100% - 14px);
        box-shadow: 8px 9px 0 var(--lime);
        transform: rotate(1.5deg);
    }

    .api-coming-code {
        padding-block: 17px;
        font-size: 11px;
    }

    .api-coming-stamp {
        right: 0;
        bottom: 28px;
        font-size: 13px;
    }

    .api-coming-orbit-one {
        left: -20px;
        width: 70px;
        height: 70px;
    }

    .api-coming-orbit-two {
        display: none;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.72, 0.25, 1);
}

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

@media (min-width: 1151px) {
    .wallet-card {
        animation: wallet-drift 8s ease-in-out -2s infinite;
    }

    .virtual-card {
        animation: virtual-drift 9s ease-in-out -4s infinite;
    }

    .activity-ticket {
        animation: receipt-drift 7s ease-in-out -1s infinite;
    }

    @keyframes wallet-drift {
        0%,
        100% {
            transform: rotate(7deg) translateY(0);
        }
        50% {
            transform: rotate(6.2deg) translateY(-8px);
        }
    }

    @keyframes virtual-drift {
        0%,
        100% {
            transform: rotate(-11deg) translateY(0);
        }
        50% {
            transform: rotate(-10deg) translateY(7px);
        }
    }

    @keyframes receipt-drift {
        0%,
        100% {
            transform: rotate(4.5deg) translateY(0);
        }
        50% {
            transform: rotate(5.3deg) translateY(-6px);
        }
    }
}

@media (max-width: 1350px) and (min-width: 1151px) {
    .hero-title {
        font-size: 9vw;
    }

    .activity-ticket {
        right: 18vw;
    }

    .action-rail {
        left: 31vw;
    }

    .action-rail a {
        gap: 8px;
        padding-inline: 12px;
        font-size: 13px;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
    }
}

@media (max-width: 1150px) {
    .landing-page {
        overflow-x: clip;
        overflow-y: visible;
    }

    .topbar {
        min-height: 80px;
        padding: 0 30px;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
    }

    .hero {
        min-height: 0;
        padding: 32px 30px 72px;
        overflow: hidden;
    }

    .hero::before,
    .hero::after {
        display: none;
    }

    .eyebrow,
    .hero-title,
    .hero-intro,
    .action-rail {
        position: relative;
        inset: auto;
    }

    .hero-title {
        width: 100%;
        margin-top: 30px;
        font-size: clamp(70px, 12vw, 118px);
    }

    .hero-title .line-two {
        margin-left: 10vw;
    }

    .hero-title .line-three {
        margin-left: 0;
    }

    .hero-title .line-four {
        margin-left: 7vw;
    }

    .hero-intro {
        width: 500px;
        max-width: 100%;
        margin-top: 38px;
    }

    .object-layer {
        position: relative;
        inset: auto;
        height: 605px;
        margin-top: -70px;
    }

    .wallet-card {
        top: 34px;
        right: -2%;
        width: min(510px, 57vw);
    }

    .virtual-card {
        top: 238px;
        right: auto;
        left: 4%;
        width: min(420px, 48vw);
    }

    .activity-ticket {
        top: 345px;
        right: 25%;
    }

    .market-ticket {
        top: 371px;
        right: -25px;
    }

    .action-rail {
        margin: -22px 12px 8px;
    }

    .features-lead,
    .testimonials-heading {
        grid-template-columns: minmax(0, 1fr);
    }

    .features-lead > *,
    .testimonials-heading > * {
        min-width: 0;
    }

    .feature-card {
        grid-column: span 6;
    }

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

@media (max-width: 820px) {
    .section-shell {
        width: min(calc(100% - 36px), var(--shell));
    }

    .nav-cluster {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
    }

    .metric-tape {
        grid-template-columns: repeat(2, 1fr);
    }

    .metric:nth-child(3) {
        border-left: 0;
        border-top: 2px solid var(--ink);
    }

    .metric:nth-child(4) {
        border-top: 2px solid var(--ink);
    }

    .workflow-grid {
        grid-template-columns: 1fr;
    }

    .workflow-step + .workflow-step {
        border-top: 2px solid var(--paper-light);
        border-left: 0;
    }

    .workflow-step {
        min-height: 300px;
    }

    .workflow-step h3 {
        margin-top: 150px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .topbar {
        min-height: 74px;
        padding: 0 18px;
    }

    .brand {
        font-size: 20px;
    }

    .brand-mark {
        width: 36px;
        height: 45px;
        font-size: 41px;
    }

    .hero {
        padding: 28px 18px 55px;
    }

    .hero-title {
        margin-top: 27px;
        font-size: clamp(52px, 14vw, 96px);
        line-height: 0.82;
    }

    .hero-title .line-two {
        margin-left: 5vw;
    }

    .hero-title .line-four {
        margin-left: 3vw;
        text-shadow: 3px 3px 0 var(--lime);
    }

    .hero-intro {
        margin-top: 31px;
    }

    .object-layer {
        height: 735px;
        margin-top: 18px;
    }

    .wallet-card {
        top: 12px;
        right: -3%;
        width: 94%;
        padding: 22px 24px;
        border-radius: 22px;
        box-shadow: 8px 9px 0 var(--coral);
        transform: rotate(3.5deg);
    }

    .balance {
        font-size: 9vw;
    }

    .virtual-card {
        top: 235px;
        left: -2%;
        width: 82%;
        padding: 20px 22px;
        box-shadow: 8px 8px 0 var(--ink);
        transform: rotate(-6deg);
    }

    .activity-ticket {
        top: 442px;
        right: auto;
        left: 0;
        width: 255px;
        transform: rotate(3deg);
    }

    .market-ticket {
        top: 477px;
        right: -8%;
        width: 280px;
        min-height: 213px;
        transform: rotate(-4deg);
    }

    .market-ticket h2 {
        font-size: 38px;
    }

    .action-rail {
        grid-template-columns: repeat(2, 1fr);
        margin: 0;
        transform: none;
        box-shadow: 7px 8px 0 var(--ink);
    }

    .action-rail a {
        min-height: 72px;
        padding: 13px 12px;
        font-size: 13px;
    }

    .action-rail a + a {
        border-left: 0;
    }

    .action-rail a:nth-child(even) {
        border-left: 2px solid var(--ink);
    }

    .action-rail a:nth-child(n + 3) {
        border-top: 2px solid var(--ink);
    }

    .black-reveal {
        min-height: 90px;
        padding-inline: 18px;
    }

    .metrics-section,
    .features-section,
    .workflow-section,
    .testimonials-section,
    .final-cta {
        padding-block: 82px;
    }

    .section-heading {
        font-size: clamp(44px, 14vw, 82px);
    }

    .feature-grid {
        display: block;
        margin-top: 50px;
    }

    .feature-card {
        min-height: 270px;
        margin-bottom: 26px;
        transform: none !important;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        transform: none !important;
    }

    .final-cta::before {
        width: 260px;
        height: 150px;
    }

    .final-cta::after {
        right: -30px;
        width: 220px;
        height: 150px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .brand-word {
        display: none;
    }

    .topbar {
        padding-inline: 14px;
    }

    .hero-intro strong {
        font-size: 19px;
    }

    .hero-actions {
        align-items: stretch;
    }

    .hero-actions a {
        width: 100%;
    }

    .pwa-slot #pwa-install-banner > div {
        flex-wrap: wrap;
    }

    .pwa-slot #install-pwa {
        width: 100%;
        order: 4;
        min-height: 38px;
    }

    .wallet-card {
        min-width: 290px;
    }

    .card-kind {
        max-width: 82px;
        text-align: right;
    }

    .card-number {
        font-size: 16px;
    }

    .virtual-card {
        min-width: 256px;
    }

    .activity-ticket {
        width: 225px;
        padding-inline: 15px;
    }

    .market-ticket {
        width: 248px;
        padding-left: 25px;
    }

    .metric-tape {
        grid-template-columns: 1fr;
    }

    .metric + .metric,
    .metric:nth-child(3),
    .metric:nth-child(4) {
        border-top: 2px solid var(--ink);
        border-left: 0;
    }

    .metric:first-child {
        border-top: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
