body.sf-app {
    --sf-bg: #fff8ed;
    --sf-bg-soft: #ffeeda;
    --sf-card: #ffffff;
    --sf-card-warm: #fff1df;
    --sf-text: #2a1710;
    --sf-muted: #765448;
    --sf-accent: #e94d35;
    --sf-accent-dark: #b92d26;
    --sf-orange: #ff8a2a;
    --sf-yellow: #ffd46b;
    --sf-brown: #4a2114;
    --sf-border: rgba(105, 54, 33, 0.14);
    --sf-shadow: 0 24px 70px rgba(126, 53, 18, 0.16);
    --sf-shadow-soft: 0 14px 42px rgba(126, 53, 18, 0.12);
    --sf-font-display: 'Archivo Black', Impact, sans-serif;
    --sf-font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --sf-radius: 28px;
    --sf-radius-sm: 18px;
    color-scheme: light;
}

html {
    scroll-behavior: smooth;
}

body.sf-app,
body.sf-app *,
body.sf-app *::before,
body.sf-app *::after {
    box-sizing: border-box;
}

body.sf-app {
    margin: 0;
    min-width: 320px;
    font-family: var(--sf-font-body);
    color: var(--sf-text);
    background:
        radial-gradient(circle at 12% 8%, rgba(255, 212, 107, 0.38), transparent 28%),
        radial-gradient(circle at 88% 16%, rgba(233, 77, 53, 0.18), transparent 30%),
        linear-gradient(180deg, #fffaf2 0%, var(--sf-bg) 46%, #fff4e5 100%);
    overflow-x: hidden;
}

body.sf-app.sf-modal-open {
    overflow: hidden;
}

body.sf-app a {
    color: inherit;
}

body.sf-app img {
    display: block;
    max-width: 100%;
}

body.sf-app button,
body.sf-app a {
    -webkit-tap-highlight-color: transparent;
}

body.sf-app :focus-visible {
    outline: 3px solid rgba(233, 77, 53, 0.42);
    outline-offset: 4px;
}

body.sf-app [data-aos]:not(.aos-animate) {
    opacity: 1 !important;
    transform: none !important;
}

.sf-skip {
    position: fixed;
    left: 16px;
    top: 12px;
    z-index: 999;
    transform: translateY(-160%);
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--sf-brown);
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease;
}

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

.sf-canvas {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.sf-blob {
    position: absolute;
    border-radius: 999px;
    filter: blur(3px);
    opacity: 0.7;
}

.sf-blob--one {
    width: 360px;
    height: 360px;
    right: -150px;
    top: 80px;
    background: linear-gradient(135deg, rgba(255, 138, 42, 0.38), rgba(233, 77, 53, 0.12));
}

.sf-blob--two {
    width: 300px;
    height: 300px;
    left: -110px;
    bottom: 16%;
    background: linear-gradient(135deg, rgba(255, 212, 107, 0.36), rgba(255, 138, 42, 0.1));
}

.sf-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(124, 65, 35, 0.12) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, transparent 0%, #000 20%, transparent 88%);
    opacity: 0.45;
}

.sf-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px clamp(16px, 4vw, 48px);
    transition: padding 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.sf-nav.sf-nav--scrolled,
.sf-nav.sf-nav--open {
    padding-top: 10px;
    padding-bottom: 10px;
    background: rgba(255, 248, 237, 0.86);
    backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 var(--sf-border), 0 16px 50px rgba(83, 33, 15, 0.08);
}

.sf-nav__inner {
    width: min(1160px, 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.sf-brand,
.sf-footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.sf-brand__icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--sf-accent), var(--sf-orange));
    box-shadow: 0 10px 26px rgba(233, 77, 53, 0.28);
}

.sf-brand__icon svg {
    width: 22px;
    height: 22px;
}

.sf-brand__text {
    font-size: 1.12rem;
}

.sf-nav__links {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border: 1px solid var(--sf-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
}

.sf-nav__links a {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--sf-muted);
    font-size: 0.94rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.sf-nav__links a:hover {
    color: var(--sf-text);
    background: rgba(255, 238, 218, 0.9);
    transform: translateY(-1px);
}

.sf-nav__links .sf-nav__download {
    color: #fff;
    background: linear-gradient(135deg, var(--sf-accent), var(--sf-orange));
    box-shadow: 0 10px 22px rgba(233, 77, 53, 0.22);
}

.sf-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--sf-border);
    border-radius: 14px;
    color: var(--sf-text);
    background: rgba(255, 255, 255, 0.86);
    cursor: pointer;
}

.sf-menu-btn svg {
    width: 22px;
    height: 22px;
}

.sf-hero {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    min-height: 760px;
    margin: 0 auto;
    padding: 138px 0 82px;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    align-items: center;
    gap: clamp(28px, 5vw, 72px);
}

.sf-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    color: var(--sf-accent-dark);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
}

.sf-kicker span {
    width: 34px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--sf-accent), var(--sf-yellow));
    box-shadow: 0 8px 20px rgba(233, 77, 53, 0.2);
}

.sf-title {
    margin: 0;
    font-family: var(--sf-font-display);
    font-size: clamp(3.1rem, 8.3vw, 7.8rem);
    line-height: 0.93;
    letter-spacing: -0.07em;
    color: #fffdf8;
    -webkit-text-stroke: clamp(1.5px, 0.18vw, 3px) var(--sf-accent-dark);
    text-shadow:
        0 4px 0 var(--sf-accent),
        0 12px 30px rgba(184, 45, 38, 0.18);
}

.sf-title strong {
    display: inline-block;
    color: var(--sf-brown);
    -webkit-text-stroke: 0;
    text-shadow: none;
}

.sf-hero__copy {
    max-width: 620px;
    margin: 26px 0 0;
    color: var(--sf-muted);
    font-size: clamp(1.02rem, 1.6vw, 1.18rem);
    line-height: 1.78;
}

.sf-actions,
.sf-download__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.sf-btn,
.sf-store {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    border: 0;
    border-radius: 999px;
    font: inherit;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.sf-btn svg,
.sf-store svg {
    width: 21px;
    height: 21px;
    flex: 0 0 auto;
}

.sf-btn--primary {
    padding: 0 24px;
    color: #fff;
    background: linear-gradient(135deg, var(--sf-accent), var(--sf-orange));
    box-shadow: 0 16px 34px rgba(233, 77, 53, 0.28);
}

.sf-btn--secondary {
    padding: 0 24px;
    color: var(--sf-brown);
    background: #fff;
    border: 1px solid var(--sf-border);
    box-shadow: 0 12px 28px rgba(90, 45, 18, 0.1);
}

.sf-btn:hover,
.sf-store:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(145, 58, 22, 0.2);
}

.sf-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.sf-trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border: 1px solid var(--sf-border);
    border-radius: 999px;
    color: var(--sf-muted);
    background: rgba(255, 255, 255, 0.72);
    font-size: 0.86rem;
    font-weight: 700;
}

.sf-trust svg {
    width: 16px;
    height: 16px;
    color: var(--sf-accent);
}

.sf-hero__visual {
    position: relative;
    min-height: 620px;
    display: grid;
    place-items: center;
}

.sf-hero__visual::before {
    content: '';
    position: absolute;
    width: min(78vw, 520px);
    aspect-ratio: 1;
    border-radius: 44% 56% 54% 46%;
    background:
        radial-gradient(circle at 58% 38%, rgba(255, 212, 107, 0.54), transparent 36%),
        linear-gradient(145deg, rgba(255, 138, 42, 0.32), rgba(233, 77, 53, 0.12));
    filter: blur(2px);
    transform: rotate(-8deg);
}

.sf-phone {
    position: relative;
    z-index: 2;
    width: min(360px, 76vw);
    padding: 12px;
    border: 9px solid #28130e;
    border-radius: 46px;
    background: #1b0c08;
    box-shadow: var(--sf-shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.14);
    transform: rotate(2deg);
}

.sf-phone__bar {
    position: absolute;
    top: 19px;
    left: 50%;
    z-index: 3;
    width: 96px;
    height: 23px;
    border-radius: 0 0 18px 18px;
    background: #1b0c08;
    transform: translateX(-50%);
}

.sf-phone img {
    width: 100%;
    aspect-ratio: 1 / 2;
    object-fit: cover;
    border-radius: 32px;
    background: #2b120b;
}

.sf-phone-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 246px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--sf-shadow-soft);
    backdrop-filter: blur(16px);
}

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

.sf-phone-card strong {
    font-size: 0.95rem;
}

.sf-phone-card small {
    margin-top: 2px;
    color: var(--sf-muted);
    font-size: 0.78rem;
    font-weight: 700;
}

.sf-phone-card--top {
    top: 82px;
    right: 0;
    transform: rotate(3deg);
}

.sf-phone-card--bottom {
    left: 0;
    bottom: 104px;
    transform: rotate(-5deg);
}

.sf-chip-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(135deg, var(--sf-accent), var(--sf-orange));
}

.sf-chip-icon--coin {
    background: linear-gradient(135deg, #f5a400, #ffdf7c);
    color: var(--sf-brown);
}

.sf-features,
.sf-download {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 86px 0;
}

.sf-section-head {
    max-width: 760px;
    margin-bottom: 34px;
}

.sf-section-head h2,
.sf-reward-board h2,
.sf-faq h2,
.sf-download h2 {
    margin: 0;
    color: var(--sf-brown);
    font-size: clamp(2rem, 4.5vw, 4.2rem);
    line-height: 1;
    letter-spacing: -0.055em;
}

.sf-section-head p:not(.sf-kicker),
.sf-reward-board__text > p,
.sf-download p {
    color: var(--sf-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

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

.sf-feature {
    position: relative;
    min-height: 240px;
    padding: 24px;
    border: 1px solid var(--sf-border);
    border-radius: var(--sf-radius);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 38px rgba(106, 48, 22, 0.08);
    overflow: hidden;
}

.sf-feature::after {
    content: '';
    position: absolute;
    right: -40px;
    bottom: -48px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(255, 138, 42, 0.13);
}

.sf-feature svg {
    width: 44px;
    height: 44px;
    padding: 9px;
    border-radius: 15px;
    color: var(--sf-accent-dark);
    background: var(--sf-card-warm);
}

.sf-feature h3 {
    margin: 24px 0 10px;
    font-size: 1.22rem;
}

.sf-feature p {
    margin: 0;
    color: var(--sf-muted);
    line-height: 1.65;
}

.sf-reward-board {
    margin-top: 28px;
    padding: clamp(24px, 5vw, 56px);
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
    gap: clamp(26px, 5vw, 64px);
    align-items: center;
    border: 1px solid var(--sf-border);
    border-radius: 38px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 238, 218, 0.82)),
        radial-gradient(circle at 78% 28%, rgba(233, 77, 53, 0.16), transparent 36%);
    box-shadow: var(--sf-shadow-soft);
}

.sf-check-list {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.sf-check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--sf-brown);
    font-weight: 800;
}

.sf-check-list svg {
    width: 22px;
    height: 22px;
    padding: 4px;
    border-radius: 999px;
    color: #fff;
    background: var(--sf-accent);
}

.sf-shot-stack {
    position: relative;
    min-height: 560px;
}

.sf-shot {
    position: absolute;
    margin: 0;
    width: min(260px, 42vw);
    padding: 8px;
    border-radius: 34px;
    background: #2a1710;
    box-shadow: 0 24px 70px rgba(63, 24, 10, 0.2);
}

.sf-shot img {
    width: 100%;
    aspect-ratio: 1 / 2;
    object-fit: cover;
    border-radius: 26px;
}

.sf-shot--one {
    left: 3%;
    top: 44px;
    z-index: 3;
    transform: rotate(-8deg);
}

.sf-shot--two {
    left: 33%;
    top: 0;
    z-index: 4;
    transform: rotate(4deg);
}

.sf-shot--three {
    right: 0;
    top: 94px;
    z-index: 2;
    transform: rotate(10deg);
}

.sf-shot::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -18px;
    width: 78px;
    height: 30px;
    border-radius: 4px;
    background: rgba(255, 212, 107, 0.72);
    transform: translateX(-50%) rotate(-3deg);
    box-shadow: 0 8px 18px rgba(100, 43, 18, 0.14);
}

.sf-faq {
    margin-top: 28px;
    display: grid;
    grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
    gap: 28px;
    padding: clamp(24px, 5vw, 42px);
    border-radius: 34px;
    background: var(--sf-brown);
    color: #fffaf2;
    box-shadow: var(--sf-shadow-soft);
}

.sf-faq .sf-kicker,
.sf-faq h2 {
    color: #fff;
}

.sf-faq__list {
    display: grid;
    gap: 12px;
}

.sf-faq-item {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.sf-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    border: 0;
    color: #fff;
    background: transparent;
    font: inherit;
    font-weight: 900;
    text-align: left;
    cursor: pointer;
}

.sf-faq-question svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    transition: transform 0.2s ease;
}

.sf-faq-question[aria-expanded="true"] svg {
    transform: rotate(45deg);
}

.sf-faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.25s ease;
}

.sf-faq-answer p {
    min-height: 0;
    margin: 0;
    padding: 0 20px;
    color: rgba(255, 250, 242, 0.78);
    overflow: hidden;
    line-height: 1.65;
}

.sf-faq-question[aria-expanded="true"] + .sf-faq-answer {
    grid-template-rows: 1fr;
}

.sf-faq-question[aria-expanded="true"] + .sf-faq-answer p {
    padding-bottom: 18px;
}

.sf-download {
    padding-top: 24px;
}

.sf-download__panel {
    position: relative;
    padding: clamp(28px, 6vw, 62px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    border-radius: 42px;
    color: #fff;
    background:
        radial-gradient(circle at 18% 24%, rgba(255, 212, 107, 0.48), transparent 28%),
        linear-gradient(135deg, var(--sf-accent-dark), var(--sf-accent) 45%, var(--sf-orange));
    box-shadow: 0 30px 80px rgba(185, 45, 38, 0.24);
    overflow: hidden;
}

.sf-download__panel::after {
    content: '';
    position: absolute;
    right: -80px;
    top: -100px;
    width: 270px;
    height: 270px;
    border: 42px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.sf-download__panel > * {
    position: relative;
    z-index: 1;
}

.sf-download .sf-kicker,
.sf-download h2,
.sf-download p {
    color: #fff;
}

.sf-store {
    min-width: 190px;
    padding: 12px 18px;
    color: var(--sf-brown);
    background: #fffaf2;
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 16px 36px rgba(83, 33, 15, 0.18);
}

.sf-store svg {
    color: var(--sf-accent-dark);
}

.sf-store span {
    display: grid;
    color: var(--sf-brown);
    font-size: 1rem;
    line-height: 1.08;
}

.sf-store small {
    color: #7b3a24;
    font-size: 0.72rem;
    font-weight: 800;
}

.sf-modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.sf-modal[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

.sf-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(42, 23, 16, 0.52);
    backdrop-filter: blur(10px);
}

.sf-modal__box {
    position: relative;
    width: min(440px, 100%);
    padding: 34px;
    border-radius: 30px;
    text-align: center;
    background: #fffdf8;
    box-shadow: 0 26px 90px rgba(39, 15, 8, 0.28);
    transform: translateY(14px) scale(0.98);
    transition: transform 0.2s ease;
}

.sf-modal[aria-hidden="false"] .sf-modal__box {
    transform: translateY(0) scale(1);
}

.sf-modal__close {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    color: var(--sf-brown);
    background: var(--sf-card-warm);
    cursor: pointer;
}

.sf-modal__close svg {
    width: 20px;
    height: 20px;
}

.sf-modal__icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--sf-accent), var(--sf-orange));
}

.sf-modal__icon svg {
    width: 30px;
    height: 30px;
}

.sf-modal h2 {
    margin: 0;
    color: var(--sf-brown);
    font-size: 2rem;
    letter-spacing: -0.04em;
}

.sf-modal p {
    margin: 12px 0 24px;
    color: var(--sf-muted);
    line-height: 1.65;
}

.sf-footer {
    padding: 28px 16px 42px;
}

.sf-footer__inner {
    width: min(1180px, 100%);
    margin: 0 auto;
    padding: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid var(--sf-border);
    border-radius: 28px;
    color: var(--sf-muted);
    background: rgba(255, 255, 255, 0.7);
}

.sf-footer__brand {
    color: var(--sf-brown);
    font-size: 1.1rem;
}

.sf-footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 20px;
}

.sf-footer__links a {
    color: var(--sf-muted);
    font-weight: 800;
    text-decoration: none;
}

.sf-footer__links a:hover {
    color: var(--sf-accent-dark);
}

.sf-footer p {
    max-width: 340px;
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    text-align: right;
}

@media (max-width: 980px) {
    .sf-hero,
    .sf-reward-board,
    .sf-faq,
    .sf-download__panel {
        grid-template-columns: 1fr;
    }

    .sf-hero {
        min-height: 0;
        padding-top: 112px;
        text-align: center;
    }

    .sf-hero__copy,
    .sf-section-head {
        margin-left: auto;
        margin-right: auto;
    }

    .sf-actions,
    .sf-trust,
    .sf-download__buttons {
        justify-content: center;
    }

    .sf-hero__visual {
        min-height: 590px;
    }

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

    .sf-reward-board {
        text-align: center;
    }

    .sf-check-list {
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .sf-shot-stack {
        width: min(620px, 100%);
        margin: 0 auto;
    }

    .sf-footer__inner {
        flex-direction: column;
        text-align: center;
    }

    .sf-footer p {
        text-align: center;
    }
}

@media (max-width: 760px) {
    .sf-nav {
        padding: 10px 16px;
    }

    .sf-menu-btn {
        display: grid;
        place-items: center;
    }

    .sf-nav__links {
        position: absolute;
        left: 16px;
        right: 16px;
        top: calc(100% + 10px);
        display: grid;
        gap: 4px;
        padding: 10px;
        border-radius: 24px;
        background: rgba(255, 253, 248, 0.96);
        box-shadow: 0 22px 60px rgba(83, 33, 15, 0.16);
        transform: translateY(-8px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

    .sf-nav.sf-nav--open .sf-nav__links {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .sf-nav__links a {
        padding: 13px 14px;
    }

    .sf-hero {
        width: min(100% - 24px, 1180px);
        padding-bottom: 52px;
    }

    .sf-title {
        font-size: clamp(3rem, 15vw, 5rem);
    }

    .sf-hero__visual {
        min-height: 530px;
    }

    .sf-phone {
        width: min(315px, 78vw);
        border-width: 7px;
        border-radius: 40px;
    }

    .sf-phone-card {
        max-width: 210px;
        padding: 12px;
    }

    .sf-phone-card--top {
        top: 40px;
        right: 2px;
    }

    .sf-phone-card--bottom {
        left: 0;
        bottom: 70px;
    }

    .sf-features,
    .sf-download {
        width: min(100% - 24px, 1180px);
        padding: 58px 0;
    }

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

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

    .sf-reward-board {
        border-radius: 28px;
    }

    .sf-shot-stack {
        min-height: 490px;
    }

    .sf-shot {
        width: min(210px, 50vw);
        border-radius: 28px;
    }

    .sf-shot img {
        border-radius: 21px;
    }

    .sf-shot--one {
        left: 0;
        top: 70px;
    }

    .sf-shot--two {
        left: 28%;
    }

    .sf-shot--three {
        right: 0;
        top: 120px;
    }

    .sf-faq {
        border-radius: 28px;
    }

    .sf-download__panel {
        border-radius: 30px;
        text-align: center;
    }

    .sf-store {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .sf-brand__text {
        font-size: 1rem;
    }

    .sf-hero__copy {
        font-size: 0.98rem;
    }

    .sf-actions .sf-btn {
        width: 100%;
    }

    .sf-trust {
        justify-content: flex-start;
    }

    .sf-hero__visual {
        min-height: 500px;
    }

    .sf-phone-card {
        max-width: 190px;
    }

    .sf-phone-card--top {
        top: 26px;
    }

    .sf-phone-card--bottom {
        bottom: 46px;
    }

    .sf-section-head h2,
    .sf-reward-board h2,
    .sf-faq h2,
    .sf-download h2 {
        font-size: 2.15rem;
    }

    .sf-shot-stack {
        min-height: 430px;
    }

    .sf-shot {
        width: min(185px, 54vw);
    }

    .sf-shot--two {
        left: 23%;
    }

    .sf-modal__box {
        padding: 30px 22px;
    }
}

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

    body.sf-app *,
    body.sf-app *::before,
    body.sf-app *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
