/* ============================================================
   2 Tin Cans — site.css
   Monochrome slate. Signal-line motif. Engineered, not decorated.
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  font-family: var(--font-sans);
  color: var(--fg);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
em { font-style: normal; color: var(--steel); font-weight: 600; }
strong { font-weight: 600; color: var(--fg); }

.wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}
@media (min-width: 900px) {
  .wrap { padding: 0 var(--space-8); }
}

/* ============================================================
   SIGNAL LINE — the two-cans-on-a-string motif, reusable
   ============================================================ */
.sl-can, .sl-string { display: inline-block; }


/* Default sizing — small inline mark */
.brand-mark .can, .eye-mark .can {
  width: 10px; height: 14px;
  border: 1.5px solid var(--steel);
  border-radius: 2px;
  background: transparent;
}
.brand-mark .string, .eye-mark .string {
  width: 10px; height: 1.5px;
  background: var(--steel);
  opacity: 0.7;
}

/* Full signal-line variants (hero/divider) use sl- classes */

/* Section dividers */
.divider {
  display: flex;
  align-items: center;
  width: 100%;
  margin: var(--space-6) 0 var(--space-12) 0;
  height: 16px;
}
.divider .sl-can {
  width: 12px; height: 16px;
  border: 1.5px solid var(--steel);
  border-radius: 2px;
  background: var(--paper);
  flex: 0 0 auto;
}
.divider .sl-string {
  flex: 1;
  height: 1.5px;
  background: linear-gradient(90deg, var(--steel) 0%, var(--ink-300) 100%);
}
.divider--dark .sl-can { background: var(--midnight-ink); border-color: var(--steel); }
.divider--dark .sl-string {
  background: linear-gradient(90deg, var(--steel) 0%, rgba(148,163,184,0.2) 100%);
}

/* ============================================================
   HEADER
   ============================================================ */
/* Floating capsule header — centered like before; sticky + no transform (transform breaks sticky) */
.site-header {
  position: sticky;
  top: 0;
  width: fit-content;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  z-index: 200;
  background: var(--paper);
  border-radius: 0 0 24px 24px;
  box-shadow: none;
  transition: box-shadow var(--dur-base) var(--ease-out);
}
.site-header.scrolled { box-shadow: none; }

/* Concave "ears" — curves that blend the white rect back into the dark hero.
   Each ear is a transparent box whose colored radial mask paints only an
   inverse-corner curve in white. */
.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  top: 0;
  width: 24px;
  height: 24px;
  pointer-events: none;
}
.site-header::before {
  left: -24px;
  background: radial-gradient(circle at 0% 100%, transparent 0, transparent 24px, var(--paper) 24.5px);
}
.site-header::after {
  right: -24px;
  background: radial-gradient(circle at 100% 100%, transparent 0, transparent 24px, var(--paper) 24.5px);
}
.header-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  height: 72px;
  padding: 0 16px !important;
  max-width: none !important;
}

/* Left — brand (minimal lockup logo) */
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  z-index: 2;
  padding: 4px 16px 4px 16px;
  line-height: 0;
}
.brand-logo {
  display: block;
  height: 44px;
  width: 220px;
  max-width: 220px;
  -webkit-mask-image: url('assets/logo-minimal.png');
  mask-image: url('assets/logo-minimal.png');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: left center;
  mask-position: left center;
  background-color: var(--steel);
}
.brand-logo[src] {
  /* keep alt text out of paint */
  color: transparent;
  font-size: 0;
}

/* Center — flat nav (no pill bg, just text links) */
.nav-pill {
  display: none;
  align-items: center;
  gap: 4px;
  position: static;
  transform: none;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0px 10px 0px 0px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.nav-pill-item {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-1);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out);
  line-height: 1;
}
.nav-pill-item:hover {
  color: var(--midnight-ink);
  background: var(--ink-100);
}
.nav-pill-item.active {
  color: var(--midnight-ink);
  background: var(--ink-100);
}

/* Right — CTA pill */
.header-cta {
  display: none;
  flex: 0 0 auto;
  z-index: 2;
  border-radius: 999px !important;
  padding: 10px 18px !important;
  font-size: 13px !important;
}

/* Remove the corner brackets — capsule design doesn't need them */
.header-corner { display: none !important; }

/* Mobile toggle */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  padding: 10px;
  background: transparent;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  z-index: 2;
  margin-right: 4px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--charcoal);
  transition: transform var(--dur-base) var(--ease-out),
              opacity var(--dur-base) var(--ease-out);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* Mobile dropdown — appears beneath the floating header */
.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  padding: var(--space-4);
  background: var(--paper);
  border-radius: 16px;
  box-shadow: 0 10px 30px -12px rgba(15,23,41,0.25);
}
.nav-mobile[hidden] { display: none; }
.nav-mobile a {
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  padding: 10px 12px;
  border-radius: 6px;
}
.nav-mobile a:hover { background: var(--ink-50); }
.nav-mobile a.btn {
  margin-top: var(--space-2);
  border-radius: 999px !important;
}

@media (min-width: 820px) {
  .nav-pill { display: inline-flex; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
}

/* Pull main up so the hero sits under the sticky header (same overlap as absolute layout) */
main#top {
  margin-top: -72px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 12px 18px;
  border-radius: 6px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              transform var(--dur-instant) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.btn-sm { font-size: 13px; padding: 8px 12px; }
.btn-lg { font-size: 15px; padding: 14px 22px; }
.btn-xl { font-size: 16px; padding: 18px 28px; letter-spacing: 0.01em; }

/* Circular arrow chip (pill CTAs — label + icon like reference) */
.btn-arrow-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  line-height: 0;
}
.btn-arrow-chip__glyph {
  display: inline-block;
  font-size: 1.05em;
  line-height: 1;
}
.btn-arrow-chip__glyph--ne {
  transform: rotate(-45deg);
  transform-origin: center;
}

.btn-primary {
  background: var(--midnight-ink);
  color: var(--paper);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--ink-950);
  box-shadow: var(--shadow-md);
}
.btn-primary:active { transform: translateY(1px); box-shadow: none; }
.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--slate); color: var(--midnight-ink); }

.btn-link {
  font-size: 14px;
  color: var(--fg-2);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.btn-link:hover { color: var(--midnight-ink); border-color: var(--charcoal); }

/* ============================================================
   HERO — dark rounded container floating on white page
   ============================================================ */
.hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: calc(62px + var(--space-10)) var(--space-6) var(--space-12);
  overflow: hidden;
  isolation: isolate;
  background: var(--midnight-ink);
  color: var(--ink-100);
  text-align: center;
  margin: 16px 16px 0;
  border-radius: 32px;
}
@media (max-width: 767px) {
  .hero { margin: 12px 12px 0; border-radius: 20px; }
}
.hero .hero-wrap { display: flex; flex-direction: column; align-items: center; }
.hero-sub, .hero-proof { margin-left: auto; margin-right: auto; }
.hero-ctarow { margin-bottom: 0; }
.hero-field {
  position: absolute;
  inset: 0;
  z-index: -1;
  mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 78%);
  opacity: 0.5;
}
.hero-field svg circle { fill: #334155 !important; }
.hero-wrap { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--steel);
  padding: 8px 14px;
  border: 1px solid rgba(148,163,184,0.25);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
}
.eye-mark { gap: 0; height: 10px; }
.eye-mark .can {
  width: 7px; height: 10px;
  border: 1.2px solid var(--steel);
  border-radius: 2px;
  background: transparent;
}
.eye-mark .string { width: 7px; height: 1.2px; background: var(--steel); opacity: 0.8; }
.eye-text { white-space: nowrap; }

.hero-title {
  margin: var(--space-8) 0 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
  font-size: clamp(36px, 6vw, 76px);
  color: var(--paper);
}
.hero-title .line { display: block; white-space: nowrap; }
.hero-title .line:last-child {
  color: var(--ink-300);
  font-weight: 600;
}
.hero-title em {
  color: var(--steel);
  font-weight: 700;
  font-style: normal;
}
@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(26px, 5.5vw + 0.75rem, 48px);
    line-height: 1.08;
  }
  .hero-title .line {
    white-space: normal;
    overflow-wrap: break-word;
  }
}

.hero-sub {
  margin: var(--space-8) 0 0 0;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: var(--ink-200);
  max-width: 62ch;
}


.hero-proof {
  margin: var(--space-8) 0 0 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-300);
  max-width: 62ch;
}

.hero-ctarow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  margin-top: var(--space-10);
  flex-wrap: wrap;
}

/* Hero CTA is inverted against the dark bg: paper button */
.hero-ctarow .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--paper);
  color: var(--midnight-ink);
  border-radius: 999px;
  transform: scale(1);
  transform-origin: center;
  transition: background var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}
.hero-ctarow .btn-primary .btn-arrow-chip {
  background: var(--midnight-ink);
  color: var(--paper);
}
.hero-ctarow .btn-primary .btn-arrow-chip__glyph {
  position: relative;
  top: 1px;
}
.hero-ctarow .btn-primary:hover {
  background: var(--ink-100);
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.4);
  transform: scale(1.1);
}
.hero-ctarow .btn-primary:active {
  transform: scale(1.1) translateY(1px);
  box-shadow: none;
}
.hero-ctarow .btn-link {
  color: var(--ink-300);
  border-bottom-color: rgba(148,163,184,0.3);
}
.hero-ctarow .btn-link:hover {
  color: var(--paper);
  border-bottom-color: var(--steel);
}

.hero-coords {
  position: absolute;
  top: calc(56px + 48px);
  right: var(--space-8);
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--steel);
  letter-spacing: 0.04em;
  opacity: 0.7;
}
@media (min-width: 900px) { .hero-coords { display: flex; } }

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section {
  padding: var(--space-20) 0;
  position: relative;
}
.sec-head {
  display: flex;
  align-items: baseline;
  gap: var(--space-5);
}
.sec-head--center { justify-content: center; }
.sec-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: 0.08em;
}
.sec-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--charcoal);
}
.sec-head--dark .sec-num { color: var(--steel); }
.sec-head--dark .sec-label { color: var(--ink-100); }

/* ============================================================
   SECTION 2 — WHO
   ============================================================ */
.section-who { background: var(--paper); }
.who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}
@media (min-width: 960px) {
  .who-grid { grid-template-columns: 1.35fr 1fr; gap: var(--space-16); }
}
.who-lead .h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--midnight-ink);
  margin: 0 0 var(--space-6);
}
.who-lead .lead { color: var(--fg-1); margin: 0 0 var(--space-4); }
.who-lead p { color: var(--fg-2); max-width: 58ch; }

.who-panel {
  background: var(--ink-50);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
}
.who-panel::before {
  content: '';
  position: absolute;
  left: var(--space-8);
  top: 0;
  width: 32px;
  height: 2px;
  background: var(--steel);
  transition: width var(--dur-slow) var(--ease-out);
}
.who-panel:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}
.who-panel:hover::before {
  width: 80px;
}
.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-6);
}
.panel-head .eyebrow { color: var(--charcoal); }
.panel-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-3);
}
.checklist {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  font-size: 15px;
  line-height: 1.55;
  color: var(--charcoal);
}
.tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 4px;
  background: var(--midnight-ink);
  color: var(--steel);
  flex: 0 0 auto;
  margin-top: 1px;
}
.panel-divider {
  height: 1px;
  background: var(--line);
  margin: var(--space-6) 0;
}
.panel-small {
  font-size: 13px;
  color: var(--fg-2);
  line-height: 1.55;
  margin: 0;
}

.who-close {
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid var(--line);
}
.who-close .close-row {
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.close-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-5) 0;
}
.close-x {
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--fg-3);
  flex: 0 0 auto;
  line-height: 1;
  margin-top: 2px;
}
.close-row--pos .close-x { color: var(--steel); font-size: 18px; }
.close-row p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--fg-1);
}
.close-row--pos p { color: var(--midnight-ink); }

/* ============================================================
   SECTION 3 — WHAT I DO (dark)
   ============================================================ */
.section-what {
  background: var(--midnight-ink);
  color: var(--ink-100);
  position: relative;
  margin: 16px 16px 0;
  border-radius: 32px;
  overflow: hidden;
  isolation: isolate;
}
@media (max-width: 767px) {
  .section-what { margin: 12px 12px 0; border-radius: 20px; }
}
.section-what::before,
.section-what::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 40px;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(148,163,184,0.12), transparent 70%);
  pointer-events: none;
}
.section-what::before { top: 0; transform: rotate(180deg); }
.section-what::after { bottom: 0; }

.section-what .sec-num,
.section-what .sec-label { }
.section-what .h2, .section-what .h3 { color: var(--paper); }
.section-what p { color: var(--ink-300); }

.what-title {
  margin: var(--space-4) 0 var(--space-16);
  max-width: 28ch;
  font-size: clamp(28px, 3.6vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.what-title-sub {
  display: block;
  margin-top: var(--space-5);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 400;
  color: var(--steel);
  letter-spacing: 0;
  line-height: 1.5;
}

.what-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
}
.what-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  padding: var(--space-10) 0;
  border-top: 1px solid #1E293B;
  position: relative;
}
.what-item:last-child { border-bottom: 1px solid #1E293B; }
@media (min-width: 820px) {
  .what-item { grid-template-columns: 220px 1fr; gap: var(--space-10); }
}
.what-num {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.what-num .num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--steel);
  letter-spacing: 0.04em;
}
.what-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-100);
  padding: 5px 10px;
  border: 1px solid #334155;
  border-radius: 999px;
}
.what-body .h3 {
  margin: 0 0 var(--space-3);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  line-height: 1.3;
}
.what-body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  max-width: 60ch;
}

/* ============================================================
   SECTION 4 — WHY (cards)
   ============================================================ */
.section-why { background: var(--paper); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 760px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
}
.why-card {
  background: var(--ink-50);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: var(--space-8);
  transition: border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  left: var(--space-8); top: 0;
  width: 32px; height: 2px;
  background: var(--steel);
  transition: width var(--dur-slow) var(--ease-out);
}
.why-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}
.why-card:hover::before { width: 80px; }

.why-card-head {
  display: flex;
  align-items: baseline;
  gap: var(--space-4);
  justify-content: flex-start;
  margin-bottom: var(--space-5);
}
.why-idx {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: 0.08em;
}
.why-kicker {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--steel);
}
.why-card-head .h3 {
  margin: 0;
  flex: 1;
}
.why-card .h3 {
  margin: 0 0 var(--space-4);
  font-size: 22px;
  line-height: 1.3;
  color: var(--midnight-ink);
}
.why-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-1);
}
.why-card em { color: var(--slate); }

/* ============================================================
   SECTION 5 — ENGAGEMENT
   ============================================================ */
.section-engagement {
  background: var(--midnight-ink);
  color: var(--ink-100);
  margin: 16px 16px 0;
  border-radius: 32px;
  overflow: hidden;
  isolation: isolate;
  position: relative;
}
@media (max-width: 767px) {
  .section-engagement { margin: 12px 12px 0; border-radius: 20px; }
}
.section-engagement .sec-label { color: var(--ink-100); }
.section-engagement .h2,
.section-engagement .h3,
.section-engagement .h1 { color: var(--paper); }
.section-engagement .divider .sl-can {
  border-color: var(--steel);
  background: var(--midnight-ink);
}
.section-engagement .divider .sl-string {
  background: linear-gradient(to right, var(--steel), rgba(148,163,184,0.15));
}

.section-engagement .eng-row {
  border-top: 1px solid rgba(226, 232, 240, 0.12);
}
.section-engagement .eng-row:first-child { border-top: none; }
.section-engagement .eng-row:last-child { border-bottom: none; }
.section-engagement .eng-idx { color: var(--paper); }
.section-engagement .eng-sig .sl-can {
  border-color: var(--steel);
  background: var(--midnight-ink);
}
.section-engagement .eng-sig .sl-string { background: var(--steel); }
.section-engagement .eng-body .lead { color: var(--ink-100); }
.section-engagement .eng-body p { color: var(--ink-200); }
.section-engagement .inline-meta {
  background: rgba(255,255,255,0.06);
  color: var(--steel);
}

/* Timeline on dark */
.section-engagement .timeline {
  border-color: rgba(226, 232, 240, 0.14);
}
.section-engagement .timeline li { border-bottom-color: rgba(226, 232, 240, 0.12); }
.section-engagement .t-week { color: var(--steel); }
.section-engagement .t-desc { color: var(--ink-100); }

/* Price cards on dark */
.section-engagement .price-card {
  background: rgba(255,255,255,0.03);
  border-color: var(--steel);
}
.section-engagement .price-card:hover {
  border-color: var(--ink-200);
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.4);
}
.section-engagement .price-tag { color: var(--paper); }
.section-engagement .price-unit { color: var(--ink-200); }
.section-engagement .price-label { color: var(--steel); }
.section-engagement .price-desc { color: var(--ink-200); }
.section-engagement .price-fine { color: var(--ink-300); }
.section-engagement .price-sig .sl-can {
  border-color: var(--steel);
  background: var(--midnight-ink);
}
.section-engagement .price-sig .sl-string { background: var(--steel); }
.eng-grid {
  display: flex;
  flex-direction: column;
}
.eng-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  padding: var(--space-10) 0;
  border-top: 1px solid var(--line);
}
.eng-row:last-child { border-bottom: 1px solid var(--line); }
@media (min-width: 860px) {
  .eng-row { grid-template-columns: 260px 1fr; gap: var(--space-12); }
}
.eng-key {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.eng-idx {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--midnight-ink);
}
.eng-sig {
  height: 14px;
  width: 80px;
  gap: 0;
}
.eng-sig .sl-can {
  width: 10px; height: 14px;
  border: 1.5px solid var(--steel);
  border-radius: 2px;
  background: var(--paper);
  flex: 0 0 auto;
}
.eng-sig .sl-string {
  flex: 1; height: 1.5px; background: var(--steel);
}

.eng-body .lead {
  margin: 0 0 var(--space-5);
  color: var(--fg);
  font-size: 18px;
  line-height: 1.55;
  max-width: 62ch;
}
.eng-body p { color: var(--fg-1); max-width: 62ch; }
.inline-meta {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--slate);
  background: var(--ink-50);
  padding: 2px 8px;
  border-radius: 3px;
  white-space: nowrap;
}
.meta-dot { opacity: 0.4; margin: 0 4px; }

.timeline {
  list-style: none;
  margin: var(--space-6) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.timeline li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: var(--ink-50);
  border-bottom: 1px solid var(--line);
}
.timeline li:last-child { border-bottom: none; }
.t-week {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--slate);
  letter-spacing: 0.04em;
}
.t-desc {
  font-size: 14px;
  color: var(--charcoal);
}

.price-row {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}
@media (min-width: 640px) {
  .price-row { grid-template-columns: 1fr 80px 1fr; gap: 0; }
}
.price-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: var(--space-6);
  background: var(--paper);
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.price-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.price-tag {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--midnight-ink);
  line-height: 1;
}
.price-unit {
  font-size: 16px;
  font-weight: 400;
  color: var(--fg-3);
  margin-left: 4px;
  letter-spacing: 0;
}
.price-label {
  margin-top: var(--space-2);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate);
}
.price-desc {
  margin: var(--space-4) 0 0;
  font-size: 14px;
  color: var(--fg-1);
  line-height: 1.5;
}
.price-sig {
  display: none;
  width: 100%;
  height: 14px;
  align-self: center;
  gap: 0;
}
@media (min-width: 640px) { .price-sig { display: inline-flex; } }
.price-sig .sl-can {
  width: 10px; height: 14px;
  border: 1.5px solid var(--steel);
  border-radius: 2px;
  background: var(--paper);
  flex: 0 0 auto;
}
.price-sig .sl-string { flex: 1; height: 1.5px; background: var(--steel); }
.price-fine {
  margin: 0;
  font-size: 13px;
  color: var(--fg-3);
}

/* ============================================================
   SECTION 6 — FINAL CTA
   ============================================================ */
.section-cta {
  background: var(--ink-50);
  padding: var(--space-24) 0;
  margin: 32px 16px 16px;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
@media (max-width: 767px) {
  .section-cta { margin: 24px 12px 12px; border-radius: 20px; padding: var(--space-16) 0; }
}
.cta-logo {
  display: block;
  height: 84px;
  width: 360px;
  max-width: 100%;
  margin: 0 auto;
  -webkit-mask-image: url('assets/logo-wordmark.png');
  mask-image: url('assets/logo-wordmark.png');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: var(--steel);
  color: transparent;
  font-size: 0;
}
.section-cta {
  text-align: center;
}
.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(148,163,184,0.18), transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(148,163,184,0.12), transparent 55%);
  pointer-events: none;
}
.cta-wrap { position: relative; z-index: 1; max-width: 800px; }
.cta-title {
  margin: var(--space-6) 0 var(--space-6);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--midnight-ink);
}
.cta-lead {
  margin: 0 auto;
  max-width: 55ch;
  color: var(--fg-1);
}
.cta-signal {
  margin: var(--space-10) auto var(--space-6);
  display: flex;
  justify-content: center;
}
.cta-signal .sl-can,
.cta-signal .sl-string { display: none; }

.cta-tag {
  margin: 0 0 var(--space-10);
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
.tag-primary {
  font-size: 18px;
  font-weight: 600;
  color: var(--midnight-ink);
  letter-spacing: -0.01em;
}
.tag-secondary {
  font-size: 15px;
  color: var(--slate);
  font-style: italic;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: var(--space-4);
  border-radius: 999px;
  background: var(--midnight-ink);
  color: var(--paper);
  border-color: transparent;
  transform: scale(1);
  transform-origin: center;
  transition: background var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}
.cta-button .btn-arrow-chip {
  background: var(--paper);
  color: var(--midnight-ink);
}
.cta-button:hover {
  background: var(--muted);
  color: var(--paper);
  border-color: var(--muted);
  box-shadow: var(--shadow-md);
  transform: scale(1.1);
}
.cta-button:active {
  background: var(--muted);
  color: var(--paper);
  border-color: var(--muted);
  transform: scale(1.1) translateY(1px);
  box-shadow: none;
}
/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--midnight-ink);
  color: var(--ink-300);
  padding: var(--space-10) 0;
}
.footer-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  align-items: center;
  text-align: center;
}
@media (min-width: 780px) {
  .footer-wrap {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.foot-brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--paper);
}
.foot-brand .brand-word { color: var(--paper); }
.foot-brand .brand-mark .can { border-color: var(--steel); }
.foot-brand .brand-mark .string { background: var(--steel); }
.foot-meta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 12px;
  color: var(--fg-3);
  flex-wrap: wrap;
  justify-content: center;
}
.foot-meta .dot { opacity: 0.4; }
.foot-links a {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--steel);
  border-bottom: 1px solid rgba(148,163,184,0.3);
  padding-bottom: 1px;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.foot-links a:hover { color: var(--paper); border-color: var(--paper); }

/* ============================================================
   REVEAL ANIMATIONS — staggered page-load
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1100ms var(--ease-out),
              transform 1100ms var(--ease-out);
  transition-delay: calc(var(--d, 0) * 120ms + 180ms);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Hero signal line draws in */

/* ============================================================
   FOCUS
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--steel);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ============================================================
   RESPONSIVE — small tweaks
   ============================================================ */
@media (max-width: 600px) {
  .section { padding: var(--space-16) 0; }
  .hero { padding-top: var(--space-10); }
  .hero-ctarow { gap: var(--space-4); }
  .who-panel { padding: var(--space-6); }
  .hero-eyebrow { font-size: 11px; padding: 6px 12px; }
}

@media (prefers-reduced-motion: reduce) {
}
