/* ===================================================================
   NelX Technologies — Bespoke layer
   Tailwind handles layout/utilities; this file handles the premium
   metallic depth, the logo lockup, the interactive X, and motion.
   =================================================================== */

:root {
  --nred: #DC2626;
  --nred-bright: #EF4444;
  --nred-deep: #B91C1C;
  --obsidian: #0B0F19;
  --chrome: #94A3B8;
  --steel: #CBD5E1;
  --platinum: #F1F5F9;
  --anodized: #475569;
}

* { -webkit-font-smoothing: antialiased; }
html { scroll-behavior: smooth; }
/* overflow-x: clip prevents horizontal scroll WITHOUT turning <body> into a
   scroll container (which `hidden` would, breaking window.scrollY + sticky nav). */
body { overflow-x: clip; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--obsidian); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--anodized), #2b3445);
  border-radius: 99px;
  border: 2px solid var(--obsidian);
}
::-webkit-scrollbar-thumb:hover { background: var(--chrome); }

/* Shared accent: a key word underlined in Tech Red */
.headline-accent {
  position: relative;
  color: #fff;
  white-space: nowrap;
}
.headline-accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -0.12em;
  height: 0.14em;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--nred), var(--nred-bright));
  box-shadow: 0 0 22px rgba(220, 38, 38, .65);
}
section.bg-platinum .headline-accent { color: var(--obsidian); }

/* ---------- Eyebrow / kicker ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: "JetBrains Mono", monospace;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  color: var(--chrome);
}
.eyebrow--light { color: var(--steel); }
.eyebrow--dark  { color: var(--anodized); }
.eyebrow-dot {
  width: .5rem; height: .5rem; border-radius: 99px;
  background: var(--chrome);
  box-shadow: 0 0 0 4px rgba(148, 163, 184, .15);
}
.eyebrow-dot--red {
  background: var(--nred);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, .2);
}

/* ===================================================================
   BUTTONS
   =================================================================== */
.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  border-radius: .7rem;
  padding: .65rem 1.15rem;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn-lg { padding: .85rem 1.5rem; font-size: 1rem; border-radius: .8rem; }

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, var(--nred-bright), var(--nred-deep));
  box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 14px 30px -12px rgba(220,38,38,.7);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255,255,255,.3) inset, 0 20px 40px -12px rgba(220,38,38,.85);
}
.btn-primary svg { transition: transform .25s ease; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
  color: #fff;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(203, 213, 225, .25);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  border-color: rgba(203, 213, 225, .6);
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}

/* ===================================================================
   NAVIGATION
   =================================================================== */
.nav { backdrop-filter: blur(0px); }
.nav.is-scrolled {
  background: rgba(11, 15, 25, .82);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(148, 163, 184, .14);
  box-shadow: 0 10px 40px -20px rgba(0,0,0,.8);
}
.nav-link {
  position: relative;
  font-size: .92rem;
  font-weight: 500;
  color: var(--steel);
  transition: color .2s ease;
}
.nav-link::after {
  content: "";
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; border-radius: 99px;
  background: var(--nred);
  transition: width .25s ease;
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }

/* Logo lockup */
.logo-word { line-height: 1; color: #fff; }
.nav:not(.is-scrolled) .logo-word { color: #fff; }
.logo-ne { color: inherit; }
.logo-l  { color: var(--chrome); }
.logo-x  {
  color: var(--nred);
  text-shadow: 0 0 18px rgba(220, 38, 38, .5);
}
.logo-sub {
  display: block;
  margin-top: 3px;
  font-family: "JetBrains Mono", monospace;
  font-size: .5rem;
  font-weight: 500;
  letter-spacing: .42em;
  color: var(--chrome);
  text-shadow: none;
}
.logo-mark-bg { fill: var(--obsidian); stroke: rgba(148,163,184,.5); stroke-width: 1; }
.logo-mark-x  { stroke: var(--nred); stroke-width: 6; stroke-linecap: round; }
.logo-node-a  { fill: var(--platinum); }
.logo-node-b  { fill: var(--nred); }
.logo:hover .logo-mark-x { stroke: var(--nred-bright); }

/* Mobile toggle */
.menu-toggle {
  display: flex; flex-direction: column; justify-content: center;
  gap: 5px; width: 42px; height: 42px;
  border-radius: .6rem;
  border: 1px solid rgba(148,163,184,.25);
  background: rgba(255,255,255,.04);
}
.menu-toggle span {
  display: block; height: 2px; width: 20px; margin: 0 auto;
  background: var(--steel); border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  overflow: hidden;
  max-height: 0;
  background: rgba(11, 15, 25, .96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(148,163,184,.12);
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.is-open { max-height: 360px; }
.mobile-link {
  padding: .85rem .25rem;
  font-size: 1.05rem; font-weight: 500;
  color: var(--steel);
  border-bottom: 1px solid rgba(148,163,184,.08);
}
.mobile-link:hover { color: #fff; }

/* ===================================================================
   HERO
   =================================================================== */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(148,163,184,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 40%, transparent 100%);
}
.hero-glow {
  position: absolute; top: -10%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(circle, rgba(220,38,38,.18), transparent 60%);
  filter: blur(20px);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; }
.hero-orb--steel { width: 420px; height: 420px; right: -120px; top: 12%; background: radial-gradient(circle, rgba(148,163,184,.4), transparent 65%); }
.hero-orb--red   { width: 360px; height: 360px; left: -100px; bottom: 6%; background: radial-gradient(circle, rgba(220,38,38,.28), transparent 65%); }

/* Metric strip */
.metric { background: var(--obsidian); padding: 1.1rem 1.2rem; }
.metric dt { font-family: "JetBrains Mono", monospace; font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--chrome); }
.metric dd { margin-top: .35rem; font-family: "Space Grotesk", sans-serif; font-size: 1.25rem; font-weight: 700; color: #fff; }

/* Metallic system panel */
.panel-metallic {
  position: relative;
  border-radius: 1.1rem;
  padding: 1px;
  background: linear-gradient(160deg, rgba(241,245,249,.9), rgba(148,163,184,.5) 45%, rgba(71,85,105,.6));
  box-shadow: 0 30px 70px -28px rgba(0,0,0,.85);
}
.panel-metallic::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(255,255,255,.8), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.panel-head {
  display: flex; align-items: center; gap: .4rem;
  padding: .85rem 1.1rem;
  border-radius: 1.05rem 1.05rem 0 0;
  background: linear-gradient(180deg, #e9eef5, #cdd6e2);
  border-bottom: 1px solid rgba(71,85,105,.25);
}
.panel-dot { width: .7rem; height: .7rem; border-radius: 99px; box-shadow: inset 0 -1px 2px rgba(0,0,0,.25); }
.panel-dot--red    { background: var(--nred); }
.panel-dot--steel  { background: var(--chrome); }
.panel-dot--chrome { background: var(--steel); }
.panel-body {
  border-radius: 0 0 1.05rem 1.05rem;
  background: linear-gradient(180deg, #0e1424, #0b0f19);
  padding: 1.3rem 1.25rem 1.5rem;
  color: var(--steel);
}
.tok-key { color: var(--chrome); }
.tok-str { color: var(--steel); }
.tok-op  { color: var(--anodized); }
.tok-ok  { color: #34d399; }
.tok-dim { color: var(--anodized); }
.tok-x   { color: var(--nred-bright); font-weight: 600; text-shadow: 0 0 12px rgba(239,68,68,.7); }
.panel-bar { display: flex; align-items: center; gap: .7rem; margin-top: .55rem; }
.panel-bar-label { width: 120px; color: var(--chrome); font-size: 11px; }
.panel-bar .track { flex: 1; height: 6px; border-radius: 99px; background: rgba(148,163,184,.18); overflow: hidden; }
.panel-bar .track i { display: block; height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--chrome), #fff); }
.panel-bar b { width: 38px; text-align: right; color: #fff; font-weight: 600; }
.panel-body .panel-bar:nth-of-type(1) .track i,
.panel-body .panel-bar:nth-of-type(3) .track i { background: linear-gradient(90deg, var(--nred), var(--nred-bright)); }

/* Marquee */
.marquee { position: relative; border-top: 1px solid rgba(148,163,184,.12); border-bottom: 1px solid rgba(148,163,184,.12); padding: .9rem 0; overflow: hidden; }
.marquee-track { display: inline-flex; gap: 1.4rem; align-items: center; white-space: nowrap; animation: marquee 36s linear infinite; padding-left: 1.4rem; }
.marquee-track .dot { color: var(--nred); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===================================================================
   THE X SECTION
   =================================================================== */
.xsec { border-top: 1px solid rgba(148,163,184,.08); }
.xsec-glow {
  position: absolute; left: 22%; top: 50%; transform: translate(-50%,-50%);
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(220,38,38,.16), transparent 62%);
  filter: blur(30px);
}
.x-stage {
  position: relative;
  display: grid; place-items: center;
  aspect-ratio: 1 / 1;
  max-width: 440px; margin: 0 auto;
  cursor: pointer;
  perspective: 900px;
}
.x-svg { width: 78%; transform-style: preserve-3d; transition: transform .2s ease; will-change: transform; }
.x-stroke {
  fill: none; stroke: url(#xGrad); stroke-width: 18; stroke-linecap: round;
  stroke-dasharray: 170; stroke-dashoffset: 170;
  filter: drop-shadow(0 0 18px rgba(220,38,38,.55));
}
.x-stage.is-drawn .x-stroke { animation: xdraw 1s ease forwards; }
.x-stage.is-drawn .x-stroke:nth-of-type(2) { animation-delay: .18s; }
@keyframes xdraw { to { stroke-dashoffset: 0; } }
.x-tip { fill: var(--platinum); filter: drop-shadow(0 0 6px rgba(241,245,249,.8)); }
.x-tip--red { fill: var(--nred); filter: drop-shadow(0 0 8px rgba(220,38,38,.9)); }

.x-rings { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; }
.x-rings span {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(148,163,184,.18);
}
.x-rings span:nth-child(1) { width: 60%;  height: 60%; }
.x-rings span:nth-child(2) { width: 80%;  height: 80%; border-color: rgba(148,163,184,.12); }
.x-rings span:nth-child(3) { width: 100%; height: 100%; border-color: rgba(220,38,38,.16); }
.x-stage.is-ignited .x-rings span { animation: pulse 1.1s ease-out; }
.x-stage.is-ignited .x-rings span:nth-child(2) { animation-delay: .12s; }
.x-stage.is-ignited .x-rings span:nth-child(3) { animation-delay: .24s; }
@keyframes pulse {
  0%   { transform: scale(.85); opacity: .9; border-color: rgba(220,38,38,.55); }
  100% { transform: scale(1.25); opacity: 0; }
}
.x-tag {
  position: absolute; bottom: 4%; left: 50%; transform: translateX(-50%);
  font-size: 11px; letter-spacing: .18em; color: var(--anodized);
  transition: color .25s ease;
}
.x-stage:hover .x-tag { color: var(--steel); }

/* X pillars */
.x-pillar {
  padding: 1.25rem 1.1rem;
  border-radius: .9rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(148,163,184,.14);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.x-pillar:hover { transform: translateY(-4px); border-color: rgba(220,38,38,.45); background: rgba(255,255,255,.05); }
.x-pillar-mark {
  display: inline-block; font-family: "Space Grotesk", sans-serif; font-weight: 700;
  font-size: 1.4rem; color: var(--nred-bright);
}
.x-pillar-mark sub { font-size: .7rem; color: var(--chrome); }
.x-pillar h3 { margin-top: .5rem; font-weight: 600; color: #fff; }
.x-pillar p  { margin-top: .35rem; font-size: .85rem; line-height: 1.5; color: var(--chrome); }

/* ===================================================================
   SOLUTIONS / SECTION TEXTURE
   =================================================================== */
.section-texture {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(148,163,184,.18), transparent 40%),
    radial-gradient(circle at 90% 100%, rgba(203,213,225,.5), transparent 45%);
  pointer-events: none;
}

.solution-card {
  position: relative;
  border-radius: 1.1rem;
  padding: 1.6rem;
  background: linear-gradient(180deg, #ffffff, var(--platinum));
  border: 1px solid var(--steel);
  box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 22px 50px -30px rgba(11,15,25,.5);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.solution-card::before {
  content: ""; position: absolute; inset-inline: 1.2rem; top: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--chrome), transparent);
}
.solution-card:hover {
  transform: translateY(-6px);
  border-color: var(--chrome);
  box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 32px 60px -28px rgba(11,15,25,.55);
}
.solution-card--feature {
  background: linear-gradient(180deg, #ffffff, #fff5f5);
  border-color: rgba(220,38,38,.35);
}
.solution-card--feature::before { background: linear-gradient(90deg, transparent, var(--nred), transparent); }

.solution-icon {
  display: grid; place-items: center;
  width: 3rem; height: 3rem; border-radius: .85rem;
  color: var(--anodized);
  background: linear-gradient(160deg, #fff, var(--steel));
  border: 1px solid var(--steel);
  box-shadow: 0 1px 0 rgba(255,255,255,.9) inset;
}
.solution-icon svg { width: 1.5rem; height: 1.5rem; }
.solution-icon--red { color: var(--nred); border-color: rgba(220,38,38,.3); background: linear-gradient(160deg, #fff, #fee2e2); }
.solution-card h3 { margin-top: 1.1rem; font-family: "Space Grotesk", sans-serif; font-size: 1.2rem; font-weight: 600; color: var(--obsidian); }
.solution-card p  { margin-top: .6rem; font-size: .92rem; line-height: 1.6; color: var(--anodized); }
.solution-list { margin-top: 1.1rem; display: grid; gap: .5rem; }
.solution-list li {
  position: relative; padding-left: 1.4rem;
  font-size: .85rem; color: #334155;
}
.solution-list li::before {
  content: ""; position: absolute; left: 0; top: .35rem;
  width: .8rem; height: .8rem; border-radius: 99px;
  background: radial-gradient(circle at 35% 30%, var(--nred-bright), var(--nred-deep));
  box-shadow: 0 0 0 3px rgba(220,38,38,.12);
}

/* ===================================================================
   COMPARISON MATRIX (zebra striping)
   =================================================================== */
.table-shell {
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid var(--chrome);
  box-shadow: 0 24px 60px -34px rgba(11,15,25,.6);
}
.matrix { width: 100%; border-collapse: collapse; font-size: .92rem; background: #fff; }
.matrix thead th {
  background: linear-gradient(180deg, var(--obsidian), #131a2b);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  text-align: center;
  padding: 1.05rem 1.1rem;
  border-right: 1px solid rgba(148,163,184,.18);
  white-space: nowrap;
}
.matrix thead th:first-child { text-align: left; }
.matrix thead th.col-nelx {
  background: linear-gradient(180deg, var(--nred), var(--nred-deep));
  position: relative;
}
.matrix tbody th[scope="row"] {
  text-align: left; font-weight: 600; color: var(--obsidian);
  padding: .95rem 1.1rem;
  border-right: 1px solid var(--steel);
}
.matrix tbody td {
  text-align: center; padding: .95rem 1.1rem;
  border-right: 1px solid var(--steel);
  color: var(--anodized);
}
/* Zebra striping: Polished Steel + Metallic Platinum */
.matrix tbody tr:nth-child(odd)  { background: var(--platinum); }
.matrix tbody tr:nth-child(even) { background: var(--steel); }
.matrix tbody tr:hover { background: #e6ecf3; }
.matrix .col-nelx { background: rgba(220,38,38,.06); }
.matrix tbody tr:hover .col-nelx { background: rgba(220,38,38,.12); }
.matrix tbody tr:last-child th,
.matrix tbody tr:last-child td { border-bottom: 0; }

.cell-yes, .cell-mid, .cell-no {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .82rem; font-weight: 600;
  padding: .25rem .65rem; border-radius: 99px;
}
.cell-yes { color: #fff; background: linear-gradient(180deg, var(--nred-bright), var(--nred-deep)); box-shadow: 0 6px 14px -8px rgba(220,38,38,.8); }
.cell-yes::before { content: "✓"; }
.cell-mid { color: var(--anodized); background: #fff; border: 1px solid var(--chrome); }
.cell-mid::before { content: "~"; }
.cell-no  { color: #64748b; background: transparent; border: 1px dashed var(--chrome); }
.cell-no::before { content: "–"; }

/* ===================================================================
   CTA & CONTACT
   =================================================================== */
.cta-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(148,163,184,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 70% 40%, #000, transparent 100%);
}
.cta-glow {
  position: absolute; right: 8%; top: 30%;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(220,38,38,.22), transparent 60%);
  filter: blur(30px);
}
.contact-item { display: flex; align-items: center; gap: .85rem; color: var(--steel); }
.contact-item a:hover { color: #fff; }
.contact-ic {
  display: grid; place-items: center; flex: none;
  width: 2.5rem; height: 2.5rem; border-radius: .7rem;
  color: var(--steel);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(148,163,184,.2);
}
.contact-ic svg { width: 1.2rem; height: 1.2rem; }

.cta-form {
  border-radius: 1.2rem;
  padding: 1.8rem;
  background: linear-gradient(180deg, rgba(241,245,249,.06), rgba(148,163,184,.04));
  border: 1px solid rgba(148,163,184,.2);
  box-shadow: 0 30px 70px -34px rgba(0,0,0,.8);
  backdrop-filter: blur(8px);
}
.field span {
  display: block; margin-bottom: .45rem;
  font-family: "JetBrains Mono", monospace;
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--chrome);
}
.field input, .field select, .field textarea {
  width: 100%;
  border-radius: .7rem;
  padding: .8rem .95rem;
  font-size: .95rem;
  color: #fff;
  background: rgba(11,15,25,.55);
  border: 1px solid rgba(148,163,184,.22);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #64748b; }
.field select { color: var(--steel); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--nred);
  box-shadow: 0 0 0 3px rgba(220,38,38,.25);
}
.form-note {
  margin-top: 1rem; padding: .8rem 1rem; border-radius: .7rem;
  font-size: .88rem;
  background: rgba(52,211,153,.12);
  border: 1px solid rgba(52,211,153,.4);
  color: #6ee7b7;
}

/* ===================================================================
   FOOTER
   =================================================================== */
.footer-h { font-family: "Space Grotesk", sans-serif; font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #fff; }
.footer-list { margin-top: 1rem; display: grid; gap: .65rem; font-size: .9rem; }
.footer-list a { color: var(--chrome); transition: color .2s ease; }
.footer-list a:hover { color: #fff; }

/* ===================================================================
   REVEAL ON SCROLL
   =================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .x-stage.is-drawn .x-stroke { stroke-dashoffset: 0; animation: none; }
  html { scroll-behavior: auto; }
}

/* ===================================================================
   ===  INFOTEK-STYLE FULL LAYOUT — ADDED COMPONENTS  ===============
   =================================================================== */

/* ---------- Top utility bar ---------- */
.topbar {
  overflow: hidden;
  font-size: .8rem;
  color: var(--steel);
  border-bottom: 1px solid rgba(148,163,184,.12);
  max-height: 48px;
  transition: max-height .4s ease, opacity .3s ease, padding .4s ease;
  padding: .55rem 0;
}
.nav.is-scrolled .topbar { max-height: 0; opacity: 0; padding: 0; border-color: transparent; }
.topbar-item { display: inline-flex; align-items: center; gap: .45rem; color: var(--steel); transition: color .2s ease; }
.topbar-item:hover { color: #fff; }
.topbar-ic { width: 1rem; height: 1rem; color: var(--nred-bright); }
.topbar-divider { width: 1px; height: 16px; background: rgba(148,163,184,.3); }
.topbar-social {
  display: grid; place-items: center; width: 1.9rem; height: 1.9rem; border-radius: .5rem;
  color: var(--steel); border: 1px solid rgba(148,163,184,.2); transition: all .2s ease;
}
.topbar-social svg { width: .85rem; height: .85rem; }
.topbar-social:hover { background: var(--nred); border-color: var(--nred); color: #fff; }

/* ---------- Dark button ---------- */
.btn-dark {
  display: inline-flex; align-items: center; gap: .55rem;
  border-radius: .7rem; padding: .85rem 1.5rem; font-size: 1rem; font-weight: 600;
  color: #fff; background: var(--obsidian); border: 1px solid var(--obsidian);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn-dark:hover { transform: translateY(-2px); background: #161d2e; box-shadow: 0 18px 36px -18px rgba(11,15,25,.6); }

/* ---------- Wave divider ---------- */
.wave-divider { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; }
.wave-divider svg { width: 100%; height: 70px; display: block; }

/* ---------- Hero visual ---------- */
.hero-visual { position: relative; }
.hero-badge {
  position: absolute; right: -14px; bottom: -22px;
  display: flex; align-items: center; gap: .7rem;
  padding: .85rem 1.1rem; border-radius: 1rem;
  background: linear-gradient(180deg, var(--nred-bright), var(--nred-deep));
  box-shadow: 0 20px 40px -16px rgba(220,38,38,.75);
}
.hero-badge-num { font-family: "Space Grotesk", sans-serif; font-size: 2rem; font-weight: 700; color: #fff; line-height: 1; }
.hero-badge-txt { font-size: .72rem; line-height: 1.2; color: rgba(255,255,255,.9); }

/* ---------- About ---------- */
.about-visual { position: relative; padding-bottom: 1.5rem; }
.about-frame {
  position: relative; border-radius: 1.4rem; padding: 1.6rem;
  background: linear-gradient(160deg, #fff, var(--platinum));
  border: 1px solid var(--steel);
  box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 40px 80px -40px rgba(11,15,25,.45);
}
.about-frame-glow {
  position: absolute; inset: 0; border-radius: inherit; overflow: hidden;
}
.about-frame-glow::before {
  content: ""; position: absolute; width: 280px; height: 280px; right: -80px; top: -80px;
  background: radial-gradient(circle, rgba(220,38,38,.12), transparent 65%);
}
.about-art { position: relative; width: 100%; display: block; }
.about-stat {
  position: absolute; left: -14px; bottom: -10px;
  display: flex; flex-direction: column; gap: .15rem;
  padding: 1rem 1.2rem; border-radius: 1rem;
  background: var(--obsidian);
  box-shadow: 0 24px 50px -22px rgba(11,15,25,.7);
}
.about-stat-num { font-family: "Space Grotesk", sans-serif; font-size: 1.7rem; font-weight: 700; color: #fff; line-height: 1; }
.about-stat-lbl { font-size: .8rem; color: var(--steel); }
.about-stat-reg { font-family: "JetBrains Mono", monospace; font-size: .64rem; color: var(--chrome); margin-top: .15rem; }

.about-check { position: relative; padding-left: 1.9rem; font-weight: 500; color: #334155; }
.about-check::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  display: grid; place-items: center; width: 1.3rem; height: 1.3rem; border-radius: 99px;
  font-size: .75rem; color: #fff;
  background: linear-gradient(180deg, var(--nred-bright), var(--nred-deep));
}

.call-now { display: inline-flex; align-items: center; gap: .8rem; }
.call-now-ic {
  display: grid; place-items: center; width: 3rem; height: 3rem; border-radius: 99px;
  color: var(--nred); border: 1.5px dashed rgba(220,38,38,.4);
}
.call-now-ic svg { width: 1.3rem; height: 1.3rem; }
.call-now small { display: block; font-size: .72rem; color: var(--anodized); }
.call-now strong { display: block; font-family: "Space Grotesk", sans-serif; font-size: 1.15rem; color: var(--obsidian); }

/* ---------- Trust strip ---------- */
.trust-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.3rem; }
.trust-item { font-family: "Space Grotesk", sans-serif; font-size: clamp(1.1rem, 3vw, 1.7rem); font-weight: 700; color: var(--anodized); transition: color .25s ease; }
.trust-item:hover { color: var(--nred); }
.trust-dot { color: var(--chrome); font-size: .9rem; }

/* ---------- Service cards ---------- */
.service-card {
  position: relative; border-radius: 1.2rem; padding: 1.7rem;
  background: #fff; border: 1px solid var(--steel);
  box-shadow: 0 22px 50px -34px rgba(11,15,25,.4);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--chrome); box-shadow: 0 32px 60px -30px rgba(11,15,25,.5); }
.service-card--feature { border-color: rgba(220,38,38,.35); background: linear-gradient(180deg, #fff, #fff6f6); }
.service-top {
  display: grid; place-items: center; width: 3.4rem; height: 3.4rem; border-radius: 1rem; margin-bottom: 1.1rem;
  border: 1px solid var(--steel); box-shadow: 0 1px 0 rgba(255,255,255,.9) inset;
}
.service-top svg { width: 1.7rem; height: 1.7rem; }
.service-top--a { color: var(--anodized); background: linear-gradient(160deg, #fff, var(--steel)); }
.service-top--b { color: #334155; background: linear-gradient(160deg, #fff, var(--platinum)); }
.service-top--red { color: var(--nred); background: linear-gradient(160deg, #fff, #fee2e2); border-color: rgba(220,38,38,.3); }
.service-card h3 { font-family: "Space Grotesk", sans-serif; font-size: 1.25rem; font-weight: 600; color: var(--obsidian); }
.service-card p { margin-top: .6rem; font-size: .92rem; line-height: 1.6; color: var(--anodized); }
.service-link { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.2rem; font-weight: 600; font-size: .9rem; color: var(--nred); }
.service-link span { transition: transform .25s ease; }
.service-link:hover span { transform: translateX(4px); }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative; overflow: hidden; border-radius: 1.4rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 2.2rem 2.4rem;
  background: linear-gradient(120deg, var(--nred-deep), var(--nred) 55%, var(--nred-bright));
  box-shadow: 0 30px 70px -30px rgba(220,38,38,.6);
}
.cta-banner-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse 60% 100% at 80% 50%, #000, transparent 100%);
}
.cta-banner-ic {
  display: grid; place-items: center; width: 3.6rem; height: 3.6rem; border-radius: 99px; flex: none;
  color: #fff; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
}
.cta-banner-ic svg { width: 1.6rem; height: 1.6rem; }
.cta-banner-btn {
  position: relative; display: inline-flex; align-items: center; gap: .55rem;
  border-radius: .8rem; padding: .9rem 1.6rem; font-weight: 700; font-size: 1rem;
  color: var(--nred); background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}
.cta-banner-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(0,0,0,.4); }

/* ---------- Process ---------- */
.process { position: relative; display: grid; gap: 2.5rem; }
.process-line { position: absolute; inset: 0; width: 100%; height: 100%; display: none; pointer-events: none; }
.process-step { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; }
.process-num {
  display: grid; place-items: center; width: 3.4rem; height: 3.4rem; border-radius: 99px; margin-bottom: 1.1rem;
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1.1rem; color: #fff;
  background: linear-gradient(180deg, var(--nred-bright), var(--nred-deep));
  box-shadow: 0 14px 30px -12px rgba(220,38,38,.7); position: relative; z-index: 2;
}
.process-card {
  background: #fff; border: 1px solid var(--steel); border-radius: 1.1rem; padding: 1.4rem; max-width: 320px;
  box-shadow: 0 20px 44px -32px rgba(11,15,25,.4);
}
.process-card h3 { font-family: "Space Grotesk", sans-serif; font-size: 1.2rem; font-weight: 600; color: var(--obsidian); }
.process-card p { margin-top: .5rem; font-size: .9rem; line-height: 1.6; color: var(--anodized); }

@media (min-width: 768px) {
  .process { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .process-line { display: block; }
  .process-step--down { margin-top: 4rem; }
}

/* ---------- Stats ---------- */
.stat { text-align: center; padding: 1rem; border-radius: 1rem; background: rgba(255,255,255,.03); border: 1px solid rgba(148,163,184,.12); }
.stat-num { font-family: "Space Grotesk", sans-serif; font-size: clamp(2.2rem, 5vw, 3rem); font-weight: 700; color: #fff; line-height: 1; }
.stat dd { margin-top: .5rem; font-size: .85rem; color: var(--steel); }

/* ---------- Offerings ---------- */
.offerings { background: linear-gradient(160deg, #11152a, #0b0f19 55%, #1a0f15); }
.offerings-glow { position: absolute; left: 50%; top: 0; transform: translateX(-50%); width: 700px; height: 400px; background: radial-gradient(circle, rgba(220,38,38,.16), transparent 60%); filter: blur(40px); }
.offer-card {
  position: relative; border-radius: 1.3rem; padding: 1.6rem;
  background: rgba(255,255,255,.04); border: 1px solid rgba(148,163,184,.16);
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.offer-card:hover { transform: translateY(-6px); border-color: rgba(220,38,38,.5); background: rgba(255,255,255,.06); }
.offer-art {
  display: grid; place-items: center; height: 9rem; border-radius: 1rem; margin-bottom: 1.3rem; color: #fff;
}
.offer-art svg { width: 4.5rem; height: 4.5rem; }
.offer-art--1 { background: linear-gradient(150deg, #1e2a4a, #0e1424); color: var(--steel); }
.offer-art--2 { background: linear-gradient(150deg, #3a2030, #0e1424); color: var(--nred-bright); }
.offer-art--3 { background: linear-gradient(150deg, #20304f, #0e1424); color: var(--chrome); }
.offer-tag { display: inline-block; font-family: "JetBrains Mono", monospace; font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--nred-bright); }
.offer-card h3 { margin-top: .4rem; font-family: "Space Grotesk", sans-serif; font-size: 1.3rem; font-weight: 600; color: #fff; }
.offer-card p { margin-top: .55rem; font-size: .9rem; line-height: 1.6; color: var(--chrome); }

/* ---------- Why cards & Mission/Vision ---------- */
.why-card {
  position: relative; border-radius: 1.2rem; padding: 2rem 1.7rem 1.7rem;
  background: #fff; border: 1px solid var(--steel);
  box-shadow: 0 22px 50px -36px rgba(11,15,25,.4);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.why-card:hover { transform: translateY(-5px); border-color: var(--chrome); }
.why-card--feature { background: linear-gradient(180deg, var(--obsidian), #131a2b); border-color: var(--obsidian); }
.why-card--feature h3 { color: #fff; }
.why-card--feature p { color: var(--steel); }
.why-num {
  position: absolute; top: -1.1rem; left: 1.6rem;
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1.1rem; color: #fff;
  display: grid; place-items: center; width: 2.6rem; height: 2.6rem; border-radius: .8rem;
  background: linear-gradient(180deg, var(--nred-bright), var(--nred-deep));
  box-shadow: 0 12px 26px -10px rgba(220,38,38,.7);
}
.why-card h3 { font-family: "Space Grotesk", sans-serif; font-size: 1.3rem; font-weight: 600; color: var(--obsidian); }
.why-card p { margin-top: .6rem; font-size: .92rem; line-height: 1.6; color: var(--anodized); }

.mv-card {
  display: flex; flex-direction: column; gap: .6rem; padding: 2rem;
  border-radius: 1.2rem; background: #fff; border: 1px solid var(--steel);
  box-shadow: 0 22px 50px -36px rgba(11,15,25,.4);
}
.mv-ic { display: grid; place-items: center; width: 3.2rem; height: 3.2rem; border-radius: 1rem; color: var(--nred); background: linear-gradient(160deg, #fff, #fee2e2); border: 1px solid rgba(220,38,38,.25); }
.mv-ic svg { width: 1.6rem; height: 1.6rem; }
.mv-card h3 { font-family: "Space Grotesk", sans-serif; font-size: 1.5rem; font-weight: 600; color: var(--obsidian); }
.mv-card p { font-size: .98rem; line-height: 1.65; color: var(--anodized); }

/* ---------- Founder / Leadership ---------- */
.founder-card {
  position: relative; border-radius: 1.4rem; overflow: hidden;
  border: 1px solid var(--steel);
  box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 40px 80px -40px rgba(11,15,25,.5);
}
.founder-card img { width: 100%; height: 100%; max-height: 520px; object-fit: cover; display: block; }
.founder-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(11,15,25,.85)); }
.founder-tag {
  position: absolute; left: 1.3rem; bottom: 1.3rem; z-index: 2;
  display: flex; flex-direction: column;
  padding: .9rem 1.2rem; border-radius: 1rem;
  background: rgba(11,15,25,.7); backdrop-filter: blur(8px);
  border-left: 3px solid var(--nred);
}
.founder-tag strong { font-family: "Space Grotesk", sans-serif; font-size: 1.2rem; color: #fff; }
.founder-tag span { font-size: .82rem; color: var(--steel); }
.founder-quote {
  margin-top: 2rem; padding: 1.2rem 1.5rem; border-left: 3px solid var(--nred);
  font-family: "Space Grotesk", sans-serif; font-size: 1.35rem; font-weight: 500; font-style: italic;
  color: var(--obsidian); background: var(--platinum); border-radius: 0 1rem 1rem 0;
}

/* ===================================================================
   ===  REAL PHOTOGRAPHY WIRING (hero / about / services)  ==========
   =================================================================== */

/* ---------- Hero full-bleed photo ---------- */
.hero-photo {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: 62% 32%;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(95deg, rgba(11,15,25,.97) 0%, rgba(11,15,25,.9) 32%, rgba(11,15,25,.6) 64%, rgba(11,15,25,.4) 100%),
    linear-gradient(0deg, rgba(11,15,25,.92) 0%, rgba(11,15,25,0) 44%);
}
/* keep texture/glow above the overlay but below the copy (scoped to hero only) */
.hero > .hero-grid, .hero > .hero-glow, .hero > .hero-orb { z-index: 2; }

.hero-badge {
  position: absolute; right: 1.25rem; bottom: 2rem; z-index: 5;
  display: flex; align-items: center; gap: .75rem;
  padding: .9rem 1.15rem; border-radius: 1rem;
  background: linear-gradient(180deg, rgba(220,38,38,.95), rgba(185,28,28,.95));
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 22px 45px -18px rgba(220,38,38,.8);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
@media (max-width: 1023px) { .hero-badge { display: none; } }

/* ---------- About photo ---------- */
.about-frame { position: relative; padding: .5rem; overflow: hidden; }
.about-img {
  display: block; width: 100%; height: 100%;
  aspect-ratio: 5 / 4; min-height: 320px; object-fit: cover;
  border-radius: 1rem;
}
.about-x-badge {
  position: absolute; top: 1.1rem; right: 1.1rem; z-index: 2;
  display: grid; place-items: center; width: 3rem; height: 3rem; border-radius: 99px;
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1.4rem; color: #fff;
  background: linear-gradient(180deg, var(--nred-bright), var(--nred-deep));
  box-shadow: 0 0 0 6px rgba(220,38,38,.18), 0 16px 30px -12px rgba(220,38,38,.7);
}

/* ---------- Service cards : photo header + overlapping icon ---------- */
.service-card { padding: 0; overflow: hidden; }
.service-media { position: relative; height: 11rem; }
.service-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.service-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,15,25,.05) 0%, transparent 35%, rgba(11,15,25,.28) 100%);
}
.service-card .service-top {
  position: absolute; left: 1.5rem; bottom: -1.7rem; z-index: 2; margin-bottom: 0;
}
.service-body { padding: 2.6rem 1.7rem 1.7rem; }
.service-card--feature .service-media::after {
  background: linear-gradient(180deg, transparent 35%, rgba(220,38,38,.32) 100%);
}

/* ---------- Honeypot (spam trap) ---------- */
.hp { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }
