@import url('./assets/colors_and_type.css');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--off-white); color: var(--graphite-700); font-family: var(--font-sans); -webkit-font-smoothing: antialiased; }
body { font-size: 16px; line-height: 1.55; text-rendering: optimizeLegibility; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 32px; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
  color: var(--gold-600);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(184,155,94,0.18);
}

.serif { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.01em; color: var(--deep-700); }
.mono { font-family: var(--font-mono); }

/* ---- TOP STATUS BAR (live) ---- */
.statusbar {
  background: var(--deep-900);
  color: var(--deep-100);
  border-bottom: 1px solid var(--deep-700);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}
.statusbar-row {
  display: flex; align-items: center; justify-content: space-between;
  height: 32px; gap: 24px; overflow: hidden;
}
.statusbar .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--olive-400);
  box-shadow: 0 0 0 0 rgba(139,161,122,0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(139,161,122,0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(139,161,122,0); }
  100% { box-shadow: 0 0 0 0 rgba(139,161,122,0); }
}
.statusbar .ticker {
  display: flex; gap: 28px; flex: 1;
  white-space: nowrap;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.statusbar .ticker-track {
  display: inline-flex; gap: 28px;
  animation: ticker 40s linear infinite;
}
.statusbar .ticker-item { color: var(--deep-200); }
.statusbar .ticker-item strong { color: var(--gold-400); font-weight: 500; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 243, 0.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(212,212,212,0.6);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 36px; height: 36px;
  background: var(--deep-700);
  color: var(--off-white);
  display: grid; place-items: center;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.04em;
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(184,155,94,0.35), transparent 60%);
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--deep-700);
}
.brand-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--graphite-500);
  letter-spacing: 0.02em;
}
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--graphite-600);
  transition: color 150ms;
  position: relative;
}
.nav-link:hover { color: var(--deep-700); }
.nav-status {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--olive-700);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: rgba(122,143,111,0.10);
  border: 1px solid rgba(122,143,111,0.25);
  border-radius: 999px;
}
.nav-status .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--olive-500);
  animation: pulse 2s infinite;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--font-sans);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 180ms var(--ease-standard);
  letter-spacing: -0.005em;
}
.btn-primary {
  background: var(--deep-700);
  color: var(--off-white);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 6px 18px -6px rgba(26,43,79,0.5);
}
.btn-primary:hover {
  background: var(--deep-800);
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset, 0 12px 28px -8px rgba(26,43,79,0.55);
}
.btn-ghost {
  background: transparent;
  color: var(--deep-700);
  border-color: var(--graphite-300);
}
.btn-ghost:hover { background: var(--graphite-50); border-color: var(--graphite-400); }
.btn-lg { height: 54px; padding: 0 26px; font-size: 14.5px; }
.btn .arrow { transition: transform 200ms; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---- HERO ---- DARK + TECH ---- */
.hero {
  position: relative;
  background: var(--deep-900);
  color: var(--off-white);
  padding: 100px 0 120px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(184,155,94,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,155,94,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse 70% 60% at 30% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 30% 30%, #000 30%, transparent 80%);
  z-index: -2;
}
.hero::after {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(184,155,94,0.18) 0%, rgba(184,155,94,0.06) 30%, transparent 65%);
  filter: blur(20px);
  z-index: -1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 10px;
  background: rgba(184,155,94,0.08);
  border: 1px solid rgba(184,155,94,0.25);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 32px;
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(184,155,94,0.2);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: start;
}
.hero h1 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  font-size: clamp(48px, 6.4vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: var(--off-white);
  margin: 0 0 28px;
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-500) 60%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--deep-100);
  max-width: 560px;
  text-wrap: pretty;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 12px; }
.hero .btn-primary {
  background: var(--gold-500);
  color: var(--deep-900);
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 12px 32px -8px rgba(184,155,94,0.45);
}
.hero .btn-primary:hover { background: var(--gold-400); }
.hero .btn-ghost {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.16);
  color: var(--off-white);
}
.hero .btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.28); }

.hero-meta {
  display: flex; gap: 24px; flex-wrap: wrap; align-items: center;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--deep-200);
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 0.04em;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta strong { color: var(--gold-300); font-weight: 500; }
.hero-meta .check {
  width: 14px; height: 14px; border-radius: 50%;
  background: rgba(122,143,111,0.18);
  border: 1px solid rgba(122,143,111,0.5);
  display: grid; place-items: center;
  font-size: 8px; color: var(--olive-400);
}

/* hero artwork wrapper — glass card with corner brackets */
.hero-art {
  position: relative;
  background: var(--paper);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.10) inset,
    0 30px 80px -20px rgba(0,0,0,0.65),
    0 12px 24px -10px rgba(0,0,0,0.4);
  transform: perspective(1400px) rotateY(-3deg) rotateX(2deg);
  transition: transform 400ms var(--ease-standard);
}
.hero-art:hover { transform: perspective(1400px) rotateY(-1deg) rotateX(1deg); }
.hero-art::before, .hero-art::after {
  content: ''; position: absolute; width: 14px; height: 14px;
  border: 1.5px solid var(--gold-400);
  z-index: 2;
}
.hero-art::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.hero-art::after  { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.hero-art-tag {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(26,43,79,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(184,155,94,0.35);
  color: var(--gold-300);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-art-tag .live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--olive-400);
  animation: pulse 1.8s infinite;
}

/* ---- SECTION ---- */
.section { padding: 112px 0; position: relative; }
.section + .section { border-top: 1px solid var(--graphite-200); }
.section-head { margin-bottom: 56px; max-width: 780px; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 500;
  color: var(--deep-700);
  margin: 18px 0 0;
  text-wrap: balance;
}
.section-head p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--graphite-600);
  margin-top: 22px;
  max-width: 720px;
  text-wrap: pretty;
}

/* ---- POSICIONAMENTO grid ---- */
.position-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--graphite-200);
  border-radius: 14px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 12px 32px -16px rgba(26,43,79,0.12);
}
.position-cell {
  padding: 44px 40px;
  position: relative;
}
.position-cell + .position-cell { border-left: 1px solid var(--graphite-200); }
.position-cell h3 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 22px;
  display: inline-flex; align-items: center; gap: 10px;
}
.position-cell h3::before {
  content: ''; width: 8px; height: 8px;
}
.position-cell.against h3 { color: var(--clinical-red); }
.position-cell.against h3::before {
  background: var(--clinical-red);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.position-cell.toward h3 { color: var(--olive-600); }
.position-cell.toward h3::before {
  background: var(--olive-500);
  border-radius: 50%;
}
.position-cell ul { list-style: none; padding: 0; margin: 0; }
.position-cell li {
  padding: 14px 0;
  border-top: 1px solid var(--graphite-100);
  font-size: 15.5px;
  color: var(--graphite-700);
  display: flex; gap: 14px; line-height: 1.5;
  text-wrap: pretty;
}
.position-cell li:first-child { border-top: 0; padding-top: 0; }
.position-cell .glyph { flex: none; width: 14px; margin-top: 10px; height: 1px; background: var(--graphite-300); }
.position-cell.toward .glyph { background: var(--gold-500); }

/* ---- MOCK FRAME ---- */
.mock-frame {
  border: 1px solid var(--graphite-200);
  border-radius: 14px;
  background: var(--off-white);
  overflow: hidden;
  box-shadow: 0 12px 36px -16px rgba(26,43,79,0.14);
  position: relative;
  transition: transform 300ms var(--ease-standard), box-shadow 300ms var(--ease-standard);
}
.mock-frame:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px -16px rgba(26,43,79,0.20);
}
.mock-chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: var(--paper-warm);
  border-bottom: 1px solid var(--graphite-200);
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--graphite-200); }
.mock-url { margin-left: 12px; font-family: var(--font-mono); font-size: 11px; color: var(--graphite-500); }

/* ---- BROWSER SHOT (captura em chrome de browser) ---- */
.shot { margin: 0; }
.shot-chrome {
  background: var(--paper-warm);
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--graphite-200);
}
.shot-chrome .shot-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--graphite-200); flex: none; }
.shot-url { margin-left: 12px; font-family: var(--font-mono); font-size: 11px; color: var(--graphite-500); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.shot-badge {
  margin-left: auto; flex: none;
  font-family: var(--font-mono); font-size: 10px;
  color: var(--graphite-400); letter-spacing: 0.06em;
}
.shot img { width: 100%; display: block; background: #fff; }
.shot-cap {
  padding: 12px 16px;
  font-size: 12px; color: var(--graphite-500);
  border-top: 1px solid var(--graphite-200);
  background: var(--paper-warm);
  line-height: 1.5;
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.cc-card { padding: 24px 0; border-top: 1px solid var(--graphite-200); }
.cc-card .cc-title {
  font-family: var(--font-display); font-size: 20px; font-weight: 600;
  color: var(--deep-700); margin-bottom: 10px; letter-spacing: -0.005em;
}
.cc-card p { color: var(--graphite-600); font-size: 14px; line-height: 1.55; margin: 0; }
@media (max-width: 1024px) {
  .grid-2, .grid-3, .gallery-grid { grid-template-columns: 1fr; }
}

/* numbers strip — KPI band */
.kpi-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 32px;
  border: 1px solid var(--graphite-200);
  border-radius: 14px;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%);
  overflow: hidden;
  position: relative;
}
.kpi-band::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-400) 50%, transparent 100%);
}
.kpi-band > div {
  padding: 32px 28px;
  border-right: 1px solid var(--graphite-200);
  position: relative;
}
.kpi-band > div:last-child { border-right: 0; }
.kpi-num {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  font-weight: 600;
  color: var(--deep-700);
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  font-variation-settings: "opsz" 96;
}
.kpi-num em { color: var(--gold-600); font-style: normal; }
.kpi-lab {
  font-size: 13px; font-weight: 600;
  color: var(--deep-700);
  margin-bottom: 8px;
}
.kpi-desc { font-size: 12.5px; color: var(--graphite-500); line-height: 1.5; }

/* ---- MODULES ---- */
.modules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.module-card {
  background: var(--paper);
  border: 1px solid var(--graphite-200);
  border-radius: 14px;
  padding: 28px;
  transition: all 220ms var(--ease-standard);
  position: relative;
  overflow: hidden;
}
.module-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 0; height: 2px;
  background: var(--gold-500);
  transition: width 320ms var(--ease-standard);
}
.module-card:hover {
  border-color: var(--deep-300);
  box-shadow: 0 16px 40px -16px rgba(26,43,79,0.16);
  transform: translateY(-2px);
}
.module-card:hover::before { width: 100%; }
.module-card .role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 8px;
}
.module-card .role::before {
  content: ''; width: 14px; height: 1px; background: var(--gold-500);
}
.module-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  color: var(--deep-700);
}
.module-card p { font-size: 14px; line-height: 1.6; color: var(--graphite-600); margin: 0 0 18px; }
.module-card .feats { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--graphite-100); padding-top: 14px; }
.module-card .feats li {
  font-size: 13px;
  color: var(--graphite-600);
  padding: 6px 0;
  display: flex; gap: 10px; align-items: center;
  font-family: var(--font-mono);
  letter-spacing: -0.005em;
}
.module-card .feats li::before {
  content: ''; width: 4px; height: 4px;
  background: var(--gold-500);
  border-radius: 50%;
  flex: none;
}

/* ---- COMPLIANCE strip — dark, tech ---- */
.compliance {
  background: var(--deep-900);
  color: var(--off-white);
  position: relative;
  overflow: hidden;
}
.compliance::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(184,155,94,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,155,94,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
}
.compliance .container { position: relative; }
.compliance .section-head h2 { color: var(--off-white); }
.compliance .section-head p { color: var(--deep-100); }
.compliance .eyebrow { color: var(--gold-400); }
.compliance .eyebrow::before { background: var(--gold-400); box-shadow: 0 0 0 3px rgba(184,155,94,0.25); }

.cert-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  border: 1px solid var(--deep-600);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(6px);
}
.cert {
  padding: 32px 16px;
  border-right: 1px solid var(--deep-600);
  text-align: center;
  position: relative;
  transition: background 200ms;
}
.cert:hover { background: rgba(184,155,94,0.06); }
.cert:last-child { border-right: 0; }
.cert .label {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--off-white);
  margin-bottom: 8px;
}
.cert .desc { font-size: 11px; color: var(--deep-200); line-height: 1.4; font-family: var(--font-mono); letter-spacing: 0.02em; }

.compliance-pillars {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid var(--deep-700);
}
.compliance-pillars h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-400);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 12px;
}
.compliance-pillars h4::before {
  content: ''; width: 24px; height: 1px; background: var(--gold-500);
}
.compliance-pillars p { color: var(--deep-100); font-size: 14px; line-height: 1.6; margin: 0; }

/* ---- MANIFESTO ---- */
.manifesto {
  background: var(--paper-warm);
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: '"';
  position: absolute;
  top: 30px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 220px;
  line-height: 1;
  color: var(--gold-200);
  opacity: 0.45;
  pointer-events: none;
}
.manifesto .container { position: relative; }
.manifesto .pull {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.18;
  letter-spacing: -0.018em;
  color: var(--deep-700);
  max-width: 980px;
  margin: 0 auto;
  text-wrap: balance;
}
.manifesto .pull em { color: var(--gold-600); font-style: italic; }
.manifesto .attr {
  margin-top: 48px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--graphite-500);
  display: inline-flex; align-items: center; gap: 12px;
}
.manifesto .attr::before, .manifesto .attr::after {
  content: ''; width: 24px; height: 1px; background: var(--graphite-300);
}

/* ---- CTA ---- */
.cta-final { padding: 96px 0; background: var(--off-white); }
.cta-card {
  background: var(--deep-900);
  color: var(--off-white);
  border-radius: 18px;
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(26,43,79,0.45);
}
.cta-card::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(184,155,94,0.22), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(122,143,111,0.10), transparent 50%);
  pointer-events: none;
}
.cta-card::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(184,155,94,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,155,94,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 80% 50%, #000 0%, transparent 70%);
  pointer-events: none;
}
.cta-card > * { position: relative; }
.cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin: 12px 0 16px;
}
.cta-card h2 em { color: var(--gold-400); font-style: italic; }
.cta-card p { color: var(--deep-100); font-size: 17px; line-height: 1.55; max-width: 460px; }
.cta-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--deep-600);
  border-radius: 12px;
  padding: 28px;
  position: relative;
  backdrop-filter: blur(6px);
}
.cta-form label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-400);
  margin-bottom: 8px;
  font-weight: 500;
}
.cta-form input, .cta-form select {
  width: 100%;
  height: 44px;
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--deep-600);
  border-radius: 8px;
  color: var(--off-white);
  padding: 0 14px;
  font-family: var(--font-sans);
  font-size: 14px;
  margin-bottom: 16px;
  transition: border-color 150ms;
}
.cta-form input:focus, .cta-form select:focus {
  outline: 0;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(184,155,94,0.18);
}
.cta-form .btn { width: 100%; background: var(--gold-500); color: var(--deep-900); border: 0; height: 48px; }
.cta-form .btn:hover { background: var(--gold-400); }

/* ---- FOOTER ---- */
footer {
  padding: 56px 0 32px;
  background: var(--off-white);
  font-size: 13px;
  border-top: 1px solid var(--graphite-200);
}
.foot-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 48px; flex-wrap: wrap; }
.foot-cols { display: flex; gap: 48px; flex-wrap: wrap; }
.foot-col h4 {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--graphite-500);
  margin: 0 0 14px;
  font-weight: 500;
}
.foot-col a { display: block; padding: 6px 0; color: var(--graphite-700); transition: color 150ms; }
.foot-col a:hover { color: var(--deep-700); }

.foot-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--graphite-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--graphite-500);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}
.aivii-sig { color: var(--graphite-500); }
.aivii-sig strong { color: var(--gold-600); font-weight: 600; }

/* responsive */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-art { transform: none; }
  .modules { grid-template-columns: repeat(2, 1fr); }
  .position-grid { grid-template-columns: 1fr; }
  .position-cell + .position-cell { border-left: 0; border-top: 1px solid var(--graphite-200); }
  .cert-grid { grid-template-columns: repeat(3, 1fr); }
  .cert { border-bottom: 1px solid var(--deep-600); }
  .compliance-pillars { grid-template-columns: 1fr; }
  .cta-card { grid-template-columns: 1fr; padding: 48px 32px; }
  .kpi-band { grid-template-columns: repeat(2, 1fr); }
  .kpi-band > div:nth-child(2n) { border-right: 0; }
  .kpi-band > div:nth-child(-n+2) { border-bottom: 1px solid var(--graphite-200); }
}
@media (max-width: 640px) {
  .modules { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  .statusbar { display: none; }
}
