:root {
    --night: #080b14;
    --night-soft: #0f1522;
    --surface: #141c2b;
    --surface-high: #1a2537;
    --cyan: #35c2ff;
    --blue: #2d6bff;
    --mint: #2fd9a4;
    --white: #ffffff;
    --paper: #f3f6fc;
    --ink: #0c1220;
    --muted: #667083;
    --line: rgba(12, 18, 32, .12);
    --shell: min(1180px, calc(100vw - 48px));
    --radius: 30px;
    --ease: cubic-bezier(.2, .75, .2, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body,
a {
    -webkit-tap-highlight-color: transparent;
}

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

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

.shell {
    width: var(--shell);
    margin-inline: auto;
}

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

.skip-link:focus {
    transform: none;
}

.site-header {
    position: absolute;
    z-index: 20;
    top: 0;
    right: 0;
    left: 0;
    color: white;
}

.header-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.product-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    font-size: 18px;
    font-weight: 450;
    letter-spacing: -.45px;
}

.product-brand img {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    box-shadow: 0 10px 26px rgba(0, 90, 255, .18);
}

.product-brand strong {
    font-weight: 780;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: rgba(255, 255, 255, .64);
    font-size: 13px;
    font-weight: 700;
}

.site-nav a,
.language-link {
    transition: color .2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.language-link:hover,
.language-link:focus-visible {
    color: white;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.language-link {
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
}

.header-download {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 17px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
    font-size: 13px;
    font-weight: 760;
    transition: border-color .2s ease, background .2s ease;
}

.header-download:hover,
.header-download:focus-visible {
    border-color: rgba(255, 255, 255, .42);
    background: rgba(255, 255, 255, .13);
}

.hero {
    min-height: 860px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 154px 0 96px;
    background:
        linear-gradient(rgba(8, 11, 20, .42), rgba(8, 11, 20, .42)),
        radial-gradient(circle at 18% 20%, #102b4c 0, transparent 33%),
        linear-gradient(145deg, #080b14 0%, #070b13 48%, #0a111e 100%);
    color: white;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .13;
    background-image: radial-gradient(rgba(255, 255, 255, .6) .65px, transparent .65px);
    background-size: 8px 8px;
    mask-image: linear-gradient(110deg, black, transparent 62%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    pointer-events: none;
}

.hero-glow-one {
    width: 520px;
    height: 520px;
    right: 1%;
    top: 19%;
    background: rgba(45, 107, 255, .16);
    box-shadow: 0 0 180px rgba(53, 194, 255, .12);
}

.hero-glow-two {
    width: 260px;
    height: 260px;
    left: -8%;
    bottom: -12%;
    background: rgba(53, 194, 255, .09);
    box-shadow: 0 0 140px rgba(53, 194, 255, .08);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    gap: 80px;
    align-items: center;
}

.kicker {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 22px;
    color: var(--cyan);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.kicker > span {
    width: 24px;
    height: 1px;
    background: currentColor;
}

.kicker-dark {
    color: #267dc2;
}

.hero h1,
.section-heading h2,
.privacy-copy h2,
.purchase-card h2,
.final-cta h2 {
    margin: 0;
    font-size: clamp(54px, 6.2vw, 88px);
    font-weight: 780;
    line-height: .96;
    letter-spacing: -.068em;
}

.hero h1 em {
    color: var(--cyan);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -.055em;
}

.hero-lead {
    max-width: 620px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, .65);
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.68;
}

.store-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.store-button {
    min-width: 185px;
    min-height: 61px;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding: 9px 17px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 16px;
    background: white;
    color: #0c1220;
    box-shadow: 0 15px 34px rgba(0, 0, 0, .2);
    transition: transform .22s var(--ease), box-shadow .22s ease;
}

.store-button:hover,
.store-button:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 19px 42px rgba(0, 0, 0, .3);
}

.store-button > span:last-child {
    display: grid;
    line-height: 1.05;
}

.store-button small {
    color: #606a7b;
    font-size: 10px;
    font-weight: 650;
}

.store-button strong {
    margin-top: 4px;
    font-size: 16px;
    font-weight: 810;
    letter-spacing: -.25px;
}

.store-symbol {
    width: 28px;
    height: 30px;
    flex: 0 0 28px;
    display: grid;
    place-items: center;
}

.apple-symbol {
    position: relative;
    color: #0c1220;
    font-size: 31px;
    line-height: 1;
}

.apple-symbol::after {
    content: "";
    position: absolute;
    top: 0;
    right: 5px;
    width: 8px;
    height: 4px;
    border-radius: 100% 0 100% 0;
    background: #0c1220;
    transform: rotate(-25deg);
}

.play-symbol {
    width: 0;
    height: 0;
    margin-left: 5px;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 24px solid var(--blue);
    filter: drop-shadow(-5px 0 0 var(--cyan));
}

.hero-note {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, .46);
    font-size: 12px;
}

.hero-visual {
    position: relative;
    min-height: 610px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.waveform {
    position: absolute;
    right: 24%;
    left: -34%;
    top: 47%;
    height: 128px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    opacity: .66;
    filter: drop-shadow(0 0 10px rgba(53, 194, 255, .65));
}

.waveform i {
    width: 3px;
    height: 23%;
    border-radius: 8px;
    background: linear-gradient(var(--cyan), var(--blue));
}

.waveform i:nth-child(2n) { height: 44%; }
.waveform i:nth-child(3n) { height: 80%; }
.waveform i:nth-child(4n) { height: 33%; }
.waveform i:nth-child(5n) { height: 100%; }

.phone {
    position: relative;
    overflow: hidden;
    border: 8px solid #202735;
    border-radius: 46px;
    background: #070a13;
    box-shadow: 0 42px 90px rgba(0, 0, 0, .46), inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.phone::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1);
    pointer-events: none;
}

.phone-speaker {
    position: absolute;
    z-index: 2;
    top: 12px;
    left: 50%;
    width: 58px;
    height: 5px;
    border-radius: 999px;
    background: #313947;
    transform: translateX(-50%);
}

.phone img {
    width: 100%;
    height: auto;
}

.phone-hero {
    z-index: 2;
    width: min(350px, 73vw);
    transform: rotate(4deg);
    animation: phone-float 6s ease-in-out infinite;
}

.app-icon-card {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 62px;
    padding: 11px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 32px;
    background: rgba(18, 24, 38, .78);
    box-shadow: 0 22px 52px rgba(0, 0, 0, .42);
    backdrop-filter: blur(18px);
    transform: rotate(-7deg);
}

.app-icon-card img {
    width: 112px;
    height: 112px;
    border-radius: 25px;
}

.drop {
    position: absolute;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, .48);
    border-radius: 50% 50% 56% 44%;
    background: linear-gradient(145deg, rgba(255, 255, 255, .85), rgba(53, 194, 255, .45) 35%, rgba(45, 107, 255, .18));
    box-shadow: inset -5px -8px 12px rgba(3, 44, 102, .32), 0 5px 18px rgba(53, 194, 255, .25);
}

.drop-one {
    top: 9%;
    right: 8%;
    width: 25px;
    height: 25px;
}

.drop-two {
    top: 25%;
    right: 0;
    width: 14px;
    height: 14px;
}

.drop-three {
    right: 8%;
    bottom: 25%;
    width: 19px;
    height: 19px;
}

@keyframes phone-float {
    0%, 100% { transform: rotate(4deg) translateY(0); }
    50% { transform: rotate(3deg) translateY(-12px); }
}

.fact-strip {
    background: #0c111c;
    color: rgba(255, 255, 255, .72);
}

.fact-list {
    min-height: 86px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}

.fact-list span {
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border-right: 1px solid rgba(255, 255, 255, .09);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .02em;
}

.fact-list span:last-child {
    border-right: 0;
}

.fact-list i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 12px rgba(47, 217, 164, .55);
}

.section {
    padding: 126px 0;
}

.section-heading h2,
.privacy-copy h2,
.purchase-card h2,
.final-cta h2 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
}

.split-heading,
.screens-heading {
    display: grid;
    grid-template-columns: 1fr .7fr;
    gap: 90px;
    align-items: end;
}

.split-heading > p,
.screens-heading > p {
    margin: 0 0 6px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 66px;
}

.step-card {
    min-height: 310px;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: white;
    box-shadow: 0 12px 38px rgba(31, 50, 78, .06);
}

.step-number {
    color: #287ec2;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .08em;
}

.step-line {
    width: 100%;
    height: 1px;
    margin: 25px 0 48px;
    background: linear-gradient(90deg, var(--cyan), rgba(53, 194, 255, .05));
}

.step-card h3,
.feature-card h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -.035em;
}

.step-card p,
.feature-card p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.feature-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% -10%, rgba(53, 194, 255, .12), transparent 31%),
        var(--night);
    color: white;
}

.feature-section::after {
    content: "";
    position: absolute;
    right: -12%;
    bottom: -210px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(53, 194, 255, .16);
    border-radius: 50%;
    box-shadow: 0 0 0 80px rgba(53, 194, 255, .025), 0 0 0 160px rgba(53, 194, 255, .018);
}

.centered-heading {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.centered-heading .kicker {
    justify-content: center;
}

.feature-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 64px;
}

.feature-card {
    min-height: 275px;
    padding: 38px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .025));
}

.feature-card:nth-child(1) {
    background: linear-gradient(145deg, rgba(53, 194, 255, .16), rgba(45, 107, 255, .04));
}

.feature-card p {
    max-width: 52ch;
    color: rgba(255, 255, 255, .56);
}

.feature-symbol {
    min-width: 60px;
    min-height: 60px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 45px;
    padding: 0 12px;
    border: 1px solid rgba(53, 194, 255, .3);
    border-radius: 18px;
    background: rgba(53, 194, 255, .08);
    color: var(--cyan);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: -.03em;
}

.screens-section {
    overflow: hidden;
    background: #eaf0f8;
}

.screen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 70px;
    align-items: start;
}

.screen-card {
    margin: 0;
}

.screen-card-2 {
    margin-top: 56px;
}

.phone-gallery {
    border-width: 7px;
    border-radius: 42px;
    box-shadow: 0 30px 65px rgba(30, 47, 73, .18);
}

.screen-card figcaption {
    display: grid;
    gap: 5px;
    padding: 23px 12px 0;
}

.screen-card figcaption strong {
    font-size: 16px;
    letter-spacing: -.02em;
}

.screen-card figcaption span {
    color: var(--muted);
    font-size: 13px;
}

.privacy-section {
    position: relative;
    overflow: hidden;
    padding: 135px 0;
    background:
        radial-gradient(circle at 84% 50%, rgba(53, 194, 255, .16), transparent 30%),
        #090d17;
    color: white;
}

.privacy-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .11;
    background-image: linear-gradient(rgba(255, 255, 255, .16) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .16) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(circle at 78% 50%, black, transparent 43%);
}

.privacy-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr .78fr;
    gap: 110px;
    align-items: center;
}

.privacy-copy > p:not(.kicker) {
    max-width: 610px;
    margin: 27px 0 0;
    color: rgba(255, 255, 255, .6);
    font-size: 17px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 17px;
    margin-top: 28px;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 780;
}

.text-link span {
    font-size: 19px;
    transition: transform .2s ease;
}

.text-link:hover span {
    transform: translateX(4px);
}

.privacy-list {
    display: grid;
    gap: 13px;
}

.privacy-list div {
    min-height: 69px;
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 17px;
    background: rgba(255, 255, 255, .045);
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    font-weight: 650;
}

.privacy-list span {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    flex: 0 0 30px;
    border-radius: 50%;
    background: rgba(47, 217, 164, .13);
    color: var(--mint);
    font-weight: 900;
}

.purchase-section {
    background: var(--paper);
}

.purchase-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 20px;
}

.purchase-card,
.safety-card {
    min-height: 510px;
    border-radius: 34px;
}

.purchase-card {
    padding: 58px;
    background: linear-gradient(145deg, #245ffc, #32bafc);
    color: white;
}

.purchase-card .kicker {
    color: rgba(255, 255, 255, .72);
}

.purchase-card > p:not(.kicker) {
    max-width: 610px;
    margin: 27px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: 17px;
}

.mini-store-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
}

.mini-store-links a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    background: rgba(255, 255, 255, .09);
    font-size: 13px;
    font-weight: 780;
    transition: background .2s ease;
}

.mini-store-links a:hover {
    background: rgba(255, 255, 255, .16);
}

.safety-card {
    padding: 48px;
    border: 1px solid rgba(12, 18, 32, .1);
    background: white;
    box-shadow: 0 14px 45px rgba(31, 50, 78, .07);
}

.safety-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 33px;
    border-radius: 50%;
    background: #e8f7ff;
    color: #1684d1;
    font-weight: 900;
}

.safety-card h2 {
    margin: 0;
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -.045em;
}

.safety-card ul {
    display: grid;
    gap: 10px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.safety-card li {
    position: relative;
    padding-left: 22px;
    color: #394456;
    font-size: 14px;
}

.safety-card li::before {
    content: "";
    position: absolute;
    top: .7em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
}

.safety-card > p {
    margin: 27px 0 0;
    padding-top: 25px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px;
}

.final-cta {
    position: relative;
    overflow: hidden;
    padding: 130px 0;
    background: #080b14;
    color: white;
    text-align: center;
}

.final-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 820px;
    height: 820px;
    border: 1px solid rgba(53, 194, 255, .12);
    border-radius: 50%;
    box-shadow: 0 0 0 100px rgba(53, 194, 255, .025), 0 0 0 200px rgba(53, 194, 255, .016), inset 0 0 160px rgba(53, 194, 255, .05);
    transform: translate(-50%, -50%);
}

.final-cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.final-cta img {
    width: 112px;
    height: 112px;
    margin-bottom: 32px;
    border-radius: 27px;
    box-shadow: 0 25px 70px rgba(45, 107, 255, .32);
}

.final-cta .kicker {
    justify-content: center;
}

.final-cta h2 {
    max-width: 820px;
}

.final-cta-inner > p:not(.kicker) {
    max-width: 640px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, .57);
    font-size: 17px;
}

.store-buttons-centered {
    justify-content: center;
}

.site-footer {
    padding: 70px 0 28px;
    background: #06080e;
    color: white;
}

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

.footer-brand-column > p {
    max-width: 260px;
    margin: 19px 0 0;
    color: rgba(255, 255, 255, .42);
    font-size: 13px;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 10px;
    color: rgba(255, 255, 255, .49);
    font-size: 12px;
}

.footer-column strong {
    margin-bottom: 8px;
    color: white;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 62px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .34);
    font-size: 11px;
}

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

    .hero {
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr 380px;
        gap: 34px;
    }

    .hero h1 {
        font-size: clamp(50px, 7vw, 72px);
    }

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

    .app-icon-card {
        right: -22px;
    }

    .split-heading,
    .screens-heading,
    .privacy-grid {
        gap: 52px;
    }

    .purchase-card {
        padding: 44px;
    }

    .safety-card {
        padding: 40px;
    }

    .footer-grid {
        grid-template-columns: 1.4fr repeat(3, 1fr);
        gap: 28px;
    }
}

@media (max-width: 760px) {
    :root {
        --shell: min(100% - 32px, 620px);
    }

    .header-inner {
        min-height: 74px;
    }

    .product-brand span {
        display: none;
    }

    .header-download {
        display: none;
    }

    .hero {
        padding: 128px 0 76px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-copy .kicker,
    .hero-copy .store-buttons {
        justify-content: center;
    }

    .hero h1 {
        font-size: clamp(48px, 14vw, 68px);
    }

    .hero-lead {
        margin-inline: auto;
    }

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

    .phone-hero {
        width: min(330px, 80vw);
        transform: rotate(2deg);
    }

    @keyframes phone-float {
        0%, 100% { transform: rotate(2deg) translateY(0); }
        50% { transform: rotate(1deg) translateY(-9px); }
    }

    .app-icon-card {
        right: 0;
    }

    .waveform {
        right: 15%;
        left: -20%;
    }

    .fact-list {
        grid-template-columns: repeat(2, 1fr);
        padding-block: 13px;
    }

    .fact-list span {
        min-height: 46px;
        border-right: 0;
    }

    .section {
        padding: 88px 0;
    }

    .split-heading,
    .screens-heading,
    .privacy-grid,
    .purchase-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .split-heading > p,
    .screens-heading > p {
        font-size: 15px;
    }

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

    .step-grid,
    .feature-grid,
    .screen-grid {
        margin-top: 45px;
    }

    .step-card {
        min-height: 0;
    }

    .step-line {
        margin-bottom: 30px;
    }

    .feature-card {
        min-height: 0;
    }

    .feature-symbol {
        margin-bottom: 32px;
    }

    .screen-grid {
        grid-template-columns: 1fr;
        gap: 54px;
        padding-inline: 12vw;
    }

    .screen-card-2 {
        margin-top: 0;
    }

    .privacy-section {
        padding: 92px 0;
    }

    .privacy-grid {
        gap: 48px;
    }

    .purchase-card,
    .safety-card {
        min-height: auto;
    }

    .final-cta {
        padding: 94px 0;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 42px 28px;
    }

    .footer-brand-column {
        grid-column: 1 / -1;
    }

    .footer-brand-column .product-brand span {
        display: inline;
    }
}

@media (max-width: 480px) {
    .hero h1,
    .section-heading h2,
    .privacy-copy h2,
    .purchase-card h2,
    .final-cta h2 {
        letter-spacing: -.058em;
    }

    .store-buttons {
        display: grid;
        grid-template-columns: 1fr;
    }

    .store-button {
        width: 100%;
    }

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

    .phone-hero {
        width: min(295px, 82vw);
    }

    .app-icon-card {
        right: -8px;
        bottom: 25px;
        border-radius: 24px;
    }

    .app-icon-card img {
        width: 84px;
        height: 84px;
        border-radius: 20px;
    }

    .drop-one {
        right: 2%;
    }

    .screen-grid {
        padding-inline: 5vw;
    }

    .purchase-card,
    .safety-card {
        padding: 34px 27px;
        border-radius: 26px;
    }

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

    .footer-column:last-child {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }
}

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

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