@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@600;700&display=swap');

:root {
    --bg: #05070b;
    --panel: #0b0f16;
    --panel-soft: rgba(13, 19, 29, .72);
    --line: rgba(255,255,255,.08);
    --text: #f4f7fb;
    --muted: #8b95a7;
    --blue: #2e7df6;
    --blue-light: #6fb0ff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 50% -15%, rgba(42, 95, 180, .14), transparent 34%),
        linear-gradient(180deg, #070a10 0%, var(--bg) 46%, #040609 100%);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.page-glow {
    position: fixed;
    width: 460px;
    height: 460px;
    border-radius: 999px;
    filter: blur(110px);
    opacity: .13;
    pointer-events: none;
    z-index: -1;
}
.glow-one { background: #246be9; left: -260px; top: 210px; }
.glow-two { background: #4d8af2; right: -320px; top: 600px; }

.site-header {
    width: min(1220px, calc(100% - 48px));
    min-height: 84px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    position: relative;
    z-index: 20;
}

.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 12px;
    display: grid;
    place-items: center;
    font: 800 18px 'Space Grotesk', sans-serif;
    letter-spacing: -1px;
    background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.025));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 14px 45px rgba(0,0,0,.28);
}
.brand-copy { display: flex; flex-direction: column; gap: 2px; }
.brand-copy strong { font-size: 13px; letter-spacing: .14em; }
.brand-copy small { color: #778195; letter-spacing: .32em; font-size: 7px; }

.desktop-nav { display: flex; align-items: center; gap: 32px; }
.desktop-nav a { color: #9aa3b2; font-size: 14px; transition: .2s ease; position: relative; }
.desktop-nav a:hover, .desktop-nav a.active { color: #fff; }
.desktop-nav a.active::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 2px;
    border-radius: 99px;
    background: var(--blue-light);
    left: 50%;
    bottom: -13px;
    transform: translateX(-50%);
}

.header-actions { display: flex; align-items: center; gap: 10px; }
.ghost-button, .primary-button, .text-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.ghost-button { border: 1px solid var(--line); color: #aab3c1; background: rgba(255,255,255,.02); }
.ghost-button:hover { border-color: rgba(255,255,255,.18); color: #fff; }
.primary-button {
    background: linear-gradient(135deg, #307ff6, #215fc7);
    border: 1px solid rgba(104, 167, 255, .45);
    box-shadow: 0 14px 34px rgba(39, 111, 229, .18), inset 0 1px 0 rgba(255,255,255,.18);
}
.primary-button:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(39, 111, 229, .27); }
.primary-button.small { min-height: 40px; padding: 0 16px; }
.text-button { color: #9da7b8; padding-inline: 8px; }
.text-button:hover { color: #fff; }
.menu-button {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 9px;
    border: 1px solid var(--line);
    color: #fff;
    background: rgba(255,255,255,.04);
    font-size: 20px;
}
.mobile-menu { display: none; }

.hero {
    width: min(1220px, calc(100% - 48px));
    min-height: 650px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: 64px;
    padding: 80px 0 90px;
}

.eyebrow, .kicker {
    color: #78869b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .22em;
}
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.eyebrow span { width: 26px; height: 1px; background: linear-gradient(90deg, var(--blue), transparent); }
.hero h1 {
    font: 700 clamp(48px, 6vw, 78px)/.99 'Space Grotesk', sans-serif;
    letter-spacing: -.055em;
    margin: 0 0 24px;
    max-width: 730px;
}
.hero h1 em {
    font-style: normal;
    background: linear-gradient(90deg, #fff, #92bfff 75%);
    -webkit-background-clip: text;
    color: transparent;
}
.hero-copy > p {
    max-width: 610px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 30px;
}
.hero-actions { display: flex; align-items: center; gap: 12px; }
.trust-row {
    display: flex;
    gap: 30px;
    margin-top: 54px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    max-width: 580px;
}
.trust-row div { display: flex; flex-direction: column; gap: 5px; }
.trust-row strong { font-size: 13px; }
.trust-row span { color: #707b8e; font-size: 11px; }

.hero-visual {
    position: relative;
    min-height: 500px;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,.08);
    background:
        radial-gradient(circle at 50% 50%, rgba(38, 107, 215, .18), transparent 26%),
        linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 35px 100px rgba(0,0,0,.4);
    overflow: hidden;
}
.hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 18%, rgba(255,255,255,.035) 50%, transparent 77%);
    transform: translateX(-100%);
    animation: sheen 7s ease-in-out infinite;
}
.visual-grid {
    position: absolute;
    inset: 0;
    opacity: .18;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle, black, transparent 70%);
}
.fd-symbol {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font: 800 116px 'Space Grotesk', sans-serif;
    letter-spacing: -.09em;
    text-shadow: 0 0 50px rgba(53,130,255,.18);
    color: #f8fbff;
    animation: float 5s ease-in-out infinite;
}
.fd-symbol::after {
    content: 'DEVELOPING THE FUTURE';
    position: absolute;
    margin-top: 128px;
    font: 600 8px 'Inter', sans-serif;
    letter-spacing: .48em;
    color: #647087;
}
.fd-orbit {
    position: absolute;
    left: 50%; top: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(112, 166, 255, .12);
}
.orbit-one { width: 290px; height: 290px; }
.orbit-two { width: 405px; height: 405px; border-style: dashed; animation: rotate 32s linear infinite; }
.floating-card {
    position: absolute;
    width: 136px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 13px;
    background: rgba(8,12,18,.74);
    backdrop-filter: blur(14px);
    box-shadow: 0 15px 50px rgba(0,0,0,.3);
}
.floating-card span { display: block; color: #667188; font-size: 8px; letter-spacing: .18em; margin-bottom: 7px; }
.floating-card strong { font-size: 12px; letter-spacing: .12em; }
.card-top { right: 26px; top: 34px; }
.card-bottom { left: 26px; bottom: 34px; }

.section {
    width: min(1220px, calc(100% - 48px));
    margin: 0 auto;
    padding: 95px 0;
    border-top: 1px solid var(--line);
}
.section-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 34px; }
.section-heading h2, .about-panel h2 {
    margin: 8px 0 0;
    font: 700 clamp(34px, 4vw, 48px)/1.05 'Space Grotesk', sans-serif;
    letter-spacing: -.04em;
}
.section-heading > a { color: #8f9aae; font-size: 13px; }
.section-heading > a:hover { color: #fff; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-card {
    border: 1px solid var(--line);
    border-radius: 17px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
    transition: transform .25s ease, border-color .25s ease;
}
.product-card:hover { transform: translateY(-5px); border-color: rgba(94,154,255,.3); }
.product-image {
    position: relative;
    height: 205px;
    overflow: hidden;
    background: #0a0e15;
    display: flex;
    align-items: end;
    padding: 20px;
}
.product-image::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    filter: blur(50px);
    opacity: .38;
    top: -70px;
    right: -60px;
}
.product-1::before { background: #2f77eb; }
.product-2::before { background: #4075c9; }
.product-3::before { background: #1f5fbf; }
.product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(to bottom, black, transparent 78%);
}
.product-tag {
    position: absolute;
    right: 14px;
    top: 14px;
    background: rgba(22, 69, 142, .82);
    border: 1px solid rgba(109,169,255,.32);
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    z-index: 2;
}
.mini-logo {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -54%);
    font: 800 54px 'Space Grotesk', sans-serif;
    letter-spacing: -.08em;
    color: rgba(255,255,255,.88);
    text-shadow: 0 0 35px rgba(56,130,240,.25);
}
.product-art-text { position: relative; z-index: 2; font: 700 12px 'Space Grotesk', sans-serif; letter-spacing: .12em; text-transform: uppercase; color: #abb4c4; }
.product-content { padding: 22px; }
.product-meta { color: #6681a8; text-transform: uppercase; letter-spacing: .17em; font-size: 8px; font-weight: 800; }
.product-content h3 { font: 700 21px 'Space Grotesk', sans-serif; margin: 10px 0; }
.product-content p { color: #818b9e; font-size: 13px; line-height: 1.65; min-height: 64px; margin: 0; }
.product-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.product-footer strong { font-size: 15px; }
.product-footer a { color: #91baff; font-size: 12px; font-weight: 700; }

.split-section {
    width: min(1220px, calc(100% - 48px));
    margin: 0 auto;
    padding: 95px 0 110px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    border-top: 1px solid var(--line);
}
.about-panel p { color: var(--muted); line-height: 1.8; max-width: 590px; font-size: 14px; margin: 22px 0 30px; }
.info-stack { display: grid; gap: 12px; }
.info-card {
    display: flex;
    gap: 20px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255,255,255,.018);
}
.info-card > span { color: #5077ad; font: 700 11px 'Space Grotesk', sans-serif; }
.info-card strong { display: block; margin-bottom: 7px; font-size: 14px; }
.info-card p { color: #7e899d; font-size: 12px; line-height: 1.55; margin: 0; }

footer {
    width: min(1220px, calc(100% - 48px));
    margin: 0 auto;
    min-height: 125px;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.small-mark { width: 38px; height: 38px; border-radius: 9px; font-size: 14px; }
.footer-brand div { display: flex; flex-direction: column; gap: 3px; }
.footer-brand strong { font-size: 10px; letter-spacing: .12em; }
.footer-brand span:not(.brand-mark) { color: #5f697a; font-size: 6px; letter-spacing: .25em; }
.footer-links { display: flex; gap: 22px; }
.footer-links a, footer > p { color: #646e80; font-size: 11px; }
footer > p { justify-self: end; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes rotate { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes sheen { 0%, 20% { transform: translateX(-110%); } 55%,100% { transform: translateX(110%); } }

@media (max-width: 980px) {
    .desktop-nav, .header-actions .ghost-button { display: none; }
    .menu-button { display: inline-grid; place-items: center; }
    .hero { grid-template-columns: 1fr; padding-top: 65px; }
    .hero-visual { min-height: 430px; }
    .product-grid { grid-template-columns: 1fr 1fr; }
    .split-section { grid-template-columns: 1fr; gap: 45px; }
    footer { grid-template-columns: 1fr; padding: 30px 0; }
    footer > p { justify-self: start; }
    .mobile-menu.open {
        display: flex;
        width: min(1220px, calc(100% - 48px));
        margin: 0 auto;
        padding: 16px;
        flex-direction: column;
        gap: 6px;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: rgba(7,10,16,.96);
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 30;
    }
    .mobile-menu a { padding: 13px 14px; color: #aab4c4; border-radius: 8px; }
    .mobile-menu a:hover { background: rgba(255,255,255,.04); color: #fff; }
}

@media (max-width: 700px) {
    .site-header, .hero, .section, .split-section, footer { width: min(100% - 30px, 1220px); }
    .brand-copy { display: none; }
    .header-actions .primary-button { display: none; }
    .hero { padding: 58px 0 70px; gap: 38px; min-height: auto; }
    .hero h1 { font-size: clamp(43px, 13vw, 63px); }
    .hero-copy > p { font-size: 14px; }
    .hero-actions { align-items: stretch; flex-direction: column; }
    .text-button { justify-content: flex-start; padding-left: 3px; }
    .trust-row { gap: 18px; flex-wrap: wrap; margin-top: 38px; }
    .hero-visual { min-height: 360px; }
    .fd-symbol { font-size: 82px; }
    .fd-symbol::after { margin-top: 96px; font-size: 6px; }
    .orbit-one { width: 225px; height: 225px; }
    .orbit-two { width: 315px; height: 315px; }
    .floating-card { width: 115px; }
    .product-grid { grid-template-columns: 1fr; }
    .section, .split-section { padding: 72px 0; }
    .section-heading { align-items: flex-start; gap: 20px; flex-direction: column; }
    .footer-links { flex-wrap: wrap; }
}

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