
:root {
  --bg: #05080d;
  --bg-soft: #0a1019;
  --panel: rgba(15, 24, 37, 0.82);
  --panel-solid: #0e1724;
  --panel-2: #121e2e;
  --text: #f4f7fb;
  --muted: #a9b5c7;
  --line: rgba(255,255,255,.11);
  --accent: #29a8ff;
  --accent-2: #36d8c7;
  --accent-3: #7ac8ff;
  --danger: #ff746b;
  --success: #54df9c;
  --shadow: 0 24px 80px rgba(0,0,0,.36);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 14% 10%, rgba(41,168,255,.14), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(54,216,199,.09), transparent 24%),
    linear-gradient(180deg, #05080d 0%, #07101a 50%, #05080d 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 36px), var(--max)); margin-inline: auto; }
.site-shell { overflow: hidden; }
.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 9999;
  padding: 10px 14px; background: #fff; color: #000;
  transform: translateY(-160%); border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--accent-3); font-weight: 800; font-size: .78rem;
  letter-spacing: .13em; text-transform: uppercase;
}
.eyebrow::before {
  content: ""; width: 32px; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
h1,h2,h3,h4 { line-height: 1.12; margin: 0 0 16px; letter-spacing: -.025em; }
h1 { font-size: clamp(2.7rem, 7vw, 5.9rem); max-width: 930px; }
h2 { font-size: clamp(2rem, 4vw, 3.7rem); }
h3 { font-size: clamp(1.18rem, 2vw, 1.55rem); }
p { margin: 0 0 18px; color: var(--muted); }
.lead { font-size: clamp(1.05rem, 2vw, 1.32rem); max-width: 790px; }
.text-gradient {
  background: linear-gradient(90deg, #fff 0%, #8dd5ff 55%, #60ead8 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(5,8,13,.78);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}
.header-row { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark {
  width: 47px; height: 47px; border-radius: 50%; overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 0 0 5px rgba(41,168,255,.07), 0 0 25px rgba(41,168,255,.13);
  flex: 0 0 auto;
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-copy strong { font-size: .96rem; letter-spacing: .025em; }
.brand-copy span { color: var(--muted); font-size: .72rem; margin-top: 5px; }
.custom-logo { max-height: 58px; width: auto; }
.nav-wrap { display: flex; align-items: center; gap: 26px; }
.nav-menu, .nav-menu ul { list-style: none; margin: 0; padding: 0; }
.nav-menu { display: flex; align-items: center; gap: 24px; }
.nav-menu a { color: #c8d2df; font-weight: 700; font-size: .91rem; }
.nav-menu a:hover, .nav-menu .current-menu-item > a { color: #fff; }
.header-cta, .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 19px; border-radius: 999px; font-weight: 850;
  border: 1px solid transparent; transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.header-cta, .btn-primary {
  color: #031018;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 32px rgba(41,168,255,.22);
}
.header-cta:hover, .btn:hover { transform: translateY(-2px); }
.btn-secondary {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.05); color: #fff;
}
.mobile-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  border-radius: 12px; background: rgba(255,255,255,.05); color: #fff;
}
.hero { position: relative; padding: clamp(72px, 10vw, 128px) 0 76px; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .23;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.18fr .82fr; gap: clamp(40px, 7vw, 90px); align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { margin-top: 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }
.hero-art { position: relative; min-height: 520px; display: grid; place-items: center; }
.hero-orbit {
  width: min(440px, 90vw); aspect-ratio: 1; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  background:
    radial-gradient(circle, rgba(41,168,255,.14), rgba(0,0,0,0) 58%);
  box-shadow: 0 0 110px rgba(41,168,255,.15), inset 0 0 60px rgba(255,255,255,.035);
  position: relative; display: grid; place-items: center;
}
.hero-orbit::before, .hero-orbit::after {
  content: ""; position: absolute; border-radius: 50%; border: 1px dashed rgba(84,223,156,.23);
}
.hero-orbit::before { inset: -30px; animation: spin 20s linear infinite; }
.hero-orbit::after { inset: 36px; border-color: rgba(41,168,255,.3); animation: spin 14s linear infinite reverse; }
.hero-orbit img {
  width: 78%; height: 78%; object-fit: cover; object-position: center 39%;
  border-radius: 50%; filter: contrast(1.06) saturate(.9);
  border: 1px solid rgba(255,255,255,.15);
}
.status-chip {
  position: absolute; z-index: 3; padding: 11px 14px; border-radius: 13px;
  background: rgba(10,16,25,.92); border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow); font-weight: 800; font-size: .82rem; color: #dce8f5;
}
.status-chip span { color: var(--accent-2); }
.status-one { left: -18px; top: 17%; }
.status-two { right: -25px; bottom: 18%; }
@keyframes spin { to { transform: rotate(360deg); } }
.metrics {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin-top: 54px; position: relative;
}
.metric {
  padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: rgba(255,255,255,.035);
}
.metric strong { display: block; font-size: 1.18rem; color: #fff; }
.metric span { color: var(--muted); font-size: .84rem; }
.section { padding: clamp(72px, 9vw, 118px) 0; position: relative; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 42px; }
.section-head p { max-width: 600px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.card {
  background: linear-gradient(180deg, rgba(18,30,46,.9), rgba(10,16,25,.88));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: 0 18px 50px rgba(0,0,0,.16);
}
.card:hover { border-color: rgba(41,168,255,.32); }
.icon {
  width: 50px; height: 50px; display: grid; place-items: center; border-radius: 15px;
  background: linear-gradient(145deg, rgba(41,168,255,.18), rgba(54,216,199,.08));
  border: 1px solid rgba(41,168,255,.24); margin-bottom: 22px;
}
.icon svg { width: 26px; height: 26px; stroke: #8ad7ff; fill: none; stroke-width: 1.8; }
.card p { font-size: .96rem; }
.link-arrow { color: #d8f5ff; font-weight: 800; display: inline-flex; gap: 8px; align-items: center; }
.band {
  background:
    linear-gradient(120deg, rgba(41,168,255,.10), rgba(54,216,199,.05)),
    rgba(255,255,255,.025);
  border-block: 1px solid rgba(255,255,255,.09);
}
.bridge { display: grid; grid-template-columns: 1fr auto 1fr; gap: 22px; align-items: stretch; }
.bridge-side { padding: 32px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--panel); }
.bridge-side ul, .check-list { margin: 20px 0 0; padding: 0; list-style: none; }
.bridge-side li, .check-list li { padding: 10px 0 10px 27px; color: #c2ccda; position: relative; }
.bridge-side li::before, .check-list li::before {
  content: "✓"; position: absolute; left: 0; color: var(--accent-2); font-weight: 900;
}
.bridge-center { width: 105px; display: grid; place-items: center; position: relative; }
.bridge-center::before { content: ""; width: 1px; height: 100%; background: linear-gradient(transparent, var(--accent), var(--accent-2), transparent); }
.bridge-center span {
  position: absolute; width: 86px; height: 86px; border-radius: 50%;
  display: grid; place-items: center; text-align: center; font-weight: 900; font-size: .75rem;
  background: #08111b; border: 1px solid rgba(41,168,255,.38);
  box-shadow: 0 0 46px rgba(41,168,255,.2);
}
.process { counter-reset: step; }
.process .card { position: relative; overflow: hidden; }
.process .card::after {
  counter-increment: step; content: "0" counter(step);
  position: absolute; right: 18px; top: 8px; font-size: 4rem; font-weight: 900;
  color: rgba(255,255,255,.045); line-height: 1;
}
.badge-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 25px; }
.badge {
  padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px;
  background: rgba(255,255,255,.035); color: #d3ddea; font-size: .86rem; font-weight: 750;
}
.page-hero { padding: 82px 0 48px; border-bottom: 1px solid rgba(255,255,255,.07); }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 5rem); margin-top: 18px; }
.content-section { padding: 72px 0; }
.profile-table { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }
.profile-item { background: #0b1420; padding: 22px; }
.profile-item span { display: block; color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .09em; margin-bottom: 8px; }
.profile-item strong { font-size: 1rem; }
.notice {
  padding: 18px 20px; border-radius: 16px;
  background: rgba(41,168,255,.08); border: 1px solid rgba(41,168,255,.2); color: #d9edfb;
}
.contact-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 28px; }
.contact-panel { padding: 30px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--panel); }
.contact-detail { padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-detail:last-child { border-bottom: 0; }
.contact-detail span { display: block; color: var(--muted); font-size: .8rem; margin-bottom: 4px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
label { color: #d9e4ef; font-weight: 750; font-size: .88rem; }
input, textarea, select {
  width: 100%; border: 1px solid rgba(255,255,255,.13); border-radius: 13px;
  background: #08111b; color: #fff; padding: 14px 15px; outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(41,168,255,.12); }
textarea { min-height: 150px; resize: vertical; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.alert { padding: 14px 16px; border-radius: 13px; margin-bottom: 18px; }
.alert-success { background: rgba(84,223,156,.1); border: 1px solid rgba(84,223,156,.24); color: #c8f9df; }
.alert-error { background: rgba(255,116,107,.1); border: 1px solid rgba(255,116,107,.24); color: #ffd3d0; }
.cta-block {
  padding: clamp(34px, 6vw, 66px); border-radius: 32px; position: relative; overflow: hidden;
  border: 1px solid rgba(41,168,255,.2);
  background:
    radial-gradient(circle at 90% 10%, rgba(54,216,199,.16), transparent 28%),
    linear-gradient(135deg, #0e1c2c, #08101a);
}
.cta-block::after {
  content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%;
  border: 1px dashed rgba(41,168,255,.2); right: -120px; top: -150px;
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.footer { border-top: 1px solid rgba(255,255,255,.08); padding: 58px 0 26px; background: rgba(2,5,8,.65); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .9fr; gap: 40px; }
.footer h3 { font-size: 1rem; margin-bottom: 14px; }
.footer p, .footer a { color: var(--muted); font-size: .91rem; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-bottom { margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; color: #7f8c9d; font-size: .82rem; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.screen-reader-text { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
@media (max-width: 980px) {
  .mobile-toggle { display: grid; place-items: center; }
  .nav-wrap {
    position: absolute; left: 18px; right: 18px; top: 76px;
    padding: 20px; background: #09121d; border: 1px solid var(--line);
    border-radius: 18px; box-shadow: var(--shadow);
    display: none; align-items: stretch; flex-direction: column;
  }
  .nav-wrap.open { display: flex; }
  .nav-menu { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav-menu a { display: block; padding: 10px 4px; }
  .header-cta { width: 100%; }
  .hero-grid, .contact-layout { grid-template-columns: 1fr; }
  .hero-art { min-height: 450px; }
  .metrics, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .container { width: min(calc(100% - 24px), var(--max)); }
  .brand-copy span { display: none; }
  .hero { padding-top: 62px; }
  .hero-art { min-height: 355px; }
  .hero-orbit { width: 300px; }
  .status-chip { font-size: .7rem; padding: 8px 10px; }
  .status-one { left: 0; }
  .status-two { right: 0; }
  .metrics, .grid-2, .grid-3, .grid-4, .form-grid, .profile-table { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .bridge { grid-template-columns: 1fr; }
  .bridge-center { height: 82px; width: 100%; }
  .bridge-center::before { height: 1px; width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* === ADAPT FUTURISTIC V2 === */
:root { --electric: #48bfff; --plasma: #42f3d0; }
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(circle at var(--cursor-x, 75%) var(--cursor-y, 20%), rgba(41,168,255,.08), transparent 20%),
    linear-gradient(135deg, rgba(41,168,255,.025), transparent 45%);
}
#adapt-energy-canvas {
  position: fixed; inset: 0; width: 100%; height: 100%; z-index: 9998;
  pointer-events: none; mix-blend-mode: screen; opacity: .78;
}
.hero-grid { grid-template-columns: .88fr 1.12fr; gap: clamp(34px, 5vw, 72px); }
.hero-copy h1 { font-size: clamp(2.7rem, 5.8vw, 5.25rem); }
.hero-media {
  min-height: 560px; position: relative; overflow: hidden; border-radius: 30px;
  border: 1px solid rgba(116,207,255,.22); background: #07111b;
  box-shadow: 0 30px 100px rgba(0,0,0,.5), 0 0 70px rgba(41,168,255,.14);
  transform-style: preserve-3d; will-change: transform;
}
.hero-media::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(90deg, rgba(5,8,13,.22), transparent 42%), linear-gradient(0deg, rgba(5,8,13,.46), transparent 48%);
}
.hero-media::after, .interactive-media::after {
  content: ""; position: absolute; inset: -35%; z-index: 3; pointer-events: none;
  background: linear-gradient(105deg, transparent 38%, rgba(90,210,255,.13) 48%, transparent 58%);
  transform: translateX(var(--shine-x, -55%)) rotate(8deg); transition: transform .25s ease;
}
.hero-media img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; object-position: center; filter: saturate(.92) contrast(1.05); }
.hero-media .status-chip { z-index: 5; }
.hero-media .status-one { left: 18px; top: 18px; }
.hero-media .status-two { right: 18px; bottom: 18px; }
.hero-media .scanline {
  position: absolute; z-index: 4; left: 0; right: 0; height: 2px; top: -5%;
  background: linear-gradient(90deg, transparent, rgba(80,220,255,.8), transparent);
  box-shadow: 0 0 18px rgba(41,168,255,.85); animation: scan 5.5s ease-in-out infinite;
}
@keyframes scan { 0%,100% { top: 4%; opacity: .15; } 45%,55% { opacity: .85; } 50% { top: 92%; } }
.media-feature { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.media-feature.reverse { grid-template-columns: .88fr 1.12fr; }
.media-feature.reverse .media-copy { order: 1; }
.media-feature.reverse .interactive-media { order: 2; }
.interactive-media {
  position: relative; overflow: hidden; border-radius: 28px; border: 1px solid rgba(255,255,255,.13);
  background: #07111b; box-shadow: var(--shadow), 0 0 50px rgba(41,168,255,.1);
  transform-style: preserve-3d; will-change: transform; transition: transform .18s ease, border-color .25s ease, box-shadow .25s ease;
}
.interactive-media:hover { border-color: rgba(72,191,255,.42); box-shadow: var(--shadow), 0 0 75px rgba(41,168,255,.18); }
.interactive-media img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .5s ease, filter .5s ease; }
.interactive-media:hover img { transform: scale(1.025); filter: saturate(1.08) contrast(1.04); }
.interactive-media.pulse { animation: mediaPulse .58s ease; }
@keyframes mediaPulse { 45% { box-shadow: 0 0 0 7px rgba(41,168,255,.12), 0 0 90px rgba(66,243,208,.22); } }
.media-label {
  position: absolute; left: 18px; bottom: 18px; z-index: 5; padding: 10px 13px; border-radius: 12px;
  color: #eaf7ff; font-size: .78rem; font-weight: 850; letter-spacing: .04em;
  background: rgba(5,10,17,.82); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(12px);
}
.video-frame { max-width: 470px; margin-inline: auto; aspect-ratio: 464/688; border-radius: 34px; }
.video-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-frame::before {
  content: ""; position: absolute; inset: 8%; border-radius: 50%; z-index: 4; pointer-events: none;
  border: 1px solid rgba(72,191,255,.16); box-shadow: inset 0 0 55px rgba(41,168,255,.08);
}
.motion-note { color: #7f90a5; font-size: .78rem; margin-top: 12px; text-align: center; }
.fact-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 26px; }
.fact-strip > div { padding: 16px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.025); }
.fact-strip strong { display:block; color:#fff; margin-bottom:4px; }
.fact-strip span { color:var(--muted); font-size:.82rem; }
.faq-list { display: grid; gap: 13px; max-width: 900px; margin-inline: auto; }
.faq-list details { border: 1px solid var(--line); border-radius: 17px; background: rgba(11,20,32,.82); overflow: hidden; }
.faq-list summary { list-style: none; cursor: pointer; padding: 19px 56px 19px 20px; font-weight: 850; position: relative; }
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list summary::after { content:"+"; position:absolute; right:20px; top:14px; font-size:1.55rem; color:var(--accent-2); }
.faq-list details[open] summary::after { content:"−"; }
.faq-list details p { padding: 0 20px 20px; margin:0; }
.ai-summary { border-left: 3px solid var(--accent); padding-left: 20px; }
@media (max-width: 980px) {
  .hero-grid, .media-feature, .media-feature.reverse { grid-template-columns: 1fr; }
  .media-feature.reverse .media-copy, .media-feature.reverse .interactive-media { order: initial; }
  .hero-media, .hero-media img { min-height: 430px; }
}
@media (max-width: 700px) {
  #adapt-energy-canvas { display:none; }
  .hero-media, .hero-media img { min-height: 360px; }
  .fact-strip { grid-template-columns: 1fr; }
  .video-frame { max-width: 330px; }
}
@media (prefers-reduced-motion: reduce) {
  #adapt-energy-canvas { display:none !important; }
  .scanline { display:none; }
  .interactive-media, .hero-media { transform:none !important; }
}
