:root {
  --bg: #020204;
  --bg-soft: #07070b;
  --surface: #0c0b10;
  --surface-2: #111017;
  --line: rgba(255,255,255,.085);
  --line-strong: rgba(255,255,255,.16);
  --text: #f5f3f7;
  --muted: #96919e;
  --muted-2: #6f6a76;
  --fuchsia: #ff2bd6;
  --magenta: #cf29ff;
  --purple: #7d4cff;
  --violet: #9b5cff;
  --cyan-hint: #57d7ff;
  --shell: 1500px;
  --header: 82px;
  --radius: 26px;
  --ease: cubic-bezier(.2,.7,.15,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  background:
    radial-gradient(circle at 76% 4%, rgba(125,76,255,.08), transparent 26%),
    radial-gradient(circle at 8% 40%, rgba(255,43,214,.045), transparent 24%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  font-synthesis: none;
  text-rendering: geometricPrecision;
}
body.is-loading { overflow: hidden; }
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: rgba(255,43,214,.3); color: white; }

.noscript { position: fixed; inset: 0; display: grid; place-items: center; z-index: 9999; background: #020204; color: white; padding: 24px; }
.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }

#ambientCanvas { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; opacity: .34; }
.grain { position: fixed; inset: 0; pointer-events: none; z-index: 1; 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='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E"); mix-blend-mode: soft-light; }
main, .site-header, .footer { position: relative; z-index: 2; }

/* Loader */
.preloader { position: fixed; inset: 0; z-index: 999; background: #010102; display: grid; place-items: center; transition: opacity .7s var(--ease), visibility .7s var(--ease); }
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader__halo { position: absolute; width: 520px; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(207,41,255,.12), rgba(255,43,214,.035) 32%, transparent 66%); filter: blur(12px); animation: loaderPulse 2.4s ease-in-out infinite; }
.preloader__content { width: min(360px, calc(100% - 48px)); position: relative; }
.preloader__logo { width: 170px; margin: 0 auto 34px; filter: grayscale(1) brightness(1.85) contrast(1.05); opacity: .92; }
.preloader__meta { display: flex; justify-content: space-between; color: #817b86; font-size: 10px; letter-spacing: .22em; margin-bottom: 10px; }
.preloader__track { height: 1px; background: rgba(255,255,255,.08); overflow: hidden; }
.preloader__track span { display: block; width: 0%; height: 100%; background: linear-gradient(90deg, var(--purple), var(--fuchsia)); box-shadow: 0 0 22px rgba(255,43,214,.55); transition: width .08s linear; }
@keyframes loaderPulse { 0%,100%{transform:scale(.94);opacity:.7} 50%{transform:scale(1.04);opacity:1} }

/* Header */
.site-header { position: fixed; top: 0; left: 0; right: 0; height: var(--header); z-index: 40; border-bottom: 1px solid transparent; transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease; }
.site-header.is-scrolled { background: rgba(2,2,4,.72); backdrop-filter: blur(20px); border-color: var(--line); }
.header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand img { width: 132px; filter: grayscale(1) brightness(1.9) contrast(1.08); transition: filter .35s ease, opacity .35s ease; opacity: .92; }
.brand:hover img { filter: none; opacity: 1; }
.desktop-nav { display: flex; align-items: center; gap: 36px; color: #b3afba; font-size: 14px; }
.desktop-nav a { position: relative; transition: color .25s ease; }
.desktop-nav a::after { content:""; position:absolute; left:0; right:0; bottom:-10px; height:1px; transform:scaleX(0); transform-origin:left; background:linear-gradient(90deg,var(--fuchsia),var(--purple)); transition:transform .25s ease; }
.desktop-nav a:hover { color: white; }
.desktop-nav a:hover::after { transform: scaleX(1); }
.header__actions { display: flex; align-items: center; gap: 16px; }
.text-link { color: #b9b4c0; font-size: 14px; }
.text-link:hover { color:white; }
.menu-toggle { display:none; width:46px; height:46px; border:1px solid var(--line); border-radius:50%; background:rgba(255,255,255,.025); position:relative; cursor:pointer; }
.menu-toggle span { position:absolute; left:13px; right:13px; height:1px; background:#fff; transition:.25s ease; }
.menu-toggle span:first-child { top:18px; }
.menu-toggle span:last-child { top:26px; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-nav { display:none; }

.button { min-height: 52px; padding: 0 22px; border-radius: 999px; display:inline-flex; align-items:center; justify-content:center; border:1px solid transparent; font-weight:700; font-size:14px; cursor:pointer; transition: transform .25s var(--ease), border-color .25s ease, background .25s ease, box-shadow .25s ease; position:relative; overflow:hidden; }
.button--primary { color:#fff; background: linear-gradient(100deg, #a339ff 0%, #e32cd5 52%, #ff4aac 100%); box-shadow: 0 12px 46px rgba(207,41,255,.18), inset 0 1px rgba(255,255,255,.26); }
.button--primary::after { content:""; position:absolute; inset:-80% auto -80% -20%; width:50%; transform:rotate(18deg); background:linear-gradient(90deg,transparent,rgba(255,255,255,.22),transparent); transition:left .6s var(--ease); }
.button--primary:hover::after { left:80%; }
.button--primary:hover { box-shadow: 0 18px 58px rgba(255,43,214,.23); }
.button--ghost { border-color: var(--line-strong); background: rgba(255,255,255,.025); color:#e9e6ec; }
.button--ghost:hover { background:rgba(255,255,255,.055); border-color:rgba(255,255,255,.26); }

/* Hero */
.hero { min-height: 100svh; display:grid; grid-template-columns: .9fr 1.1fr; align-items:center; gap: clamp(36px, 5vw, 90px); padding-top: calc(var(--header) + 56px); padding-bottom: 56px; position:relative; }
.hero__copy { max-width: 760px; position:relative; z-index:3; }
.kicker { display:flex; align-items:center; gap:12px; color:#9c97a4; font-size:11px; letter-spacing:.19em; font-weight:800; margin-bottom:28px; }
.kicker span { width:26px; height:1px; background:linear-gradient(90deg,var(--fuchsia),var(--purple)); box-shadow:0 0 14px rgba(255,43,214,.45); }
h1 { margin:0; font-size:clamp(3.5rem, 6.3vw, 7.6rem); line-height:.88; letter-spacing:-.072em; max-width:10ch; font-weight:720; }
.hero__lead { margin:34px 0 0; max-width:62ch; color:#9c97a5; line-height:1.78; font-size:clamp(1rem, 1.35vw, 1.19rem); }
.hero__actions { display:flex; gap:12px; flex-wrap:wrap; margin-top:34px; }
.hero__micro { display:flex; gap:22px; flex-wrap:wrap; margin-top:38px; color:#696470; font-size:11px; letter-spacing:.12em; text-transform:uppercase; }
.hero__micro span { position:relative; padding-left:12px; }
.hero__micro span::before { content:""; position:absolute; width:3px; height:3px; border-radius:50%; background:var(--fuchsia); left:0; top:50%; box-shadow:0 0 10px var(--fuchsia); }
.hero__visual { min-height: 650px; display:grid; place-items:center; position:relative; perspective:1300px; }
.core-stage { width:min(680px, 100%); aspect-ratio:1.05; position:relative; transform-style:preserve-3d; will-change:transform; transform:translate3d(0,0,0); backface-visibility:hidden; contain:layout paint; }
.core-stage::before { content:""; position:absolute; inset:14%; border-radius:50%; background:radial-gradient(circle, rgba(255,255,255,.02), transparent 64%); border:1px solid rgba(255,255,255,.045); box-shadow: inset 0 0 80px rgba(255,255,255,.015); }
.core-glow { position:absolute; border-radius:50%; filter:blur(42px); pointer-events:none; }
.core-glow--a { width:43%; aspect-ratio:1; right:13%; top:24%; background:rgba(255,43,214,.13); }
.core-glow--b { width:38%; aspect-ratio:1; left:24%; bottom:16%; background:rgba(125,76,255,.15); }
.orbit { position:absolute; border-radius:50%; border:1px solid rgba(255,255,255,.07); left:50%; top:50%; transform-style:preserve-3d; }
.orbit i { position:absolute; width:5px; height:5px; border-radius:50%; background:var(--fuchsia); box-shadow:0 0 18px var(--fuchsia); left:50%; top:-3px; }
.orbit--1 { width:82%; aspect-ratio:1; animation:orbitOne 18s linear infinite; }
.orbit--2 { width:64%; aspect-ratio:1; animation:orbitTwo 15s linear infinite reverse; }
.orbit--3 { width:46%; aspect-ratio:1; animation:orbitThree 12s linear infinite; border-color:rgba(155,92,255,.11); }
@keyframes orbitOne { from{transform:translate(-50%,-50%) rotateX(68deg) rotateZ(0)} to{transform:translate(-50%,-50%) rotateX(68deg) rotateZ(360deg)} }
@keyframes orbitTwo { from{transform:translate(-50%,-50%) rotateY(66deg) rotateZ(28deg)} to{transform:translate(-50%,-50%) rotateY(66deg) rotateZ(388deg)} }
@keyframes orbitThree { from{transform:translate(-50%,-50%) rotateX(35deg) rotateY(58deg) rotateZ(0)} to{transform:translate(-50%,-50%) rotateX(35deg) rotateY(58deg) rotateZ(360deg)} }
.duo-core { position:absolute; width:52%; aspect-ratio:.82; left:50%; top:50%; transform:translate3d(-50%,-50%,0) rotateX(8deg) rotateY(-18deg); transform-style:preserve-3d; animation:coreFloat 7s ease-in-out infinite; will-change:transform; backface-visibility:hidden; }
@keyframes coreFloat { 0%,100%{transform:translate3d(-50%,-50%,0) rotateX(8deg) rotateY(-18deg)} 50%{transform:translate3d(-50%,calc(-50% - 13px),0) rotateX(6deg) rotateY(-13deg)} }
.duo-core__plane { position:absolute; inset:0; border-radius:34px; border:1px solid rgba(255,255,255,.1); background:linear-gradient(150deg, rgba(255,255,255,.055), rgba(255,255,255,.012) 45%, rgba(255,255,255,.02)); backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px); backface-visibility:hidden; transform-style:preserve-3d; }
.plane--back { transform:translate3d(48px,-32px,-80px); border-color:rgba(125,76,255,.18); background:rgba(125,76,255,.035); }
.plane--mid { transform:translate3d(24px,-16px,-40px); border-color:rgba(255,43,214,.18); background:rgba(255,43,214,.035); }
.plane--front { overflow:hidden; box-shadow: 0 48px 110px rgba(0,0,0,.58), inset 0 1px rgba(255,255,255,.06); }
.plane--front::before { content:""; position:absolute; inset:-1px; border-radius:inherit; padding:1px; background:linear-gradient(135deg,rgba(255,255,255,.16),rgba(255,43,214,.36),rgba(125,76,255,.14),transparent 72%); -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0); -webkit-mask-composite:xor; mask-composite:exclude; }
.plane--front::after { content:""; position:absolute; left:-24%; top:-32%; width:84%; height:44%; transform:rotate(-22deg); background:linear-gradient(90deg, transparent, rgba(255,255,255,.09), transparent); filter:blur(3px); }
.core-mark { position:absolute; left:34px; top:26px; font-size:clamp(4rem,6vw,7.7rem); line-height:1; font-weight:800; letter-spacing:-.12em; color:rgba(255,255,255,.055); text-shadow:0 0 34px rgba(255,43,214,.08); }
.core-data { position:absolute; inset:auto 26px 28px; display:grid; gap:10px; }
.core-data span { display:flex; align-items:center; gap:10px; color:#99939f; font-size:9px; letter-spacing:.22em; }
.core-data span::before { content:""; width:20px; height:1px; background:linear-gradient(90deg,var(--fuchsia),var(--purple)); }
.signal { position:absolute; min-width:122px; padding:14px 16px; border-radius:18px; border:1px solid rgba(255,255,255,.08); background:rgba(7,7,11,.74); backdrop-filter:blur(12px); display:flex; justify-content:space-between; align-items:center; color:#716b78; font-size:10px; letter-spacing:.16em; box-shadow:0 22px 55px rgba(0,0,0,.28); }
.signal b { width:7px; height:7px; border-radius:50%; background:var(--fuchsia); box-shadow:0 0 18px var(--fuchsia); }
.signal--a { right:4%; top:24%; animation:signalFloat 6s ease-in-out infinite; }
.signal--b { left:4%; top:54%; animation:signalFloat 7s ease-in-out -2s infinite; }
.signal--c { right:16%; bottom:12%; animation:signalFloat 8s ease-in-out -4s infinite; }
@keyframes signalFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
.visual-caption { position:absolute; right:3%; bottom:4%; color:#5b5661; font-size:9px; letter-spacing:.26em; }
.scroll-cue { position:absolute; bottom:28px; left:50%; transform:translateX(-50%); display:flex; flex-direction:column; align-items:center; gap:8px; color:#5d5863; font-size:9px; letter-spacing:.22em; }
.scroll-cue span { width:1px; height:34px; background:linear-gradient(to bottom,rgba(255,43,214,.85),transparent); animation:scrollCue 1.8s ease-in-out infinite; }
@keyframes scrollCue { 0%,100%{transform:scaleY(.45);transform-origin:top;opacity:.5} 50%{transform:scaleY(1);opacity:1} }

.statement { min-height:170px; display:grid; grid-template-columns:minmax(0,1.1fr) minmax(80px,.4fr) minmax(0,.65fr); gap:28px; align-items:center; border-top:1px solid var(--line); border-bottom:1px solid var(--line); color:#aaa5b0; }
.statement p { font-size:clamp(1.05rem,1.8vw,1.55rem); line-height:1.5; margin:0; }
.statement__line { height:1px; background:linear-gradient(90deg,rgba(255,255,255,.18),rgba(255,43,214,.38),rgba(125,76,255,.22)); }
.statement span { font-size:11px; line-height:1.65; letter-spacing:.12em; text-transform:uppercase; color:#6f6975; }

/* Sections */
.section { padding:150px 0; }
.section--dark { background:linear-gradient(180deg,#050507,#08070b 55%,#050507); border-block:1px solid rgba(255,255,255,.05); }
.section-head { display:grid; grid-template-columns:1.15fr .55fr; gap:60px; align-items:end; margin-bottom:64px; }
.section-index { display:block; color:#4f4a55; font-size:10px; letter-spacing:.22em; margin-bottom:18px; }
.eyebrow { margin:0 0 18px; color:#7f7986; font-size:10px; letter-spacing:.25em; font-weight:800; }
h2 { margin:0; font-size:clamp(2.7rem,5vw,6.1rem); line-height:.94; letter-spacing:-.062em; font-weight:700; }
h2 em { font-style:normal; color:transparent; -webkit-text-stroke:1px rgba(255,43,214,.74); text-shadow:0 0 40px rgba(207,41,255,.1); }
.section-intro { margin:0; color:#918b97; font-size:1rem; line-height:1.8; max-width:52ch; justify-self:end; }

.service-rail { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:30px; overflow:hidden; }
.service-card { min-height:520px; background:linear-gradient(180deg,rgba(12,11,16,.92),rgba(7,7,10,.94)); padding:30px; position:relative; overflow:hidden; transition:background .35s ease, transform .35s var(--ease); }
.service-card::before { content:""; position:absolute; width:240px; aspect-ratio:1; border-radius:50%; right:-42%; top:-10%; filter:blur(30px); opacity:0; transition:opacity .35s ease; }
.service-card[data-accent="fuchsia"]::before { background:rgba(255,43,214,.14); }
.service-card[data-accent="purple"]::before { background:rgba(125,76,255,.14); }
.service-card[data-accent="violet"]::before { background:rgba(155,92,255,.14); }
.service-card[data-accent="magenta"]::before { background:rgba(207,41,255,.14); }
.service-card:hover { background:linear-gradient(180deg,rgba(15,13,19,.98),rgba(8,8,11,.98)); }
.service-card:hover::before { opacity:1; }
.service-card__top { display:flex; justify-content:space-between; align-items:center; color:#5f5a65; font-size:10px; letter-spacing:.18em; margin-bottom:130px; }
.service-card__top i { width:7px; height:7px; border-radius:50%; background:var(--fuchsia); box-shadow:0 0 18px rgba(255,43,214,.8); opacity:.72; }
.service-card h3 { margin:0 0 18px; font-size:clamp(1.45rem,1.9vw,2rem); letter-spacing:-.035em; }
.service-card p { margin:0; color:#928c98; line-height:1.7; min-height:115px; }
.service-card ul { list-style:none; padding:24px 0 0; margin:26px 0 0; border-top:1px solid var(--line); display:grid; gap:12px; }
.service-card li { color:#716b78; font-size:13px; line-height:1.45; position:relative; padding-left:14px; }
.service-card li::before { content:""; position:absolute; left:0; top:.63em; width:4px; height:4px; border-radius:50%; background:#b233ca; }

.operation-grid { display:grid; grid-template-columns:.72fr 1.28fr; gap:90px; align-items:center; }
.operation-copy p:last-child { color:#87818d; line-height:1.8; max-width:48ch; margin:30px 0 0; }
.operation-console { border:1px solid var(--line); border-radius:32px; background:#09090d; box-shadow:0 50px 120px rgba(0,0,0,.45); overflow:hidden; position:relative; }
.operation-console::before { content:""; position:absolute; width:420px; aspect-ratio:1; border-radius:50%; right:-120px; top:-150px; background:radial-gradient(circle,rgba(207,41,255,.11),transparent 68%); pointer-events:none; }
.console__top { height:58px; padding:0 22px; border-bottom:1px solid var(--line); display:flex; align-items:center; justify-content:space-between; color:#625d68; font-size:9px; letter-spacing:.2em; }
.console-status { display:flex; align-items:center; gap:8px; }
.console-status i { width:6px; height:6px; border-radius:50%; background:#a55cff; box-shadow:0 0 14px #a55cff; }
.console__grid { display:grid; grid-template-columns:repeat(4,1fr); background:var(--line); gap:1px; }
.console-item { min-height:170px; text-align:left; border:0; background:#0b0a0f; color:white; padding:22px; cursor:pointer; transition:background .25s ease; }
.console-item span { display:block; color:#4c4850; font-size:9px; letter-spacing:.18em; margin-bottom:54px; }
.console-item strong { display:block; font-size:12px; letter-spacing:.12em; margin-bottom:7px; }
.console-item small { color:#6e6873; font-size:11px; line-height:1.45; }
.console-item:hover, .console-item.is-active { background:linear-gradient(160deg,#131018,#0c0b0f); }
.console-item.is-active strong { color:#f5edf7; }
.console-item.is-active { box-shadow:inset 0 -1px var(--fuchsia); }
.console__panel { min-height:220px; padding:34px; display:grid; grid-template-columns:.8fr 1.2fr; gap:44px; align-items:end; }
.console__panel p { margin:0; color:#79737e; line-height:1.7; }
.console__panel > div > p { color:#7f7885; font-size:9px; letter-spacing:.21em; margin-bottom:16px; }
.console__panel h3 { margin:0; font-size:clamp(1.5rem,2.1vw,2.2rem); line-height:1.08; letter-spacing:-.04em; max-width:13ch; }

.timeline { border-top:1px solid var(--line); display:grid; grid-template-columns:repeat(4,1fr); }
.timeline article { padding:28px 28px 28px 0; min-height:240px; position:relative; border-right:1px solid var(--line); }
.timeline article:not(:first-child) { padding-left:28px; }
.timeline article:last-child { border-right:0; }
.timeline article::before { content:""; position:absolute; top:-4px; left:0; width:7px; height:7px; border-radius:50%; background:#09090c; border:1px solid rgba(255,43,214,.7); box-shadow:0 0 12px rgba(255,43,214,.3); }
.timeline article:not(:first-child)::before { left:28px; }
.timeline span { color:#625d68; font-size:9px; letter-spacing:.2em; }
.timeline h3 { margin:70px 0 12px; font-size:1.45rem; letter-spacing:-.03em; }
.timeline p { color:#7f7985; line-height:1.7; margin:0; max-width:27ch; }

.plans { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.plan-card { min-height:560px; border:1px solid var(--line); border-radius:28px; background:linear-gradient(180deg,#0b0a0e,#07070a); padding:30px; display:flex; flex-direction:column; position:relative; overflow:hidden; }
.plan-card--featured { border-color:rgba(255,43,214,.24); background:linear-gradient(160deg,#100c12,#0a080d 58%,#08070a); transform:translateY(-8px); }
.plan-card__glow { position:absolute; width:330px; aspect-ratio:1; border-radius:50%; right:-130px; top:-160px; background:radial-gradient(circle,rgba(255,43,214,.15),rgba(125,76,255,.06) 42%,transparent 70%); filter:blur(8px); }
.plan-card__tag { color:#68626e; font-size:9px; letter-spacing:.22em; margin:0 0 95px; position:relative; }
.plan-card h3 { margin:0 0 18px; font-size:2rem; letter-spacing:-.04em; position:relative; }
.plan-card > p:not(.plan-card__tag) { color:#87818d; line-height:1.72; margin:0; position:relative; min-height:112px; }
.plan-card ul { list-style:none; padding:24px 0; margin:22px 0 0; border-top:1px solid var(--line); display:grid; gap:12px; }
.plan-card li { color:#77717d; font-size:13px; padding-left:14px; position:relative; }
.plan-card li::before { content:""; width:4px; height:4px; border-radius:50%; position:absolute; left:0; top:.55em; background:#a34fd7; }
.plan-card a { margin-top:auto; display:flex; align-items:center; justify-content:space-between; border-top:1px solid var(--line); padding-top:22px; color:#d7d2da; font-size:13px; }
.plan-card a span { color:var(--fuchsia); }

.contact-section { background:radial-gradient(circle at 12% 35%,rgba(125,76,255,.08),transparent 28%),radial-gradient(circle at 86% 70%,rgba(255,43,214,.07),transparent 28%),#040405; border-top:1px solid var(--line); }
.contact-grid { display:grid; grid-template-columns:.75fr 1.25fr; gap:90px; align-items:start; }
.contact-copy > p:not(.eyebrow) { color:#8b8591; line-height:1.8; margin:28px 0 0; max-width:49ch; }
.contact-note { margin-top:46px; display:flex; align-items:center; gap:12px; color:#5e5963; font-size:9px; letter-spacing:.18em; line-height:1.6; }
.contact-note span { width:7px; height:7px; border-radius:50%; background:var(--fuchsia); box-shadow:0 0 18px rgba(255,43,214,.7); }
.lead-form { border-top:1px solid var(--line); display:grid; grid-template-columns:1fr 1fr; column-gap:22px; }
.lead-form label { display:block; padding:24px 0; border-bottom:1px solid var(--line); }
.lead-form label:nth-child(odd):not(.lead-form__wide) { padding-right:14px; }
.lead-form label > span { display:block; color:#625c68; font-size:9px; letter-spacing:.18em; text-transform:uppercase; margin-bottom:14px; }
.lead-form input, .lead-form select, .lead-form textarea { width:100%; border:0; outline:0; background:transparent; color:#eeeaf1; padding:0; font-size:1rem; resize:none; }
.lead-form select { color:#bbb5c0; }
.lead-form select option { background:#0a090d; color:white; }
.lead-form textarea::placeholder { color:#4f4a54; }
.lead-form__wide { grid-column:1 / -1; }
.lead-form__footer { display:flex; justify-content:space-between; align-items:center; gap:20px; padding-top:24px; }
.lead-form__footer p { color:#5f5964; font-size:11px; margin:0; }
.form-success { display:none; margin-top:18px; padding:15px 18px; border:1px solid rgba(255,43,214,.18); border-radius:14px; color:#c8c1cc; background:rgba(255,43,214,.035); }
.form-success.show { display:block; }

.footer { min-height:130px; display:grid; grid-template-columns:1fr 1fr 1fr; align-items:center; gap:24px; border-top:1px solid var(--line); color:#5f5964; font-size:11px; }
.footer img { width:112px; filter:grayscale(1) brightness(1.5); opacity:.62; }
.footer p { text-align:center; margin:0; }
.footer span { text-align:right; }

.reveal { opacity:0; transform:translateY(22px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity:1; transform:none; }

@media (max-width: 1180px) {
  .desktop-nav { display:none; }
  .text-link { display:none; }
  .menu-toggle { display:block; }
  .mobile-nav { position:fixed; top:var(--header); left:16px; right:16px; z-index:41; border:1px solid var(--line); border-radius:24px; background:rgba(7,7,10,.96); backdrop-filter:blur(24px); padding:12px; flex-direction:column; gap:4px; box-shadow:0 30px 80px rgba(0,0,0,.5); }
  .mobile-nav.is-open { display:flex; }
  .mobile-nav a:not(.button) { padding:15px 16px; border-radius:14px; color:#b0abb5; }
  .mobile-nav a:not(.button):hover { background:rgba(255,255,255,.04); color:white; }
  .hero { grid-template-columns:1fr; padding-top:calc(var(--header) + 70px); }
  .hero__copy { max-width:900px; }
  h1 { max-width:9ch; }
  .hero__visual { min-height:520px; }
  .core-stage { width:min(650px,84vw); }
  .scroll-cue { display:none; }
  .service-rail { grid-template-columns:repeat(2,1fr); }
  .service-card__top { margin-bottom:85px; }
  .operation-grid, .contact-grid { grid-template-columns:1fr; gap:64px; }
}

@media (max-width: 820px) {
  .shell { width:min(calc(100% - 28px), var(--shell)); }
  .site-header { height:72px; --header:72px; }
  .header__actions > .button { display:none; }
  .brand img { width:112px; }
  .hero { min-height:auto; padding-top:130px; padding-bottom:90px; }
  h1 { font-size:clamp(3.2rem,15vw,6rem); max-width:8.4ch; }
  .hero__lead { font-size:1rem; max-width:50ch; }
  .hero__actions { display:grid; grid-template-columns:1fr; max-width:340px; }
  .hero__visual { min-height:400px; margin-top:10px; }
  .signal { min-width:92px; padding:11px 12px; }
  .signal--a { right:0; }
  .signal--b { left:0; }
  .statement { grid-template-columns:1fr; padding:54px 0; gap:24px; }
  .statement__line { width:100%; }
  .section { padding:110px 0; }
  .section-head { grid-template-columns:1fr; gap:28px; margin-bottom:44px; }
  .section-intro { justify-self:start; }
  .service-rail { grid-template-columns:1fr; border-radius:24px; }
  .service-card { min-height:440px; }
  .service-card__top { margin-bottom:70px; }
  .console__grid { grid-template-columns:1fr 1fr; }
  .console__panel { grid-template-columns:1fr; align-items:start; gap:20px; }
  .timeline { grid-template-columns:1fr; border-top:0; }
  .timeline article, .timeline article:not(:first-child) { padding:26px 0 26px 26px; border-left:1px solid var(--line); border-right:0; min-height:0; }
  .timeline article::before, .timeline article:not(:first-child)::before { left:-4px; top:30px; }
  .timeline h3 { margin:12px 0 8px; }
  .plans { grid-template-columns:1fr; }
  .plan-card, .plan-card--featured { min-height:auto; transform:none; }
  .plan-card__tag { margin-bottom:58px; }
  .lead-form { grid-template-columns:1fr; }
  .lead-form__wide { grid-column:auto; }
  .lead-form label:nth-child(odd):not(.lead-form__wide) { padding-right:0; }
  .lead-form__footer { flex-direction:column; align-items:flex-start; }
  .footer { grid-template-columns:1fr; padding:34px 0; }
  .footer p, .footer span { text-align:left; }
}

@media (max-width: 520px) {
  .hero__micro { display:grid; gap:10px; }
  .hero__visual { min-height:320px; }
  .core-stage { width:100%; }
  .duo-core { width:58%; }
  .signal { font-size:8px; }
  .signal--c { right:3%; bottom:6%; }
  .visual-caption { display:none; }
  .console__grid { grid-template-columns:1fr; }
  .console-item { min-height:120px; }
  .console-item span { margin-bottom:26px; }
}

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


/* Floating WhatsApp CTA */
.whatsapp-float {
  position:fixed;
  right:max(22px, env(safe-area-inset-right));
  bottom:max(22px, env(safe-area-inset-bottom));
  z-index:50;
  min-height:54px;
  padding:0 18px 0 15px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(145deg,rgba(20,18,24,.94),rgba(8,8,11,.96));
  box-shadow:0 18px 60px rgba(0,0,0,.46), 0 0 34px rgba(255,43,214,.10);
  color:#f7f4f8;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  transition:transform .24s var(--ease), border-color .24s ease, box-shadow .24s ease, background .24s ease;
}
.whatsapp-float::before {
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:inherit;
  padding:1px;
  background:linear-gradient(135deg,rgba(255,43,214,.5),rgba(125,76,255,.32),rgba(255,255,255,.06));
  -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
}
.whatsapp-float svg { width:22px; height:22px; fill:currentColor; filter:drop-shadow(0 0 10px rgba(255,43,214,.24)); }
.whatsapp-float:hover { border-color:rgba(255,43,214,.34); box-shadow:0 22px 70px rgba(0,0,0,.55), 0 0 40px rgba(255,43,214,.16); background:linear-gradient(145deg,rgba(26,20,29,.98),rgba(10,9,13,.98)); }
@media (max-width: 520px) {
  .whatsapp-float { right:14px; bottom:14px; width:54px; min-height:54px; padding:0; justify-content:center; }
  .whatsapp-float span { display:none; }
}


/* === DUODATA V3 premium refinements === */
:root { --scroll-progress: 0%; }
.site-header::after {
  content:"";
  position:absolute;
  left:0;
  bottom:-1px;
  width:var(--scroll-progress);
  height:1px;
  background:linear-gradient(90deg,var(--fuchsia),var(--purple),rgba(255,255,255,.18));
  box-shadow:0 0 20px rgba(255,43,214,.25);
  opacity:.9;
}
.site-header.is-scrolled { background: rgba(2,2,4,.76); backdrop-filter: blur(22px); border-color: rgba(255,255,255,.07); box-shadow: 0 8px 34px rgba(0,0,0,.18); }
.hero { gap: clamp(40px, 4.8vw, 88px); }
.hero__copy { max-width: 800px; }
h1 {
  max-width: 9.1ch;
  letter-spacing: -.078em;
  text-wrap: balance;
}
.hero__lead { max-width: 60ch; color:#a6a1ad; }
.hero__micro { margin-top: 30px; gap: 18px; color:#827c89; }
.hero__proof {
  margin-top: 34px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
}
.hero__proof article {
  position:relative;
  min-height:132px;
  padding:18px 18px 20px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  background:linear-gradient(180deg, rgba(12,11,16,.76), rgba(8,8,11,.9));
  box-shadow: inset 0 1px rgba(255,255,255,.05), 0 18px 44px rgba(0,0,0,.22);
  overflow:hidden;
}
.hero__proof article::before {
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 14% 18%, rgba(255,43,214,.18), transparent 40%), linear-gradient(130deg, rgba(255,255,255,.05), transparent 45%);
  pointer-events:none;
}
.hero__proof strong, .hero__proof span { position:relative; display:block; }
.hero__proof strong { font-size:12px; letter-spacing:.15em; color:#f5f2f7; margin-bottom:12px; }
.hero__proof span { color:#827c87; line-height:1.65; font-size:13px; max-width:28ch; }
.hero__visual { min-height: 690px; }
.core-stage { width:min(700px, 100%); aspect-ratio: 1.04; }
.core-stage::before { inset: 11%; border:1px solid rgba(255,255,255,.05); background: radial-gradient(circle, rgba(255,255,255,.02), transparent 63%); box-shadow: inset 0 0 110px rgba(255,255,255,.016); }
.core-stage::after {
  content:"";
  position:absolute;
  inset: 22% 16%;
  border-radius: 50%;
  border:1px dashed rgba(255,255,255,.035);
  transform: rotate(-10deg);
  opacity:.9;
}
.core-grid {
  position:absolute;
  inset:8% 6%;
  border-radius:44px;
  background:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px) 0 0/100% 20%,
    linear-gradient(90deg, rgba(255,255,255,.024) 1px, transparent 1px) 0 0/14% 100%;
  mask: radial-gradient(circle at 50% 50%, rgba(0,0,0,.85) 0%, rgba(0,0,0,.9) 44%, transparent 78%);
  opacity:.42;
  pointer-events:none;
}
.core-glow { position:absolute; border-radius:50%; filter: blur(28px); opacity:.52; }
.core-glow--a { width:320px; aspect-ratio:1; left:10%; top:52%; background: radial-gradient(circle, rgba(255,43,214,.25), transparent 70%); }
.core-glow--b { width:280px; aspect-ratio:1; right:16%; top:14%; background: radial-gradient(circle, rgba(125,76,255,.22), transparent 72%); }
.core-beam {
  position:absolute;
  border-radius:999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border:1px solid rgba(255,255,255,.06);
  background: linear-gradient(120deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  box-shadow: inset 0 1px rgba(255,255,255,.04);
}
.core-beam--a { left: 6%; top: 57%; width: 40%; height: 14%; transform: rotate(-11deg); }
.core-beam--b { right: 7%; top: 13%; width: 26%; height: 44%; transform: rotate(3deg); }
.core-halo { position:absolute; inset:auto; border-radius:50%; border:1px solid rgba(255,255,255,.04); }
.core-halo--a { width:78%; aspect-ratio:1; left:10%; top:11%; }
.core-halo--b { width:56%; aspect-ratio:1; left:22%; top:22%; border-color: rgba(155,92,255,.08); }
.orbit { border-color: rgba(255,255,255,.06); }
.orbit i { width:6px; height:6px; box-shadow:0 0 26px var(--fuchsia); }
.duo-core { width: 54%; aspect-ratio: .86; transform: translate3d(-50%,-50%,0) rotateX(10deg) rotateY(-15deg); }
.duo-core__plane {
  border-radius: 38px;
  clip-path: polygon(14% 0, 86% 0, 100% 14%, 100% 86%, 86% 100%, 14% 100%, 0 86%, 0 14%);
  background: linear-gradient(150deg, rgba(255,255,255,.07), rgba(255,255,255,.016) 48%, rgba(255,255,255,.025));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.plane--back { transform: translate3d(90px,-52px,-86px) rotateZ(7deg) scale(1.08); opacity:.34; border-color: rgba(255,43,214,.18); background: linear-gradient(145deg, rgba(255,43,214,.09), rgba(255,255,255,.015)); }
.plane--mid { transform: translate3d(38px,-16px,-34px) rotateZ(4deg) scale(1.03); opacity:.58; border-color: rgba(125,76,255,.2); background: linear-gradient(145deg, rgba(125,76,255,.1), rgba(255,255,255,.02)); }
.plane--front {
  padding: 24px 26px 22px;
  display:grid;
  grid-template-rows: auto 1fr auto auto;
  box-shadow: 0 34px 84px rgba(0,0,0,.34);
  border-color: rgba(255,255,255,.12);
}
.plane--front::before {
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(128deg, rgba(255,255,255,.14), rgba(255,255,255,.015) 36%, transparent 58%),
    radial-gradient(circle at 30% 12%, rgba(255,43,214,.1), transparent 28%),
    radial-gradient(circle at 78% 72%, rgba(125,76,255,.09), transparent 30%);
  pointer-events:none;
}
.core-badge {
  position:relative;
  justify-self:start;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(8,8,12,.45);
  color:#c9bfd0;
  font-size:9px;
  font-weight:700;
  letter-spacing:.22em;
}
.core-mark { position:relative; align-self:center; font-size:6.8rem; font-weight:760; letter-spacing:-.08em; color:rgba(255,255,255,.08); text-shadow:0 0 46px rgba(255,255,255,.05); }
.core-pulse { position:relative; display:flex; align-items:flex-end; gap:10px; height:38px; margin: 0 0 16px; }
.core-pulse span { flex:1; border-radius:999px; background: linear-gradient(180deg, rgba(255,43,214,.95), rgba(125,76,255,.24)); box-shadow: 0 0 24px rgba(255,43,214,.18); animation: pulseBar 2.8s ease-in-out infinite; transform-origin: bottom center; }
.core-pulse span:nth-child(1) { height:32%; animation-delay:-.4s; }
.core-pulse span:nth-child(2) { height:72%; animation-delay:-.8s; }
.core-pulse span:nth-child(3) { height:48%; animation-delay:-1.2s; }
.core-pulse span:nth-child(4) { height:88%; animation-delay:-1.6s; }
@keyframes pulseBar { 0%,100%{ transform:scaleY(.94); opacity:.72; } 50%{ transform:scaleY(1.08); opacity:1; } }
.core-data { position:relative; gap:9px; }
.core-data span { color:#aaa4af; letter-spacing:.18em; font-size:10px; }
.core-data span::before { background: linear-gradient(90deg, var(--fuchsia), var(--purple)); width:18px; }
.core-metrics {
  position:relative;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin-top:18px;
}
.core-metrics div {
  padding:12px 12px 10px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.07);
  background: rgba(8,8,11,.42);
}
.core-metrics small { display:block; color:#726b77; font-size:8px; letter-spacing:.22em; margin-bottom:8px; }
.core-metrics strong { color:#f2edf5; font-size:13px; letter-spacing:.16em; }
.signal { min-width: 170px; padding: 13px 16px; border-radius: 999px; color:#9b93a6; background: rgba(8,8,12,.72); border-color: rgba(255,255,255,.085); box-shadow: 0 20px 44px rgba(0,0,0,.26); }
.signal span { font-size:9px; font-weight:700; letter-spacing:.22em; white-space:nowrap; }
.signal--a { right:1%; top:23%; }
.signal--b { left:-1%; top:54%; }
.signal--c { right:8%; bottom:8%; }
.visual-caption { right:0; bottom:-1%; font-size:8px; color:#615b68; }
.service-card { border-radius: 28px; isolation:isolate; will-change:transform; }
.service-card::after {
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(220px circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,.08), transparent 42%);
  opacity:0;
  transition: opacity .28s ease;
  z-index:-1;
}
.service-card:hover { transform: translateY(-7px); box-shadow: 0 18px 40px rgba(0,0,0,.2); }
.service-card:hover::after { opacity:1; }
.operation-console { background: linear-gradient(180deg, #09090d, #08080b); }
.console__panel { transition: opacity .18s ease, transform .18s ease; }
.console__panel.is-switching { opacity:.5; transform: translateY(8px); }
.console-item { transition: background .25s ease, transform .25s ease, box-shadow .25s ease; }
.console-item:hover { transform: translateY(-2px); }
.console-item.is-active { box-shadow: inset 0 -1px var(--fuchsia), inset 0 0 0 1px rgba(255,255,255,.03); }
.whatsapp-float { box-shadow:0 18px 60px rgba(0,0,0,.46), 0 0 38px rgba(255,43,214,.11); }
@media (max-width: 1180px) {
  .hero__proof { grid-template-columns: 1fr; max-width: 580px; }
  .hero__visual { min-height: 620px; }
}
@media (max-width: 820px) {
  h1 { max-width: 10ch; }
  .hero__proof article { min-height: 0; }
  .hero__visual { min-height: 450px; }
  .signal { min-width: 126px; padding:11px 12px; }
  .signal span { letter-spacing:.14em; }
  .core-beam--a { width:48%; }
  .core-beam--b { width:28%; }
}
@media (max-width: 520px) {
  .hero__proof { margin-top:26px; }
  .hero__proof strong { font-size:11px; }
  .hero__proof span { font-size:12px; }
  .duo-core { width:66%; }
  .core-mark { font-size:5.6rem; }
  .core-metrics { grid-template-columns:1fr; }
  .signal { min-width:0; width:auto; max-width:52%; }
  .signal span { white-space:normal; line-height:1.45; }
}


/* === DUODATA V4 Globe hero === */
.globe-stage { --spot-x: 50%; --spot-y: 50%; }
.globe-stage, .network-globe, .network-globe__sphere { transform-style: preserve-3d; }
.globe-aura { position:absolute; border-radius:50%; filter: blur(38px); pointer-events:none; }
.globe-aura--a { width:360px; aspect-ratio:1; left:8%; bottom:10%; background: radial-gradient(circle, rgba(255,43,214,.18), transparent 70%); opacity:.72; }
.globe-aura--b { width:320px; aspect-ratio:1; right:10%; top:7%; background: radial-gradient(circle, rgba(125,76,255,.2), transparent 74%); opacity:.66; }
.globe-grid { position:absolute; inset:8%; border-radius:50%; background:
  linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px) 0 0/100% 11%,
  linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px) 0 0/11% 100%;
  mask: radial-gradient(circle at 50% 50%, rgba(0,0,0,.9) 0 58%, transparent 77%);
  opacity:.34; pointer-events:none; }
.globe-field { position:absolute; border-radius:50%; border:1px solid rgba(255,255,255,.05); }
.globe-field--1 { inset:7%; }
.globe-field--2 { inset:17%; border-color:rgba(255,43,214,.05); }
.globe-field--3 { inset:28%; border-color:rgba(125,76,255,.06); }
.network-globe { position:absolute; width:min(560px, 84%); aspect-ratio:1; left:50%; top:50%; transform:translate3d(-50%,-50%,0); animation: globeFloat 9s ease-in-out infinite; will-change: transform; }
@keyframes globeFloat { 0%,100%{ transform:translate3d(-50%,-50%,0) } 50%{ transform:translate3d(-50%,-53%,0) } }
.network-globe__sphere {
  position:relative; width:100%; height:100%; border-radius:50%; overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(255,255,255,.14), transparent 20%),
    radial-gradient(circle at 28% 34%, rgba(255,43,214,.17), transparent 24%),
    radial-gradient(circle at 70% 66%, rgba(125,76,255,.17), transparent 26%),
    radial-gradient(circle at 50% 50%, rgba(8,8,15,.2), rgba(6,6,10,.78) 58%, rgba(3,3,6,.96) 100%);
  box-shadow: inset 0 0 120px rgba(255,255,255,.028), inset 0 -40px 100px rgba(0,0,0,.45), 0 30px 110px rgba(0,0,0,.34), 0 0 90px rgba(255,43,214,.06);
}
.network-globe__sphere::before { content:""; position:absolute; inset:5%; border-radius:50%; border:1px solid rgba(255,255,255,.05); }
.network-globe__sphere::after { content:""; position:absolute; inset:0; border-radius:50%; background: radial-gradient(circle at 50% 115%, rgba(255,43,214,.12), transparent 36%); pointer-events:none; }
.globe-shine { position:absolute; inset:0; border-radius:50%; background: linear-gradient(125deg, rgba(255,255,255,.14) 0%, rgba(255,255,255,.03) 16%, transparent 36%), radial-gradient(circle at 20% 25%, rgba(255,255,255,.12), transparent 16%); mix-blend-mode:screen; pointer-events:none; }
.globe-meridian, .globe-parallel, .globe-equator, .energy-route {
  --route-duration: 4.8s;
  --route-color: var(--fuchsia);
  --route-glow: rgba(255,43,214,.48);
  --route-ring: rgba(255,255,255,.04);
  position:absolute;
  left:50%;
  top:50%;
  border-radius:50%;
  pointer-events:none;
  border:1px solid var(--route-ring);
  opacity:.92;
  will-change:transform;
  animation: routeRotate var(--route-duration) linear infinite;
}
.energy-route::before {
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:inherit;
  padding:1px;
  background: conic-gradient(from 245deg, transparent 0deg 238deg, color-mix(in srgb, var(--route-color) 85%, white) 266deg, color-mix(in srgb, var(--route-color) 35%, transparent) 306deg, transparent 342deg 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter: drop-shadow(0 0 10px var(--route-glow));
  opacity:.88;
}
.energy-route::after {
  content:"";
  position:absolute;
  left:50%;
  top:0;
  width:9px;
  height:9px;
  border-radius:50%;
  transform: translate(-50%, -50%);
  background: color-mix(in srgb, var(--route-color) 72%, white);
  box-shadow: 0 0 10px color-mix(in srgb, var(--route-color) 85%, white), 0 0 24px var(--route-glow);
}
.energy-route.r1 { width:64%; height:28%; top:38%; left:44%; --base-rotate:-18deg; --route-duration:4.8s; }
.energy-route.r2 { width:56%; height:22%; top:56%; left:58%; --base-rotate:22deg; --route-duration:5.2s; }
.energy-route.r3 { width:40%; height:16%; top:52%; left:33%; --base-rotate:58deg; --route-duration:4.2s; }
.energy-route.r4 { width:48%; height:18%; top:68%; left:56%; --base-rotate:-36deg; --route-duration:5.6s; --route-color: var(--purple); --route-glow: rgba(125,76,255,.42); }
@keyframes routeRotate {
  from { transform:translate(-50%, -50%) rotate(var(--base-rotate)); }
  to { transform:translate(-50%, -50%) rotate(calc(var(--base-rotate) + 360deg)); }
}
.data-node { position:absolute; width:10px; height:10px; border-radius:50%; background:#ffd8ff; box-shadow:0 0 0 4px rgba(255,43,214,.08), 0 0 18px rgba(255,43,214,.7); z-index:2; animation: nodePulse 3s ease-in-out infinite; }
.data-node::after { content:""; position:absolute; inset:-7px; border-radius:50%; border:1px solid rgba(255,255,255,.08); opacity:.45; }
.data-node.n1 { left:24%; top:28%; animation-delay:-.2s; }
.data-node.n2 { left:43%; top:20%; animation-delay:-.8s; }
.data-node.n3 { left:66%; top:28%; animation-delay:-1.2s; }
.data-node.n4 { left:77%; top:44%; animation-delay:-.6s; }
.data-node.n5 { left:61%; top:66%; animation-delay:-1.5s; }
.data-node.n6 { left:40%; top:74%; animation-delay:-.9s; }
.data-node.n7 { left:22%; top:58%; animation-delay:-1.8s; }
.data-node.n8 { left:52%; top:47%; animation-delay:-.4s; }
@keyframes nodePulse { 0%,100%{ transform:scale(.92); opacity:.8; } 50%{ transform:scale(1.15); opacity:1; } }
.signal { min-width: 188px; }
.signal--a { right:1%; top:20%; }
.signal--b { left:-2%; top:58%; }
.signal--c { right:14%; bottom:10%; }
.visual-caption { right:2%; bottom:2%; }
@media (max-width: 1180px) { .network-globe { width:min(520px, 88%); } }
@media (max-width: 820px) { .hero__visual { min-height: 430px; } .network-globe { width:min(420px, 96%); } .signal { min-width: 140px; } .signal span { letter-spacing:.14em; } }
@media (max-width: 520px) { .hero__visual { min-height: 340px; } .network-globe { width:min(330px, 100%); } .signal { max-width:46%; min-width:0; } .data-node { width:8px; height:8px; } }

@media (max-width: 820px) {
  .globe-aura { filter: blur(28px); opacity:.56; }
  .globe-grid { opacity:.24; }
  .energy-route::before { opacity:.72; }
}
@media (max-width: 520px) {
  .globe-aura { filter: blur(22px); }
  .globe-field--1, .globe-field--2, .globe-field--3 { opacity:.75; }
  .energy-route { border-color: rgba(255,255,255,.03); }
  .energy-route::after { width:8px; height:8px; }
}
@media (prefers-reduced-motion: reduce) {
  .energy-route, .network-globe, .data-node { animation: none !important; }
}


/* === DUODATA V4.2 Static globe rings + moving lights === */
.globe-meridian, .globe-parallel, .globe-equator {
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
  border-radius:50%;
  pointer-events:none;
  animation:none !important;
}
.energy-route {
  --route-duration: 5.2s;
  --route-color: var(--fuchsia);
  --route-glow: rgba(255,43,214,.34);
  --base-rotate: 0deg;
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%) rotate(var(--base-rotate));
  border-radius:50%;
  pointer-events:none;
  border:1px solid rgba(255,255,255,.045);
  box-shadow: inset 0 0 26px rgba(255,255,255,.015), 0 0 20px rgba(255,43,214,.04);
  opacity:.95;
  animation:none !important;
  overflow:visible;
}
.energy-route::before,
.energy-route::after { content:none !important; }
.route-orbiter {
  position:absolute;
  inset:-1px;
  border-radius:inherit;
  will-change: transform;
  animation: orbitDot var(--route-duration) linear infinite;
}
.route-orbiter::after {
  content:"";
  position:absolute;
  left:50%;
  top:0;
  width:10px;
  height:10px;
  transform:translate(-50%, -50%);
  border-radius:50%;
  background: color-mix(in srgb, var(--route-color) 72%, white);
  box-shadow: 0 0 12px color-mix(in srgb, var(--route-color) 90%, white), 0 0 28px var(--route-glow);
}
@keyframes orbitDot { from { transform:rotate(0deg); } to { transform:rotate(360deg); } }
.energy-route.r1 { width:94%; height:36%; --base-rotate:-9deg; --route-duration:5.6s; }
.energy-route.r2 { width:74%; height:92%; --base-rotate:18deg; --route-duration:6.1s; border-color: rgba(255,255,255,.04); }
.energy-route.r3 { width:56%; height:94%; --base-rotate:66deg; --route-duration:4.9s; border-color: rgba(255,255,255,.038); }
.energy-route.r4 { width:92%; height:56%; --base-rotate:-30deg; --route-duration:5.3s; --route-color: var(--purple); --route-glow: rgba(125,76,255,.32); border-color: rgba(255,255,255,.04); }
@media (max-width: 820px) {
  .energy-route { opacity:.88; }
  .route-orbiter::after { width:9px; height:9px; }
}
@media (max-width: 520px) {
  .energy-route.r1 { width:96%; height:38%; }
  .energy-route.r2 { width:76%; height:90%; }
  .energy-route.r3 { width:58%; height:92%; }
  .energy-route.r4 { width:94%; height:58%; }
  .route-orbiter::after { width:8px; height:8px; }
}
@media (prefers-reduced-motion: reduce) {
  .route-orbiter { animation: none !important; }
}


/* === DUODATA V5 - Real contact form === */
.form-trap {
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
  clip:rect(0 0 0 0) !important;
  clip-path:inset(50%) !important;
  white-space:nowrap !important;
  opacity:0 !important;
  pointer-events:none !important;
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus { color:#fff; }
.lead-form input:focus-visible,
.lead-form select:focus-visible,
.lead-form textarea:focus-visible { outline:none; }
.lead-form label:focus-within { border-bottom-color:rgba(255,43,214,.34); }
.form-status {
  display:none;
  margin-top:18px;
  padding:15px 18px;
  border:1px solid transparent;
  border-radius:14px;
  line-height:1.6;
  font-size:13px;
}
.form-status.show { display:block; }
.form-status.is-success {
  color:#ded8e2;
  border-color:rgba(255,43,214,.22);
  background:linear-gradient(135deg,rgba(255,43,214,.06),rgba(125,76,255,.035));
  box-shadow:inset 3px 0 0 rgba(255,43,214,.72);
}
.form-status.is-error {
  color:#e1d9e4;
  border-color:rgba(255,114,151,.22);
  background:rgba(255,70,120,.045);
  box-shadow:inset 3px 0 0 rgba(255,88,138,.68);
}
#leadSubmit:disabled { cursor:wait; opacity:.78; }
.button__loader {
  display:none;
  width:15px;
  height:15px;
  margin-left:10px;
  border-radius:50%;
  border:1.5px solid rgba(255,255,255,.36);
  border-top-color:#fff;
  animation:formSpin .7s linear infinite;
}
#leadSubmit.is-loading .button__loader { display:inline-block; }
@keyframes formSpin { to { transform:rotate(360deg); } }

.portal-entry { color:#d7d0dc; }
.portal-entry::before { content:""; display:inline-block; width:6px; height:6px; border-radius:50%; margin-right:8px; background:var(--fuchsia); box-shadow:0 0 12px rgba(255,43,214,.7); vertical-align:1px; }
.footer a { color:#8d8692; transition:color .2s ease; }
.footer a:hover { color:#fff; }
