:root {
  --bg: #080a0d;
  --bg-elevated: #0e1116;
  --surface: #141820;
  --surface-2: #1a1f29;
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.12);
  --text: #e9ecef;
  --text-soft: #c5ccd4;
  --muted: #8b949e;
  --accent: #2dd4bf;
  --accent-dim: rgba(45, 212, 191, 0.12);
  --accent-glow: rgba(45, 212, 191, 0.28);
  --accent-hover: #5eead4;
  --danger-soft: #f0a8a0;
  --radius: 14px;
  --radius-sm: 10px;
  --max: 1120px;
  --header-h: 68px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --display: "Outfit", "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

body {
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(45, 212, 191, 0.09), transparent 55%),
    radial-gradient(ellipse 40% 30% at 90% 10%, rgba(56, 120, 255, 0.05), transparent 50%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--accent-hover); }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 10000;
  background: var(--accent);
  color: #042f2e;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}
.skip-link:focus { top: 1rem; }

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .wrap { width: min(100% - 4rem, var(--max)); }
}

main {
  min-height: calc(100vh - var(--header-h) - 7rem);
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  background: rgba(8, 10, 13, 0.78);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

@media (min-width: 768px) {
  .header-inner { width: min(100% - 4rem, var(--max)); }
}

.logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--text);
  text-decoration: none;
}
.logo:hover { color: var(--text); }
.logo span { color: var(--accent); }

.nav {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

.nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.nav a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}
.nav a.es {
  color: var(--muted);
  margin-left: 0.35rem;
}
.nav a.es:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }

@media (min-width: 860px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
}

.nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  padding: 1rem 1.25rem 1.25rem;
  background: rgba(10, 12, 16, 0.97);
  border-bottom: 1px solid var(--border);
  gap: 0.25rem;
  backdrop-filter: blur(20px);
}
.nav.open a {
  padding: 0.85rem 1rem;
  width: 100%;
}

/* —— Typography —— */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.15rem;
}
.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--text);
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.35rem, 5.5vw, 3.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
}

h4 {
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--text-soft);
  max-width: 38rem;
  line-height: 1.7;
}

.lead + .lead { margin-top: 1rem; }

p { color: var(--text-soft); max-width: 40rem; }
p + p { margin-top: 1rem; }

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s var(--ease), background 0.2s, border-color 0.2s, box-shadow 0.2s, color 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: #042f2e;
  box-shadow: 0 0 0 0 transparent, 0 8px 28px -8px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #042f2e;
  box-shadow: 0 0 24px -4px var(--accent-glow), 0 10px 32px -8px var(--accent-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.22);
  color: var(--text);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* —— Sections —— */
section {
  padding: clamp(4rem, 9vw, 6.5rem) 0;
  position: relative;
  z-index: 1;
}

.section-head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 42rem;
}

.section-head p { margin-top: 1rem; }
.section-head.wide { max-width: 46rem; }

/* —— Hero —— */
.hero {
  padding: clamp(3.5rem, 10vw, 7rem) 0 clamp(4rem, 8vw, 6rem);
  min-height: calc(88vh - var(--header-h));
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.35fr 0.85fr;
    align-items: end;
    gap: 4rem;
  }
}

.hero-visual {
  position: relative;
  border-radius: 20px;
  border: 1px solid var(--border);
  background:
    linear-gradient(160deg, rgba(45, 212, 191, 0.08), transparent 45%),
    linear-gradient(to bottom, var(--surface), var(--bg-elevated));
  padding: 1.75rem;
  overflow: hidden;
  min-height: 280px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -40% auto auto 40%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  filter: blur(20px);
  opacity: 0.5;
}

.terminal {
  position: relative;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--muted);
}

.terminal-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 1.1rem;
}
.terminal-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.terminal-bar i:nth-child(1) { background: #ff5f57; opacity: 0.7; }
.terminal-bar i:nth-child(2) { background: #febc2e; opacity: 0.7; }
.terminal-bar i:nth-child(3) { background: #28c840; opacity: 0.7; }

.terminal .prompt { color: var(--accent); }
.terminal .ok { color: #86efac; }
.terminal .dim { color: rgba(139, 148, 158, 0.65); }
.terminal .line { margin-bottom: 0.35rem; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--muted);
}
.hero-meta strong {
  color: var(--text-soft);
  font-weight: 500;
}

/* —— Page hero (inner pages) —— */
.page-hero {
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(2.5rem, 5vw, 3.75rem);
  min-height: 0;
  display: block;
}
.page-hero h1 {
  font-size: clamp(2.15rem, 4.8vw, 3.35rem);
  max-width: 16ch;
}
.page-hero .lead { max-width: 42rem; }

.page-hero.compact {
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
}

/* —— Outcome —— */
.outcome {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}

.outcome .wrap {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .outcome .wrap {
    grid-template-columns: 1fr 1.15fr;
    gap: 4rem;
    align-items: start;
  }
}

.outcome h2 { margin-bottom: 0; }
.outcome-body p:first-child { margin-top: 0; }

/* —— Cards —— */
.card-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .card-grid.cols-5 { grid-template-columns: repeat(2, 1fr); }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.6rem;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s;
}
.card:hover {
  border-color: rgba(45, 212, 191, 0.28);
  background: var(--surface-2);
}

.card h3 {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.card-num {
  flex-shrink: 0;
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  opacity: 0.85;
  margin-top: 0.2rem;
  letter-spacing: 0;
}

.card p {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: none;
  line-height: 1.6;
}

.cap-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-dim);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(45, 212, 191, 0.18);
}
.cap-icon svg { width: 18px; height: 18px; }

/* —— Private AI —— */
.ai-section {
  padding: clamp(1.25rem, 4vw, 2.75rem) 0;
}

.ai-panel {
  width: min(100% - 1.5rem, calc(var(--max) + 2rem));
  margin: 0 auto;
  border-radius: 24px;
  border: 1px solid rgba(45, 212, 191, 0.18);
  background:
    radial-gradient(ellipse 70% 60% at 0% 0%, rgba(45, 212, 191, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 50% at 100% 100%, rgba(56, 100, 255, 0.1), transparent 50%),
    linear-gradient(165deg, #10161c 0%, #0c1218 50%, #0a1014 100%);
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 4vw, 3.5rem);
  position: relative;
  overflow: hidden;
}

.ai-panel::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.45), transparent);
}

.ai-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .ai-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
  }
}

.ai-points {
  display: grid;
  gap: 1.25rem;
}

.ai-point {
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.ai-point h3 {
  font-size: 1.02rem;
  margin-bottom: 0.4rem;
  color: var(--accent-hover);
}
.ai-point p {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: none;
  margin: 0;
}

.ai-body p { max-width: 36rem; }

.ai-topics {
  display: grid;
  gap: 1rem;
  margin-top: 2.25rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 800px) {
  .ai-topics { grid-template-columns: 1fr 1fr; }
}
.ai-topic {
  padding: 1.3rem 1.4rem 1.45rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.ai-topic h3 {
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
  color: var(--accent-hover);
}
.ai-topic p {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: none;
  margin: 0;
}
.ai-topic p + p { margin-top: 0.75rem; }

.ai-intro {
  max-width: 46rem;
  position: relative;
  z-index: 1;
}
.ai-intro p { max-width: none; }
.ai-intro h2 { max-width: 18ch; }

/* —— Why —— */
.why-grid {
  display: grid;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

@media (min-width: 720px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
}

.why-item {
  padding: 1.5rem 1.6rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.why-item:hover { background: rgba(45, 212, 191, 0.03); }

@media (min-width: 720px) {
  .why-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .why-item:nth-last-child(-n+2) { border-bottom: none; }
  .why-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    border-right: none;
  }
}

@media (max-width: 719px) {
  .why-item:last-child { border-bottom: none; }
}

.why-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}
.why-item p {
  font-size: 0.93rem;
  color: var(--muted);
  max-width: none;
  margin: 0;
}

/* —— Established / Fit —— */
.two-col {
  display: grid;
  gap: 3rem;
}

@media (min-width: 800px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

.two-col.tight { gap: 1rem; }
@media (min-width: 800px) {
  .two-col.tight { gap: 1rem; }
}

.panel {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  height: 100%;
}

.panel.fit-yes {
  border-color: rgba(45, 212, 191, 0.2);
  background: linear-gradient(180deg, rgba(45, 212, 191, 0.06), var(--surface));
}

.panel.fit-no {
  border-color: rgba(255, 255, 255, 0.06);
}

.panel-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.fit-yes .panel-label { color: var(--accent); }
.fit-no .panel-label { color: var(--muted); }

.panel p { max-width: none; font-size: 0.98rem; }

.established-stat {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  background: var(--accent-dim);
  border: 1px solid rgba(45, 212, 191, 0.2);
}
.established-stat strong {
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--accent);
}
.established-stat span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* —— Contact CTA —— */
.contact {
  border-top: 1px solid var(--border);
}

.contact-box {
  text-align: center;
  padding: clamp(3rem, 7vw, 4.5rem) clamp(1.5rem, 4vw, 3rem);
  border-radius: 24px;
  border: 1px solid var(--border);
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(45, 212, 191, 0.1), transparent 60%),
    var(--surface);
  max-width: 44rem;
  margin-inline: auto;
}

.contact-box h2 { margin-inline: auto; }
.contact-box .lead {
  margin-inline: auto;
  margin-top: 1rem;
}

.email-link {
  display: inline-block;
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 1.75rem 0 0.5rem;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.email-link:hover {
  color: var(--accent);
  background: var(--accent-dim);
}

.contact-box .btn-row {
  justify-content: center;
  margin-top: 1.75rem;
}

/* —— Footer —— */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0 2.5rem;
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
}
.footer-links a:hover { color: var(--text-soft); }
.footer-links a.es {
  /* language switcher — same hover as other footer links */
}

/* —— Utility —— */
.muted { color: var(--muted); }
.mt-0 { margin-top: 0; }

.divider-soft {
  height: 1px;
  background: var(--border);
  border: 0;
  margin: 0;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
  font-size: 0.95rem;
  margin-top: 1.5rem;
}
.link-arrow svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s var(--ease);
}
.link-arrow:hover svg { transform: translateX(3px); }

.scroll-target {
  scroll-margin-top: calc(var(--header-h) + 1.25rem);
}

.band {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.prose p { max-width: 42rem; }
.prose .lead { max-width: 42rem; }

.measure { max-width: 42rem; }
.measure-wide { max-width: 46rem; }

/* —— Service blocks —— */
.service-block {
  border-top: 1px solid var(--border);
  padding: clamp(3.25rem, 7vw, 5.5rem) 0;
}
.service-block .section-head { margin-bottom: 1.75rem; }
.service-block .section-head h2 { max-width: 20ch; }

.situations {
  margin-top: 1.75rem;
  padding: 1.4rem 1.5rem 1.55rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}
.situations > h3,
.situations > p.label {
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}
.situations ul {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}
@media (min-width: 800px) {
  .situations ul { grid-template-columns: 1fr 1fr; gap: 0.7rem 1.5rem; }
}
.situations li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}
.situations li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

/* —— Steps —— */
.steps {
  display: grid;
  gap: 1rem;
}

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 1.15rem;
  align-items: start;
  transition: border-color 0.25s var(--ease), background 0.25s;
}
.step:hover {
  border-color: rgba(45, 212, 191, 0.28);
  background: var(--surface-2);
}
.step-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(45, 212, 191, 0.2);
  display: grid;
  place-items: center;
  grid-row: 1 / span 2;
  margin-top: 0.1rem;
}
.step h3 { margin-bottom: 0.35rem; align-self: end; }
.step p {
  margin: 0;
  max-width: none;
  font-size: 0.95rem;
  color: var(--muted);
}

/* —— Pull quote —— */
.pull {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.35;
  color: var(--accent-hover);
  border-left: 2px solid var(--accent);
  padding: 0.2rem 0 0.2rem 1.25rem;
  margin: 1.75rem 0 0;
  max-width: 38rem;
  text-wrap: pretty;
}

/* —— Checklist —— */
.checklist {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  margin: 1.35rem 0 0;
}
.checklist li {
  padding: 1rem 1.2rem 1.05rem 2.7rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-soft);
  position: relative;
  max-width: none;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 1.1rem;
  top: 1.3rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* —— Facts / legal identification —— */
.facts {
  list-style: none;
  display: grid;
  gap: 0;
  margin: 1.35rem 0 1.75rem;
  padding: 0.4rem 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 44rem;
}
.facts li {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--border);
}
.facts li:last-child { border-bottom: none; }
.facts span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.facts strong {
  color: var(--text);
  font-weight: 500;
  font-size: 1rem;
}

.legal h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.legal h3 {
  font-size: 1.05rem;
  margin-top: 1.5rem;
}

/* —— Contact page layout —— */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 860px) {
  .contact-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: start;
  }
}

.email-card {
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(45, 212, 191, 0.22);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(45, 212, 191, 0.12), transparent 60%),
    var(--surface);
  text-align: center;
}
.email-card .email-link { margin-top: 0.75rem; }
.email-card p { margin-inline: auto; }

/* —— 404 —— */
.not-found {
  text-align: left;
  padding: clamp(4rem, 10vw, 7rem) 0;
}
.not-found h1 { max-width: 12ch; }

/* —— Nested two-col inside company fit —— */
.fit-stack {
  display: grid;
  gap: 1rem;
}
