/* ============================================================
   NEXUM DYNAMIC — Main Stylesheet
   Covers: base tokens, layout, all page sections, strategy form
   ============================================================ */

:root {
  --green-950: #032316;
  --green-900: #06301f;
  --green-800: #0a4c31;
  --green-700: #137847;
  --green-500: #37b56a;
  --green-300: #8ef0b1;
  --gold: #f4ce84;
  --cream: #f7fbf8;
  --ink: #082017;
  --muted: #60766b;
  --glass: rgba(255, 255, 255, .12);
  --stroke: rgba(142, 240, 177, .28);
  --shadow: 0 25px 80px rgba(0, 0, 0, .22);
  --radius: 28px;
  --container: min(1180px, calc(100% - 40px));
}

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  background: linear-gradient(135deg, #fbfffc 0%, #eef8f2 34%, #dcefe7 100%);
  color: var(--ink);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
abbr { text-decoration: none; }

/* ── Utilities ───────────────────────────────────────────── */
.container { width: var(--container); margin-inline: auto; }
.section { padding: 92px 0; }
.skip-link {
  position: absolute; left: -999px; top: 8px;
  background: white; color: var(--ink);
  padding: 12px 16px; z-index: 99;
}
.skip-link:focus { left: 8px; }
.sr-only {
  position: absolute; clip: rect(0, 0, 0, 0); clip-path: inset(50%);
  height: 1px; width: 1px; overflow: hidden; white-space: nowrap;
}

/* ── Page Glow ───────────────────────────────────────────── */
.page-glow {
  position: fixed; inset: -20%;
  background:
    radial-gradient(circle at 80% 15%, rgba(55, 181, 106, .22), transparent 28%),
    radial-gradient(circle at 15% 80%, rgba(244, 206, 132, .2), transparent 26%);
  pointer-events: none; z-index: -2;
}

/* ── Header / Nav ────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50; transition: .3s ease;
}
.site-header.scrolled {
  background: rgba(248, 255, 250, .82);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(3, 35, 22, .08);
}
.nav {
  width: var(--container); margin: 0 auto;
  min-height: 84px; display: flex;
  align-items: center; justify-content: space-between; gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 900; letter-spacing: -.04em;
}
.brand span:last-child { display: grid; line-height: .9; font-size: 1.35rem; }
.brand-mark { width: 48px; height: 48px; color: var(--green-700); display: grid; place-items: center; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 0 12px rgba(33, 155, 94, .18)); }
.brand svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 5; }
.brand svg circle { fill: currentColor; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { padding: 12px 15px; border-radius: 999px; font-weight: 700; color: #153d2b; }
.nav-links a:hover { background: rgba(19, 120, 71, .09); }
.nav-cta {
  background: var(--green-800) !important;
  color: white !important;
  box-shadow: 0 12px 30px rgba(19, 120, 71, .25);
}
.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span:not(.sr-only) {
  display: block; width: 26px; height: 2px;
  background: var(--ink); margin: 6px; border-radius: 2px;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: grid; align-items: center;
  position: relative; padding-top: 150px;
  background: linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.72) 38%, rgba(3,35,22,.92) 100%);
  isolation: isolate;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: url('assets/nexum-flyer.jpeg') center right / cover no-repeat;
  opacity: .16; z-index: -2;
}
.network-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: -1; opacity: .9;
}
.hero-grid {
  display: grid; grid-template-columns: 1.02fr .98fr;
  gap: 60px; align-items: center;
}
.eyebrow {
  text-transform: uppercase; letter-spacing: .16em;
  font-size: .78rem; font-weight: 900;
  color: var(--green-700); margin: 0 0 16px;
}
.hero h1,
.section-heading h2,
.showcase h2,
.contact-card h2 {
  font-size: clamp(2.5rem, 6vw, 5.8rem);
  line-height: .92; letter-spacing: -.08em;
  margin: 0; color: var(--green-950);
}
.hero-text {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.7; color: #315043;
  max-width: 660px; margin: 28px 0;
}
.button {
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-radius: 999px; padding: 16px 22px;
  font-weight: 900; text-transform: uppercase; letter-spacing: .03em;
  cursor: pointer; font-family: inherit; font-size: inherit;
  transition: opacity .2s, transform .15s;
}
.button:hover { opacity: .88; transform: translateY(-1px); }
.button:active { transform: translateY(0); }
.primary {
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  color: white; box-shadow: 0 18px 40px rgba(19, 120, 71, .28);
}
.secondary {
  background: rgba(255, 255, 255, .76); color: var(--green-900);
  border: 1px solid rgba(19, 120, 71, .18); backdrop-filter: blur(10px);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.trust-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.trust-row span {
  border: 1px solid rgba(19, 120, 71, .18);
  background: rgba(255, 255, 255, .52);
  padding: 9px 13px; border-radius: 999px;
  font-weight: 800; color: #244a38;
}
.hero-panel { min-height: 590px; }

/* ── Glass Board (Hero Panel) ────────────────────────────── */
.glass-board {
  position: relative; min-height: 590px;
  border: 1px solid var(--stroke); border-radius: 36px;
  background: linear-gradient(135deg, rgba(7,43,30,.64), rgba(10,76,49,.35));
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow), inset 0 0 80px rgba(142, 240, 177, .12);
  overflow: hidden;
}
.board-top { position: absolute; right: 24px; top: 22px; display: flex; gap: 8px; }
.board-top span {
  width: 11px; height: 11px; background: var(--green-300);
  border-radius: 50%; box-shadow: 0 0 18px var(--green-300);
}
.orbital-logo {
  position: absolute; inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 205px; height: 205px; color: #dffbe8;
  filter: drop-shadow(0 0 22px rgba(142, 240, 177, .75));
}
.orbital-logo img { width: 100%; height: 100%; object-fit: contain; }
.orbital-logo svg { fill: none; stroke: currentColor; stroke-width: 5; }
.orbital-logo circle { fill: currentColor; }
.node {
  position: absolute; width: 190px; padding: 16px;
  border: 1px solid rgba(255,255,255,.2); border-radius: 18px;
  background: rgba(3,35,22,.54); color: white;
  box-shadow: 0 20px 40px rgba(0,0,0,.18);
}
.node b { display: block; font-size: 1rem; }
.node small { color: #c9ead7; }
.node-1 { left: 36px; top: 98px; }
.node-2 { right: 56px; top: 86px; }
.node-3 { right: 34px; bottom: 124px; }
.node-4 { left: 58px; bottom: 86px; }
.pulse-line {
  position: absolute; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-300), var(--gold), transparent);
  filter: drop-shadow(0 0 8px var(--green-300));
  animation: pulse 3s linear infinite;
}
.line-1 { width: 210px; left: 165px; top: 185px; transform: rotate(24deg); }
.line-2 { width: 210px; right: 162px; top: 180px; transform: rotate(-24deg); }
.line-3 { width: 330px; left: 130px; bottom: 210px; transform: rotate(-11deg); }
@keyframes pulse {
  0%   { opacity: .25; scale: .92 1; }
  50%  { opacity: 1;   scale: 1.04 1; }
  100% { opacity: .25; scale: .92 1; }
}

/* ── Stats Strip ─────────────────────────────────────────── */
.stats-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.stat {
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(19, 120, 71, .12);
  border-radius: var(--radius); padding: 24px;
  box-shadow: 0 20px 50px rgba(3, 35, 22, .08);
}
.stat strong { display: block; color: var(--green-700); font-size: 2rem; }
.stat span { color: #3b5e4d; line-height: 1.55; }

/* ── Section Heading ─────────────────────────────────────── */
.section-heading { max-width: 760px; margin-bottom: 36px; }
.section-heading h2, .showcase h2, .contact-card h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}
.section-heading p:not(.eyebrow), .showcase p, .contact-card p {
  color: var(--muted); line-height: 1.75; font-size: 1.05rem;
}

/* ── Services Grid ───────────────────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.service-card {
  position: relative; padding: 28px; border-radius: var(--radius);
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(19, 120, 71, .12);
  box-shadow: 0 24px 60px rgba(3, 35, 22, .08); overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(142, 240, 177, .26), transparent 36%);
  opacity: 0; transition: .3s;
}
.service-card:hover::before { opacity: 1; }
.icon {
  display: grid; place-items: center;
  width: 52px; height: 52px; border-radius: 16px;
  background: var(--green-900); color: var(--green-300);
  font-size: 1.5rem; margin-bottom: 30px;
}
.service-card h3 { font-size: 1.25rem; margin: 0 0 10px; }
.service-card p { color: var(--muted); line-height: 1.65; margin: 0; }

/* ── Blueprint Section ───────────────────────────────────── */
.blueprint {
  background: linear-gradient(135deg, var(--green-950), var(--green-800));
  color: white; position: relative;
}
.blueprint .section-heading h2,
.blueprint .section-heading p { color: white; }
.blueprint .eyebrow { color: var(--green-300); }
.blueprint-grid {
  display: grid; grid-template-columns: .85fr 1.15fr;
  gap: 46px; align-items: start;
}
.timeline { display: grid; gap: 16px; }
.timeline-item {
  padding: 24px 24px 24px 70px;
  border: 1px solid rgba(255,255,255,.14); border-radius: 24px;
  background: rgba(255,255,255,.08); position: relative;
}
.timeline-item::before {
  content: ""; position: absolute; left: 28px; top: 29px;
  width: 16px; height: 16px; background: var(--green-300);
  border-radius: 50%; box-shadow: 0 0 20px var(--green-300);
}
.timeline-item span { font-weight: 900; font-size: 1.15rem; }
.timeline-item p { margin: .4rem 0 0; color: #d5efe0; line-height: 1.65; }

/* ── Showcase / Contact Cards ────────────────────────────── */
.showcase-card, .contact-card {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 34px; align-items: center; padding: 32px;
  border-radius: 36px; background: rgba(255,255,255,.78);
  border: 1px solid rgba(19,120,71,.12);
  box-shadow: 0 24px 70px rgba(3,35,22,.1);
}
.showcase-card img { border-radius: 26px; box-shadow: 0 30px 70px rgba(3,35,22,.2); }
.contact-card {
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(231,249,238,.86));
}
.contact-form { display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 8px; font-weight: 800; color: #173927; }
.contact-form input, .contact-form textarea {
  width: 100%; border: 1px solid rgba(19,120,71,.18);
  border-radius: 16px; padding: 14px 16px;
  font: inherit; background: white; color: var(--ink);
}
.contact-form textarea { resize: vertical; }

/* ── Footer ──────────────────────────────────────────────── */
.footer { padding: 42px 0; background: var(--green-950); color: white; }
.footer-grid {
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.footer p { color: #cceadd; }
.footer-links { display: flex; gap: 16px; color: #dffbe8; }
.footer-links a:hover { color: var(--green-300); }

/* ── Reveal Animation ────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ================================================================
   STRATEGY PAGE
   ================================================================ */

.strategy-page body,
.strategy-page {
  background: linear-gradient(135deg, #fbfffc 0%, #eef8f2 34%, #dcefe7 100%);
}

.strategy-hero {
  padding-top: 110px;
  padding-bottom: 80px;
  min-height: 100vh;
  display: grid;
  align-items: center;
}

.strategy-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
  padding: 40px 0;
}

/* ── Strategy Intro (Left Column) ────────────────────────── */
.strategy-intro h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: .94;
  letter-spacing: -.07em;
  margin: 0 0 20px;
  color: var(--green-950);
}

.strategy-lead {
  font-size: 1.1rem;
  line-height: 1.72;
  color: #315043;
  max-width: 480px;
  margin: 0 0 24px;
}

/* ── Expect List ─────────────────────────────────────────── */
.expect-list {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}
.expect-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #315043;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
}
.expect-item::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green-700);
  color: white;
  font-size: .8rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Glass Aside Quote ───────────────────────────────────── */
.strategy-glass-aside {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding: 22px 24px;
  border: 1px solid var(--stroke);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(7,43,30,.58), rgba(10,76,49,.3));
  backdrop-filter: blur(12px);
}
.orbital-logo-sm {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  color: #dffbe8;
  filter: drop-shadow(0 0 10px rgba(142,240,177,.6));
}
.orbital-logo-sm img { width: 100%; height: 100%; object-fit: contain; }
.orbital-logo-sm svg { fill: none; stroke: currentColor; stroke-width: 5; width: 100%; height: 100%; }
.orbital-logo-sm circle { fill: currentColor; }
.strategy-glass-aside blockquote {
  margin: 0;
  font-size: .95rem;
  font-style: italic;
  color: #d5efe0;
  line-height: 1.65;
  font-weight: 500;
}

/* ── Strategy Form Card ──────────────────────────────────── */
.strategy-form-wrap {
  position: sticky;
  top: 100px;
}
.strategy-form-card {
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(231,249,238,.88));
  border: 1px solid rgba(19,120,71,.14);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 32px 80px rgba(3,35,22,.12);
}
.form-card-header { margin-bottom: 28px; }
.form-card-header .eyebrow { margin-bottom: 8px; }
.form-card-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -.05em;
  margin: 0 0 8px;
  color: var(--green-950);
}
.form-card-header p {
  color: var(--muted);
  font-size: .95rem;
  margin: 0;
  line-height: 1.6;
}

/* ── Form Layout ─────────────────────────────────────────── */
.strategy-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-field {
  display: grid;
  gap: 7px;
}
.field-label {
  font-weight: 800;
  font-size: .9rem;
  color: #173927;
  display: flex;
  align-items: center;
  gap: 4px;
}
.field-label abbr { color: var(--green-700); font-size: 1.1em; }
.field-hint { font-weight: 500; color: var(--muted); font-size: .8rem; }

.strategy-form input[type="text"],
.strategy-form input[type="email"],
.strategy-form input[type="tel"],
.strategy-form textarea {
  width: 100%;
  border: 1.5px solid rgba(19,120,71,.2);
  border-radius: 14px;
  padding: 13px 15px;
  font: inherit;
  font-size: .95rem;
  background: white;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.strategy-form input:focus,
.strategy-form textarea:focus {
  border-color: var(--green-600, #22a05a);
  box-shadow: 0 0 0 3px rgba(19,120,71,.12);
}
.strategy-form textarea { resize: vertical; min-height: 100px; }

/* ── Fieldsets ───────────────────────────────────────────── */
.services-group,
.contact-pref-group {
  border: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.services-group legend,
.contact-pref-group legend {
  font-weight: 800;
  font-size: .9rem;
  color: #173927;
  margin-bottom: 2px;
  float: left;
  width: 100%;
}

/* ── Service Pill Checkboxes ─────────────────────────────── */
.services-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  clear: both;
}
.service-pill { cursor: pointer; }
.service-pill input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.service-pill span {
  display: block;
  border: 1.5px solid rgba(19,120,71,.22);
  background: rgba(255,255,255,.7);
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .85rem;
  color: #244a38;
  transition: background .18s, border-color .18s, color .18s, box-shadow .18s;
  user-select: none;
  line-height: 1.3;
}
.service-pill:hover span {
  background: rgba(19,120,71,.1);
  border-color: rgba(19,120,71,.4);
}
.service-pill input[type="checkbox"]:checked + span {
  background: var(--green-800);
  color: white;
  border-color: var(--green-800);
  box-shadow: 0 6px 18px rgba(19,120,71,.3);
}
.service-pill input[type="checkbox"]:focus-visible + span {
  outline: 2px solid var(--green-700);
  outline-offset: 2px;
}

/* ── Contact Preference Radios ───────────────────────────── */
.contact-prefs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  clear: both;
}
.contact-pref-option { cursor: pointer; }
.contact-pref-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.contact-pref-option span {
  display: block;
  border: 1.5px solid rgba(19,120,71,.22);
  background: rgba(255,255,255,.7);
  padding: 11px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .9rem;
  color: #244a38;
  transition: background .18s, border-color .18s, color .18s;
  user-select: none;
}
.contact-pref-option:hover span {
  background: rgba(19,120,71,.1);
  border-color: rgba(19,120,71,.4);
}
.contact-pref-option input[type="radio"]:checked + span {
  background: var(--green-700);
  color: white;
  border-color: var(--green-700);
  box-shadow: 0 6px 18px rgba(19,120,71,.25);
}
.contact-pref-option input[type="radio"]:focus-visible + span {
  outline: 2px solid var(--green-700);
  outline-offset: 2px;
}

/* ── Submit Button State ─────────────────────────────────── */
.submit-btn { width: 100%; justify-content: center; padding: 17px 28px; font-size: 1rem; }
.submit-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* Hidden by default — toggled via .is-loading class in JS */
.btn-loading { display: none; align-items: center; gap: 8px; }
.submit-btn.is-loading .btn-text { display: none; }
.submit-btn.is-loading .btn-loading { display: inline-flex; }

.btn-loading::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: white;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Form Message ────────────────────────────────────────── */
.form-message {
  padding: 16px 20px;
  border-radius: 14px;
  font-weight: 700;
  font-size: .95rem;
  line-height: 1.5;
  text-align: center;
}
.form-message.success {
  background: rgba(55,181,106,.15);
  border: 1px solid rgba(55,181,106,.35);
  color: var(--green-800);
}
.form-message.error {
  background: rgba(220,53,69,.08);
  border: 1px solid rgba(220,53,69,.22);
  color: #a51c30;
}

/* ── Success Panel ───────────────────────────────────────── */
.success-panel {
  text-align: center;
  padding: 56px 40px;
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(231,249,238,.88));
  border: 1px solid rgba(19,120,71,.14);
  border-radius: var(--radius);
  box-shadow: 0 32px 80px rgba(3,35,22,.12);
}
.success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  color: var(--green-700);
}
.success-icon svg { width: 100%; height: 100%; }
.success-panel h2 {
  font-size: 2rem;
  letter-spacing: -.05em;
  margin: 0 0 14px;
  color: var(--green-950);
}
.success-panel p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 28px;
  max-width: 380px;
  margin-inline: auto;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 78px 18px auto 18px;
    display: grid;
    background: rgba(255,255,255,.94); backdrop-filter: blur(16px);
    padding: 18px; border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,.16);
    transform: translateY(-12px); opacity: 0;
    pointer-events: none; transition: .25s;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; transform: none; }
  .hero-grid, .blueprint-grid, .showcase-card, .contact-card { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
  .hero-panel { min-height: 480px; }
  .glass-board { min-height: 480px; }
  .node { width: 158px; }
  .stats-strip, .services-grid { grid-template-columns: 1fr; }
  .footer-grid { display: grid; }
  .hero h1 { font-size: clamp(2.8rem, 12vw, 5rem); }
  .strategy-container { grid-template-columns: 1fr; gap: 40px; }
  .strategy-form-wrap { position: static; }
  .strategy-glass-aside { display: none; }
}

@media (max-width: 620px) {
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  :root { --container: min(100% - 26px, 1180px); }
  .section { padding: 68px 0; }
  .hero-actions .button { width: 100%; }
  .hero-panel { display: none; }
  .nav { min-height: 74px; }
  .brand span:last-child { font-size: 1.08rem; }
  .brand-mark { width: 42px; height: 42px; }
  .showcase-card, .contact-card { padding: 20px; border-radius: 28px; }
  .hero-text { font-size: 1rem; }
  .stats-strip { padding-top: 54px; }
  .strategy-form-card { padding: 24px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .network-canvas { display: none; }
  .reveal { opacity: 1; transform: none; }
}
