/* ============================================================
   INTEK Technology Solutions — Site Stylesheet
   Theme: cinematic dark · glowing core · blueprint grid
   Palette: brand purple #9534DB · brand cyan #00B7F0
   Type: Oswald (display) · Source Sans 3 (body)
   ============================================================ */

/* Self-hosted variable fonts (latin subset) — no render-blocking Google CSS */
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url("../fonts/oswald-var.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url("../fonts/sourcesans3-var.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --black: #04070d;
  --navy-950: #060b16;
  --navy-900: #0a1222;
  --navy-800: #0f1a30;
  --surface: #0c1526;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --cyan: #00b7f0;
  --cyan-soft: #66d6ff;
  --purple: #9534db;
  --purple-soft: #b06ae8;
  --text: #e9eff8;
  --muted: #93a3bc;
  --radius: 12px;
  --glow-cyan: 0 0 24px rgba(0, 183, 240, 0.35);
  --glow-purple: 0 0 32px rgba(149, 52, 219, 0.35);
  --maxw: 72rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
}

/* Faint blueprint grid across the whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 4rem 4rem;
}

main, .site-header, .site-footer { position: relative; z-index: 1; }

h1, h2, h3, h4 {
  font-family: "Oswald", "Bahnschrift", "Arial Narrow", sans-serif;
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 0.6em;
  letter-spacing: 0.01em;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

p { margin: 0 0 1.1em; color: var(--muted); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan); }
a:hover { color: var(--cyan-soft); }

.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2rem);
}

/* ---------- Eyebrow / section labels ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Oswald", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
}

/* Ghost section numbers (01 / 02 / 03 …) */
body { counter-reset: sec; }
.section-head { position: relative; }
.section-head::before {
  counter-increment: sec;
  content: "0" counter(sec);
  position: absolute;
  top: -2.2rem;
  left: -0.4rem;
  font-family: "Oswald", sans-serif;
  font-size: clamp(4rem, 9vw, 6.5rem);
  font-weight: 600;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  z-index: -1;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(4, 7, 13, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
}
.brand-logo {
  height: 2.7rem;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 10px rgba(149, 52, 219, 0.35));
}
.site-footer .brand-logo { height: 2.4rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links > li { position: relative; }
.nav-links a {
  display: block;
  padding: 0.6rem 0.85rem;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.2s, background-color 0.2s;
}
.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] { color: var(--cyan-soft); background: rgba(0, 183, 240, 0.08); }

.has-dropdown > a::after {
  content: "";
  display: inline-block;
  margin-left: 0.45rem;
  width: 0.42rem;
  height: 0.42rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 16rem;
  list-style: none;
  margin: 0;
  padding: 0.5rem;
  background: var(--navy-900);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), var(--glow-purple);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a { padding: 0.55rem 0.8rem; font-weight: 500; }

.nav-cta { display: inline-flex; align-items: center; gap: 0.5rem; white-space: nowrap; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 0.5rem 0.6rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.7rem;
  font-family: "Oswald", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.25s;
}
.btn-primary {
  background: var(--cyan);
  color: var(--black);
  box-shadow: 0 0 0 rgba(0, 183, 240, 0);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--cyan-soft);
  color: var(--black);
  box-shadow: var(--glow-cyan);
}
.btn-outline {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-outline:hover, .btn-outline:focus-visible {
  border-color: var(--purple-soft);
  color: var(--purple-soft);
  box-shadow: var(--glow-purple);
}
.btn-outline-dark {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-outline-dark:hover, .btn-outline-dark:focus-visible {
  border-color: var(--cyan);
  color: var(--cyan-soft);
  box-shadow: var(--glow-cyan);
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(60rem 34rem at 78% 20%, rgba(149, 52, 219, 0.16), transparent 60%),
    radial-gradient(50rem 30rem at 10% 100%, rgba(0, 183, 240, 0.10), transparent 55%),
    var(--black);
  color: var(--text);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero .container { position: relative; }
.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-inner { padding: clamp(4rem, 9vw, 7rem) 0 clamp(3.5rem, 7vw, 6rem); max-width: 50rem; }
.hero h1 { text-shadow: 0 0 60px rgba(0, 183, 240, 0.18); }
.hero p.lede {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--muted);
  max-width: 42rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero-sub { margin-top: 1.6rem; font-size: 0.92rem; letter-spacing: 0.06em; color: var(--muted); }

/* ---------- Animated core (hero centerpiece) ---------- */
.hero-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 30rem;
  margin-inline: auto;
  width: 100%;
}
.hero-visual .core-glow {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 183, 240, 0.28) 0%, rgba(149, 52, 219, 0.16) 45%, transparent 70%);
  animation: corePulse 5s ease-in-out infinite;
}
.hero-visual .core-orb {
  position: absolute;
  inset: 38%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 32%, #ffffff 0%, var(--cyan-soft) 22%, var(--cyan) 45%, var(--purple) 85%, #4a1a70 100%);
  box-shadow:
    0 0 40px rgba(0, 183, 240, 0.55),
    0 0 110px rgba(149, 52, 219, 0.45);
  animation: corePulse 5s ease-in-out infinite;
}
.hero-visual .ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
}
.hero-visual .ring-1 { inset: 24%; animation: spin 36s linear infinite; }
.hero-visual .ring-1::after {
  content: "";
  position: absolute;
  top: -4px; left: 50%;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}
.hero-visual .ring-2 {
  inset: 10%;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  animation: spinReverse 60s linear infinite;
}
.hero-visual .ring-2::after {
  content: "";
  position: absolute;
  bottom: 6%; right: 12%;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--purple-soft);
  box-shadow: 0 0 12px var(--purple);
}
.hero-visual .ring-3 { inset: -2%; border-color: var(--line); animation: spin 90s linear infinite; }
.hero-visual .ring-3::after {
  content: "";
  position: absolute;
  top: 18%; left: 4%;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--cyan-soft);
  box-shadow: 0 0 10px var(--cyan);
}
/* faint crosshair lines through the core */
.hero-visual::before, .hero-visual::after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.10), transparent);
}
.hero-visual::before { left: -6%; right: -6%; top: 50%; height: 1px; }
.hero-visual::after { top: -6%; bottom: -6%; left: 50%; width: 1px; background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.10), transparent); }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinReverse { to { transform: rotate(-360deg); } }
@keyframes corePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.88; }
}

/* Hero video (replaces CSS orb when present) */
.hero-visual.hero-video {
  aspect-ratio: 16 / 9;
  max-width: 40rem;
}
.hero-vid {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.12); /* push the frame edges out past the mask */
  mix-blend-mode: screen; /* melts the video's black bg into the page */
  /* feather edges so the video floats instead of sitting in a box */
  mask-image: radial-gradient(ellipse 62% 62% at 50% 50%, black 42%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 62% 62% at 50% 50%, black 42%, transparent 72%);
  transition: opacity 0.25s ease;
}
.hero-visual.hero-video::before, .hero-visual.hero-video::after { display: none; }

/* Page hero (interior pages) */
.page-hero { padding: clamp(3rem, 6vw, 4.5rem) 0; }
.page-hero .hero-inner { padding: 0; }

.breadcrumbs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1.3rem;
  padding: 0;
  font-size: 0.88rem;
}
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--cyan-soft); }
.breadcrumbs li + li::before { content: "/"; margin-right: 0.4rem; color: rgba(255, 255, 255, 0.25); }
.breadcrumbs [aria-current] { color: var(--text); }

/* ---------- Stats band ---------- */
.stats-band { background: var(--navy-950); color: var(--text); border-bottom: 1px solid var(--line); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  gap: 1px;
  background: var(--line);
}
.stat { background: var(--navy-950); padding: 1.7rem 1.2rem; text-align: center; }
.stat-value {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 600;
  color: var(--cyan);
  text-shadow: 0 0 24px rgba(0, 183, 240, 0.45);
}
.stat-label {
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
}

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-dark {
  background:
    radial-gradient(44rem 26rem at 100% 0%, rgba(149, 52, 219, 0.12), transparent 55%),
    var(--navy-950);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-tint {
  background:
    radial-gradient(40rem 24rem at 0% 100%, rgba(0, 183, 240, 0.06), transparent 55%),
    var(--navy-950);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head { max-width: 46rem; margin-bottom: clamp(2.2rem, 5vw, 3.4rem); }
.section-head p { color: var(--muted); font-size: 1.1rem; }

/* ---------- Cards / grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }

.card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  transition: border-color 0.25s, box-shadow 0.3s var(--ease), background-color 0.25s;
}
.card::after {
  content: "";
  position: absolute;
  top: 0; left: 1.7rem;
  width: 2.6rem; height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  opacity: 0;
  transition: opacity 0.25s;
}
.card:hover {
  border-color: rgba(0, 183, 240, 0.4);
  box-shadow: 0 0 32px rgba(0, 183, 240, 0.10), inset 0 0 24px rgba(0, 183, 240, 0.03);
}
.card:hover::after { opacity: 1; }

a.card { display: block; text-decoration: none; color: inherit; cursor: pointer; }
a.card h3 { color: var(--text); transition: color 0.2s; }
a.card:hover h3 { color: var(--cyan-soft); }
.card p { color: var(--muted); margin-bottom: 0; }
.card-icon {
  width: 2.75rem; height: 2.75rem;
  color: var(--cyan);
  margin-bottom: 1.1rem;
  filter: drop-shadow(0 0 10px rgba(0, 183, 240, 0.4));
}
.card-more {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--cyan);
}

.card-dark { background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)); border-color: var(--line); }
.card-dark h3 { color: var(--text); }
.card-dark p { color: var(--muted); }
.card-dark:hover { border-color: rgba(149, 52, 219, 0.5); box-shadow: 0 0 32px rgba(149, 52, 219, 0.12); }

/* ---------- Checklist ---------- */
.checklist { list-style: none; margin: 0 0 1.2rem; padding: 0; display: grid; gap: 0.7rem; }
.checklist li { position: relative; padding-left: 2.1rem; color: var(--muted); }
.checklist li strong { color: var(--text); }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.32em;
  width: 1.05rem; height: 1.05rem;
  border-radius: 50%;
  background: var(--cyan);
  filter: drop-shadow(0 0 6px rgba(0, 183, 240, 0.6));
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="black"><path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.7-9.3a1 1 0 00-1.4-1.4L9 10.6 7.7 9.3a1 1 0 00-1.4 1.4l2 2a1 1 0 001.4 0l4-4z" clip-rule="evenodd"/></svg>') center / contain no-repeat;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="black"><path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.7-9.3a1 1 0 00-1.4-1.4L9 10.6 7.7 9.3a1 1 0 00-1.4 1.4l2 2a1 1 0 001.4 0l4-4z" clip-rule="evenodd"/></svg>') center / contain no-repeat;
}

/* ---------- Split layout ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

/* ---------- Process steps ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.step {
  counter-increment: step;
  position: relative;
  padding: 1.6rem 1.4rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.25s, box-shadow 0.3s;
}
.step:hover { border-color: rgba(149, 52, 219, 0.5); box-shadow: 0 0 28px rgba(149, 52, 219, 0.12); }
.step::before {
  content: "0" counter(step);
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--purple-soft);
  text-shadow: 0 0 16px rgba(149, 52, 219, 0.5);
  margin-bottom: 0.7rem;
}
.step h3 { font-size: 1.1rem; }
.step p { font-size: 0.95rem; margin: 0; }

/* ---------- Industry chips ---------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.chip {
  padding: 0.55rem 1.2rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.25s;
}
.chip:hover { border-color: var(--cyan); box-shadow: var(--glow-cyan); }

/* ---------- Partner band ---------- */
.partner-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--navy-950); }
.partner-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  padding: 1.7rem 0;
}
.partner-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.partner-name {
  font-family: "Oswald", sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text);
  text-shadow: 0 0 20px rgba(0, 183, 240, 0.25);
}

/* ---------- Quote / testimonial ---------- */
.quote { border-left: 2px solid var(--purple); padding: 0.4rem 0 0.4rem 1.4rem; margin: 0; }
.quote p { font-size: 1.15rem; font-style: italic; color: var(--muted); }
.quote footer { font-weight: 700; color: var(--text); font-style: normal; }
.quote .note { font-size: 0.9rem; font-style: normal; color: var(--cyan); margin: 0.6rem 0 0; }

/* Testimonial cards (homepage grid) */
.tcard { display: flex; flex-direction: column; }
.tcard .tquote { font-style: italic; color: var(--muted); flex: 1; }
.tcard .tattr { margin: 1.1rem 0 0; font-weight: 700; color: var(--text); }
.tcard .tattr span { display: block; font-weight: 600; font-size: 0.9rem; color: var(--muted); }
.tcard .tnote {
  margin: 0.7rem 0 0;
  padding-top: 0.7rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--cyan);
}

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  background:
    radial-gradient(36rem 20rem at 15% 0%, rgba(0, 183, 240, 0.14), transparent 55%),
    radial-gradient(36rem 20rem at 90% 100%, rgba(149, 52, 219, 0.18), transparent 55%),
    var(--navy-900);
  color: var(--text);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(2.4rem, 5vw, 3.8rem);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
  border: 1px solid var(--line-strong);
  box-shadow: 0 0 60px rgba(149, 52, 219, 0.10), 0 0 60px rgba(0, 183, 240, 0.06);
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 3rem 3rem;
  mask-image: radial-gradient(ellipse 80% 90% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 90% at 50% 50%, black 20%, transparent 80%);
  pointer-events: none;
}
.cta-banner > * { position: relative; }
.cta-banner h2 { margin-bottom: 0.4rem; }
.cta-banner p { color: var(--muted); margin: 0; }
.cta-banner .actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: flex-end; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.35rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 700; font-size: 0.95rem; color: var(--text); }
.form-field input, .form-field select, .form-field textarea {
  font: inherit;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.25s;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(147, 163, 188, 0.6); }
.form-field input:hover, .form-field textarea:hover, .form-field select:hover { border-color: var(--purple-soft); }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 16px rgba(0, 183, 240, 0.18);
}
.form-field select option { background: var(--navy-900); color: var(--text); }
.form-note { font-size: 0.9rem; color: var(--muted); }

/* ---------- Contact info ---------- */
.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; }
.info-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.info-list svg { width: 1.5rem; height: 1.5rem; flex: none; color: var(--cyan); margin-top: 0.15rem; filter: drop-shadow(0 0 8px rgba(0, 183, 240, 0.5)); }
.info-list strong { display: block; color: var(--text); }
.info-list a { font-weight: 600; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0.9rem; max-width: 50rem; }
.faq details {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq details:hover, .faq details[open] { border-color: rgba(0, 183, 240, 0.35); }
.faq summary {
  cursor: pointer;
  padding: 1.1rem 1.3rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--cyan);
  flex: none;
  transition: transform 0.25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--cyan-soft); }
.faq .faq-body { padding: 0 1.3rem 1.2rem; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: var(--muted);
  padding: clamp(2.5rem, 6vw, 4rem) 0 1.5rem;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-grid h3 {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1rem;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.footer-grid a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-grid a:hover { color: var(--cyan-soft); }
.footer-about p { font-size: 0.97rem; max-width: 24rem; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.88rem;
}

/* ---------- Scroll reveal (quiet: small offsets, long soft ease) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
/* cards settle into place with a barely-there scale */
.card.reveal, .step.reveal { transform: translateY(14px) scale(0.985); }
.card.reveal.is-visible, .step.reveal.is-visible { transform: none; }
/* eyebrow rule draws itself in as its section reveals */
.reveal .eyebrow::before {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.8s var(--ease) 0.2s;
}
.reveal.is-visible .eyebrow::before { transform: scaleX(1); }
/* legacy delay classes — superseded by JS auto-stagger, kept harmless */
.reveal-delay-1, .reveal-delay-2, .reveal-delay-3 { transition-delay: 0s; }

/* ---------- Hero entrance (plays once on load, no JS needed) ---------- */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
.hero-inner > * { animation: riseIn 0.8s var(--ease) both; }
.hero-inner > *:nth-child(2) { animation-delay: 0.08s; }
.hero-inner > *:nth-child(3) { animation-delay: 0.16s; }
.hero-inner > *:nth-child(4) { animation-delay: 0.24s; }
.hero-inner > *:nth-child(5) { animation-delay: 0.32s; }
.hero-inner > *:nth-child(6) { animation-delay: 0.40s; }
.hero-visual { animation: riseIn 1.1s var(--ease) 0.25s both; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 64rem) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { grid-template-columns: 1fr; }
  .cta-banner .actions { justify-content: flex-start; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-visual { max-width: 20rem; order: -1; margin-top: 2.5rem; }
  .hero-layout .hero-inner { padding-top: 0; }
}

@media (max-width: 48rem) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed;
    inset: 4.25rem 0 auto 0;
    max-height: calc(100vh - 4.25rem);
    overflow-y: auto;
    background: var(--black);
    border-bottom: 1px solid var(--line-strong);
    padding: 1rem 1.2rem 1.6rem;
    display: none;
  }
  .nav-menu.is-open { display: block; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0.1rem; }
  .nav-links a { padding: 0.8rem 0.6rem; font-size: 1.05rem; }
  .has-dropdown > a::after { display: none; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 1rem;
  }
  .nav-cta-desktop { display: none; }
  .grid-3, .grid-2, .split, .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
  .hero-visual { max-width: 16rem; }
  .hero-visual.hero-video { max-width: 22rem; }
  .section-head::before { font-size: 3.5rem; top: -1.6rem; }

  /* Process steps become a swipeable rail on phones */
  .steps {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 0.8rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .step { flex: 0 0 74%; scroll-snap-align: start; }

  /* Thumb-reach call bar, pinned to the bottom on phones */
  .mobile-cta-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    padding: 0.7rem 0.9rem calc(0.7rem + env(safe-area-inset-bottom));
    background: rgba(4, 7, 13, 0.92);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line-strong);
  }
  .mobile-cta-bar .btn { width: 100%; padding: 0.75rem 0.5rem; font-size: 0.88rem; }
  body { padding-bottom: 4.4rem; }
}

/* Hidden above phone width */
.mobile-cta-bar { display: none; }
@media (max-width: 48rem) { .mobile-cta-bar { display: grid; } }

/* ---------- Work / project photos ---------- */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.work-grid figure {
  margin: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.3s var(--ease);
}
.work-grid figure:hover {
  border-color: rgba(0, 183, 240, 0.4);
  box-shadow: 0 0 32px rgba(0, 183, 240, 0.12);
}
.work-grid img {
  display: block;
  width: 100%;
  height: 16rem;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.work-grid figure:hover img { transform: scale(1.04); }
.work-grid figcaption {
  padding: 0.85rem 1.1rem;
  font-size: 0.92rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.work-grid figcaption strong { color: var(--text); display: block; }
@media (max-width: 64rem) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 48rem) { .work-grid { grid-template-columns: 1fr; } }

.founder-photo { margin: 0 0 1.6rem; max-width: 17rem; }
.founder-photo img {
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  display: block;
  width: 100%;
}
.founder-photo figcaption { margin-top: 0.6rem; font-size: 0.92rem; color: var(--muted); }
.founder-photo figcaption strong { color: var(--text); display: block; }

/* ---------- Blog / article prose ---------- */
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.2rem;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0;
}
.prose { max-width: 46rem; }
.prose h2 { margin-top: 2.4em; font-size: clamp(1.4rem, 2.6vw, 1.8rem); }
.prose h3 { margin-top: 1.8em; font-size: 1.15rem; color: var(--cyan-soft); }
.prose ul { list-style: none; margin: 0 0 1.2em; padding: 0; display: grid; gap: 0.6rem; }
.prose ul li { position: relative; padding-left: 1.4rem; color: var(--muted); }
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.6em;
  width: 0.45rem; height: 0.45rem;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
}
.prose ul li strong { color: var(--text); }
.post-card .post-date {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.5rem;
}

/* ---------- Footer social icons ---------- */
.social-row { display: flex; gap: 0.7rem; margin-top: 0.5rem; }
.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s, box-shadow 0.25s;
}
.social-row a:hover, .social-row a:focus-visible {
  color: var(--cyan-soft);
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
}
.social-row svg { width: 1.1rem; height: 1.1rem; }

/* ---------- Skip link (keyboard users) ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  background: var(--cyan);
  color: var(--black);
  padding: 0.7rem 1.3rem;
  border-radius: 0 0 10px 0;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { left: 0; }
