
:root{
  --bg:#000;
  --panel:#0d0d0d;
  --panel2:#101010;
  --border:rgba(255,255,255,.10);
  --border2:rgba(255,255,255,.16);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.70);
  --muted2:rgba(255,255,255,.55);
  --shadow: rgba(0,0,0,.55);
  --radius:18px;
  --radius2:26px;
  --wrap:1120px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --sans: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
*{box-sizing:border-box}
html,body{height:100%}
body.se{margin:0; background:var(--bg); color:var(--text); font-family:var(--sans); overflow-x:hidden;}
a{color:inherit; text-decoration:none}
img{max-width:100%; height:auto; display:block}
.wrap{width:100%; max-width:var(--wrap); margin:0 auto; padding:0 18px}
.main{padding-top:72px}
.topbar{position:fixed; top:0; left:0; right:0; z-index:40; display:flex; align-items:center; justify-content:space-between; padding:12px 14px; background:rgba(0,0,0,.82); border-bottom:1px solid rgba(255,255,255,.08); backdrop-filter: blur(10px);}
.brand{display:flex; align-items:center; gap:12px; min-width:0}
.brand-mark{width:34px; height:34px; object-fit:contain; filter: drop-shadow(0 8px 18px rgba(0,0,0,.55));}
.brand-text{line-height:1.05; min-width:0}
.brand-title{font-weight:600; letter-spacing:.20em; text-transform:uppercase; font-size:12px; white-space:nowrap}
.brand-sub{font-weight:400; letter-spacing:.18em; text-transform:uppercase; font-size:10px; color:var(--muted2); white-space:nowrap}
.menu-btn{display:flex; align-items:center; gap:10px; padding:10px 12px; border-radius:999px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.10); color:var(--text); cursor:pointer; transition: transform .18s ease, background .18s ease, border-color .18s ease;}
.menu-btn:hover{ transform: translateY(-1px); background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.16);}
.menu-label{font-size:12px; letter-spacing:.16em; text-transform:uppercase}
.menu-icon{width:22px; height:14px; position:relative; display:inline-block}
.menu-icon span{position:absolute; left:0; right:0; height:2px; border-radius:99px; background:rgba(255,255,255,.84); transition: transform .2s ease, top .2s ease, opacity .2s ease;}
.menu-icon span:nth-child(1){top:0}
.menu-icon span:nth-child(2){top:6px}
.menu-icon span:nth-child(3){top:12px}
.menu-btn.is-open .menu-icon span:nth-child(1){top:6px; transform:rotate(45deg)}
.menu-btn.is-open .menu-icon span:nth-child(2){opacity:0}
.menu-btn.is-open .menu-icon span:nth-child(3){top:6px; transform:rotate(-45deg)}
.splash{position:fixed; inset:0; z-index:80; background:#000; display:flex; align-items:center; justify-content:center; transition: opacity .45s ease, visibility .45s ease;}
.splash.is-hidden{opacity:0; visibility:hidden; pointer-events:none}
.splash-inner{ text-align:center; padding:24px; }
.splash-logo{width:78px; margin:0 auto 14px auto; opacity:.95}
.splash-name{display:flex; flex-direction:column; gap:6px}
.splash-line{letter-spacing:.28em; text-transform:uppercase; font-weight:600; font-size:18px;}
.splash-line.sub{font-weight:400; font-size:12px; color:var(--muted2)}
.splash-hint{margin-top:16px; font-family:var(--mono); font-size:12px; color:rgba(255,255,255,.55);}
@media (prefers-reduced-motion: reduce){.splash{transition:none}}
.menu{position:fixed; inset:0; z-index:60; display:none}
.menu.is-open{display:block}
.menu-backdrop{position:absolute; inset:0; background:rgba(0,0,0,.62); backdrop-filter: blur(6px)}
.menu-panel{position:absolute; top:0; right:0; height:100%; width:min(440px, 92vw); background:rgba(8,8,8,.96); border-left:1px solid rgba(255,255,255,.12); box-shadow:-30px 0 80px rgba(0,0,0,.65); transform: translateX(102%); transition: transform .28s ease; padding:16px;}
.menu.is-open .menu-panel{transform: translateX(0)}
.menu-head{display:flex; align-items:center; justify-content:space-between; gap:14px; padding:8px 6px 12px}
.menu-head-left{display:flex; align-items:center; gap:12px; min-width:0}
.menu-logo{width:34px; height:34px; object-fit:contain}
.menu-brand-title{font-weight:600; letter-spacing:.12em; text-transform:uppercase; font-size:12px}
.menu-brand-tag{color:var(--muted2); font-size:12px; margin-top:4px; line-height:1.4}
.menu-close{width:40px; height:40px; border-radius:999px; cursor:pointer; border:1px solid rgba(255,255,255,.12); background:rgba(255,255,255,.06); color:var(--text); font-size:22px; line-height:1;}
.menu-links{display:flex; flex-direction:column; padding:10px 6px}
.menu-link{padding:12px 12px; border-radius:14px; border:1px solid transparent; display:flex; align-items:center; justify-content:space-between; color:rgba(255,255,255,.88); transition: background .18s ease, border-color .18s ease, transform .18s ease; position:relative;}
.menu-link::after{content:""; position:absolute; left:12px; right:12px; bottom:10px; height:1px; background:linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent); opacity:0; transform:scaleX(.72); transition: opacity .18s ease, transform .18s ease;}
.menu-link:hover{ background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.10); transform: translateX(-2px);}
.menu-link:hover::after{opacity:1; transform:scaleX(1)}
.menu-link.cta{margin-top:6px; background:rgba(255,255,255,.10); border-color:rgba(255,255,255,.16);}
.menu-meta{display:flex; flex-wrap:wrap; gap:8px; padding:12px 6px}
.meta-chip{font-size:11px; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.78); border:1px solid rgba(255,255,255,.10); background:rgba(255,255,255,.04); border-radius:999px; padding:8px 10px;}
.section{padding:66px 0}
.section.alt{background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0))}
.section-head{margin-bottom:22px}
.h1{font-size:42px; line-height:1.05; margin:12px 0 0; letter-spacing:-0.02em}
.h2{font-size:26px; margin:0; letter-spacing:.02em}
.h3{font-size:16px; letter-spacing:.10em; text-transform:uppercase; margin:0 0 10px}
.kicker{font-size:12px; letter-spacing:.28em; text-transform:uppercase; color:rgba(255,255,255,.72);}
.lead{font-size:16px; line-height:1.75; color:rgba(255,255,255,.78); margin:16px 0 0; max-width:62ch}
.sublead{font-size:15px; line-height:1.7; color:rgba(255,255,255,.72); margin:10px 0 0; max-width:74ch}
.muted{color:rgba(255,255,255,.70)}
.tiny{font-size:12px; line-height:1.6; color:rgba(255,255,255,.58)}
.note{margin-top:18px; padding:14px 16px; border:1px solid rgba(255,255,255,.10); background:rgba(12,12,12,.6); border-radius:16px; color:rgba(255,255,255,.74); line-height:1.7;}
@media (max-width: 860px){.h1{font-size:34px}.section{padding:54px 0}}
.hero{padding:86px 0 34px}
.hero-grid{display:grid; grid-template-columns: 1.1fr .9fr; gap:26px; align-items:start}
.hero-actions{display:flex; gap:12px; margin-top:18px; flex-wrap:wrap}
.btn{display:inline-flex; align-items:center; justify-content:center; gap:10px; padding:12px 14px; border-radius:999px; cursor:pointer; border:1px solid rgba(255,255,255,.12); background:rgba(255,255,255,.06); color:rgba(255,255,255,.90); font-size:12px; letter-spacing:.18em; text-transform:uppercase; transition: transform .18s ease, background .18s ease, border-color .18s ease; position:relative; overflow:hidden;}
.btn:hover{transform: translateY(-1px); background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.18);}
.btn.primary{background:rgba(255,255,255,.12); border-color:rgba(255,255,255,.22);}
.btn.ghost{background:transparent}
.btn.full{width:100%}
.btn::before{content:""; position:absolute; inset:-40% -60%; background:linear-gradient(90deg, transparent, rgba(255,255,255,.20), transparent); transform:translateX(-60%) rotate(12deg); opacity:0;}
.btn:hover::before{opacity:1; animation: shimmer 1.1s ease}
@keyframes shimmer{0%{transform:translateX(-60%) rotate(12deg)}100%{transform:translateX(60%) rotate(12deg)}}
.hero-metrics{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px; margin-top:18px}
.metric{border:1px solid rgba(255,255,255,.10); background:rgba(12,12,12,.5); border-radius:16px; padding:12px 12px;}
.metric-num{font-weight:600; letter-spacing:.10em; text-transform:uppercase; font-size:12px}
.metric-label{color:rgba(255,255,255,.62); font-size:12px; margin-top:6px; line-height:1.45}
.hero-panel{position:relative}
.pulse-grid{position:absolute; inset:-22px; border-radius:26px; background: radial-gradient(circle at 20% 10%, rgba(255,255,255,.08), transparent 40%), radial-gradient(circle at 80% 60%, rgba(255,255,255,.06), transparent 42%), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(0deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: auto, auto, 28px 28px, 28px 28px; opacity:.22; filter: blur(.2px);}
.hero-card{position:relative; z-index:1; border:1px solid rgba(255,255,255,.12); background:rgba(12,12,12,.72); border-radius:22px; padding:14px; box-shadow: 0 24px 70px rgba(0,0,0,.6); overflow:hidden;}
.hero-card::after{content:""; position:absolute; inset:0; background:linear-gradient(180deg, transparent, rgba(255,255,255,.06), transparent); opacity:.0; animation: scan 5.6s ease-in-out infinite;}
@keyframes scan{0%,100%{transform:translateY(-25%); opacity:.0}20%{opacity:.14}50%{transform:translateY(25%); opacity:.0}}
.hero-card-top{display:flex; align-items:center; gap:8px}
.dot{width:8px; height:8px; border-radius:99px; background:rgba(255,255,255,.22)}
.hero-card-title{margin-left:auto; font-size:11px; letter-spacing:.22em; text-transform:uppercase; color:rgba(255,255,255,.70)}
.hero-card-body{padding:12px 2px 2px}
.status-row{display:flex; justify-content:space-between; gap:12px; padding:8px 6px; border-bottom:1px solid rgba(255,255,255,.06); font-family:var(--mono); font-size:12px; color:rgba(255,255,255,.72)}
.status-row:last-of-type{border-bottom:none}
.ok{color:rgba(255,255,255,.88)}
.bar-wrap{margin:12px 6px 0; height:8px; border-radius:999px; background:rgba(255,255,255,.08); overflow:hidden}
.bar{height:100%; width:60%; background:rgba(255,255,255,.55); border-radius:999px; animation: fill 2.2s ease-in-out infinite}
@keyframes fill{0%,100%{transform:translateX(-30%)}50%{transform:translateX(30%)}}
@media (max-width: 980px){.hero{padding:70px 0 22px}.hero-grid{grid-template-columns:1fr}.hero-metrics{grid-template-columns:1fr}}
.grid{display:grid; gap:14px}
.grid.cards{grid-template-columns: repeat(2, 1fr); gap:14px}
.grid.services{grid-template-columns: repeat(3, 1fr); gap:14px}
.grid.split{grid-template-columns: 1fr 1fr; gap:14px}
@media (max-width: 980px){.grid.cards,.grid.services,.grid.split{grid-template-columns:1fr}}
.card,.service,.panel{border:1px solid rgba(255,255,255,.10); background:rgba(12,12,12,.55); border-radius:18px; padding:16px;}
.card p,.service p,.panel p{color:rgba(255,255,255,.72); line-height:1.7; margin:0 0 12px}
.list{margin:0; padding-left:18px; color:rgba(255,255,255,.70); line-height:1.7}
.list li{margin:6px 0}
.badge{width:34px; height:34px; border-radius:999px; border:1px solid rgba(255,255,255,.14); display:flex; align-items:center; justify-content:center; font-family:var(--mono); font-size:12px; color:rgba(255,255,255,.80); background:rgba(255,255,255,.04); margin-bottom:10px;}
.callout{margin-top:18px; border:1px solid rgba(255,255,255,.12); background:rgba(255,255,255,.05); border-radius:18px; padding:16px;}
.callout-title{font-weight:600; letter-spacing:.10em; text-transform:uppercase; font-size:12px}
.callout-body{margin-top:8px; color:rgba(255,255,255,.72); line-height:1.7}
.timeline{list-style:none; padding:0; margin:0; display:grid; gap:12px}
.timeline li{display:grid; grid-template-columns: 44px 1fr; gap:12px; border:1px solid rgba(255,255,255,.10); background:rgba(12,12,12,.55); border-radius:18px; padding:14px;}
.t-step{width:44px; height:44px; border-radius:14px; border:1px solid rgba(255,255,255,.12); display:flex; align-items:center; justify-content:center; font-family:var(--mono); color:rgba(255,255,255,.82); background:rgba(255,255,255,.04);}
.t-title{font-weight:600; letter-spacing:.08em; text-transform:uppercase; font-size:12px}
.t-text{margin-top:6px; color:rgba(255,255,255,.70); line-height:1.7}
.faq details{border:1px solid rgba(255,255,255,.10); background:rgba(12,12,12,.55); border-radius:18px; padding:14px 14px; margin-bottom:12px;}
.faq summary{cursor:pointer; list-style:none; font-weight:600; letter-spacing:.06em;}
.faq summary::-webkit-details-marker{display:none}
.faq-body{margin-top:10px; color:rgba(255,255,255,.72); line-height:1.7}
.contact-grid{display:grid; grid-template-columns: 1fr 1fr; gap:18px; align-items:start}
@media (max-width: 980px){ .contact-grid{grid-template-columns:1fr} }
.field{margin-bottom:14px}
label{display:block; font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:rgba(255,255,255,.72); margin-bottom:8px}
input,select,textarea{width:100%; padding:12px 12px; border-radius:14px; border:1px solid rgba(255,255,255,.12); background:rgba(0,0,0,.22); color:rgba(255,255,255,.92); font-family:var(--sans); outline:none; transition: border-color .18s ease, background .18s ease;}
textarea{resize:vertical}
input:focus,select:focus,textarea:focus{border-color:rgba(255,255,255,.22); background:rgba(0,0,0,.30)}
.check{display:flex; align-items:flex-start; gap:10px; letter-spacing:normal; text-transform:none; font-size:14px; color:rgba(255,255,255,.78)}
.check input{width:18px; height:18px; margin-top:2px}
.req{opacity:.85}
.footer{padding:26px 0 36px; border-top:1px solid rgba(255,255,255,.08); background:rgba(0,0,0,.88)}
.footer-grid{display:grid; grid-template-columns: 1.2fr 1fr .9fr; gap:14px; align-items:start}
.footer-brand{display:flex; align-items:center; gap:12px}
.footer-logo{width:34px; height:34px}
.footer-title{font-weight:600; letter-spacing:.14em; text-transform:uppercase; font-size:12px}
.footer-sub{color:rgba(255,255,255,.62); font-size:12px; margin-top:4px; line-height:1.45}
.footer-links{display:grid; gap:8px}
.footer-links a{color:rgba(255,255,255,.72); font-size:12px; letter-spacing:.10em; text-transform:uppercase}
.footer-links a:hover{color:rgba(255,255,255,.92)}
.footer-small{color:rgba(255,255,255,.52); font-size:12px; line-height:1.5}
@media (max-width: 980px){.footer-grid{grid-template-columns:1fr}}
.reveal{opacity:0; transform: translateY(10px); filter: blur(0.2px); transition: opacity .55s ease, transform .55s ease}
.reveal.is-in{opacity:1; transform: translateY(0)}
.reveal.stagger-1{transition-delay:.06s}
.reveal.stagger-2{transition-delay:.12s}
.reveal.stagger-3{transition-delay:.18s}
@media (prefers-reduced-motion: reduce){.reveal{opacity:1; transform:none; transition:none}.hero-card::after,.bar,.btn::before{animation:none}}
