:root {
  --ink: #11101d;
  --muted: #676273;
  --purple: #6f3dc2;
  --purple-dark: #40208b;
  --lavender: #b77ae5;
  --lilac: #eee3fb;
  --pale: #f8f4fc;
  --white: #fff;
  --border: rgba(50, 29, 77, .12);
  --shadow: 0 28px 70px rgba(68, 37, 104, .16);
  --radius: 30px;
  --container: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: #fff; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.6; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 82px 0; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; height: 84px; transition: .25s ease; }
.site-header.scrolled { height: 72px; background: rgba(255,255,255,.9); border-bottom: 1px solid var(--border); backdrop-filter: blur(18px); }
.nav-wrap { width: var(--container); height: 100%; margin: auto; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 27px; font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.brand img { width: 46px; height: 46px; border-radius: 12px; object-fit: cover; }
.brand > span > span { color: var(--purple); }
.main-nav { display: flex; align-items: center; gap: 34px; font-size: 14px; font-weight: 650; }
.main-nav a { position: relative; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 0; height: 2px; background: var(--purple); transition: width .2s ease; }
.main-nav a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.language-picker { position: relative; }
.language { height: 42px; padding: 0 12px; display: inline-flex; align-items: center; gap: 7px; color: var(--ink); background: rgba(255,255,255,.62); border: 1px solid var(--border); border-radius: 999px; cursor: pointer; }
.language svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.language .chevron { width: 12px; transition: transform .2s ease; }
.language[aria-expanded="true"] .chevron { transform: rotate(180deg); }
.language-menu { position: absolute; z-index: 20; top: calc(100% + 8px); right: 0; width: 164px; padding: 6px; border: 1px solid var(--border); border-radius: 14px; background: white; box-shadow: var(--shadow); }
.language-menu[hidden] { display: none; }
.language-option { width: 100%; padding: 10px 11px; display: flex; align-items: center; justify-content: space-between; color: var(--ink); background: transparent; border: 0; border-radius: 9px; font: inherit; text-align: left; cursor: pointer; }
.language-option:hover, .language-option:focus-visible { background: var(--pale); outline: none; }
.language-option[aria-current="true"] { color: var(--purple); background: var(--pale); font-weight: 700; }
.language-option[aria-current="true"]::before { content: "✓"; margin-right: 8px; }
.language-code { margin-left: auto; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .08em; }
.button { display: inline-flex; min-height: 54px; padding: 0 24px; align-items: center; justify-content: center; gap: 16px; border: 0; border-radius: 999px; color: white; background: var(--ink); font-weight: 720; box-shadow: 0 12px 28px rgba(17,16,29,.18); transition: transform .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(17,16,29,.25); }
.button-small { min-height: 42px; padding: 0 18px; font-size: 14px; background: var(--purple); box-shadow: none; }
.menu-button { display: none; width: 42px; height: 42px; padding: 10px; border: 0; border-radius: 50%; background: var(--ink); }
.menu-button span { display: block; width: 100%; height: 2px; margin: 4px 0; background: white; }

.hero { position: relative; min-height: 720px; padding-top: 84px; overflow: hidden; background: radial-gradient(circle at 72% 18%, #f6edff 0 24%, transparent 44%), linear-gradient(135deg, #fff 20%, #fbf8fd 100%); }
.hero::after { content: ""; position: absolute; right: -13%; bottom: 5%; width: 48vw; height: 48vw; border: 1px solid rgba(117,60,196,.16); border-radius: 50%; }
.hero-grid { min-height: 600px; display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 40px; }
.hero-copy { position: relative; z-index: 3; padding-bottom: 35px; }
.eyebrow, .kicker { margin: 0 0 22px; color: var(--purple); font-size: 12px; font-weight: 820; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 8px 12px; border: 1px solid rgba(111,61,194,.2); border-radius: 999px; background: rgba(255,255,255,.68); }
.eyebrow span, .city-pill span { width: 8px; height: 8px; border-radius: 50%; background: #50c77b; box-shadow: 0 0 0 4px rgba(80,199,123,.16); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-weight: 800; line-height: .98; letter-spacing: -.055em; }
h1 { margin-bottom: 24px; font-size: clamp(52px, 5.5vw, 76px); }
h1 em, h2 em { color: var(--lavender); font-style: normal; }
.hero-lead { max-width: 520px; margin-bottom: 25px; color: var(--muted); font-size: 18px; line-height: 1.5; }
.hero-actions { display: flex; align-items: center; gap: 24px; }
.text-link { padding: 12px 0; font-weight: 720; border-bottom: 1px solid var(--ink); }
.text-link span { margin-left: 10px; }
.trust-row { display: flex; align-items: center; gap: 15px; margin-top: 30px; }
.trust-row p { margin: 0; font-size: 13px; line-height: 1.4; color: var(--muted); }
.trust-row strong { color: var(--ink); }
.avatar-stack { display: flex; }
.avatar-stack i { width: 38px; height: 38px; display: grid; place-items: center; margin-left: -9px; border: 3px solid white; border-radius: 50%; background: var(--lilac); font-style: normal; }
.avatar-stack i:first-child { margin-left: 0; }
.hero-visual { position: relative; align-self: end; min-height: 610px; z-index: 2; }
.phone { position: absolute; padding: 8px; overflow: hidden; border: 2px solid #22202a; border-radius: 42px; background: #17151c; box-shadow: var(--shadow); }
.phone img { width: 100%; height: 100%; object-fit: cover; border-radius: 33px; }
.phone-speaker { position: absolute; z-index: 3; top: 16px; left: 50%; width: 27%; height: 22px; transform: translateX(-50%); border-radius: 20px; background: #09090b; }
.phone-hero { left: 50%; bottom: -55px; width: 310px; height: 630px; transform: translateX(-44%) rotate(3deg); }
.phone-hero img { object-position: top; }
.hero-caption { position: absolute; z-index: 4; top: 95px; right: -10px; color: var(--purple); font-size: 15px; font-weight: 650; transform: rotate(6deg); }
.hero-caption span { font-family: "Segoe Script", cursive; font-size: 28px; }
.floating-card { position: absolute; z-index: 5; width: 166px; padding: 14px 17px; border: 1px solid rgba(255,255,255,.7); border-radius: 18px; background: rgba(255,255,255,.88); box-shadow: 0 16px 45px rgba(58,32,84,.18); backdrop-filter: blur(15px); }
.floating-card span { float: left; width: 34px; height: 34px; display: grid; place-items: center; margin-right: 9px; color: white; border-radius: 50%; background: var(--purple); }
.floating-card strong, .floating-card small { display: block; line-height: 1.35; }
.floating-card strong { font-size: 12px; }
.floating-card small { color: var(--muted); font-size: 11px; }
.card-people { left: 0; top: 35%; transform: rotate(-5deg); }
.card-plan { right: -5px; bottom: 20%; transform: rotate(4deg); }
.hero-marquee { position: relative; z-index: 7; width: 110%; margin: 0 0 58px -5%; padding: 19px 0; color: white; background: var(--purple); border-block: 1px solid rgba(255,255,255,.4); overflow: hidden; transform: rotate(-1.8deg); }
.hero-marquee div { width: max-content; font-size: 15px; font-weight: 850; letter-spacing: .18em; white-space: nowrap; animation: marquee 22s linear infinite; }
.hero-marquee span { margin: 0 22px; color: #d9b1fa; }
@keyframes marquee { to { transform: translateX(-35%); } }
.orb { position: absolute; border-radius: 50%; filter: blur(2px); }
.orb-one { top: 17%; right: 7%; width: 80px; height: 80px; background: linear-gradient(135deg, #dba9f9, #7844c6); }
.orb-two { left: -80px; bottom: 10%; width: 200px; height: 200px; background: #f1e3fc; }

.section-head { display: grid; grid-template-columns: .7fr 1.4fr .9fr; gap: 40px; align-items: end; margin-bottom: 46px; }
.section-number { display: block; margin-bottom: 50px; color: #b4acba; font-size: 13px; font-weight: 700; }
.section-head .kicker { margin-bottom: 0; }
h2 { margin-bottom: 0; font-size: clamp(42px, 4.5vw, 62px); }
.section-head > p { margin: 0; color: var(--muted); font-size: 17px; }
.intro { padding-block: 58px; }
.intro .section-head { display: block; margin-bottom: 24px; }
.intro .section-head > div { max-width: 670px; }
.intro .section-number { margin-bottom: 24px; }
.section-summary { margin: 12px 0 0; color: var(--muted); font-size: 16px; line-height: 1.55; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.step { min-height: 190px; padding: 22px 28px; border-right: 1px solid var(--border); background: white; }
.step:last-child { border-right: 0; }
.step.featured { color: white; background: var(--purple); }
.step-top { display: flex; justify-content: flex-end; color: #aaa3ae; font-size: 12px; }
.step-top svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 2; }
.step.featured .step-top { color: #e7ccfa; }
.step h3 { margin: 10px 0 6px; font-size: 24px; letter-spacing: -.03em; }
.step p { margin: 0; max-width: 280px; color: var(--muted); }
.step.featured p { color: rgba(255,255,255,.77); }

.app-showcase { background: var(--pale); overflow: hidden; }
.showcase-grid, .chat-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 65px; }
.showcase-copy { position: relative; z-index: 3; }
.showcase-copy h2 { margin-bottom: 30px; }
.showcase-copy > p:not(.kicker) { color: var(--muted); font-size: 18px; }
.check-list { margin: 32px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 14px; padding: 11px 0; font-weight: 650; }
.check-list span { width: 26px; height: 26px; display: grid; place-items: center; color: white; border-radius: 50%; background: var(--purple); }
.phones-stage { position: relative; min-height: 550px; }
.phone-front, .phone-back { top: 5px; width: 255px; height: 550px; }
.phone-front { left: 9%; z-index: 2; transform: rotate(-5deg); }
.phone-back { right: 4%; z-index: 1; transform: rotate(7deg) translateY(35px); opacity: .94; }
.phones-stage .scribble { position: absolute; z-index: 4; right: -30px; top: 25px; color: var(--purple); font-family: "Segoe Script", cursive; font-size: 22px; transform: rotate(7deg); }

.compact { grid-template-columns: .65fr 2fr; }
.values { padding-block: 58px; }
.values .section-head { grid-template-columns: .4fr 1.6fr; margin-bottom: 25px; }
.values .section-head h2 { font-size: clamp(38px, 3.7vw, 50px); }
.values .section-number { margin-bottom: 15px; }
.value-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.value-card { position: relative; min-height: 245px; padding: 19px 20px; border: 1px solid var(--border); border-radius: 20px; overflow: hidden; background: white; }
.value-card:nth-child(n) { grid-column: auto; }
.card-index { color: #aaa3ae; font-size: 12px; }
.value-icon { width: 44px; height: 44px; display: grid; place-items: center; margin: 14px 0 12px; color: white; border-radius: 50%; background: var(--purple); font-size: 20px; }
.value-card h3 { margin-bottom: 5px; font-size: 21px; letter-spacing: -.04em; }
.value-card p { max-width: 480px; margin-bottom: 0; color: var(--muted); font-size: 13px; line-height: 1.52; }
.value-friends { color: white; background: var(--ink); }
.value-friends p { color: #bdb9c3; }
.value-free { color: white; background: var(--purple); }
.value-free p, .value-free .card-index { color: #dfc9f3; }
.value-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.zero { margin: 3px 0 1px; font-size: 56px; font-weight: 850; line-height: 1; letter-spacing: -.08em; }
.zero span { color: #d1a5f4; font-size: 21px; }

.chat-section { overflow: hidden; background: #171320; color: white; }
.chat-grid { grid-template-columns: 1.05fr .95fr; }
.chat-visual { position: relative; height: 550px; }
.phone-chat { top: 0; left: 16%; width: 265px; height: 545px; transform: rotate(-3deg); }
.message-bubble { position: absolute; z-index: 5; padding: 12px 18px; color: var(--ink); border-radius: 18px; background: white; box-shadow: var(--shadow); font-weight: 700; }
.message-one { top: 32%; left: -3%; transform: rotate(-4deg); }
.message-two { left: calc(16% + 215px); right: auto; bottom: 26%; color: white; background: var(--purple); transform: rotate(4deg); }
.chat-section .showcase-copy > p:not(.kicker) { color: #bcb6c4; }
.chat-section blockquote { margin: 28px 0 0; padding-left: 20px; color: #d3a7f3; border-left: 2px solid var(--lavender); font-family: "Segoe Script", cursive; font-size: 18px; }

.profiles { background: #fff; overflow: hidden; }
.profiles .section-head { display: block; margin-bottom: 25px; }
.profiles .section-head > div { max-width: 670px; }
.profile-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 240px)); justify-content: center; gap: 20px; align-items: start; }
.profile-shot { position: relative; width: 100%; height: auto; margin: 0; overflow: hidden; border: 1px solid var(--border); border-radius: 28px; background: var(--pale); box-shadow: 0 20px 50px rgba(58,35,81,.1); }
.profile-shot.raised { margin-top: -35px; }
.profile-shot img { width: 100%; height: auto; object-fit: contain; }

.vision { position: relative; min-height: 500px; display: grid; place-items: center; color: white; background: var(--purple-dark); overflow: hidden; }
.vision::before { content: "GET OFFLINE"; position: absolute; left: 50%; top: 50%; color: rgba(255,255,255,.035); font-size: 15vw; font-weight: 900; white-space: nowrap; transform: translate(-50%,-50%); }
.vision-orb { position: absolute; right: -8%; top: -20%; width: 540px; height: 540px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #c790ed, #6f3dc2 52%, #3c1e7f); opacity: .8; }
.vision-inner { position: relative; z-index: 2; max-width: 840px; margin: auto; text-align: center; }
.kicker.light { color: #d7b5f2; }
.vision h2 { font-size: clamp(56px, 6.5vw, 84px); }
.vision p:not(.kicker) { max-width: 650px; margin: 25px auto; color: #d2c9dc; font-size: 17px; }
.vision p strong { color: white; text-transform: uppercase; }
.city-pill { display: inline-flex; align-items: center; gap: 12px; padding: 12px 17px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(255,255,255,.07); font-size: 13px; }

.funding { background: var(--pale); }
.funding-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 65px; }
.funding-title .section-number { margin-bottom: 28px; }
.funding-title .kicker { margin-bottom: 20px; }
.funding-copy { padding-top: 45px; color: var(--muted); font-size: 17px; }
.funding-copy p { padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.funding-copy strong { color: var(--ink); }

.download { padding-bottom: 58px; }
.download-page .download { padding-top: 108px; }
.download-card { position: relative; min-height: 470px; padding: 48px 10%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: white; border-radius: 34px; text-align: center; background: linear-gradient(145deg, #8c55ce, #4c2399); overflow: hidden; }
.download-card::before, .download-card::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; }
.download-card::before { width: 500px; height: 500px; left: -200px; bottom: -270px; }
.download-card::after { width: 400px; height: 400px; right: -160px; top: -230px; }
.download-logo { position: relative; z-index: 2; width: 72px; height: 72px; margin-bottom: 18px; border-radius: 20px; object-fit: cover; box-shadow: 0 18px 40px rgba(28,7,71,.28); }
.download-card h2 { position: relative; z-index: 2; font-size: clamp(48px, 5.8vw, 70px); }
.download-card > p:not(.kicker) { position: relative; z-index: 2; max-width: 670px; margin: 18px auto 24px; color: #e3d7ed; font-size: 16px; }
.store-buttons { position: relative; z-index: 2; display: flex; justify-content: center; gap: 13px; }
.store-button { min-width: 190px; height: 62px; padding: 8px 18px; display: flex; align-items: center; gap: 12px; color: white; border: 1px solid rgba(255,255,255,.22); border-radius: 12px; background: #09090b; text-align: left; transition: transform .2s ease, background .2s ease; }
.store-button:hover { transform: translateY(-3px); background: #19171d; }
.store-button svg { width: 28px; height: 33px; flex: none; }
.store-button span { font-size: 20px; font-weight: 600; line-height: 1.1; }
.store-button small { display: block; margin-bottom: 2px; font-size: 9px; font-weight: 500; letter-spacing: .06em; }
.availability { position: relative; z-index: 2; margin-top: 16px; color: #cdbdde; }

.site-footer { padding: 52px 0 25px; color: white; background: #111019; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 48px; padding-bottom: 45px; }
.brand-light > span > span { color: var(--lavender); }
.footer-brand p { margin: 20px 0 0; color: #898491; }
.footer-column { display: flex; flex-direction: column; gap: 9px; color: #aaa5b1; font-size: 14px; }
.footer-column h3 { margin-bottom: 12px; color: white; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.footer-column a:hover { color: var(--lavender); }
.footer-bottom { padding-top: 25px; display: flex; justify-content: space-between; color: #77727f; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; }
.heart { color: var(--lavender); font-size: 18px; }

@media (max-width: 980px) {
  :root { --container: min(100% - 36px, 760px); }
  .section { padding: 68px 0; }
  .main-nav { position: fixed; left: 18px; right: 18px; top: 76px; padding: 24px; display: none; flex-direction: column; align-items: flex-start; gap: 20px; border: 1px solid var(--border); border-radius: 20px; background: rgba(255,255,255,.97); box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .menu-button { display: block; }
  .button-small { display: none; }
  .hero { min-height: 1110px; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 65px; }
  .hero-copy { max-width: 660px; }
  .hero-visual { min-height: 620px; }
  .phone-hero { left: 50%; transform: translateX(-50%) rotate(2deg); }
  .card-people { left: 8%; }
  .card-plan { right: 8%; }
  .section-head { grid-template-columns: 1fr 2fr; }
  .section-head > p { grid-column: 2; }
  .steps-grid { grid-template-columns: 1fr; }
  .step { min-height: 170px; border-right: 0; border-bottom: 1px solid var(--border); }
  .step h3 { margin-top: 8px; }
  .showcase-grid, .chat-grid { grid-template-columns: 1fr; gap: 45px; }
  .showcase-copy { max-width: 630px; }
  .phones-stage { order: 2; }
  .value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .value-card:nth-child(n) { grid-column: auto; }
  .chat-visual { order: 2; }
  .profile-gallery { grid-template-columns: repeat(3, minmax(0, 220px)); gap: 16px; }
  .funding-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-column:last-child { grid-column: 2; }
}

@media (max-width: 640px) {
  :root { --container: calc(100% - 28px); --radius: 24px; }
  .section { padding: 54px 0; }
  .site-header { height: 70px; }
  .download-page .download { padding-top: 88px; }
  .brand { font-size: 23px; }
  .brand img { width: 40px; height: 40px; }
  .language svg:first-child { display: none; }
  .hero { min-height: auto; padding-top: 70px; }
  .orb-one { top: 9%; }
  .hero-grid { min-height: auto; padding-top: 24px; gap: 6rem; }
  .hero-copy { padding-bottom: 0; text-align: center; }
  .hero-copy .eyebrow { width: max-content; display: flex; margin: 0 auto 56px 0; }
  h1 { font-size: clamp(54px, 15vw, 68px); }
  .hero-copy h1 { margin-bottom: 56px; }
  h2 { font-size: clamp(38px, 10.5vw, 50px); }
  .hero-lead { margin: 0 auto 22px; font-size: 17px; }
  .hero-actions { width: 100%; align-items: center; justify-content: center; flex-direction: column; gap: 12px; text-align: center; }
  .hero-actions .button,
  .hero-actions .text-link { width: max-content; margin-inline: auto; }
  .trust-row { margin-top: 32px; }
  .hero-visual { min-height: 460px; }
  .phone { border-radius: 34px; padding: 6px; }
  .phone img { border-radius: 28px; }
  .phone-hero { width: 245px; height: 500px; bottom: -10px; }
  .phone-speaker { top: 12px; height: 17px; }
  .floating-card { width: 145px; padding: 11px; }
  .card-people { left: -3%; top: 40%; }
  .card-plan { right: -3%; bottom: 13%; }
  .hero-caption { display: none; }
  .section-head, .section-head.compact { grid-template-columns: 1fr; gap: 18px; margin-bottom: 30px; }
  .section-head > p { grid-column: auto; }
  .intro { padding-block: 44px; }
  .intro .section-head { margin-bottom: 22px; }
  .section-number { margin-bottom: 25px; }
  .step { padding: 27px; }
  .phones-stage { min-height: 480px; }
  .phone-front, .phone-back { width: 215px; height: 465px; }
  .phone-front { left: 0; }
  .phone-back { right: 0; }
  .phones-stage .scribble { display: none; }
  .value-grid { grid-template-columns: 1fr; }
  .values { padding-block: 48px; }
  .values .section-head { margin-bottom: 26px; }
  .values .section-head h2 { font-size: 39px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-card:nth-child(n) { grid-column: auto; min-height: 215px; }
  .chat-visual { height: 500px; }
  .phone-chat { left: 50%; width: 245px; height: 500px; transform: translateX(-50%) rotate(-2deg); }
  .message-one { left: -3%; }
  .message-two { left: auto; right: -3%; }
  .profile-gallery { width: auto; margin-right: -14px; padding: 15px 14px 35px 0; display: flex; justify-content: flex-start; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .profile-gallery::-webkit-scrollbar { display: none; }
  .profile-shot { flex: 0 0 76vw; border-radius: 20px; scroll-snap-align: start; }
  .profile-shot.raised { margin-top: 0; }
  .vision { min-height: 480px; }
  .vision h2 { font-size: 15vw; }
  .funding-grid { grid-template-columns: 1fr; gap: 20px; }
  .funding-copy { padding-top: 10px; font-size: 17px; }
  .download { padding-inline: 8px; }
  .download-card { width: 100%; min-height: 540px; padding: 42px 20px; border-radius: 28px; }
  .download-logo { width: 76px; height: 76px; }
  .store-buttons { width: 100%; flex-direction: column; align-items: center; }
  .store-button { width: min(100%, 240px); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: auto; }
  .footer-bottom { gap: 15px; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
