:root {
    --ink: #342b40;
    --muted: #746d7c;
    --cream: #fffaf0;
    --paper: #ffffff;
    --yellow: #ffd84d;
    --yellow-soft: #fff3b5;
    --blue: #42bff3;
    --blue-soft: #dff6ff;
    --green: #8ed954;
    --green-soft: #eafbdc;
    --coral: #ff756f;
    --coral-soft: #ffe6df;
    --purple: #8e63d8;
    --line: rgba(52, 43, 64, 0.12);
    --shadow: 0 18px 50px rgba(67, 50, 35, 0.1);
    --radius-lg: 34px;
    --radius-md: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at 8% 5%, rgba(255, 216, 77, 0.2), transparent 24rem),
        radial-gradient(circle at 92% 18%, rgba(66, 191, 243, 0.14), transparent 26rem),
        var(--cream);
    color: var(--ink);
    font-family: "Avenir Next", Avenir, "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: radial-gradient(rgba(52, 43, 64, 0.08) 0.7px, transparent 0.7px);
    background-size: 18px 18px;
    opacity: 0.18;
    content: "";
    pointer-events: none;
}

a {
    color: inherit;
}

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    padding: 10px 16px;
    border-radius: 12px;
    background: var(--ink);
    color: #fff;
    transform: translateY(-150%);
}

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

.site-shell {
    overflow: hidden;
}

.nav {
    width: min(1180px, calc(100% - 40px));
    min-height: 76px;
    margin: 18px auto 0;
    padding: 12px 14px 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 1px solid rgba(52, 43, 64, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 10px 30px rgba(73, 54, 37, 0.06);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-size: 1.16rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.brand img,
.footer-brand img {
    border-radius: 10px;
    box-shadow: 0 5px 12px rgba(52, 43, 64, 0.12);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    position: relative;
    color: #665e6e;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
}

.nav-links a::after {
    position: absolute;
    right: 0;
    bottom: -6px;
    left: 0;
    height: 2px;
    border-radius: 99px;
    background: var(--coral);
    content: "";
    transform: scaleX(0);
    transition: transform 180ms ease;
}

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

.language-control {
    position: relative;
}

.language-control::after {
    position: absolute;
    top: 50%;
    right: 12px;
    color: var(--ink);
    content: "⌄";
    font-size: 0.9rem;
    pointer-events: none;
    transform: translateY(-57%);
}

select {
    min-width: 110px;
    padding: 10px 32px 10px 13px;
    border: 1px solid var(--line);
    border-radius: 13px;
    appearance: none;
    background: #fffaf4;
    color: var(--ink);
    cursor: pointer;
    font: inherit;
    font-size: 0.84rem;
    font-weight: 700;
}

.hero {
    width: min(1180px, calc(100% - 40px));
    min-height: 690px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    align-items: center;
    gap: 52px;
    padding: 72px 8px 70px;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.eyebrow {
    width: fit-content;
    margin: 0 0 22px;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(52, 43, 64, 0.09);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #675f6e;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(142, 217, 84, 0.18);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: 1.08;
}

h1 {
    max-width: 700px;
    margin-bottom: 26px;
    font-size: clamp(3.15rem, 5.6vw, 5.15rem);
    font-weight: 850;
    letter-spacing: -0.065em;
}

.hero-lede {
    max-width: 650px;
    margin-bottom: 24px;
    color: var(--muted);
    font-size: clamp(1.03rem, 1.5vw, 1.18rem);
    line-height: 1.78;
}

.download-block {
    margin-bottom: 24px;
    scroll-margin-top: 24px;
}

.download-label {
    margin-bottom: 9px;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.store-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.store-link {
    min-width: 188px;
    min-height: 58px;
    padding: 10px 16px 10px 11px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid var(--ink);
    border-radius: 18px;
    background: var(--yellow);
    box-shadow: 5px 5px 0 var(--ink);
    color: var(--ink);
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.store-link:nth-child(2) {
    background: var(--blue-soft);
}

.store-link:hover,
.store-link:focus-visible {
    box-shadow: 3px 3px 0 var(--ink);
    transform: translateY(-2px);
}

.store-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid rgba(52, 43, 64, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--ink);
    font-size: 0.67rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.store-mark-play {
    color: #27a65b;
    font-size: 1.05rem;
}

.store-name {
    flex: 1;
    font-size: 0.98rem;
    font-weight: 850;
    letter-spacing: -0.015em;
}

.store-arrow {
    color: rgba(52, 43, 64, 0.62);
    font-size: 0.85rem;
}

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

.button {
    min-height: 54px;
    padding: 14px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1.5px solid var(--ink);
    border-radius: 16px;
    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--yellow);
    box-shadow: 5px 5px 0 var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
    box-shadow: 3px 3px 0 var(--ink);
}

.button-secondary {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.72);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    background: #fff;
    box-shadow: 0 8px 20px rgba(52, 43, 64, 0.08);
}

.hero-notes {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: #746c7b;
    font-size: 0.78rem;
    font-weight: 700;
}

.hero-notes > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hero-notes > span > span:first-child {
    width: 20px;
    height: 20px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green-soft);
    color: #4b8b20;
    font-size: 0.7rem;
}

.hero-visual {
    position: relative;
    min-height: 570px;
    display: grid;
    place-items: center;
}

.sun-orb {
    position: absolute;
    width: min(34vw, 430px);
    aspect-ratio: 1;
    border-radius: 46% 54% 55% 45% / 54% 45% 55% 46%;
    background: linear-gradient(145deg, #fff3a6, #ffd648);
    box-shadow: inset -20px -26px 0 rgba(255, 176, 43, 0.12);
    animation: slow-drift 8s ease-in-out infinite;
}

.sun-orb::before,
.sun-orb::after {
    position: absolute;
    border-radius: 50%;
    content: "";
}

.sun-orb::before {
    width: 55px;
    height: 55px;
    top: 10px;
    right: -8px;
    background: var(--blue);
}

.sun-orb::after {
    width: 32px;
    height: 32px;
    bottom: 35px;
    left: -14px;
    background: var(--coral);
}

.icon-card {
    position: relative;
    z-index: 2;
    width: min(30vw, 360px);
    padding: 15px;
    border: 2px solid rgba(52, 43, 64, 0.12);
    border-radius: 30%;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 30px 70px rgba(92, 57, 32, 0.17), 9px 12px 0 rgba(52, 43, 64, 0.92);
    transform: rotate(3deg);
}

.icon-card img {
    width: 100%;
    border-radius: 25%;
}

.floating-card {
    position: absolute;
    z-index: 3;
    min-width: 205px;
    padding: 13px 15px;
    display: flex;
    align-items: center;
    gap: 11px;
    border: 1px solid rgba(52, 43, 64, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.floating-card small,
.floating-card strong {
    display: block;
}

.floating-card small {
    margin-bottom: 1px;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 700;
}

.floating-card strong {
    font-size: 0.83rem;
    line-height: 1.25;
}

.floating-symbol,
.ready-check {
    width: 36px;
    height: 36px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 12px;
    font-weight: 900;
}

.floating-symbol {
    background: var(--blue-soft);
    color: #159bd1;
    font-size: 1.4rem;
}

.ready-check {
    background: var(--green-soft);
    color: #4d9721;
}

.floating-nearby {
    top: 83px;
    left: -4px;
    transform: rotate(-3deg);
}

.floating-ready {
    right: -6px;
    bottom: 83px;
    transform: rotate(2deg);
}

.spark {
    position: absolute;
    z-index: 3;
    color: var(--coral);
    line-height: 1;
}

.spark-one {
    top: 60px;
    right: 70px;
    font-size: 2rem;
}

.spark-two {
    bottom: 68px;
    left: 55px;
    color: var(--purple);
    font-size: 1.35rem;
}

.trust-strip {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 20px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border: 1px solid rgba(52, 43, 64, 0.1);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.7);
}

.trust-strip > p {
    margin: 0;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.trust-items {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(20px, 4vw, 46px);
}

.trust-items > span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 0.86rem;
    font-weight: 800;
    white-space: nowrap;
}

.mini-code,
.mini-ticket,
.mini-tag {
    position: relative;
    width: 24px;
    height: 24px;
    display: inline-block;
}

.mini-qr {
    border: 5px dotted var(--ink);
}

.mini-bars {
    background: repeating-linear-gradient(90deg, var(--ink) 0 2px, transparent 2px 4px);
}

.mini-ticket {
    border: 2px solid var(--ink);
    border-radius: 4px;
    transform: rotate(-6deg);
}

.mini-tag {
    border: 2px solid var(--ink);
    border-radius: 5px 12px 12px 5px;
}

.mini-tag::after {
    position: absolute;
    top: 8px;
    left: 5px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--ink);
    content: "";
}

.section {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 124px 0;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 48px;
}

.section-kicker {
    margin-bottom: 15px;
    color: #8f5b10;
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-heading h2,
.workflow-intro h2,
.closing-card h2 {
    margin-bottom: 20px;
    font-size: clamp(2.35rem, 4.2vw, 4rem);
    font-weight: 850;
    letter-spacing: -0.055em;
}

.section-heading > p:last-child,
.workflow-intro > p {
    max-width: 650px;
    color: var(--muted);
    font-size: 1.03rem;
    line-height: 1.75;
}

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

.feature-card {
    min-height: 430px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(52, 43, 64, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.feature-card-wide {
    grid-column: span 2;
    min-height: 390px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 30px;
}

.feature-yellow {
    background: var(--yellow-soft);
}

.feature-blue {
    background: var(--blue-soft);
}

.feature-green {
    background: var(--green-soft);
}

.feature-coral {
    background: var(--coral-soft);
}

.feature-number {
    position: absolute;
    top: 28px;
    left: 30px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1.5px solid var(--ink);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.62);
    font-size: 0.72rem;
    font-weight: 850;
}

.feature-card h3 {
    margin: 22px 0 12px;
    font-size: clamp(1.55rem, 2.4vw, 2.15rem);
    font-weight: 850;
    letter-spacing: -0.04em;
}

.feature-card p {
    max-width: 560px;
    margin: 0;
    color: #665f6d;
    font-size: 0.95rem;
    line-height: 1.7;
}

.feature-card-wide .feature-copy {
    align-self: end;
    position: relative;
    padding-top: 40px;
}

.feature-card-wide .feature-number {
    top: 0;
    left: 0;
}

.wallet-stack {
    position: relative;
    min-height: 305px;
    align-self: stretch;
}

.stack-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(92%, 460px);
    min-height: 165px;
    padding: 23px;
    border: 2px solid var(--ink);
    border-radius: 24px;
    box-shadow: 6px 7px 0 rgba(52, 43, 64, 0.95);
}

.stack-card-back {
    background: var(--coral);
    transform: translate(-49%, -72%) rotate(7deg);
}

.stack-card-middle {
    background: var(--green);
    transform: translate(-53%, -57%) rotate(-5deg);
}

.stack-card-back span,
.stack-card-middle span {
    float: right;
    font-size: 1.7rem;
    font-weight: 900;
    opacity: 0.72;
}

.stack-card-front {
    display: flex;
    align-items: center;
    gap: 22px;
    background: #fff;
    transform: translate(-50%, -37%) rotate(1deg);
}

.stack-card-front > div:last-child {
    display: flex;
    flex-direction: column;
}

.stack-card-front b {
    font-size: 1.3rem;
}

.stack-card-front small {
    color: var(--muted);
}

.fake-qr {
    width: 98px;
    height: 98px;
    flex: 0 0 auto;
    border: 9px solid #fff;
    background:
        linear-gradient(90deg, transparent 45%, #312a39 45% 55%, transparent 55%),
        linear-gradient(transparent 45%, #312a39 45% 55%, transparent 55%),
        repeating-conic-gradient(#312a39 0 25%, #fff 0 50%) 0 / 24px 24px;
    box-shadow: 0 0 0 2px var(--ink);
}

.pin-illustration {
    width: 130px;
    height: 130px;
    margin: 0 auto 24px;
    display: grid;
    place-items: center;
    border: 2px dashed rgba(52, 43, 64, 0.28);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
}

.pin-illustration span {
    position: relative;
    width: 50px;
    height: 64px;
    border: 3px solid var(--ink);
    border-radius: 50% 50% 50% 4px;
    background: var(--coral);
    box-shadow: 5px 6px 0 var(--ink);
    transform: rotate(-45deg);
}

.pin-illustration span::after {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 16px;
    height: 16px;
    border: 3px solid var(--ink);
    border-radius: 50%;
    background: #fff;
    content: "";
}

.scan-illustration {
    position: relative;
    width: 144px;
    height: 118px;
    margin: 0 auto 26px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 6px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.42);
}

.scan-illustration i {
    width: 7px;
    background: var(--ink);
}

.scan-illustration i:nth-of-type(2),
.scan-illustration i:nth-of-type(5) {
    width: 3px;
}

.scan-illustration i:nth-of-type(3) {
    width: 13px;
}

.scan-corner {
    position: absolute;
    width: 27px;
    height: 27px;
    border-color: var(--coral);
    border-style: solid;
}

.corner-one {
    top: 0;
    left: 0;
    border-width: 4px 0 0 4px;
}

.corner-two {
    top: 0;
    right: 0;
    border-width: 4px 4px 0 0;
}

.corner-three {
    bottom: 0;
    left: 0;
    border-width: 0 0 4px 4px;
}

.corner-four {
    right: 0;
    bottom: 0;
    border-width: 0 4px 4px 0;
}

.category-cloud {
    min-height: 270px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    gap: 14px;
    padding: 20px;
}

.category-cloud span {
    padding: 16px 23px;
    border: 2px solid var(--ink);
    border-radius: 99px;
    background: #fff;
    box-shadow: 4px 5px 0 var(--ink);
    font-size: 0.95rem;
    font-weight: 850;
}

.category-cloud span:nth-child(1) {
    background: var(--blue-soft);
    transform: rotate(-4deg);
}

.category-cloud span:nth-child(2) {
    background: var(--yellow-soft);
    transform: rotate(3deg) translateY(-18px);
}

.category-cloud span:nth-child(3) {
    background: var(--green-soft);
    transform: rotate(2deg);
}

.category-cloud span:nth-child(4) {
    background: #eadfff;
    transform: rotate(-3deg) translateY(16px);
}

.workflow-section {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: clamp(50px, 9vw, 120px);
    align-items: start;
}

.workflow-intro {
    position: sticky;
    top: 40px;
}

.privacy-note {
    margin-top: 38px;
    padding: 20px;
    display: flex;
    gap: 15px;
    border: 1px solid rgba(52, 43, 64, 0.1);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
}

.privacy-mark {
    width: 38px;
    height: 38px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 12px;
    background: var(--green);
    color: var(--ink);
    font-weight: 900;
}

.privacy-note strong {
    display: block;
    margin-bottom: 5px;
}

.privacy-note p {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.6;
}

.privacy-note a {
    color: #68508f;
    font-size: 0.8rem;
    font-weight: 800;
    text-decoration: none;
}

.steps {
    margin: 6px 0 0;
    padding: 0;
    list-style: none;
}

.steps li {
    position: relative;
    min-height: 210px;
    padding: 34px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: start;
    border: 1px solid rgba(52, 43, 64, 0.1);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: 0 14px 34px rgba(74, 56, 40, 0.06);
}

.steps li + li {
    margin-top: 18px;
}

.steps li:nth-child(1) {
    transform: rotate(1deg);
}

.steps li:nth-child(2) {
    background: var(--yellow-soft);
    transform: rotate(-1deg);
}

.steps li:nth-child(3) {
    background: var(--blue-soft);
    transform: rotate(0.7deg);
}

.step-index {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 15px;
    background: var(--coral);
    box-shadow: 3px 4px 0 var(--ink);
    color: var(--ink);
    font-weight: 900;
}

.steps h3 {
    margin: 4px 0 10px;
    font-size: 1.34rem;
    font-weight: 850;
    letter-spacing: -0.03em;
}

.steps p {
    margin: 0;
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.7;
}

.closing-section {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 20px 0 105px;
}

.closing-card {
    min-height: 450px;
    padding: clamp(34px, 6vw, 72px);
    display: grid;
    grid-template-columns: 1fr 0.58fr;
    align-items: center;
    gap: 40px;
    border: 2px solid var(--ink);
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    background:
        radial-gradient(circle at 82% 27%, rgba(255, 255, 255, 0.45), transparent 8rem),
        var(--yellow);
    box-shadow: 10px 11px 0 var(--ink);
}

.closing-copy {
    position: relative;
    z-index: 2;
}

.closing-card h2 {
    max-width: 680px;
}

.closing-card p:not(.section-kicker) {
    max-width: 610px;
    margin-bottom: 28px;
    color: #5f5362;
    line-height: 1.7;
}

.button-dark {
    background: var(--ink);
    color: #fff;
    box-shadow: none;
}

.button-dark:hover,
.button-dark:focus-visible {
    box-shadow: 5px 5px 0 rgba(255, 255, 255, 0.8);
}

.closing-card > img {
    position: relative;
    z-index: 1;
    width: min(100%, 310px);
    justify-self: center;
    border-radius: 25%;
    box-shadow: 10px 14px 0 var(--ink);
    transform: rotate(5deg);
}

.closing-card::after {
    position: absolute;
    right: -70px;
    bottom: -130px;
    width: 390px;
    height: 390px;
    border: 55px solid rgba(255, 117, 111, 0.55);
    border-radius: 50%;
    content: "";
}

footer {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 30px 0 42px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 36px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.79rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand strong,
.footer-brand span {
    display: block;
}

.footer-brand strong {
    color: var(--ink);
    font-size: 0.93rem;
}

.footer-brand span {
    margin-top: 1px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-weight: 750;
    text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--ink);
    text-decoration: underline;
}

footer > p {
    margin: 0;
    text-align: right;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:focus-visible {
    outline: 3px solid rgba(142, 99, 216, 0.42);
    outline-offset: 3px;
}

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

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

    .hero {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 26px;
        padding-top: 80px;
        text-align: center;
    }

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

    .hero-lede {
        max-width: 700px;
    }

    .hero-visual {
        min-height: 520px;
    }

    .sun-orb {
        width: min(70vw, 420px);
    }

    .icon-card {
        width: min(56vw, 340px);
    }

    .floating-nearby {
        left: max(0px, calc(50% - 270px));
    }

    .floating-ready {
        right: max(0px, calc(50% - 270px));
    }

    .trust-strip {
        flex-direction: column;
        align-items: flex-start;
    }

    .trust-items {
        width: 100%;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

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

    .workflow-intro {
        position: static;
    }

    .closing-card {
        grid-template-columns: 1fr 0.46fr;
    }

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

    footer > p {
        grid-column: span 2;
        text-align: left;
    }
}

@media (max-width: 680px) {
    .nav {
        width: calc(100% - 24px);
        margin-top: 10px;
        min-height: 66px;
    }

    .brand img {
        width: 36px;
        height: 36px;
    }

    .brand span {
        font-size: 1rem;
    }

    select {
        min-width: 100px;
        max-width: 118px;
    }

    .hero,
    .trust-strip,
    .section,
    .closing-section,
    footer {
        width: calc(100% - 28px);
    }

    .hero {
        padding: 62px 0 44px;
    }

    h1 {
        font-size: clamp(2.75rem, 14vw, 4.3rem);
    }

    .hero-lede {
        font-size: 0.98rem;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
    }

    .download-block,
    .store-links {
        width: 100%;
    }

    .store-links {
        flex-direction: column;
    }

    .store-link {
        width: 100%;
        text-align: left;
    }

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

    .hero-notes {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-visual {
        min-height: 420px;
    }

    .icon-card {
        width: min(68vw, 285px);
        border-radius: 28%;
        box-shadow: 0 24px 48px rgba(92, 57, 32, 0.16), 7px 9px 0 rgba(52, 43, 64, 0.92);
    }

    .floating-card {
        min-width: 168px;
        padding: 10px 11px;
    }

    .floating-card strong {
        font-size: 0.7rem;
    }

    .floating-nearby {
        top: 28px;
        left: -4px;
    }

    .floating-ready {
        right: -4px;
        bottom: 26px;
    }

    .spark-one {
        top: 8px;
        right: 20px;
    }

    .spark-two {
        bottom: 10px;
        left: 20px;
    }

    .trust-strip {
        padding: 22px;
    }

    .trust-items {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 14px;
    }

    .trust-items > span {
        font-size: 0.78rem;
    }

    .section {
        padding: 90px 0;
    }

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

    .feature-card,
    .feature-card-wide {
        grid-column: auto;
        min-height: 400px;
        padding: 28px;
        display: flex;
        gap: 20px;
    }

    .feature-card-wide .feature-copy {
        order: 2;
    }

    .wallet-stack {
        min-height: 245px;
    }

    .stack-card {
        min-height: 132px;
        padding: 17px;
    }

    .stack-card-front {
        gap: 13px;
    }

    .fake-qr {
        width: 70px;
        height: 70px;
        border-width: 6px;
        background-size: 17px 17px;
    }

    .category-cloud {
        min-height: 190px;
        padding: 8px;
    }

    .category-cloud span {
        padding: 12px 17px;
        font-size: 0.78rem;
    }

    .steps li {
        min-height: 0;
        padding: 27px 23px;
    }

    .closing-section {
        padding-bottom: 85px;
    }

    .closing-card {
        padding: 42px 26px 52px;
        grid-template-columns: 1fr;
        border-radius: 30px;
    }

    .closing-card > img {
        width: 190px;
        grid-row: 1;
        justify-self: start;
    }

    footer {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    footer > p {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
