:root {
  --night: #050816;
  --night-2: #090e20;
  --night-3: #0d142a;
  --paper: #f4f6fa;
  --white: #fff;
  --ink: #0a1021;
  --text: #dce4f5;
  --muted: #8e9ab2;
  --muted-dark: #677288;
  --line: rgba(255,255,255,.11);
  --line-dark: #dce1ea;
  --blue: #5f7dff;
  --cyan: #75e8ff;
  --violet: #9b6dff;
  --mint: #7af0cc;
  --max: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--text); background: var(--night); font: 16px/1.6 "DM Sans", sans-serif; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
.shell { width: min(calc(100% - 56px), var(--max)); margin-inline: auto; }
.site-noise { position: fixed; inset: 0; z-index: 100; pointer-events: none; opacity: .035; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E"); }

.site-header { width: min(calc(100% - 56px), var(--max)); height: 92px; margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; position: relative; z-index: 20; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; font: 800 21px/1 "Manrope", sans-serif; letter-spacing: -.7px; }
.brand-logo { width: 39px; height: 39px; filter: drop-shadow(0 10px 20px rgba(66,92,255,.28)); }
.nav { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.nav a { color: #a9b3c7; font-size: 14px; font-weight: 600; transition: color .2s ease; }
.nav a:hover { color: white; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.language-toggle { height: 40px; padding: 0 11px; display: flex; align-items: center; gap: 7px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.04); cursor: pointer; }
.language-toggle span { color: #69758e; font-size: 11px; font-weight: 800; letter-spacing: .6px; }
.language-toggle span.active { color: white; }
.language-toggle i { width: 1px; height: 14px; background: rgba(255,255,255,.16); }
.header-cta { padding: 11px 17px; border: 1px solid rgba(255,255,255,.16); border-radius: 9px; background: rgba(255,255,255,.06); font: 700 13px/1.3 "Manrope", sans-serif; transition: background .2s, border-color .2s, transform .2s; }
.header-cta:hover { border-color: rgba(117,232,255,.5); background: rgba(95,125,255,.16); transform: translateY(-1px); }
.menu-button { display: none; width: 42px; height: 42px; padding: 11px 9px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.05); }
.menu-button span { display: block; height: 2px; margin: 5px 0; border-radius: 2px; background: white; }

.hero { min-height: 780px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 66px; padding: 75px 0 112px; position: relative; }
.hero::before { content: ""; position: absolute; top: -210px; left: -250px; width: 720px; height: 660px; border-radius: 50%; background: radial-gradient(circle, rgba(75,100,255,.17), transparent 68%); pointer-events: none; }
.hero-copy { position: relative; z-index: 2; }
.kicker { display: flex; align-items: center; gap: 11px; margin: 0 0 26px; color: #90a6ff; font: 800 12px/1.4 "Manrope", sans-serif; letter-spacing: 1.5px; text-transform: uppercase; }
.signal { width: 7px; height: 7px; border: 1px solid var(--cyan); border-radius: 50%; box-shadow: 0 0 14px rgba(117,232,255,.9); }
h1, h2, h3 { margin-top: 0; font-family: "Manrope", sans-serif; }
h1 { max-width: 700px; margin-bottom: 28px; color: white; font-size: clamp(3.6rem, 5.7vw, 6.3rem); line-height: .96; letter-spacing: -5px; }
.hero-lead { max-width: 620px; margin: 0 0 36px; color: #a6b1c6; font-size: 18px; line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 54px; padding: 0 21px; display: inline-flex; align-items: center; justify-content: center; gap: 28px; border-radius: 10px; font: 700 14px/1 "Manrope", sans-serif; transition: transform .2s, box-shadow .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button b { font-size: 16px; }
.button-primary { color: white; background: linear-gradient(135deg, #5578ff, #7357ec); box-shadow: 0 18px 42px rgba(67,83,239,.27); }
.button-primary:hover { box-shadow: 0 20px 48px rgba(67,83,239,.4); }
.button-quiet { border: 1px solid var(--line); color: #c4cde0; background: rgba(255,255,255,.035); }
.button-quiet:hover { border-color: rgba(255,255,255,.28); }
.hero-meta { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 20px; color: #79869f; font-size: 12px; }
.hero-meta > span { display: flex; align-items: center; gap: 7px; }
.hero-meta i { width: 4px; height: 4px; border-radius: 50%; background: var(--cyan); }

.hero-stage { min-height: 580px; position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 30px; background: linear-gradient(150deg, rgba(6,11,27,.79), rgba(6,11,27,.93)), url("hero-visual.png") 67% center/cover no-repeat; box-shadow: 0 50px 100px rgba(0,0,0,.34); }
.hero-stage::before { content: ""; position: absolute; inset: 0; opacity: .2; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(to bottom, transparent, black 18%, black 80%, transparent); }
.stage-glow { position: absolute; width: 360px; height: 360px; top: 50%; left: 50%; border-radius: 50%; background: radial-gradient(circle, rgba(86,94,255,.35), transparent 65%); transform: translate(-50%,-50%); }
.stage-topline, .stage-footer { position: absolute; z-index: 4; left: 30px; right: 30px; display: flex; justify-content: space-between; color: #71809c; font: 700 10px/1 "Manrope", sans-serif; letter-spacing: 1.4px; }
.stage-topline { top: 27px; }
.stage-footer { bottom: 25px; justify-content: flex-start; gap: 25px; }
.stage-footer > span, .live { display: flex; align-items: center; gap: 7px; }
.stage-footer i, .live i { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 10px rgba(122,240,204,.75); }
.stage-footer i.blue { background: var(--blue); box-shadow: none; }.stage-footer i.violet { background: var(--violet); box-shadow: none; }
.flow { position: absolute; inset: 70px 25px 65px; }
.flow-card { width: 205px; padding: 17px; display: flex; align-items: center; gap: 13px; position: absolute; z-index: 4; border: 1px solid rgba(255,255,255,.15); border-radius: 14px; background: rgba(16,25,50,.72); box-shadow: 0 20px 45px rgba(0,0,0,.2); backdrop-filter: blur(12px); }
.flow-card svg { width: 38px; flex: 0 0 38px; fill: none; stroke: #7690ff; stroke-width: 1.8; }
.flow-card strong { display: block; color: #f3f6ff; font-size: 13px; }
.flow-card small { color: #77859f; font-size: 11px; }
.flow-label { position: absolute; top: -24px; left: 2px; color: #63728f; font-size: 9px; font-weight: 800; letter-spacing: 1.4px; }
.document-card { top: 64px; left: 8px; }
.decision-card { right: 4px; bottom: 57px; }
.check { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 38px; border-radius: 50%; color: #06121a; background: var(--mint); font-weight: 900; }
.core-card { width: 218px; height: 218px; position: absolute; z-index: 3; top: 50%; left: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(112,137,255,.32); border-radius: 50%; background: radial-gradient(circle, rgba(40,57,130,.78), rgba(8,15,34,.94) 68%); box-shadow: 0 0 80px rgba(75,80,255,.25); transform: translate(-50%,-50%); }
.core-card svg { width: 54px; height: 54px; padding: 8px; margin-bottom: 12px; overflow: visible; fill: none; stroke: #7290ff; stroke-width: 5; stroke-linecap: round; }
.core-card strong { font-size: 14px; }.core-card small { color: #7f8da8; font-size: 10px; letter-spacing: .5px; }
.core-rings, .core-rings span { position: absolute; inset: 0; border: 1px solid rgba(107,133,255,.18); border-radius: 50%; }
.core-rings span:nth-child(1) { inset: 15px; border-style: dashed; animation: spin 22s linear infinite; }
.core-rings span:nth-child(2) { inset: -18px; opacity: .55; }.core-rings span:nth-child(3) { inset: -38px; opacity: .2; }
.connector { height: 1px; position: absolute; z-index: 2; background: linear-gradient(90deg, transparent, #6582ff, transparent); }
.connector i { width: 5px; height: 5px; position: absolute; top: -2px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 9px var(--cyan); animation: travel 3.2s ease-in-out infinite; }
.connector.first { width: 145px; top: 183px; left: 178px; transform: rotate(20deg); }.connector.second { width: 140px; right: 155px; bottom: 170px; transform: rotate(19deg); }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes travel { 0%,100% { left: 8%; opacity: 0; } 45% { opacity: 1; } 80% { left: 88%; opacity: 0; } }

.ticker { min-height: 98px; display: grid; grid-template-columns: repeat(4,1fr); border-block: 1px solid var(--line); background: rgba(255,255,255,.025); }
.ticker div { padding: 0 24px; display: flex; align-items: center; justify-content: center; gap: 13px; border-right: 1px solid var(--line); }
.ticker div:last-child { border-right: 0; }.ticker span { color: #53627f; font-size: 10px; }.ticker b { color: #bdc7d9; font: 600 13px/1.4 "Manrope", sans-serif; }

.intro { padding-block: 150px 130px; display: grid; grid-template-columns: 210px 1fr; gap: 80px; }
.section-tag { padding-top: 10px; color: #687795; font: 700 11px/1.3 "Manrope", sans-serif; letter-spacing: 1.4px; }
.intro h2 { max-width: 960px; margin-bottom: 32px; color: white; font-size: clamp(2.8rem,4.5vw,5rem); line-height: 1.08; letter-spacing: -3.6px; }
.intro h2 span { color: #68738a; }.intro p { max-width: 760px; margin: 0; color: #8e9ab0; font-size: 18px; }

.product { padding-bottom: 160px; display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: center; }
.product-heading h2 { margin-bottom: 20px; color: white; font-size: clamp(3rem,5vw,5rem); letter-spacing: -4px; }.product-heading h2 em { color: var(--cyan); font-style: normal; }
.product-heading > p:last-child { max-width: 470px; color: #8d99ae; font-size: 17px; }
.product-board { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 23px; background: linear-gradient(145deg, #101831, #0a1022); box-shadow: 0 35px 80px rgba(0,0,0,.28); }
.product-board::before { content: ""; position: absolute; top: -140px; right: -120px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(91,94,255,.24), transparent 68%); }
.board-nav { height: 72px; padding: 0 22px; position: relative; z-index: 2; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--line); color: #9aa7bf; font-size: 11px; letter-spacing: 1.1px; }
.board-logo { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; color: white; background: linear-gradient(135deg,var(--blue),var(--violet)); font-weight: 900; }.board-status { margin-left: auto; display: flex; align-items: center; gap: 7px; color: #6f7e99; }.board-status i { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 9px var(--mint); }
.board-body { min-height: 278px; padding: 42px 35px; position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.board-score { display: flex; flex-direction: column; }.board-score small { color: #667590; font-size: 9px; font-weight: 800; letter-spacing: 1.3px; }.board-score strong { margin: 16px 0 30px; color: white; font-size: 20px; }.board-score > span { margin-top: 8px; color: #7d8ba6; font-size: 10px; }
.score-line { height: 5px; border-radius: 8px; background: rgba(255,255,255,.08); }.score-line i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg,var(--blue),var(--cyan)); box-shadow: 0 0 18px rgba(117,232,255,.3); }
.board-checks { display: flex; flex-direction: column; gap: 12px; }.board-checks > span { padding: 12px 13px; display: flex; align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,.08); border-radius: 9px; color: #a7b2c8; background: rgba(255,255,255,.03); font-size: 11px; }.board-checks i { width: 19px; height: 19px; display: grid; place-items: center; border-radius: 50%; color: #06131b; background: var(--mint); font-size: 10px; font-style: normal; font-weight: 900; }
.board-evidence { min-height: 78px; padding: 15px 22px; display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--line); background: rgba(255,255,255,.025); }.board-evidence > span { color: white; font-size: 25px; font-weight: 700; }.board-evidence small { color: #6f7d96; font-size: 9px; letter-spacing: 1.1px; }.board-evidence button { margin-left: auto; padding: 10px 14px; border: 1px solid rgba(255,255,255,.13); border-radius: 8px; color: #aeb9cd; background: rgba(255,255,255,.04); font-size: 10px; }

.capabilities-wrap { color: var(--ink); background: var(--paper); }
.capabilities { padding-block: 145px 155px; }
.section-heading { display: grid; grid-template-columns: 220px 1fr; gap: 80px; margin-bottom: 80px; }.section-heading h2 { margin: 0; max-width: 850px; font-size: clamp(2.8rem,4.5vw,4.9rem); line-height: 1.06; letter-spacing: -3.7px; }
.cap-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.cap-grid article { min-height: 390px; padding: 28px; position: relative; border: 1px solid var(--line-dark); border-right: 0; background: rgba(255,255,255,.35); transition: transform .25s, background .25s, box-shadow .25s; }.cap-grid article:first-child { border-radius: 17px 0 0 17px; }.cap-grid article:last-child { border-right: 1px solid var(--line-dark); border-radius: 0 17px 17px 0; }.cap-grid article:hover { z-index: 2; background: white; transform: translateY(-9px); box-shadow: 0 25px 55px rgba(21,32,59,.11); }
.cap-number { color: #79849a; font-size: 10px; font-weight: 700; }.cap-icon { width: 56px; height: 56px; margin: 72px 0 42px; padding: 14px 12px; border: 1px solid #abb5c5; border-radius: 13px; }.cap-icon i { display: block; height: 3px; margin: 5px 0; border-radius: 5px; background: var(--blue); }.cap-icon.rules { position: relative; border-radius: 50%; }.cap-icon.rules i { width: 9px; height: 9px; position: absolute; border-radius: 50%; }.cap-icon.rules i:nth-child(1) { top: 9px; left: 23px; }.cap-icon.rules i:nth-child(2) { bottom: 10px; left: 10px; }.cap-icon.rules i:nth-child(3) { right: 10px; bottom: 10px; }.cap-icon.assistant i { height: 2px; }.cap-icon.assistant i:nth-child(2) { width: 70%; }.cap-icon.assistant i:nth-child(3) { width: 45%; }.cap-icon.integrate { display: flex; align-items: center; justify-content: space-between; }.cap-icon.integrate i { width: 8px; height: 8px; border-radius: 50%; }.cap-grid h3 { margin-bottom: 13px; font-size: 17px; letter-spacing: -.5px; }.cap-grid p { margin: 0; color: #69758a; font-size: 14px; line-height: 1.65; }

.principles { padding-block: 150px; display: grid; grid-template-columns: .85fr 1.15fr; gap: 110px; }
.principles-copy h2 { margin: 42px 0 25px; color: white; font-size: clamp(2.6rem,4vw,4.3rem); line-height: 1.08; letter-spacing: -3px; }.principles-copy p { max-width: 540px; color: #8995aa; font-size: 17px; }
.principle-list { border-top: 1px solid var(--line); }.principle-list article { padding: 27px 0; display: grid; grid-template-columns: 55px 1fr; gap: 10px; border-bottom: 1px solid var(--line); }.principle-list article > span { padding-top: 4px; color: var(--blue); font-size: 10px; font-weight: 700; }.principle-list h3 { margin-bottom: 5px; color: white; font-size: 17px; }.principle-list p { margin: 0; color: #7e8aa0; font-size: 13px; }

.contact-wrap { min-height: 720px; position: relative; overflow: hidden; display: flex; align-items: center; border-block: 1px solid var(--line); background: #060a17; }
.contact-visual { position: absolute; inset: 0; opacity: .78; background: linear-gradient(90deg, #060a17 8%, rgba(6,10,23,.85) 40%, rgba(6,10,23,.25)), url("hero-visual.png") center/cover no-repeat; }.contact-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, #060a17, transparent 25%, transparent 78%, #060a17); }
.contact { padding-block: 120px; position: relative; z-index: 2; }.kicker.light { color: var(--cyan); }.contact h2 { max-width: 850px; margin-bottom: 24px; color: white; font-size: clamp(3rem,5vw,5.7rem); line-height: 1.02; letter-spacing: -4.5px; }.contact > p:not(.kicker) { max-width: 590px; margin: 0 0 34px; color: #a0acc0; font-size: 18px; }.button-light { color: var(--ink); background: white; box-shadow: 0 18px 45px rgba(0,0,0,.25); }.contact-details { margin-top: 55px; display: flex; gap: 28px; color: #8390a7; font-size: 13px; }.contact-details a { color: #dbe4f4; border-bottom: 1px solid #68758e; }

.footer { min-height: 155px; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 30px; }.footer > p { color: #748097; text-align: center; font-size: 13px; }.footer-meta { display: flex; flex-direction: column; align-items: flex-end; color: #748097; font-size: 12px; }.footer-meta small { margin-top: 5px; color: #505c73; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .nav { gap: 20px; }.hero { grid-template-columns: 1fr; padding-top: 100px; }.hero-copy { max-width: 850px; }.hero-stage { width: min(100%, 760px); margin-inline: auto; }.intro { grid-template-columns: 150px 1fr; gap: 35px; }.product { grid-template-columns: 1fr; }.product-heading { max-width: 650px; }.cap-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }.cap-grid article, .cap-grid article:first-child, .cap-grid article:last-child { min-height: 330px; border: 1px solid var(--line-dark); border-radius: 15px; }.cap-icon { margin-top: 50px; }.principles { gap: 55px; }
}

@media (max-width: 820px) {
  .shell, .site-header { width: min(calc(100% - 34px), var(--max)); }.site-header { height: 78px; }.nav { position: absolute; top: 70px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 15px; border: 1px solid var(--line); border-radius: 14px; background: rgba(8,13,30,.98); box-shadow: 0 22px 60px rgba(0,0,0,.4); }.nav.open { display: flex; }.nav a { padding: 13px 10px; }.header-cta { display: none; }.menu-button { display: block; }.hero { min-height: auto; gap: 60px; padding: 82px 0 80px; } h1 { letter-spacing: -3.6px; }.hero-stage { min-height: 500px; border-radius: 23px; }.stage-topline, .stage-footer { left: 20px; right: 20px; }.core-card { width: 185px; height: 185px; }.document-card { left: 0; }.decision-card { right: 0; }.flow-card { width: 180px; padding: 14px; }.ticker { grid-template-columns: repeat(2,1fr); }.ticker div { min-height: 76px; border-bottom: 1px solid var(--line); }.intro { grid-template-columns: 1fr; gap: 30px; padding-block: 100px; }.intro h2 { letter-spacing: -2.7px; }.product { padding-bottom: 110px; }.section-heading { grid-template-columns: 1fr; gap: 28px; margin-bottom: 55px; }.capabilities { padding-block: 105px; }.principles { grid-template-columns: 1fr; padding-block: 110px; }.contact-wrap { min-height: 650px; }.contact h2 { letter-spacing: -3px; }.footer { grid-template-columns: 1fr; padding-block: 50px; }.footer > p { text-align: left; }.footer-meta { align-items: flex-start; }
}

@media (max-width: 560px) {
  .brand { font-size: 19px; }.brand-logo { width: 36px; height: 36px; }.language-toggle { height: 38px; }.hero { padding-top: 72px; }.kicker { font-size: 10px; } h1 { font-size: clamp(3.1rem,15vw,4.3rem); letter-spacing: -3.3px; }.hero-lead { font-size: 16px; }.hero-actions { flex-direction: column; }.button { width: 100%; }.hero-meta { gap: 11px 18px; }.hero-stage { min-height: 455px; }.stage-topline > span:first-child { display: none; }.stage-footer { gap: 14px; }.stage-footer > span { font-size: 8px; }.flow { inset-inline: 12px; }.core-card { width: 158px; height: 158px; }.core-rings span:nth-child(3) { display: none; }.flow-card { width: 155px; }.flow-card svg, .decision-card .check { display: none; }.document-card { top: 53px; }.decision-card { bottom: 47px; }.connector.first { left: 115px; }.connector.second { right: 100px; }.ticker b { font-size: 11px; }.intro h2 { font-size: 2.65rem; }.product-heading h2 { font-size: 3.2rem; }.board-body { grid-template-columns: 1fr; gap: 28px; padding: 32px 24px; }.board-evidence small { max-width: 100px; }.board-evidence button { display: none; }.cap-grid { grid-template-columns: 1fr; }.cap-grid article { min-height: 300px; }.cap-icon { margin: 45px 0 30px; }.principles-copy h2 { font-size: 2.8rem; }.contact-wrap { min-height: 620px; }.contact h2 { font-size: 3rem; letter-spacing: -2.6px; }.contact-details { flex-direction: column; gap: 10px; }.footer { min-height: 0; }
}

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