:root {
    --bg: #050914;
    --bg-deep: #02050a;
    --bg-card: #0a111d;
    --bg-card-2: #0d1624;
    --surface: #f4f7fb;
    --white: #ffffff;
    --text: #0d1726;
    --text-soft: #536072;
    --muted: #8995a8;
    --line: rgba(255,255,255,.11);
    --line-dark: #dce3ec;
    --cyan: #7ee7ff;
    --cyan-strong: #22c8f6;
    --blue: #2e78ff;
    --green: #64f5bd;
    --silver: #cdd7e5;
    --danger: #ff6b7a;
    --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Montserrat', 'Inter', sans-serif;
    --font-code: 'Fira Code', Consolas, monospace;
    --shadow: 0 30px 80px rgba(3, 10, 21, .2);
    --radius: 18px;
    --container: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.skip-link {
    position: fixed;
    left: 16px;
    top: -70px;
    z-index: 9999;
    background: var(--cyan);
    color: var(--bg);
    padding: 12px 18px;
    border-radius: 0 0 8px 8px;
    font-weight: 800;
    text-decoration: none;
    transition: top .2s ease;
}
.skip-link:focus { top: 0; }
.container { width: var(--container); margin-inline: auto; }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: 84px;
    background: rgba(3, 7, 14, .78);
    border-bottom: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: height .25s ease, background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
    height: 72px;
    background: rgba(3, 7, 14, .94);
    box-shadow: 0 14px 40px rgba(0,0,0,.25);
}
.header-container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { width: 250px; height: 64px; display: flex; align-items: center; text-decoration: none; }
.brand img { width: 100%; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 7px; }
.desktop-nav a {
    color: #c3cedd;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .01em;
    padding: 10px 11px;
    border-radius: 8px;
    transition: color .2s ease, background .2s ease;
}
.desktop-nav a:hover, .desktop-nav a.active { color: #fff; background: rgba(255,255,255,.06); }
.desktop-nav .nav-cta {
    margin-left: 7px;
    color: var(--bg);
    background: linear-gradient(135deg, #fff, #bfeeff);
    padding-inline: 17px;
}
.desktop-nav .nav-cta:hover { background: #fff; color: var(--bg); transform: translateY(-1px); }
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.04);
    border-radius: 10px;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}
.menu-toggle span { width: 20px; height: 2px; background: #fff; border-radius: 3px; transition: transform .25s ease, opacity .25s ease; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 72px;
    padding: 16px 24px 28px;
    background: rgba(3,7,14,.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 45px rgba(0,0,0,.35);
}
.mobile-nav.open { display: grid; }
.mobile-nav a { color: #e6edf6; text-decoration: none; padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,.07); font-weight: 700; }

.hero {
    position: relative;
    min-height: 900px;
    overflow: hidden;
    padding: 165px 0 54px;
    color: #fff;
    background:
        radial-gradient(circle at 78% 22%, rgba(46,120,255,.17), transparent 27%),
        radial-gradient(circle at 24% 30%, rgba(126,231,255,.08), transparent 29%),
        linear-gradient(145deg, #02050a 0%, #060c17 50%, #040914 100%);
}
.hero-grid-bg, .process-grid {
    position: absolute;
    inset: 0;
    opacity: .24;
    background-image:
        linear-gradient(rgba(126,231,255,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(126,231,255,.055) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, black 10%, transparent 90%);
}
.hero::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 84px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(126,231,255,.6), transparent);
    opacity: .4;
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-orb-one { width: 480px; height: 480px; right: -260px; top: 90px; border: 1px solid rgba(126,231,255,.16); box-shadow: inset 0 0 90px rgba(46,120,255,.07), 0 0 120px rgba(46,120,255,.08); }
.hero-orb-two { width: 260px; height: 260px; left: -150px; bottom: 120px; border: 1px solid rgba(100,245,189,.14); }
.hero-container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 72px; }
.hero-copy { padding-top: 10px; }
.eyebrow, .kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-code);
    font-size: 11px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.eyebrow { color: var(--cyan); padding: 9px 12px; border: 1px solid rgba(126,231,255,.21); border-radius: 6px; background: rgba(126,231,255,.06); }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); }
.hero h1 {
    margin: 25px 0 24px;
    max-width: 720px;
    font-family: var(--font-display);
    font-size: clamp(43px, 5vw, 69px);
    line-height: 1.03;
    letter-spacing: -.055em;
    font-weight: 800;
}
.hero h1 span { color: transparent; background: linear-gradient(100deg, #fff 0%, #b9eefe 55%, #72d8fb 100%); background-clip: text; -webkit-background-clip: text; }
.hero-copy > p { max-width: 650px; margin: 0; color: #aeb9c8; font-size: 18px; line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 22px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.button-primary { color: #03101a; background: linear-gradient(135deg, #fff 0%, #bdeeff 100%); box-shadow: 0 12px 34px rgba(57,187,238,.14); }
.button-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(57,187,238,.25); }
.button-secondary { color: #f4f8fc; background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.17); }
.button-secondary:hover { transform: translateY(-2px); border-color: rgba(126,231,255,.55); background: rgba(126,231,255,.06); }
.hero-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 47px; max-width: 630px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hero-trust div { padding: 18px 20px 18px 0; }
.hero-trust div + div { border-left: 1px solid var(--line); padding-left: 20px; }
.hero-trust strong { display: block; color: #fff; font-family: var(--font-display); font-size: 17px; letter-spacing: -.02em; }
.hero-trust span { display: block; margin-top: 5px; color: #7d8999; font-size: 11px; line-height: 1.35; }

.hero-console { position: relative; }
.hero-console::before { content: ''; position: absolute; inset: 10% -10% -8%; background: radial-gradient(circle, rgba(46,120,255,.17), transparent 65%); filter: blur(35px); }
.console-window {
    position: relative;
    border: 1px solid rgba(177,211,238,.16);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(14,25,41,.96), rgba(5,11,21,.96));
    box-shadow: 0 40px 100px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.05);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-3deg) rotateX(1deg);
}
.console-header { min-height: 47px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; padding: 0 15px; border-bottom: 1px solid var(--line); background: rgba(2,7,14,.65); }
.window-dots { display: flex; gap: 6px; }
.window-dots span { width: 7px; height: 7px; border-radius: 50%; background: #ff6072; }
.window-dots span:nth-child(2) { background: #f7c64e; }
.window-dots span:nth-child(3) { background: #58e795; }
.console-title { font-family: var(--font-code); color: #75869d; font-size: 9px; letter-spacing: .09em; }
.console-status { font-family: var(--font-code); color: #83f4c0; font-size: 8px; display: flex; align-items: center; gap: 5px; }
.console-status span { width: 5px; height: 5px; border-radius: 50%; background: #64f5bd; box-shadow: 0 0 8px #64f5bd; }
.console-body { padding: 18px; }
.system-line { display: grid; grid-template-columns: 30px 1fr auto; gap: 12px; align-items: center; min-height: 60px; padding: 10px 12px; border: 1px solid rgba(255,255,255,.06); border-radius: 8px; background: rgba(255,255,255,.018); }
.system-line + .system-line { margin-top: 8px; }
.system-line > span { font-family: var(--font-code); color: #42566e; font-size: 10px; }
.system-line div { min-width: 0; }
.system-line small { display: block; color: #677a92; font-family: var(--font-code); font-size: 8px; letter-spacing: .08em; }
.system-line strong { display: block; margin-top: 4px; color: #dce8f5; font-size: 12px; font-weight: 600; }
.system-line b { color: #66edbd; font-family: var(--font-code); font-size: 8px; padding: 5px 7px; border-radius: 4px; border: 1px solid rgba(100,245,189,.2); background: rgba(100,245,189,.05); }
.console-map { position: relative; height: 212px; margin-top: 15px; border: 1px solid rgba(255,255,255,.06); border-radius: 10px; overflow: hidden; background: radial-gradient(circle at center, rgba(46,120,255,.12), transparent 46%), linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: auto, 22px 22px, 22px 22px; }
.map-core { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); z-index: 2; width: 94px; height: 94px; border-radius: 50%; display: grid; place-content: center; text-align: center; border: 1px solid rgba(126,231,255,.43); background: radial-gradient(circle, rgba(43,123,255,.28), rgba(6,18,32,.96)); box-shadow: 0 0 36px rgba(46,120,255,.22), inset 0 0 25px rgba(126,231,255,.08); }
.map-core::before, .map-core::after { content: ''; position: absolute; inset: -14px; border-radius: 50%; border: 1px dashed rgba(126,231,255,.17); animation: spin 18s linear infinite; }
.map-core::after { inset: -30px; border-color: rgba(126,231,255,.08); animation-direction: reverse; animation-duration: 28s; }
.map-core i { justify-self: center; width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 9px var(--green); }
.map-core strong { margin-top: 5px; color: #fff; font-family: var(--font-display); font-size: 14px; }
.map-core small { color: #6b829c; font-family: var(--font-code); font-size: 7px; letter-spacing: .11em; }
.map-node { position: absolute; z-index: 3; width: 100px; height: 34px; display: grid; place-content: center; border: 1px solid rgba(126,231,255,.2); border-radius: 6px; background: rgba(8,18,31,.92); color: #a6c7db; font-family: var(--font-code); font-size: 8px; letter-spacing: .06em; box-shadow: 0 0 18px rgba(46,120,255,.08); }
.node-strategy { left: 20px; top: 30px; }
.node-tech { right: 20px; top: 30px; }
.node-people { left: 20px; bottom: 27px; }
.map-link { position: absolute; z-index: 1; height: 2px; border-radius: 999px; background: linear-gradient(90deg, rgba(126,231,255,.98), rgba(126,231,255,.24)); box-shadow: 0 0 10px rgba(67,197,239,.30); }
.map-link::before, .map-link::after { content: ''; position: absolute; top: 50%; width: 7px; height: 7px; border-radius: 50%; transform: translateY(-50%); background: rgba(67,197,239,.96); box-shadow: 0 0 10px rgba(67,197,239,.42); }
.map-link::before { left: -1px; }
.map-link::after { right: -1px; }
.link-one { width: 148px; left: 118px; top: 76px; transform-origin: left center; transform: rotate(23deg); }
.link-two { width: 150px; right: 118px; top: 76px; transform-origin: right center; transform: rotate(-23deg); }
.link-three { width: 132px; left: 118px; top: 150px; transform-origin: left center; transform: rotate(-27deg); }
.console-footer { display: flex; flex-wrap: wrap; gap: 15px; padding: 15px 2px 1px; color: #6f8298; font-family: var(--font-code); font-size: 8px; }
.console-footer span { display: flex; align-items: center; gap: 6px; }
.console-footer i { width: 5px; height: 5px; border-radius: 50%; background: #43c5ef; }
.value-strip { position: relative; z-index: 2; margin-top: 82px; min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 18px; color: #667488; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-family: var(--font-code); font-size: 10px; letter-spacing: .18em; }
.value-strip i { width: 4px; height: 4px; border-radius: 50%; background: rgba(126,231,255,.55); }

.section { position: relative; padding: 112px 0; }
.section-light { background: #f5f7fa; }
.section-heading { max-width: 790px; margin-bottom: 55px; }
.kicker { color: #087ca2; margin-bottom: 17px; }
.section-heading h2, .about-copy h2, .contact-copy h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -.045em;
    font-weight: 800;
}
.section-heading > p { max-width: 720px; margin: 22px 0 0; color: var(--text-soft); font-size: 17px; line-height: 1.72; }
.capabilities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.capability-card {
    position: relative;
    min-height: 375px;
    padding: 30px 28px 27px;
    overflow: hidden;
    border: 1px solid #dfe6ee;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(17,34,55,.035);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.capability-card::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; transform: scaleX(0); transform-origin: left; background: linear-gradient(90deg, var(--blue), var(--cyan-strong)); transition: transform .3s ease; }
.capability-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(22,48,79,.11); border-color: #cbd9e8; }
.capability-card:hover::after { transform: scaleX(1); }
.card-number { position: absolute; right: 22px; top: 21px; color: #e6ebf1; font-family: var(--font-code); font-size: 34px; font-weight: 600; }
.card-icon { width: 50px; height: 50px; display: grid; place-items: center; color: #087ca2; border: 1px solid #cde9f3; border-radius: 10px; background: #effaff; }
.card-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.capability-card h3 { margin: 26px 0 13px; font-family: var(--font-display); font-size: 21px; letter-spacing: -.02em; }
.capability-card p { margin: 0; color: #5a6676; font-size: 14px; line-height: 1.7; }
.capability-card ul { list-style: none; margin: 24px 0 0; padding: 18px 0 0; border-top: 1px solid #edf0f4; }
.capability-card li { position: relative; padding-left: 16px; color: #344253; font-size: 12px; line-height: 1.8; font-weight: 600; }
.capability-card li::before { content: ''; position: absolute; left: 0; top: .72em; width: 6px; height: 1px; background: #16a2ce; }

.section-dark { color: #fff; background: linear-gradient(145deg, #03070e, #07111e); }
.process-section { overflow: hidden; }
.process-grid { opacity: .18; mask-image: linear-gradient(90deg, transparent, black 20%, black 80%, transparent); }
.heading-dark { position: relative; z-index: 1; }
.heading-dark h2 { color: #fff; }
.heading-dark > p { color: #91a0b2; }
.process-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 390px 1fr; gap: 25px; align-items: stretch; }
.process-steps { display: grid; gap: 10px; }
.process-step { min-height: 90px; display: grid; grid-template-columns: 46px 1fr; align-items: center; gap: 15px; width: 100%; padding: 14px 18px; text-align: left; color: #8190a3; border: 1px solid rgba(255,255,255,.08); border-radius: 11px; background: rgba(255,255,255,.02); transition: all .22s ease; }
.process-step:hover { color: #dce7f4; border-color: rgba(126,231,255,.25); background: rgba(126,231,255,.035); }
.process-step.active { color: #fff; border-color: rgba(126,231,255,.38); background: linear-gradient(90deg, rgba(34,200,246,.12), rgba(255,255,255,.02)); box-shadow: inset 3px 0 0 var(--cyan-strong); }
.process-step > span { font-family: var(--font-code); color: #4f6278; font-size: 12px; }
.process-step.active > span { color: var(--cyan); }
.process-step strong { display: block; font-family: var(--font-display); font-size: 16px; }
.process-step small { display: block; margin-top: 6px; color: #637489; font-size: 11px; }
.process-panel { min-height: 390px; padding: 30px; border: 1px solid rgba(175,211,239,.15); border-radius: 14px; background: linear-gradient(145deg, rgba(13,24,39,.94), rgba(6,13,23,.95)); box-shadow: 0 35px 80px rgba(0,0,0,.3); }
.panel-topline { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.panel-topline > span { color: #7d91aa; font-family: var(--font-code); font-size: 10px; letter-spacing: .08em; }
.panel-topline b { display: flex; align-items: center; gap: 7px; color: #71ebbb; font-family: var(--font-code); font-size: 8px; }
.panel-topline i { width: 6px; height: 6px; border-radius: 50%; background: #64f5bd; box-shadow: 0 0 8px #64f5bd; }
.process-panel h3 { margin: 28px 0 13px; font-family: var(--font-display); font-size: 30px; letter-spacing: -.03em; }
.process-panel > p { max-width: 720px; margin: 0; color: #97a7b9; line-height: 1.72; font-size: 15px; }
.panel-outputs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 26px; }
.panel-outputs div { min-height: 79px; padding: 14px; border: 1px solid rgba(255,255,255,.07); border-radius: 8px; background: rgba(255,255,255,.018); }
.panel-outputs small { display: block; color: #52677f; font-family: var(--font-code); font-size: 8px; }
.panel-outputs strong { display: block; margin-top: 9px; color: #dce8f5; font-size: 12px; }
.panel-terminal { margin-top: 21px; padding: 14px 16px; border-radius: 8px; background: #02060b; color: #5d7087; font-family: var(--font-code); font-size: 9px; line-height: 2; }
.panel-terminal span { color: var(--cyan-strong); }
.panel-terminal b { float: right; color: #61dbaa; }

.solutions-section { background: #fff; }
.featured-solution { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 430px; overflow: hidden; border-radius: 17px; background: linear-gradient(135deg, #07101d, #0c1c2e); box-shadow: var(--shadow); color: #fff; }
.solution-copy { padding: 52px 48px; }
.solution-label { color: var(--cyan); font-family: var(--font-code); font-size: 10px; letter-spacing: .1em; }
.solution-copy h3 { margin: 16px 0 15px; font-family: var(--font-display); font-size: 44px; letter-spacing: -.04em; }
.solution-copy > p { margin: 0; color: #9dabbc; line-height: 1.72; font-size: 15px; }
.solution-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 25px; }
.solution-tags span { padding: 7px 10px; border: 1px solid rgba(126,231,255,.16); border-radius: 5px; background: rgba(126,231,255,.05); color: #b7c7d9; font-family: var(--font-code); font-size: 8px; }
.text-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 31px; color: #fff; text-decoration: none; font-weight: 800; font-size: 13px; }
.text-link span { color: var(--cyan); font-size: 17px; transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px,-3px); }
.solution-visual { position: relative; display: grid; align-items: center; padding: 38px 0 38px 20px; overflow: hidden; }
.solution-visual::before { content: ''; position: absolute; width: 420px; height: 420px; right: -90px; top: -30px; border-radius: 50%; background: radial-gradient(circle, rgba(46,120,255,.2), transparent 67%); }
.product-window { position: relative; width: 620px; border: 1px solid rgba(255,255,255,.15); border-radius: 12px; background: #091321; box-shadow: 0 30px 70px rgba(0,0,0,.44); overflow: hidden; transform: perspective(1000px) rotateY(-8deg); }
.product-bar { height: 39px; display: flex; align-items: center; gap: 6px; padding: 0 13px; border-bottom: 1px solid rgba(255,255,255,.08); background: #060d17; }
.product-bar span { width: 7px; height: 7px; border-radius: 50%; background: #ff6072; }
.product-bar span:nth-child(2) { background: #f6c849; }
.product-bar span:nth-child(3) { background: #5ae290; }
.product-bar b { margin-left: 10px; color: #5e738a; font-family: var(--font-code); font-size: 8px; }
.product-content { min-height: 300px; display: grid; grid-template-columns: 65px 1fr; }
.product-sidebar { padding: 20px 15px; border-right: 1px solid rgba(255,255,255,.06); background: rgba(2,7,13,.35); }
.product-sidebar i { display: block; width: 30px; height: 7px; margin-bottom: 15px; border-radius: 4px; background: #1a2a3d; }
.product-sidebar i:first-child { background: #31bfe9; box-shadow: 0 0 13px rgba(49,191,233,.35); }
.product-main { padding: 22px; }
.product-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.product-metrics span { padding: 14px; border: 1px solid rgba(255,255,255,.07); border-radius: 7px; background: rgba(255,255,255,.02); }
.product-metrics small { display: block; color: #58708a; font-family: var(--font-code); font-size: 7px; }
.product-metrics b { display: block; margin-top: 7px; color: #dcebf8; font-size: 13px; }
.product-chart { height: 122px; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; margin-top: 16px; padding: 14px 17px 0; border: 1px solid rgba(255,255,255,.07); border-radius: 7px; background: linear-gradient(rgba(255,255,255,.024) 1px, transparent 1px); background-size: 100% 25%; }
.product-chart i { flex: 1; max-width: 34px; border-radius: 3px 3px 0 0; background: linear-gradient(#40d6fc, #2668dc); box-shadow: 0 0 10px rgba(48,181,241,.13); }
.product-flow { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 16px; color: #668099; font-family: var(--font-code); font-size: 7px; }
.product-flow i { flex: 1; height: 1px; background: linear-gradient(90deg, #2cbfec, rgba(44,191,236,.2)); }
.solution-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 22px; }
.solution-card { position: relative; min-height: 282px; padding: 31px 28px; overflow: hidden; border: 1px solid #e0e6ed; border-radius: 13px; background: #f8fafc; }
.solution-index { position: absolute; right: 23px; top: 20px; color: #dfe6ee; font-family: var(--font-display); font-size: 40px; font-weight: 800; }
.solution-card h3 { margin: 0 0 14px; max-width: 250px; font-family: var(--font-display); font-size: 21px; }
.solution-card > p { margin: 0; color: #5c6979; font-size: 13px; line-height: 1.7; }
.mini-architecture, .automation-flow { display: flex; align-items: center; gap: 7px; margin-top: 28px; font-family: var(--font-code); font-size: 7px; color: #4b637a; }
.mini-architecture span, .automation-flow span { padding: 7px 8px; border: 1px solid #d5e0ea; border-radius: 4px; background: #fff; }
.mini-architecture i { flex: 1; height: 1px; background: #62c7e5; }
.migration-line { display: flex; align-items: center; gap: 12px; margin-top: 35px; font-family: var(--font-code); font-size: 8px; color: #4f6479; }
.migration-line i { position: relative; flex: 1; height: 2px; background: #dce4eb; overflow: hidden; }
.migration-line b { position: absolute; left: -20%; width: 35%; height: 100%; background: #19b9e9; animation: migrate 2.2s linear infinite; }
.automation-flow i { color: #12a7d3; font-style: normal; }

.principles-section { background: #eef2f6; }
.about-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 65px; align-items: start; }
.about-copy h2 { margin-top: 0; }
.about-copy > p { color: #556273; font-size: 15px; line-height: 1.8; }
.about-copy > p:first-of-type { margin-top: 25px; }
.mission-vision { display: grid; gap: 12px; margin-top: 30px; }
.mission-vision div { padding: 17px 19px; border-left: 3px solid #1bb9e6; background: rgba(255,255,255,.58); }
.mission-vision small { display: block; color: #0880a6; font-family: var(--font-code); font-size: 8px; letter-spacing: .1em; }
.mission-vision strong { display: block; margin-top: 7px; color: #2e3a49; font-size: 12px; line-height: 1.55; }
.principles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.principle { min-height: 210px; padding: 25px; border: 1px solid #d9e1e9; border-radius: 12px; background: rgba(255,255,255,.74); }
.principle span { color: #a8b5c4; font-family: var(--font-code); font-size: 10px; }
.principle h3 { margin: 39px 0 10px; font-family: var(--font-display); font-size: 18px; }
.principle p { margin: 0; color: #617082; font-size: 12px; line-height: 1.65; }

.contact-section { overflow: hidden; color: #fff; background: linear-gradient(135deg, #050a13, #081523); }
.contact-section::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(126,231,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(126,231,255,.035) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(90deg, transparent, black 20%, black 80%, transparent); }
.contact-orb { position: absolute; width: 500px; height: 500px; left: -300px; bottom: -250px; border-radius: 50%; border: 1px solid rgba(126,231,255,.14); box-shadow: inset 0 0 100px rgba(46,120,255,.08); }
.contact-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .88fr 1.12fr; gap: 70px; align-items: start; }
.contact-copy .kicker { color: var(--cyan); }
.contact-copy h2 { color: #fff; }
.contact-copy > p { max-width: 520px; margin: 22px 0 0; color: #96a5b7; font-size: 16px; line-height: 1.75; }
.contact-data { display: grid; gap: 12px; margin-top: 38px; }
.contact-data > a, .contact-data > div { min-height: 64px; display: grid; grid-template-columns: 44px 1fr; align-items: center; gap: 13px; padding: 11px 13px; text-decoration: none; border: 1px solid rgba(255,255,255,.08); border-radius: 9px; background: rgba(255,255,255,.02); transition: border-color .2s ease, background .2s ease; }
.contact-data > a:hover { border-color: rgba(126,231,255,.35); background: rgba(126,231,255,.04); }
.contact-icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 7px; background: rgba(126,231,255,.08); color: var(--cyan); font-family: var(--font-code); font-size: 17px; }
.contact-data small { display: block; color: #5f748b; font-family: var(--font-code); font-size: 7px; letter-spacing: .1em; }
.contact-data strong { display: block; margin-top: 6px; color: #dbe7f4; font-size: 11px; line-height: 1.4; overflow-wrap: anywhere; }
.contact-form { padding: 29px; border: 1px solid rgba(174,209,236,.16); border-radius: 15px; background: rgba(10,20,34,.88); box-shadow: 0 30px 70px rgba(0,0,0,.26); backdrop-filter: blur(10px); }
.form-head { display: grid; grid-template-columns: 9px 1fr auto; align-items: center; gap: 10px; padding-bottom: 21px; border-bottom: 1px solid var(--line); }
.form-head > span { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 9px var(--green); }
.form-head strong { font-family: var(--font-code); color: #dbe7f3; font-size: 10px; letter-spacing: .08em; }
.form-head small { color: #52657a; font-size: 8px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px 14px; margin-top: 23px; }
.form-grid label { color: #97a7b9; font-size: 10px; font-weight: 700; letter-spacing: .02em; }
.form-grid .full-width { grid-column: 1 / -1; }
.form-grid input, .form-grid textarea, .form-grid select {
    width: 100%;
    margin-top: 8px;
    color: #e5edf6;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 7px;
    outline: none;
    background: rgba(2,7,13,.6);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.form-grid input, .form-grid select { height: 45px; padding: 0 12px; }
.form-grid textarea { resize: vertical; min-height: 125px; padding: 12px; }
.form-grid input::placeholder, .form-grid textarea::placeholder { color: #465b71; }
.form-grid select { color-scheme: dark; }
.form-grid input:focus, .form-grid textarea:focus, .form-grid select:focus { border-color: rgba(126,231,255,.54); box-shadow: 0 0 0 3px rgba(126,231,255,.07); }
.form-grid input.invalid, .form-grid textarea.invalid, .form-grid select.invalid { border-color: rgba(255,107,122,.75); }
.privacy-check { display: grid; grid-template-columns: 17px 1fr; gap: 10px; align-items: start; margin-top: 17px; color: #75879c; font-size: 9px; line-height: 1.55; }
.privacy-check input { margin: 2px 0 0; accent-color: #43ccef; }
.privacy-check a { color: #9edff1; }
.honeypot { position: absolute !important; left: -99999px !important; opacity: 0 !important; }
.submit-button { width: 100%; margin-top: 18px; border: 0; }
.submit-button:disabled { opacity: .55; cursor: wait; transform: none; }
.submit-button i { font-style: normal; font-size: 17px; }
.form-status { min-height: 20px; margin-top: 11px; text-align: center; color: #77e3b6; font-size: 11px; line-height: 1.5; }
.form-status.error { color: #ff8994; }

.site-footer { color: #fff; background: #02050a; border-top: 1px solid rgba(255,255,255,.08); }
.footer-top { display: grid; grid-template-columns: 260px 1.2fr .75fr .65fr; gap: 45px; padding: 58px 0 45px; align-items: start; }
.footer-brand { width: 245px; }
.footer-tagline { color: #c3cfdd; font-family: var(--font-display); font-size: 17px; line-height: 1.5; font-weight: 700; }
.footer-tagline span { color: #6d7c8f; }
.footer-nav { display: grid; align-content: start; gap: 10px; }
.footer-nav strong { margin-bottom: 5px; color: #5d7086; font-family: var(--font-code); font-size: 8px; letter-spacing: .12em; }
.footer-nav a { color: #9eabba; text-decoration: none; font-size: 11px; }
.footer-nav a:hover { color: var(--cyan); }
.footer-bottom { min-height: 67px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #4f6074; border-top: 1px solid rgba(255,255,255,.07); font-size: 9px; }
.back-to-top { position: fixed; right: 22px; bottom: 22px; z-index: 900; width: 43px; height: 43px; border: 1px solid rgba(126,231,255,.22); border-radius: 9px; color: var(--cyan); background: rgba(5,12,22,.9); box-shadow: 0 12px 30px rgba(0,0,0,.25); opacity: 0; pointer-events: none; transform: translateY(12px); transition: .25s ease; }
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.65,.3,1); }
.reveal.visible { opacity: 1; transform: none; }

.privacy-page { min-height: 100vh; color: #1b2736; background: #f4f7fa; }
.privacy-header { position: static; background: #040914; }
.privacy-main { padding: 140px 0 90px; }
.privacy-content { max-width: 850px; padding: 48px; border: 1px solid #dce3ea; border-radius: 16px; background: #fff; box-shadow: 0 25px 60px rgba(24,45,69,.08); }
.privacy-content h1 { margin: 0 0 14px; font-family: var(--font-display); font-size: 42px; letter-spacing: -.04em; }
.privacy-content h2 { margin: 32px 0 10px; font-family: var(--font-display); font-size: 21px; }
.privacy-content p, .privacy-content li { color: #526071; line-height: 1.75; font-size: 14px; }
.privacy-content a { color: #087fa6; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes migrate { from { left: -35%; } to { left: 105%; } }

@media (max-width: 1080px) {
    :root { --container: min(100% - 40px, 980px); }
    .desktop-nav a { padding-inline: 8px; font-size: 12px; }
    .brand { width: 220px; }
    .hero-container { gap: 38px; }
    .hero h1 { font-size: 53px; }
    .capabilities-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-solution { grid-template-columns: 1fr; }
    .solution-visual { min-height: 380px; padding-left: 9%; }
    .product-window { width: 92%; }
    .footer-top { grid-template-columns: 230px 1fr 1fr; }
    .footer-tagline { display: none; }
}

@media (max-width: 860px) {
    :root { --container: min(100% - 34px, 760px); }
    .site-header, .site-header.scrolled { height: 72px; }
    .brand { width: 215px; height: 56px; }
    .desktop-nav { display: none; }
    .menu-toggle { display: flex; }
    .hero { min-height: auto; padding-top: 130px; }
    .hero-container { grid-template-columns: 1fr; }
    .hero-copy { max-width: 720px; }
    .hero-console { max-width: 650px; }
    .console-window { transform: none; }
    .value-strip { margin-top: 58px; flex-wrap: wrap; justify-content: center; padding: 20px 0; }
    .section { padding: 86px 0; }
    .process-layout { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .process-step { min-height: 85px; }
    .solution-cards { grid-template-columns: 1fr; }
    .solution-card { min-height: 230px; }
    .about-layout { grid-template-columns: 1fr; gap: 42px; }
    .contact-layout { grid-template-columns: 1fr; gap: 45px; }
    .footer-top { grid-template-columns: 1fr 1fr 1fr; gap: 30px; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
    :root { --container: calc(100% - 28px); }
    .brand { width: 200px; }
    .hero { padding-top: 118px; }
    .hero h1 { font-size: clamp(38px, 11vw, 48px); }
    .hero-copy > p { font-size: 16px; }
    .hero-actions { display: grid; }
    .button { width: 100%; }
    .hero-trust { grid-template-columns: 1fr; }
    .hero-trust div + div { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }
    .console-header { grid-template-columns: auto 1fr; }
    .console-status { display: none; }
    .system-line { grid-template-columns: 24px 1fr; }
    .system-line > b { display: none; }
    .console-map { height: 185px; }
    .map-node { width: 84px; font-size: 7px; }
    .node-strategy { left: 10px; }
    .node-tech { right: 10px; }
    .node-people { left: 14px; }
    .link-one, .link-two, .link-three { display: none; }
    .console-footer { display: grid; }
    .value-strip i { display: none; }
    .value-strip span { width: 31%; text-align: center; }
    .section-heading { margin-bottom: 38px; }
    .section-heading h2, .about-copy h2, .contact-copy h2 { font-size: 34px; }
    .section-heading > p { font-size: 15px; }
    .capabilities-grid { grid-template-columns: 1fr; }
    .capability-card { min-height: 340px; }
    .process-steps { grid-template-columns: 1fr; }
    .process-panel { padding: 22px; }
    .process-panel h3 { font-size: 25px; }
    .panel-outputs { grid-template-columns: 1fr; }
    .panel-terminal { font-size: 7px; }
    .featured-solution { min-height: auto; }
    .solution-copy { padding: 36px 25px; }
    .solution-copy h3 { font-size: 36px; }
    .solution-visual { min-height: 300px; padding: 25px 0 32px 15px; }
    .product-window { width: 112%; transform: none; }
    .product-content { min-height: 240px; grid-template-columns: 42px 1fr; }
    .product-sidebar { padding-inline: 8px; }
    .product-sidebar i { width: 23px; }
    .product-main { padding: 14px; }
    .product-chart { height: 95px; }
    .product-flow { display: none; }
    .principles-grid { grid-template-columns: 1fr; }
    .principle { min-height: 175px; }
    .principle h3 { margin-top: 25px; }
    .contact-form { padding: 22px 17px; }
    .form-head { grid-template-columns: 9px 1fr; }
    .form-head small { display: none; }
    .form-grid { grid-template-columns: 1fr; }
    .form-grid .full-width { grid-column: auto; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-brand { width: 225px; }
    .footer-bottom { padding: 20px 0; flex-direction: column; align-items: flex-start; }
    .privacy-main { padding-top: 100px; }
    .privacy-content { padding: 30px 22px; }
    .privacy-content h1 { font-size: 34px; }
}

@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; }
}
