/* ============================================
   Amazing shared site styles
   Used by: engenharia, processo, casos, seguranca,
            planos, about, politica-privacidade, index
   ============================================ */

:root {
  --bg: #0a0b0e;
  --bg-elev: #111217;
  --surface: #15161c;
  --surface-2: #1c1d24;
  --text: #f5f5f7;
  --text-dim: #a0a6b0;
  --text-muted: #6b7280;
  --text-faint: #3a3f48;
  --green: #45ff00;
  --green-soft: rgba(69, 255, 0, 0.12);
  --green-line: rgba(69, 255, 0, 0.28);
  --red: #e04a5a;
  --line: rgba(247, 247, 247, 0.06);
  --line-strong: rgba(247, 247, 247, 0.14);
  --serif: "Space Grotesk", "Inter", sans-serif;
  --sans: "Inter", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body.site-page,
body.detail-page-visible {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  scroll-padding-top: 96px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
}

table {
  max-width: 100%;
  table-layout: fixed;
  word-wrap: break-word;
}

/* ============================================
   NAV
   ============================================ */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.9rem 1.75rem;
  background: rgba(10, 11, 14, 0.5);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid rgba(247, 247, 247, 0.04);
  transition: background 0.3s var(--ease), transform 0.35s var(--ease), border-color 0.3s var(--ease);
}
.site-nav.is-scrolled {
  background: rgba(10, 11, 14, 0.82);
  border-bottom-color: var(--line);
}
.site-nav.is-hidden {
  transform: translateY(-110%);
}
.site-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-nav-logo {
  display: flex;
  align-items: center;
  line-height: 0;
  flex: 0 0 auto;
}
.site-nav-logo img {
  height: 52px;
  width: auto;
  display: block;
}
.site-nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  justify-content: center;
}
.site-nav-links a {
  color: rgba(245, 245, 247, 0.72);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  transition: color 0.18s var(--ease), background 0.18s var(--ease);
  position: relative;
}
.site-nav-links a:hover,
.site-nav-links a.is-active {
  color: var(--green);
  background: var(--green-soft);
}
.site-nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.2rem;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
  transform: translateX(-50%);
  box-shadow: 0 0 8px var(--green);
}

/* Submenu dropdown */
.site-nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.site-nav-item > a::after {
  display: none;
}
/* submenu chevron removed: hover/focus reveals dropdown */
.site-nav-submenu {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 260px;
  background: rgba(15, 16, 22, 0.96);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.75rem;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.5),
    0 24px 48px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(69, 255, 0, 0.04);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0s linear 0.22s;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.site-nav-item.has-submenu:hover > .site-nav-submenu,
.site-nav-item.has-submenu:focus-within > .site-nav-submenu,
.site-nav-item.has-submenu.is-open > .site-nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}
.site-nav-submenu::before {
  content: "";
  position: absolute;
  top: -0.45rem;
  left: 0;
  right: 0;
  height: 0.5rem;
}
.site-nav-submenu a {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.7rem 0.9rem;
  color: var(--text);
  text-decoration: none;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.35;
  transition: background 0.18s var(--ease), color 0.18s var(--ease);
  justify-content: center;
  min-height: 0;
}
.site-nav-submenu a small {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.site-nav-submenu a:hover,
.site-nav-submenu a.is-active {
  background: rgba(69, 255, 0, 0.08);
  color: var(--green);
}
.site-nav-submenu a:hover small,
.site-nav-submenu a.is-active small {
  color: rgba(69, 255, 0, 0.7);
}

/* Mobile drawer submenu */
.site-nav-drawer-item.has-submenu > .drawer-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: 0;
  padding: 0.75rem 0.25rem;
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  text-align: left;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.site-nav-drawer-item.has-submenu > .drawer-toggle::after {
  content: "+";
  font-family: var(--mono);
  font-size: 1.5rem;
  color: var(--green);
  transition: transform 0.22s var(--ease);
  line-height: 1;
}
.site-nav-drawer-item.has-submenu.is-open > .drawer-toggle::after {
  transform: rotate(45deg);
}
.site-nav-drawer-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
}
.site-nav-drawer-item.has-submenu.is-open > .site-nav-drawer-submenu {
  max-height: 600px;
}
.site-nav-drawer-submenu a {
  color: var(--text-dim);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  text-decoration: none;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
}
.site-nav-drawer-submenu a:last-child {
  border-bottom: 0;
}
.site-nav-drawer-submenu a:hover {
  color: var(--green);
}
.site-nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
}
.site-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  background: rgba(247, 247, 247, 0.03);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.site-nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.22s var(--ease), opacity 0.22s var(--ease);
}
.site-nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}
.site-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.site-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}
.site-nav-drawer {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(10, 11, 14, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 1.75rem 2rem;
  transform: translateY(-120%);
  transition: transform 0.32s var(--ease);
  z-index: 99;
}
.site-nav-drawer.is-open {
  transform: translateY(0);
}
.site-nav-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.site-nav-drawer-links a {
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  text-decoration: none;
  padding: 0.75rem 0.25rem;
  border-bottom: 1px solid var(--line);
  transition: color 0.18s var(--ease), padding 0.18s var(--ease);
}
.site-nav-drawer-links a:hover {
  color: var(--green);
  padding-left: 0.75rem;
}
.site-nav-drawer .btn {
  margin-top: 1.25rem;
  width: 100%;
}

@media (max-width: 960px) {
  .site-nav-links,
  .site-nav-cta {
    display: none;
  }
  .site-nav-toggle {
    display: flex;
  }
  .site-nav-logo img {
    height: 42px;
  }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
  position: relative;
  overflow: hidden;
  line-height: 1;
}
.btn-primary {
  background: linear-gradient(135deg, #45ff00, #95ff6d);
  color: #050505;
  box-shadow: 0 10px 32px rgba(69, 255, 0, 0.22);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(69, 255, 0, 0.32);
}
.btn-outline {
  background: transparent;
  border-color: rgba(245, 245, 247, 0.22);
  color: var(--text);
}
.btn-outline:hover {
  background: rgba(245, 245, 247, 0.05);
  border-color: rgba(245, 245, 247, 0.4);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--green);
  padding: 0.5rem 0;
  letter-spacing: 0.14em;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.btn-ghost::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--green);
  transform: scaleX(0.25);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.btn-ghost:hover::after {
  transform: scaleX(1);
}

/* ============================================
   LAYOUT PRIMITIVES
   ============================================ */

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  position: relative;
}
.wrap-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--green);
}

.display {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--text);
  margin: 0;
}
.display em {
  font-style: normal;
  color: var(--green);
  font-weight: 300;
}

.display-sm {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 0;
}
.display-sm em {
  font-style: normal;
  color: var(--green);
  font-weight: 300;
}

.lede {
  font-size: 1.12rem;
  color: var(--text-dim);
  line-height: 1.55;
  font-weight: 300;
  max-width: 60ch;
  margin: 0;
}

.kicker {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(6rem, 16vw, 14rem);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--surface-2);
  opacity: 0.55;
  user-select: none;
  pointer-events: none;
}

/* ============================================
   PAGE HEADER (for dedicated pages)
   ============================================ */

.page-head {
  position: relative;
  padding: clamp(6rem, 12vw, 10rem) 0 clamp(2rem, 5vw, 5rem);
  overflow: hidden;
}
.page-head-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 3rem;
}
.page-head-text {
  max-width: 760px;
}
.page-head .eyebrow {
  margin-bottom: 2rem;
}
.page-head .display {
  margin-bottom: 2rem;
}
.page-head-index {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-align: right;
  white-space: nowrap;
}
.page-head-index strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--green);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-top: 0.5rem;
  line-height: 1;
}
.page-head-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 20%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}
.page-head-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69, 255, 0, 0.2), transparent 60%);
  filter: blur(100px);
  pointer-events: none;
  z-index: -1;
}

.page-head-with-art .page-head-inner {
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 860px) {
  .page-head {
    padding: 7rem 0 3rem;
  }
  .page-head-inner {
    grid-template-columns: 1fr;
  }
  .page-head-with-art .page-head-inner {
    grid-template-columns: 1fr;
  }
  .page-head-index {
    text-align: left;
  }
}

/* ============================================
   SECTION / BLOCK
   ============================================ */

.block {
  padding: clamp(3rem, 6vw, 6rem) 0;
  position: relative;
}
.block-lead {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 3.5rem;
}
.block-lead .eyebrow {
  margin-bottom: 1.5rem;
}
.block-lead h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 1.5rem;
}
.block-lead h2 em {
  font-style: normal;
  color: var(--green);
  font-weight: 300;
}

@media (max-width: 860px) {
  .block-lead {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
  }
}

/* ============================================
   EDITORIAL CARDS (asymmetric)
   ============================================ */

.edit-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.edit-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2.25rem;
  position: relative;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease);
  overflow: hidden;
}
.edit-card:hover {
  border-color: var(--green-line);
  transform: translateY(-3px);
  background: var(--surface-2);
}
.edit-card-idx {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: block;
}
.edit-card h3 {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 0.85rem;
  letter-spacing: -0.015em;
}
.edit-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1rem;
  font-weight: 300;
}
.edit-card p:last-child {
  margin-bottom: 0;
}

.edit-card.col-6 { grid-column: span 6; }
.edit-card.col-5 { grid-column: span 5; }
.edit-card.col-7 { grid-column: span 7; }
.edit-card.col-4 { grid-column: span 4; }
.edit-card.col-8 { grid-column: span 8; }
.edit-card.col-12 { grid-column: span 12; }

@media (max-width: 960px) {
  .edit-card.col-4,
  .edit-card.col-5,
  .edit-card.col-6,
  .edit-card.col-7,
  .edit-card.col-8 {
    grid-column: span 12;
  }
}

/* CTA grid (final call-to-action card) */
.cta-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 2.75rem;
  overflow: visible;
}
@media (max-width: 860px) {
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }
}

/* ============================================
   STAT
   ============================================ */

.stat-block {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}
.stat-block strong {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--green);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-block span {
  color: var(--text-dim);
  font-size: 0.85rem;
  line-height: 1.4;
}

/* ============================================
   FOOTER
   ============================================ */

.site-foot {
  padding: 5rem 0 3rem;
  border-top: 1px solid var(--line);
  margin-top: 4rem;
}
.site-foot-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}
.site-foot-brand img {
  height: 40px;
  margin-bottom: 1.25rem;
}
.site-foot-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.55;
  max-width: 28ch;
  margin: 0;
}
.site-foot-col h4 {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
  margin: 0 0 1.25rem;
}
.site-foot-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.site-foot-col a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s var(--ease);
}
.site-foot-col a:hover {
  color: var(--green);
}
.site-foot-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .site-foot-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .site-foot-base {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .site-foot-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .site-foot {
    padding: 3rem 0 2rem;
    margin-top: 2rem;
  }
}

/* ============================================
   REVEAL (scroll animations)
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.9s var(--ease);
  will-change: transform, opacity;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal.r-left { transform: translateX(-32px); }
.reveal.r-right { transform: translateX(32px); }
.reveal.r-scale { transform: scale(0.96); }
.reveal.r-fade { transform: none; }
.reveal.is-visible.r-left,
.reveal.is-visible.r-right { transform: translateX(0); }
.reveal.is-visible.r-scale { transform: scale(1); }

.r-stagger-1 { transition-delay: 0.05s; }
.r-stagger-2 { transition-delay: 0.1s; }
.r-stagger-3 { transition-delay: 0.15s; }
.r-stagger-4 { transition-delay: 0.2s; }
.r-stagger-5 { transition-delay: 0.25s; }
.r-stagger-6 { transition-delay: 0.3s; }

/* ============================================
   VIDEO BG
   ============================================ */

.video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.video-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 11, 14, 0.32) 0%, rgba(10, 11, 14, 0.52) 55%, rgba(10, 11, 14, 0.95) 100%);
  z-index: 3;
}
.video-bg iframe,
.video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: 177.77vh;
  height: 56.25vw;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: 0;
  z-index: 1;
}
.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  top: 0;
  left: 0;
  transform: none;
}
.video-bg .hero-video {
  opacity: 0;
  transition: opacity 1.2s var(--ease);
  z-index: 1;
}
.video-bg .hero-video.is-active {
  opacity: 1;
  z-index: 2;
}

/* CSS mesh fallback (always visible behind iframe) */
.mesh-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(69, 255, 0, 0.22), transparent 45%),
    radial-gradient(circle at 85% 30%, rgba(69, 255, 0, 0.08), transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(138, 43, 226, 0.18), transparent 55%),
    radial-gradient(circle at 80% 90%, rgba(69, 255, 0, 0.12), transparent 45%),
    #05060a;
  animation: meshPan 22s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes meshPan {
  0% { transform: scale(1.05) translate(0, 0); filter: hue-rotate(0deg); }
  50% { transform: scale(1.15) translate(-2%, 1%); filter: hue-rotate(8deg); }
  100% { transform: scale(1.08) translate(1%, -1%); filter: hue-rotate(-4deg); }
}

/* ============================================
   TYPOGRAPHIC REFINEMENT (Vercel guidelines)
   ============================================ */

body.site-page,
body.detail-page-visible {
  font-variant-numeric: tabular-nums;
  text-rendering: optimizeLegibility;
}

/* tighter number columns in price/stat */
.num,
.stat-block strong,
.caso-to strong,
.caso-from strong,
.plano-price-amount,
.manifesto-item strong {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "ss01", "tnum";
}

/* Focus ring — visible for keyboard, invisible for pointer */
:where(a, button, [role="button"]):focus {
  outline: none;
}
:where(a, button, [role="button"]):focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Hit target generosity */
.site-nav-links a,
.btn,
.btn-ghost {
  min-height: 44px;
}

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

/* ============================================
   LAYERED SHADOWS (ambient + direct)
   ============================================ */

.shadow-lift {
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.3),
    0 16px 32px rgba(0, 0, 0, 0.35),
    0 32px 64px rgba(0, 0, 0, 0.25);
}
.shadow-glow {
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.3),
    0 16px 32px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(69, 255, 0, 0.08),
    0 32px 80px rgba(69, 255, 0, 0.1);
}

/* ============================================
   EDITORIAL HERO (video + rotating headline)
   ============================================ */

.ed-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 9rem 0 4rem;
  overflow: hidden;
}
.ed-hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  width: 100%;
  flex: 1;
  align-content: space-between;
}
.ed-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}
.ed-hero-top .eyebrow {
  padding-top: 0.5rem;
}
.ed-hero-meta {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: right;
  line-height: 1.8;
}
.ed-hero-meta span {
  display: block;
}
.ed-hero-headline {
  min-height: clamp(220px, 32vw, 380px);
  display: flex;
  align-items: flex-end;
}
.ed-hero-rotator {
  position: relative;
  width: 100%;
}
.ed-hero-line {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.9s var(--ease);
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 7.5vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--text);
  max-width: 18ch;
}
.ed-hero-line em {
  font-style: normal;
  color: var(--green);
  font-weight: 400;
}
.ed-hero-line.is-active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}
.ed-hero-bottom {
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 2rem;
  align-items: end;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.ed-hero-support {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 48ch;
  font-weight: 300;
  margin: 0;
}
.ed-hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.ed-hero-controls {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 5;
}
.ed-hero-arrow,
.ed-hero-pause {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 16, 22, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 245, 247, 0.18);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.ed-hero-arrow:hover,
.ed-hero-pause:hover {
  background: rgba(69, 255, 0, 0.15);
  border-color: var(--green-line);
  color: var(--green);
  transform: translateY(-1px);
}
.ed-hero-arrow svg,
.ed-hero-pause svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ed-hero-pause .icon-play { display: none; }
.ed-hero-pause.is-paused .icon-pause { display: none; }
.ed-hero-pause.is-paused .icon-play { display: block; }
.ed-hero-dots {
  display: flex;
  gap: 0.45rem;
  padding: 0 0.5rem;
}
.ed-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245, 245, 247, 0.22);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
  position: relative;
}
.ed-hero-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
}
.ed-hero-dot.is-active {
  background: var(--green);
  transform: scale(1.3);
}
.ed-hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 2.5rem;
  transform: translateX(-50%);
  z-index: 4;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  pointer-events: none;
}
.ed-hero-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 24px;
  background: linear-gradient(to bottom, var(--green), transparent);
  margin: 0.75rem auto 0;
  animation: scrollHint 2.2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { opacity: 0.2; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

@media (max-width: 860px) {
  .ed-hero {
    min-height: auto;
    padding: 7rem 0 3rem;
  }
  .ed-hero-top {
    flex-direction: column;
    gap: 1rem;
  }
  .ed-hero-meta {
    text-align: left;
  }
  .ed-hero-bottom {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .ed-hero-actions {
    justify-content: flex-start;
  }
  .ed-hero-controls {
    right: auto;
    left: 2rem;
    bottom: 1rem;
  }
  .ed-hero-scroll {
    display: none;
  }
}

/* ============================================
   TEASER GRID (editorial pointers to pages)
   ============================================ */

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}
.teaser {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2.5rem 2.25rem;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition:
    border-color 0.3s var(--ease),
    transform 0.3s var(--ease),
    background 0.3s var(--ease);
  isolation: isolate;
}
.teaser::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 0%, rgba(69, 255, 0, 0.14), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  z-index: -1;
}
.teaser:hover {
  border-color: var(--green-line);
  transform: translateY(-4px);
  background: var(--surface-2);
}
.teaser:hover::before {
  opacity: 1;
}
.teaser-idx {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  line-height: 0.85;
  font-weight: 300;
  color: var(--green);
  letter-spacing: -0.03em;
  margin: 0;
  font-variant-numeric: tabular-nums;
}
.teaser-title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.6rem;
  color: var(--text);
}
.teaser-desc {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.55;
  font-weight: 300;
  margin: 0 0 1.5rem;
  max-width: 36ch;
}
.teaser-cta {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--green);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}
.teaser-cta::after {
  content: "→";
  transition: transform 0.25s var(--ease);
}
.teaser:hover .teaser-cta::after {
  transform: translateX(6px);
}
.teaser-body {
  max-width: 40ch;
}

.teaser.t-large { grid-column: span 7; min-height: 440px; }
.teaser.t-med   { grid-column: span 5; min-height: 440px; }
.teaser.t-small { grid-column: span 4; }
.teaser.t-wide  { grid-column: span 8; }

@media (max-width: 960px) {
  .teaser.t-large,
  .teaser.t-med,
  .teaser.t-small,
  .teaser.t-wide {
    grid-column: span 12;
    min-height: 280px;
  }
}

/* ============================================
   CASE (editorial, before/after metric)
   ============================================ */

.case-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  padding: 4rem 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.case-row:last-child {
  border-bottom: 1px solid var(--line);
}
.case-meta {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
}
.case-meta-idx {
  display: block;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5rem);
  color: var(--green);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 1rem;
  font-variant-numeric: tabular-nums;
}
.case-body h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 1.25rem;
}
.case-body p {
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0 0 2rem;
  max-width: 56ch;
}
.case-metric {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  font-variant-numeric: tabular-nums;
}
.case-metric-from,
.case-metric-to {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.case-metric-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.case-metric-val {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text-dim);
}
.case-metric-to .case-metric-val {
  color: var(--green);
}
.case-metric-arrow {
  color: var(--green);
  font-family: var(--mono);
  font-size: 1.1rem;
}

@media (max-width: 860px) {
  .case-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2.5rem 0;
  }
  .case-metric {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

/* ============================================
   PROCESS TIMELINE
   ============================================ */

.timeline {
  position: relative;
  padding-left: 2.5rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0.4rem;
  top: 0;
  bottom: 1rem;
  width: 1px;
  background: linear-gradient(to bottom, var(--green-line), transparent);
}
.timeline-step {
  position: relative;
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
}
.timeline-step:first-child {
  border-top: 0;
}
.timeline-step::before {
  content: "";
  position: absolute;
  left: -2.45rem;
  top: 2.5rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(69, 255, 0, 0.18);
}
.timeline-idx {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}
.timeline-step h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}
.timeline-step p {
  color: var(--text-dim);
  font-size: 0.98rem;
  line-height: 1.55;
  margin: 0;
  max-width: 52ch;
}

/* ============================================
   PLANS (pricing)
   ============================================ */

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
.plan {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2.5rem 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
  position: relative;
}
.plan:hover {
  border-color: var(--green-line);
  transform: translateY(-3px);
}
.plan.is-featured {
  background: linear-gradient(180deg, rgba(69, 255, 0, 0.05), rgba(69, 255, 0, 0.015));
  border-color: var(--green-line);
}
.plan-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.75rem;
}
.plan-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin: 0;
}
.plan-badge {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--green);
  color: var(--bg);
  font-weight: 600;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  font-variant-numeric: tabular-nums;
  margin-bottom: 0.35rem;
}
.plan-price-currency {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--text-muted);
}
.plan-price-amount {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--text);
}
.plan.is-featured .plan-price-amount {
  color: var(--green);
}
.plan-price-period {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.plan-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 2rem;
}
.plan-features {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.plan-features li {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 300;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}
.plan-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 2px;
  transform: rotate(45deg);
}
.plan .btn {
  margin-top: auto;
  width: 100%;
}

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

/* ============================================
   PILLARS (security, etc.)
   ============================================ */

.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.pillar {
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  position: relative;
  transition: background 0.25s var(--ease);
}
.pillar:hover {
  background: var(--surface);
}
.pillar:nth-child(2n) {
  border-right: 0;
}
.pillar:nth-last-child(-n+2) {
  border-bottom: 1px solid var(--line);
}
.pillar-idx {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--green);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: block;
  font-variant-numeric: tabular-nums;
}
.pillar h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}
.pillar p {
  color: var(--text-dim);
  font-size: 0.98rem;
  line-height: 1.55;
  margin: 0;
  max-width: 44ch;
  font-weight: 300;
}

@media (max-width: 860px) {
  .pillars {
    grid-template-columns: 1fr;
  }
  .pillar {
    border-right: 0 !important;
  }
  .pillar:nth-last-child(1) {
    border-bottom: 1px solid var(--line);
  }
}

/* ============================================
   MANIFESTO (big stat statement)
   ============================================ */

.manifesto-block {
  padding: clamp(3rem, 7vw, 7rem) 0;
  text-align: left;
  position: relative;
}
.manifesto-lead {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--text);
  margin: 0 0 3rem;
  max-width: 22ch;
}
.manifesto-lead em {
  font-style: normal;
  color: var(--green);
  font-weight: 400;
}
.manifesto-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.manifesto-stat {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--line);
  font-variant-numeric: tabular-nums;
}
.manifesto-stat:last-child {
  border-right: 0;
}
.manifesto-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--green);
  margin-bottom: 1rem;
}
.manifesto-stat p {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.5;
  margin: 0;
  max-width: 28ch;
}
.manifesto-stat small {
  display: block;
  margin-top: 1rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
@media (max-width: 860px) {
  .manifesto-stats {
    grid-template-columns: 1fr;
  }
  .manifesto-stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

/* ============================================
   DEPTH COMPONENTS (scenario, approach, outcomes, differential)
   ============================================ */

/* Hero art wrapper with illustration slot */
.hero-art {
  position: relative;
  min-height: 360px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(69, 255, 0, 0.15), transparent 50%),
    radial-gradient(circle at 80% 90%, rgba(138, 43, 226, 0.12), transparent 50%),
    var(--surface);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.hero-art svg {
  width: 100%;
  height: auto;
  max-height: 340px;
}

/* Scenario block — plain-spoken context */
.scenario {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding: 5rem 0;
  border-top: 1px solid var(--line);
}
.scenario-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0;
}
.scenario-heading em {
  color: var(--green);
  font-style: normal;
  font-weight: 400;
}
.scenario-body p {
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.65;
  font-weight: 300;
  margin: 0 0 1.1rem;
}
.scenario-body p:last-child {
  margin-bottom: 0;
}
.scenario-body strong {
  color: var(--text);
  font-weight: 400;
}
@media (max-width: 860px) {
  .scenario {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 3rem 0;
  }
}

/* Approach block — with artifact mockup */
.approach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding: 5rem 0;
}
.approach > * {
  min-width: 0;
}
.approach-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: astep;
}
.approach-steps li {
  counter-increment: astep;
  position: relative;
  padding: 1.75rem 0 1.75rem 3.75rem;
  border-top: 1px solid var(--line);
}
.approach-steps li:first-child {
  border-top: 0;
}
.approach-steps li::before {
  content: counter(astep, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1.9rem;
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--green);
  letter-spacing: 0.15em;
  font-variant-numeric: tabular-nums;
}
.approach-steps h4 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0 0 0.5rem;
}
.approach-steps p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
  font-weight: 300;
}
@media (max-width: 860px) {
  .approach {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0;
  }
}

/* Artifact mockups (terminal, spec, chart, etc.) */
.artifact {
  position: sticky;
  top: 110px;
  border-radius: 18px;
  background: #0d0e13;
  border: 1px solid var(--line);
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.5),
    0 24px 48px rgba(0, 0, 0, 0.45);
}
.artifact-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #07080b;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
}
.artifact-dots {
  display: flex;
  gap: 0.35rem;
  margin-right: 0.5rem;
}
.artifact-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1f2026;
}
.artifact-dots span:first-child {
  background: #ff5f57;
}
.artifact-dots span:nth-child(2) {
  background: #ffbd2e;
}
.artifact-dots span:nth-child(3) {
  background: #27c93f;
}
.artifact-body {
  padding: 1.25rem 1.5rem;
  font-family: var(--mono);
  font-size: 0.85rem;
  line-height: 1.6;
  color: #d1d5db;
  overflow-x: auto;
}
.artifact-body pre {
  margin: 0;
  white-space: pre-wrap;
  overflow-wrap: break-word;
  word-break: break-word;
}
.artifact-body .k { color: #93c5fd; }
.artifact-body .s { color: #86efac; }
.artifact-body .c { color: #64748b; font-style: italic; }
.artifact-body .p { color: #f472b6; }
.artifact-body .n { color: var(--green); }
.artifact-body .cmd { color: var(--green); }
.artifact-body .out { color: #9ca3af; }
@media (max-width: 860px) {
  .artifact {
    position: relative;
    top: auto;
  }
}

/* Outcomes grid — commercial angle */
.outcomes {
  padding: 5rem 0;
  border-top: 1px solid var(--line);
}
.outcomes-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: end;
}
.outcomes-head h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
}
.outcomes-head h2 em {
  color: var(--green);
  font-style: normal;
  font-weight: 300;
}
.outcomes-head p {
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 300;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.outcome {
  padding: 2.5rem 1.75rem;
  border-right: 1px solid var(--line);
  font-variant-numeric: tabular-nums;
}
.outcome:last-child {
  border-right: 0;
}
.outcome-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}
.outcome-val {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 300;
  color: var(--green);
  line-height: 0.95;
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 0.75rem;
}
.outcome-desc {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.45;
  margin: 0;
  font-weight: 300;
  max-width: 26ch;
}
@media (max-width: 860px) {
  .outcomes-head {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .outcomes-grid {
    grid-template-columns: 1fr 1fr;
  }
  .outcome:nth-child(2n) {
    border-right: 0;
  }
  .outcome:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
}

/* Differential callout — positive differentiation */
.differential {
  padding: 5rem 0;
  border-top: 1px solid var(--line);
}
.differential-lead {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3rem;
}
.differential-lead h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
}
.differential-lead h2 em {
  color: var(--green);
  font-style: normal;
  font-weight: 300;
}
.differential-lead p {
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 300;
}
.differential-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.diff-card {
  padding: 2rem 1.75rem;
  background: linear-gradient(180deg, rgba(69, 255, 0, 0.04), rgba(69, 255, 0, 0.01));
  border: 1px solid var(--green-line);
  border-radius: 16px;
  position: relative;
}
.diff-card-sym {
  font-family: var(--serif);
  font-size: 2.25rem;
  color: var(--green);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
  font-variant-numeric: tabular-nums;
}
.diff-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0 0 0.5rem;
}
.diff-card p {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
  font-weight: 300;
}
@media (max-width: 860px) {
  .differential-lead {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .differential-grid {
    grid-template-columns: 1fr;
  }
}

/* Proof strip — mini case or quote */
.proof-strip {
  padding: 4rem 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2.5rem;
  align-items: center;
}
.proof-badge {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--green);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--green-line);
  border-radius: 999px;
}
.proof-strip p {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0;
}
.proof-strip a {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--green);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.proof-strip a::after {
  content: "→";
  transition: transform 0.2s var(--ease);
}
.proof-strip a:hover::after {
  transform: translateX(5px);
}
@media (max-width: 860px) {
  .proof-strip {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: left;
  }
}

/* ROI simulator */
.roi {
  padding: 5rem 0;
  border-top: 1px solid var(--line);
}
.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.roi-col {
  padding: 2.5rem 2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  font-variant-numeric: tabular-nums;
}
.roi-col.is-amazing {
  background: linear-gradient(180deg, rgba(69, 255, 0, 0.06), rgba(69, 255, 0, 0.02));
  border-color: var(--green-line);
}
.roi-col-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: block;
}
.roi-col.is-amazing .roi-col-label {
  color: var(--green);
}
.roi-line {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--text-dim);
}
.roi-line:first-of-type {
  border-top: 0;
}
.roi-line strong {
  color: var(--text);
  font-weight: 400;
}
.roi-col.is-amazing .roi-line strong {
  color: var(--green);
}
.roi-total {
  margin-top: 1rem;
  padding-top: 1.25rem;
  border-top: 2px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.roi-total-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.roi-total-val {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.02em;
}
.roi-col.is-amazing .roi-total-val {
  color: var(--green);
}
@media (max-width: 860px) {
  .roi-grid {
    grid-template-columns: 1fr;
  }
}

/* Honest "not included" block */
.honest {
  padding: 4rem 0;
  border-top: 1px solid var(--line);
}
.honest h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
}
.honest-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 2rem;
}
.honest-list li {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.5;
  padding-left: 1.5rem;
  position: relative;
}
.honest-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--text-muted);
  font-weight: 600;
}
@media (max-width: 860px) {
  .honest-list {
    grid-template-columns: 1fr;
  }
}
