:root {
  --bg: #061323;
  --bg-soft: #08213a;
  --bg-card: #0d2946;
  --surface: rgba(255, 255, 255, .075);
  --surface-strong: rgba(255, 255, 255, .115);
  --text: #edf8ff;
  --muted: #b9cbe0;
  --line: rgba(145, 210, 255, .18);
  --n7-blue: #0097ff;
  --n7-blue-deep: #003a9f;
  --n7-green: #67f333;
  --n7-green-deep: #18bf18;
  --primary: var(--n7-green);
  --primary-strong: var(--n7-green-deep);
  --blue: var(--n7-blue);
  --warning: #facc15;
  --danger: #fb7185;
  --white: #fff;
  --shadow: 0 24px 80px rgba(0, 20, 60, .42);
  --glow-green: 0 0 34px rgba(103, 243, 51, .28);
  --glow-blue: 0 0 38px rgba(0, 151, 255, .32);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 4%, rgba(0, 151, 255, .24), transparent 30%),
    radial-gradient(circle at 86% 10%, rgba(103, 243, 51, .22), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(0, 58, 159, .28), transparent 38%),
    linear-gradient(180deg, #061323 0%, #071a2e 46%, #05101e 100%);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(5, 18, 34, .86);
  border-bottom: 1px solid rgba(0, 151, 255, .18);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .18);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: .08em; }
.brand-logo { width: 54px; height: 54px; object-fit: contain; filter: drop-shadow(0 0 10px rgba(0,151,255,.45)) drop-shadow(0 0 12px rgba(103,243,51,.24)); }
.brand small { display: block; font-size: 11px; color: var(--muted); letter-spacing: .16em; font-weight: 700; margin-top: -4px; }
.nav-links { display: flex; align-items: center; gap: 20px; color: var(--muted); font-size: 14px; }
.nav-links a:hover { color: var(--white); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 800;
  letter-spacing: .01em;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--n7-green-deep), var(--n7-green));
  color: #03130c;
  border-color: rgba(103, 243, 51, .2);
  box-shadow: 0 12px 32px rgba(103, 243, 51, .22);
}
.btn-primary:hover { box-shadow: 0 16px 42px rgba(103, 243, 51, .30); }
.btn-ghost { background: rgba(0, 151, 255, .085); color: var(--text); border-color: rgba(0,151,255,.28); }
.btn-ghost:hover { background: rgba(0, 151, 255, .14); border-color: rgba(103,243,51,.36); }
.btn-small { min-height: 38px; padding: 0 14px; font-size: 13px; }

.hero { padding: 96px 0 60px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--n7-green);
  border: 1px solid rgba(103, 243, 51, .32);
  background: rgba(103, 243, 51, .09);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: var(--glow-green);
}
h1 { font-size: clamp(42px, 6vw, 76px); line-height: .96; letter-spacing: -.055em; margin: 22px 0; }
h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.05; letter-spacing: -.035em; margin: 0 0 18px; }
h3 { font-size: 22px; line-height: 1.25; margin: 0 0 12px; }
p { color: var(--muted); margin: 0 0 18px; }
.lead { font-size: 20px; max-width: 760px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.045));
  border: 1px solid rgba(145,210,255,.20);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card:before { content: ""; position: absolute; inset: -90px -100px auto auto; width: 250px; height: 250px; border-radius: 50%; background: rgba(0,151,255,.24); filter: blur(18px); }
.hero-card:after { content: ""; position: absolute; inset: auto auto -90px -110px; width: 250px; height: 250px; border-radius: 50%; background: rgba(103,243,51,.18); filter: blur(20px); }
.hero-card > * { position: relative; z-index: 1; }
.hero-logo { width: min(430px, 100%); margin: -18px auto 4px; filter: drop-shadow(0 0 20px rgba(0,151,255,.20)) drop-shadow(0 0 20px rgba(103,243,51,.16)); }
.metric-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 22px; }
.metric { padding: 18px; border-radius: 18px; border: 1px solid rgba(145,210,255,.17); background: rgba(6, 19, 35, .60); }
.metric strong { display: block; font-size: 30px; line-height: 1; color: var(--white); }
.metric span { color: var(--muted); font-size: 13px; }

.section { padding: 78px 0; }
.section-soft {
  background: linear-gradient(180deg, rgba(0,151,255,.045), rgba(103,243,51,.025));
  border-block: 1px solid rgba(145,210,255,.16);
}
.section-head { max-width: 820px; margin-bottom: 34px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.card {
  background: var(--surface);
  border: 1px solid rgba(145,210,255,.16);
  border-radius: 22px;
  padding: 24px;
  min-height: 100%;
  box-shadow: 0 16px 46px rgba(0, 20, 60, .14);
}
.card:hover { background: var(--surface-strong); border-color: rgba(103,243,51,.24); }
.icon { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(0,151,255,.16), rgba(103,243,51,.13)); color: var(--n7-green); font-size: 22px; margin-bottom: 18px; border: 1px solid rgba(145,210,255,.13); }
.kicker { color: var(--n7-green); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; }
.list { display: grid; gap: 12px; margin: 20px 0 0; padding: 0; list-style: none; }
.list li { display: flex; gap: 10px; color: var(--muted); }
.list li:before { content: "✓"; color: var(--n7-green); font-weight: 900; }
.industry-card { position: relative; overflow: hidden; min-height: 250px; display: flex; flex-direction: column; justify-content: space-between; }
.industry-card:after { content: ""; position: absolute; inset: auto -50px -70px auto; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(103,243,51,.17), rgba(0,151,255,.08), transparent 70%); }
.industry-card .btn { width: fit-content; }
.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 36px; align-items: start; }
.panel { border-radius: var(--radius); border: 1px solid rgba(145,210,255,.17); background: var(--surface); padding: 30px; box-shadow: var(--shadow); }
.steps { counter-reset: steps; display: grid; gap: 14px; }
.step { counter-increment: steps; display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; padding: 18px; border: 1px solid rgba(145,210,255,.17); border-radius: 18px; background: rgba(6, 19, 35, .58); }
.step:before { content: counter(steps); width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg, rgba(0,151,255,.24), rgba(103,243,51,.18)); color: var(--n7-green); font-weight: 900; }
.cta { padding: 64px 0; }
.cta-box { border-radius: 34px; padding: 42px; background: linear-gradient(135deg, rgba(0,151,255,.22), rgba(103,243,51,.18)); border: 1px solid rgba(145,210,255,.22); display: flex; align-items: center; justify-content: space-between; gap: 24px; box-shadow: var(--shadow); }
.footer { padding: 36px 0; color: var(--muted); border-top: 1px solid rgba(145,210,255,.16); }
.footer-inner { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.mobile-toggle { display: none; }
.tag-row { display:flex; flex-wrap:wrap; gap:10px; margin-top:22px; }
.tag { border:1px solid rgba(145,210,255,.18); background:rgba(0,151,255,.075); padding:8px 12px; border-radius:999px; color:var(--muted); font-size:13px; }
.hero-mini { padding: 74px 0 44px; position: relative; overflow: hidden; }
.hero-mini:after { content: ""; position: absolute; right: min(6vw, 80px); top: 14px; width: 240px; height: 180px; background: url("../img/logo-n7-full-transparent.png") center/contain no-repeat; opacity: .16; filter: blur(.1px); pointer-events: none; }
.hero-mini .container { position: relative; z-index: 1; }
.hero-mini h1 { max-width: 1000px; }
.breadcrumb { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.breadcrumb a { color: var(--n7-green); }
.feature-highlight { border-color: rgba(103,243,51,.34); background: linear-gradient(180deg, rgba(103,243,51,.10), rgba(0,151,255,.055)); }

@media (max-width: 920px) {
  .hero-grid, .split, .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .cta-box { align-items: flex-start; flex-direction: column; }
  .nav-links { display: none; position: absolute; left: 20px; right: 20px; top: 78px; background: rgba(5,18,34,.98); border: 1px solid rgba(145,210,255,.20); border-radius: 22px; padding: 18px; flex-direction: column; align-items: flex-start; }
  .nav-links.is-open { display: flex; }
  .mobile-toggle { display: inline-flex; }
}
@media (max-width: 620px) {
  .container { width: min(var(--max), calc(100% - 26px)); }
  .hero { padding-top: 58px; }
  .grid-3, .metric-grid { grid-template-columns: 1fr; }
  .nav { min-height: 68px; }
  .nav-links { top: 68px; }
  .brand-logo { width: 46px; height: 46px; }
  h1 { font-size: 42px; }
  .lead { font-size: 18px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .card, .panel, .hero-card { padding: 22px; }
  .hero-mini:after { width: 170px; right: -30px; top: 30px; opacity: .10; }
}
