:root {
    --vio: #7c3aed;
    --blue: #30d5ff;
    --pink: #ff4fd8;
    --ink: #f4f0ff;
    --muted: #b9aad8;
    --bg: #09051a;
    --panel: #120b2d;
    --line: #34245c;
    --max: 1160px;
    --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: ui-sans-serif, system-ui, sans-serif;
    background: radial-gradient(circle at 15% 10%, #28145a, transparent 35%),
        radial-gradient(circle at 90% 20%, #123e54, transparent 32%),
        linear-gradient(180deg, #09051a, #110b24 55%, #09051a);
    color: var(--ink);
    line-height: 1.65;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.wrap {
    max-width: var(--max);
    margin: auto;
    padding: 0 24px;
}

nav {
    position: fixed;
    top: 18px;
    left: 0;
    right: 0;
    z-index: 50;
    pointer-events: none;
}

.navin {
    pointer-events: auto;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(12, 8, 30, .68);
    backdrop-filter: blur(18px);
    border-radius: 22px;
    padding: 0 14px 0 24px;
    box-shadow: 0 22px 70px -38px #000;
}

.brand {
    font-size: 23px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0;
}
.brand  img{
    display: block;
    width: 48px;
    height: auto;
}

.dialdot {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: radial-gradient(circle, #fff 0 16%, #7c3aed 18% 42%, #30d5ff 43%);
    box-shadow: 0 0 22px #30d5ff;
}

.navlinks {
    display: flex;
    gap: 22px;
    color: #c9bdf0;
    font-weight: 800;
    font-size: 14px;
}

.call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--vio), var(--pink));
    color: white;
    padding: 13px 22px;
    font-weight: 1000;
    box-shadow: 0 0 30px rgba(124, 58, 237, .45);
    transition: .35s var(--ease);
}

.call:hover {
    transform: translateY(-2px);
    filter: saturate(1.2);
}

.hero {
    position: relative;
    padding: 148px 0 80px;
    overflow: hidden;
}

.grid {
    display: grid;
    grid-template-columns: 1fr .95fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.eyebrow {
    font-size: 12px;
    font-weight: 1000;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: #58e6ff;
}

h1 {
    font-size: clamp(48px, 8vw, 68px);
    line-height: 1;
    letter-spacing: -.08em;
    margin: 0 0 22px;
}

h1 span {
    background: linear-gradient(100deg, #30d5ff, #ff4fd8);
    -webkit-background-clip: text;
    color: transparent;
}

.lede {
    font-size: 20px;
    color: #cfc4ed;
    max-width: 580px;
}

.actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.ghost {
    display: inline-flex;
    border: 1px solid #4e3e7a;
    border-radius: 18px;
    padding: 13px 22px;
    font-weight: 1000;
    color: #e9ddff;
    background: rgba(255, 255, 255, .04);
}

.note {
    font-size: 13px;
    color: #9e91c9;
    margin-top: 20px;
    font-weight: 800;
}

.console {
    position: relative;
    background: linear-gradient(180deg, #171035, #0f0924);
    border: 1px solid #4c3a7b;
    border-radius: 42px;
    padding: 28px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .05), 0 44px 100px -48px #000;
}

.rotary {
    width: 330px;
    height: 330px;
    border-radius: 50%;
    margin: auto;
    background: radial-gradient(circle, #0b061b 0 26%, #2a1a58 27% 50%, #0b061b 51%);
    border: 2px solid #5a44a0;
    position: relative;
    box-shadow: 0 0 70px rgba(48, 213, 255, .15);
}

.rotary:before {
    content: "216";
    position: absolute;
    inset: 35%;
    display: grid;
    place-items: center;
    font-size: 48px;
    font-weight: 1000;
    color: #fff;
    text-shadow: 0 0 18px #30d5ff;
}

.hole {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #09051a;
    border: 2px solid #6b58ad;
    box-shadow: inset 0 0 18px #000;
}

.h1 {
    left: 50%;
    top: 18px;
    transform: translateX(-50%);
}

.h2 {
    right: 45px;
    top: 78px;
}

.h3 {
    right: 45px;
    bottom: 78px;
}

.h4 {
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
}

.h5 {
    left: 45px;
    bottom: 78px;
}

.h6 {
    left: 45px;
    top: 78px;
}

.meter {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.meter div {
    background: #0b061b;
    border: 1px solid #3c2b68;
    border-radius: 14px;
    padding: 12px;
    text-align: center;
    color: #aeefff;
    font-weight: 1000;
}

.stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 46px 46px;
    opacity: .12;
}

section {
    padding: 90px 0;
}

.head {
    max-width: 760px;
    margin-bottom: 38px;
}

.head h2 {
    font-size: clamp(34px, 5vw, 60px);
    line-height: 1;
    letter-spacing: -.06em;
    margin-top: 12px;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: .8s var(--ease);
}

.reveal.show {
    opacity: 1;
    transform: none;
}

.mission {
    background: rgba(255, 255, 255, .04);
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.mission-card {
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    border-radius: 34px;
    padding: 48px;
    box-shadow: 0 30px 80px -50px #000;
}

.method {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mcard {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.mcard b {
    font-size: 72px;
    line-height: .8;
    color: #30d5ff;
    text-shadow: 0 0 24px #30d5ff;
}

.mcard:nth-child(2) b {
    color: #ff4fd8;
    text-shadow: 0 0 24px #ff4fd8;
}

.mcard h3 {
    font-size: 24px;
    margin: 18px 0 8px;
}

.mcard p {
    color: #bfb2df;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.step {
    border: 1px solid #3e2c6a;
    background: linear-gradient(180deg, #171033, #100923);
    border-radius: 30px;
    padding: 30px;
}

.step .num {
    font-size: 13px;
    font-weight: 1000;
    color: #30d5ff;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.step h3 {
    font-size: 24px;
    margin: 10px 0;
}

.step p {
    color: #bfb2df;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.panel {
    background: #f8f4ff;
    color: #1a0e3a;
    border-radius: 34px;
    position: relative;
    overflow: hidden;
}
.panel-media{
    aspect-ratio: 4/3;
}
.panel-media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}
.panel-inner{
    padding: 1rem 1.5rem;
}
.panel .eyebrow{
    color: #7c3aed;
}
.panel.alt {
    background: #fff0fb;
}

.panel ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.panel li:before {
    content: "✓";
    color: #7c3aed;
    font-weight: 1000;
    margin-right: 10px;
}

.protocol {
    background: #05020f;
}

.protocol-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.proto {
    border: 1px solid #35245c;
    border-radius: 24px;
    padding: 24px;
    background: #100823;
    text-align: center;
}

.proto b {
    display: block;
    color: #30d5ff;
    font-size: 28px;
    margin-bottom: 8px;
}

.proto p {
    font-size: 14px;
    color: #bfb2df;
}

.faq-list {
    max-width: 840px;
    margin: auto;
    display: grid;
    gap: 14px;
}

.faq-item {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 22px;
    overflow: hidden;
}

.faq-q {
    width: 100%;
    border: 0;
    background: none;
    color: white;
    padding: 22px 25px;
    font-size: 18px;
    font-weight: 1000;
    text-align: left;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: .4s;
}

.faq-a p {
    padding: 0 25px 22px;
    color: #c3b6e4;
}

.faq-item.open .faq-a {
    max-height: 240px;
}

.final {
    text-align: center;
    background: radial-gradient(circle at 50% 0, #32186e, transparent 60%);
}

.final h2 {
    font-size: clamp(44px, 7vw, 86px);
    line-height: .88;
    letter-spacing: -.08em;
    margin-bottom: 1rem;
}
.final p{
    font-size: 1.25rem;
    font-weight: 500;
    max-width: 720px;
    margin: 0 auto 2.5rem;
}

footer {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 26px 0;
    color: #9f92c9;
    font-size: 14px;
}

.foot {
    text-align: center;
}

@media(max-width: 930px) {
    .navlinks {
        display: none;
    }

    .grid,
    .split {
        grid-template-columns: 1fr;
    }

    .method,
    .steps {
        grid-template-columns: 1fr;
    }

    .protocol-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 560px) {
    .rotary {
        width: 270px;
        height: 270px;
    }

    .protocol-grid {
        grid-template-columns: 1fr;
    }

    .mission-card {
        padding: 30px;
    }
}