@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* =====================================================================
   NEEVSEMI — Design System
   ===================================================================== */

/* ─── CUSTOM PROPERTIES ─────────────────────────────────────────────── */
:root {
  --black:           #050b18;
  --light-gray:      #edf0f5;
  --near-black:      #0d1524;
  --apple-blue:      #1461f0;
  --link-blue:       #1047cc;
  --bright-blue:     #4d8eff;
  --white:           #ffffff;
  --dark-surf:       #0f1928;
  --dark-surf-2:     #0d1726;
  --text-sec-light:  rgba(0,0,0,0.68);
  --text-tert-light: rgba(0,0,0,0.44);
  --card-shadow:     rgba(10,30,80,0.13) 0px 4px 28px 0px;

  --font-display: 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-text:    'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

  --content-max: 1060px;
  --sec-pad: 100px 0;
}

/* ─── RESET ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--near-black);
  background: var(--light-gray);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a    { text-decoration: none; color: inherit; }
img, svg { display: block; max-width: 100%; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* Scroll margin so anchor links don't hide behind fixed nav */
[id] { scroll-margin-top: 64px; }

/* Skip to main content — keyboard accessibility */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 6px;
  z-index: 99999;
  background: var(--apple-blue);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
}
.skip-link:focus { left: 6px; outline: 2px solid var(--white); }

/* Focus-visible — keyboard nav only, no mouse outline */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--apple-blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─── NAVIGATION ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 9999;
  height: 48px;
  background: rgba(0,0,0,0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  display: flex;
  align-items: center;
}
.nav__inner {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav__logo span { color: var(--bright-blue); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__links a {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }

.nav__links .nav-dropdown {
  position: relative;
}
.nav__links .nav-dropdown > a { display: flex; align-items: center; gap: 3px; }
.nav__links .nav-dropdown > a::after {
  content: '▾';
  font-size: 9px;
  opacity: 0.6;
}
.dropdown-menu {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(30,30,30,0.96);
  backdrop-filter: blur(20px);
  border-radius: 12px;
  padding: 8px;
  min-width: 200px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
/* invisible bridge covers the gap between the trigger and dropdown */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  border-radius: 8px;
  transition: background 0.15s;
}
.dropdown-menu a:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.dropdown-menu a span {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

.nav__cta-link {
  background: var(--apple-blue) !important;
  color: var(--white) !important;
  padding: 6px 15px;
  border-radius: 8px;
  font-size: 12px !important;
  opacity: 1 !important;
}
.nav__cta-link:hover { background: #1052d6 !important; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav__hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 2px;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay — slide from top, always solid background (no opacity bleed) */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9997;                         /* nav sits above at 9999 */
  background: #0a0a0a;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding-top: 48px;                     /* clear the fixed nav */
  transform: translateY(-100%);          /* fully off-screen when closed */
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { transform: translateY(0); }

/* Base mobile link style */
.mobile-menu > a,
.mob-products-toggle {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.01em;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 1.3;
}
.mobile-menu > a:hover,
.mob-products-toggle:hover { color: var(--bright-blue); }

.mobile-menu .mob-cta {
  background: var(--apple-blue);
  padding: 10px 28px;
  border-radius: 8px;
  font-size: 17px !important;
  color: var(--white) !important;
}

/* Products accordion */
.mob-products {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.mob-products-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mob-arrow {
  font-size: 16px;
  display: inline-block;
  transition: transform 0.2s ease;
}
.mob-products.open .mob-arrow { transform: rotate(180deg); }

.mob-products-list {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.mob-products.open .mob-products-list { display: flex; }
.mob-products-list a {
  font-family: var(--font-display);
  font-size: 20px !important;
  color: rgba(255,255,255,0.55) !important;
  transition: color 0.2s;
}
.mob-products-list a:hover { color: var(--bright-blue) !important; }

/* ─── SECTIONS ───────────────────────────────────────────────────────── */
.section { width: 100%; padding: var(--sec-pad); }
.section--dark  { background: var(--black);      color: var(--white); }
.section--light { background: var(--light-gray); color: var(--near-black); }
.section--white { background: var(--white);      color: var(--near-black); }
.inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 22px;
}

/* ─── HERO ───────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero__bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
}
.hero__content { position: relative; z-index: 1; }

.hero__eyebrow {
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bright-blue);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--bright-blue);
  opacity: 0.5;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  line-height: 1.07;
  letter-spacing: -0.28px;
  max-width: 680px;
  margin: 0 auto 24px;
}
.hero__headline em { font-style: normal; color: var(--bright-blue); }
.hero__sub {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.47;
  letter-spacing: -0.374px;
  max-width: 560px;
  margin: 0 auto 16px;
}
.hero--dark .hero__sub { color: rgba(255,255,255,0.72); }

.hero__tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.04em;
  margin-bottom: 40px;
  font-family: var(--font-text);
}
.hero__tagline span { color: rgba(255,255,255,0.6); }

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── BUTTONS ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-text);
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  padding: 10px 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: background 0.18s, border-color 0.18s;
}
.btn--blue       { background: var(--apple-blue); color: var(--white); }
.btn--blue:hover { background: #1052d6; }
.btn--dark       { background: var(--near-black); color: var(--white); }
.btn--dark:hover { background: #162035; }

.btn--pill-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
  border-radius: 8px;
}
.btn--pill-white:hover { border-color: var(--white); }

.btn--pill-blue-outline {
  background: transparent;
  color: var(--link-blue);
  border-color: var(--link-blue);
  border-radius: 8px;
}
.btn--pill-blue-outline:hover { background: rgba(20,97,240,0.07); }

.btn--pill-blue {
  background: var(--apple-blue);
  color: var(--white);
  border-radius: 8px;
  padding: 10px 22px;
}
.btn--pill-blue:hover { background: #1052d6; }

/* ─── LEARN MORE LINKS ───────────────────────────────────────────────── */
.lm { font-size: 17px; color: var(--bright-blue); display: inline-flex; align-items: center; gap: 3px; }
.lm::after { content: ' ›'; }
.lm:hover  { text-decoration: underline; }
.lm--dark  { color: var(--link-blue); }

/* ─── SECTION HEADER ─────────────────────────────────────────────────── */
.sec-header        { text-align: center; margin-bottom: 56px; }
.sec-header .eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section--dark  .sec-header .eyebrow { color: var(--bright-blue); }
.section--light .sec-header .eyebrow { color: var(--apple-blue); }

.sec-header h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.10;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.section--dark  .sec-header h2 { color: var(--white); }
.section--light .sec-header h2 { color: var(--near-black); }

.sec-header p {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.47;
  max-width: 560px;
  margin: 0 auto;
}
.section--dark  .sec-header p { color: rgba(255,255,255,0.70); }
.section--light .sec-header p { color: var(--text-sec-light); }

/* ─── VALUE PROPS ────────────────────────────────────────────────────── */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 28px;
  box-shadow: var(--card-shadow);
}
.value-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  color: var(--apple-blue);
}
.value-card__title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.19;
  letter-spacing: 0.231px;
  color: var(--near-black);
  margin-bottom: 10px;
}
.value-card__body {
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: -0.374px;
  color: var(--text-sec-light);
}

/* ─── PRODUCT CARDS ──────────────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
}
.product-card__vis {
  background: var(--near-black);
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.product-card__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bright-blue);
  margin-bottom: 6px;
}
.product-card__body {
  padding: 24px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card__title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.19;
  letter-spacing: 0.231px;
  color: var(--near-black);
  margin-bottom: 8px;
}
.product-card__desc {
  font-size: 14px;
  line-height: 1.43;
  letter-spacing: -0.224px;
  color: var(--text-sec-light);
  flex: 1;
  margin-bottom: 20px;
}
.product-card__links { display: flex; gap: 18px; align-items: center; }
.pc-link {
  font-size: 14px;
  letter-spacing: -0.224px;
  color: var(--link-blue);
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.pc-link::after  { content: ' ›'; }
.pc-link:hover   { text-decoration: underline; }

/* ─── PLATFORM SECTION ───────────────────────────────────────────────── */
.platform-intro { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.platform-intro h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.10;
  color: var(--white);
  margin-bottom: 12px;
}
.platform-intro .sub-name {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.platform-intro p { font-size: 17px; color: rgba(255,255,255,0.72); line-height: 1.47; }

/* ─── ARCH STEPS ─────────────────────────────────────────────────────── */
.arch-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 16px;
}
.arch-step {
  background: var(--dark-surf);
  padding: 28px 20px 24px;
  text-align: center;
}
.arch-step__num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--apple-blue);
  margin-bottom: 10px;
  line-height: 1;
}
.arch-step__title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.arch-step__desc {
  font-size: 12px;
  color: rgba(255,255,255,0.52);
  line-height: 1.5;
}

/* ─── ADVANTAGES GRID ────────────────────────────────────────────────── */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.adv-card {
  background: var(--dark-surf);
  border-radius: 10px;
  padding: 26px 22px;
}
.adv-card__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.24;
  color: var(--white);
  margin-bottom: 10px;
}
.adv-card__body {
  font-size: 14px;
  line-height: 1.43;
  letter-spacing: -0.224px;
  color: rgba(255,255,255,0.58);
}

/* ─── USE CASE CHIPS ─────────────────────────────────────────────────── */
.use-cases { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.chip {
  padding: 8px 18px;
  border-radius: 980px;
  font-size: 14px;
  letter-spacing: -0.224px;
  border: 1px solid;
}
.chip--on {
  background: rgba(0,113,227,0.14);
  border-color: rgba(0,113,227,0.5);
  color: var(--bright-blue);
}
.chip--soon {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.44);
}

/* ─── BENCHMARK BARS ─────────────────────────────────────────────────── */
.bench-wrap { display: flex; flex-direction: column; gap: 14px; }
.bench-row  { display: flex; align-items: center; gap: 12px; }
.bench-lbl  {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  width: 86px;
  text-align: right;
  flex-shrink: 0;
}
.bench-track {
  flex: 1;
  height: 7px;
  background: rgba(255,255,255,0.08);
  border-radius: 980px;
  overflow: hidden;
}
.bench-fill {
  height: 100%;
  border-radius: 980px;
  background: var(--apple-blue);
  width: 0;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.bench-fill.best { background: var(--bright-blue); }
.bench-val {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  width: 38px;
  flex-shrink: 0;
}

/* ─── STATS ROW ──────────────────────────────────────────────────────── */
.stats-row { display: flex; gap: 64px; justify-content: center; margin-top: 56px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat__num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--bright-blue);
  line-height: 1;
  margin-bottom: 8px;
}
.stat__lbl { font-size: 14px; color: rgba(255,255,255,0.55); letter-spacing: -0.224px; }

/* ─── ARCHITECTURE DIAGRAM ───────────────────────────────────────────── */
.arch-diag {
  background: var(--dark-surf);
  border-radius: 12px;
  padding: 36px;
  margin-top: 48px;
  text-align: center;
}
.arch-diag__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 28px;
}
.arch-layers { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.arch-layer {
  width: 100%;
  max-width: 520px;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.arch-layer--top {
  background: rgba(41,151,255,0.12);
  border: 1px solid rgba(41,151,255,0.28);
  color: var(--bright-blue);
}
.arch-layer--mid {
  background: var(--apple-blue);
  color: var(--white);
}
.arch-layer--bot {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.65);
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.arch-arrow { color: rgba(255,255,255,0.25); font-size: 16px; line-height: 1; }
.arch-meta  { margin-top: 18px; font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 0.04em; }

/* ─── DEPLOY BOX ─────────────────────────────────────────────────────── */
.deploy-box {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 32px;
  margin-top: 48px;
  text-align: center;
  position: relative;
}
.deploy-box__label {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  padding: 0 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
}
.deploy-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.deploy-item {
  background: var(--dark-surf);
  border-radius: 8px;
  padding: 20px 16px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  text-align: center;
}
.deploy-item svg { width: 28px; height: 28px; margin: 0 auto 8px; }

/* ─── FEATURE LIST ───────────────────────────────────────────────────── */
.feat-list { display: flex; flex-direction: column; gap: 18px; }
.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.feat-check {
  width: 22px;
  height: 22px;
  background: var(--apple-blue);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.feat-check::after {
  content: '✓';
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
}
.feat-item p {
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: -0.374px;
}
.feat-item--light p { color: var(--text-sec-light); }
.feat-item--dark  p { color: rgba(255,255,255,0.78); }

/* ─── CONTACT FORM ───────────────────────────────────────────────────── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.field input,
.field textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--font-text);
  font-size: 17px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--apple-blue);
  outline: 2px solid rgba(0,113,227,0.35);
}
.field textarea     { resize: vertical; min-height: 120px; line-height: 1.47; }
.field ::placeholder { color: rgba(255,255,255,0.25); }
.field--error { border-color: #ff3b30 !important; outline: 2px solid rgba(255,59,48,0.25) !important; }

.contact-info { display: flex; flex-direction: column; gap: 24px; padding-top: 8px; }
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.14;
  color: var(--white);
  margin-bottom: 4px;
}
.contact-info p { font-size: 17px; color: rgba(255,255,255,0.60); line-height: 1.47; }

.info-item { display: flex; align-items: flex-start; gap: 12px; }
.info-item svg {
  width: 20px;
  height: 20px;
  color: var(--bright-blue);
  flex-shrink: 0;
  margin-top: 3px;
}
.info-item p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.5; }
.info-item a { color: var(--bright-blue); }
.info-item a:hover { text-decoration: underline; }

/* ─── ABOUT SPLIT ────────────────────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-split__text h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.10;
  color: var(--near-black);
  margin-bottom: 20px;
}
.about-split__text p {
  font-size: 17px;
  line-height: 1.47;
  color: var(--text-sec-light);
  margin-bottom: 14px;
}
.about-split__visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-stat-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px 28px;
  box-shadow: var(--card-shadow);
  display: flex;
  align-items: center;
  gap: 20px;
}
.about-stat-card__num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--apple-blue);
  line-height: 1;
  white-space: nowrap;
}
.about-stat-card__text { font-size: 14px; color: var(--text-sec-light); line-height: 1.4; }
.about-stat-card__text strong { font-weight: 600; color: var(--near-black); display: block; font-size: 15px; }

/* ─── TEAM CARDS ─────────────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.team-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: var(--card-shadow);
  text-align: center;
}
.team-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--apple-blue), var(--bright-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
}
.team-card__name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--near-black);
  margin-bottom: 6px;
}
.team-card__role {
  font-size: 14px;
  color: var(--apple-blue);
  font-weight: 500;
  margin-bottom: 4px;
}
.team-card__din {
  font-size: 12px;
  color: rgba(0,0,0,0.38);
  letter-spacing: 0.03em;
}

/* ─── PAGE HERO (product pages) ──────────────────────────────────────── */
.page-hero {
  padding-top: calc(48px + 88px);
  padding-bottom: 88px;
  text-align: center;
}
.page-hero .eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bright-blue);
  margin-bottom: 18px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  line-height: 1.07;
  letter-spacing: -0.28px;
  margin-bottom: 22px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero p {
  font-size: 19px;
  line-height: 1.47;
  color: rgba(255,255,255,0.70);
  max-width: 560px;
  margin: 0 auto 36px;
}

/* ─── TWO-COL SPLIT ──────────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ─── CTA BANNER ─────────────────────────────────────────────────────── */
.cta-banner { text-align: center; padding: 88px 22px; }
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.10;
  color: var(--white);
  margin-bottom: 14px;
}
.cta-banner p {
  font-size: 19px;
  color: rgba(255,255,255,0.68);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─────────────────────────────────────────────────────────── */
.footer { background: var(--near-black); padding: 64px 0 36px; }
.footer__inner { max-width: var(--content-max); margin: 0 auto; padding: 0 22px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}
.footer__brand h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.footer__brand h3 span { color: var(--bright-blue); }
.footer__brand .tagline {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}
.footer__brand p {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 240px;
  margin-bottom: 16px;
}
.footer__brand-links { display: flex; gap: 14px; }
.footer__brand-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer__brand-links a:hover { color: var(--white); }

/* Simple footer layout */
.footer__simple {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.footer__brand-simple h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.footer__brand-simple h3 span { color: var(--bright-blue); }
.footer__brand-simple p {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 6px;
}
.footer__brand-simple a {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer__brand-simple a:hover { color: var(--white); }
.footer__legal-simple a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer__legal-simple a:hover { color: var(--white); }

.footer__col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer__col ul a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.footer__bottom a { color: rgba(255,255,255,0.45); }
.footer__bottom a:hover { color: var(--white); }

/* ─── ANIMATIONS ─────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards; opacity: 0; }
.fade-up.d1 { animation-delay: 0.1s; }
.fade-up.d2 { animation-delay: 0.22s; }
.fade-up.d3 { animation-delay: 0.34s; }
.fade-up.d4 { animation-delay: 0.46s; }
.fade-up.d5 { animation-delay: 0.58s; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__headline, .page-hero h1 { font-size: 40px; }
  .sec-header h2, .cta-banner h2 { font-size: 34px; }
  .arch-strip { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  :root { --sec-pad: 72px 0; }
  .hero__headline, .page-hero h1 { font-size: 32px; letter-spacing: -0.16px; }
  .sec-header h2, .cta-banner h2 { font-size: 28px; }
  .value-grid, .product-grid, .adv-grid, .team-grid { grid-template-columns: 1fr; }
  .two-col, .about-split, .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { grid-template-columns: 1fr; }
  .arch-strip { grid-template-columns: 1fr; }
  .stats-row { gap: 40px; }
  .deploy-inner { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
  .hero__eyebrow::before, .hero__eyebrow::after { width: 20px; }
}
@media (max-width: 480px) {
  .hero__headline, .page-hero h1 { font-size: 28px; }
  .btn { font-size: 15px; padding: 9px 18px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__simple { flex-direction: column; align-items: flex-start; gap: 16px; }
  .inner { padding: 0 16px; }
}

/* ─── MOBILE DROPDOWN (touch devices) ───────────────────────────────── */
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* ─── NAV ALIGNMENT FIX ──────────────────────────────────────────────── */
.nav__links li       { display: flex; align-items: center; }
.nav__links li > a   { display: flex; align-items: center; line-height: 1; }

/* ─── HONEYPOT FIELD (hidden from users, visible to bots) ───────────── */
.hn-pot {
  display: none;
}

/* ─── FORM LOADING STATE ─────────────────────────────────────────────── */
.btn[disabled] { opacity: 0.7; cursor: not-allowed; }

/* ─── PRINT STYLES ───────────────────────────────────────────────────── */
@media print {
  .nav, .mobile-menu, .hero__ctas, footer { display: none !important; }
  body { background: white; color: black; }
  .section--dark { background: white !important; color: black !important; }
}
