/* ==========================================================================
   METANITE MARKETING — Design System v2
   Strategic Marketing Partner — Command Network visual language
   ========================================================================== */

:root {
  --navy: #0F0F22;
  --void: #080812;
  --green: #13E52C;
  --green-dim: rgba(19, 229, 44, 0.1);
  --green-line: rgba(19, 229, 44, 0.28);
  --green-glow: rgba(19, 229, 44, 0.45);
  --paper: #F6F5F1;
  --paper-dim: #EAE8E0;
  --grey: #8B8B96;
  --hair-dark: rgba(246, 245, 241, 0.1);
  --hair-dark-strong: rgba(246, 245, 241, 0.18);
  --hair-light: rgba(15, 15, 34, 0.1);

  --font-display: 'Sora', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', 'SFMono-Regular', ui-monospace, monospace;

  --container: 1240px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  background: var(--navy);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
}

::selection { background: var(--green); color: var(--void); }

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 2px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--green);
}
.section--light .eyebrow { color: #0D7A20; }
.tool-result .eyebrow { color: var(--green); }

.section {
  padding: 128px 0;
  position: relative;
}
@media (max-width: 768px) {
  .section { padding: 84px 0; }
}

.section--light {
  background: var(--paper);
  color: var(--navy);
}
.section--void { background: var(--void); }

.section-head {
  max-width: 720px;
  margin-bottom: 64px;
}
.section-head h2 {
  font-size: clamp(32px, 4.4vw, 52px);
  margin-top: 18px;
}
.section-head p.lede {
  font-family: var(--font-body);
  font-size: 19px;
  color: var(--grey);
  margin-top: 20px;
  line-height: 1.7;
  max-width: 60ch;
}
.section--light .section-head p.lede { color: #57575F; }

/* ---------------------------------- Buttons ---------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 26px;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: #04140A;
  box-shadow: 0 0 0 rgba(19, 229, 44, 0);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px var(--green-glow);
}
.btn-secondary {
  background: transparent;
  border-color: var(--hair-dark-strong);
  color: var(--paper);
}
.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}
.section--light .btn-secondary {
  border-color: rgba(15,15,34,0.18);
  color: var(--navy);
}
.section--light .btn-secondary:hover { border-color: var(--green); color: #0D7A20; }

.btn-ghost {
  background: none;
  border: none;
  color: var(--green);
  padding: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-ghost svg { transition: transform 0.3s var(--ease); width: 14px; height: 14px; }
.btn-ghost:hover svg { transform: translateX(4px); }
.section--light .btn-ghost { color: #0D7A20; }

/* ---------------------------------- Nav ---------------------------------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(8, 8, 18, 0.86);
  backdrop-filter: blur(14px);
  padding: 14px 0;
  border-color: var(--hair-dark);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img { height: 26px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grey);
  transition: color 0.25s var(--ease);
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--paper); }
.nav-cta { display: flex; align-items: center; gap: 20px; }
.nav-cta .btn { padding: 12px 20px; font-size: 12px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--paper);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav.is-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta .btn-secondary-inline { display: none; }
  .nav-toggle { display: flex; }
  .nav.is-open .nav-links {
    display: flex;
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--void);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 32px;
    gap: 28px;
  }
  .nav.is-open .nav-links a { font-size: 20px; }
}

/* ---------------------------------- Hero ---------------------------------- */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 160px 0 80px;
  background:
    radial-gradient(ellipse 900px 600px at 78% 30%, rgba(19,229,44,0.09), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--void) 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-copy .eyebrow { margin-bottom: 28px; }
.hero h1 {
  font-size: clamp(42px, 6vw, 78px);
  color: var(--paper);
}
.hero h1 em {
  font-style: normal;
  color: var(--green);
}
.hero-sub {
  margin-top: 28px;
  font-size: 19px;
  color: var(--grey);
  max-width: 46ch;
  line-height: 1.7;
}
.hero-actions {
  margin-top: 44px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-footnote {
  margin-top: 40px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--grey);
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-footnote .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green-glow); }

.hero-diagram { position: relative; height: 560px; }
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-diagram { height: 300px; opacity: 0.9; }
  .hero { padding-top: 130px; }
}

.network-svg { width: 100%; height: 100%; overflow: visible; }
.network-svg .net-line {
  stroke: var(--green);
  stroke-opacity: 0.35;
  stroke-width: 1;
  fill: none;
  stroke-dasharray: 4 3;
  animation: net-flow 6s linear infinite;
}
@keyframes net-flow { to { stroke-dashoffset: -140; } }
.network-svg .net-node-dot {
  fill: var(--void);
  stroke: var(--green);
  stroke-width: 1.4;
}
.network-svg .net-hub {
  fill: var(--green);
  filter: drop-shadow(0 0 14px var(--green-glow));
}
.network-svg .net-hub-ring {
  fill: none;
  stroke: var(--green);
  stroke-opacity: 0.5;
  stroke-width: 1;
  animation: net-pulse 3.2s var(--ease) infinite;
  transform-origin: center;
}
@keyframes net-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.9); opacity: 0; }
}
.network-svg text {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  fill: var(--grey);
  text-transform: uppercase;
}
.network-svg .net-hub-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  fill: var(--navy);
}

/* ---------------------------------- Positioning ---------------------------------- */

.positioning {
  position: relative;
}
.board-texture {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    repeating-linear-gradient(0deg, var(--navy) 0 60px, transparent 60px 120px),
    repeating-linear-gradient(90deg, var(--navy) 0 60px, transparent 60px 120px);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.positioning-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
}
.positioning h2 {
  font-size: clamp(30px, 4vw, 46px);
  color: var(--navy);
}
.positioning h3.sub {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: #3A3A42;
  margin-top: 14px;
}
.positioning-body p { font-size: 17px; color: #4B4B54; margin-bottom: 18px; line-height: 1.75; }
.positioning-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--hair-light);
}
.positioning-stack div {
  padding: 20px 0;
  border-bottom: 1px solid var(--hair-light);
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: #5A5A64;
}
.positioning-stack strong {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--navy);
  font-weight: 600;
  min-width: 210px;
}
@media (max-width: 860px) {
  .positioning-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------------------------------- Problem / Fragmentation ---------------------------------- */

.frag-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 64px;
}
.frag-panel {
  border: 1px solid var(--hair-dark);
  border-radius: 6px;
  padding: 40px 32px;
  position: relative;
}
.frag-panel h3 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
  color: var(--grey);
}
.frag-before h4 { color: #B0B0BE; }
.frag-after { border-color: var(--green-line); background: linear-gradient(180deg, var(--green-dim), transparent 60%); }
.frag-after h4 { color: var(--green); }

.frag-rows { display: flex; flex-direction: column; gap: 14px; }
.frag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 12px 14px;
  border: 1px solid var(--hair-dark);
  border-radius: 4px;
  color: var(--paper);
  opacity: 0.9;
}
.frag-row span:last-child { color: var(--grey); }
.frag-row.scattered { border-style: dashed; }

.frag-converge {
  margin-top: 20px;
  text-align: center;
  padding: 22px;
  border-radius: 4px;
  background: rgba(19,229,44,0.08);
  border: 1px solid var(--green-line);
}
.frag-converge strong {
  font-family: var(--font-display);
  font-size: 20px;
  display: block;
  color: var(--green);
  letter-spacing: 0.01em;
}
.frag-converge span {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--grey);
  letter-spacing: 0.08em;
}

@media (max-width: 860px) {
  .frag-wrap { grid-template-columns: 1fr; }
}

/* ---------------------------------- Model (signature diagram) ---------------------------------- */

.model-wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px; align-items: center; }
.model-diagram { position: relative; height: 620px; }
.model-copy strong.callout {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--paper);
  margin: 28px 0 20px;
  line-height: 1.3;
}
.model-copy strong.callout em { color: var(--green); font-style: normal; }
.model-copy p { color: var(--grey); font-size: 17px; line-height: 1.75; margin-bottom: 16px; max-width: 52ch; }

@media (max-width: 1000px) {
  .model-wrap { grid-template-columns: 1fr; }
  .model-diagram { height: 340px; }
}

/* ---------------------------------- Services ---------------------------------- */

.services-lead {
  border: 1px solid var(--hair-light);
  border-radius: 6px;
  padding: 44px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(19,229,44,0.06), transparent 70%);
  border-color: rgba(19,229,44,0.3);
}
.services-lead .eyebrow { color: #0D7A20; margin-bottom: 16px; }
.services-lead h3 { font-size: 28px; color: var(--navy); margin-bottom: 14px; }
.services-lead-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 20px;
}
.services-lead-list span {
  font-family: var(--font-mono);
  font-size: 13px;
  color: #3A3A42;
}
.services-lead-list span::before { content: "— "; color: var(--green); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hair-light);
  border: 1px solid var(--hair-light);
  margin-top: 40px;
}
.service-card {
  background: var(--paper);
  padding: 34px 28px;
}
.service-card .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #5A5A64;
}
.service-card h3 {
  font-size: 19px;
  color: var(--navy);
  margin: 16px 0 18px;
}
.service-card ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.service-card li {
  font-size: 14.5px;
  color: #55555D;
  padding-left: 16px;
  position: relative;
}
.service-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 1px;
  background: var(--green);
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------- Process ---------------------------------- */

.process-list { margin-top: 56px; border-top: 1px solid var(--hair-dark); }
.process-item {
  display: grid;
  grid-template-columns: 90px 1fr 1.3fr;
  gap: 32px;
  padding: 34px 0;
  border-bottom: 1px solid var(--hair-dark);
  align-items: baseline;
}
.process-item .pnum {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--green);
}
.process-item h3 {
  font-size: 24px;
  color: var(--paper);
}
.process-item p { color: var(--grey); font-size: 16px; line-height: 1.7; }
@media (max-width: 760px) {
  .process-item { grid-template-columns: 1fr; gap: 10px; }
}

/* ---------------------------------- Authority ---------------------------------- */

.authority-list { display: flex; flex-direction: column; }
.authority-item {
  padding: 44px 0;
  border-bottom: 1px solid var(--hair-light);
}
.authority-item:first-child { border-top: 1px solid var(--hair-light); }
.authority-item p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 3.4vw, 38px);
  color: var(--navy);
  line-height: 1.25;
  max-width: 20ch;
}
.authority-item p em { color: var(--green); font-style: normal; }

/* ---------------------------------- Case Studies ---------------------------------- */

.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 56px; }
.case-card {
  border: 1px solid var(--hair-dark);
  border-radius: 6px;
  padding: 36px;
  position: relative;
}
.case-card .status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 22px;
}
.case-card .status .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.case-card h3 { font-size: 20px; color: var(--paper); margin-bottom: 14px; }
.case-card .fields { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.case-card .fields div { display: flex; gap: 10px; font-size: 13.5px; }
.case-card .fields span:first-child { font-family: var(--font-mono); color: var(--grey); min-width: 92px; }
.case-card .fields span:last-child { color: rgba(246,245,241,0.5); }
.case-note {
  margin-top: 32px;
  font-size: 14.5px;
  color: var(--grey);
  max-width: 60ch;
}
@media (max-width: 760px) { .case-grid { grid-template-columns: 1fr; } }

/* ---------------------------------- Interactive Tool ---------------------------------- */

.tool-panel {
  background: var(--navy);
  border-radius: 10px;
  padding: 56px;
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.tool-form { display: flex; flex-direction: column; gap: 20px; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 8px;
}
.field input, .field select {
  width: 100%;
  background: rgba(246,245,241,0.04);
  border: 1px solid var(--hair-dark-strong);
  border-radius: 4px;
  padding: 13px 14px;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 15px;
}
.field input:focus, .field select:focus { border-color: var(--green); outline: none; box-shadow: 0 0 0 3px var(--green-dim); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tool-form .btn { margin-top: 8px; align-self: flex-start; }

.tool-result {
  border-left: 1px solid var(--hair-dark);
  padding-left: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tool-result .eyebrow { margin-bottom: 18px; }
.tool-result .leak-name {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.2vw, 44px);
  color: var(--green);
  line-height: 1.05;
}
.tool-result .leak-copy {
  margin-top: 20px;
  color: var(--grey);
  font-size: 16px;
  line-height: 1.7;
}
.tool-result .leak-empty { color: var(--grey); font-size: 15px; line-height: 1.7; max-width: 34ch; }
.tool-result .btn { margin-top: 28px; }

@media (max-width: 900px) {
  .tool-panel { grid-template-columns: 1fr; padding: 32px 24px; gap: 40px; }
  .tool-result { border-left: none; padding-left: 0; border-top: 1px solid var(--hair-dark); padding-top: 32px; }
  .field-row { grid-template-columns: 1fr; }
}

/* ---------------------------------- About teaser ---------------------------------- */

.about-teaser { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-teaser h2 { font-size: clamp(30px, 4vw, 48px); }
.about-teaser p { color: var(--grey); font-size: 17px; line-height: 1.8; margin-top: 22px; max-width: 52ch; }
.about-stack { display: flex; flex-direction: column; gap: 0; }
.about-stack div {
  padding: 22px 0;
  border-bottom: 1px solid var(--hair-dark);
  display: flex; justify-content: space-between; align-items: center;
}
.about-stack div:first-child { border-top: 1px solid var(--hair-dark); }
.about-stack strong { font-family: var(--font-display); font-size: 16px; }
.about-stack span { font-family: var(--font-mono); font-size: 12px; color: var(--grey); }
@media (max-width: 860px) { .about-teaser { grid-template-columns: 1fr; gap: 32px; } }

/* ---------------------------------- Insights ---------------------------------- */

.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hair-light); border: 1px solid var(--hair-light); margin-top: 48px; }
.insight-card { background: var(--paper); padding: 32px 28px; display: flex; flex-direction: column; height: 100%; }
.insight-card .tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: #5A5A64; }
.insight-card h3 { font-size: 18px; color: var(--navy); margin-top: 16px; line-height: 1.4; flex: 1; }
.insight-card .soon { margin-top: 20px; font-family: var(--font-mono); font-size: 11px; color: #0D7A20; letter-spacing: 0.06em; text-transform: uppercase; }
@media (max-width: 860px) { .insights-grid { grid-template-columns: 1fr; } }

/* ---------------------------------- Final CTA ---------------------------------- */

.final-cta {
  text-align: center;
  padding: 140px 0;
  background:
    radial-gradient(ellipse 700px 400px at 50% 0%, rgba(19,229,44,0.12), transparent 65%),
    var(--void);
}
.final-cta h2 {
  font-size: clamp(34px, 5.4vw, 64px);
  max-width: 16ch;
  margin: 0 auto;
}
.final-cta p { color: var(--grey); font-size: 18px; margin: 24px auto 0; max-width: 46ch; }
.final-cta .hero-actions { justify-content: center; margin-top: 40px; }

/* ---------------------------------- Footer ---------------------------------- */

.footer { background: var(--void); border-top: 1px solid var(--hair-dark); padding: 72px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; }
.footer-brand img { height: 24px; margin-bottom: 18px; }
.footer-brand p { color: var(--grey); font-size: 14.5px; line-height: 1.7; max-width: 32ch; }
.footer-col h3 { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey); margin-bottom: 18px; }
.footer-locations { color: var(--grey); font-size: 14.5px; line-height: 1.7; max-width: 30ch; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14.5px; color: rgba(246,245,241,0.75); transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--green); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--hair-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom .statement {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--paper);
}
.footer-bottom .legal { font-family: var(--font-mono); font-size: 12px; color: var(--grey); }
@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ---------------------------------- Reveal animation ---------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------------------------------- Sub-page hero (About / Contact) ---------------------------------- */

.page-hero {
  padding: 200px 0 100px;
  background: linear-gradient(180deg, var(--navy), var(--void));
}
.page-hero h1 { font-size: clamp(38px, 6vw, 68px); }
.page-hero p.lede { color: var(--grey); font-size: 18px; margin-top: 22px; max-width: 54ch; }
.page-hero.center { text-align: center; }
.page-hero.center .eyebrow { justify-content: center; }
.page-hero.center p.lede { margin-left: auto; margin-right: auto; }
.page-hero.center .hero-actions { justify-content: center; margin-top: 40px; }

/* Founder diagram (about page) */
.founder-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.founder-diagram { position: relative; height: 460px; }
.founder-photo { position: relative; height: 460px; display: flex; align-items: center; justify-content: center; }
.founder-photo img { max-height: 100%; width: auto; max-width: 100%; object-fit: contain; }
@media (max-width: 900px) {
  .founder-wrap { grid-template-columns: 1fr; }
  .founder-diagram { height: 340px; }
  .founder-photo { height: 320px; }
}

/* Contact form */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-form { display: flex; flex-direction: column; gap: 22px; }
.contact-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form textarea {
  width: 100%;
  background: rgba(246,245,241,0.04);
  border: 1px solid var(--hair-dark-strong);
  border-radius: 4px;
  padding: 13px 14px;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 15px;
  min-height: 110px;
  resize: vertical;
}
.contact-form textarea:focus { border-color: var(--green); outline: none; box-shadow: 0 0 0 3px var(--green-dim); }
.contact-form input:focus { border-color: var(--green); outline: none; box-shadow: 0 0 0 3px var(--green-dim); }
.contact-note { color: var(--grey); font-size: 14px; margin-top: 4px; }
.contact-success {
  display: none;
  border: 1px solid var(--green-line);
  background: var(--green-dim);
  border-radius: 6px;
  padding: 28px;
  margin-top: 20px;
}
.contact-success.is-visible { display: block; }
.contact-success h2 { color: var(--green); font-size: 18px; margin-bottom: 8px; }
.contact-success p { color: var(--grey); font-size: 14.5px; }
.contact-error {
  border-color: var(--hair-dark-strong);
  background: rgba(246, 245, 241, 0.03);
}
.contact-error h2 { color: var(--paper); }
.contact-error a { color: var(--green); }
.contact-error a:hover { text-decoration: underline; }

.contact-info { display: flex; flex-direction: column; gap: 36px; }
.contact-info-item h3 { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey); margin-bottom: 10px; }
.contact-info-item p, .contact-info-item a { font-size: 17px; color: var(--paper); }
.contact-info-item a:hover { color: var(--green); }

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

/* ---------------------------------- Budget split (Services page) ---------------------------------- */

.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.split-card { border: 1px solid var(--hair-dark); border-radius: 6px; padding: 36px 32px; }
.split-card .split-figure { font-family: var(--font-display); font-size: 34px; font-weight: 700; color: var(--green); }
.split-card h3 { font-size: 19px; color: var(--paper); margin: 14px 0 12px; }
.split-card p { color: var(--grey); font-size: 15px; line-height: 1.7; }
@media (max-width: 760px) { .split-grid { grid-template-columns: 1fr; } }

/* ---------------------------------- Assurance list (Services page) ---------------------------------- */

.assurance-card { border: 1px solid var(--green-line); background: linear-gradient(180deg, var(--green-dim), transparent 70%); border-radius: 6px; padding: 36px; }
.assurance-card h3 { color: var(--green); font-size: 18px; margin-bottom: 20px; }
.assurance-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.assurance-list li { font-size: 15.5px; color: var(--paper); line-height: 1.6; padding-left: 20px; position: relative; }
.assurance-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 1px; background: var(--green); }
.assurance-list strong { font-family: var(--font-display); font-weight: 600; }

/* ---------------------------------- Guarantee box (Audit page) ---------------------------------- */

.guarantee-box {
  border: 1px solid var(--green-line);
  background: linear-gradient(135deg, var(--green-dim), transparent 60%);
  border-radius: 10px;
  padding: 56px 48px;
  text-align: center;
}
.guarantee-box .eyebrow { justify-content: center; margin-bottom: 24px; }
.guarantee-box h2 { font-size: clamp(30px, 4vw, 44px); }
.guarantee-box h2 .big-figure { color: var(--green); }
.guarantee-box p.guarantee-sub { color: var(--grey); font-size: 17px; line-height: 1.75; max-width: 640px; margin: 20px auto 28px; }
.guarantee-box p.guarantee-sub strong { color: var(--paper); }
.guarantee-chips { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(19, 229, 44, 0.08);
  border: 1px solid var(--green-line);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--paper);
}
.chip svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; }

/* ---------------------------------- Problem list (Audit page) ---------------------------------- */

.problem-list { margin-top: 56px; border-top: 1px solid var(--hair-dark); }
.problem-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--hair-dark);
  align-items: start;
}
.problem-icon {
  width: 56px; height: 56px;
  border-radius: 10px;
  background: rgba(255, 90, 90, 0.06);
  border: 1px solid rgba(255, 90, 90, 0.22);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 110, 110, 0.9);
  flex-shrink: 0;
}
.problem-row h3 { font-size: 19px; color: var(--paper); margin-bottom: 8px; }
.problem-row p { color: var(--grey); font-size: 15px; line-height: 1.65; max-width: 640px; }
@media (max-width: 640px) {
  .problem-row { grid-template-columns: 44px 1fr; gap: 16px; }
  .problem-icon { width: 44px; height: 44px; }
}

/* ---------------------------------- Deliverables (Audit page) ---------------------------------- */

.deliv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 56px; }
.deliv-card { border: 1px solid var(--hair-dark); border-radius: 6px; padding: 36px; transition: border-color 0.3s var(--ease); }
.deliv-card:hover { border-color: var(--green-line); }
.deliv-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 8px;
  background: var(--green-dim);
  border: 1px solid var(--green-line);
  color: var(--green);
  font-family: var(--font-display); font-weight: 700; font-size: 17px;
  margin-bottom: 20px;
}
.deliv-card h3 { font-size: 19px; color: var(--paper); margin-bottom: 10px; }
.deliv-card p { color: var(--grey); font-size: 15px; line-height: 1.65; }
@media (max-width: 760px) { .deliv-grid { grid-template-columns: 1fr; } }

/* ---------------------------------- Timeline (Audit page) ---------------------------------- */

.timeline { display: flex; gap: 0; position: relative; margin-top: 56px; }
.timeline::before {
  content: ""; position: absolute; top: 10px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, var(--green-line), var(--green), var(--green-line));
}
.tl-step { flex: 1; text-align: center; position: relative; padding: 0 12px; }
.tl-dot { width: 18px; height: 18px; background: var(--green); border-radius: 50%; margin: 1px auto 22px; box-shadow: 0 0 12px var(--green-glow); position: relative; }
.tl-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); }
.tl-title { font-family: var(--font-display); font-weight: 600; font-size: 16.5px; color: var(--paper); margin-top: 8px; }
.tl-desc { font-size: 13.5px; color: var(--grey); margin-top: 6px; line-height: 1.55; }
@media (max-width: 760px) {
  .timeline { flex-direction: column; gap: 32px; align-items: flex-start; text-align: left; }
  .timeline::before { display: none; }
  .tl-step { padding: 0; }
  .tl-dot { margin: 0 0 12px; }
}

/* ---------------------------------- Comparison table (Audit page) ---------------------------------- */

.compare-wrap { margin-top: 56px; overflow-x: auto; }
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; border: 1px solid var(--hair-dark); border-radius: 8px; overflow: hidden; }
.compare-table th, .compare-table td { padding: 16px 22px; text-align: left; font-size: 14.5px; border-bottom: 1px solid var(--hair-dark); white-space: nowrap; }
.compare-table thead th { background: var(--green-dim); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--paper); font-weight: 500; }
.compare-table thead th:last-child { color: var(--green); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table td:first-child { color: var(--grey); }
.compare-table td:nth-child(2) { color: rgba(255, 110, 110, 0.85); }
.compare-table td:last-child { color: var(--green); font-weight: 500; }

/* ---------------------------------- Pricing (Audit page) ---------------------------------- */

.price-box {
  border: 1px solid var(--green-line);
  border-radius: 10px;
  padding: 56px;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--green-dim), transparent 60%);
}
.price-label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 14px; }
.price-amount { font-family: var(--font-display); font-size: clamp(48px, 7vw, 68px); font-weight: 700; color: var(--paper); letter-spacing: -0.02em; }
.price-amount .currency { font-size: 0.5em; color: var(--grey); vertical-align: super; }
.price-amount .aud { font-size: 0.28em; color: var(--grey); letter-spacing: 0.1em; }
.price-note { font-size: 15px; color: var(--grey); margin: 8px 0 28px; }
.value-stack { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 36px; }
.vs-item { border: 1px solid var(--hair-dark); border-radius: 6px; padding: 18px 14px; }
.vs-value { font-family: var(--font-display); font-weight: 700; font-size: 21px; color: var(--green); }
.vs-label { font-size: 11.5px; color: var(--grey); margin-top: 4px; }
@media (max-width: 640px) { .price-box { padding: 40px 24px; } .value-stack { grid-template-columns: 1fr; } }

/* ---------------------------------- FAQ accordion (Audit page) ---------------------------------- */

.faq-list { max-width: 780px; margin: 56px auto 0; border-top: 1px solid var(--hair-dark); }
.faq-item { border-bottom: 1px solid var(--hair-dark); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  width: 100%; padding: 24px 0;
  cursor: pointer; background: none; border: none; font: inherit; color: inherit; text-align: left;
}
.faq-q h3 { font-size: 17px; font-weight: 600; color: var(--paper); flex: 1; }
.faq-toggle {
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--green-dim); border: 1px solid var(--green-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s var(--ease); }
.faq-a-inner { overflow: hidden; font-size: 14.5px; color: var(--grey); line-height: 1.7; }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-item.is-open .faq-a-inner { padding-bottom: 24px; }
.faq-item.is-open .faq-toggle { transform: rotate(45deg); }

/* ---------------------------------- Application form (Audit page) ---------------------------------- */

.apply-box {
  border: 1px solid var(--green-line);
  border-radius: 10px;
  padding: 48px;
  max-width: 720px;
  margin: 56px auto 0;
  background: linear-gradient(180deg, var(--green-dim), transparent 50%);
}
.apply-box .apply-form { display: flex; flex-direction: column; gap: 20px; }
.form-trust { text-align: center; font-size: 12.5px; color: var(--grey); margin-top: 4px; }
@media (max-width: 640px) { .apply-box { padding: 32px 22px; } }
