:root {
  --bg: #15161b;
  --panel: #1d1e25;
  --panel-strong: #252630;
  --line: rgba(255,255,255,.12);
  --muted: #9b9eae;
  --text: #f6f7f3;
  --lime: #a2ed62;
  --lime-soft: #d6ff9c;
  --blue: #3b82f6;
  --violet: #8b5cf6;
  --radius: 24px;
  --max: 1160px;
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--bg); overflow-x: hidden; }
body::before { content: ""; position: fixed; inset: 0; pointer-events: none; opacity: .22; background-image: radial-gradient(rgba(255,255,255,.16) .6px, transparent .6px); background-size: 5px 5px; mask-image: linear-gradient(to bottom, #000, transparent 82%); }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.site-glow { position: absolute; z-index: -1; pointer-events: none; border-radius: 50%; filter: blur(12px); opacity: .2; }
.site-glow--one { top: 90px; right: -160px; width: 620px; height: 620px; background: radial-gradient(circle, var(--blue), transparent 68%); }
.site-glow--two { top: 660px; left: -230px; width: 600px; height: 600px; background: radial-gradient(circle, var(--violet), transparent 68%); opacity: .12; }
.section-shell { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }

.site-header { width: min(var(--max), calc(100% - 48px)); min-height: 88px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; position: relative; z-index: 10; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.brand img { width: 42px; height: 42px; object-fit: contain; border-radius: 12px; }
.brand span { font-size: 1.05rem; }
.brand small { display: block; margin-top: 5px; color: var(--muted); font-size: .62rem; font-weight: 600; letter-spacing: .01em; }
.site-nav { display: flex; align-items: center; gap: 28px; color: var(--muted); font-size: .82rem; font-weight: 700; }
.site-nav a { text-decoration: none; transition: color .2s ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--text); }
.site-nav .button { color: #111; }
.menu-toggle { display: none; border: 1px solid var(--line); background: var(--panel); color: var(--text); padding: 10px 13px; border-radius: 12px; cursor: pointer; font-size: .78rem; font-weight: 750; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 20px; border: 1px solid transparent; border-radius: 14px; font-size: .84rem; font-weight: 800; text-decoration: none; cursor: pointer; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--small { min-height: 40px; padding: 0 15px; border-radius: 11px; font-size: .75rem; }
.button--lime { background: var(--lime); color: #13170e; box-shadow: 0 12px 38px rgba(162,237,98,.18); }
.button--lime:hover { background: var(--lime-soft); }
.button--outline { border-color: rgba(255,255,255,.22); color: var(--text); background: rgba(255,255,255,.02); }
.button--outline:hover { border-color: var(--lime); background: rgba(162,237,98,.08); }
.button--ghost { border-color: var(--line); color: var(--muted); min-height: 42px; }

.hero { min-height: 690px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(400px, .84fr); gap: 34px; align-items: center; padding: 70px 0 100px; }
.hero__copy { max-width: 650px; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 20px; color: var(--lime); text-transform: uppercase; letter-spacing: .15em; font-size: .68rem; font-weight: 850; }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(162,237,98,.1), 0 0 22px var(--lime); }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 26px; font-size: clamp(4.1rem, 8vw, 7.6rem); line-height: .86; letter-spacing: -.095em; font-weight: 850; }
h1 span, h2 span { color: var(--lime); }
.hero__lead { max-width: 510px; color: var(--muted); font-size: 1.08rem; line-height: 1.65; }
.hero__actions { display: flex; gap: 12px; margin: 32px 0 34px; flex-wrap: wrap; }
.trust-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; color: #c4c5ce; font-size: .72rem; font-weight: 700; }
.trust-row span { display: inline-flex; align-items: center; gap: 6px; }
.trust-row i { color: var(--lime); font-style: normal; font-size: 1rem; }

.hero__visual { min-height: 580px; position: relative; display: grid; place-items: center; }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.11); border-radius: 50%; transform: rotate(-20deg); }
.orbit::after { content: ""; position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 16px var(--lime); }
.orbit--one { width: 510px; height: 190px; top: 38%; left: 3%; }
.orbit--one::after { top: 4px; left: 35%; }
.orbit--two { width: 430px; height: 190px; top: 34%; left: 12%; transform: rotate(32deg); border-color: rgba(59,130,246,.25); }
.orbit--two::after { right: 12%; bottom: 16%; background: var(--blue); box-shadow: 0 0 16px var(--blue); }
.phone-mockup { width: min(296px, 65%); padding: 10px; border: 1px solid rgba(255,255,255,.2); border-radius: 36px; background: #0e0f13; box-shadow: 0 38px 100px rgba(0,0,0,.45), 0 0 0 8px rgba(255,255,255,.025); position: relative; transform: rotate(4deg); z-index: 2; }
.phone-mockup__notch { width: 85px; height: 22px; border-radius: 0 0 15px 15px; background: #0e0f13; position: absolute; z-index: 3; left: 50%; top: 10px; transform: translateX(-50%); }
.phone-mockup__screen { min-height: 550px; padding: 15px 12px 14px; border-radius: 27px; overflow: hidden; background: linear-gradient(155deg, #252831, #15161b 53%, #22222a); }
.mock-status { display: flex; justify-content: space-between; color: rgba(255,255,255,.66); font-size: .48rem; font-weight: 700; padding: 2px 8px 18px; }
.mock-topbar { display: flex; align-items: center; justify-content: space-between; padding: 0 7px 15px; color: #fff; font-size: .82rem; }
.mock-online { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 10px var(--lime); }
.mock-heading small { color: var(--muted); font-size: .54rem; }
.mock-heading h2 { margin: 7px 0 13px; font-size: 1.52rem; line-height: .98; letter-spacing: -.06em; }
.mock-heading em { color: var(--lime); font-style: normal; }
.mock-art { height: 225px; border-radius: 14px; overflow: hidden; background: #232a32; }
.mock-art img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.mock-prompt { display: flex; align-items: center; gap: 7px; margin-top: 11px; padding: 7px; border: 1px solid var(--line); border-radius: 11px; color: var(--muted); font-size: .52rem; }
.mock-avatar { display: grid; place-items: center; width: 19px; height: 19px; border-radius: 7px; background: var(--lime); color: #161a12; font-size: .6rem; font-weight: 900; }
.mock-prompt b { margin-left: auto; color: var(--lime); font-size: .8rem; }
.mock-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; margin-top: 10px; }
.mock-tabs span { padding: 7px 3px; border: 1px solid var(--line); border-radius: 8px; text-align: center; color: var(--muted); font-size: .47rem; font-weight: 750; }
.mock-tabs .is-active { border-color: var(--lime); color: #10150c; background: var(--lime); }
.floating-card { display: flex; align-items: center; gap: 10px; position: absolute; z-index: 3; padding: 11px 13px; border: 1px solid var(--line); border-radius: 14px; background: rgba(28,29,36,.9); backdrop-filter: blur(15px); box-shadow: 0 15px 40px rgba(0,0,0,.3); font-size: .68rem; }
.floating-card b, .floating-card small { display: block; }
.floating-card small { margin-top: 4px; color: var(--muted); font-size: .58rem; }
.floating-card--result { top: 17%; right: 0; }
.floating-card--private { bottom: 14%; left: 0; }
.floating-icon, .shield { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 9px; background: var(--lime); color: #161a12; font-weight: 900; }
.shield { background: #27312a; color: var(--lime); border: 1px solid rgba(162,237,98,.35); }

.signal-bar { display: grid; grid-template-columns: 1fr repeat(3, auto); align-items: center; gap: 40px; padding: 21px 24px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); font-size: .78rem; font-weight: 700; }
.signal-bar p { margin: 0; color: var(--text); font-size: .86rem; }
.signal-bar div { display: flex; align-items: center; gap: 10px; }
.signal-bar div span { color: var(--lime); font-size: .66rem; }

.section-block { padding-top: 150px; }
.section-heading { max-width: 650px; }
.section-heading h2, .download-section h2, .privacy-callout h2 { margin-bottom: 20px; font-size: clamp(2.7rem, 5.5vw, 5rem); line-height: .94; letter-spacing: -.08em; }
.section-heading > p:last-child { max-width: 560px; color: var(--muted); font-size: 1rem; line-height: 1.65; }
.feature-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 14px; margin-top: 54px; }
.feature-card { min-height: 340px; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018)); position: relative; overflow: hidden; }
.feature-card--large { display: flex; flex-direction: column; background: linear-gradient(145deg, rgba(162,237,98,.14), rgba(255,255,255,.02) 60%); }
.feature-card::after { content: ""; position: absolute; width: 160px; height: 160px; right: -55px; bottom: -65px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 22px rgba(255,255,255,.015), 0 0 0 44px rgba(255,255,255,.012); }
.feature-card__number { color: var(--muted); font-size: .66rem; font-weight: 800; }
.feature-card__icon { display: grid; place-items: center; width: 45px; height: 45px; margin: 32px 0 22px; border-radius: 14px; background: var(--lime); color: #151a0f; font-size: 1.25rem; }
.feature-card__icon--blue { background: #273b62; color: #8eb6ff; }
.feature-card__icon--violet { background: #3a2d57; color: #c6aaff; }
.feature-card h3 { margin-bottom: 12px; font-size: 1.3rem; letter-spacing: -.04em; }
.feature-card p { max-width: 280px; min-height: 64px; color: var(--muted); font-size: .84rem; line-height: 1.55; }
.text-link { position: relative; z-index: 1; color: var(--text); font-size: .76rem; font-weight: 800; text-decoration: none; }
.text-link span { color: var(--lime); padding-left: 6px; }
.mini-prompt { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 14px; position: absolute; right: 24px; bottom: 17px; left: 24px; border: 1px solid rgba(162,237,98,.23); border-radius: 12px; background: rgba(10,15,10,.38); color: #cbd2c4; font-size: .65rem; }
.mini-prompt span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-prompt b { flex: none; color: var(--lime); font-size: .59rem; }
.feature-card--large .text-link { margin-top: auto; }
.feature-card--large .mini-prompt { position: relative; inset: auto; width: 100%; margin-top: 14px; }

.showcase-block { padding-bottom: 20px; }
.section-heading--split { max-width: none; display: grid; grid-template-columns: 1fr .85fr; gap: 70px; align-items: end; }
.section-heading--split > p { margin: 0 0 7px; }
.screen-gallery { display: grid; grid-template-columns: repeat(3, 1fr); align-items: end; gap: 18px; margin-top: 54px; }
.screen-card { margin: 0; padding: 13px; border: 1px solid var(--line); border-radius: 20px; background: #1b1c22; box-shadow: 0 22px 55px rgba(0,0,0,.18); }
.screen-card--featured { transform: translateY(-34px); background: linear-gradient(145deg, #242a29, #1b1c22); border-color: rgba(162,237,98,.27); }
.screen-card__top { display: flex; justify-content: space-between; padding: 1px 2px 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .11em; font-size: .58rem; font-weight: 800; }
.screen-card__top span:first-child { color: var(--lime); }
.screen-card img { width: 100%; aspect-ratio: 9 / 20; object-fit: cover; object-position: top; border-radius: 12px; border: 1px solid rgba(255,255,255,.08); }
.screen-card figcaption { display: flex; flex-direction: column; gap: 4px; padding: 15px 2px 2px; }
.screen-card figcaption b { font-size: .95rem; letter-spacing: -.03em; }
.screen-card figcaption span { color: var(--muted); font-size: .7rem; line-height: 1.45; }

.workflow-block { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.workflow-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.workflow-item { display: grid; grid-template-columns: 55px 1fr 25px; align-items: center; gap: 18px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.workflow-item > span { color: var(--lime); font-size: .72rem; font-weight: 850; }
.workflow-item h3 { margin: 0 0 7px; font-size: 1.25rem; letter-spacing: -.04em; }
.workflow-item p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.5; }
.workflow-item > b { color: var(--lime); font-size: 1.05rem; font-weight: 500; }

.privacy-callout { display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center; margin-top: 150px; padding: 32px; border: 1px solid rgba(162,237,98,.28); border-radius: var(--radius); background: linear-gradient(110deg, rgba(162,237,98,.11), rgba(255,255,255,.025)); }
.privacy-callout__mark { display: grid; place-items: center; width: 53px; height: 53px; border-radius: 16px; background: var(--lime); color: #11170d; font-size: 1.4rem; font-weight: 900; }
.privacy-callout .eyebrow { margin-bottom: 11px; }
.privacy-callout h2 { max-width: 620px; margin-bottom: 9px; font-size: clamp(1.7rem, 3vw, 2.75rem); }
.privacy-callout p:last-child { max-width: 620px; margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.5; }
.privacy-callout .button { white-space: nowrap; }

.download-section { min-height: 520px; display: grid; grid-template-columns: 1fr .7fr; align-items: center; gap: 50px; margin-top: 150px; padding: 76px 80px; border-radius: 30px; overflow: hidden; position: relative; background: #20232a; }
.download-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 90% 20%, rgba(59,130,246,.3), transparent 35%), radial-gradient(circle at 15% 95%, rgba(162,237,98,.12), transparent 36%); }
.download-section__copy, .download-section__art { position: relative; z-index: 1; }
.download-section h2 { font-size: clamp(3.1rem, 5.4vw, 5.5rem); }
.download-section__copy > p:not(.eyebrow) { max-width: 480px; margin-bottom: 27px; color: var(--muted); line-height: 1.6; }
.download-badges { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.store-badge { min-width: 175px; display: inline-flex; align-items: center; gap: 10px; padding: 10px 15px; border: 1px solid rgba(255,255,255,.24); border-radius: 12px; background: #111216; text-decoration: none; transition: transform .2s ease, border-color .2s ease; }
.store-badge:hover { transform: translateY(-2px); border-color: var(--lime); }
.store-badge__icon { color: var(--lime); font-size: 1.25rem; }
.store-badge small, .store-badge b { display: block; line-height: 1; }
.store-badge small { color: #a7a8ae; font-size: .47rem; letter-spacing: .1em; }
.store-badge b { margin-top: 5px; font-size: .95rem; letter-spacing: -.04em; }
.download-section__art { display: grid; place-items: center; min-height: 330px; }
.download-section__art img { width: 185px; height: 185px; border-radius: 48px; box-shadow: 0 20px 80px rgba(0,0,0,.45); position: relative; z-index: 2; }
.download-ring { position: absolute; width: 270px; height: 270px; border: 1px solid rgba(162,237,98,.24); border-radius: 50%; transform: rotate(22deg); }
.download-ring::after { content: ""; position: absolute; width: 9px; height: 9px; right: 23px; top: 18px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 18px var(--lime); }
.download-ring--two { width: 360px; height: 170px; transform: rotate(-25deg); border-color: rgba(59,130,246,.35); }
.download-ring--two::after { right: auto; left: 20px; top: 58px; background: var(--blue); box-shadow: 0 0 18px var(--blue); }

.faq-section { padding-bottom: 130px; }
.faq-list { margin-top: 48px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { display: flex; justify-content: space-between; gap: 20px; padding: 21px 0; cursor: pointer; list-style: none; font-size: .98rem; font-weight: 750; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { color: var(--lime); font-size: 1.3rem; font-weight: 400; transition: transform .2s ease; }
.faq-item[open] summary span { transform: rotate(45deg); }
.faq-item p { max-width: 680px; margin: -5px 0 22px; color: var(--muted); font-size: .84rem; line-height: 1.65; }
.faq-item p a { color: var(--lime); }

.site-footer { display: flex; justify-content: space-between; gap: 30px; padding: 27px 0 48px; border-top: 1px solid var(--line); }
.footer-brand .brand img { width: 35px; height: 35px; border-radius: 10px; }
.footer-brand p { margin: 15px 0 0; color: var(--muted); font-size: .66rem; }
.site-footer nav { display: flex; align-items: center; justify-content: flex-end; gap: 20px; flex-wrap: wrap; color: var(--muted); font-size: .7rem; font-weight: 700; }
.site-footer nav a { text-decoration: none; }
.site-footer nav a:hover { color: var(--lime); }
.toast { position: fixed; z-index: 20; bottom: 22px; left: 50%; padding: 12px 16px; border: 1px solid rgba(162,237,98,.35); border-radius: 12px; background: #232a24; color: var(--lime-soft); font-size: .76rem; font-weight: 700; box-shadow: 0 14px 40px rgba(0,0,0,.3); transform: translate(-50%, 20px); opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.is-visible { opacity: 1; transform: none; }
  .reveal--delay-short { transition-delay: .08s; }
  .reveal--delay { transition-delay: .16s; }
}

/* Legal and support pages share the same small static shell. */
.legal-main { padding: 70px 0 110px; }
.legal-hero { max-width: 790px; padding-bottom: 42px; }
.legal-hero h1 { font-size: clamp(3rem, 7vw, 6.6rem); margin-bottom: 20px; }
.legal-hero p { max-width: 680px; color: var(--muted); line-height: 1.65; }
.legal-card { max-width: 820px; padding: clamp(24px, 5vw, 48px); border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.035); }
.legal-card section + section { margin-top: 38px; padding-top: 34px; border-top: 1px solid var(--line); }
.legal-card h2 { margin-bottom: 13px; font-size: 1.2rem; letter-spacing: -.035em; }
.legal-card h3 { margin: 22px 0 8px; font-size: .95rem; }
.legal-card p, .legal-card li, .legal-card address { color: var(--muted); font-size: .86rem; line-height: 1.75; }
.legal-card ul { padding-left: 20px; }
.legal-card a { color: var(--lime); }
.legal-card a.button--lime { color: #13170e; }
.legal-meta { margin: 0; color: var(--muted); font-size: .72rem; }
.legal-nav { display: flex; gap: 14px; flex-wrap: wrap; margin: 0 0 45px; }
.legal-nav a { color: var(--muted); font-size: .75rem; font-weight: 750; text-decoration: none; }
.legal-nav a:hover { color: var(--lime); }
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 42px; }
.support-card { padding: 23px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.035); }
.support-card h2 { margin: 0 0 10px; font-size: 1rem; }
.support-card p { margin: 0; color: var(--muted); font-size: .77rem; line-height: 1.55; }
.support-card a { display: inline-block; margin-top: 15px; color: var(--lime); font-size: .76rem; font-weight: 800; }
.support-form { margin-top: 14px; }
.support-form label { display: block; margin-bottom: 8px; color: var(--muted); font-size: .76rem; font-weight: 750; }
.support-form input, .support-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 11px; padding: 12px 13px; margin-bottom: 14px; background: #15161b; color: var(--text); font: inherit; outline: none; }
.support-form textarea { min-height: 130px; resize: vertical; }
.support-form input:focus, .support-form textarea:focus { border-color: var(--lime); }

@media (max-width: 880px) {
  .site-header, .section-shell { width: min(var(--max), calc(100% - 34px)); }
  .site-nav { gap: 16px; }
  .hero { grid-template-columns: 1fr .75fr; gap: 10px; }
  .hero__visual { min-height: 500px; }
  .phone-mockup { width: 255px; }
  .phone-mockup__screen { min-height: 485px; }
  .floating-card { transform: scale(.86); }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-card--large { grid-column: span 2; }
  .workflow-block { gap: 35px; }
  .download-section { padding: 60px 42px; }
}

@media (max-width: 680px) {
  .site-header { min-height: 76px; }
  .menu-toggle { display: block; }
  .site-nav { display: none; position: absolute; top: 67px; right: 0; left: 0; padding: 13px; border: 1px solid var(--line); border-radius: 16px; background: #202127; box-shadow: 0 22px 45px rgba(0,0,0,.35); }
  .site-nav.is-open { display: grid; gap: 0; }
  .site-nav a { padding: 12px 9px; }
  .site-nav .button { margin-top: 6px; }
  .hero { display: flex; flex-direction: column; align-items: stretch; padding: 64px 0 82px; }
  h1 { font-size: clamp(4rem, 18vw, 6.5rem); }
  .hero__lead { font-size: .98rem; }
  .hero__visual { min-height: 500px; margin-top: 14px; }
  .orbit--one { width: 370px; height: 145px; left: 0; }
  .orbit--two { width: 330px; height: 145px; left: 5%; }
  .floating-card--result { right: -3px; }
  .floating-card--private { left: -5px; }
  .signal-bar { grid-template-columns: 1fr 1fr; gap: 15px; padding: 18px 2px; }
  .signal-bar p { grid-column: span 2; }
  .section-block { padding-top: 100px; }
  .section-heading h2, .download-section h2, .privacy-callout h2 { font-size: 3.1rem; }
  .feature-grid, .screen-gallery, .workflow-block, .section-heading--split, .download-section { grid-template-columns: 1fr; }
  .feature-card--large { grid-column: auto; }
  .feature-card { min-height: 300px; }
  .section-heading--split { gap: 12px; }
  .screen-card--featured { transform: none; }
  .screen-gallery { gap: 14px; }
  .screen-card { display: grid; grid-template-columns: 1fr .9fr; gap: 13px; align-items: start; }
  .screen-card__top { grid-column: span 2; }
  .screen-card figcaption { padding: 10px 2px; align-self: center; }
  .screen-card img { aspect-ratio: 9 / 16; }
  .workflow-block { gap: 40px; }
  .privacy-callout { grid-template-columns: auto 1fr; padding: 23px; }
  .privacy-callout .button { grid-column: span 2; justify-self: start; }
  .download-section { gap: 10px; margin-top: 100px; padding: 44px 24px; }
  .download-section__art { min-height: 250px; }
  .download-section__art img { width: 140px; height: 140px; border-radius: 35px; }
  .download-ring { width: 210px; height: 210px; }
  .download-ring--two { width: 280px; height: 135px; }
  .faq-section { padding-bottom: 82px; }
  .site-footer { display: block; padding-bottom: 35px; }
  .site-footer nav { justify-content: flex-start; margin-top: 25px; }
  .legal-main { padding-top: 45px; }
  .legal-hero h1 { font-size: 4rem; }
  .support-grid { grid-template-columns: 1fr; }
}
