:root {
    --ink: #120a2b;
    --muted: #6c6578;
    --purple: #9b4dff;
    --pink: #d94cff;
    --violet: #6f49ff;
    --soft: #fbf8ff;
    --lav: #f5ecff;
    --line: #eadff5;
    --white: #fff;
    --dark: #120820;
    --dark2: #1d0b33;
    --max: 1360px;
    --radius: 30px;
    --shadow: 0 26px 70px rgba(64, 26, 89, .09)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
    background: #fff
}

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

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

header {
    position: sticky;
    top: 0;
    z-index: 40;
    padding: 18px 0 0
}

.nav {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 20px 0 26px;
    border: 1px solid rgba(218, 197, 236, .82);
    border-radius: 28px;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 55px rgba(67, 22, 101, .09)
}

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

.brand-logo {
    display: block;
    width: 174px;
    height: 58px;
    object-fit: contain
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
    color: #51495d;
    font-size: 15px;
    font-weight: 700
}

.nav-links a:hover {
    color: var(--purple)
}

.nav-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 22px;
    border-radius: 17px;
    font-weight: 800
}

.nav-cta,
.btn.primary {
    color: #fff;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    box-shadow: 0 15px 30px rgba(173, 73, 245, .2)
}

.btn.secondary {
    border: 1px solid var(--line);
    background: #fff
}

section {
    padding: 108px 0
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: #b53ee9;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase
}

.eyebrow:before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--pink))
}

h1,
h2,
h3,
p {
    margin-top: 0
}

h1 {
    font-size: clamp(58px, 6.2vw, 92px);
    line-height: .98;
    letter-spacing: -.055em;
    margin-bottom: 26px
}

h2 {
    font-size: clamp(40px, 5vw, 70px);
    line-height: 1.02;
    letter-spacing: -.05em;
    margin-bottom: 20px
}

h3 {
    font-size: 24px;
    line-height: 1.18;
    letter-spacing: -.025em
}

.accent {
    background: linear-gradient(120deg, #9f3dff, #df47ed);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.lead {
    max-width: 820px;
    color: var(--muted);
    font-size: 20px
}

.actions {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    margin-top: 30px
}

.section-intro {
    display: grid;
    grid-template-columns: .62fr 1.38fr;
    gap: 70px;
    align-items: start;
    margin-bottom: 54px
}

.section-kicker {
    padding-top: 11px;
    color: #a641e9;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase
}

.service-hero {
    position: relative;
    overflow: hidden;
    padding: 118px 0 100px;
    background: linear-gradient(180deg, #fff 0%, #fbf7ff 100%)
}

.service-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(164, 96, 220, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(164, 96, 220, .07) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, #000 20%, transparent 90%)
}

.service-hero:after {
    content: "";
    position: absolute;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    right: -170px;
    top: 25px;
    background: radial-gradient(circle, rgba(207, 70, 244, .17), rgba(161, 82, 255, .05) 45%, transparent 72%);
    filter: blur(8px)
}

.service-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: center
}

.hero-copy {
    max-width: 770px;
    color: var(--muted);
    font-size: 20px
}

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

.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(166, 76, 255, .24)
}

.orbit-ring.one {
    width: 86%;
    aspect-ratio: 1
}

.orbit-ring.two {
    width: 65%;
    aspect-ratio: 1
}

.orbit-ring.three {
    width: 43%;
    aspect-ratio: 1
}

.orbit-core {
    position: relative;
    z-index: 3;

    width: 250px;
    height: 250px;

    display: grid;
    place-items: center;

    text-align: center;

    border-radius: 50%;

    background: #2a0e4a;

    color: #fff;

    box-shadow:
        0 0 0 18px rgba(166, 76, 255, .06),
        0 26px 55px rgba(41, 10, 73, .18);
}

.orbit-core strong {
    display: block;
    font-size: 22px;
    line-height: 1.05
}

.orbit-core span {
    display: block;
    margin-bottom: 7px;
    color: #d9a6ff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase
}

.orbit-card {
    position: absolute;
    z-index: 4;
    min-width: 155px;
    padding: 15px 17px;
    border: 1px solid rgba(171, 94, 226, .18);
    border-radius: 18px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 18px 44px rgba(63, 22, 92, .11);
    backdrop-filter: blur(12px);
    font-weight: 850
}

.orbit-card small {
    display: block;
    color: #a642e8;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase
}

.orbit-card em {
    font-style: normal;
    color: #635b70;
    font-size: 13px;
    font-weight: 650
}

.orbit-card.a {
    top: 13%;
    left: 2%
}

.orbit-card.b {
    top: 19%;
    right: 3%
}

.orbit-card.c {
    bottom: 15%;
    left: 5%
}

.orbit-card.d {
    bottom: 11%;
    right: 4%
}

.orbit-dot {
    position: absolute;
    z-index: 2;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    box-shadow: 0 0 20px rgba(211, 69, 238, .55)
}

.orbit-dot.d1 {
    left: 29%;
    top: 25%
}

.orbit-dot.d2 {
    right: 25%;
    top: 47%
}

.orbit-dot.d3 {
    left: 42%;
    bottom: 20%
}

.service-position {
    background: #fff
}

.position-copy {
    max-width: 1000px
}

.position-copy p {
    max-width: 900px;
    color: var(--muted);
    font-size: 19px
}

.pillars {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink)
}

.pillar {
    padding: 30px 28px 34px 0;
    margin-right: 28px;
    border-right: 1px solid var(--line)
}

.pillar:last-child {
    border-right: 0;
    margin-right: 0
}

.pillar span {
    display: block;
    margin-bottom: 28px;
    color: #a641e9;
    font-size: 12px;
    font-weight: 900
}

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

.ecosystem {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: radial-gradient(circle at 15% 20%, rgba(162, 61, 234, .24), transparent 27%), radial-gradient(circle at 90% 80%, rgba(218, 62, 237, .15), transparent 24%), linear-gradient(135deg, #120820, #1c0b30 58%, #250c3d)
}

.ecosystem:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
    background-size: 48px 48px
}

.ecosystem-inner {
    position: relative;
    z-index: 2
}

.ecosystem-copy {
    max-width: 850px
}

.ecosystem-copy p {
    max-width: 760px;
    color: #c8bfd2;
    font-size: 18px
}

.platform-rows {
    margin-top: 58px;
    border-top: 1px solid rgba(255, 255, 255, .14)
}

.platform-row {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 28px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .11)
}

.platform-label {
    color: #c7b8d2;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em
}

.platform-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.platform-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 15px;
    background: rgba(255, 255, 255, .055);
    font-weight: 800
}

.platform-chip i {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    background: linear-gradient(135deg, #a64cff, #e249e8);
    box-shadow: 0 0 14px rgba(209, 79, 239, .35)
}

.journey {
    background: #fff
}

.journey-wrap {
    position: relative;
    margin-top: 52px;
    padding-left: 40px
}

.journey-line {
    position: absolute;
    left: 14px;
    top: 25px;
    bottom: 26px;
    width: 1px;
    background: linear-gradient(#a649ed, #eadff5)
}

.journey-step {
    position: relative;
    display: grid;
    grid-template-columns: 95px 280px 1fr;
    gap: 26px;
    align-items: start;
    padding: 0 0 34px
}

.journey-dot {
    position: absolute;
    left: -32px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 3px solid #fff;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    box-shadow: 0 0 0 5px #f2e7fc
}

.journey-num {
    color: #a641e9;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em
}

.journey-step h3 {
    margin-bottom: 0
}

.journey-step p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    padding-top: 2px
}

.why {
    background: #faf7ff
}

.why-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 76px;
    align-items: start
}

.why-sticky {
    position: sticky;
    top: 130px
}

.why-sticky p {
    max-width: 490px;
    color: var(--muted);
    font-size: 18px
}

.why-list {
    border-top: 1px solid var(--ink)
}

.why-item {
    display: grid;
    grid-template-columns: 70px 260px 1fr;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line)
}

.why-item span {
    color: #a641e9;
    font-size: 12px;
    font-weight: 900
}

.why-item h3 {
    font-size: 20px;
    margin: 0
}

.why-item p {
    margin: 0;
    color: var(--muted);
    font-size: 14px
}

.faq {
    background: #fff
}

.faq-list {
    border-top: 1px solid var(--ink)
}

.faq-item {
    border-bottom: 1px solid var(--line)
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
    cursor: pointer;
    list-style: none;
    font-size: 20px;
    font-weight: 800
}

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

.faq-item summary b {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex: 0 0 38px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: #a641e9;
    background: #fff
}

.faq-answer {
    max-width: 900px;
    padding: 0 0 26px;
    color: var(--muted);
    font-size: 16px
}

.final-cta {
    padding: 100px 0;
    color: #fff;
    background: radial-gradient(circle at 82% 45%, rgba(204, 65, 255, .24), transparent 29%), linear-gradient(135deg, #100623, #1e0b39)
}

.final-cta-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: end
}

.final-cta p {
    max-width: 620px;
    color: #c9bfd5;
    font-size: 18px
}

footer {
    padding: 30px 0;
    background: #0d061d;
    color: #aaa1b8;
    font-size: 13px
}

footer .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap
}

@media(max-width:1050px) {
    .nav-links {
        display: none
    }

    .service-hero-grid,
    .section-intro,
    .why-layout,
    .final-cta-grid {
        grid-template-columns: 1fr
    }

    .hero-orbit {
        min-height: 500px
    }

    .platform-row {
        grid-template-columns: 1fr
    }

    .journey-step {
        grid-template-columns: 70px 220px 1fr
    }

    .why-sticky {
        position: static
    }

    .pillars {
        grid-template-columns: 1fr
    }

    .pillar {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        margin-right: 0;
        padding-right: 0
    }

    .pillar:last-child {
        border-bottom: 0
    }
}

@media(max-width:720px) {
    .container {
        width: calc(100% - 30px)
    }

    header {
        padding-top: 10px
    }

    .nav {
        min-height: 72px;
        padding: 0 14px
    }

    .brand-logo {
        width: 138px;
        height: 46px
    }

    .nav-cta {
        min-height: 46px;
        padding: 0 15px
    }

    section {
        padding: 74px 0
    }

    .service-hero {
        padding: 84px 0 70px
    }

    h1 {
        font-size: clamp(46px, 14vw, 68px)
    }

    h2 {
        font-size: clamp(34px, 11vw, 50px)
    }

    .hero-copy,
    .lead {
        font-size: 18px
    }

    .hero-orbit {
        min-height: 390px
    }

    .orbit-core {
        width: 155px;
        height: 155px
    }

    .orbit-card {
        min-width: 125px;
        padding: 12px 13px;
        font-size: 13px
    }

    .orbit-card.a {
        left: 0;
        top: 8%
    }

    .orbit-card.b {
        right: 0;
        top: 12%
    }

    .orbit-card.c {
        left: 0;
        bottom: 9%
    }

    .orbit-card.d {
        right: 0;
        bottom: 8%
    }

    .platform-row {
        padding: 24px 0
    }

    .journey-wrap {
        padding-left: 28px
    }

    .journey-line {
        left: 8px
    }

    .journey-step {
        grid-template-columns: 48px 1fr;
        gap: 14px
    }

    .journey-step p {
        grid-column: 2
    }

    .journey-dot {
        left: -26px
    }

    .why-item {
        grid-template-columns: 50px 1fr
    }

    .why-item p {
        grid-column: 2
    }

    .final-cta-grid {
        gap: 28px
    }
}
