:root {
    color-scheme: light;
    --ink: #1d1d1f;
    --muted: #6e6e73;
    --soft: #f5f5f7;
    --line: #d2d2d7;
    --blue: #0071e3;
    --blue-dark: #005bbf;
    --dark: #050506;
    --panel: #111116;
    --white: #ffffff;
    --max: 1180px;
}

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

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

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: 16px;
    z-index: 2000;
    transform: translateY(-140%);
    background: var(--white);
    color: var(--ink);
    padding: 10px 14px;
    border-radius: 999px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .18);
    transition: transform .2s ease;
}

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

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    background: rgba(22, 22, 23, .78);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: saturate(180%) blur(22px);
    -webkit-backdrop-filter: saturate(180%) blur(22px);
}

.nav-shell {
    width: min(100%, var(--max));
    height: 52px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.brand-mark {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: linear-gradient(145deg, #f5f5f7, #9aa8b8);
    color: #0b0b0f;
    font-weight: 800;
    font-size: 12px;
}

.brand-name {
    color: #f5f5f7;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-nav a {
    color: rgba(245, 245, 247, .78);
    font-size: 12px;
    transition: color .2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: #fff;
}

.nav-toggle {
    display: none;
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    margin: 5px auto;
    background: #f5f5f7;
    border-radius: 999px;
    transition: transform .2s ease;
}

.nav-toggle.is-open span:first-child {
    transform: translateY(3.25px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
    transform: translateY(-3.25px) rotate(-45deg);
}

.hero {
    min-height: 96vh;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, .98fr);
    align-items: center;
    gap: 40px;
    padding: 118px max(24px, calc((100vw - var(--max)) / 2)) 70px;
    background:
        radial-gradient(circle at 72% 42%, rgba(0, 113, 227, .26), transparent 28%),
        radial-gradient(circle at 82% 70%, rgba(255, 255, 255, .11), transparent 24%),
        linear-gradient(180deg, #08080b 0%, #111116 52%, #050506 100%);
    color: #f5f5f7;
    overflow: hidden;
}

.hero-copy {
    max-width: 680px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.feature h2,
.split-copy h2,
.contact-copy h2 {
    margin: 0;
    font-weight: 750;
    letter-spacing: 0;
    line-height: 1.04;
}

.hero h1 {
    max-width: 760px;
    font-size: clamp(44px, 6.3vw, 82px);
}

.hero-text {
    max-width: 620px;
    margin: 24px 0 0;
    color: #b8b8bd;
    font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--blue);
    color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--blue-dark);
}

.btn-secondary {
    color: #f5f5f7;
    border-color: rgba(245, 245, 247, .36);
    background: rgba(255, 255, 255, .04);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    border-color: rgba(245, 245, 247, .75);
    background: rgba(255, 255, 255, .1);
}

.btn-full {
    width: 100%;
}

.hero-stage {
    position: relative;
    min-height: 0;
    margin: 0;
}

.hero-stage::before {
    content: "";
    position: absolute;
    inset: -18px;
    z-index: 0;
    border-radius: 34px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .22), rgba(0, 113, 227, .12));
    filter: blur(10px);
}

.hero-stage img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 1672 / 941;
    object-fit: cover;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 42px 110px rgba(0, 0, 0, .45);
}

.trust-band {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 18px 24px;
    background: #fbfbfd;
    border-bottom: 1px solid var(--line);
}

.trust-band span {
    color: #4b4b50;
    font-size: 13px;
    padding: 8px 13px;
    border: 1px solid #e7e7ec;
    border-radius: 999px;
    background: #fff;
}

.section,
.faq {
    padding: 108px 24px;
}

.section-heading {
    width: min(100%, 820px);
    margin: 0 auto 50px;
    text-align: center;
}

.section-heading h2,
.feature h2,
.split-copy h2,
.contact-copy h2 {
    font-size: clamp(34px, 4.2vw, 58px);
}

.section-heading p:not(.eyebrow),
.split-copy p,
.feature-copy p,
.contact-copy p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 19px;
}

.service-grid,
.process-grid,
.seo-grid {
    width: min(100%, var(--max));
    margin: 0 auto;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card {
    min-height: 360px;
    padding: 28px;
    border-radius: 8px;
    background: #f5f5f7;
    border: 1px solid #ececf0;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .08);
}

.service-number {
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
}

.service-card h3 {
    margin: 24px 0 0;
    font-size: 24px;
    line-height: 1.12;
}

.service-card p {
    margin: 15px 0 24px;
    color: var(--muted);
    font-size: 15px;
}

.service-card a {
    margin-top: auto;
    color: var(--blue);
    font-weight: 700;
    font-size: 15px;
}

.feature {
    width: min(calc(100% - 48px), var(--max));
    margin: 0 auto;
    border-radius: 22px;
    padding: 72px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 56px;
    align-items: center;
}

.feature-dark {
    background:
        radial-gradient(circle at 88% 18%, rgba(0, 113, 227, .28), transparent 30%),
        linear-gradient(145deg, #0a0a0d, #17171d);
    color: #f5f5f7;
}

.feature-copy p {
    color: #b8b8bd;
}

.check-list {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    color: #f5f5f7;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .45em;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: inset 0 0 0 4px rgba(255, 255, 255, .24);
}

.feature-panel {
    display: grid;
    gap: 16px;
}

.metric {
    padding: 26px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
}

.metric strong {
    display: block;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1;
}

.metric span {
    display: block;
    margin-top: 10px;
    color: #c8c8ce;
}

.split-section {
    width: min(100%, var(--max));
    margin: 0 auto;
    padding: 120px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.visual-web {
    min-height: 420px;
    display: grid;
    place-items: center;
}

.browser {
    width: min(100%, 520px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #dfe1e7;
    background: #fff;
    box-shadow: 0 34px 90px rgba(25, 30, 45, .16);
}

.browser-bar {
    height: 42px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    border-bottom: 1px solid #ededf2;
    background: #fbfbfd;
}

.browser-bar span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #ff5f57;
}

.browser-bar span:nth-child(2) {
    background: #febc2e;
}

.browser-bar span:nth-child(3) {
    background: #28c840;
}

.browser-hero {
    height: 178px;
    background:
        linear-gradient(135deg, rgba(0, 113, 227, .96), rgba(113, 185, 255, .68)),
        linear-gradient(#111, #222);
}

.browser-content {
    padding: 28px;
    display: grid;
    gap: 14px;
}

.browser-content span {
    height: 14px;
    border-radius: 999px;
    background: #e8e8ed;
}

.browser-content span:nth-child(2) {
    width: 76%;
}

.browser-content span:nth-child(3) {
    width: 48%;
}

.pill-list {
    margin-top: 30px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pill-list span,
.seo-grid span {
    border: 1px solid #e3e3e8;
    border-radius: 999px;
    background: #fff;
    color: #3f3f45;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
}

.section-soft {
    background: var(--soft);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.process-grid article {
    padding: 32px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e9e9ee;
}

.process-grid span {
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.process-grid h3 {
    margin: 18px 0 10px;
    font-size: 24px;
}

.process-grid p {
    margin: 0;
    color: var(--muted);
}

.seo-section {
    background: #fff;
}

.seo-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.faq {
    background: #f5f5f7;
}

.faq-list {
    width: min(100%, 840px);
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

details {
    background: #fff;
    border: 1px solid #e3e3e8;
    border-radius: 8px;
    padding: 22px 24px;
}

summary {
    cursor: pointer;
    font-weight: 750;
    font-size: 18px;
}

details p {
    margin: 14px 0 0;
    color: var(--muted);
}

.contact-section {
    width: min(calc(100% - 48px), var(--max));
    margin: 110px auto;
    padding: 72px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 54px;
    align-items: start;
    border-radius: 22px;
    background: #101014;
    color: #f5f5f7;
}

.contact-copy p {
    color: #b8b8bd;
}

.contact-links {
    margin-top: 28px;
    display: grid;
    gap: 10px;
}

.contact-links a {
    color: #f5f5f7;
    font-weight: 700;
}

.contact-form {
    padding: 30px;
    border-radius: 12px;
    background: #fff;
    color: var(--ink);
    display: grid;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

label {
    display: grid;
    gap: 8px;
}

label span {
    color: #36363b;
    font-size: 13px;
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #d8d8de;
    border-radius: 8px;
    background: #fbfbfd;
    color: var(--ink);
    padding: 13px 14px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

textarea {
    resize: vertical;
    min-height: 122px;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 113, 227, .14);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.form-status {
    display: none;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 14px;
}

.form-status.visible {
    display: block;
}

.form-status.error {
    color: #b00020;
    background: #fff2f2;
    border: 1px solid #ffd6d6;
}

.form-status.success {
    color: #166534;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.error {
    border-color: #b00020 !important;
    background: #fff7f7 !important;
}

.footer {
    padding: 46px max(24px, calc((100vw - var(--max)) / 2));
    background: #f5f5f7;
    border-top: 1px solid #d2d2d7;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
    align-items: start;
}

.footer .brand-name,
.footer-brand .brand-name {
    color: var(--ink);
}

.footer p {
    max-width: 520px;
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.footer nav {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    flex-wrap: wrap;
}

.footer nav a {
    color: #424248;
    font-size: 14px;
    font-weight: 600;
}

.copyright {
    grid-column: 1 / -1;
    padding-top: 24px;
    border-top: 1px solid #dedee4;
}

.animatable {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

.animatable.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .hero,
    .split-section,
    .feature,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 104px;
    }

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

    .feature,
    .contact-section {
        padding: 48px;
    }
}

@media (max-width: 760px) {
    .nav-shell {
        padding: 0 16px;
    }

    .brand-name {
        font-size: 13px;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        left: 0;
        right: 0;
        top: 52px;
        display: grid;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        background: rgba(22, 22, 23, .96);
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        transition: max-height .25s ease;
    }

    .site-nav.is-open {
        max-height: 360px;
    }

    .site-nav a {
        padding: 15px 24px;
        font-size: 16px;
        border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .hero {
        min-height: auto;
        padding: 96px 20px 56px;
    }

    .hero-actions,
    .trust-band {
        justify-content: flex-start;
    }

    .hero-stage img {
        border-radius: 20px;
    }

    .section,
    .faq,
    .split-section {
        padding: 74px 20px;
    }

    .section-heading {
        text-align: left;
    }

    .section-heading p:not(.eyebrow),
    .split-copy p,
    .feature-copy p,
    .contact-copy p {
        font-size: 17px;
    }

    .service-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }

    .feature,
    .contact-section {
        width: calc(100% - 32px);
        padding: 34px 22px;
        border-radius: 16px;
    }

    .contact-section {
        margin: 76px auto;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 20px;
    }

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

    .footer nav {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .brand-mark {
        width: 28px;
        height: 28px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .btn {
        width: 100%;
    }

    .hero-stage::before {
        inset: -10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
