:root {
    --bg: #f5f7fb;
    --surface: #ffffff;
    --surface-2: #eef2f8;
    --ink: #0a1628;
    --muted: #657187;
    --line: #dfe5ee;
    --navy: #07111f;
    --navy-2: #0b1930;
    --primary: #5c57f3;
    --primary-2: #7c5cff;
    --cyan: #16b8d4;
    --emerald: #16b783;
    --shadow: 0 24px 70px rgba(12, 25, 48, .12);
    --shadow-soft: 0 16px 44px rgba(18, 30, 52, .08);
    --radius-lg: 30px;
    --radius-md: 20px;
    --radius-sm: 12px;
    --container: 1200px;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--bg);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: -80px;
    z-index: 9999;
    padding: 12px 16px;
    background: #fff;
    color: #000;
    border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.sr-only {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0);
    white-space: nowrap; border: 0;
}

.topline {
    color: #c8d1e0;
    background: #050c16;
    border-bottom: 1px solid rgba(255,255,255,.07);
    font-size: 12px;
    letter-spacing: .04em;
}

.topline-inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topline-inner > span,
.topline-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topline a { transition: color .2s ease; }
.topline a:hover { color: #fff; }

.status-dot {
    width: 8px;
    height: 8px;
    display: inline-block;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #26d397;
    box-shadow: 0 0 0 5px rgba(38,211,151,.11);
    margin-right: 7px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    color: #fff;
    background: rgba(7,17,31,.86);
    border-bottom: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(18px);
    transition: background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
    background: rgba(7,17,31,.96);
    box-shadow: 0 12px 34px rgba(0,0,0,.18);
}

.nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand-logo { flex: 0 0 auto; }
.brand-logo img { width: 210px; height: auto; }

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav > a:not(.button) {
    position: relative;
    color: #c8d0de;
    font-size: 14px;
    font-weight: 650;
    transition: color .2s ease;
}

.main-nav > a:not(.button)::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -10px;
    height: 2px;
    border-radius: 99px;
    background: #817cff;
    transform: scaleX(0);
    transition: transform .2s ease;
}

.main-nav > a:not(.button):hover,
.main-nav > a:not(.button).active { color: #fff; }

.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button).active::after { transform: scaleX(1); }

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 12px;
    background: rgba(255,255,255,.05);
}
.menu-toggle > span:not(.sr-only) {
    width: 20px;
    height: 2px;
    display: block;
    margin: 4px auto;
    background: #fff;
    border-radius: 99px;
    transition: .2s ease;
}

.button {
    min-height: 48px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 750;
    line-height: 1;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-sm { min-height: 42px; padding-inline: 18px; font-size: 13px; }
.button-lg { min-height: 56px; padding-inline: 26px; }
.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    box-shadow: 0 14px 30px rgba(92,87,243,.25);
}
.button-primary:hover { box-shadow: 0 18px 38px rgba(92,87,243,.34); }
.button-secondary {
    color: var(--ink);
    background: #fff;
    border-color: var(--line);
    box-shadow: 0 10px 26px rgba(14,28,50,.06);
}
.button-secondary:hover { border-color: #b9c3d2; }
.button-light {
    color: var(--navy);
    background: #fff;
    box-shadow: 0 16px 34px rgba(0,0,0,.15);
}
.button-ghost-light {
    color: #fff;
    border-color: rgba(255,255,255,.22);
    background: rgba(255,255,255,.06);
}
.button:disabled { opacity: .7; pointer-events: none; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
}
.eyebrow.light { color: #a6a2ff; }

.hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 85% 15%, rgba(92,87,243,.24), transparent 27%),
        linear-gradient(145deg, #07111f 0%, #0a1830 58%, #081426 100%);
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    opacity: .18;
    background-image:
        linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    pointer-events: none;
}
.hero-glow-one {
    width: 280px; height: 280px;
    right: 7%; top: 22%;
    background: rgba(72,204,233,.12);
}
.hero-glow-two {
    width: 240px; height: 240px;
    left: 14%; bottom: 5%;
    background: rgba(124,92,255,.11);
}

.hero-grid {
    position: relative;
    z-index: 2;
    min-height: 650px;
    padding-top: 76px;
    padding-bottom: 58px;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: 70px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding: 6px 13px 6px 7px;
    color: #cfd6e5;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
    background: rgba(255,255,255,.05);
    font-size: 12px;
    font-weight: 650;
}

.kicker-icon {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #8e6cff);
    font-size: 12px;
    font-weight: 900;
}

.hero h1 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(40px, 4.5vw, 62px);
    line-height: 1.08;
    letter-spacing: -.05em;
}
.hero h1 span {
    color: transparent;
    background: linear-gradient(95deg, #9d9aff, #75d7ee);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-lead {
    max-width: 660px;
    margin: 26px 0 0;
    color: #b8c2d4;
    font-size: 18px;
    line-height: 1.75;
}

.hero-actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}
.hero .button-secondary {
    color: #fff;
    border-color: rgba(255,255,255,.16);
    background: rgba(255,255,255,.06);
    box-shadow: none;
}

.hero-trust {
    margin-top: 46px;
    padding-top: 30px;
    display: flex;
    gap: 42px;
    border-top: 1px solid rgba(255,255,255,.1);
}
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust strong { color: #fff; font-size: 23px; letter-spacing: -.03em; }
.hero-trust span { color: #8390a6; font-size: 12px; }

.hero-visual { position: relative; }

.visual-shell {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 25px;
    background: rgba(10,24,47,.78);
    box-shadow: 0 34px 90px rgba(0,0,0,.4);
    backdrop-filter: blur(18px);
    transform: perspective(1100px) rotateY(-4deg) rotateX(2deg);
}

.visual-topbar {
    min-height: 49px;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 10px;
    color: #8c99ae;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.025);
    font-size: 10px;
}

.window-dots { display: flex; gap: 5px; }
.window-dots i { width: 7px; height: 7px; border-radius: 50%; background: #f16c70; }
.window-dots i:nth-child(2) { background: #edbe5d; }
.window-dots i:nth-child(3) { background: #55c78a; }

.secure-pill {
    justify-self: end;
    color: #71d5ac;
    padding: 3px 8px;
    border-radius: 99px;
    background: rgba(48,194,137,.08);
}

.visual-main { padding: 26px; }
.visual-heading { display: flex; flex-direction: column; margin-bottom: 18px; }
.visual-heading span { color: #76849a; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.visual-heading strong { margin-top: 2px; font-size: 18px; }

.brand-mini-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }

.brand-mini {
    min-height: 64px;
    padding: 10px 11px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    background: rgba(255,255,255,.035);
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.brand-mini:hover {
    transform: translateX(4px);
    background: rgba(255,255,255,.06);
}
.brand-mini.violet:hover { border-color: rgba(124,92,255,.55); }
.brand-mini.cyan:hover { border-color: rgba(22,184,212,.55); }
.brand-mini.emerald:hover { border-color: rgba(22,183,131,.55); }
.brand-mini.amber:hover { border-color: rgba(245,158,11,.58); }
.brand-mini.rose:hover { border-color: rgba(244,63,94,.55); }
.brand-mini.blue:hover { border-color: rgba(59,130,246,.58); }

.brand-mini-index {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: #d9dcff;
    background: rgba(92,87,243,.14);
    font-size: 10px;
    font-weight: 800;
}
.brand-mini.cyan .brand-mini-index { color: #b3f2ff; background: rgba(22,184,212,.13); }
.brand-mini.emerald .brand-mini-index { color: #b9f8df; background: rgba(22,183,131,.13); }
.brand-mini.amber .brand-mini-index { color: #ffe6aa; background: rgba(245,158,11,.14); }
.brand-mini.rose .brand-mini-index { color: #ffc1ce; background: rgba(244,63,94,.14); }
.brand-mini.blue .brand-mini-index { color: #bfdbfe; background: rgba(59,130,246,.14); }

.brand-mini > span:nth-child(2) { display: flex; flex-direction: column; }
.brand-mini strong { color: #f6f8fc; font-size: 13px; }
.brand-mini small { color: #718097; font-size: 10px; }
.brand-mini b { color: #6e7d93; font-size: 16px; }

.capability-panel {
    margin-top: 14px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    background: rgba(5,13,25,.4);
}

.capability-title {
    margin-bottom: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #8e9bb0;
    font-size: 10px;
}
.capability-title b { color: #5bd4a6; }

.capability-bars { display: grid; gap: 11px; }
.capability-bars div { display: grid; grid-template-columns: 125px 1fr; align-items: center; gap: 12px; }
.capability-bars span { color: #bec7d5; font-size: 9px; }
.capability-bars i {
    position: relative;
    height: 5px;
    overflow: hidden;
    border-radius: 99px;
    background: rgba(255,255,255,.08);
}
.capability-bars i::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--progress);
    border-radius: inherit;
    background: linear-gradient(90deg, #5c57f3, #55c9e8);
}

.floating-card {
    position: absolute;
    z-index: 4;
    padding: 11px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 14px;
    background: rgba(15,29,50,.93);
    box-shadow: 0 20px 45px rgba(0,0,0,.25);
    backdrop-filter: blur(14px);
}
.floating-card div { display: flex; flex-direction: column; }
.floating-card strong { font-size: 11px; }
.floating-card small { color: #8390a4; font-size: 9px; }
.float-icon {
    width: 29px; height: 29px;
    display: grid; place-items: center;
    border-radius: 9px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    font-size: 12px;
}
.card-one { right: -24px; top: 72px; animation: floatY 5s ease-in-out infinite; }
.card-two { left: -34px; bottom: 52px; animation: floatY 6s ease-in-out infinite reverse; }

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

.logo-strip {
    position: relative;
    z-index: 2;
    min-height: 108px;
    display: flex;
    align-items: center;
    gap: 38px;
    color: #7e8ba0;
    border-top: 1px solid rgba(255,255,255,.08);
}
.logo-strip > span { flex: 0 0 auto; color: #657287; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.logo-strip > div { flex: 1; display: flex; align-items: center; justify-content: space-between; gap: 18px; overflow: hidden; }
.logo-strip b { white-space: nowrap; color: #9ba6b8; font-size: 10px; letter-spacing: .13em; }
.logo-strip i { width: 4px; height: 4px; flex: 0 0 auto; border-radius: 50%; background: #414f64; }

.section { padding: 112px 0; }
.intro-section { background: #fff; }
.soft-section { background: var(--surface-2); }
.text-gradient {
    color: transparent;
    background: linear-gradient(95deg, var(--primary), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
}

.split-heading {
    display: grid;
    grid-template-columns: 1.1fr .72fr;
    align-items: end;
    gap: 80px;
}

.split-heading h2,
.section-heading h2,
.confidence-copy h2,
.sticky-copy h2,
.story-title h2,
.contact-info h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.12;
    letter-spacing: -.045em;
}

.section-copy { padding-bottom: 5px; }
.section-copy p,
.section-heading p,
.sticky-copy p,
.contact-info > p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.text-link {
    margin-top: 24px;
    display: inline-flex;
    gap: 10px;
    color: var(--ink);
    font-weight: 800;
}
.text-link span { color: var(--primary); transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.feature-grid {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    position: relative;
    min-height: 360px;
    padding: 32px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: 0 10px 35px rgba(13,27,48,.04);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature-card:hover {
    transform: translateY(-8px);
    border-color: #c8cff8;
    box-shadow: var(--shadow-soft);
}
.feature-number {
    position: absolute;
    right: 25px;
    top: 22px;
    color: #d7dde7;
    font-size: 13px;
    font-weight: 800;
}
.service-icon {
    width: 58px; height: 58px;
    display: grid; place-items: center;
    border-radius: 16px;
    color: var(--primary);
    background: #f0efff;
}
.service-icon svg,
.contact-icon svg,
.floating-actions svg {
    width: 25px; height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.feature-card h3 { margin: 30px 0 13px; font-size: 23px; letter-spacing: -.025em; }
.feature-card p { margin: 0; color: var(--muted); }
.feature-card > a {
    position: absolute;
    left: 32px; bottom: 29px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
}

.brands-section {
    background:
        radial-gradient(circle at 10% 10%, rgba(92,87,243,.06), transparent 28%),
        var(--bg);
}

.section-heading { max-width: 790px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading p { max-width: 690px; margin: 20px auto 0; }

.brand-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.brand-card {
    position: relative;
    min-height: 410px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: 0 16px 45px rgba(13,27,48,.06);
    transition: transform .25s ease, box-shadow .25s ease;
}
.brand-card::before {
    content: "";
    position: absolute;
    width: 190px; height: 190px;
    right: -70px; top: -70px;
    border-radius: 50%;
    background: rgba(92,87,243,.08);
}
.brand-card.cyan::before { background: rgba(22,184,212,.09); }
.brand-card.emerald::before { background: rgba(22,183,131,.09); }
.brand-card.amber::before { background: rgba(245,158,11,.10); }
.brand-card.rose::before { background: rgba(244,63,94,.09); }
.brand-card.blue::before { background: rgba(59,130,246,.09); }
.brand-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }

.brand-card-top { position: relative; display: flex; justify-content: space-between; align-items: center; }
.brand-mark {
    width: 54px; height: 54px;
    display: grid; place-items: center;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    font-weight: 900;
}
.brand-card.cyan .brand-mark { background: linear-gradient(135deg, #0ba5c3, #50d3e8); }
.brand-card.emerald .brand-mark { background: linear-gradient(135deg, #0a9c6d, #44d7a3); }
.brand-card.amber .brand-mark { background: linear-gradient(135deg, #d97706, #fbbf24); }
.brand-card.rose .brand-mark { background: linear-gradient(135deg, #e11d48, #fb7185); }
.brand-card.blue .brand-mark { background: linear-gradient(135deg, #2563eb, #60a5fa); }
.brand-order { color: #c3cad6; font-size: 13px; font-weight: 800; }
.brand-tag {
    margin-top: 34px;
    display: inline-block;
    color: var(--primary);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.brand-card.cyan .brand-tag { color: #078eaa; }
.brand-card.emerald .brand-tag { color: #07875e; }
.brand-card.amber .brand-tag { color: #b86605; }
.brand-card.rose .brand-tag { color: #be123c; }
.brand-card.blue .brand-tag { color: #1d4ed8; }
.brand-card h3 { margin: 9px 0 14px; font-size: 30px; letter-spacing: -.04em; }
.brand-card p { margin: 0; color: var(--muted); }
.brand-domain {
    position: absolute;
    left: 30px; right: 30px; bottom: 28px;
    padding-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    color: #5d687a;
    font-size: 13px;
    font-weight: 700;
}
.brand-domain a {
    width: 38px; height: 38px;
    display: grid; place-items: center;
    border-radius: 11px;
    color: #fff;
    background: var(--ink);
}
.brands-link-row { margin-top: 34px; display: flex; justify-content: center; }

.dark-section,
.timeline-section {
    color: #fff;
    background:
        radial-gradient(circle at 15% 15%, rgba(92,87,243,.15), transparent 28%),
        var(--navy);
}

.dark-section-grid,
.timeline-layout {
    display: grid;
    grid-template-columns: .76fr 1.24fr;
    gap: 90px;
}

.sticky-copy {
    align-self: start;
    position: sticky;
    top: 130px;
}
.sticky-copy p { margin: 24px 0 32px; color: #9eabbd; }

.service-list { border-top: 1px solid rgba(255,255,255,.1); }
.service-row {
    min-height: 140px;
    padding: 24px 4px;
    display: grid;
    grid-template-columns: 50px 1fr auto;
    align-items: center;
    gap: 24px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    transition: padding .2s ease, background .2s ease;
}
.service-row:hover { padding-left: 18px; padding-right: 18px; background: rgba(255,255,255,.035); }
.service-row > span { color: #646f82; font-size: 12px; }
.service-row h3 { margin: 0 0 5px; font-size: 23px; }
.service-row p { margin: 0; color: #7f8da3; font-size: 14px; }
.service-row b { color: #5f6d82; font-size: 21px; }

.process-section { background: #fff; }
.process-grid {
    position: relative;
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.process-grid::before {
    content: "";
    position: absolute;
    left: 7%; right: 7%; top: 21px;
    height: 1px;
    background: var(--line);
}
.process-grid article { position: relative; padding-right: 32px; }
.process-grid span {
    position: relative;
    z-index: 2;
    width: 43px; height: 43px;
    display: grid; place-items: center;
    border: 6px solid #fff;
    border-radius: 50%;
    color: #fff;
    background: var(--primary);
    font-size: 10px;
    font-weight: 800;
    box-shadow: 0 0 0 1px #d5d9f7;
}
.process-grid h3 { margin: 24px 0 9px; font-size: 21px; }
.process-grid p { margin: 0; color: var(--muted); font-size: 14px; }

.confidence-section { background: var(--bg); }
.confidence-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 110px;
}

.confidence-visual {
    position: relative;
    min-height: 500px;
    display: grid;
    place-items: center;
}
.metric-orbit {
    position: absolute;
    width: 390px; height: 390px;
    border: 1px solid #d7ddea;
    border-radius: 50%;
}
.metric-orbit::before,
.metric-orbit::after {
    content: "";
    position: absolute;
    width: 12px; height: 12px;
    border: 5px solid var(--bg);
    border-radius: 50%;
    background: var(--primary);
}
.metric-orbit::before { top: 45px; right: 62px; }
.metric-orbit::after { left: 13px; bottom: 102px; background: var(--cyan); }

.metric-box {
    position: absolute;
    z-index: 2;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255,255,255,.94);
    box-shadow: var(--shadow-soft);
}
.metric-main {
    width: 320px;
    min-height: 230px;
    padding: 34px;
}
.metric-main > span { color: var(--primary); font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.metric-main strong { margin-top: 18px; display: block; font-size: 33px; line-height: 1.17; letter-spacing: -.04em; }
.metric-line { width: 100%; height: 6px; margin-top: 30px; overflow: hidden; border-radius: 99px; background: #e7eaf1; }
.metric-line::after { content: ""; display: block; width: 82%; height: 100%; background: linear-gradient(90deg, var(--primary), var(--cyan)); }

.metric-small {
    right: 0; bottom: 70px;
    width: 185px;
    padding: 23px;
}
.metric-small strong { display: block; color: var(--primary); font-size: 31px; }
.metric-small span { display: block; color: var(--muted); font-size: 11px; }

.confidence-copy h2 { max-width: 600px; }
.check-list { margin-top: 38px; display: grid; gap: 22px; }
.check-list > div { display: grid; grid-template-columns: 36px 1fr; gap: 15px; }
.check-list > div > span {
    width: 34px; height: 34px;
    display: grid; place-items: center;
    border-radius: 10px;
    color: var(--primary);
    background: #ecebff;
    font-size: 13px;
    font-weight: 900;
}
.check-list p { margin: 0; color: var(--muted); }
.check-list strong { display: block; margin-bottom: 3px; color: var(--ink); font-size: 16px; }

.cta-band {
    color: #fff;
    background: linear-gradient(120deg, #5a55ee, #6f5cf5 55%, #258bb7);
}
.cta-band-inner {
    min-height: 310px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}
.cta-band h2 { max-width: 720px; margin: 0; font-size: clamp(34px,4vw,54px); line-height: 1.08; letter-spacing: -.045em; }
.cta-band p { max-width: 650px; margin: 18px 0 0; color: rgba(255,255,255,.75); }
.cta-actions { flex: 0 0 auto; display: flex; flex-direction: column; gap: 11px; }

.site-footer {
    padding: 80px 0 24px;
    color: #a6b1c2;
    background: #050c16;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, .7fr);
    gap: 60px;
}
.footer-brand img { width: 220px; }
.footer-brand p { max-width: 370px; margin: 24px 0; color: #77859a; }
.footer-contact { display: flex; flex-direction: column; gap: 4px; }
.footer-contact a { color: #d9dfE8; font-size: 14px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-grid h3 { margin: 0 0 10px; color: #fff; font-size: 14px; }
.footer-grid > div:not(.footer-brand) a { color: #7e8ba0; font-size: 13px; transition: color .2s ease; }
.footer-grid > div:not(.footer-brand) a:hover { color: #fff; }
.footer-bottom {
    margin-top: 65px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: #59677a;
    font-size: 11px;
}

.floating-actions {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.floating-actions a {
    width: 48px; height: 48px;
    display: grid; place-items: center;
    color: #fff;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 15px;
    background: rgba(7,17,31,.92);
    box-shadow: 0 15px 30px rgba(0,0,0,.2);
    backdrop-filter: blur(12px);
    transition: transform .2s ease, background .2s ease;
}
.floating-actions a:hover { transform: translateY(-3px); background: var(--primary); }
.floating-actions svg { width: 20px; height: 20px; }

.page-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(140deg, rgba(92,87,243,.08), transparent 45%),
        var(--navy);
}
.page-hero.compact .page-hero-grid { min-height: 400px; }
.page-hero-glow {
    position: absolute;
    width: 420px; height: 420px;
    right: -90px; top: -180px;
    border-radius: 50%;
    background: rgba(92,87,243,.16);
    filter: blur(40px);
}
.page-hero-grid {
    position: relative;
    min-height: 500px;
    display: grid;
    grid-template-columns: 1.25fr .62fr;
    align-items: end;
    gap: 100px;
    padding-top: 95px;
    padding-bottom: 88px;
}
.page-hero h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(44px, 5vw, 70px);
    line-height: 1.06;
    letter-spacing: -.055em;
}
.page-hero p { margin: 0 0 8px; color: #aeb8c8; font-size: 17px; }

.story-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 100px;
}
.story-title { align-self: start; position: sticky; top: 130px; }
.story-copy { display: grid; gap: 22px; }
.story-copy p { margin: 0; color: #536074; font-size: 19px; line-height: 1.85; }

.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mission-card {
    min-height: 360px;
    padding: 45px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
}
.mission-card.primary-card { color: #fff; border-color: transparent; background: linear-gradient(140deg, var(--primary), #473dd4); }
.mission-card > span { color: var(--primary); font-size: 12px; font-weight: 800; }
.mission-card.primary-card > span { color: #d8d6ff; }
.mission-card h2 { margin: 60px 0 16px; font-size: 36px; letter-spacing: -.04em; }
.mission-card p { margin: 0; color: var(--muted); font-size: 17px; }
.mission-card.primary-card p { color: rgba(255,255,255,.76); }

.values-grid {
    margin-top: 55px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--line);
}
.values-grid article { min-height: 230px; padding: 30px; background: #fff; }
.values-grid span { color: var(--primary); font-size: 11px; font-weight: 850; }
.values-grid h3 { margin: 28px 0 10px; font-size: 22px; }
.values-grid p { margin: 0; color: var(--muted); font-size: 14px; }

.timeline { border-top: 1px solid rgba(255,255,255,.1); }
.timeline article {
    min-height: 150px;
    padding: 30px 0;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 28px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.timeline article > span { color: #817cff; font-size: 12px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.timeline h3 { margin: 0 0 8px; font-size: 22px; }
.timeline p { margin: 0; color: #8190a5; }

.services-detail { background: #fff; }
.services-catalog { border-top: 1px solid var(--line); }
.catalog-item {
    padding: 55px 0;
    display: grid;
    grid-template-columns: 80px 1fr .55fr;
    gap: 55px;
    border-bottom: 1px solid var(--line);
}
.catalog-number { color: #b5becd; font-size: 13px; font-weight: 850; }
.catalog-content h2 { margin: 0 0 15px; font-size: 39px; letter-spacing: -.04em; }
.catalog-content > p { max-width: 680px; margin: 0; color: var(--muted); font-size: 17px; }
.tag-list { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 8px; }
.tag-list span {
    padding: 7px 11px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: #566276;
    background: #f8f9fc;
    font-size: 11px;
    font-weight: 700;
}
.catalog-result {
    align-self: center;
    padding: 25px;
    border-left: 2px solid #d8d6ff;
    background: #f8f8ff;
}
.catalog-result strong { color: var(--primary); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.catalog-result p { margin: 8px 0 0; color: #5d687a; font-size: 14px; }

.brand-profile-section { background: #fff; }
.brand-profiles { display: grid; gap: 32px; }
.brand-profile {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: 0 18px 60px rgba(13,27,48,.06);
}
.brand-profile-visual {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 70% 30%, rgba(124,92,255,.22), transparent 30%),
        linear-gradient(145deg, #0a1730, #07111f);
}
.brand-profile.cyan .brand-profile-visual { background: radial-gradient(circle at 70% 30%, rgba(22,184,212,.22), transparent 30%), linear-gradient(145deg, #092232, #07111f); }
.brand-profile.emerald .brand-profile-visual { background: radial-gradient(circle at 70% 30%, rgba(22,183,131,.22), transparent 30%), linear-gradient(145deg, #08251e, #07111f); }
.brand-profile.amber .brand-profile-visual { background: radial-gradient(circle at 70% 30%, rgba(245,158,11,.24), transparent 30%), linear-gradient(145deg, #2b1d08, #07111f); }
.brand-profile.rose .brand-profile-visual { background: radial-gradient(circle at 70% 30%, rgba(244,63,94,.22), transparent 30%), linear-gradient(145deg, #2a0d18, #07111f); }
.brand-profile.blue .brand-profile-visual { background: radial-gradient(circle at 70% 30%, rgba(59,130,246,.24), transparent 30%), linear-gradient(145deg, #0a1d3f, #07111f); }

.brand-watermark {
    color: rgba(255,255,255,.92);
    font-size: 190px;
    line-height: 1;
    font-weight: 900;
    text-shadow: 0 25px 80px rgba(92,87,243,.35);
}
.brand-profile-no {
    position: absolute;
    left: 28px; top: 24px;
    color: rgba(255,255,255,.4);
    font-size: 12px;
    font-weight: 850;
}
.brand-browser {
    position: absolute;
    left: 30px; right: 30px; bottom: 26px;
    min-height: 42px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #aeb8c8;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(10px);
    font-size: 10px;
}
.brand-browser i { width: 7px; height: 7px; border-radius: 50%; background: #f16c70; }
.brand-browser i:nth-child(2) { background: #edbe5d; }
.brand-browser i:nth-child(3) { background: #55c78a; }
.brand-browser span { margin-left: 8px; }

.brand-profile-copy { padding: 54px; align-self: center; }
.brand-profile-copy .brand-tag { margin-top: 0; }
.brand-profile.amber .brand-tag { color: #b86605; }
.brand-profile.rose .brand-tag { color: #be123c; }
.brand-profile.blue .brand-tag { color: #1d4ed8; }
.brand-profile-copy h2 { margin: 10px 0 16px; font-size: 45px; letter-spacing: -.045em; }
.brand-profile-copy > p { margin: 0; color: var(--muted); font-size: 17px; }
.brand-profile-copy ul { margin: 25px 0 30px; padding: 0; list-style: none; display: grid; gap: 10px; }
.brand-profile-copy li { position: relative; padding-left: 24px; color: #536074; font-size: 14px; }
.brand-profile-copy li::before { content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 900; }

.group-logic { color: #fff; background: var(--navy); }
.group-logic-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.group-logic h2 { margin: 0; font-size: clamp(36px,4vw,54px); line-height: 1.12; letter-spacing: -.045em; }
.logic-list { border-top: 1px solid rgba(255,255,255,.1); }
.logic-list article { padding: 28px 0; display: grid; grid-template-columns: 50px 1fr; gap: 22px; border-bottom: 1px solid rgba(255,255,255,.1); }
.logic-list article > span { color: #68758a; font-size: 11px; }
.logic-list h3 { margin: 0 0 7px; font-size: 22px; }
.logic-list p { margin: 0; color: #8190a5; }

.contact-section { background: #fff; }
.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; }
.contact-info { padding-top: 15px; }
.contact-info h2 { max-width: 540px; }
.contact-info > p { margin-top: 22px; max-width: 530px; }

.contact-cards { margin-top: 35px; display: grid; gap: 12px; }
.contact-cards > a {
    max-width: 520px;
    padding: 17px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.contact-cards > a:hover { transform: translateX(5px); border-color: #c6c6f8; box-shadow: var(--shadow-soft); }
.contact-icon {
    width: 45px; height: 45px;
    display: grid; place-items: center;
    flex: 0 0 auto;
    border-radius: 13px;
    color: var(--primary);
    background: #efefff;
}
.contact-icon svg { width: 21px; height: 21px; }
.contact-cards a > span:last-child { display: flex; flex-direction: column; }
.contact-cards small { color: #8a95a6; font-size: 11px; }
.contact-cards strong { font-size: 15px; }

.response-note {
    max-width: 520px;
    margin-top: 25px;
    padding: 18px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-radius: 14px;
    background: #f1faf7;
}
.response-note .status-dot { margin-top: 8px; }
.response-note p { margin: 0; color: #637267; font-size: 12px; }
.response-note strong { display: block; color: #213a31; font-size: 13px; }

.contact-form-card {
    padding: 40px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--bg);
    box-shadow: var(--shadow-soft);
}
.contact-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: grid; gap: 8px; }
.contact-form label > span:first-child { color: #4f5b6d; font-size: 12px; font-weight: 750; }
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 52px;
    padding: 13px 14px;
    color: var(--ink);
    border: 1px solid #d8dee8;
    border-radius: 11px;
    outline: none;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form textarea { resize: vertical; min-height: 150px; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #918df4;
    box-shadow: 0 0 0 4px rgba(92,87,243,.09);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #a0a9b7; }
.consent { grid-template-columns: 20px 1fr !important; align-items: start; gap: 10px !important; }
.consent input { width: 18px; min-height: 18px; margin-top: 3px; accent-color: var(--primary); }
.consent span { color: #737f91 !important; font-size: 11px !important; font-weight: 500 !important; }
.form-submit { width: 100%; justify-content: space-between; }
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-alert { margin-bottom: 18px; padding: 14px 16px; border-radius: 11px; font-size: 13px; }
.form-alert.success { color: #126847; border: 1px solid #bfe9d9; background: #eaf8f3; }
.form-alert.error { color: #8d2930; border: 1px solid #efc8cc; background: #fff0f1; }

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal-delay { transition-delay: .13s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
    .main-nav { gap: 19px; }
    .main-nav > a:not(.button) { font-size: 13px; }
    .hero-grid { gap: 38px; }
    .hero h1 { font-size: 50px; }
    .floating-card { display: none; }
    .dark-section-grid, .timeline-layout { gap: 55px; }
    .confidence-grid { gap: 55px; }
    .contact-layout { gap: 45px; }
}

@media (max-width: 920px) {
    .topline-links a:first-child { display: none; }
    .menu-toggle { display: block; }
    .main-nav {
        position: fixed;
        inset: 115px 20px auto 20px;
        max-height: calc(100vh - 135px);
        padding: 24px;
        overflow-y: auto;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        border: 1px solid rgba(255,255,255,.1);
        border-radius: 20px;
        background: #0a1628;
        box-shadow: 0 30px 70px rgba(0,0,0,.4);
    }
    .main-nav.is-open { display: flex; }
    .main-nav > a:not(.button) { padding: 15px 4px; border-bottom: 1px solid rgba(255,255,255,.07); }
    .main-nav > a:not(.button)::after { display: none; }
    .nav-cta { margin-top: 18px; }

    .hero-grid,
    .page-hero-grid,
    .story-grid,
    .contact-layout,
    .brand-profile,
    .group-logic-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid { padding-top: 66px; gap: 55px; }
    .hero h1 { max-width: 760px; }
    .hero-visual { max-width: 610px; margin-inline: auto; }
    .visual-shell { transform: none; }
    .logo-strip { flex-direction: column; align-items: flex-start; justify-content: center; gap: 15px; }
    .logo-strip > div { width: 100%; }

    .split-heading,
    .dark-section-grid,
    .timeline-layout,
    .confidence-grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .feature-grid,
    .brand-grid { grid-template-columns: 1fr 1fr; }
    .feature-grid article:last-child { grid-column: span 2; }

    .sticky-copy,
    .story-title { position: static; }
    .process-grid { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
    .process-grid::before { display: none; }
    .confidence-visual { max-width: 600px; width: 100%; margin-inline: auto; }

    .page-hero-grid { min-height: auto; padding-top: 80px; padding-bottom: 75px; gap: 34px; }
    .page-hero p { max-width: 650px; }

    .mission-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .catalog-item { grid-template-columns: 60px 1fr; }
    .catalog-result { grid-column: 2; }

    .brand-profile-visual { min-height: 380px; }
    .brand-profile-copy { padding: 44px; }
    .contact-info { max-width: 680px; }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 640px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .topline-inner { min-height: 32px; font-size: 10px; }
    .topline-links a:last-child { display: none; }
    .nav-wrap { min-height: 70px; }
    .brand-logo img { width: 180px; }
    .main-nav { inset: 105px 14px auto 14px; }

    .hero { min-height: auto; }
    .hero-grid { min-height: auto; padding-top: 52px; padding-bottom: 45px; }
    .hero h1 { font-size: 36px; }
    .hero-lead { font-size: 16px; }
    .hero-actions .button { width: 100%; }
    .hero-trust { gap: 20px; justify-content: space-between; }
    .hero-trust strong { font-size: 20px; }
    .hero-trust span { font-size: 10px; }
    .visual-main { padding: 17px; }
    .brand-mini { grid-template-columns: 30px minmax(0, 1fr); gap: 8px; }
    .brand-mini-index { width: 30px; height: 30px; }
    .brand-mini b, .brand-mini small { display: none; }
    .brand-mini strong { font-size: 11px; line-height: 1.25; }
    .visual-topbar { grid-template-columns: 1fr auto; }
    .visual-topbar > span:nth-child(2) { display: none; }
    .capability-bars div { grid-template-columns: 105px 1fr; }
    .logo-strip { min-height: 130px; }
    .logo-strip > div { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .logo-strip i { display: none; }

    .section { padding: 78px 0; }
    .split-heading { gap: 30px; }
    .split-heading h2,
    .section-heading h2,
    .confidence-copy h2,
    .sticky-copy h2,
    .story-title h2,
    .contact-info h2 { font-size: 36px; }

    .feature-grid,
    .brand-grid,
    .process-grid,
    .values-grid { grid-template-columns: 1fr; }
    .feature-grid article:last-child { grid-column: auto; }
    .feature-card { min-height: 335px; padding: 26px; }
    .brand-card { min-height: 390px; padding: 26px; }
    .brand-domain { left: 26px; right: 26px; }

    .dark-section-grid { gap: 40px; }
    .service-row { grid-template-columns: 35px 1fr auto; gap: 12px; min-height: 125px; }
    .service-row h3 { font-size: 19px; }
    .service-row p { font-size: 12px; }

    .process-grid { gap: 32px; }
    .process-grid article { padding-right: 0; }

    .confidence-visual { min-height: 430px; }
    .metric-orbit { width: 310px; height: 310px; }
    .metric-main { width: 270px; min-height: 210px; padding: 28px; }
    .metric-main strong { font-size: 29px; }
    .metric-small { width: 160px; right: 2px; bottom: 42px; }

    .cta-band-inner { min-height: 370px; padding: 64px 0; flex-direction: column; align-items: flex-start; justify-content: center; gap: 34px; }
    .cta-actions { width: 100%; }
    .cta-actions .button { width: 100%; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
    .footer-brand { grid-column: span 2; }
    .footer-grid > div:last-child { grid-column: auto; }
    .footer-bottom { flex-direction: column; gap: 5px; }

    .page-hero h1 { font-size: 41px; }
    .page-hero-grid { padding-top: 65px; padding-bottom: 60px; }
    .story-copy p { font-size: 17px; }
    .mission-card { min-height: 315px; padding: 30px; }
    .mission-card h2 { margin-top: 45px; }
    .timeline article { grid-template-columns: 80px 1fr; gap: 16px; }

    .catalog-item { padding: 40px 0; grid-template-columns: 1fr; gap: 16px; }
    .catalog-number { margin-bottom: 8px; }
    .catalog-content h2 { font-size: 33px; }
    .catalog-result { grid-column: auto; }

    .brand-profile-visual { min-height: 320px; }
    .brand-watermark { font-size: 145px; }
    .brand-profile-copy { padding: 30px; }
    .brand-profile-copy h2 { font-size: 38px; }
    .group-logic-grid { gap: 45px; }

    .contact-form-card { padding: 24px; }
    .form-row { grid-template-columns: 1fr; }
    .floating-actions { right: 12px; bottom: 12px; }
    .floating-actions a { width: 44px; height: 44px; }
}

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