:root {
  --bg: #07111f;
  --bg-soft: #0c1727;
  --surface: #101d2f;
  --surface-2: #13243a;
  --text: #eaf2fb;
  --muted: #9fb1c6;
  --line: rgba(255,255,255,.10);
  --accent: #35bde1;
  --accent-2: #79e000;
  --accent-3: #0d3f79;
  --white: #ffffff;
  --ink: #122033;
  --light-bg: #f4f8fb;
  --light-surface: #ffffff;
  --light-muted: #5e7084;
  --shadow: 0 22px 60px rgba(0,0,0,.22);
  --radius: 20px;
  --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(--ink);
  background: var(--light-bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.section-pad { padding: 96px 0; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.hidden { display: none !important; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  z-index: 9999;
  border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,17,31,.84);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}
.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 56px;
  height: 42px;
  object-fit: contain;
  display: inline-block;
  filter: drop-shadow(0 0 15px rgba(53,189,225,.18));
}
.acronym-logo {
  width: min(300px, 76%);
  height: auto;
  margin: 0 0 22px;
  display: block;
}

.brand-name {
  color: var(--white);
  font-weight: 800;
  letter-spacing: .18em;
  font-size: 15px;
}
.brand-mark {
  width: 34px;
  height: 34px;
  position: relative;
  display: inline-block;
}
.brand-mark span {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(87,211,255,.55);
}
.brand-mark span:nth-child(1) { left: 2px; top: 13px; }
.brand-mark span:nth-child(2) { right: 2px; top: 2px; background: var(--accent-2); }
.brand-mark span:nth-child(3) { right: 2px; bottom: 2px; background: var(--accent-3); }
.brand-mark:before,
.brand-mark:after {
  content: "";
  position: absolute;
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(121,224,0,.82));
  transform-origin: left center;
  left: 9px;
  top: 17px;
}
.brand-mark:before { transform: rotate(-30deg); }
.brand-mark:after { transform: rotate(30deg); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #c4d2e1;
  font-size: 14px;
}
.site-nav a:hover { color: #fff; }
.nav-cta {
  border: 1px solid rgba(255,255,255,.18);
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
}
.menu-toggle { display: none; }

.hero {
  color: var(--text);
  background:
    radial-gradient(circle at 80% 18%, rgba(53,189,225,.13), transparent 32%),
    radial-gradient(circle at 18% 70%, rgba(121,224,0,.075), transparent 32%),
    var(--bg);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
  min-height: 630px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #147ca2;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero .eyebrow,
.section-dark .eyebrow,
.contact-section .eyebrow { color: var(--accent); }
.eyebrow:before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
}
.hero h1 {
  margin: 0;
  font-size: clamp(48px, 6.5vw, 78px);
  line-height: .98;
  letter-spacing: -.045em;
  max-width: 850px;
}
.hero h1 span {
  background: linear-gradient(90deg, var(--accent) 0%, #45c7b2 52%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-text {
  max-width: 700px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 750;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary {
  color: #04111c;
  background: linear-gradient(90deg, var(--accent) 0%, #45c7b2 52%, var(--accent-2) 100%);
}
.button-secondary {
  color: #dce9f6;
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
}
.button-full { width: 100%; }

.promise {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 38px;
  color: #8fa6ba;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.promise span:not(:last-child):after {
  content: "•";
  margin-left: 20px;
  color: #38516a;
}

.hero-visual { position: relative; }
.network-card {
  position: relative;
  min-height: 470px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 28px;
  background:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  background-size: 28px 28px, 28px 28px, auto;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.network-topline {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #8fa6ba;
  font-size: 10px;
  letter-spacing: .12em;
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 12px rgba(126,240,198,.7);
}
.status-label { margin-left: auto; color: var(--accent-2); }
.network-diagram { position: relative; height: 325px; }
.node {
  position: absolute;
  width: 92px;
  height: 76px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(8,21,35,.86);
  border-radius: 16px;
  color: #9fb5c9;
  font-size: 11px;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
}
.node-icon {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 9px;
  background: rgba(87,211,255,.10);
  color: var(--accent);
  font-weight: 800;
}
.node-core {
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 104px; height: 90px;
  border-color: rgba(87,211,255,.4);
}
.node-core .node-icon {
  background: linear-gradient(135deg, rgba(53,189,225,.22), rgba(121,224,0,.14));
  color: #fff;
}
.node-cloud { left: 50%; top: 16px; transform: translateX(-50%); }
.node-site { left: 26px; top: 165px; }
.node-sec { right: 26px; top: 165px; }
.node-mon { left: 23%; bottom: 4px; }
.node-app { right: 23%; bottom: 4px; }
.connector {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(87,211,255,.16);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}
.connector-b {
  width: 180px; height: 180px;
  border-color: rgba(126,240,198,.14);
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.08);
}
.metric-grid div {
  padding: 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.metric-grid div:last-child { border-right: 0; }
.metric-grid strong {
  display: block;
  color: #fff;
  font-size: 14px;
}
.metric-grid span {
  color: #7890a8;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.trust-strip {
  background: #fff;
  border-bottom: 1px solid #dde7ef;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-grid div {
  padding: 24px 26px;
  border-right: 1px solid #e5edf3;
}
.trust-grid div:last-child { border-right: 0; }
.trust-grid strong {
  display: block;
  font-size: 16px;
  color: #0a1b2c;
}
.trust-grid span {
  color: var(--light-muted);
  font-size: 12px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}
.section-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-heading h2,
.about-copy h2,
.founder-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.3vw, 55px);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.section-heading p:not(.eyebrow),
.about-copy p,
.founder-copy p,
.contact-copy p {
  color: var(--light-muted);
  font-size: 17px;
}
.card-grid {
  display: grid;
  gap: 18px;
}
.services-grid { grid-template-columns: repeat(3, 1fr); }
.service-card {
  padding: 28px;
  border: 1px solid #dbe6ee;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 6px 24px rgba(15,31,50,.04);
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: #bdd6e6;
  box-shadow: 0 18px 36px rgba(15,31,50,.08);
}
.service-card,
.solution-card { transition: .22s ease; }
.service-icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: #fff0f7;
  color: #c3176b;
  font-size: 12px;
  font-weight: 800;
}
.service-card h3 { margin: 18px 0 8px; font-size: 21px; }
.service-card p { color: var(--light-muted); font-size: 14px; }
.service-card ul {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
  color: #52667a;
  font-size: 13px;
}
.service-card li { margin: 7px 0; }
.service-card li:before {
  content: "✓";
  margin-right: 8px;
  color: #9b2ec7;
  font-weight: 800;
}

.section-dark {
  background:
    radial-gradient(circle at 10% 10%, rgba(87,211,255,.08), transparent 25%),
    var(--bg);
  color: var(--text);
}
.section-dark .section-heading p:not(.eyebrow) { color: var(--muted); }
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.solution-card {
  padding: 30px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  background: rgba(255,255,255,.035);
}
.solution-card:hover { border-color: rgba(87,211,255,.28); }
.solution-card.featured {
  background: linear-gradient(145deg, rgba(53,189,225,.10), rgba(121,224,0,.055));
}
.pill {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(87,211,255,.10);
  color: var(--accent);
  border: 1px solid rgba(87,211,255,.14);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .10em;
}
.solution-card h3 { margin: 22px 0 10px; font-size: 23px; }
.solution-card p { color: var(--muted); font-size: 14px; }
.solution-card a {
  display: inline-block;
  margin-top: 16px;
  color: var(--accent-2);
  font-weight: 750;
  font-size: 13px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 70px;
  align-items: center;
}
.acronym-card {
  padding: 32px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #dbe6ee;
  box-shadow: 0 18px 44px rgba(10,30,48,.07);
}
.acronym-card h3 {
  margin: 0 0 22px;
  letter-spacing: .18em;
  font-size: 24px;
}
.acronym-row {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid #edf2f6;
}
.acronym-row strong {
  color: #c3176b;
  font-size: 18px;
}
.acronym-row span { color: #40566c; }
.acronym-note {
  margin: 20px 0 0;
  color: #718397;
  font-size: 12px;
}

.founder-section { background: #eaf2f7; }
.founder-grid {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 64px;
  align-items: center;
}
.founder-badge {
  min-height: 330px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  background:
    radial-gradient(circle at 70% 25%, rgba(53,189,225,.13), transparent 28%),
    linear-gradient(145deg, #0c1a2c, #101f34);
  color: #fff;
  box-shadow: 0 24px 55px rgba(18,42,64,.18);
}
.founder-monogram {
  width: 98px; height: 98px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--accent);
  font-size: 32px;
  font-weight: 850;
  letter-spacing: .06em;
}
.founder-meta span {
  display: block;
  color: var(--accent-2);
  font-size: 10px;
  letter-spacing: .16em;
}
.founder-meta strong {
  display: block;
  margin-top: 5px;
  font-size: 16px;
}
.experience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.experience-tags span {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid #cfdde7;
  background: rgba(255,255,255,.55);
  color: #3d596e;
  font-size: 11px;
  font-weight: 700;
}

.process-section { background: #fff; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #dfe8ef;
  border: 1px solid #dfe8ef;
  border-radius: 20px;
  overflow: hidden;
}
.process-step {
  padding: 26px;
  background: #fff;
}
.process-step > span {
  color: #c3176b;
  font-weight: 850;
  font-size: 12px;
}
.process-step h3 { margin: 30px 0 8px; font-size: 19px; }
.process-step p { color: var(--light-muted); font-size: 13px; }

.contact-section {
  background:
    radial-gradient(circle at 80% 10%, rgba(87,211,255,.10), transparent 28%),
    var(--bg);
  color: var(--text);
}
.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 72px;
  align-items: start;
}
.contact-copy p:not(.eyebrow) { color: var(--muted); }
.contact-points {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  color: #b5c5d4;
  font-size: 13px;
}
.contact-form {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  background: rgba(255,255,255,.045);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: #cbd8e4;
  font-size: 12px;
  font-weight: 700;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.055);
  color: #fff;
  border-radius: 10px;
  padding: 12px 13px;
  outline: none;
}
.contact-form select option { color: #111; background: #fff; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(87,211,255,.7);
  box-shadow: 0 0 0 3px rgba(87,211,255,.08);
}
.form-note {
  text-align: center;
  color: #7890a8;
  font-size: 10px;
  margin: 12px 0 0;
}

.site-footer {
  padding: 36px 0;
  background: #050c15;
  color: #98aabc;
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr auto auto;
  gap: 30px;
  align-items: end;
}
.footer-brand { margin-bottom: 8px; }
.site-footer p { margin: 0; font-size: 12px; }
.footer-links {
  display: flex;
  gap: 18px;
  font-size: 12px;
}
.footer-links a:hover { color: #fff; }
.copyright { text-align: right; }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button, .service-card, .solution-card { transition: none; }
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .founder-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid { min-height: auto; }
  .hero-visual { max-width: 660px; }
  .services-grid,
  .solution-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; align-items: start; }
  .copyright { text-align: left; }
}

@media (max-width: 760px) {
  .section-pad { padding: 72px 0; }
  .container { width: min(var(--max), calc(100% - 28px)); }

  .menu-toggle {
    display: inline-flex;
    width: 42px; height: 42px;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    border-radius: 10px;
  }
  .menu-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    background: #fff;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 14px;
    right: 14px;
    padding: 18px;
    border-radius: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #0a1625;
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 10px; }
  .nav-cta { border-radius: 8px; }

  .hero h1 { font-size: clamp(43px, 13vw, 62px); }
  .hero-text { font-size: 16px; }
  .promise { gap: 8px 14px; }
  .promise span:not(:last-child):after { margin-left: 14px; }

  .services-grid,
  .solution-grid,
  .process-grid,
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid div { border-right: 0; border-bottom: 1px solid #e5edf3; }
  .field-row { grid-template-columns: 1fr; }

  .network-card { min-height: 440px; }
  .node { transform: scale(.92); }
  .node-core { transform: translate(-50%,-50%) scale(.92); }
  .node-cloud { transform: translateX(-50%) scale(.92); }
  .node-site { left: 7px; }
  .node-sec { right: 7px; }
  .node-mon { left: 12%; }
  .node-app { right: 12%; }
}

@media (max-width: 480px) {
  .hero-actions .button { width: 100%; }
  .network-card { min-height: 420px; }
  .network-diagram { height: 300px; }
  .node { width: 78px; font-size: 10px; }
  .node-core { width: 90px; }
  .node-mon { left: 5%; }
  .node-app { right: 5%; }
}

/* Netlify form helpers */
.netlify-honeypot {
  position: absolute !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  white-space: nowrap !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
}
.form-status {
  min-height: 22px;
  margin: 10px 0 0;
  text-align: center;
  color: #a9bdd0;
  font-size: 12px;
}
.form-status.error { color: #ffb4b4; }
.form-status.success { color: #9cf3d4; }
.contact-form button[disabled] {
  opacity: .65;
  cursor: wait;
  transform: none;
}

/* Blue/green brand refinements derived from the Narsolis circuit logo */
.network-card {
  box-shadow: 0 22px 60px rgba(0,0,0,.22), 0 0 70px rgba(53,189,225,.055);
}
.node-core {
  box-shadow: 0 12px 30px rgba(0,0,0,.22), 0 0 24px rgba(53,189,225,.08);
}
.status-dot {
  background: var(--accent-2);
  box-shadow: 0 0 12px rgba(121,224,0,.58);
}
.acronym-card {
  position: relative;
  overflow: hidden;
}
.acronym-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -105px;
  bottom: -115px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(121,224,0,.10), transparent 68%);
  pointer-events: none;
}
.service-card:hover {
  border-color: rgba(53,189,225,.40);
}
.solution-card.featured {
  background: linear-gradient(145deg, rgba(53,189,225,.105), rgba(121,224,0,.045));
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(53,189,225,.72);
  box-shadow: 0 0 0 3px rgba(53,189,225,.085);
}
