* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #07100f;
  --bg-soft: #0b1715;
  --line: rgba(255,255,255,.12);
  --text: #f4f7f2;
  --muted: #a8b4ae;
  --lime: #b9ff3f;
  --mint: #46e6b0;
  --cyan: #4fdbff;
  --gold: #ffd76f;
  --display: "Space Grotesk", sans-serif;
  --body: "Manrope", sans-serif;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background:
    radial-gradient(circle at 80% 10%, rgba(79,219,255,.08), transparent 27%),
    radial-gradient(circle at 10% 20%, rgba(185,255,63,.08), transparent 30%),
    linear-gradient(180deg, #07100f, #091413 52%, #07100f);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  z-index: -2;
}
.noise {
  position: fixed; inset: 0; pointer-events: none; opacity: .03; z-index: 30;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
.cursor-glow {
  width: 360px; height: 360px; border-radius: 50%; position: fixed; pointer-events: none; z-index: -1;
  background: radial-gradient(circle, rgba(70,230,176,.12), transparent 65%); transform: translate(-50%, -50%);
}
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 115px 0; }
.nav-wrap { position: fixed; top: 0; width: 100%; z-index: 50; background: rgba(7,16,15,.72); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(255,255,255,.07); }
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; }
.brand { color: var(--text); text-decoration: none; display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 40px; height: 40px; border-radius: 13px; display: grid; place-items: center; background: linear-gradient(135deg, var(--lime), var(--mint)); color: #07100f; font: 800 .8rem var(--display); box-shadow: 0 0 28px rgba(185,255,63,.15); }
.brand-text strong { display: block; font: 800 1rem var(--display); letter-spacing: -.03em; }
.brand-text small { display: block; color: #95a49d; font-size: .69rem; margin-top: -1px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: #cad3ce; text-decoration: none; font-size: .92rem; font-weight: 600; transition: .25s ease; }
.nav-links a:hover { color: var(--text); }
.nav-links .nav-cta { color: #07100f; background: var(--lime); padding: 10px 16px; border-radius: 999px; }
.menu-btn { display: none; }
.hero { min-height: 100vh; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 70px; padding-top: 135px; padding-bottom: 70px; }
.eyebrow, .section-label { font-size: .76rem; font-weight: 800; letter-spacing: .18em; color: var(--lime); display: inline-flex; align-items: center; gap: 10px; }
.pulse { width: 8px; height: 8px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 0 0 rgba(185,255,63,.5); animation: pulse 1.8s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(185,255,63,0); } 100% { box-shadow: 0 0 0 0 rgba(185,255,63,0); } }
.hero h1 { font-family: var(--display); font-size: clamp(3.2rem, 7vw, 6.5rem); line-height: .98; letter-spacing: -.065em; margin: 22px 0 28px; max-width: 800px; }
.gradient-text { display: block; background: linear-gradient(90deg, var(--lime), var(--mint), var(--cyan)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { max-width: 680px; font-size: 1.08rem; color: var(--muted); }
.hero-actions { display: flex; gap: 14px; margin-top: 36px; }
.btn { min-height: 52px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 14px; text-decoration: none; font: 700 .94rem var(--body); border: 0; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: linear-gradient(135deg, var(--lime), #7fff7c); color: #07100f; box-shadow: 0 12px 36px rgba(185,255,63,.16); }
.btn-secondary { border: 1px solid var(--line); color: var(--text); background: rgba(255,255,255,.04); }
.hero-proof { display: flex; gap: 32px; margin-top: 56px; }
.hero-proof div { display: flex; flex-direction: column; }
.hero-proof strong { font-family: var(--display); font-size: 1.24rem; }
.hero-proof span { font-size: .78rem; color: var(--muted); }
.hero-visual { position: relative; min-height: 670px; display: grid; place-items: center; }
.glass { background: linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.035)); border: 1px solid rgba(255,255,255,.14); box-shadow: 0 35px 80px rgba(0,0,0,.35); backdrop-filter: blur(18px); }
.glass-lite { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.hero-dashboard { position: relative; z-index: 3; width: min(100%, 510px); border-radius: 28px; padding: 24px; transform: rotate(-1.5deg); }
.dashboard-head { display: flex; justify-content: space-between; align-items: start; gap: 20px; }
.panel-kicker { color: var(--lime); font-size: .66rem; letter-spacing: .17em; font-weight: 800; }
.dashboard-head h2 { font-family: var(--display); font-size: 1.6rem; margin-top: 5px; letter-spacing: -.03em; }
.status-badge { padding: 7px 10px; border-radius: 999px; background: rgba(185,255,63,.12); border: 1px solid rgba(185,255,63,.3); color: var(--lime); font-size: .66rem; font-weight: 800; white-space: nowrap; }
.dashboard-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 22px; }
.metric-card { border-radius: 16px; padding: 16px; min-height: 130px; }
.metric-card span { display: block; color: #c8d1cc; font-size: .78rem; }
.metric-card strong { display: block; font-family: var(--display); font-size: 1.3rem; margin: 6px 0 12px; }
.battery { width: 100%; height: 22px; border-radius: 999px; border: 1px solid rgba(255,255,255,.16); position: relative; overflow: hidden; }
.battery-fill { width: 84%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--mint), var(--lime)); box-shadow: 0 0 20px rgba(185,255,63,.2); animation: batteryPulse 2.6s ease-in-out infinite; }
@keyframes batteryPulse { 0%,100% { width: 84%; opacity: .95; } 50% { width: 78%; opacity: 1; } }
.sparkline, .trading-wave { display: flex; align-items: end; gap: 5px; height: 40px; }
.sparkline i, .trading-wave b { display: block; width: 12px; border-radius: 999px 999px 4px 4px; background: linear-gradient(180deg, var(--cyan), rgba(79,219,255,.2)); animation: bars 1.7s infinite ease-in-out; }
.sparkline i:nth-child(1), .trading-wave b:nth-child(1) { height: 16px; animation-delay: .1s; }
.sparkline i:nth-child(2), .trading-wave b:nth-child(2) { height: 24px; animation-delay: .25s; }
.sparkline i:nth-child(3), .trading-wave b:nth-child(3) { height: 18px; animation-delay: .35s; }
.sparkline i:nth-child(4), .trading-wave b:nth-child(4) { height: 30px; animation-delay: .5s; }
.sparkline i:nth-child(5), .trading-wave b:nth-child(5) { height: 22px; animation-delay: .65s; }
.sparkline i:nth-child(6) { height: 34px; animation-delay: .75s; }
.sparkline i:nth-child(7) { height: 25px; animation-delay: .85s; }
@keyframes bars { 0%,100% { transform: scaleY(.9); opacity: .8; } 50% { transform: scaleY(1.1); opacity: 1; } }
.solar-flow { display: flex; gap: 12px; margin-top: 14px; }
.solar-flow em { width: 26px; height: 26px; border-radius: 50%; display: block; background: radial-gradient(circle, var(--gold), rgba(255,215,111,.14)); box-shadow: 0 0 22px rgba(255,215,111,.24); animation: orbitGlow 1.8s infinite ease-in-out; }
.solar-flow em:nth-child(2) { animation-delay: .3s; }
.solar-flow em:nth-child(3) { animation-delay: .6s; }
@keyframes orbitGlow { 0%,100% { transform: translateX(0) scale(.9); opacity: .7; } 50% { transform: translateX(8px) scale(1); opacity: 1; } }
.agent-flow { display: grid; grid-template-columns: 1fr 60px 1fr 60px 1fr; align-items: center; gap: 8px; margin-top: 16px; }
.flow-node { min-height: 58px; border-radius: 14px; display: grid; place-items: center; padding: 10px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); text-align: center; }
.flow-node span { font-size: .76rem; color: #d4ddd8; font-weight: 700; }
.flow-node.active { border-color: rgba(185,255,63,.35); background: rgba(185,255,63,.08); box-shadow: 0 0 24px rgba(185,255,63,.08); }
.flow-line { height: 2px; background: rgba(255,255,255,.08); position: relative; overflow: hidden; }
.flow-line i { position: absolute; left: -20%; top: -2px; width: 24%; height: 6px; border-radius: 999px; background: linear-gradient(90deg, transparent, var(--lime), transparent); animation: flowRun 1.8s linear infinite; }
@keyframes flowRun { to { left: 100%; } }
.decision-console { border-radius: 16px; padding: 14px 16px; margin-top: 16px; }
.console-line { display: flex; justify-content: space-between; gap: 20px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.06); color: #c5cfca; font-size: .78rem; }
.console-line:last-child { border-bottom: 0; }
.console-line b { color: var(--lime); font-weight: 700; }
.orb { position: absolute; border-radius: 50%; }
.orb-one { width: 380px; height: 380px; background: radial-gradient(circle at 40% 40%, rgba(185,255,63,.2), rgba(70,230,176,.04) 62%, transparent 70%); }
.orb-two { width: 520px; height: 520px; border: 1px solid rgba(79,219,255,.08); box-shadow: inset 0 0 80px rgba(79,219,255,.03); }
.floating-card { position: absolute; z-index: 4; }
.mini-card { border-radius: 16px; padding: 13px 16px; display: flex; align-items: center; gap: 11px; min-width: 190px; }
.mini-card.one { left: -18px; bottom: 88px; }
.mini-card.two { right: -18px; top: 110px; }
.mini-card b, .mini-card small { display: block; }
.mini-card small { color: var(--muted); font-size: .7rem; }
.mini-icon { font-size: 1.1rem; }
.marquee-section { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.02); overflow: hidden; }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 24px; padding: 18px 0; animation: marquee 25s linear infinite; }
.marquee-track span { font-family: var(--display); font-weight: 700; font-size: .78rem; letter-spacing: .17em; color: #dde4df; }
.marquee-track i { color: var(--lime); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }
.section-head { max-width: 820px; margin-bottom: 54px; }
.section-head h2 { font-family: var(--display); font-size: clamp(2.4rem, 5vw, 4.6rem); line-height: 1.03; letter-spacing: -.045em; margin: 18px 0 22px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.solution-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.solution-card { min-height: 370px; border-radius: 24px; padding: 28px; background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.03)); border: 1px solid var(--line); transition: transform .3s ease, border-color .3s ease; }
.solution-card:hover { transform: translateY(-6px); border-color: rgba(185,255,63,.24); }
.solution-card.highlight { background: radial-gradient(circle at 100% 0%, rgba(185,255,63,.12), transparent 25%), linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.03)); }
.solution-top { display: flex; align-items: center; justify-content: space-between; }
.solution-kicker { color: var(--lime); font-size: .68rem; letter-spacing: .15em; font-weight: 800; }
.solution-icon { width: 48px; height: 48px; border-radius: 15px; display: grid; place-items: center; background: rgba(185,255,63,.1); color: var(--lime); font: 700 1.25rem var(--display); }
.solution-card h3 { font: 700 1.62rem var(--display); margin: 26px 0 12px; }
.solution-card p { color: var(--muted); font-size: .94rem; }
.solution-card ul { list-style: none; display: grid; gap: 10px; margin-top: 22px; }
.solution-card li { color: #d2dad5; font-size: .84rem; }
.solution-card li::before { content: "↗"; margin-right: 8px; color: var(--lime); }
.energy-zone { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.energy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { min-height: 250px; padding: 26px; border-radius: 22px; background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.028)); border: 1px solid var(--line); position: relative; overflow: hidden; transition: transform .3s ease, border-color .3s ease; }
.feature-card:hover { transform: translateY(-7px); border-color: rgba(185,255,63,.28); }
.feature-number { position: absolute; right: 22px; top: 20px; font: 700 .74rem var(--display); color: #72817a; }
.feature-icon { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 34px; background: rgba(185,255,63,.1); color: var(--lime); font: 700 .86rem var(--display); }
.feature-card h3 { font: 700 1.3rem var(--display); letter-spacing: -.025em; margin-bottom: 12px; }
.feature-card p { color: var(--muted); font-size: .92rem; }
.accent-card { background: linear-gradient(145deg, rgba(185,255,63,.14), rgba(70,230,176,.05)); border-color: rgba(185,255,63,.24); }
.accent-card a { display: inline-block; color: var(--lime); text-decoration: none; font-weight: 700; margin-top: 22px; }
.finance-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: start; }
.sticky { position: sticky; top: 130px; }
.proof-list { border-top: 1px solid var(--line); }
.proof-item { display: grid; grid-template-columns: 50px 1fr; gap: 25px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.proof-item > span { color: var(--lime); font: 700 .72rem var(--display); }
.proof-item h3 { font: 700 1.45rem var(--display); margin-bottom: 8px; }
.proof-item p { color: var(--muted); }
.services { background: #f4f5ef; color: #101714; }
.services .section-label { color: #4f7d12; }
.services .section-head p, .services .service p, .services .service li { color: #66706b; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #d4d9d2; border-left: 1px solid #d4d9d2; }
.service { min-height: 370px; padding: 28px; border-right: 1px solid #d4d9d2; border-bottom: 1px solid #d4d9d2; position: relative; transition: background .3s ease, transform .3s ease; }
.service:hover { background: #fff; transform: translateY(-5px); }
.service-index { position: absolute; right: 24px; top: 22px; color: #99a39d; font-size: .72rem; }
.service-icon { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 17px; background: #101714; color: var(--lime); font: 700 .9rem var(--display); margin-bottom: 42px; }
.service h3 { font: 700 1.35rem var(--display); margin-bottom: 12px; }
.service p { font-size: .9rem; min-height: 88px; }
.service ul { list-style: none; margin-top: 22px; display: grid; gap: 9px; }
.service li { font-size: .78rem; }
.service li::before { content: "↗"; margin-right: 8px; color: #4f7d12; }
.process { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.timeline::before { content: ""; position: absolute; left: 4%; right: 4%; top: 21px; height: 1px; background: linear-gradient(90deg, var(--lime), var(--mint), var(--cyan)); opacity: .42; }
.timeline-step { position: relative; padding: 0 24px; }
.timeline-step:first-child { padding-left: 0; }
.timeline-step:last-child { padding-right: 0; }
.timeline-step > span { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--bg-soft); border: 1px solid rgba(185,255,63,.45); color: var(--lime); font: 700 .75rem var(--display); margin-bottom: 25px; position: relative; z-index: 2; }
.timeline-step h3 { font: 700 1.3rem var(--display); margin-bottom: 9px; }
.timeline-step p { color: var(--muted); font-size: .88rem; }
.cta-section { padding: 120px 0 20px; }
.cta-card { min-height: 500px; border-radius: 30px; padding: 70px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; background: radial-gradient(circle at 85% 25%, rgba(79,219,255,.28), transparent 32%), radial-gradient(circle at 10% 90%, rgba(185,255,63,.26), transparent 35%), linear-gradient(135deg, #132420, #0a3732); border: 1px solid rgba(255,255,255,.16); }
.cta-glow { position: absolute; right: -80px; top: -90px; width: 360px; height: 360px; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); box-shadow: 0 0 0 50px rgba(255,255,255,.02), 0 0 0 100px rgba(255,255,255,.015); }
.section-label.light { color: #d9ffe6; }
.cta-card h2 { font: 700 clamp(2.7rem, 5vw, 5rem)/1 var(--display); max-width: 920px; letter-spacing: -.055em; margin: 20px 0; }
.cta-card p { color: #c4d7cf; max-width: 700px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 14px; margin-top: 34px; }
.btn-white { background: #fff; color: #0b1714; }
.btn-outline-white { color: #fff; border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.04); }
.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 90px; }
.contact-details { display: grid; gap: 13px; margin-top: 35px; }
.contact-details a { color: var(--text); text-decoration: none; width: fit-content; border-bottom: 1px solid rgba(255,255,255,.2); }
.contact-form { padding: 32px; border-radius: 24px; background: rgba(255,255,255,.045); border: 1px solid var(--line); }
.contact-form label { display: block; margin-bottom: 20px; }
.contact-form label span { display: block; margin-bottom: 8px; font-size: .78rem; font-weight: 700; color: #ccd5d0; }
input, select, textarea { width: 100%; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); color: var(--text); border-radius: 12px; padding: 14px 15px; font: .9rem var(--body); outline: none; transition: border-color .2s ease, background .2s ease; }
select option { background: #0c1816; }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: rgba(185,255,63,.6); background: rgba(255,255,255,.06); }
.form-submit { width: 100%; }
.form-note { color: #78847e; font-size: .72rem; margin-top: 10px; text-align: center; }
.footer { min-height: 110px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; color: #809088; font-size: .75rem; }
.footer .brand { justify-self: start; }
.footer p { text-align: center; }
.footer > span { justify-self: end; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; padding-top: 165px; }
  .hero-copy { text-align: center; }
  .hero-sub, .section-head { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-proof { justify-content: center; }
  .solution-grid, .energy-grid, .services-grid, .finance-layout, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { display: grid; border-left: none; border-top: none; }
  .service { border: 1px solid #d4d9d2; }
  .sticky { position: static; }
  .hero-visual { min-height: 630px; }
}
@media (max-width: 760px) {
  .container { width: min(100% - 24px, 1180px); }
  .section { padding: 82px 0; }
  .nav { min-height: 68px; }
  .menu-btn { display: grid; gap: 6px; background: transparent; border: 0; cursor: pointer; z-index: 2; }
  .menu-btn span { width: 26px; height: 2px; background: white; display: block; }
  .nav-links { position: fixed; inset: 68px 0 auto 0; background: rgba(7,16,15,.98); flex-direction: column; align-items: stretch; padding: 28px 24px 32px; border-bottom: 1px solid var(--line); transform: translateY(-130%); transition: transform .3s ease; }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 10px 0; font-size: 1rem; }
  .nav-links .nav-cta { text-align: center; margin-top: 8px; }
  .hero { min-height: auto; padding-top: 130px; gap: 30px; }
  .hero h1 { font-size: clamp(3rem, 14vw, 5rem); }
  .hero-sub { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-proof { gap: 18px; justify-content: space-between; }
  .hero-proof strong { font-size: 1.02rem; }
  .hero-proof span { font-size: .67rem; }
  .hero-visual { min-height: 610px; }
  .hero-dashboard { padding: 18px; transform: none; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .agent-flow { grid-template-columns: 1fr; gap: 10px; }
  .flow-line { height: 24px; width: 2px; justify-self: center; }
  .flow-line i { width: 6px; height: 24%; left: -2px; top: -20%; background: linear-gradient(180deg, transparent, var(--lime), transparent); animation: flowVertical 1.8s linear infinite; }
  @keyframes flowVertical { to { top: 100%; } }
  .mini-card.one { left: 0; bottom: 16px; }
  .mini-card.two { right: 0; top: 24px; }
  .services-grid, .energy-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; gap: 34px; }
  .timeline::before { left: 21px; right: auto; top: 10px; bottom: 10px; width: 1px; height: auto; }
  .timeline-step { padding: 0 0 0 70px !important; }
  .timeline-step > span { position: absolute; left: 0; }
  .cta-card { padding: 38px 24px; min-height: 520px; }
  .cta-actions { flex-direction: column; }
  .contact-form { padding: 22px; }
  .footer { grid-template-columns: 1fr; padding: 28px 0; text-align: center; }
  .footer .brand, .footer > span { justify-self: center; }
  .cursor-glow { display: none; }
}
