.home-modern {
    --home-ink: #09271d;
    --home-muted: #567067;
    --home-green: #0aa86e;
    --home-green-dark: #04764c;
    --home-lime: #b9f55f;
    --home-mint: #e8faf3;
    --home-line: rgba(9, 39, 29, 0.12);
    display: grid;
    gap: clamp(3.8rem, 8vw, 7rem);
    padding-bottom: 1rem;
    color: var(--home-ink);
    font-family: "Aptos", "Avenir Next", "Segoe UI Variable", sans-serif;
}

.home-modern *,
.home-modern *::before,
.home-modern *::after {
    box-sizing: border-box;
}

.home-modern > * {
    animation: home-rise 680ms cubic-bezier(.2, .75, .25, 1) both;
}

.home-modern > *:nth-child(2) { animation-delay: 70ms; }
.home-modern > *:nth-child(3) { animation-delay: 120ms; }
.home-modern > *:nth-child(n + 4) { animation-delay: 170ms; }

@keyframes home-rise {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

.home-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(390px, .98fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 4.5rem);
    min-height: 640px;
    padding: clamp(2.2rem, 5vw, 4.8rem);
    border: 1px solid rgba(164, 255, 212, .13);
    border-radius: 36px;
    color: #f5fff9;
    background:
        linear-gradient(115deg, rgba(4, 52, 36, .98), rgba(5, 81, 54, .95) 56%, rgba(7, 111, 73, .9)),
        #043a28;
    box-shadow: 0 35px 90px rgba(3, 54, 36, .26);
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .22;
    background-image:
        linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to right, #000, transparent 80%);
}

.home-hero__orb {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.home-hero__orb--one {
    width: 420px;
    height: 420px;
    top: -260px;
    right: 8%;
    background: radial-gradient(circle, rgba(185, 245, 95, .38), transparent 68%);
}

.home-hero__orb--two {
    width: 360px;
    height: 360px;
    bottom: -250px;
    left: 30%;
    background: radial-gradient(circle, rgba(84, 235, 183, .28), transparent 68%);
}

.home-hero__copy {
    position: relative;
    z-index: 2;
}

.home-eyebrow {
    display: flex;
    align-items: center;
    gap: .65rem;
    margin: 0 0 1rem;
    color: rgba(235, 255, 244, .72);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .16em;
    line-height: 1.4;
    text-transform: uppercase;
}

.home-eyebrow > span {
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: var(--home-lime);
    box-shadow: 0 0 18px rgba(185, 245, 95, .65);
}

.home-eyebrow--dark {
    color: var(--home-green-dark);
}

.home-hero h1 {
    max-width: 690px;
    margin: 0;
    color: #fff;
    font-size: clamp(2.85rem, 5.3vw, 5.25rem);
    font-weight: 800;
    letter-spacing: -.065em;
    line-height: .96;
}

.home-hero h1 em {
    display: inline-block;
    margin-top: .12em;
    color: var(--home-lime);
    font-style: normal;
}

.home-hero__lead {
    max-width: 650px;
    margin: 1.5rem 0 0;
    color: rgba(236, 255, 246, .78);
    font-size: clamp(1.02rem, 1.4vw, 1.18rem);
    line-height: 1.72;
}

.home-hero__actions,
.home-closing__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .8rem;
    margin-top: 2rem;
}

.home-button {
    min-height: 52px;
    padding: .85rem 1.35rem;
    border: 1px solid transparent;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    font-size: .94rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.home-button svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-button--primary {
    color: #08271d;
    background: var(--home-lime);
    box-shadow: 0 15px 35px rgba(185, 245, 95, .18);
}

.home-button--primary:hover {
    color: #08271d;
    background: #c9ff77;
    transform: translateY(-2px);
    box-shadow: 0 19px 42px rgba(185, 245, 95, .27);
}

.home-button--secondary {
    color: #f2fff7;
    border-color: rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(10px);
}

.home-button--secondary:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .38);
    background: rgba(255, 255, 255, .12);
    transform: translateY(-2px);
}

.home-button--light {
    color: #075438;
    background: #fff;
    box-shadow: 0 14px 30px rgba(0, 44, 29, .16);
}

.home-button--light:hover {
    color: #063f2b;
    background: #f2fff8;
    transform: translateY(-2px);
}

.home-hero__assurances {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 1.2rem;
    margin: 1.4rem 0 0;
    padding: 0;
    list-style: none;
    color: rgba(239, 255, 247, .64);
    font-size: .84rem;
    font-weight: 650;
}

.home-hero__assurances li {
    display: flex;
    align-items: center;
    gap: .4rem;
}

.home-hero__assurances svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--home-lime);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-hero__showcase {
    position: relative;
    z-index: 1;
    align-self: stretch;
    min-width: 0;
    display: flex;
    align-items: center;
    padding-top: 7.5rem;
}

.home-showcase-brand {
    position: absolute;
    top: .15rem;
    left: 50%;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    min-width: 330px;
    padding: .85rem 1.35rem .85rem .85rem;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 22px;
    color: #fff;
    background: rgba(255, 255, 255, .075);
    box-shadow: 0 20px 48px rgba(0, 31, 21, .2);
    backdrop-filter: blur(14px);
    transform: translateX(-50%);
}

.home-showcase-brand__mark {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border-radius: 19px;
    background: rgba(4, 33, 24, .36);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.home-showcase-brand__mark img {
    width: 62px;
    height: 62px;
    display: block;
}

.home-showcase-brand__copy strong,
.home-showcase-brand__copy small {
    display: block;
}

.home-showcase-brand__copy strong {
    font-size: 1.75rem;
    font-weight: 850;
    letter-spacing: -.025em;
}

.home-showcase-brand__copy small {
    margin-top: .18rem;
    color: rgba(238, 255, 247, .58);
    font-size: .82rem;
    font-weight: 650;
    letter-spacing: .03em;
}

.home-product {
    position: relative;
    z-index: 1;
    min-width: 0;
    padding: .7rem;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 28px;
    color: #16342a;
    background: rgba(255, 255, 255, .13);
    box-shadow: 0 35px 70px rgba(0, 25, 17, .36);
    backdrop-filter: blur(16px);
    transform: perspective(1200px) rotateY(-4deg) rotateX(1deg);
}

.home-product__chrome {
    display: flex;
    align-items: center;
    gap: .35rem;
    padding: .3rem .45rem .85rem;
}

.home-product__chrome > span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .45);
}

.home-product__chrome > span:nth-child(2) { opacity: .7; }
.home-product__chrome > span:nth-child(3) { opacity: .45; }

.home-product__chrome small {
    margin-left: auto;
    color: rgba(255, 255, 255, .53);
    font-size: .67rem;
    letter-spacing: .03em;
}

.home-product__body {
    padding: 1.15rem;
    border-radius: 21px;
    background: #f8fbfa;
}

.home-product__heading {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: .7rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #dfeae5;
}

.home-product__camera,
.home-product__spark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #08754e;
    background: #dff8ee;
}

.home-product__camera svg,
.home-product__spark svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-product__heading small,
.home-product__heading strong,
.home-product__ai small,
.home-product__ai strong,
.home-product__verified strong,
.home-product__verified small {
    display: block;
}

.home-product__heading small,
.home-product__ai small,
.home-product__verified small {
    color: #72877f;
    font-size: .66rem;
}

.home-product__heading strong,
.home-product__ai strong {
    margin-top: .08rem;
    font-size: .82rem;
}

.home-bento__tag {
    padding: .32rem .48rem;
    border-radius: 999px;
    color: #08754e;
    background: #dff8ee;
    font-size: .61rem;
    font-weight: 850;
    letter-spacing: .07em;
}

.home-product__question {
    padding: 1.15rem 0 .9rem;
}

.home-product__label {
    color: #0b9363;
    font-size: .63rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.home-product__question h2 {
    margin: .45rem 0 .85rem;
    color: #13362a;
    font-size: clamp(.95rem, 1.5vw, 1.13rem);
    line-height: 1.35;
}

.home-product__answer {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) auto;
    align-items: center;
    gap: .6rem;
    margin-top: .45rem;
    padding: .55rem .65rem;
    border: 1px solid #dce7e2;
    border-radius: 11px;
    background: #fff;
}

.home-product__answer > span {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: #647b72;
    background: #edf3f0;
    font-size: .68rem;
    font-weight: 800;
}

.home-product__answer p {
    margin: 0;
    color: #425f55;
    font-size: .76rem;
    font-weight: 650;
}

.home-product__answer svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: #0c9f69;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-product__answer--correct {
    border-color: #43c795;
    background: #e9faf3;
    box-shadow: 0 8px 24px rgba(12, 159, 105, .09);
}

.home-product__answer--correct > span {
    color: #05734c;
    background: #c8f2df;
}

.home-product__ai {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: .7rem;
    padding: .75rem;
    border: 1px solid #dcebe5;
    border-radius: 14px;
    background: linear-gradient(135deg, #f2fbf7, #edf8ff);
}

.home-product__spark {
    width: 35px;
    height: 35px;
    color: #16738e;
    background: #dcf2f8;
}

.home-product__verified {
    position: absolute;
    right: -1.2rem;
    bottom: -2rem;
    display: flex;
    align-items: center;
    gap: .65rem;
    max-width: 250px;
    padding: .75rem .9rem;
    border: 1px solid rgba(11, 112, 73, .15);
    border-radius: 15px;
    color: #15382b;
    background: #fff;
    box-shadow: 0 18px 42px rgba(0, 38, 25, .2);
}

.home-product__verified > span {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: #0ca66e;
}

.home-product__verified svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-product__verified strong { font-size: .72rem; }

.home-proof {
    display: grid;
    grid-template-columns: repeat(3, auto) minmax(240px, 1fr);
    align-items: center;
    gap: 1.5rem;
    margin-top: calc(clamp(3.8rem, 8vw, 7rem) * -0.58);
    padding: 1.2rem 1.4rem;
    border: 1px solid var(--home-line);
    border-radius: 22px;
    background: rgba(255, 255, 255, .77);
    box-shadow: 0 18px 44px rgba(15, 55, 42, .07);
    backdrop-filter: blur(18px);
}

.home-proof > div {
    min-width: 130px;
    padding-right: 1.4rem;
    border-right: 1px solid var(--home-line);
}

.home-proof strong,
.home-proof span {
    display: block;
}

.home-proof strong {
    color: var(--home-ink);
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    letter-spacing: -.04em;
}

.home-proof span,
.home-proof p {
    color: var(--home-muted);
    font-size: .79rem;
}

.home-proof p {
    max-width: 310px;
    margin: 0 0 0 auto;
    line-height: 1.55;
    text-align: right;
}

.home-offer,
.home-activation {
    margin: calc(clamp(3.8rem, 8vw, 7rem) * -0.52) 0 0;
}

.home-offer {
    min-height: 140px;
    padding: 1.5rem 1.7rem;
    border-color: rgba(6, 118, 76, .14);
    border-radius: 24px;
    color: #eafff4;
    background: linear-gradient(110deg, #075339, #07875b);
    box-shadow: 0 20px 48px rgba(6, 88, 58, .2);
}

.home-offer .discount-banner__eyebrow,
.home-offer .discount-banner__info p {
    color: rgba(236, 255, 245, .75);
}

.home-offer h2 {
    margin: .25rem 0 .45rem;
    color: #fff;
    font-size: clamp(1.25rem, 2.3vw, 1.8rem);
}

.home-offer__remaining {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: .4rem .65rem;
    border-radius: 999px;
    color: #dffff0;
    background: rgba(255, 255, 255, .1);
    font-size: .72rem;
}

.home-activation {
    border-radius: 24px;
    background: linear-gradient(110deg, #087b58, #0fa879);
    box-shadow: 0 20px 50px rgba(9, 128, 88, .2);
}

.home-activation .activation-banner__countdown {
    min-width: 145px;
    flex-direction: column;
}

.home-section {
    display: grid;
    gap: 2rem;
}

.home-section__header {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
    align-items: end;
    gap: 2rem;
}

.home-section__header h2,
.home-workflow h2,
.home-mobile h2,
.home-closing h2 {
    margin: 0;
    color: var(--home-ink);
    font-size: clamp(2.05rem, 4.3vw, 3.65rem);
    font-weight: 800;
    letter-spacing: -.055em;
    line-height: 1.03;
}

.home-section__header > p {
    max-width: 390px;
    margin: 0 0 .25rem auto;
    color: var(--home-muted);
    line-height: 1.7;
}

.home-bento {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1rem;
}

.home-bento__card {
    grid-column: span 4;
    min-height: 280px;
    position: relative;
    overflow: hidden;
    padding: 1.6rem;
    border: 1px solid var(--home-line);
    border-radius: 24px;
    color: var(--home-ink);
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 20px 45px rgba(10, 52, 38, .07);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.home-bento__card:hover {
    transform: translateY(-4px);
    border-color: rgba(10, 168, 110, .26);
    box-shadow: 0 28px 58px rgba(10, 52, 38, .11);
}

.home-bento__card--scanner {
    grid-column: span 8;
    min-height: 330px;
    padding-right: 38%;
    color: #f2fff8;
    background:
        radial-gradient(circle at 85% 20%, rgba(185, 245, 95, .18), transparent 30%),
        linear-gradient(140deg, #073c2a, #075d40);
}

.home-bento__card--scanner::after {
    content: "";
    position: absolute;
    right: -8%;
    bottom: -25%;
    width: 42%;
    aspect-ratio: 1;
    border: 1px solid rgba(185, 245, 95, .22);
    border-radius: 50%;
    box-shadow: 0 0 0 35px rgba(185, 245, 95, .04), 0 0 0 70px rgba(185, 245, 95, .025);
}

.home-bento__icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(8, 133, 89, .15);
    border-radius: 14px;
    color: #087c53;
    background: var(--home-mint);
}

.home-bento__card--scanner .home-bento__icon {
    color: var(--home-lime);
    border-color: rgba(185, 245, 95, .2);
    background: rgba(185, 245, 95, .08);
}

.home-bento__icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-bento__tag {
    position: absolute;
    top: 1.65rem;
    right: 1.65rem;
    color: #dfffb3;
    border: 1px solid rgba(185, 245, 95, .16);
    background: rgba(185, 245, 95, .08);
}

.home-bento__card h3 {
    max-width: 500px;
    margin: 0 0 .75rem;
    color: inherit;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: 1.12;
}

.home-bento__card p {
    max-width: 580px;
    margin: 0;
    color: var(--home-muted);
    font-size: .94rem;
    line-height: 1.65;
}

.home-bento__card--scanner p { color: rgba(238, 255, 247, .72); }

.home-bento__scanline {
    position: absolute;
    right: 6%;
    top: 21%;
    width: 27%;
    height: 58%;
    border: 1px solid rgba(185, 245, 95, .3);
    border-radius: 20px;
    background:
        linear-gradient(90deg, rgba(185, 245, 95, .25) 15px, transparent 15px) top left / 46px 1px no-repeat,
        linear-gradient(rgba(185, 245, 95, .25) 15px, transparent 15px) top left / 1px 46px no-repeat,
        rgba(255, 255, 255, .035);
}

.home-bento__scanline::before,
.home-bento__scanline::after {
    content: "";
    position: absolute;
    left: 14%;
    right: 14%;
    height: 7px;
    border-radius: 99px;
    background: rgba(223, 255, 235, .18);
    box-shadow: 0 27px 0 rgba(223, 255, 235, .12), 0 54px 0 rgba(223, 255, 235, .09);
}

.home-bento__scanline::before { top: 25%; }

.home-bento__scanline span {
    position: absolute;
    left: 8%;
    right: 8%;
    top: 48%;
    height: 2px;
    background: var(--home-lime);
    box-shadow: 0 0 15px rgba(185, 245, 95, .9);
    animation: scan-pulse 2.6s ease-in-out infinite;
}

@keyframes scan-pulse {
    0%, 100% { transform: translateY(-38px); opacity: .5; }
    50% { transform: translateY(38px); opacity: 1; }
}

.home-bento__card--community {
    grid-column: span 8;
    min-height: 280px;
    display: grid;
    grid-template-columns: auto minmax(220px, 1fr);
    align-items: center;
    align-content: center;
    gap: 1.1rem 1.3rem;
    background:
        radial-gradient(circle at 95% 10%, rgba(185, 245, 95, .16), transparent 30%),
        linear-gradient(135deg, #f7fffb, #edf9f4);
}

.home-bento__card--community h3 { margin: .35rem 0 .35rem; }

.home-bento__community-copy {
    min-width: 0;
}

.home-bento__tagline {
    color: #078159;
    font-size: .64rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.home-bento__avatars {
    display: flex;
    padding-left: .65rem;
}

.home-bento__avatars span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-left: -.65rem;
    border: 3px solid #fff;
    border-radius: 50%;
    color: #fff;
    background: #0b7650;
    font-size: .72rem;
    font-weight: 800;
}

.home-bento__avatars span:nth-child(2) { background: #159a70; }
.home-bento__avatars span:nth-child(3) { background: #44685c; }
.home-bento__avatars span:last-child { width: 48px; color: #0d6244; background: #dff8ed; }

.home-bento__vote {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: .65rem;
    padding: .75rem .9rem;
    border: 1px solid rgba(8, 133, 89, .15);
    border-radius: 15px;
    background: #effbf6;
}

.home-bento__vote > span {
    width: 12px;
    height: 12px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #0ca66e;
    box-shadow: 0 0 0 2px #0ca66e;
}

.home-bento__vote strong { font-size: .76rem; }
.home-bento__vote small { color: #08754e; font-weight: 800; }

.home-workflow {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, .75fr) minmax(400px, 1.25fr);
    gap: clamp(2.5rem, 6vw, 5rem);
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: 32px;
    color: #f1fff7;
    background: #082f23;
    box-shadow: 0 30px 70px rgba(5, 52, 37, .18);
}

.home-workflow::after {
    content: "03";
    position: absolute;
    left: -1rem;
    bottom: -3.5rem;
    color: rgba(255, 255, 255, .025);
    font-size: 15rem;
    font-weight: 900;
    line-height: 1;
}

.home-workflow h2 { color: #fff; }

.home-workflow__copy > p:not(.home-eyebrow) {
    margin: 1.2rem 0 1.5rem;
    color: rgba(235, 255, 245, .67);
    line-height: 1.7;
}

.home-workflow__copy > a {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--home-lime);
    font-weight: 800;
}

.home-workflow__steps {
    position: relative;
    z-index: 1;
    display: grid;
    gap: .65rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-workflow__steps li {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 1rem;
    padding: 1.05rem;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 17px;
    background: rgba(255, 255, 255, .05);
}

.home-workflow__steps li > span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #0a4b34;
    background: var(--home-lime);
    font-size: .73rem;
    font-weight: 900;
}

.home-workflow__steps strong { display: block; margin-bottom: .22rem; }
.home-workflow__steps p { margin: 0; color: rgba(237, 255, 246, .64); font-size: .84rem; line-height: 1.55; }

.home-mobile {
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, .8fr);
    align-items: center;
    gap: 3rem;
    min-height: 510px;
    padding: clamp(2rem, 5vw, 4rem);
    border: 1px solid var(--home-line);
    border-radius: 32px;
    background:
        radial-gradient(circle at 90% 20%, rgba(55, 194, 142, .17), transparent 34%),
        linear-gradient(140deg, #f8fcfa, #edf8f3);
}

.home-mobile__copy > p:not(.home-eyebrow) {
    max-width: 610px;
    margin: 1.2rem 0 1.7rem;
    color: var(--home-muted);
    line-height: 1.7;
}

.home-mobile__badges {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
}

.home-store {
    min-width: 165px;
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .72rem 1rem;
    border: 1px solid #173a2f;
    border-radius: 14px;
    color: #fff;
    background: #0a2d22;
    box-shadow: 0 12px 30px rgba(5, 48, 34, .15);
    transition: transform 180ms ease, background 180ms ease;
}

.home-store:hover { color: #fff; background: #0e4331; transform: translateY(-2px); }
.home-store svg { width: 27px; height: 27px; fill: currentColor; }
.home-store small, .home-store strong { display: block; line-height: 1.05; }
.home-store small { color: rgba(255, 255, 255, .62); font-size: .6rem; }
.home-store strong { margin-top: .15rem; font-size: .9rem; }

.home-mobile__visual {
    position: relative;
    min-height: 395px;
    display: grid;
    place-items: center;
}

.home-phone {
    position: absolute;
    z-index: 2;
    width: 218px;
    height: 430px;
    padding: 9px;
    border: 3px solid #183a30;
    border-radius: 38px;
    background: #061c15;
    box-shadow: 0 28px 60px rgba(8, 58, 41, .25);
    transform: rotate(5deg);
}

.home-phone--back {
    z-index: 1;
    margin: 35px 0 0 -160px;
    border-color: #8fcdb5;
    background: #b6eed8;
    transform: rotate(-9deg) scale(.9);
    opacity: .75;
}

.home-phone--back::before,
.home-phone--back::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    border: 7px solid #0b5038;
    border-radius: 15px;
}

.home-phone--back::after { top: auto; right: 20px; bottom: 28px; left: auto; width: 95px; height: 9px; border: 0; border-radius: 9px; background: rgba(7, 77, 52, .25); }

.home-phone__island {
    position: absolute;
    z-index: 4;
    top: 16px;
    left: 50%;
    width: 72px;
    height: 20px;
    border-radius: 999px;
    background: #05130f;
    transform: translateX(-50%);
}

.home-phone__screen {
    height: 100%;
    padding: 3.4rem 1rem 1rem;
    border-radius: 27px;
    color: #effff7;
    background: linear-gradient(155deg, #063426, #0a5c40);
}

.home-phone__screen > small { display: block; color: rgba(238, 255, 246, .55); font-size: .63rem; }
.home-phone__screen > strong { display: block; max-width: 140px; margin-top: .3rem; font-size: 1.25rem; line-height: 1.12; }

.home-phone__progress {
    height: 6px;
    margin: 1.4rem 0;
    border-radius: 99px;
    background: rgba(255, 255, 255, .12);
}

.home-phone__progress span { display: block; width: 64%; height: 100%; border-radius: inherit; background: var(--home-lime); }

.home-phone__card {
    min-height: 135px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 19px;
    background: rgba(255, 255, 255, .09);
}

.home-phone__card span,
.home-phone__card strong,
.home-phone__card small { display: block; }
.home-phone__card span { color: var(--home-lime); font-size: .62rem; font-weight: 800; text-transform: uppercase; }
.home-phone__card strong { margin-top: .4rem; font-size: 1.45rem; }
.home-phone__card small { margin-top: 1.4rem; color: rgba(255, 255, 255, .67); }

.home-phone__nav {
    position: absolute;
    right: 22px;
    bottom: 24px;
    left: 22px;
    display: flex;
    justify-content: space-around;
    padding: .75rem .4rem;
    border-radius: 14px;
    background: rgba(2, 24, 16, .38);
}

.home-phone__nav i { width: 9px; height: 9px; border-radius: 3px; background: rgba(255, 255, 255, .35); }
.home-phone__nav i:first-child { background: var(--home-lime); }

.home-closing {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) auto;
    align-items: end;
    gap: 2rem;
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: 32px;
    color: #ecfff5;
    background: linear-gradient(120deg, #075038, #09845a);
    box-shadow: 0 28px 66px rgba(4, 79, 51, .22);
}

.home-closing::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    right: -150px;
    top: -180px;
    border: 1px solid rgba(185, 245, 95, .25);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(185, 245, 95, .04), 0 0 0 110px rgba(185, 245, 95, .025);
}

.home-closing h2 { max-width: 730px; color: #fff; }
.home-closing > div > p:not(.home-eyebrow) { max-width: 680px; margin: 1rem 0 0; color: rgba(238, 255, 247, .72); line-height: 1.65; }
.home-closing__actions { position: relative; z-index: 1; justify-content: flex-end; }

.home-facebook {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .8rem 1rem;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 15px;
    color: #eafff4;
    background: rgba(255, 255, 255, .06);
    font-size: .84rem;
    font-weight: 700;
}

.home-facebook:hover { color: #fff; background: rgba(255, 255, 255, .11); }
.home-facebook svg { width: 19px; height: 19px; fill: currentColor; }

html.theme-dark .home-modern {
    --home-ink: #effff7;
    --home-muted: #a8c2b8;
    --home-line: rgba(174, 224, 203, .14);
}

html.theme-dark .home-proof,
html.theme-dark .home-bento__card {
    background: rgba(9, 36, 27, .88);
}

html.theme-dark .home-proof {
    box-shadow: 0 18px 44px rgba(0, 0, 0, .24);
}

html.theme-dark .home-bento__card--scanner {
    background: radial-gradient(circle at 85% 20%, rgba(185, 245, 95, .18), transparent 30%), linear-gradient(140deg, #073c2a, #075d40);
}

html.theme-dark .home-bento__avatars span { border-color: #0a2b20; }
html.theme-dark .home-bento__vote { background: rgba(14, 99, 67, .22); }
html.theme-dark .home-bento__card--community {
    background: radial-gradient(circle at 95% 10%, rgba(185, 245, 95, .1), transparent 30%), #0a2b20;
}

html.theme-dark .home-mobile {
    background: radial-gradient(circle at 90% 20%, rgba(55, 194, 142, .15), transparent 34%), linear-gradient(140deg, #09271d, #0b3326);
}

@media (max-width: 980px) {
    .home-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .home-hero__copy { max-width: 760px; }
    .home-hero__showcase { width: min(620px, 100%); margin: 0 auto; }
    .home-product { width: min(620px, 100%); margin: 0 auto; transform: none; }

    .home-proof {
        grid-template-columns: repeat(3, 1fr);
    }

    .home-proof p {
        grid-column: 1 / -1;
        max-width: none;
        margin: 0;
        padding-top: .25rem;
        text-align: left;
    }

    .home-proof > div:nth-child(3) { border-right: 0; }
    .home-bento__card--scanner { grid-column: span 12; }
    .home-bento__card:not(.home-bento__card--scanner):not(.home-bento__card--community) { grid-column: span 6; }
    .home-bento__card--community { grid-column: span 6; grid-template-columns: 1fr; align-content: start; }
    .home-bento__card--community .home-bento__avatars { margin-bottom: .25rem; }
    .home-bento__vote { grid-column: 1 / -1; }

    .home-workflow,
    .home-mobile {
        grid-template-columns: 1fr;
    }

    .home-mobile__copy { max-width: 760px; }
    .home-mobile__visual { min-height: 455px; }
    .home-closing { grid-template-columns: 1fr; }
    .home-closing__actions { justify-content: flex-start; }
}

@media (max-width: 720px) {
    .home-modern { gap: 3.5rem; }

    .home-hero {
        padding: 1.5rem;
        border-radius: 26px;
        gap: 2.2rem;
    }

    .home-hero h1 { font-size: clamp(2.45rem, 12vw, 3.6rem); }
    .home-hero__lead { font-size: .98rem; }
    .home-hero__actions { align-items: stretch; }
    .home-hero__actions .home-button { flex: 1 1 100%; width: 100%; }

    .home-product { padding: .45rem; border-radius: 22px; }
    .home-hero__showcase { padding-top: 6.2rem; }
    .home-showcase-brand { min-width: 235px; padding: .65rem .9rem .65rem .65rem; }
    .home-showcase-brand__mark { width: 52px; height: 52px; border-radius: 15px; }
    .home-showcase-brand__mark img { width: 40px; height: 40px; }
    .home-showcase-brand__copy strong { font-size: 1.25rem; }
    .home-showcase-brand__copy small { font-size: .68rem; }
    .home-product__body { padding: .8rem; border-radius: 17px; }
    .home-product__verified { position: relative; right: auto; bottom: auto; max-width: none; margin: .5rem; }
    .home-product__chrome small { display: none; }

    .home-proof {
        grid-template-columns: 1fr;
        gap: .85rem;
        margin-top: -2rem;
        padding: 1rem;
    }

    .home-proof > div {
        display: grid;
        grid-template-columns: minmax(95px, auto) 1fr;
        align-items: center;
        gap: .8rem;
        min-width: 0;
        padding: 0 0 .8rem;
        border-right: 0;
        border-bottom: 1px solid var(--home-line);
    }

    .home-proof > div:nth-child(3) { border-bottom: 0; padding-bottom: 0; }
    .home-proof p { display: none; }

    .home-offer,
    .home-activation { margin-top: -1.8rem; }
    .home-offer { padding: 1.25rem; }
    .home-offer__remaining { position: static; order: -1; }

    .home-section__header { grid-template-columns: 1fr; gap: .8rem; }
    .home-section__header > p { margin: 0; }
    .home-section__header h2,
    .home-workflow h2,
    .home-mobile h2,
    .home-closing h2 { font-size: clamp(1.95rem, 10vw, 2.8rem); }

    .home-bento { grid-template-columns: 1fr; }
    .home-bento__card,
    .home-bento__card--scanner,
    .home-bento__card:not(.home-bento__card--scanner):not(.home-bento__card--community),
    .home-bento__card--community {
        grid-column: 1;
    }

    .home-bento__card { min-height: auto; padding: 1.3rem; }
    .home-bento__card--scanner { min-height: 390px; padding-right: 1.3rem; padding-bottom: 190px; }
    .home-bento__scanline { top: auto; right: 10%; bottom: 1.2rem; left: 10%; width: auto; height: 150px; }
    .home-bento__tag { top: 1.4rem; right: 1.3rem; }
    .home-bento__card--community { display: grid; grid-template-columns: 1fr; }
    .home-bento__vote { grid-column: auto; }

    .home-workflow,
    .home-mobile,
    .home-closing {
        padding: 1.5rem;
        border-radius: 26px;
    }

    .home-workflow { grid-template-columns: minmax(0, 1fr); gap: 2rem; }
    .home-workflow__steps li { grid-template-columns: 45px minmax(0, 1fr); padding: .85rem; }
    .home-workflow__steps li > span { width: 40px; height: 40px; }

    .home-mobile__badges { display: grid; grid-template-columns: 1fr; }
    .home-store { width: 100%; }
    .home-mobile__visual { min-height: 390px; transform: scale(.86); margin: -20px 0; }

    .home-closing__actions { align-items: stretch; }
    .home-closing__actions > * { width: 100%; }
}

@media (max-width: 400px) {
    .home-hero { padding: 1.2rem; }
    .home-product__heading { grid-template-columns: auto minmax(0, 1fr); }
    .home-product__question h2 { font-size: .92rem; }
    .home-product__answer { grid-template-columns: 25px minmax(0, 1fr) auto; padding: .45rem; }
    .home-phone--back { margin-left: -115px; }
}

@media (prefers-reduced-motion: reduce) {
    .home-modern > *,
    .home-bento__scanline span {
        animation: none;
    }

    .home-button,
    .home-bento__card,
    .home-store {
        transition: none;
    }
}
