/* ============================================================
   AQUILA360 — "Operations Deck" enterprise redesign
   Design system: navy command surface, brand cyan→azure spire,
   teal signal, mono system-readouts. No emoji, hairline grid.
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=IBM+Plex+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap");

:root {
  /* Ink / dark surfaces (the eagle body) */
  --ink: #0a1326;
  --ink-2: #0e1a31;
  --ink-3: #0c1730;
  --ink-panel: #101d38;
  --line-dark: #1e2f4f;
  --line-dark-soft: #16243f;

  /* Brand spire gradient + signal */
  --sky: #2bb6e8;
  --azure: #1e7fd4;
  --teal: #19d3b5;
  --teal-deep: #0fb8a0;

  /* Light surfaces */
  --paper: #f4f7fb;
  --paper-2: #eaf0f7;
  --card: #ffffff;
  --line: #dce4ee;
  --line-2: #e8eef5;

  /* Text */
  --text: #0a1326;
  --text-soft: #38475f;
  --muted: #6b7c95;
  --on-dark: #eaf1fb;
  --on-dark-soft: #9fb1cb;
  --on-dark-mute: #6c7f9e;

  --grad-spire: linear-gradient(135deg, var(--sky) 0%, var(--azure) 100%);

  --r-sm: 6px;
  --r: 10px;
  --r-lg: 16px;

  --shell: 1240px;
  --gutter: clamp(20px, 5vw, 64px);

  --shadow-card: 0 1px 2px rgba(10, 19, 38, 0.04),
    0 12px 32px -16px rgba(10, 19, 38, 0.18);
  --shadow-pop: 0 24px 60px -24px rgba(10, 19, 38, 0.45);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----------------------------------------------------------- Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
ul {
  list-style: none;
  padding: 0;
}
button {
  font: inherit;
  cursor: pointer;
}
::selection {
  background: var(--teal);
  color: var(--ink);
}

h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
}

/* --------------------------------------------------- Layout helpers */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
section {
  padding-block: clamp(72px, 10vw, 132px);
  position: relative;
}
.section-ink {
  background: var(--ink);
  color: var(--on-dark);
}
.section-paper {
  background: var(--paper);
}
.section-white {
  background: #fff;
}

/* Mono system-readout primitives ---------------------------------- */
.eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--teal-deep);
}
.section-ink .eyebrow {
  color: var(--teal);
}
.section-ink .eyebrow::before {
  background: var(--teal);
}
.code-tag {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--azure);
  background: rgba(30, 127, 212, 0.08);
  border: 1px solid rgba(30, 127, 212, 0.18);
  padding: 4px 9px;
  border-radius: 5px;
  white-space: nowrap;
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.section-head h2 {
  font-size: clamp(30px, 4.6vw, 50px);
  margin-top: 18px;
}
.section-head p {
  margin-top: 18px;
  font-size: 18px;
  color: var(--muted);
  max-width: 60ch;
}
.section-ink .section-head p {
  color: var(--on-dark-soft);
}

/* Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: 0.01em;
  padding: 14px 24px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease),
    box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
}
.btn svg {
  width: 18px;
  height: 18px;
}
.btn-primary {
  background: var(--teal);
  color: var(--ink);
  box-shadow: 0 10px 24px -10px rgba(25, 211, 181, 0.6);
}
.btn-primary:hover {
  background: var(--teal-deep);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--on-dark);
  border-color: var(--line-dark);
}
.btn-ghost:hover {
  border-color: var(--teal);
  color: #fff;
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover {
  background: var(--ink-2);
  transform: translatey(-2px);
}
.btn-lg {
  padding: 16px 30px;
  font-size: 16px;
}

/* ================================================= HEADER / NAV */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease),
    backdrop-filter 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 19, 38, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line-dark);
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 76px;
}
.nav__brand img {
  height: 26px;
  width: auto;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav__links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--on-dark-soft);
  padding: 9px 14px;
  border-radius: var(--r-sm);
}
.nav__links a:hover {
  color: #fff;
}
/* CTA button keeps its dark-on-teal text; without this the generic
   .nav__links a color (0-1-1) outranks .btn-primary (0-1-0). */
.nav__links a.btn-primary,
.nav__links a.btn-primary:hover {
  color: var(--ink);
}
.nav__cta {
  margin-left: 12px;
}
.nav__toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark);
  border-radius: var(--r-sm);
  background: transparent;
  position: relative;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--on-dark);
  transform: translateX(-50%);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav__toggle span {
  top: 50%;
  margin-top: -1px;
}
.nav__toggle span::before {
  top: -6px;
}
.nav__toggle span::after {
  top: 6px;
}
.nav.open .nav__toggle span {
  background: transparent;
}
.nav.open .nav__toggle span::before {
  transform: translateX(-50%) rotate(45deg);
  top: 0;
}
.nav.open .nav__toggle span::after {
  transform: translateX(-50%) rotate(-45deg);
  top: 0;
}

/* ================================================= HERO / DECK */
.hero {
  background: var(--ink);
  color: var(--on-dark);
  position: relative;
  padding-top: 150px;
  padding-bottom: clamp(72px, 9vw, 120px);
  overflow: hidden;
}
.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line-dark-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-dark-soft) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(
    ellipse 90% 80% at 70% 25%,
    #000 0%,
    transparent 75%
  );
  mask-image: radial-gradient(
    ellipse 90% 80% at 70% 25%,
    #000 0%,
    transparent 75%
  );
  opacity: 0.6;
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  width: 620px;
  height: 620px;
  top: -180px;
  right: -120px;
  background: radial-gradient(
    circle,
    rgba(43, 182, 232, 0.16) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.hero__lead .eyebrow {
  margin-bottom: 26px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
}
.hero h1 .spire {
  background: var(--grad-spire);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__sub {
  margin-top: 26px;
  font-size: 19px;
  line-height: 1.65;
  color: var(--on-dark-soft);
  max-width: 52ch;
}
.hero__cta {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero__status {
  margin-top: 34px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  color: var(--on-dark-mute);
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 20px;
}
.hero__status .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(25, 211, 181, 0.6);
  animation: pulse 2.4s infinite;
  flex: none;
}
.hero__status .cursor {
  width: 8px;
  height: 15px;
  background: var(--teal);
  display: inline-block;
  animation: blink 1.1s step-end infinite;
}

/* Deck panel ------------------------------------------------------- */
.deck {
  background: linear-gradient(180deg, var(--ink-2) 0%, var(--ink-3) 100%);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-pop);
  overflow: hidden;
}
.deck__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.015);
}
.deck__dots {
  display: flex;
  gap: 6px;
}
.deck__dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line-dark);
  display: block;
}
.deck__title {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: var(--on-dark-mute);
  letter-spacing: 0.04em;
}
.deck__live {
  margin-left: auto;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--teal);
  border: 1px solid rgba(25, 211, 181, 0.3);
  background: rgba(25, 211, 181, 0.08);
  border-radius: 40px;
  padding: 3px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.deck__live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  display: block;
  animation: pulse 2.4s infinite;
}
.deck__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-dark-soft);
}
.module {
  background: var(--ink-2);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 132px;
  position: relative;
  opacity: 0;
  transform: translateY(8px);
}
.module.lit {
  animation: modulein 0.6s var(--ease) forwards;
}
.module__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.module__code {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--sky);
}
.module__stat {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--on-dark-mute);
}
.module.lit .module__stat {
  background: var(--teal);
  box-shadow: 0 0 8px rgba(25, 211, 181, 0.7);
}
.module h4 {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.module p {
  font-size: 13px;
  color: #93a6c2;
  line-height: 1.45;
  margin-top: auto;
}

/* Marquee logos / trust strip ------------------------------------- */
.trust {
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
  padding-block: 30px;
}
.trust__inner {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.trust__label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-dark-mute);
}
.trust__items {
  display: flex;
  gap: 14px 36px;
  flex-wrap: wrap;
}
.trust__items span {
  font-size: 15px;
  font-weight: 500;
  color: var(--on-dark-soft);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.trust__items svg {
  width: 17px;
  height: 17px;
  color: var(--teal);
  flex: none;
}

/* ================================================= SERVICES */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.svc {
  background: #fff;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: background 0.25s var(--ease);
  position: relative;
}
.svc:hover {
  background: var(--paper);
}
.svc__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.svc__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-sm);
  background: var(--ink);
  color: var(--teal);
  display: grid;
  place-items: center;
}
.svc__icon svg {
  width: 23px;
  height: 23px;
}
.svc.feature .svc__icon {
  background: var(--grad-spire);
  color: #fff;
}
.svc h3 {
  font-size: 21px;
  margin-bottom: 10px;
}
.svc__desc {
  color: var(--muted);
  font-size: 15.5px;
  margin-bottom: 20px;
}
.svc__list {
  margin-top: auto;
  border-top: 1px solid var(--line-2);
  padding-top: 18px;
  display: grid;
  gap: 9px;
}
.svc__list li {
  font-size: 14.5px;
  color: var(--text-soft);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.svc__list li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 8px;
  border-radius: 1px;
  background: var(--teal);
  flex: none;
  transform: rotate(45deg);
}

/* ================================================= ODOO PARTNERSHIP */
.odoo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.odoo__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 40px;
  padding: 8px 16px 8px 10px;
  margin-bottom: 24px;
}
.odoo__badge img {
  height: 22px;
}
.odoo__badge span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-soft);
  font-weight: 500;
}
.odoo h2 {
  font-size: clamp(28px, 4vw, 46px);
}
.odoo__lead {
  margin-top: 20px;
  color: var(--muted);
  font-size: 17px;
}
.odoo__lead a {
  color: var(--azure);
  font-weight: 600;
  border-bottom: 1px solid rgba(30, 127, 212, 0.3);
}
.odoo__points {
  margin-top: 28px;
  display: grid;
  gap: 4px;
}
.odoo__point {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.odoo__point svg {
  width: 22px;
  height: 22px;
  color: var(--teal-deep);
  flex: none;
  margin-top: 3px;
}
.odoo__point h5 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 16.5px;
  font-weight: 600;
  margin-bottom: 4px;
}
.odoo__point p {
  font-size: 15px;
  color: var(--muted);
}
.odoo__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.odoo-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 22px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.odoo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.odoo-card .code-tag {
  margin-bottom: 16px;
  display: inline-block;
}
.odoo-card h4 {
  font-size: 17px;
  margin-bottom: 8px;
}
.odoo-card p {
  font-size: 14px;
  color: var(--muted);
}

/* Stat band (mono readouts) --------------------------------------- */
.statband {
  margin-top: clamp(48px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  overflow: hidden;
}
.section-ink .statband {
  background: var(--ink-2);
  border-color: var(--line-dark);
}
.statband .stat {
  padding: 30px 26px;
  border-right: 1px solid var(--line);
}
.section-ink .statband .stat {
  border-right-color: var(--line-dark);
}
.statband .stat:last-child {
  border-right: 0;
}
.stat__num {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 600;
  font-feature-settings: "tnum";
  letter-spacing: -0.02em;
  line-height: 1;
  background: var(--grad-spire);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat__label {
  margin-top: 12px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.section-ink .stat__label {
  color: var(--on-dark-mute);
}

/* ================================================= ABOUT (ink) */
.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.about h2 {
  color: #fff;
  font-size: clamp(30px, 4.4vw, 50px);
  margin-top: 18px;
}
.about__body p {
  color: var(--on-dark-soft);
  font-size: 18px;
  margin-bottom: 20px;
}
.about__body p.lead {
  font-size: 21px;
  color: var(--on-dark);
}

/* ================================================= VALUES */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.value {
  background: #fff;
  padding: 34px 30px;
}
.value__n {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: var(--azure);
  letter-spacing: 0.1em;
}
.value__icon {
  margin: 16px 0 18px;
  color: var(--ink);
}
.value__icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--teal-deep);
}
.value h4 {
  font-size: 19px;
  margin-bottom: 10px;
}
.value p {
  font-size: 15px;
  color: var(--muted);
}

/* ================================================= GLOBAL REACH */
.regions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.region {
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 22px;
  background: #fff;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.region:hover {
  transform: translateY(-4px);
  border-color: var(--teal);
}
.region__code {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.region h4 {
  font-size: 19px;
  margin: 14px 0 8px;
}
.region p {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 16px;
}
.region__tag {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-deep);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.region__tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}
.industries {
  margin-top: clamp(48px, 6vw, 72px);
}
.industries h3 {
  font-size: 24px;
  margin-bottom: 28px;
}
.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.ind {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: #fff;
  font-weight: 500;
  font-size: 15px;
}
.ind svg {
  width: 22px;
  height: 22px;
  color: var(--azure);
  flex: none;
}

/* ================================================= CONTACT */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
}
.contact h2 {
  color: #fff;
  font-size: clamp(30px, 4.4vw, 50px);
  margin-top: 18px;
}
.contact__lead {
  margin-top: 20px;
  color: var(--on-dark-soft);
  font-size: 18px;
  max-width: 44ch;
}
.contact__methods {
  margin-top: 38px;
  display: grid;
  gap: 4px;
}
.cmethod {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line-dark);
  align-items: flex-start;
}
.cmethod svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
  flex: none;
  margin-top: 3px;
}
.cmethod h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 4px;
}
.cmethod a,
.cmethod p {
  color: var(--on-dark-soft);
  font-size: 15px;
  display: block;
}
.cmethod a:hover {
  color: var(--teal);
}
.contact__social {
  margin-top: 30px;
  display: flex;
  gap: 12px;
}
.contact__social a {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark);
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  color: var(--on-dark-soft);
}
.contact__social a:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.contact__social svg {
  width: 19px;
  height: 19px;
}

/* Form */
.form-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-pop);
}
.form-card h3 {
  font-size: 24px;
}
.form-card > p {
  color: var(--muted);
  font-size: 15px;
  margin-top: 6px;
  margin-bottom: 26px;
}
.field {
  margin-bottom: 20px;
}
.field label {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 13px 15px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease),
    background 0.2s var(--ease);
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(25, 211, 181, 0.15);
}
.form-card .btn {
  width: 100%;
  justify-content: center;
}
.form-msg {
  text-align: center;
  padding: 30px 10px;
}
.form-msg svg {
  width: 56px;
  height: 56px;
  color: var(--teal);
  margin: 0 auto 18px;
}
.form-msg h3 {
  margin-bottom: 10px;
}
.form-msg p {
  color: var(--muted);
  margin-bottom: 20px;
}

/* ================================================= FOOTER */
.footer {
  background: var(--ink-3);
  color: var(--on-dark-soft);
  border-top: 1px solid var(--line-dark);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-block: clamp(56px, 7vw, 80px);
}
.footer__about img {
  height: 64px;
  margin-bottom: 20px;
}
.footer__about p {
  font-size: 15px;
  max-width: 38ch;
  margin-bottom: 22px;
}
.footer__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__tags span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--on-dark-soft);
  border: 1px solid var(--line-dark);
  border-radius: 5px;
  padding: 5px 10px;
}
.footer h5 {
  font-family: "Space Grotesk", sans-serif;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer__links li {
  margin-bottom: 11px;
}
.footer__links a {
  font-size: 15px;
  color: var(--on-dark-soft);
}
.footer__links a:hover {
  color: var(--teal);
}
.footer__contact li {
  display: flex;
  gap: 11px;
  margin-bottom: 13px;
  font-size: 14.5px;
  align-items: flex-start;
}
.footer__contact svg {
  width: 17px;
  height: 17px;
  color: var(--teal);
  flex: none;
  margin-top: 3px;
}
.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer__social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-dark);
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  color: var(--on-dark-soft);
}
.footer__social a:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.footer__social svg {
  width: 17px;
  height: 17px;
}
.footer__bottom {
  border-top: 1px solid var(--line-dark);
  padding-block: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p {
  font-size: 13.5px;
  color: var(--on-dark-mute);
}
.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a {
  font-size: 13.5px;
  color: var(--on-dark-mute);
}
.footer__legal a:hover {
  color: var(--teal);
}

/* ================================================= REVEAL / MOTION */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@keyframes modulein {
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(25, 211, 181, 0.5);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(25, 211, 181, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(25, 211, 181, 0);
  }
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* ================================================= RESPONSIVE */
@media (max-width: 980px) {
  .hero__inner,
  .odoo,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 124px;
  }
  .deck {
    max-width: 520px;
  }
  .svc-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .regions,
  .ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .statband {
    grid-template-columns: repeat(2, 1fr);
  }
  .statband .stat:nth-child(2) {
    border-right: 0;
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav__links {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(10, 19, 38, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line-dark);
    padding: 14px var(--gutter) 24px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  }
  .nav.open .nav__links {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .nav__links a {
    padding: 14px 6px;
    font-size: 16px;
    border-bottom: 1px solid var(--line-dark-soft);
  }
  .nav__cta {
    margin: 12px 0 0;
    justify-content: center;
  }
  .nav__toggle {
    display: block;
  }
  .nav__brand {
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }
  .svc-grid,
  .values-grid,
  .odoo__cards,
  .regions,
  .ind-grid,
  .statband {
    grid-template-columns: 1fr;
  }
  .statband .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .deck__grid {
    grid-template-columns: 1fr;
  }
  .footer__top {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ================================================= A11Y */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 3px;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .module {
    opacity: 1;
    transform: none;
  }
}
