:root {
    --bg-page: #07111f;
    --bg-band: #0b1627;
    --surface: #101c30;
    --surface-2: #132338;
    --surface-3: #172a43;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.16);
    --border-accent: rgba(24, 195, 143, 0.34);
    --text-strong: #f4f8fb;
    --text-body: #c8d7e6;
    --text-muted: #92a7bc;
    --accent-green: #18c38f;
    --accent-green-bright: #2ee0a6;
    --accent-blue: #3ea3d8;
    --accent-amber: #f2b84b;
    --danger-soft: #f87171;
    --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.42);
    --shadow-card: 0 24px 56px rgba(0, 0, 0, 0.56);
    --shadow-green: 0 16px 32px rgba(24, 195, 143, 0.28);
    --radius: 16px;
    --radius-pill: 999px;
    --container: 1200px;
    --pad: 24px;
    --section: 96px;
}

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

html {
    scroll-behavior: smooth;
    background: var(--bg-page);
}

body {
    margin: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 420px),
        var(--bg-page);
    color: var(--text-body);
    font-family: Figtree, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
    background-size: 64px 64px;
    opacity: 0.72;
    pointer-events: none;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

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

button {
    font: inherit;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    transform: translateY(-140%);
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--accent-green-bright);
    color: #03120d;
    font-weight: 800;
    text-decoration: none;
}

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

.container {
    width: 100%;
    max-width: calc(var(--container) + (var(--pad) * 2));
    margin-inline: auto;
    padding-inline: var(--pad);
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 17, 31, 0.86);
    backdrop-filter: blur(14px);
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 76px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

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

.topbar__nav {
    display: none;
    align-items: center;
    gap: 8px;
}

.topbar__nav a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: var(--radius-pill);
    color: var(--text-muted);
    font-size: 0.94rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
}

.topbar__nav a:hover,
.topbar__nav a:focus-visible {
    color: var(--text-strong);
    background: rgba(255, 255, 255, 0.06);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--accent-green-bright), var(--accent-green));
    color: #03120d;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    box-shadow: var(--shadow-green);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(46, 224, 166, 0.34);
}

.button:focus-visible,
.back-to-top:focus-visible,
.faq-item summary:focus-visible {
    outline: 3px solid rgba(46, 224, 166, 0.48);
    outline-offset: 4px;
}

.button span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: var(--radius-pill);
    background: rgba(3, 18, 13, 0.13);
}

.button svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.button--small {
    min-height: 44px;
    padding-inline: 14px;
    font-size: 0.94rem;
    border-radius: 12px;
}

.button--small span {
    width: 28px;
    height: 28px;
}

.button--secondary {
    background: var(--surface-2);
    color: var(--text-strong);
    border-color: var(--border-subtle);
    box-shadow: var(--shadow-soft);
}

.button--secondary:hover {
    border-color: var(--border-strong);
    background: var(--surface-3);
    box-shadow: var(--shadow-card);
}

.hero {
    position: relative;
    isolation: isolate;
    padding: 78px 0 96px;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(46, 224, 166, 0.32), transparent);
}

.hero__grid {
    display: grid;
    gap: 56px;
    align-items: center;
}

.hero__content {
    max-width: 760px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    color: var(--accent-green-bright);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: var(--radius-pill);
    background: currentColor;
    box-shadow: 0 0 0 6px rgba(46, 224, 166, 0.1);
}

h1,
h2,
h3,
p {
    margin: 0;
}

h1 {
    max-width: 880px;
    color: var(--text-strong);
    font-size: 2.75rem;
    line-height: 0.94;
    font-weight: 900;
    letter-spacing: 0;
}

.hero__lead {
    max-width: 690px;
    margin-top: 24px;
    color: #d7e8f6;
    font-size: 1rem;
    line-height: 1.62;
}

.hero__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
}

.hero__micro {
    max-width: 560px;
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.55;
}

.hero-visual {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 24px 0 48px;
    border: 1px solid var(--border-subtle);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(24, 195, 143, 0.1), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
    box-shadow: var(--shadow-card);
}

.phone-preview {
    position: relative;
    z-index: 2;
    width: min(278px, 72vw);
    aspect-ratio: 9 / 16;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 34px;
    background: #050c16;
    box-shadow: 0 32px 70px rgba(0, 0, 0, 0.48);
}

.phone-preview__top {
    position: absolute;
    top: 12px;
    left: 50%;
    width: 78px;
    height: 20px;
    border-radius: var(--radius-pill);
    background: #030812;
    transform: translateX(-50%);
}

.phone-preview__screen {
    display: grid;
    align-content: space-between;
    gap: 18px;
    width: 100%;
    height: 100%;
    padding: 54px 18px 22px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(5, 14, 27, 0.12), rgba(5, 14, 27, 0.78)),
        linear-gradient(135deg, #1f384e 0%, #17243c 48%, #101827 100%);
    overflow: hidden;
}

.phone-preview__screen img {
    width: 102px;
    height: auto;
}

.video-frame {
    display: grid;
    align-content: end;
    min-height: 220px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(46, 224, 166, 0.16), transparent 44%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.video-frame span {
    color: var(--accent-green-bright);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.video-frame strong {
    margin-top: 4px;
    color: var(--text-strong);
    font-size: 2.35rem;
    line-height: 1;
    font-weight: 900;
}

.caption-strip {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(3, 9, 18, 0.72);
    color: var(--text-strong);
    font-size: 0.9rem;
    font-weight: 800;
    text-align: center;
}

.timeline {
    position: absolute;
    z-index: 3;
    right: 12px;
    bottom: 56px;
    width: min(360px, 78vw);
    padding: 16px;
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    background: rgba(10, 21, 38, 0.92);
    box-shadow: var(--shadow-card);
}

.timeline__row {
    height: 16px;
    margin-bottom: 10px;
    border-radius: 6px;
}

.timeline__row:last-of-type {
    margin-bottom: 0;
}

.timeline__row--green {
    width: 78%;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-green-bright));
}

.timeline__row--blue {
    width: 62%;
    background: linear-gradient(90deg, #1d6f9f, var(--accent-blue));
}

.timeline__row--amber {
    width: 44%;
    background: linear-gradient(90deg, #a46b21, var(--accent-amber));
}

.timeline__cursor {
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 58%;
    width: 2px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.8);
}

.floating-notes {
    position: absolute;
    z-index: 4;
    inset: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    pointer-events: none;
}

.floating-notes li {
    position: absolute;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 12px;
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-pill);
    background: rgba(7, 17, 31, 0.88);
    color: var(--text-strong);
    font-size: 0.82rem;
    font-weight: 900;
    box-shadow: var(--shadow-soft);
}

.floating-notes li:nth-child(1) {
    left: 6px;
    top: 64px;
}

.floating-notes li:nth-child(2) {
    right: 6px;
    top: 118px;
    border-color: rgba(62, 163, 216, 0.4);
}

.floating-notes li:nth-child(3) {
    left: 34px;
    bottom: 112px;
    border-color: rgba(242, 184, 75, 0.42);
}

.trustbar {
    padding: 28px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-band);
}

.trustbar__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

.trustbar strong {
    display: block;
    color: var(--accent-green-bright);
    font-size: 1.65rem;
    line-height: 1;
    font-weight: 900;
}

.trustbar span {
    display: block;
    margin-top: 6px;
    color: var(--text-body);
    font-size: 0.96rem;
}

.section {
    padding: var(--section) 0;
}

.section--band {
    background: var(--bg-band);
    border-block: 1px solid var(--border-subtle);
}

.section-head {
    max-width: 710px;
}

.section-head--center {
    margin-inline: auto;
    text-align: center;
}

.section-head h2,
.fit-panel h2,
.final-cta h2 {
    color: var(--text-strong);
    font-size: 2rem;
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: 0;
}

.section-head p:not(.eyebrow),
.fit-panel p,
.final-cta p {
    margin-top: 16px;
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.65;
}

.skills-grid,
.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 42px;
}

.surface,
.step,
.fit-panel,
.apply-box,
.faq-item,
.final-cta__box {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.surface,
.step,
.fit-panel {
    padding: 28px;
}

.surface {
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.surface:hover {
    transform: translateY(-2px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-card);
}

.surface__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-bright));
    color: #041218;
    box-shadow: 0 8px 20px rgba(24, 195, 143, 0.28);
}

.surface__icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.surface h3,
.step h3 {
    margin-top: 22px;
    color: var(--text-strong);
    font-size: 1.35rem;
    line-height: 1.15;
    font-weight: 900;
}

.surface p,
.step p {
    margin-top: 12px;
    color: var(--text-body);
    line-height: 1.62;
}

.two-column,
.fit-grid {
    display: grid;
    gap: 36px;
}

.check-list,
.fit-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li,
.fit-list li {
    position: relative;
    min-height: 56px;
    padding: 17px 18px 17px 52px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.035);
    color: var(--text-body);
    line-height: 1.5;
}

.check-list li::before,
.fit-list li::before {
    position: absolute;
    top: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: var(--radius-pill);
    font-size: 0.82rem;
    font-weight: 900;
}

.check-list li::before,
.fit-list--yes li::before {
    content: "✓";
    background: rgba(46, 224, 166, 0.14);
    border: 1px solid rgba(46, 224, 166, 0.34);
    color: var(--accent-green-bright);
}

.fit-list--no li::before {
    content: "×";
    background: rgba(248, 113, 113, 0.14);
    border: 1px solid rgba(248, 113, 113, 0.34);
    color: var(--danger-soft);
}

.fit-panel {
    background:
        linear-gradient(180deg, rgba(46, 224, 166, 0.08), transparent 220px),
        var(--surface);
}

.fit-panel--quiet {
    background:
        linear-gradient(180deg, rgba(62, 163, 216, 0.08), transparent 220px),
        var(--surface);
}

.fit-panel .fit-list {
    margin-top: 26px;
}

.step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-bright));
    color: #041218;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(24, 195, 143, 0.28);
}

.apply-box {
    display: grid;
    gap: 22px;
    align-items: center;
    margin-top: 28px;
    padding: 24px;
    border-color: var(--border-accent);
    background:
        linear-gradient(135deg, rgba(24, 195, 143, 0.1), transparent 48%),
        var(--surface-2);
}

.apply-box strong {
    color: var(--text-strong);
    font-size: 1rem;
    font-weight: 900;
}

.apply-box p {
    margin-top: 6px;
    color: var(--text-muted);
    line-height: 1.5;
}

.faq-wrap {
    max-width: 780px;
}

.faq-list {
    display: grid;
    gap: 14px;
    margin-top: 36px;
}

.faq-item {
    overflow: hidden;
}

.faq-item summary {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 66px;
    padding: 20px 58px 20px 22px;
    color: var(--text-strong);
    cursor: pointer;
    font-weight: 900;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "";
    position: absolute;
    right: 24px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--accent-green-bright);
    border-bottom: 2px solid var(--accent-green-bright);
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    transform: rotate(225deg);
}

.faq-item p {
    padding: 0 22px 22px;
    color: var(--text-body);
    line-height: 1.62;
}

.final-cta {
    padding: var(--section) 0;
    border-top: 1px solid var(--border-subtle);
    background:
        linear-gradient(135deg, rgba(24, 195, 143, 0.12), transparent 36%),
        linear-gradient(180deg, var(--bg-band), var(--bg-page));
}

.final-cta__box {
    display: grid;
    gap: 28px;
    align-items: center;
    padding: 32px;
    border-color: var(--border-accent);
    background: rgba(19, 35, 56, 0.84);
    backdrop-filter: blur(8px);
}

.final-cta p {
    max-width: 680px;
}

.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-pill);
    background: #0f172a;
    color: var(--accent-green-bright);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

@media (min-width: 640px) {
    .hero__actions {
        flex-direction: row;
        align-items: center;
    }

    .button--secondary {
        min-width: 150px;
    }

    .apply-box {
        grid-template-columns: minmax(0, 1fr) auto;
    }
}

@media (min-width: 768px) {
    :root {
        --section: 112px;
    }

    h1 {
        font-size: 4.4rem;
    }

    .hero__lead {
        font-size: 1.12rem;
    }

    .trustbar strong {
        font-size: 2.4rem;
    }

    .section-head h2,
    .fit-panel h2,
    .final-cta h2 {
        font-size: 3rem;
    }

    .topbar__nav {
        display: flex;
    }

    .trustbar__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .skills-grid,
    .steps,
    .fit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    :root {
        --pad: 32px;
        --section: 128px;
    }

    h1 {
        font-size: 5.75rem;
    }

    .hero__lead {
        font-size: 1.2rem;
    }

    .trustbar strong {
        font-size: 2.65rem;
    }

    .section-head h2,
    .fit-panel h2,
    .final-cta h2 {
        font-size: 3.6rem;
    }

    .hero {
        min-height: calc(100svh - 76px);
        display: grid;
        align-items: center;
        padding: 96px 0 112px;
    }

    .hero__grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
    }

    .skills-grid,
    .steps {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .two-column {
        grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
        align-items: start;
    }

    .final-cta__box {
        grid-template-columns: minmax(0, 1fr) auto;
        padding: 48px;
    }
}

@media (max-width: 480px) {
    :root {
        --pad: 18px;
        --section: 76px;
    }

    .topbar__inner {
        min-height: 68px;
        gap: 12px;
    }

    .brand img {
        width: 112px;
    }

    .button--small {
        min-height: 40px;
        padding-inline: 12px;
    }

    .button--small span {
        display: none;
    }

    .hero {
        padding-top: 56px;
    }

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

    .timeline {
        right: 0;
        bottom: 46px;
    }

    .floating-notes li:nth-child(2) {
        top: 92px;
    }

    .surface,
    .step,
    .fit-panel,
    .final-cta__box {
        padding: 22px;
    }

    .apply-box {
        padding: 20px;
    }

    .apply-box .button,
    .final-cta .button {
        width: 100%;
    }
}

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

    *,
    *::before,
    *::after {
        transition: none !important;
    }
}
