/* ================================================
   ADVERSIM DESIGN SYSTEM
   Shared across all pages
   ================================================ */

@font-face {
  font-family: 'Space Age';
  src: url('assets/SpaceAge-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --emerald: #00A55A;
  --emerald-bright: #00C66E;
  --emerald-deep: #007A42;
  --emerald-dark: #003D21;
  --emerald-glow: rgba(0, 198, 110, 0.35);
  --ink: #0A0F0C;
  --ink-2: #111713;
  --ink-3: #1A2520;
  --line: rgba(0, 198, 110, 0.14);
  --line-strong: rgba(0, 198, 110, 0.28);
  --bone: #F4F2EC;
  --bone-dim: #C9C7C0;
  --mute: #7C8782;

  --display: 'Fraunces', Georgia, serif;
  --sans: 'Archivo', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --max: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--bone);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--emerald); color: var(--ink); }

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' /%3E%3C/svg%3E");
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 15, 12, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s ease;
}
.nav.scrolled { padding: 12px var(--gutter); }

.logo {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark { width: 32px; height: 32px; display: grid; place-items: center; }
.logo-text {
  font-family: 'Space Age', var(--sans);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--emerald-bright);
  font-size: 26px;
  line-height: 1;
  padding-top: 4px;
}

/* Mascot — the hooded adversary figure */
.mascot {
  display: block;
  filter: drop-shadow(0 0 40px rgba(0, 198, 110, 0.15));
  transition: filter 0.5s ease;
}
.mascot:hover { filter: drop-shadow(0 0 60px rgba(0, 198, 110, 0.35)); }
.mascot-wrap {
  position: relative;
  display: grid;
  place-items: center;
  padding: 40px;
}
.mascot-wrap::before {
  content: '';
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 165, 90, 0.15) 0%, transparent 60%);
  z-index: 0;
}
.mascot-wrap .mascot { position: relative; z-index: 1; max-width: 360px; width: 100%; }
.mascot-label {
  position: absolute;
  bottom: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--emerald-bright);
  text-align: center;
  z-index: 2;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  color: var(--bone-dim);
  transition: color 0.2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--emerald-bright); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 0;
  background: var(--emerald-bright);
  transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  padding: 11px 22px;
  background: var(--emerald);
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  border-radius: 2px;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}
.nav-cta:hover {
  background: var(--emerald-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--emerald-glow);
}

.nav-toggle { display: none; font-size: 24px; color: var(--emerald-bright); }

@media (max-width: 1000px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 99;
  padding: 100px var(--gutter) var(--gutter);
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--display);
  font-size: 28px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--bone);
}
.mobile-menu a:hover { color: var(--emerald-bright); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 2px;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn-primary {
  background: var(--emerald);
  color: var(--ink);
  box-shadow: 0 4px 24px rgba(0, 165, 90, 0.3);
}
.btn-primary:hover {
  background: var(--emerald-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px var(--emerald-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--bone);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--emerald-bright);
  color: var(--emerald-bright);
  background: rgba(0, 198, 110, 0.04);
}
.btn .arrow { transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ========== SHARED SECTION ELEMENTS ========== */
section { position: relative; }

.section-pad { padding: clamp(80px, 12vw, 160px) var(--gutter); }
.section-pad-sm { padding: clamp(60px, 8vw, 100px) var(--gutter); }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--emerald-bright);
  margin-bottom: 24px;
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--emerald-bright);
}

h2.section-h {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin-bottom: 24px;
  max-width: 18ch;
}
h2.section-h em {
  font-style: italic;
  color: var(--emerald-bright);
  font-weight: 300;
}

.section-lead {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--bone-dim);
  max-width: 62ch;
  line-height: 1.6;
}

/* ========== PAGE HERO (for inner pages) ========== */
.page-hero {
  padding: 180px var(--gutter) 100px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(0, 165, 90, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(0, 165, 90, 0.08) 0%, transparent 55%);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 198, 110, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 198, 110, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 32px;
}
.breadcrumb a { color: var(--bone-dim); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--emerald-bright); }
.breadcrumb .sep { color: var(--emerald-bright); }
.breadcrumb .current { color: var(--emerald-bright); }

.page-hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(42px, 6.4vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  max-width: 18ch;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--emerald-bright);
  font-weight: 300;
}

@media (max-width: 880px) {
  .page-hero-inner[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .page-hero-inner[style*="grid-template-columns"] .mascot-wrap {
    padding: 0;
    max-width: 280px;
    margin: 0 auto;
  }
}

.page-hero-sub {
  font-size: clamp(17px, 1.7vw, 21px);
  color: var(--bone-dim);
  max-width: 70ch;
  line-height: 1.5;
  margin-bottom: 40px;
}

.page-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========== SERVICE BLOCK (detailed alternating) ========== */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: clamp(60px, 9vw, 120px) 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.service-block:first-of-type { border-top: none; }
.service-block.reverse > .service-visual { order: -1; }
@media (max-width: 880px) {
  .service-block { grid-template-columns: 1fr; gap: 40px; }
  .service-block.reverse > .service-visual { order: 0; }
}

.service-text .s-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--emerald-bright);
  margin-bottom: 22px;
}
.service-text h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.service-text p {
  color: var(--bone-dim);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 16px;
}
.service-text .s-meta {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.s-meta div {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}
.s-meta strong {
  display: block;
  color: var(--emerald-bright);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  margin-top: 4px;
  letter-spacing: 0.02em;
  text-transform: none;
}

/* Methodology card visual */
.method-card {
  position: relative;
  padding: 36px 32px;
  background: var(--ink-2);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  overflow: hidden;
}
.method-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 50px; height: 50px;
  border-top: 2px solid var(--emerald-bright);
  border-left: 2px solid var(--emerald-bright);
}
.method-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 50px; height: 50px;
  border-bottom: 2px solid var(--emerald-bright);
  border-right: 2px solid var(--emerald-bright);
}
.method-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald-bright);
  margin-bottom: 22px;
}
.method-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.012em;
  margin-bottom: 24px;
}
.method-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.method-list li {
  display: flex;
  gap: 14px;
  font-size: 14px;
  color: var(--bone-dim);
  line-height: 1.5;
  padding-left: 0;
}
.method-step {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--emerald-bright);
  border-radius: 2px;
  background: var(--ink);
}

/* ========== CTA STRIP ========== */
.cta-strip {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  background:
    radial-gradient(ellipse at center, rgba(0, 165, 90, 0.18) 0%, transparent 70%),
    var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 198, 110, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 198, 110, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.cta-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.cta-strip h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.cta-strip h2 em {
  font-style: italic;
  color: var(--emerald-bright);
}

.cta-strip p {
  color: var(--bone-dim);
  font-size: clamp(15px, 1.5vw, 18px);
  max-width: 56ch;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== TRUST BAR ========== */
.trust {
  padding: 40px var(--gutter);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-2);
}
.trust-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.trust-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}
.trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 44px;
  flex: 1;
  justify-content: flex-end;
}
.trust-item {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--bone-dim);
  text-transform: uppercase;
  position: relative;
  padding-left: 18px;
}
.trust-item::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--emerald-bright);
  border-radius: 50%;
}

/* ========== FAQ ========== */
.faq-list {
  margin-top: 56px;
  border-top: 1px solid var(--line);
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(19px, 2.2vw, 26px);
  letter-spacing: -0.01em;
  color: var(--bone);
  transition: color 0.2s ease;
}
.faq-q:hover { color: var(--emerald-bright); }
.faq-toggle {
  width: 32px; height: 32px;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-family: var(--mono);
  font-size: 16px;
  color: var(--emerald-bright);
  transition: all 0.3s ease;
  border-radius: 2px;
}
.faq-item.open .faq-toggle {
  background: var(--emerald);
  color: var(--ink);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--bone-dim);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 72ch;
}
.faq-item.open .faq-a { max-height: 500px; padding: 0 0 32px; }

/* ========== FOOTER ========== */
.footer {
  padding: 80px var(--gutter) 32px;
  background: var(--ink-2);
  border-top: 1px solid var(--line);
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.foot-brand-line {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  color: var(--bone-dim);
  font-size: 16px;
  margin-top: 16px;
  max-width: 36ch;
  line-height: 1.5;
}

.foot-col h6 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--emerald-bright);
  margin-bottom: 18px;
}
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 10px; }
.foot-col a {
  font-size: 14px;
  color: var(--bone-dim);
  transition: color 0.2s ease;
}
.foot-col a:hover { color: var(--emerald-bright); }

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--mute);
  font-family: var(--mono);
  letter-spacing: 0.06em;
}

/* ========== REVEAL ON SCROLL ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   HOMEPAGE-SPECIFIC STYLES
   ================================================ */

/* HERO */
.hero {
  min-height: 100vh;
  padding: 140px var(--gutter) 80px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 30%, rgba(0, 165, 90, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(0, 165, 90, 0.10) 0%, transparent 55%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 198, 110, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 198, 110, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.code-rain {
  position: absolute;
  inset: 0;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--emerald);
  opacity: 0.18;
  overflow: hidden;
  pointer-events: none;
}
.code-line { position: absolute; white-space: nowrap; animation: drift 25s linear infinite; }
.code-line:nth-child(1) { top: 12%; left: -10%; animation-duration: 32s; }
.code-line:nth-child(2) { top: 38%; left: -10%; animation-duration: 26s; animation-delay: -8s; }
.code-line:nth-child(3) { top: 67%; left: -10%; animation-duration: 38s; animation-delay: -15s; }
.code-line:nth-child(4) { top: 88%; left: -10%; animation-duration: 30s; animation-delay: -22s; }
@keyframes drift { to { transform: translateX(120vw); } }

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px) { .hero-inner { grid-template-columns: 1fr; gap: 60px; } }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-bright);
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease both;
}
.hero-tag .dot {
  width: 6px; height: 6px;
  background: var(--emerald-bright);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--emerald-bright);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

h1.hero-h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(42px, 6.4vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin-bottom: 30px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-h1 em { font-style: italic; font-weight: 300; color: var(--emerald-bright); }
.hero-h1 .strike {
  position: relative;
  display: inline-block;
  color: var(--mute);
}
.hero-h1 .strike::after {
  content: '';
  position: absolute;
  left: -4%; right: -4%; top: 52%;
  height: 4px;
  background: var(--emerald-bright);
  transform: rotate(-2deg);
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--bone-dim);
  max-width: 580px;
  line-height: 1.55;
  margin-bottom: 40px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}

/* Terminal */
.terminal {
  position: relative;
  background: var(--ink-2);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  overflow: hidden;
  font-family: var(--mono);
  font-size: 13px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(0, 165, 90, 0.08);
  animation: fadeUp 1s 0.4s ease both;
}
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--ink-3);
  border-bottom: 1px solid var(--line);
}
.terminal-bar .dot-r { width: 11px; height: 11px; border-radius: 50%; }
.terminal-bar .dot-r:nth-child(1) { background: #FF5F56; }
.terminal-bar .dot-r:nth-child(2) { background: #FFBD2E; }
.terminal-bar .dot-r:nth-child(3) { background: #27C93F; }
.terminal-bar span {
  margin-left: 12px;
  font-size: 12px;
  color: var(--mute);
  letter-spacing: 0.05em;
}
.terminal-body {
  padding: 22px;
  min-height: 380px;
  color: var(--bone-dim);
  line-height: 1.7;
}
.t-line { display: block; }
.t-prompt { color: var(--emerald-bright); }
.t-cmd { color: var(--bone); }
.t-out { color: var(--mute); }
.t-ok { color: var(--emerald-bright); }
.t-warn { color: #FFBD2E; }
.t-crit { color: #FF5F56; }
.cursor {
  display: inline-block;
  width: 8px;
  height: 15px;
  background: var(--emerald-bright);
  vertical-align: middle;
  animation: blink 1s infinite;
}
@keyframes blink { 50% { opacity: 0; } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* PILLARS */
.pillars-bg { background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%); }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  border: 1px solid var(--line);
}
@media (max-width: 880px) { .pillars-grid { grid-template-columns: 1fr; } }

.pillar {
  padding: 48px 36px 44px;
  position: relative;
  background: rgba(255, 255, 255, 0.005);
  border-right: 1px solid var(--line);
  transition: all 0.4s ease;
  overflow: hidden;
  display: block;
  color: inherit;
}
.pillar:last-child { border-right: none; }
@media (max-width: 880px) {
  .pillar { border-right: none; border-bottom: 1px solid var(--line); }
  .pillar:last-child { border-bottom: none; }
}
.pillar::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  height: 2px;
  width: 0;
  background: var(--emerald-bright);
  transition: width 0.5s ease;
}
.pillar:hover::before { width: 100%; }
.pillar:hover { background: rgba(0, 165, 90, 0.04); }

.pillar-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--emerald-bright);
  letter-spacing: 0.18em;
  margin-bottom: 28px;
}
.pillar-icon { width: 56px; height: 56px; margin-bottom: 28px; color: var(--emerald-bright); }
.pillar h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 18px;
  color: var(--bone);
}
.pillar p {
  color: var(--bone-dim);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 28px;
}
.pillar-list {
  list-style: none;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-bottom: 28px;
}
.pillar-list li {
  font-size: 13.5px;
  color: var(--bone-dim);
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.pillar-list li::before {
  content: '→';
  color: var(--emerald-bright);
  font-family: var(--mono);
  flex-shrink: 0;
  margin-top: 1px;
}
.pillar-cta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald-bright);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.25s ease;
}
.pillar:hover .pillar-cta { gap: 14px; }

/* DIFFERENTIATORS */
.diff-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
@media (max-width: 880px) { .diff-head { grid-template-columns: 1fr; gap: 32px; } }

.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 1080px) { .diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .diff-grid { grid-template-columns: 1fr; } }

.diff-cell {
  background: var(--ink);
  padding: 40px 32px;
  transition: background 0.3s ease;
}
.diff-cell:hover { background: var(--ink-2); }
.diff-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--emerald-bright);
  margin-bottom: 24px;
  letter-spacing: 0.1em;
}
.diff-cell h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.diff-cell p {
  font-size: 14px;
  color: var(--bone-dim);
  line-height: 1.55;
}

/* COMPARISON */
.compare-bg { background: var(--ink-2); }
.compare-table {
  margin-top: 60px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  overflow: hidden;
  background: var(--ink);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.compare-row:last-child { border-bottom: none; }
.compare-row.head { background: var(--ink-3); }
.compare-cell {
  padding: 20px 24px;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--line);
}
.compare-cell:last-child { border-right: none; }
.compare-row.head .compare-cell {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  padding: 16px 24px;
}
.compare-row.head .col-us { color: var(--emerald-bright); }
.col-attr { font-weight: 600; color: var(--bone); }
.col-us {
  color: var(--emerald-bright);
  font-weight: 500;
  background: rgba(0, 198, 110, 0.04);
}
.col-big, .col-platform { color: var(--mute); }

@media (max-width: 760px) {
  .compare-row { grid-template-columns: 1fr; }
  .compare-cell { border-right: none; border-bottom: 1px solid var(--line); padding: 12px 20px; }
  .compare-cell::before {
    content: attr(data-label);
    display: block;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mute);
    margin-bottom: 6px;
  }
  .compare-row.head { display: none; }
  .col-us { background: rgba(0, 198, 110, 0.06); }
}

/* INDUSTRIES */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
@media (max-width: 980px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .industries-grid { grid-template-columns: 1fr; } }

.industry {
  position: relative;
  padding: 36px 30px;
  border: 1px solid var(--line);
  background: var(--ink-2);
  transition: all 0.35s ease;
  overflow: hidden;
}
.industry::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(0, 165, 90, 0.06));
  opacity: 0;
  transition: opacity 0.35s ease;
}
.industry:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.industry:hover::after { opacity: 1; }

.industry-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--emerald-bright);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.industry h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
  position: relative;
  z-index: 2;
}
.industry p {
  font-size: 14px;
  color: var(--bone-dim);
  line-height: 1.55;
  position: relative;
  z-index: 2;
}
.industry-flags {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  position: relative;
  z-index: 2;
}
.flag {
  font-family: var(--mono);
  font-size: 10px;
  padding: 3px 8px;
  border: 1px solid var(--line-strong);
  color: var(--emerald-bright);
  letter-spacing: 0.06em;
  border-radius: 2px;
}

/* PHILOSOPHY */
.philosophy-bg {
  background: linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 100%);
  position: relative;
}
.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 880px) {
  .philosophy-inner { grid-template-columns: 1fr; gap: 48px; }
}

.principles {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line-strong);
}
.principle {
  background: var(--ink);
  padding: 28px 30px;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  transition: background 0.3s ease;
}
.principle:hover { background: var(--ink-2); }
.principle-num {
  font-family: var(--display);
  font-weight: 400;
  font-size: 40px;
  line-height: 1;
  color: var(--emerald-bright);
  letter-spacing: -0.02em;
}
.principle h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  line-height: 1.2;
}
.principle p {
  font-size: 14.5px;
  color: var(--bone-dim);
  line-height: 1.55;
}

/* PROCESS */
.process-bg { background: var(--ink); border-top: 1px solid var(--line); }
.process-track { margin-top: 60px; position: relative; }
.process-line {
  position: absolute;
  top: 28px;
  left: 28px; right: 28px;
  height: 1px;
  background: var(--line);
}
@media (max-width: 880px) { .process-line { display: none; } }
.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .process-steps { grid-template-columns: 1fr; gap: 16px; } }
.step { position: relative; }
.step-num {
  width: 56px; height: 56px;
  border: 1px solid var(--line-strong);
  background: var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--emerald-bright);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.step:hover .step-num {
  border-color: var(--emerald-bright);
  box-shadow: 0 0 24px rgba(0, 198, 110, 0.25);
  transform: translateY(-2px);
}
.step h5 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
  color: var(--bone);
}
.step-meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--mute);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.step p { font-size: 13px; color: var(--bone-dim); line-height: 1.5; }

/* CONTACT */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
@media (max-width: 880px) { .contact-inner { grid-template-columns: 1fr; gap: 48px; } }

.contact-info h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin-bottom: 24px;
}
.contact-info h3 em { font-style: italic; color: var(--emerald-bright); }
.contact-info p {
  color: var(--bone-dim);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 46ch;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.contact-detail:last-child { border-bottom: 1px solid var(--line); }
.detail-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  flex: 0 0 90px;
  padding-top: 3px;
}
.detail-value {
  font-size: 15px;
  color: var(--bone);
  flex: 1;
}
.detail-value a:hover { color: var(--emerald-bright); }

.form-shell {
  padding: 44px 36px;
  border: 1px solid var(--line-strong);
  background: var(--ink-2);
  position: relative;
}
.form-shell::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 60px; height: 60px;
  border-top: 2px solid var(--emerald-bright);
  border-left: 2px solid var(--emerald-bright);
}
.form-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--emerald-bright);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.form-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.015em;
  margin-bottom: 32px;
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--ink);
  border: 1px solid var(--line);
  color: var(--bone);
  font-family: var(--sans);
  font-size: 14.5px;
  border-radius: 2px;
  transition: all 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--emerald-bright);
  background: var(--ink-3);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--emerald);
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.2s ease;
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--emerald-bright);
  box-shadow: 0 8px 24px var(--emerald-glow);
}

/* ================================================
   SERVICE PAGE — Specific elements
   ================================================ */

/* Pillar overview hero stats */
.pillar-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 760px) { .pillar-stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .pillar-stats { grid-template-columns: 1fr; } }

.pillar-stat .ps-num {
  font-family: var(--display);
  font-weight: 400;
  font-size: 44px;
  line-height: 1;
  color: var(--emerald-bright);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.pillar-stat .ps-label {
  font-size: 13px;
  color: var(--bone-dim);
  line-height: 1.4;
}

/* When You Need This */
.when-bg { background: var(--ink-2); }
.when-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 880px) { .when-grid { grid-template-columns: 1fr; } }
.when-card {
  padding: 32px 28px;
  border: 1px solid var(--line);
  background: var(--ink);
  position: relative;
  transition: all 0.3s ease;
}
.when-card:hover {
  border-color: var(--emerald-bright);
  background: var(--ink-3);
}
.when-card .wc-icon {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--emerald-bright);
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}
.when-card h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.012em;
}
.when-card p {
  font-size: 14px;
  color: var(--bone-dim);
  line-height: 1.55;
}

/* Service detail card grid (smaller services) */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 880px) { .detail-grid { grid-template-columns: 1fr; } }
.detail-card {
  padding: 36px 32px;
  border: 1px solid var(--line);
  background: var(--ink-2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.detail-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 4px;
  height: 100%;
  background: var(--emerald-bright);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}
.detail-card:hover {
  background: var(--ink-3);
  border-color: var(--line-strong);
}
.detail-card:hover::before { transform: scaleY(1); }

.detail-card .dc-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--emerald-bright);
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}
.detail-card h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}
.detail-card p {
  font-size: 14.5px;
  color: var(--bone-dim);
  line-height: 1.6;
  margin-bottom: 18px;
}
.detail-card .dc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}

/* Cross-sell other pillars */
.cross-sell {
  background: var(--ink);
}
.cross-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 760px) { .cross-grid { grid-template-columns: 1fr; } }
.cross-card {
  padding: 40px 36px;
  border: 1px solid var(--line);
  background: var(--ink-2);
  transition: all 0.3s ease;
  display: block;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.cross-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0,165,90,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.cross-card:hover {
  border-color: var(--emerald-bright);
  transform: translateY(-4px);
}
.cross-card:hover::after { opacity: 1; }
.cross-card .cc-tag {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--emerald-bright);
  letter-spacing: 0.14em;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.cross-card h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.cross-card p {
  font-size: 14.5px;
  color: var(--bone-dim);
  line-height: 1.55;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.cross-card .cc-link {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--emerald-bright);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.25s ease;
  position: relative;
  z-index: 1;
}
.cross-card:hover .cc-link { gap: 14px; }

/* ================================================
   FEATURED DEEP-DIVE SECTION (AI / Quantum)
   ================================================ */
.feature-section {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(0, 165, 90, 0.10) 0%, transparent 55%),
    var(--ink);
  position: relative;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.feature-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 198, 110, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 198, 110, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 70% 30%, black 0%, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 30%, black 0%, transparent 60%);
  pointer-events: none;
}
.feature-section .container { position: relative; z-index: 1; }

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--emerald-bright);
  margin-bottom: 28px;
  background: rgba(0, 165, 90, 0.04);
}
.feature-tag .dot {
  width: 6px; height: 6px;
  background: var(--emerald-bright);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--emerald-bright);
  animation: pulse 2s ease-in-out infinite;
}

.feature-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}
@media (max-width: 880px) { .feature-head { grid-template-columns: 1fr; gap: 28px; } }

/* AI/Quantum service rows — alternative compact layout */
.feature-services {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.feature-service {
  display: grid;
  grid-template-columns: 80px 1.2fr 1.8fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background 0.3s ease;
}
.feature-service:hover { background: rgba(0, 165, 90, 0.02); }
@media (max-width: 980px) {
  .feature-service { grid-template-columns: 60px 1fr; gap: 24px; }
  .feature-service .fs-meta { grid-column: 2; }
}
@media (max-width: 560px) {
  .feature-service { grid-template-columns: 1fr; gap: 16px; }
  .feature-service .fs-meta { grid-column: 1; }
}

.fs-num {
  font-family: var(--display);
  font-weight: 400;
  font-size: 56px;
  line-height: 1;
  color: var(--emerald-bright);
  letter-spacing: -0.03em;
  font-style: italic;
}
@media (max-width: 560px) { .fs-num { font-size: 40px; } }

.fs-head h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(26px, 2.8vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin-bottom: 16px;
}
.fs-head p {
  font-size: 15px;
  color: var(--bone-dim);
  line-height: 1.6;
  margin-bottom: 22px;
}
.fs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.fs-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 560px) { .fs-meta { grid-template-columns: 1fr; } }

.fs-meta-block {
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: var(--ink-2);
  border-radius: 2px;
}
.fs-meta-block .fsm-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 8px;
}
.fs-meta-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.fs-meta-block li {
  font-size: 13px;
  color: var(--bone-dim);
  line-height: 1.4;
  padding-left: 14px;
  position: relative;
}
.fs-meta-block li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--emerald-bright);
  font-family: var(--mono);
  font-size: 11px;
}
.fs-meta-block strong {
  display: block;
  color: var(--emerald-bright);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.feature-deliverables {
  margin-top: 80px;
  padding: 40px;
  border: 1px solid var(--line-strong);
  background: var(--ink-2);
  position: relative;
}
.feature-deliverables::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 50px; height: 50px;
  border-top: 2px solid var(--emerald-bright);
  border-left: 2px solid var(--emerald-bright);
}
.feature-deliverables h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.feature-deliverables .fd-sub {
  color: var(--bone-dim);
  font-size: 14px;
  margin-bottom: 28px;
}
.fd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 32px;
}
@media (max-width: 760px) { .fd-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .fd-grid { grid-template-columns: 1fr; } }
.fd-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}
.fd-item .fd-check {
  width: 22px; height: 22px;
  border: 1px solid var(--emerald-bright);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  color: var(--emerald-bright);
  margin-top: 2px;
}
.fd-item h5 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 4px;
  color: var(--bone);
  letter-spacing: 0.01em;
}
.fd-item p {
  font-size: 12.5px;
  color: var(--bone-dim);
  line-height: 1.45;
}
