@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
    --bg: #ffffff;
    --bg-subtle: #fafafa;
    --bg-muted: #f4f4f5;
    --fg: #09090b;
    --fg-soft: #3f3f46;
    --muted: #71717a;
    --muted-2: #a1a1aa;
    --border: #e4e4e7;
    --border-soft: #f0f0f1;
    --card: #ffffff;
    --brand: #ff4d6b;
    --brand-ink: #e11d48;
    --violet: #6d5cff;
    --grad: linear-gradient(135deg, #ff5d78 0%, #6d5cff 100%);
    --grad-soft: linear-gradient(135deg, rgba(255, 93, 120, .14), rgba(109, 92, 255, .14));
    --ring: rgba(9, 9, 11, .06);
    --shadow-xs: 0 1px 2px rgba(9, 9, 11, .05);
    --shadow-sm: 0 2px 8px rgba(9, 9, 11, .05), 0 1px 2px rgba(9, 9, 11, .04);
    --shadow-md: 0 10px 30px rgba(9, 9, 11, .08), 0 2px 6px rgba(9, 9, 11, .04);
    --shadow-lg: 0 30px 60px rgba(9, 9, 11, .12), 0 8px 20px rgba(9, 9, 11, .06);
    --shadow-glow: 0 40px 120px rgba(109, 92, 255, .22);
    --r-sm: 12px;
    --r: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
    --nav-h: 68px;
    --maxw: 1140px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--fg-soft);
    line-height: 1.6;
    font-size: 16px;
    letter-spacing: -.011em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    color: var(--fg);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.03em;
}

::selection {
    background: rgba(255, 77, 107, .16);
    color: var(--fg);
}

.wrap {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--fg-soft);
    padding: 6px 14px 6px 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, .7);
    box-shadow: var(--shadow-xs);
    backdrop-filter: blur(6px);
}

.eyebrow .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--grad);
    box-shadow: 0 0 0 4px rgba(255, 93, 120, .14);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-weight: 600;
    font-size: 15px;
    padding: 0 20px;
    height: 46px;
    border-radius: var(--r-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .22s ease, background .2s ease, border-color .2s ease, color .2s ease;
    white-space: nowrap;
}

.btn-dark {
    background: var(--fg);
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: #18181b;
}

.btn-ghost {
    background: #fff;
    color: var(--fg);
    border-color: var(--border);
    box-shadow: var(--shadow-xs);
}

.btn-ghost:hover {
    transform: translateY(-2px);
    border-color: var(--muted-2);
    box-shadow: var(--shadow-sm);
}

.btn-store {
    height: 54px;
    padding: 0 24px;
    gap: 12px;
}

.btn-store .apple {
    width: 22px;
    height: 26px;
    fill: currentColor;
}

.btn-store small {
    display: block;
    font-size: 11px;
    font-weight: 500;
    opacity: .7;
    letter-spacing: .02em;
    line-height: 1;
    margin-bottom: 2px;
}

.btn-store b {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1;
}

.btn-store span {
    text-align: left;
}

.grad-text {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.s-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
    border-bottom: 1px solid transparent;
}

.s-nav.is-scrolled {
    background: rgba(255, 255, 255, .72);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom-color: var(--border);
    box-shadow: 0 6px 24px rgba(9, 9, 11, .05);
}

.s-nav .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 19px;
    letter-spacing: -.03em;
    color: var(--fg);
}

.brand img {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, .6);
    box-shadow: var(--shadow-xs);
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--fg-soft);
    padding: 8px 16px;
    border-radius: 999px;
    transition: background .2s ease, color .2s ease;
}

.nav-links a:hover {
    background: var(--bg-muted);
    color: var(--fg);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--fg);
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
}

.s-hero {
    position: relative;
    padding: calc(var(--nav-h) + 72px) 0 40px;
    text-align: center;
    overflow: hidden;
}

.s-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(60% 50% at 50% 0%, rgba(109, 92, 255, .12) 0%, rgba(109, 92, 255, 0) 70%),
        radial-gradient(45% 40% at 80% 10%, rgba(255, 93, 120, .12) 0%, rgba(255, 93, 120, 0) 70%),
        radial-gradient(40% 40% at 15% 15%, rgba(255, 173, 90, .1) 0%, rgba(255, 173, 90, 0) 70%);
    z-index: -2;
}

.s-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(9, 9, 11, .035) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(9, 9, 11, .035) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: radial-gradient(70% 60% at 50% 20%, #000 0%, transparent 75%);
    mask-image: radial-gradient(70% 60% at 50% 20%, #000 0%, transparent 75%);
    z-index: -1;
}

.s-hero h1 {
    font-size: clamp(2.5rem, 6.2vw, 4.6rem);
    font-weight: 800;
    letter-spacing: -.045em;
    margin: 26px auto 22px;
    max-width: 15ch;
}

.hero-sub {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: var(--muted);
    max-width: 60ch;
    margin: 0 auto 34px;
    line-height: 1.55;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-trust {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 26px;
    font-size: 14px;
    color: var(--muted);
}

.stars {
    display: inline-flex;
    gap: 2px;
    color: #f5a623;
}

.hero-visual {
    position: relative;
    margin: 56px auto 0;
    max-width: 940px;
    padding: 0 12px;
}

.hero-visual::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 8%;
    width: 78%;
    height: 80%;
    transform: translateX(-50%);
    background: var(--grad);
    filter: blur(90px);
    opacity: .22;
    z-index: -1;
    border-radius: 50%;
}

.hero-visual .glass {
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    background: rgba(255, 255, 255, .55);
    backdrop-filter: blur(8px);
    padding: 18px;
    box-shadow: var(--shadow-lg);
}

.hero-visual img {
    width: 100%;
    border-radius: var(--r-lg);
    animation: floaty 7s ease-in-out infinite;
}

@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

.marquee-strip {
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    background: var(--bg-subtle);
    padding: 26px 0;
    margin-top: 70px;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.pill-row .pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 600;
    color: var(--fg-soft);
    padding: 9px 18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    box-shadow: var(--shadow-xs);
}

.pill-row .pill i {
    font-size: 16px;
}

section[id] {
    scroll-margin-top: 84px;
}

.section {
    padding: 100px 0;
}

.section-head {
    max-width: 640px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-head .eyebrow {
    margin-bottom: 18px;
}

.section-head h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -.04em;
}

.section-head p {
    font-size: 1.12rem;
    color: var(--muted);
    margin-top: 16px;
}

.bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 200px;
    gap: 18px;
}

.bento-card {
    position: relative;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    background: var(--card);
    padding: 26px;
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    transition: transform .3s cubic-bezier(.2, .7, .2, 1), box-shadow .3s ease, border-color .3s ease;
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--muted-2);
}

.bento-card .ico {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    font-size: 22px;
    background: var(--bg-muted);
    border: 1px solid var(--border);
    margin-bottom: 16px;
}

.bento-card h3 {
    font-size: 1.22rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.bento-card p {
    color: var(--muted);
    font-size: .96rem;
}

.col-3 { grid-column: span 3; }
.col-2 { grid-column: span 2; }
.col-4 { grid-column: span 4; }
.row-2 { grid-row: span 2; }

.bento-feature {
    background:
        radial-gradient(120% 120% at 100% 0%, rgba(109, 92, 255, .1), transparent 55%),
        var(--card);
}

.bento-feature .shot {
    margin-top: auto;
    border-radius: 16px 16px 0 0;
    border: 1px solid var(--border);
    border-bottom: 0;
    box-shadow: var(--shadow-md);
    transform: translateY(22px);
    transition: transform .35s ease;
    max-height: 260px;
    object-fit: cover;
    object-position: top center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 260px;
}

.bento-feature:hover .shot {
    transform: translateY(10px);
}

.bento-accent {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(150deg, #16151d 0%, #241f3a 60%, #3a2a55 100%);
}

.bento-accent::after {
    content: "";
    position: absolute;
    right: -30%;
    top: -30%;
    width: 70%;
    height: 90%;
    background: var(--grad);
    filter: blur(70px);
    opacity: .5;
}

.bento-accent h3,
.bento-accent p {
    color: #fff;
    position: relative;
    z-index: 1;
}

.bento-accent p {
    opacity: .82;
}

.bento-accent .ico {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .16);
}

.spotlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
    padding: 60px 0;
}

.spotlight.reverse .sp-text {
    order: 2;
}

.sp-text h2 {
    font-size: clamp(1.8rem, 3.4vw, 2.7rem);
    font-weight: 800;
    letter-spacing: -.035em;
    margin-bottom: 18px;
}

.sp-lead {
    color: var(--muted);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.sp-list {
    display: grid;
    gap: 14px;
}

.sp-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.sp-list .chk {
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: var(--grad-soft);
    color: var(--brand-ink);
    font-size: 13px;
    margin-top: 2px;
}

.sp-list b {
    color: var(--fg);
    font-weight: 600;
}

.sp-list span {
    color: var(--muted);
}

.sp-visual {
    position: relative;
    display: grid;
    place-items: center;
    padding: 40px;
}

.sp-visual::before {
    content: "";
    position: absolute;
    inset: 10% 15%;
    background: var(--grad);
    filter: blur(80px);
    opacity: .16;
    border-radius: 50%;
}

.sp-visual img {
    position: relative;
    filter: drop-shadow(0 30px 50px rgba(9, 9, 11, .14));
}

.gallery {
    padding: 90px 0 100px;
    background: var(--bg-subtle);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 22px;
    padding: 8px 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.gallery-track::-webkit-scrollbar {
    display: none;
}

.device {
    flex: 0 0 auto;
    scroll-snap-align: center;
    width: 240px;
    background: #0b0b0f;
    border-radius: 40px;
    padding: 9px;
    box-shadow: var(--shadow-lg);
    transition: transform .3s ease;
}

.device:hover {
    transform: translateY(-8px);
}

.device img {
    border-radius: 32px;
    width: 100%;
}

.reviews {
    columns: 3;
    column-gap: 20px;
}

.review {
    break-inside: avoid;
    margin-bottom: 20px;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    background: var(--card);
    padding: 26px;
    box-shadow: var(--shadow-xs);
    transition: transform .25s ease, box-shadow .25s ease;
}

.review:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review .stars {
    margin-bottom: 12px;
}

.review p {
    color: var(--fg-soft);
    font-size: 1rem;
    margin-bottom: 20px;
}

.review .who {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review .av {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--grad);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 15px;
}

.review .who b {
    display: block;
    color: var(--fg);
    font-weight: 600;
    font-size: .95rem;
}

.review .who small {
    color: var(--muted-2);
    font-size: .82rem;
}

.cta-band {
    padding: 100px 0;
}

.cta-inner {
    position: relative;
    text-align: center;
    padding: 80px 40px;
    border-radius: var(--r-xl);
    background: linear-gradient(150deg, #14131b 0%, #211d34 55%, #33254f 100%);
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.cta-inner::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -40%;
    width: 60%;
    height: 120%;
    transform: translateX(-50%);
    background: var(--grad);
    filter: blur(90px);
    opacity: .35;
}

.cta-inner .eyebrow {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .16);
    color: #fff;
    position: relative;
    z-index: 1;
}

.cta-inner h2 {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: clamp(2rem, 4.4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -.04em;
    margin: 20px auto 16px;
    max-width: 16ch;
}

.cta-inner p {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, .74);
    font-size: 1.12rem;
    max-width: 46ch;
    margin: 0 auto 32px;
}

.cta-inner .btn-store {
    position: relative;
    z-index: 1;
    background: #fff;
    color: var(--fg);
}

.s-footer {
    border-top: 1px solid var(--border);
    padding: 70px 0 36px;
    background: var(--bg-subtle);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}

.footer-brand .brand {
    margin-bottom: 14px;
}

.footer-brand p {
    color: var(--muted);
    font-size: .95rem;
    max-width: 30ch;
}

.socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.socials a {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    border: 1px solid var(--border);
    background: #fff;
    display: grid;
    place-items: center;
    color: var(--fg-soft);
    font-size: 16px;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.socials a:hover {
    transform: translateY(-3px);
    background: var(--fg);
    color: #fff;
    border-color: var(--fg);
}

.footer-col h4 {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted-2);
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-col a {
    display: block;
    color: var(--fg-soft);
    font-size: .95rem;
    padding: 6px 0;
    transition: color .2s ease;
}

.footer-col a:hover {
    color: var(--brand-ink);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 26px;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: var(--muted-2);
    font-size: .88rem;
}

.badge-soon {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: var(--violet);
    padding: 5px 12px 5px 9px;
    border-radius: 999px;
    background: rgba(109, 92, 255, .1);
    border: 1px solid rgba(109, 92, 255, .22);
}

.badge-soon .pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--violet);
    box-shadow: 0 0 0 0 rgba(109, 92, 255, .5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(109, 92, 255, .5); }
    70% { box-shadow: 0 0 0 7px rgba(109, 92, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(109, 92, 255, 0); }
}

.ai {
    padding: 40px 0 100px;
}

.ai-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
    gap: 64px;
}

.ai-text h2 {
    font-size: clamp(1.9rem, 3.6vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -.035em;
    margin: 18px 0 16px;
}

.ai-text .ai-lead {
    color: var(--muted);
    font-size: 1.12rem;
    margin-bottom: 24px;
}

.ai-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ai-chips span {
    font-size: 13px;
    font-weight: 600;
    color: var(--fg-soft);
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: var(--shadow-xs);
}

.ai-card {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    isolation: isolate;
}

.ai-card::before {
    content: "";
    position: absolute;
    inset: -45%;
    z-index: -2;
    background: conic-gradient(from 0deg, #6d5cff, #ff5d78, #ff9c5b, #6d5cff);
    animation: aiSpin 9s linear infinite;
}

.ai-card::after {
    content: "";
    position: absolute;
    inset: 1.6px;
    z-index: -1;
    border-radius: 24.5px;
    background: #fff;
}

@keyframes aiSpin {
    to { transform: rotate(1turn); }
}

.ai-inner {
    padding: 22px;
}

.ai-inner .ai-topline {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 14px;
}

.ai-inner .ai-topline .spark {
    color: var(--violet);
}

.ai-prompt {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 13px 14px;
    background: var(--bg-subtle);
}

.ai-prompt .ptxt {
    flex: 1;
    color: var(--fg);
    font-size: .96rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid var(--violet);
    animation: typing 5s steps(38) infinite, caret .8s step-end infinite;
}

@keyframes typing {
    0% { max-width: 0; }
    45%, 100% { max-width: 100%; }
}

@keyframes caret {
    50% { border-color: transparent; }
}

.ai-prompt .go {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    border: 0;
    background: var(--grad);
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 18px rgba(109, 92, 255, .3);
}

.ai-result {
    margin-top: 14px;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    background: #fff;
}

.ai-result .r-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.ai-result .r-emoji {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--grad-soft);
    display: grid;
    place-items: center;
    font-size: 21px;
}

.ai-result .r-title {
    flex: 1;
}

.ai-result .r-title b {
    display: block;
    color: var(--fg);
    font-weight: 700;
    font-size: .98rem;
}

.ai-result .r-title small {
    color: var(--muted-2);
    font-size: .8rem;
}

.ai-result .r-amount {
    font-weight: 800;
    color: var(--fg);
    letter-spacing: -.02em;
}

.ai-split {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ai-split .who {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--fg-soft);
    padding: 5px 12px 5px 5px;
    border-radius: 999px;
    background: var(--bg-muted);
}

.ai-split .who .av {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--grad);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 700;
}

.soon-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--violet);
    margin-left: 5px;
    vertical-align: middle;
}

.has-js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
}

.has-js .reveal.in {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .has-js .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero-visual img,
    .ai-card::before,
    .ai-prompt .ptxt,
    .badge-soon .pulse {
        animation: none;
    }

    .ai-prompt .ptxt {
        max-width: 100%;
        border-right: 0;
    }
}

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

    .nav-toggle {
        display: inline-flex;
    }

    .s-nav.open .nav-links {
        display: flex;
        position: absolute;
        top: calc(var(--nav-h) - 6px);
        left: 16px;
        right: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 10px;
        border-radius: var(--r);
        background: #fff;
        box-shadow: var(--shadow-lg);
    }

    .s-nav.open .nav-links a {
        text-align: center;
        padding: 12px;
    }

    .bento {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
    }

    .bento-card {
        grid-column: span 1 !important;
        grid-row: auto !important;
        min-height: 200px;
    }

    .bento-feature {
        grid-column: span 2 !important;
    }

    .ai-grid {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }

    .ai-chips {
        justify-content: center;
    }

    .ai-prompt,
    .ai-result .r-head,
    .ai-split {
        text-align: left;
    }

    .spotlight {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .spotlight.reverse .sp-text {
        order: 0;
    }

    .sp-list li {
        text-align: left;
    }

    .reviews {
        columns: 2;
    }

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

@media (max-width: 620px) {
    .wrap {
        padding: 0 18px;
    }

    .nav-links {
        display: none;
    }

    .brand span {
        display: none;
    }

    .section {
        padding: 72px 0;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn,
    .hero-cta .btn-store {
        width: 100%;
    }

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

    .bento-card,
    .bento-feature {
        grid-column: span 1 !important;
    }

    .reviews {
        columns: 1;
    }

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

    .cta-inner {
        padding: 56px 22px;
    }
}
