:root {
  --ink: #eff6ff;
  --muted: #9eb0c9;
  --bg: #06101d;
  --surface: #0c1a2b;
  --surface-2: #10243a;
  --line: rgba(158, 176, 201, .16);
  --cyan: #1cc8dd;
  --blue: #3478f6;
  --lime: #8de25d;
  --max: 1180px;
  --shadow: 0 24px 70px rgba(0,0,0,.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--bg); font: 16px/1.65 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
body::before { content: ""; position: fixed; inset: 0 0 auto; height: 700px; pointer-events: none; background: radial-gradient(circle at 75% 0%, rgba(28,200,221,.13), transparent 35%), radial-gradient(circle at 20% 10%, rgba(52,120,246,.13), transparent 30%); z-index: -1; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; left: 1rem; top: -100px; z-index: 100; background: var(--ink); color: var(--bg); padding: .65rem 1rem; border-radius: .5rem; }
.skip-link:focus { top: 1rem; }

.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid transparent; background: rgba(6,16,29,.78); backdrop-filter: blur(18px); transition: .2s; }
.site-header.scrolled { border-color: var(--line); }
.nav-wrap { min-height: 80px; display: flex; align-items: center; gap: 2rem; }
.brand { display: flex; align-items: center; margin-right: auto; }
.brand img { width: 142px; height: 48px; object-fit: contain; object-position: left center; }
.primary-nav { display: flex; align-items: center; gap: .35rem; }
.nav-link, .more-toggle { color: var(--muted); padding: .6rem .8rem; border: 0; background: none; cursor: pointer; }
.nav-link:hover, .nav-link.active, .more-toggle:hover { color: var(--ink); }
.more { position: relative; }
.more-toggle::after { content: "⌄"; margin-left: .4rem; }
.dropdown { position: absolute; right: 0; top: calc(100% + 14px); min-width: 220px; padding: .55rem; background: #10243a; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: .18s; }
.dropdown a { display: block; padding: .7rem .8rem; border-radius: 9px; color: var(--muted); }
.dropdown a:hover { color: white; background: rgba(255,255,255,.06); }
.more:hover .dropdown, .more.open .dropdown { opacity: 1; visibility: visible; transform: none; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); color: white; cursor: pointer; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; min-height: 48px; padding: .75rem 1.2rem; border: 1px solid transparent; border-radius: 10px; color: #031019; background: linear-gradient(135deg, var(--cyan), #75e8d1); font-weight: 750; cursor: pointer; transition: transform .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(28,200,221,.18); }
.button.secondary { color: var(--ink); background: transparent; border-color: var(--line); }
.button.small { min-height: 40px; padding: .5rem 1rem; }

.hero { padding: 100px 0 80px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr); gap: 70px; align-items: center; }
.eyebrow { display: inline-flex; gap: .5rem; align-items: center; color: #8ceee4; letter-spacing: .13em; text-transform: uppercase; font-size: .76rem; font-weight: 800; }
.eyebrow::before { content: ""; width: 24px; height: 1px; background: currentColor; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -.035em; margin: 0 0 1rem; }
h1 { font-size: clamp(3rem, 6.5vw, 6rem); max-width: 900px; }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
h3 { font-size: 1.25rem; }
.gradient-text { color: transparent; background: linear-gradient(100deg, #fff 10%, var(--cyan) 58%, var(--lime)); background-clip: text; }
.lead { color: #c6d5e7; font-size: clamp(1.08rem, 2vw, 1.3rem); max-width: 720px; }
.muted { color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero-panel { position: relative; padding: 28px; background: linear-gradient(145deg, rgba(16,36,58,.95), rgba(8,24,39,.8)); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }
.hero-panel::before { content: ""; position: absolute; width: 180px; height: 180px; right: -40px; top: -50px; border-radius: 50%; background: rgba(28,200,221,.12); filter: blur(2px); }
.terminal-top { display: flex; gap: 7px; margin-bottom: 25px; }
.terminal-top i { width: 9px; height: 9px; border-radius: 50%; background: #2a4563; }
.signal-list { display: grid; gap: 13px; position: relative; }
.signal { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 14px 16px; background: rgba(255,255,255,.035); border: 1px solid var(--line); border-radius: 12px; }
.signal span { color: var(--muted); font-size: .9rem; }
.signal strong { color: #8ceee4; font-size: .82rem; }
.hero-art { position: relative; min-height: 520px; overflow: hidden; border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--shadow); background: var(--surface); }
.hero-art::after, .visual-banner::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(6,16,29,.3), transparent 45%), linear-gradient(0deg, rgba(6,16,29,.35), transparent 45%); }
.hero-art img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; object-position: 65% center; }
.home-hero { position: relative; min-height: 760px; display: flex; align-items: center; isolation: isolate; }
.home-hero .container { position: relative; z-index: 2; }
.home-hero .hero-grid { display: block; }
.home-hero .hero-grid > div { position: relative; z-index: 2; width: min(680px, 62%); padding: 45px 0; }
.home-hero .hero-art { position: absolute; z-index: -1; top: 0; bottom: 0; left: 50%; width: 100vw; min-height: 100%; margin: 0; border: 0; border-radius: 0; box-shadow: none; transform: translateX(-50%); }
.home-hero .hero-art::after { background: linear-gradient(90deg, rgba(6,16,29,.98) 0%, rgba(6,16,29,.85) 35%, rgba(6,16,29,.25) 72%, rgba(6,16,29,.08) 100%), linear-gradient(0deg, rgba(6,16,29,.92), transparent 50%, rgba(6,16,29,.25)); }
.home-hero .hero-art img { min-height: 100%; object-position: 60% center; transform: scale(1.04); }
.home-hero .trust-row { position: relative; z-index: 2; background: rgba(6,16,29,.48); backdrop-filter: blur(10px); }
.trust-row { display: grid; grid-template-columns: repeat(3,1fr); border-block: 1px solid var(--line); margin-top: 65px; }
.trust-item { padding: 24px; text-align: center; border-right: 1px solid var(--line); }
.trust-item:last-child { border: 0; }
.trust-item strong { display: block; color: white; }
.trust-item span { color: var(--muted); font-size: .88rem; }

.section { padding: 90px 0; }
.section.alt { background: rgba(11,28,46,.45); border-block: 1px solid var(--line); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 40px; }
.section-head p { max-width: 590px; margin: 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.card { position: relative; padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(145deg, rgba(16,36,58,.77), rgba(8,24,39,.7)); }
.card:hover { border-color: rgba(28,200,221,.35); }
.icon { display: inline-grid; place-items: center; width: 44px; height: 44px; margin-bottom: 24px; border: 1px solid rgba(28,200,221,.25); border-radius: 11px; color: var(--cyan); background: rgba(28,200,221,.08); font-size: 1.2rem; font-weight: 800; }
.card p:last-child { margin-bottom: 0; }
.card-link { display: inline-block; margin-top: 1rem; color: #8ceee4; font-weight: 700; }
.check-list { padding: 0; margin: 1.4rem 0 0; list-style: none; }
.check-list li { position: relative; padding-left: 1.55rem; margin: .65rem 0; color: var(--muted); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--cyan); font-weight: 800; }

.page-hero { position: relative; min-height: 640px; padding: 100px 0 80px; display: flex; align-items: center; overflow: hidden; isolation: isolate; text-align: left; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { position: relative; z-index: 2; max-width: 760px; margin: .5rem 0 1.2rem; font-size: clamp(2.8rem, 6vw, 5.2rem); }
.page-hero > .container > .eyebrow, .page-hero > .container > .lead { position: relative; z-index: 2; }
.page-hero p { max-width: 680px; margin-inline: 0; }
.visual-banner { position: absolute; z-index: -1; top: 50%; left: 50%; width: 100vw; height: 640px; margin: 0; overflow: hidden; border: 0; border-radius: 0; box-shadow: none; background: var(--surface); transform: translate(-50%, -50%); }
.visual-banner img { width: 100%; height: 100%; object-fit: cover; }
.visual-banner::after { background: linear-gradient(90deg, rgba(6,16,29,.98) 0%, rgba(6,16,29,.84) 36%, rgba(6,16,29,.2) 72%, rgba(6,16,29,.08)), linear-gradient(0deg, rgba(6,16,29,.82), transparent 50%, rgba(6,16,29,.24)); }
.visual-banner figcaption { display: none; }
.product-number { color: var(--cyan); font: 800 .76rem/1 monospace; letter-spacing: .12em; }
.product-card { display: flex; flex-direction: column; }
.product-card .button { margin-top: auto; align-self: flex-start; }
.process { counter-reset: steps; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.process-5 { grid-template-columns: repeat(5, 1fr); }
.step { counter-increment: steps; padding: 28px; border-top: 1px solid var(--cyan); background: linear-gradient(180deg, rgba(28,200,221,.06), transparent); }
.step::before { content: "0" counter(steps); display: block; margin-bottom: 2.2rem; color: var(--cyan); font: 700 .85rem monospace; }
.team-card { display: grid; grid-template-columns: 190px 1fr; overflow: hidden; padding: 0; }
.team-card img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; }
.team-copy { padding: 30px; }
.team-links { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.2rem; }
.team-links a { color: #8ceee4; font-size: .9rem; }
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { margin-top: 3rem; font-size: 2rem; }
.prose h3 { margin-top: 2rem; }
.prose p, .prose li { color: var(--muted); }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 24px; align-items: start; }
.contact-details a { color: #8ceee4; }
.form { display: grid; gap: 17px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.form label { display: grid; gap: 7px; font-size: .9rem; color: #c7d5e6; }
.form input, .form textarea, .form select { width: 100%; color: white; background: rgba(2,10,18,.5); border: 1px solid var(--line); border-radius: 10px; padding: .85rem 1rem; outline: 0; }
.form input:focus, .form textarea:focus, .form select:focus { border-color: var(--cyan); }
.form-status { min-height: 1.5em; color: var(--muted); }
.cta { display: flex; justify-content: space-between; align-items: center; gap: 2rem; padding: 40px; border: 1px solid rgba(28,200,221,.25); border-radius: 22px; background: linear-gradient(105deg, rgba(28,200,221,.11), rgba(52,120,246,.08)); }
.cta h2 { font-size: clamp(1.8rem, 3vw, 3rem); margin-bottom: .5rem; }

.site-footer { padding: 60px 0 30px; border-top: 1px solid var(--line); background: #040b14; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, .7fr); gap: 40px; }
.footer-brand img { width: 130px; margin-bottom: 1rem; }
.footer-brand p { max-width: 350px; }
.footer-col strong { display: block; margin-bottom: 1rem; }
.footer-col a { display: block; margin: .45rem 0; color: var(--muted); }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding-top: 35px; margin-top: 35px; border-top: 1px solid var(--line); color: var(--muted); font-size: .85rem; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s, transform .6s; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .nav-toggle { display: grid; place-items: center; }
  .primary-nav { display: none; position: absolute; left: 20px; right: 20px; top: 70px; padding: .8rem; flex-direction: column; align-items: stretch; background: #0c1a2b; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
  .site-header.menu-open .primary-nav { display: flex; }
  .nav-link, .more-toggle { display: block; width: 100%; text-align: left; padding: .8rem; }
  .dropdown { position: static; display: none; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(0,0,0,.12); }
  .more.open .dropdown { display: block; }
  .nav-cta { display: none; }
  .hero { padding-top: 70px; }
  .hero-grid, .contact-layout { grid-template-columns: 1fr; }
  .hero-panel { max-width: 620px; }
  .hero-art { min-height: 400px; max-width: 680px; }
  .hero-art img { min-height: 400px; }
  .home-hero { min-height: 720px; }
  .home-hero .hero-grid > div { width: min(620px, 78%); }
  .home-hero .hero-art { max-width: none; min-height: 100%; }
  .home-hero .hero-art img { min-height: 100%; object-position: 67% center; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .process-5 { grid-template-columns: 1fr 1fr; }
  .team-card { grid-template-columns: 150px 1fr; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav-wrap { min-height: 70px; }
  .brand img { width: 120px; }
  h1 { font-size: 2.85rem; }
  .hero, .section { padding: 65px 0; }
  .hero-grid { gap: 40px; }
  .hero-art, .hero-art img { min-height: 320px; }
  .home-hero { min-height: 760px; padding-top: 85px; }
  .home-hero .hero-grid > div { width: 100%; padding: 20px 0; }
  .home-hero .hero-art, .home-hero .hero-art img { min-height: 100%; }
  .home-hero .hero-art img { object-position: 66% center; opacity: .72; }
  .home-hero .hero-art::after { background: linear-gradient(90deg, rgba(6,16,29,.96), rgba(6,16,29,.5)), linear-gradient(0deg, rgba(6,16,29,.96), rgba(6,16,29,.25) 55%, rgba(6,16,29,.55)); }
  .page-hero { min-height: 590px; padding: 85px 0 65px; }
  .page-hero h1, .page-hero p { max-width: 100%; }
  .visual-banner { top: 50%; height: 590px; margin: 0; border-radius: 0; }
  .visual-banner img { object-position: 64% center; opacity: .78; }
  .visual-banner::after { background: linear-gradient(90deg, rgba(6,16,29,.96), rgba(6,16,29,.48)), linear-gradient(0deg, rgba(6,16,29,.92), rgba(6,16,29,.2) 55%, rgba(6,16,29,.48)); }
  .trust-row, .grid-3, .grid-2, .process, .form-row { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .section-head, .cta, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .team-card { grid-template-columns: 1fr; }
  .team-card img { height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

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