/* ============================================================
   MCP HUB / INDUSTRIAL / OFF-WHITE INSPIRED
   "INFRASTRUCTURE" "FOR AI BUILDERS" / Elisabeth Hitz
   ============================================================ */

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

:root {
  --black: #000;
  --white: #fff;
  --off-white: #f5f3ef;
  --line: #e2e0db;
  --ink: #0a0a0a;
  --ink-soft: #2a2a2a;
  --ink-muted: #595959;
  --safety: #ff5a00;
  --highlight: #fff200;
  --grid-line: rgba(0,0,0,0.08);
  --shadow-flat: 4px 4px 0 var(--black);
}

html { scroll-behavior: smooth; }

body {
  font-family: "Helvetica Neue", "Helvetica", "Inter Tight", -apple-system, system-ui, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img, svg, video { max-width: 100%; display: block; }

::selection { background: var(--black); color: var(--highlight); }

.status-strip {
  background: var(--black);
  color: var(--off-white);
  font-family: "JetBrains Mono", "SF Mono", monospace;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  overflow-x: auto;
}
.status-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--highlight);
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.site-nav {
  background: var(--off-white);
  border-bottom: 1.5px solid var(--black);
  padding: 16px 24px;
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}
.nav-logo::before {
  content: '"';
  margin-right: 4px;
  color: var(--ink-muted);
}
.nav-logo::after {
  content: '"';
  margin-left: 4px;
  color: var(--ink-muted);
}
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  align-items: center;
}
.site-nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--safety); }
.site-nav a.cta {
  background: var(--black);
  color: var(--off-white);
  padding: 8px 14px;
  border: 1.5px solid var(--black);
}
.site-nav a.cta:hover { background: var(--safety); border-color: var(--safety); color: var(--white); }

@media (max-width: 768px) {
  .site-nav ul li:nth-child(n+3) { display: none; }
  .site-nav ul li:last-child { display: list-item; }
}

.ticker {
  border-top: 1.5px solid var(--black);
  border-bottom: 1.5px solid var(--black);
  background: var(--highlight);
  padding: 6px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: marquee 35s linear infinite;
  padding-left: 100%;
}
.ticker-track span { margin-right: 32px; }
.ticker-track span::before { content: '◆ '; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.hero {
  border-bottom: 1.5px solid var(--black);
  padding: 48px 24px 64px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
  max-width: 1400px;
  margin: 0 auto;
}
.hero-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 24px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-tag-tag {
  background: var(--black);
  color: var(--off-white);
  padding: 4px 8px;
}
.hero h1 {
  font-size: clamp(56px, 9vw, 132px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -3px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero h1 .quote {
  display: inline-block;
  color: var(--ink-muted);
  font-weight: 400;
  vertical-align: super;
  font-size: 0.45em;
}
.hero h1 .yellow {
  background: var(--highlight);
  padding: 0 8px;
  display: inline-block;
}
.hero-sub {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-sub strong {
  background: var(--black);
  color: var(--off-white);
  padding: 1px 6px;
  font-weight: 600;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-muted);
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.hero-meta span + span::before { content: ' / '; color: var(--line); margin: 0 6px; }

.hero-portrait-wrap {
  position: relative;
  border: 1.5px solid var(--black);
  background: var(--white);
}
.hero-portrait-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.05) saturate(0.92);
}
.hero-portrait-tag {
  position: absolute;
  top: -1.5px;
  left: -1.5px;
  background: var(--black);
  color: var(--off-white);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 8px 12px;
  text-transform: uppercase;
}
.hero-portrait-meta {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  display: flex;
  justify-content: space-between;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 24px; padding: 32px 20px; }
  .hero-portrait-wrap img { height: 380px; }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 20px;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1.5px solid var(--black);
  cursor: pointer;
  transition: all 0.18s cubic-bezier(0.16,1,0.3,1);
  background: var(--off-white);
  color: var(--black);
}
.btn::after {
  content: '↗';
  font-size: 16px;
  margin-left: 4px;
  transition: transform 0.2s;
}
.btn:hover::after { transform: translate(2px,-2px); }
.btn-primary { background: var(--black); color: var(--off-white); }
.btn-primary:hover { background: var(--safety); border-color: var(--safety); color: var(--white); }
.btn-yellow {
  background: var(--highlight);
  color: var(--black);
  border-color: var(--black);
  box-shadow: var(--shadow-flat);
}
.btn-yellow:hover {
  transform: translate(-2px,-2px);
  box-shadow: 6px 6px 0 var(--black);
}
.btn-ghost { background: transparent; }
.btn-ghost:hover { background: var(--black); color: var(--off-white); }

.section-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-meta::after {
  content: '';
  flex: 1;
  height: 1.5px;
  background: var(--black);
}
.section-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.section-title .quote { color: var(--ink-muted); font-weight: 400; }
.section-title .yellow { background: var(--highlight); padding: 0 6px; }

.actors {
  border-bottom: 1.5px solid var(--black);
  padding: 64px 24px;
  background: var(--off-white);
}
.actors-inner { max-width: 1400px; margin: 0 auto; }
.actors-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  border-bottom: 1.5px solid var(--black);
  padding-bottom: 24px;
  margin-bottom: 0;
}
.actors-header-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: right;
}
.actor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 0;
}
.actor-card {
  border-right: 1.5px solid var(--black);
  border-bottom: 1.5px solid var(--black);
  padding: 24px;
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 320px;
  transition: background 0.18s;
}
.actor-card:hover { background: var(--white); }
.actor-card:hover .actor-cta-arrow { transform: translate(4px,-4px); color: var(--safety); }
.actor-card::before {
  content: attr(data-num);
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--ink-muted);
}
.actor-icon-wrapper {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  border: 1.5px solid var(--black);
  background: var(--white);
  overflow: hidden;
}
.actor-icon-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.actor-name {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.actor-tagline {
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-soft);
  margin-bottom: 24px;
  flex: 1;
}
.actor-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  border-top: 1px dashed var(--line);
  padding-top: 16px;
}
.badge {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 3px 6px;
  border: 1px solid var(--line);
  background: var(--white);
}
.actor-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1.5px solid var(--black);
}
.actor-cta-arrow {
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  transition: all 0.2s;
}
.actor-card:nth-child(even) { background: #efece6; }

.stats {
  background: var(--black);
  color: var(--off-white);
  border-bottom: 1.5px solid var(--black);
  padding: 48px 24px;
}
.stats-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  text-align: left;
}
.stat-num {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
}
.stat-num .yellow { color: var(--highlight); }
.stat-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245,243,239,0.7);
  margin-top: 12px;
  border-top: 1px solid rgba(245,243,239,0.3);
  padding-top: 8px;
}
@media (max-width: 768px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 44px; }
}

.pricing {
  background: var(--off-white);
  border-bottom: 1.5px solid var(--black);
  padding: 80px 24px;
}
.pricing-inner { max-width: 1400px; margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1.5px solid var(--black);
  margin-top: 32px;
  background: var(--white);
}
.price-card {
  padding: 32px 24px;
  border-right: 1.5px solid var(--black);
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--white);
  transition: background 0.2s;
}
.price-card:last-child { border-right: none; }
.price-card:hover { background: #fafaf6; }
.price-card-featured { background: var(--black); color: var(--off-white); }
.price-card-featured:hover { background: #0a0a0a; }
.price-badge {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--highlight);
  color: var(--black);
  padding: 4px 8px;
  display: inline-block;
  margin-bottom: 16px;
  align-self: flex-start;
}
.price-tier {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--ink-muted);
}
.price-card-featured .price-tier { color: rgba(245,243,239,0.7); }
.price-amount {
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 4px;
}
.price-amount sup { font-size: 32px; font-weight: 600; vertical-align: top; }
.price-unit {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 24px;
}
.price-card-featured .price-unit { color: rgba(245,243,239,0.7); }
.price-features { list-style: none; margin: 24px 0; flex: 1; }
.price-features li {
  font-size: 13px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 8px;
}
.price-card-featured .price-features li { border-top-color: rgba(245,243,239,0.2); }
.price-features li::before {
  content: '+';
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  color: var(--safety);
}
.price-features li:last-child { border-bottom: 1px solid var(--line); }
.price-card-featured .price-features li:last-child { border-bottom-color: rgba(245,243,239,0.2); }
.price-cta { margin-top: 16px; }

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { border-right: none; border-bottom: 1.5px solid var(--black); }
  .price-card:last-child { border-bottom: none; }
}

.about {
  background: var(--white);
  border-bottom: 1.5px solid var(--black);
  padding: 80px 24px;
}
.about-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
}
.about-portrait {
  border: 1.5px solid var(--black);
  position: relative;
  background: var(--off-white);
}
.about-portrait img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.05) grayscale(0.15);
}
.about-portrait-tag {
  position: absolute;
  top: -1.5px;
  left: -1.5px;
  background: var(--black);
  color: var(--off-white);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 8px 12px;
  text-transform: uppercase;
}
.about-content h2 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.about-bio {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.about-bio strong {
  background: var(--highlight);
  padding: 1px 4px;
  font-weight: 600;
}
.about-credentials {
  list-style: none;
  border-top: 1.5px solid var(--black);
  border-bottom: 1.5px solid var(--black);
  margin: 32px 0;
}
.about-credentials li {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 12px 0;
  border-top: 1px dashed var(--line);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
}
.about-credentials li:first-child { border-top: none; }
.about-credentials li::before {
  content: attr(data-meta);
  color: var(--ink-muted);
  font-weight: 700;
}
.about-links { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-portrait img { height: 420px; }
}

.use-cases {
  background: var(--off-white);
  border-bottom: 1.5px solid var(--black);
  padding: 80px 24px;
}
.use-cases-inner { max-width: 1400px; margin: 0 auto; }
.use-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 32px;
  border: 1.5px solid var(--black);
  background: var(--white);
}
.use-card {
  padding: 32px 24px;
  border-right: 1.5px solid var(--black);
  border-bottom: 1.5px solid var(--black);
  position: relative;
  transition: background 0.2s;
}
.use-card:hover { background: #fafaf6; }
.use-card::before {
  content: attr(data-num);
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--ink-muted);
}
.use-card h3 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  margin-top: 16px;
}
.use-card p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.use-icon {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--highlight);
  display: inline-block;
  padding: 4px 8px;
}

.why-different {
  background: var(--black);
  color: var(--off-white);
  padding: 80px 24px;
  border-bottom: 1.5px solid var(--black);
}
.why-different .section-meta { color: rgba(245,243,239,0.7); }
.why-different .section-meta::after { background: var(--off-white); }
.why-different-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.why-quote {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  text-transform: uppercase;
}
.why-quote .yellow { background: var(--highlight); color: var(--black); padding: 0 6px; }
.why-quote::before { content: '"'; color: var(--highlight); margin-right: 6px; }
.why-quote::after { content: '"'; color: var(--highlight); margin-left: 6px; }
.why-body {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(245,243,239,0.85);
  margin-bottom: 16px;
}
.why-body strong {
  background: var(--highlight);
  color: var(--black);
  padding: 1px 4px;
  font-weight: 600;
}
.why-attribution {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245,243,239,0.6);
  margin-top: 24px;
  border-top: 1px solid rgba(245,243,239,0.2);
  padding-top: 16px;
}

@media (max-width: 768px) {
  .why-different-inner { grid-template-columns: 1fr; }
}

.newsletter {
  background: var(--highlight);
  color: var(--black);
  padding: 80px 24px;
  border-bottom: 1.5px solid var(--black);
}
.newsletter-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.newsletter h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.newsletter p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 32px;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 540px;
  margin: 0 auto;
  border: 1.5px solid var(--black);
  background: var(--white);
}
.newsletter-input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  background: transparent;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.newsletter-input:focus { outline: none; }
.newsletter-submit {
  padding: 16px 24px;
  background: var(--black);
  color: var(--off-white);
  border: none;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s;
}
.newsletter-submit:hover { background: var(--safety); }
.newsletter-fineprint {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 16px;
}

.site-footer {
  background: var(--black);
  color: var(--off-white);
  padding: 64px 24px 32px;
}
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-monogram {
  font-size: clamp(80px, 14vw, 240px);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -8px;
  text-transform: uppercase;
  margin-bottom: 48px;
  border-bottom: 1.5px solid rgba(245,243,239,0.2);
  padding-bottom: 24px;
}
.footer-monogram .yellow { color: var(--highlight); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-col h3, .footer-col h4 {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { padding: 6px 0; }
.footer-col a {
  font-size: 13px;
  color: rgba(245,243,239,0.75);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--highlight); }
.footer-bio {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(245,243,239,0.7);
}
.footer-bottom {
  border-top: 1px solid rgba(245,243,239,0.2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245,243,239,0.5);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  body { font-size: 14px; }
  .hero h1 { font-size: 56px; letter-spacing: -1.5px; }
  .actors-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .actor-grid { grid-template-columns: 1fr; }
}

.caution-bar {
  height: 24px;
  background: repeating-linear-gradient(
    -45deg,
    var(--highlight),
    var(--highlight) 16px,
    var(--black) 16px,
    var(--black) 32px
  );
  border-top: 1.5px solid var(--black);
  border-bottom: 1.5px solid var(--black);
}

/* ============================================================
   iPhone SE / extra-narrow viewport (<= 380px)
   ============================================================ */
@media (max-width: 380px) {
  .status-strip { font-size: 9px; padding: 6px 14px; gap: 8px; }
  .hero h1 { font-size: 44px; letter-spacing: -1px; }
  .stats-inner { gap: 14px; padding: 32px 16px; }
  .stat-num { font-size: 36px; }
  .price-amount { font-size: clamp(48px, 14vw, 64px); }
  .price-card { padding: 24px 18px; }
  .pricing-inner, .actors-inner, .why-different-inner, .about-inner, .newsletter-inner, .footer-inner { padding-left: 16px; padding-right: 16px; }
  .section-title { font-size: clamp(28px, 9vw, 40px); letter-spacing: -0.5px; }
}

/* WCAG AA contrast pass for hero informational text (was --ink-muted #757575, ~4:1) */
.hero-tag, .hero-tag span:not(.hero-tag-tag), .hero-meta, .hero-meta span { color: #5a5a5a; }

/* ============================================================
   Touch-device tap target sizing (Apple HIG: 44px min)
   ============================================================ */
@media (hover: none) and (pointer: coarse) {
  .site-nav { padding: 8px 16px; }
  .site-nav ul { gap: 4px; }
  .site-nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 8px 10px;
  }
  .footer-col a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 6px 0;
  }
  .actor-card .actor-cta { min-height: 44px; padding: 12px 0; }
  .price-cta { min-height: 48px; }
  .hero-cta .btn { min-height: 44px; }
  .agenda-row { min-height: 56px; }
}

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

/* ============================================================
   ADDITIONS / Agenda timeline, no-call sticker, closing block
   ============================================================ */

/* --- FOR WHO filter row (above hero) --- */
.for-who {
  background: var(--off-white);
  border-bottom: 1.5px solid var(--black);
  padding: 18px 24px;
}
.for-who-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.for-who-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-muted);
  white-space: nowrap;
}
.for-who-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--black);
  padding: 10px 16px;
  font-family: "Helvetica Neue", "Inter Tight", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: var(--black);
  transition: all 0.15s ease;
  min-height: 40px;
}
.for-who-chip span { color: var(--ink-muted); transition: color 0.15s ease; }
.for-who-chip:hover {
  background: var(--highlight);
  box-shadow: var(--shadow-flat);
  transform: translate(-1px,-1px);
}
.for-who-chip:hover span { color: var(--black); }
@media (max-width: 600px) {
  .for-who { padding: 14px 16px; }
  .for-who-inner { gap: 8px; }
  .for-who-label { font-size: 10px; letter-spacing: 1.5px; width: 100%; margin-bottom: 4px; }
  .for-who-chip { font-size: 12px; padding: 10px 12px; width: 100%; justify-content: space-between; }
}

/* --- HOW IT FEELS IN PRODUCTION (3-up code trio) --- */
.how-it-feels {
  background: var(--off-white);
  border-bottom: 1.5px solid var(--black);
  padding: 80px 24px;
}
.how-it-feels-inner { max-width: 1400px; margin: 0 auto; }
.hif-title {
  font-family: "Helvetica Neue", "Inter Tight", sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -1.5px;
  margin: 14px 0 40px;
}
.hif-title .yellow { background: var(--highlight); padding: 0 8px; display: inline-block; }
.hif-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hif-card {
  background: var(--black);
  color: var(--off-white);
  border: 1.5px solid var(--black);
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.hif-card-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 14px;
}
.hif-code {
  font-family: "JetBrains Mono", "SF Mono", monospace;
  font-size: 12px;
  line-height: 1.55;
  color: var(--off-white);
  white-space: pre;
  overflow-x: auto;
  margin: 0 0 16px;
  flex: 1;
}
.hif-card-caption {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c8c8c8;
  border-top: 1px solid #2a2a2a;
  padding-top: 12px;
}
@media (max-width: 900px) {
  .hif-trio { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .how-it-feels { padding: 56px 16px; }
  .hif-code { font-size: 11px; }
}

/* --- OBJECTION RAIL --- */
.objection-rail {
  background: var(--white);
  border-bottom: 1.5px solid var(--black);
  padding: 64px 24px;
}
.objection-rail-inner { max-width: 1400px; margin: 0 auto; }
.objection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 28px;
}
.objection-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #cc4900;
  margin-bottom: 10px;
}
.objection-q {
  font-family: "Helvetica Neue", "Inter Tight", sans-serif;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.objection-a {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}
@media (max-width: 900px) {
  .objection-grid { grid-template-columns: 1fr; gap: 20px; }
  .objection-item { padding-top: 18px; border-top: 1px solid var(--line); }
  .objection-item:first-child { padding-top: 0; border-top: none; }
}
@media (max-width: 600px) {
  .objection-rail { padding: 48px 16px; }
}

/* --- AGENDA TIMELINE (between about and newsletter) --- */
.agenda {
  background: var(--off-white);
  border-bottom: 1.5px solid var(--black);
  padding: 80px 24px;
}
.agenda-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}
.agenda-head .section-meta { margin-bottom: 14px; }
.agenda-head h2 {
  font-family: "Helvetica Neue", "Inter Tight", sans-serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -1.5px;
  text-transform: none;
}
.agenda-head h2 .yellow { color: var(--highlight); background: var(--black); padding: 0 8px; }
.agenda-head p {
  margin-top: 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-muted);
  line-height: 1.7;
}
.agenda-rows { display: flex; flex-direction: column; }
.agenda-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 20px;
  padding: 22px 0;
  border-top: 1.5px solid var(--black);
  align-items: baseline;
}
.agenda-row:last-child { border-bottom: 1.5px solid var(--black); }
.agenda-when {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.agenda-what {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
}
.agenda-what strong { font-weight: 700; }
.agenda-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 8px;
  background: var(--highlight);
  border: 1.5px solid var(--black);
  color: var(--black);
  white-space: nowrap;
}
@media (max-width: 900px) {
  .agenda-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .agenda { padding: 56px 16px; }
  .agenda-row { grid-template-columns: 1fr; gap: 6px; padding: 16px 0; }
  .agenda-tag { justify-self: start; margin-top: 4px; }
  .agenda-what { font-size: 16px; }
}

/* --- NO-CALL STICKER (rotated callout near pricing) --- */
.no-call-sticker {
  position: absolute;
  top: -22px;
  right: 24px;
  z-index: 5;
  display: inline-block;
  background: var(--highlight);
  color: var(--black);
  border: 1.5px solid var(--black);
  padding: 10px 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transform: rotate(-4deg);
  box-shadow: var(--shadow-flat);
  line-height: 1.3;
  max-width: 220px;
  text-align: center;
}
.no-call-sticker .small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.5px;
  margin-top: 2px;
  color: var(--ink-soft);
}
.pricing { position: relative; }
@media (max-width: 600px) {
  .no-call-sticker { top: -14px; right: 12px; padding: 8px 12px; font-size: 10px; max-width: 180px; }
}

/* --- CLOSING COLOR BLOCK (after newsletter, before footer) --- */
.shipping-closer {
  background: var(--highlight);
  border-top: 1.5px solid var(--black);
  border-bottom: 1.5px solid var(--black);
  padding: 88px 24px 96px;
  text-align: center;
}
.shipping-closer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.shipping-closer-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 18px;
}
.shipping-closer h2 {
  font-family: "Helvetica Neue", "Inter Tight", sans-serif;
  font-size: clamp(56px, 11vw, 168px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -3px;
  color: var(--black);
  text-transform: uppercase;
}
.shipping-closer h2 .italic {
  font-style: italic;
  font-weight: 400;
  letter-spacing: -2px;
}
.shipping-closer .email-line {
  margin-top: 32px;
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(16px, 2.4vw, 22px);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.shipping-closer .email-line a {
  display: inline-block;
  border-bottom: 2px solid var(--black);
  padding: 8px 10px 6px;
  min-height: 44px;
  line-height: 1.2;
}
.shipping-closer .email-line a:hover { background: var(--black); color: var(--highlight); }
.shipping-closer .meta-line {
  margin-top: 18px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
}
@media (max-width: 600px) {
  .shipping-closer { padding: 56px 16px 64px; }
  .shipping-closer h2 { letter-spacing: -1.5px; }
  .shipping-closer .email-line { letter-spacing: 1px; word-break: break-all; }
}
