.native-start {
    --native-accent: #3effa0;
    position: relative;
    min-height: 100dvh;
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding: calc(18px + env(safe-area-inset-top)) 20px calc(18px + env(safe-area-inset-bottom));
    color: #f7f7f4;
    background: #050506;
    font-family: var(--font, Inter, system-ui, sans-serif);
}

.native-start__glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(12px);
    pointer-events: none;
}

.native-start__glow--one {
    width: 420px;
    height: 420px;
    top: -270px;
    right: -190px;
    background: radial-gradient(circle, rgba(62, 255, 160, .18), transparent 68%);
}

.native-start__glow--two {
    width: 360px;
    height: 360px;
    left: -260px;
    bottom: 2%;
    background: radial-gradient(circle, rgba(101, 87, 255, .13), transparent 68%);
}

.native-start__header,
.native-start__main,
.native-start__footer { position: relative; z-index: 1; }

.native-start__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
}

.native-start__header .brand-logo { width: 142px; height: auto; }

.native-start__secure {
    color: #9ca09f;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 999px;
    padding: 7px 9px;
}

.native-start__main {
    width: min(100%, 620px);
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.native-start__loading { display: grid; place-items: center; }

.native-start__slide {
    width: 100%;
    padding: clamp(28px, 6vh, 64px) 0 20px;
    animation: native-slide-in .42s cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes native-slide-in {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: none; }
}

.native-start__eyebrow {
    margin: 0 0 14px;
    color: var(--native-accent);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
}

.native-start h1 {
    margin: 0;
    max-width: 560px;
    color: #fff;
    font-family: var(--font-display, Syne, Inter, sans-serif);
    font-size: clamp(34px, 9vw, 58px);
    line-height: .98;
    letter-spacing: -.045em;
}

.native-start__lead {
    margin: 18px 0 0;
    max-width: 520px;
    color: #9ca09f;
    font-size: 15px;
    line-height: 1.58;
}

.native-start__snapshot {
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 24px;
    padding: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025));
    box-shadow: 0 28px 80px rgba(0, 0, 0, .34);
}

.native-start__hero-metric { display: flex; flex-direction: column; gap: 6px; }
.native-start__hero-metric span,
.native-start__mini-grid span { color: #7d817f; font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.native-start__hero-metric strong { color: var(--native-accent); font-size: clamp(34px, 10vw, 52px); letter-spacing: -.045em; }
.native-start__hero-metric small { color: #676b69; font-size: 10px; }

.native-start__mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 18px;
}

.native-start__mini-grid > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 12px 10px;
    border-radius: 14px;
    background: rgba(0, 0, 0, .3);
}

.native-start__mini-grid strong { color: #f8f8f5; font-size: clamp(12px, 3.4vw, 16px); white-space: nowrap; }

.native-start__capabilities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 24px;
}

.native-start__capability {
    min-height: 112px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .085);
    background: rgba(255, 255, 255, .035);
}

.native-start__cap-no { display: block; margin-bottom: 13px; color: var(--native-accent); font-size: 9px; font-weight: 800; }
.native-start__capability strong { color: #f4f4f1; font-size: 13px; line-height: 1.2; }
.native-start__capability p { margin: 6px 0 0; color: #7f8381; font-size: 10px; line-height: 1.38; }

.native-start__prompt {
    margin-top: 26px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(62, 255, 160, .17);
    background: linear-gradient(145deg, rgba(62, 255, 160, .08), rgba(255, 255, 255, .025));
}

.native-start__prompt > span { color: var(--native-accent); font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.native-start__prompt > p { margin: 12px 0 16px; color: #fff; font-size: 16px; line-height: 1.4; }
.native-start__answer { display: flex; flex-direction: column; gap: 5px; padding: 13px; border-radius: 14px; background: rgba(0, 0, 0, .28); }
.native-start__answer strong { color: #f7f7f4; font-size: 12px; }
.native-start__answer small { color: #8c908e; font-size: 10px; line-height: 1.45; }

.native-start__trust { display: grid; gap: 9px; margin: 18px 0 0; padding: 0; list-style: none; }
.native-start__trust li { position: relative; padding-left: 21px; color: #979b99; font-size: 11px; }
.native-start__trust li::before { content: ""; position: absolute; left: 1px; top: 4px; width: 7px; height: 7px; border-radius: 50%; background: var(--native-accent); box-shadow: 0 0 16px rgba(62, 255, 160, .55); }

.native-start__footer {
    width: min(100%, 620px);
    margin: 0 auto;
    display: grid;
    gap: 10px;
    padding-top: 14px;
}

.native-start__dots { display: flex; justify-content: center; gap: 7px; margin-bottom: 5px; }
.native-start__dots button { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 999px; background: #343735; transition: width .25s ease, background .25s ease; }
.native-start__dots button.is-active { width: 25px; background: var(--native-accent); }

.native-start__primary,
.native-start__secondary,
.native-start__text {
    min-height: 52px;
    border-radius: 15px;
    font: 700 14px var(--font, Inter, sans-serif);
    cursor: pointer;
}

.native-start__primary { border: 0; color: #05120b; background: var(--native-accent); box-shadow: 0 12px 38px rgba(62, 255, 160, .16); }
.native-start__secondary { border: 1px solid rgba(255, 255, 255, .13); color: #f7f7f4; background: rgba(255, 255, 255, .045); }
.native-start__text { min-height: 34px; border: 0; color: #8f9391; background: transparent; font-size: 12px; }

@media (max-height: 720px) {
    .native-start__slide { padding-top: 18px; }
    .native-start h1 { font-size: clamp(30px, 8vw, 44px); }
    .native-start__lead { margin-top: 12px; }
    .native-start__snapshot,
    .native-start__capabilities,
    .native-start__prompt { margin-top: 17px; }
    .native-start__capability { min-height: 94px; padding: 11px; }
    .native-start__cap-no { margin-bottom: 8px; }
}

@media (min-width: 700px) {
    .native-start { padding-inline: 42px; }
    .native-start__capabilities { grid-template-columns: repeat(3, 1fr); }
    .native-start__slide--final { max-width: 580px; margin: auto; }
}

@media (prefers-reduced-motion: reduce) {
    .native-start__slide { animation: none; }
}

.native-language {
    --native-language-gutter: clamp(20px, 5.5vw, 32px);
    position: relative;
    min-height: 100dvh;
    overflow: hidden;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    padding: calc(20px + env(safe-area-inset-top)) var(--native-language-gutter) calc(18px + env(safe-area-inset-bottom));
    color: #f7f7f4;
    background:
        linear-gradient(180deg, rgba(62, 255, 160, .035), transparent 30%),
        #050506;
}

.native-language__glow {
    position: absolute;
    width: 560px;
    height: 560px;
    left: 50%;
    top: -370px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(62, 255, 160, .16), transparent 66%);
    pointer-events: none;
}

.native-language__brand,
.native-language__main,
.native-language__choices { position: relative; z-index: 1; width: min(100%, 560px); margin-inline: auto; }

.native-language__brand {
    min-height: 44px;
    display: grid;
    place-items: center;
}
.native-language__brand .brand-logo {
    width: min(148px, 42vw);
    height: auto;
    margin: 0;
    object-position: center;
}
.native-language__main {
    align-self: center;
    padding: clamp(26px, 6vh, 58px) 0 22px;
}
.native-language__eyebrow { margin: 0 0 15px; color: #3effa0; font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.native-language__main h1 {
    margin: 0;
    max-width: 430px;
    text-wrap: balance;
    font: 800 clamp(39px, 10.5vw, 58px)/.96 var(--font-display, Syne, Inter, sans-serif);
    letter-spacing: -.052em;
}
.native-language__main > p:not(.native-language__eyebrow) { margin: 18px 0 0; max-width: 500px; color: #929795; font-size: 14px; line-height: 1.58; }
.native-language__features { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 22px; }
.native-language__features span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.09); border-radius: 999px; color: #a5aaa7; background: rgba(255,255,255,.035); font-size: 9px; font-weight: 700; }
.native-language__choices h2 { margin: 0 0 12px; color: #777c79; font-size: 10px; font-weight: 700; letter-spacing: .045em; }
.native-language__choices button {
    width: 100%;
    min-height: 66px;
    display: grid;
    grid-template-columns: 40px 1fr auto;
    align-items: center;
    gap: 13px;
    margin-top: 9px;
    padding: 12px 15px 12px 12px;
    border: 1px solid rgba(255,255,255,.095);
    border-radius: 18px;
    color: #f7f7f4;
    text-align: left;
    background: linear-gradient(135deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
    box-shadow: inset 0 1px rgba(255,255,255,.035);
}
.native-language__choices button:active { border-color: rgba(62,255,160,.45); background: rgba(62,255,160,.08); }
.native-language__choices button > strong { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 13px; color: #06130c; background: #3effa0; font-size: 11px; box-shadow: 0 9px 28px rgba(62,255,160,.13); }
.native-language__choices button > span { display: flex; flex-direction: column; gap: 4px; }
.native-language__choices button b { font-size: 13px; }
.native-language__choices button small { color: #7f8481; font-size: 9px; }
.native-language__choices button i { color: #7f8481; font-style: normal; }
.native-language__choices > p { margin: 13px 0 0; color: #555a57; text-align: center; font-size: 9px; }

@media (max-height: 740px) {
    .native-language { padding-top: calc(14px + env(safe-area-inset-top)); }
    .native-language__main { padding: 20px 0 16px; }
    .native-language__eyebrow { margin-bottom: 11px; }
    .native-language__main h1 { font-size: clamp(36px, 10vw, 48px); }
    .native-language__main > p:not(.native-language__eyebrow) { margin-top: 13px; line-height: 1.48; }
    .native-language__features { margin-top: 15px; }
    .native-language__choices button { min-height: 60px; }
    .native-language__choices button > strong { width: 36px; height: 36px; }
}

@media (min-width: 700px) {
    .native-language__main { text-align: center; }
    .native-language__main h1,
    .native-language__main > p:not(.native-language__eyebrow) { margin-inline: auto; }
    .native-language__features { justify-content: center; }
    .native-language__choices { max-width: 520px; }
}
