:root {
    --canvas: #fbf7ef;
    --surface: #ffffff;
    --ink: #172033;
    --muted: #667085;
    --blue: #3268f6;
    --mint: #32d2a3;
    --line: rgba(23, 32, 51, 0.11);
    --soft-blue: rgba(50, 104, 246, 0.09);
    --soft-mint: rgba(50, 210, 163, 0.14);
    --shadow: 0 24px 70px rgba(23, 32, 51, 0.11);
    --radius-lg: 34px;
    --radius-md: 22px;
    --radius-sm: 14px;
    --max-width: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 10% 12%, rgba(50, 210, 163, 0.18), transparent 28%),
        radial-gradient(circle at 88% 8%, rgba(50, 104, 246, 0.12), transparent 30%),
        var(--canvas);
    color: var(--ink);
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}
.brand-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
}

button,
input,
textarea {
    font: inherit;
}

.page-shell {
    width: min(100%, 1500px);
    margin: 0 auto;
    overflow: hidden;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 18px 22px 0;
}

.nav {
    width: min(var(--max-width), 100%);
    margin: 0 auto;
    min-height: 72px;
    padding: 12px 14px 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(18px);
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: 0 10px 40px rgba(23, 32, 51, 0.08);
}

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

.brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: white;
    font-weight: 900;
    background: linear-gradient(135deg, var(--blue), var(--mint));
    box-shadow: 0 12px 28px rgba(50, 104, 246, 0.25);
}
.contact-details {
    display: grid;
    gap: 1.25rem;
    margin-top: 2rem;
}

.contact-detail {
    display: grid;
    gap: 0.3rem;
}

.contact-detail-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.65;
}

.contact-detail a,
.contact-detail address {
    color: inherit;
    font-size: 1rem;
    font-style: normal;
    text-decoration: none;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.brand-text {
    display: grid;
    line-height: 1.1;
}

.brand-text strong {
    letter-spacing: -0.04em;
    font-size: 1.08rem;
}

.brand-text small {
    color: var(--muted);
    font-size: 0.72rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    color: var(--muted);
    font-weight: 700;
    font-size: 0.92rem;
    padding: 12px 16px;
    border-radius: 999px;
    transition: 0.25s ease;
}

.nav-links a:hover {
    background: var(--soft-blue);
    color: var(--blue);
}

.nav-links .nav-cta {
    background: var(--ink);
    color: white;
}

.nav-links .nav-cta:hover {
    background: var(--blue);
    color: white;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    width: 44px;
    height: 44px;
    place-items: center;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--ink);
    display: block;
    border-radius: 99px;
}

.section-pad {
    width: min(var(--max-width), calc(100% - 44px));
    margin: 0 auto;
    padding: 92px 0;
}

.hero {
    min-height: calc(100vh - 100px);
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    gap: 54px;
    align-items: center;
    padding-top: 110px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-weight: 900;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.eyebrow::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--mint);
    box-shadow: 0 0 0 7px var(--soft-mint);
}

h1,
h2,
h3 {
    letter-spacing: -0.06em;
    line-height: 0.96;
}

h1 {
    font-size: clamp(3.35rem, 8vw, 6.8rem);
    max-width: 850px;
}

.hero-content p,
.product-copy p,
.contact-copy p {
    margin-top: 24px;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.75;
    max-width: 650px;
}

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

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--blue);
    color: white;
    box-shadow: 0 16px 36px rgba(50, 104, 246, 0.25);
}

.btn-primary:hover {
    box-shadow: 0 20px 44px rgba(50, 104, 246, 0.34);
}

.btn-secondary {
    background: var(--surface);
    color: var(--ink);
    border-color: var(--line);
}

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

.hero-visual::before,
.hero-visual::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.hero-visual::before {
    width: 460px;
    height: 460px;
    background: linear-gradient(135deg, rgba(50, 104, 246, 0.16), rgba(50, 210, 163, 0.22));
    filter: blur(2px);
}

.hero-visual::after {
    width: 560px;
    height: 560px;
    border: 1px solid rgba(50, 104, 246, 0.18);
}

.orbit-card {
    position: relative;
    z-index: 1;
    width: min(430px, 92vw);
    min-height: 450px;
    background: rgba(255, 255, 255, 0.83);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 44px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.card-topline {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
}

.card-topline span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--line);
}

.card-topline span:nth-child(2) {
    background: var(--mint);
}

.card-topline span:nth-child(3) {
    background: var(--blue);
}

.main-card h2 {
    font-size: 3.6rem;
    max-width: 360px;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 32px 0;
}

.metric-grid div,
.product-stats div {
    background: var(--canvas);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 20px;
}

.metric-grid strong,
.product-stats strong {
    display: block;
    font-size: 1.7rem;
    letter-spacing: -0.05em;
}

.metric-grid small,
.product-stats small {
    color: var(--muted);
    margin-top: 5px;
    display: block;
}

.flow-line {
    height: 76px;
    border-radius: 22px;
    background:
        linear-gradient(90deg, rgba(50, 104, 246, 0.1), rgba(50, 210, 163, 0.22)),
        repeating-linear-gradient(90deg, transparent 0 20px, rgba(23, 32, 51, 0.06) 21px 22px);
    position: relative;
    overflow: hidden;
}

.flow-line::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 16px;
    height: 10px;
    width: 90px;
    border-radius: 999px;
    background: var(--blue);
    transform: translateY(-50%);
    animation: scan 3.5s infinite ease-in-out;
}

@keyframes scan {
    0%, 100% { left: 16px; width: 80px; }
    50% { left: calc(100% - 124px); width: 108px; }
}

.mini-rows {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.mini-rows span,
.floating-pill {
    background: var(--surface);
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(23, 32, 51, 0.08);
}

.floating-pill {
    position: absolute;
    z-index: 2;
    animation: float 6s infinite ease-in-out;
}

.pill-one { top: 12%; left: 4%; }
.pill-two { right: 2%; top: 29%; animation-delay: 1s; }
.pill-three { bottom: 16%; left: 11%; animation-delay: 2s; }

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

.trust-strip {
    width: min(var(--max-width), calc(100% - 44px));
    margin: -20px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.trust-strip span {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 20px;
    color: var(--muted);
    font-weight: 900;
    text-align: center;
}

.split-section {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 38px;
    align-items: start;
}

.section-heading h2,
.process-panel h2,
.product-copy h2,
.contact-copy h2 {
    font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.section-heading.center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 34px;
}

.service-grid {
    display: grid;
    gap: 16px;
}

.service-card,
.why-card {
    padding: 28px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 60px rgba(23, 32, 51, 0.06);
    transition: 0.25s ease;
}

.service-card:hover,
.why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(50, 104, 246, 0.22);
}

.icon {
    display: inline-grid;
    place-items: center;
    width: 50px;
    height: 50px;
    margin-bottom: 44px;
    border-radius: 18px;
    color: var(--blue);
    background: var(--soft-blue);
    font-weight: 900;
}

.service-card h3,
.why-card h3 {
    font-size: 1.65rem;
    margin-bottom: 12px;
}

.service-card p,
.why-card p,
.timeline-item p,
.feature-list,
.site-footer {
    color: var(--muted);
    line-height: 1.7;
}

.process-panel,
.contact-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 48px;
    padding: 42px;
    box-shadow: var(--shadow);
}

.process-panel {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
}

.timeline {
    display: grid;
    gap: 14px;
}

.timeline-item {
    position: relative;
    padding: 22px 22px 22px 28px;
    border-radius: var(--radius-md);
    background: var(--canvas);
    border: 1px solid var(--line);
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 26px;
    bottom: 26px;
    width: 4px;
    border-radius: 99px;
    background: linear-gradient(var(--blue), var(--mint));
}

.timeline-item span {
    display: block;
    font-weight: 900;
    margin-bottom: 8px;
}

.product-section {
    display: grid;
    grid-template-columns: 1fr 0.86fr;
    gap: 44px;
    align-items: center;
}

.feature-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list li::before {
    content: "";
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    border-radius: 50%;
    background: radial-gradient(circle at center, var(--mint) 0 36%, rgba(50, 210, 163, 0.18) 38% 100%);
}

.product-card {
    background: linear-gradient(145deg, #ffffff, #f2f8ff);
    border: 1px solid var(--line);
    border-radius: 46px;
    padding: 34px;
    box-shadow: var(--shadow);
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
}

.product-header span {
    color: var(--muted);
    font-weight: 800;
}

.product-header strong {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    color: white;
    background: linear-gradient(135deg, var(--blue), var(--mint));
}

.progress-block {
    margin-bottom: 24px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 900;
}

.progress-label span {
    color: var(--muted);
}

.progress-track {
    height: 14px;
    background: rgba(23, 32, 51, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

.progress-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--blue), var(--mint));
}

.product-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 34px;
}

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

.contact-card {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 44px;
    align-items: start;
    background:
        radial-gradient(circle at 5% 5%, rgba(50, 210, 163, 0.18), transparent 26%),
        #ffffff;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-weight: 900;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: var(--canvas);
    border-radius: 18px;
    padding: 16px 18px;
    color: var(--ink);
    outline: none;
    transition: 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 5px var(--soft-blue);
}

.flash {
    padding: 13px 16px;
    border-radius: 16px;
    font-weight: 800;
}

.flash.success {
    background: var(--soft-mint);
    color: #08765a;
}

.flash.error {
    background: rgba(229, 57, 53, 0.12);
    color: #b42318;
}

.site-footer {
    width: min(var(--max-width), calc(100% - 44px));
    margin: 0 auto;
    padding: 26px 0 44px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid var(--line);
}

.site-footer a {
    color: var(--blue);
    font-weight: 900;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

    .nav-links {
        position: absolute;
        top: 84px;
        left: 22px;
        right: 22px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid var(--line);
        border-radius: 28px;
        padding: 12px;
        box-shadow: var(--shadow);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        text-align: center;
    }

    .hero,
    .split-section,
    .process-panel,
    .product-section,
    .contact-card {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 70px;
    }

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

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

@media (max-width: 640px) {
    .site-header {
        padding-inline: 12px;
    }

    .brand-text small {
        display: none;
    }

    .section-pad,
    .trust-strip,
    .site-footer {
        width: min(100% - 28px, var(--max-width));
    }

    .section-pad {
        padding: 66px 0;
    }

    h1 {
        font-size: clamp(3rem, 16vw, 4.7rem);
    }

    .main-card h2 {
        font-size: 3rem;
    }

    .hero-actions,
    .site-footer {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .trust-strip,
    .why-grid,
    .metric-grid,
    .product-stats {
        grid-template-columns: 1fr;
    }

    .process-panel,
    .contact-card,
    .product-card,
    .orbit-card {
        border-radius: 30px;
        padding: 24px;
    }

    .floating-pill {
        display: none;
    }
}
