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

:root {
    --navy:       #0A1526;
    --navy-2:     #0D1F3C;
    --navy-mid:   #1B3A6B;
    --blue:       #2F6BFF;
    --blue-light: #5B8DEF;
    --cyan:       #38E1D6;
    --violet:     #A78BFA;
    --white:      #FFFFFF;
    --ink:        #0B1220;
    --gray-50:    #F7F9FC;
    --gray-100:   #EEF2F8;
    --gray-200:   #E2E8F0;
    --gray-400:   #94A3B8;
    --gray-500:   #64748B;
    --gray-600:   #475569;
    --gray-900:   #0F172A;
    --radius:     16px;
    --radius-lg:  22px;
    --shadow-lg:  0 30px 60px -18px rgb(8 20 40 / 0.28);
    --maxw:       1180px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-900);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

/* ── NAV ─────────────────────────────────────────── */
.nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    padding: 18px 0;
    transition: background 0.35s, box-shadow 0.35s, padding 0.35s;
}

.nav--scrolled {
    background: rgba(9, 17, 33, 0.72);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    padding: 12px 0;
    box-shadow: 0 1px 0 rgb(255 255 255 / 0.06), 0 12px 40px -20px rgb(0 0 0 / 0.6);
}

.nav__inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    margin-right: auto;
}

.nav__brand-mark {
    height: 38px; width: auto; display: block;
    background: rgba(255, 255, 255, 0.96);
    padding: 7px 10px;
    border-radius: 10px;
    box-shadow: 0 3px 12px -4px rgba(0, 0, 0, 0.45);
}

.nav__brand-name {
    font-family: 'Sora', 'Inter', sans-serif;
    font-weight: 800;
    font-size: 17px;
    letter-spacing: -0.02em;
    color: var(--white);
}

.nav__links {
    display: flex;
    list-style: none;
    gap: 34px;
}

.nav__links a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
    transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    border: 1.5px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.btn--sm  { padding: 10px 18px; font-size: 14px; }
.btn--lg  { padding: 15px 30px; font-size: 16px; }
.btn--full { width: 100%; }

.btn--primary {
    background: linear-gradient(135deg, var(--blue) 0%, #4F46E5 100%);
    color: var(--white);
    box-shadow: 0 10px 30px -10px rgba(47, 107, 255, 0.6);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px -10px rgba(47, 107, 255, 0.75);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(6px);
}
.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn--white {
    background: var(--white);
    color: var(--navy);
}
.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px -10px rgba(0, 0, 0, 0.4);
}

/* ── HERO ────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 150px 0 120px;
    background:
        radial-gradient(1200px 600px at 78% -5%, rgba(56, 225, 214, 0.12), transparent 60%),
        radial-gradient(1000px 700px at 12% 15%, rgba(167, 139, 250, 0.14), transparent 55%),
        linear-gradient(160deg, #06101F 0%, #0C2144 52%, #08172E 100%);
    overflow: hidden;
}

.hero__aurora {
    position: absolute;
    inset: -20% -10% auto -10%;
    height: 80%;
    background:
        conic-gradient(from 180deg at 50% 50%, rgba(47,107,255,0.0), rgba(56,225,214,0.35), rgba(167,139,250,0.35), rgba(47,107,255,0.0));
    filter: blur(90px);
    opacity: 0.5;
    animation: drift 18s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes drift {
    0%   { transform: translate3d(-4%, -2%, 0) rotate(0deg) scale(1.05); }
    100% { transform: translate3d(6%, 4%, 0) rotate(20deg) scale(1.2); }
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 72%);
    -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 72%);
    pointer-events: none;
}

.hero__ridge {
    position: absolute;
    inset: auto 0 0 0;
    height: 320px;
    pointer-events: none;
}
.hero__ridge svg { width: 100%; height: 100%; display: block; }

.hero__fade {
    position: absolute;
    bottom: -1px;
    left: 0; right: 0;
    height: 140px;
    background: linear-gradient(to bottom, transparent, var(--white));
    pointer-events: none;
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    max-width: 760px;
}

.hero__logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.96);
    border-radius: 22px;
    padding: 16px 30px;
    margin-bottom: 36px;
    box-shadow: 0 20px 50px -14px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.4) inset;
}
.hero__logo-img { height: 92px; display: block; }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(56, 225, 214, 0.1);
    color: #7FF0E6;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 7px 15px;
    border-radius: 100px;
    margin-bottom: 26px;
    border: 1px solid rgba(56, 225, 214, 0.28);
}
.badge--center { margin-left: auto; margin-right: auto; }
.badge__dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 0 0 rgba(56,225,214,0.7);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(56,225,214,0.6); }
    70%  { box-shadow: 0 0 0 8px rgba(56,225,214,0); }
    100% { box-shadow: 0 0 0 0 rgba(56,225,214,0); }
}

.hero__headline {
    font-family: 'Sora', 'Inter', sans-serif;
    font-size: clamp(44px, 7vw, 82px);
    font-weight: 800;
    line-height: 1.03;
    color: var(--white);
    letter-spacing: -0.035em;
    margin-bottom: 26px;
}

.gradient-text {
    background: linear-gradient(100deg, #5B8DEF 0%, #38E1D6 48%, #A78BFA 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__sub {
    font-size: 19px;
    color: rgba(226, 232, 240, 0.72);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 400;
}
.hero__sub strong { color: var(--white); font-weight: 700; }

.hero__ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ── PROOF BAND ──────────────────────────────────── */
.proof {
    background: var(--white);
    padding: 8px 0 64px;
}

.proof__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px 24px;
    box-shadow: 0 20px 50px -30px rgba(8,20,40,0.2);
}

.proof__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}
.proof__stat + .proof__stat::before {
    content: '';
    position: absolute;
    left: -10px; top: 12%;
    height: 76%;
    width: 1px;
    background: var(--gray-200);
}

.proof__num {
    font-family: 'Sora', 'Inter', sans-serif;
    font-size: clamp(34px, 5vw, 46px);
    font-weight: 800;
    background: linear-gradient(120deg, var(--blue), #4F46E5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 8px;
}
.proof__num--text { letter-spacing: -0.02em; }
.proof__amp {
    -webkit-text-fill-color: var(--cyan);
    color: var(--cyan);
    margin: 0 2px;
    font-weight: 700;
}

.proof__label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ── SECTIONS ────────────────────────────────────── */
.section { padding: 108px 0; position: relative; }

.section--dark {
    background:
        radial-gradient(900px 500px at 85% 0%, rgba(56,225,214,0.10), transparent 60%),
        radial-gradient(800px 500px at 10% 100%, rgba(167,139,250,0.12), transparent 60%),
        linear-gradient(165deg, #08172E 0%, #0C2144 100%);
}

.section__header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 68px;
}

.label {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 14px;
}
.label--light { color: var(--cyan); }

.section__header h2 {
    font-family: 'Sora', 'Inter', sans-serif;
    font-size: clamp(29px, 4vw, 46px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--navy-2);
    margin-bottom: 16px;
    line-height: 1.08;
}

.section__header p {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.65;
}

.section__header--light h2 { color: var(--white); }
.section__header--light p { color: rgba(226,232,240,0.72); }

/* ── CARDS ───────────────────────────────────────── */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 38px 34px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.card--featured {
    background: linear-gradient(160deg, #0D2044 0%, #16336A 100%);
    border-color: transparent;
    box-shadow: 0 24px 60px -24px rgba(47,107,255,0.5);
}

.card__icon {
    font-size: 30px;
    margin-bottom: 20px;
    display: inline-flex;
    width: 58px; height: 58px;
    align-items: center; justify-content: center;
    border-radius: 14px;
    background: linear-gradient(160deg, rgba(47,107,255,0.12), rgba(56,225,214,0.12));
    border: 1px solid rgba(47,107,255,0.14);
}
.card--featured .card__icon {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.14);
}

.card h3 {
    font-family: 'Sora', 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-2);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.card--featured h3 { color: var(--white); }
.card--featured p  { color: rgba(226,232,240,0.72); }
.card--featured .card__list li { color: rgba(226,232,240,0.82); }
.card--featured .card__list li::before { color: var(--cyan); }

.card p {
    color: var(--gray-600);
    font-size: 15px;
    margin-bottom: 22px;
    line-height: 1.7;
}

.card__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.card__list li {
    font-size: 14px;
    color: var(--gray-600);
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
}
.card__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 800;
    font-size: 13px;
}

/* ── PRODUCTS ────────────────────────────────────── */
.products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 940px;
    margin: 0 auto;
}

.product {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 34px;
    backdrop-filter: blur(8px);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.product:hover {
    transform: translateY(-6px);
    border-color: rgba(56,225,214,0.4);
    background: rgba(255,255,255,0.06);
    box-shadow: 0 30px 70px -30px rgba(56,225,214,0.4);
}

.product__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.product__tag {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
}
.product__tag--ios { background: rgba(91,141,239,0.18); color: #A9C6FF; border: 1px solid rgba(91,141,239,0.35); }
.product__tag--web { background: rgba(56,225,214,0.16); color: #7FF0E6; border: 1px solid rgba(56,225,214,0.35); }

.product__live {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(226,232,240,0.6);
}
.product__live-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #3DDC97;
    box-shadow: 0 0 10px rgba(61,220,151,0.9);
}

.product__name {
    font-family: 'Sora', 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.product__pitch {
    font-size: 15px;
    color: rgba(226,232,240,0.72);
    line-height: 1.7;
    margin-bottom: 20px;
}

.product__points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 24px;
}
.product__points li {
    font-size: 14px;
    color: rgba(226,232,240,0.82);
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
}
.product__points li::before {
    content: '▲';
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-size: 10px;
    top: 3px;
}

.product__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1.5px solid rgba(56,225,214,0.5);
    transition: gap 0.2s, border-color 0.2s;
}
.product__link span { color: var(--cyan); transition: transform 0.2s; }
.product__link:hover { gap: 10px; border-color: var(--cyan); }

.products__note {
    text-align: center;
    color: rgba(226,232,240,0.6);
    font-size: 15px;
    max-width: 560px;
    margin: 44px auto 0;
    line-height: 1.7;
}

/* ── STEPS ───────────────────────────────────────── */
.steps {
    display: flex;
    align-items: stretch;
    gap: 0;
    justify-content: center;
}

.step {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: 40px 28px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: transform 0.3s, box-shadow 0.3s;
}
.step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.step__num {
    font-family: 'Sora', 'Inter', sans-serif;
    font-size: 50px;
    font-weight: 800;
    background: linear-gradient(160deg, var(--gray-200), var(--gray-400));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.04em;
}

.step h3 {
    font-family: 'Sora', 'Inter', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--navy-2);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}
.step p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
}

.step__connector {
    flex-shrink: 0;
    width: 44px;
    align-self: center;
    height: 2px;
    background: linear-gradient(90deg, var(--gray-200), var(--blue-light));
    position: relative;
    top: 0;
}
.step__connector::after {
    content: '›';
    position: absolute;
    right: -6px;
    top: -12px;
    color: var(--blue-light);
    font-size: 22px;
}

/* ── CTA SECTION ─────────────────────────────────── */
.cta-section {
    position: relative;
    background:
        radial-gradient(700px 400px at 50% 0%, rgba(56,225,214,0.14), transparent 60%),
        linear-gradient(160deg, #06101F 0%, #0C2144 100%);
    padding: 110px 0;
    overflow: hidden;
}

.cta-section__aurora {
    position: absolute;
    inset: -30% -10% auto -10%;
    height: 90%;
    background: conic-gradient(from 200deg at 50% 50%, rgba(47,107,255,0), rgba(56,225,214,0.3), rgba(167,139,250,0.3), rgba(47,107,255,0));
    filter: blur(100px);
    opacity: 0.45;
    animation: drift 20s ease-in-out infinite alternate;
    pointer-events: none;
}

.cta-section__inner {
    position: relative;
    text-align: center;
    z-index: 1;
}

.cta-section h2 {
    font-family: 'Sora', 'Inter', sans-serif;
    font-size: clamp(30px, 4.6vw, 54px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 18px;
    line-height: 1.08;
}

.cta-section p {
    font-size: 18px;
    color: rgba(226,232,240,0.72);
    max-width: 540px;
    margin: 0 auto 36px;
    line-height: 1.65;
}

/* ── LEAD FORM ───────────────────────────────────── */
.lead-form {
    max-width: 520px;
    margin: 0 auto;
    text-align: left;
}
.lead-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}
.lead-form__input {
    width: 100%;
    font-family: inherit;
    font-size: 15px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    padding: 14px 16px;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
}
.lead-form__input::placeholder { color: rgba(226, 232, 240, 0.45); }
.lead-form__input:focus {
    outline: none;
    border-color: var(--cyan);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 0 0 4px rgba(56, 225, 214, 0.12);
}
.lead-form__textarea {
    margin-bottom: 14px;
    resize: vertical;
    min-height: 96px;
    line-height: 1.5;
}
.lead-form__submit { width: 100%; }
.lead-form__status {
    margin-top: 14px;
    font-size: 14px;
    min-height: 20px;
    text-align: center;
    color: rgba(226, 232, 240, 0.6);
}
.lead-form__status--ok  { color: var(--cyan); }
.lead-form__status--err { color: #FCA5A5; }

@media (max-width: 520px) {
    .lead-form__row { grid-template-columns: 1fr; }
}

.cta-section__note {
    margin-top: 22px !important;
    font-size: 14px !important;
    color: rgba(226,232,240,0.5) !important;
}
.cta-section__note a {
    color: var(--cyan);
    text-decoration: none;
    transition: color 0.2s;
}
.cta-section__note a:hover { color: var(--white); }

/* ── FOOTER ──────────────────────────────────────── */
.footer {
    background: var(--ink);
    padding: 36px 0;
}
.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.footer__brand { display: flex; align-items: center; gap: 10px; }
.footer__logo {
    height: 36px; width: auto;
    background: rgba(255, 255, 255, 0.96);
    padding: 6px 9px;
    border-radius: 9px;
}
.footer__name {
    font-family: 'Sora', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    letter-spacing: -0.01em;
}
.footer__copy { color: var(--gray-400); font-size: 14px; }
.footer__links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.footer__links a:hover { color: var(--cyan); }

/* ── ANIMATIONS ──────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease calc(var(--delay, 0s)),
                transform 0.7s ease calc(var(--delay, 0s));
}
.fade-up.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    .fade-up { opacity: 1; transform: none; transition: none; }
    .hero__aurora, .cta-section__aurora, .badge__dot { animation: none; }
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 960px) {
    .proof__inner { grid-template-columns: 1fr 1fr; gap: 32px 20px; padding: 34px 20px; }
    .proof__stat:nth-child(3)::before, .proof__stat + .proof__stat::before { display: none; }
    .cards { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .products { grid-template-columns: 1fr; max-width: 520px; }
    .steps { flex-direction: column; align-items: center; gap: 16px; }
    .step { max-width: 100%; width: 100%; }
    .step__connector { display: none; }
    .nav__links { display: none; }
    .footer__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
    .hero { padding: 128px 0 90px; }
    .hero__logo-img { height: 72px; }
    .hero__ctas { flex-direction: column; }
    .btn--lg { width: 100%; }
    .section { padding: 76px 0; }
    .product { padding: 28px 24px; }
}
