/* palette: bg=#0D1117 fg=#E6EDF3 accent=#2EE89E */
/* fonts: display="JetBrains Mono" body="IBM Plex Mono" mono="JetBrains Mono" */

:root {
  --bg: #0D1117;        /* terminal background */
  --bg-alt: #161B22;    /* alternating panel */
  --bg-deep: #010409;   /* deepest field / hero overlay */
  --fg: #E6EDF3;        /* primary foreground */
  --fg-soft: #C9D1D9;   /* softer foreground */
  --muted: #7D8590;     /* secondary text */
  --accent: #2EE89E;    /* phosphor green */
  --accent-deep: #1FB880; /* hover green */
  --accent-amber: #E3B341; /* secondary terminal amber */
  --border: rgba(230, 237, 243, 0.10);
  --border-strong: rgba(230, 237, 243, 0.20);
  --serif: 'JetBrains Mono', ui-monospace, monospace;
  --sans: 'IBM Plex Mono', ui-monospace, monospace;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
::selection { background: var(--accent); color: var(--bg-deep); }

/* ───────── Layout ───────── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }
section { padding: clamp(80px, 12vw, 160px) 0; }
.section-tight { padding: clamp(56px, 8vw, 96px) 0; }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
}
.eyebrow::before {
  content: "";
  width: 9px; height: 9px;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  display: inline-block;
}
.eyebrow--amber { color: var(--accent-amber); }
.eyebrow--amber::before { background: var(--accent-amber); box-shadow: 0 0 12px var(--accent-amber); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.02em; line-height: 1.1; margin: 0; }
.h2 { font-size: clamp(2.5rem, 6vw, 5rem); letter-spacing: -0.02em; }
.lede { font-size: clamp(1.05rem, 2vw, 1.3rem); line-height: 1.7; color: var(--fg-soft); max-width: 62ch; }
p { margin: 0 0 1.1em; }
.muted { color: var(--muted); }
em { font-style: normal; color: var(--accent); }

/* ───────── Buttons ───────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 14px; letter-spacing: 0.02em;
  padding: 15px 30px;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.btn--primary { background: var(--accent); color: var(--bg-deep); font-weight: 600; }
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--border-strong); color: var(--fg); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.txt-link {
  font-family: var(--mono); font-size: 14px; color: var(--accent);
  display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1px solid transparent; transition: border-color .3s var(--ease), gap .3s var(--ease);
}
.txt-link:hover { border-color: var(--accent); gap: 12px; }

/* ───────── Header ───────── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13, 17, 23, 0.82);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.header[data-scrolled="true"] { border-bottom-color: var(--border); box-shadow: 0 12px 40px -20px rgba(0,0,0,0.8); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: baseline; gap: 10px; font-family: var(--mono); font-size: 18px; letter-spacing: -0.01em; }
.brand__prompt { color: var(--accent); }
.brand__name { color: var(--fg); font-weight: 600; }
.brand__cursor { width: 9px; height: 18px; background: var(--accent); display: inline-block; transform: translateY(2px); animation: blink 1.2s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

.nav { display: none; }
@media (min-width: 900px) {
  .nav { display: flex; align-items: center; gap: 34px; }
  .nav a { font-family: var(--mono); font-size: 13px; letter-spacing: 0.04em; color: var(--fg-soft); transition: color .3s var(--ease); position: relative; }
  .nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0; background: var(--accent); transition: width .3s var(--ease); }
  .nav a:hover { color: var(--fg); }
  .nav a:hover::after { width: 100%; }
  .nav a.is-active { color: var(--accent); }
}
.header__cta { display: none; }
@media (min-width: 900px) { .header__cta { display: inline-flex; } }

.menu-toggle { display: inline-flex; flex-direction: column; gap: 5px; width: 30px; padding: 6px; }
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle span { height: 2px; width: 100%; background: var(--fg); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 72px 0 0; z-index: 99;
  background: var(--bg-deep);
  padding: 40px 24px;
  display: flex; flex-direction: column; gap: 8px;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.mobile-menu[data-open="true"] { opacity: 1; transform: none; pointer-events: all; }
.mobile-menu a { font-family: var(--serif); font-size: 1.8rem; padding: 14px 0; border-bottom: 1px solid var(--border); color: var(--fg); }
.mobile-menu a span { font-family: var(--mono); font-size: 13px; color: var(--accent); margin-right: 14px; }
.mobile-menu .btn { margin-top: 24px; justify-content: center; }

/* ───────── Hero ───────── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; border-bottom: 1px solid var(--border); }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.18; animation: heroZoom 9s var(--ease) forwards; }
@keyframes heroZoom { from { transform: scale(1.1); } to { transform: scale(1); } }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(46,232,158,0.10), transparent 55%),
    linear-gradient(180deg, rgba(13,17,23,0.65), rgba(13,17,23,0.95));
}
.hero__grid {
  position: absolute; inset: 0; z-index: 0; opacity: 0.4;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(80% 60% at 50% 40%, #000 30%, transparent 100%);
  mask-image: radial-gradient(80% 60% at 50% 40%, #000 30%, transparent 100%);
}
.hero__inner { position: relative; z-index: 1; padding: 140px 0 100px; }
.hero__terminal {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border); padding: 8px 14px;
  margin-bottom: 34px;
}
.hero__terminal .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.hero h1 {
  font-size: clamp(3.5rem, 11vw, 9rem);
  font-weight: 300; letter-spacing: -0.04em; line-height: 0.98;
  margin: 0 0 30px; max-width: 16ch;
}
.hero h1 em { color: var(--accent); }
.hero__sub { font-size: clamp(1.1rem, 2.2vw, 1.45rem); color: var(--fg-soft); max-width: 54ch; line-height: 1.6; margin: 0 0 40px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__meta {
  margin-top: 56px; display: flex; flex-wrap: wrap; gap: 32px 48px;
  font-family: var(--mono); font-size: 13px; color: var(--muted);
}
.hero__meta strong { display: block; font-family: var(--serif); font-size: 2rem; font-weight: 400; color: var(--fg); letter-spacing: -0.02em; }
.hero__meta span { color: var(--accent); }

/* ───────── Generic section header ───────── */
.section-head { max-width: 760px; margin-bottom: clamp(48px, 7vw, 88px); }
.section-head .h2 { margin-bottom: 24px; }

/* ───────── Manifesto ───────── */
.manifesto { background: var(--bg-deep); position: relative; }
.manifesto__mark { font-family: var(--serif); font-size: 7rem; line-height: 0.6; color: var(--accent); opacity: 0.5; display: block; margin-bottom: 10px; }
.manifesto p { font-family: var(--serif); font-weight: 300; font-size: clamp(1.7rem, 4.4vw, 3.4rem); line-height: 1.22; letter-spacing: -0.02em; max-width: 18ch; margin: 0 auto; text-align: center; }
.manifesto--wide p { max-width: 22ch; }
.manifesto em { color: var(--accent); }
.manifesto__sig { text-align: center; margin-top: 40px; font-family: var(--mono); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* ───────── Services / cards grid ───────── */
.grid { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); }
@media (min-width: 640px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--bg); padding: 40px 34px;
  transition: background .4s var(--ease);
  position: relative;
}
.card:hover { background: var(--bg-alt); }
.card__idx { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: 0.1em; }
.card h3 { font-size: 1.55rem; margin: 18px 0 14px; font-weight: 400; }
.card p { font-size: 15.5px; line-height: 1.7; color: var(--muted); margin: 0 0 22px; }
.card ul { list-style: none; margin: 0; padding: 0; }
.card li { font-family: var(--mono); font-size: 13px; color: var(--fg-soft); padding: 7px 0; border-top: 1px solid var(--border); display: flex; gap: 10px; }
.card li::before { content: "›"; color: var(--accent); }
.card__link { margin-top: 24px; display: inline-block; }

/* ───────── Timeline ───────── */
.timeline { position: relative; max-width: 920px; margin: 0 auto; }
.timeline::before { content: ""; position: absolute; left: 8px; top: 8px; bottom: 8px; width: 1px; background: var(--border); }
@media (min-width: 768px) { .timeline::before { left: 50%; } }
.tl-item { position: relative; padding: 0 0 56px 44px; }
@media (min-width: 768px) {
  .tl-item { width: 50%; padding: 0 44px 72px; }
  .tl-item:nth-child(odd) { left: 0; text-align: right; }
  .tl-item:nth-child(even) { left: 50%; }
}
.tl-item::before {
  content: ""; position: absolute; top: 6px; left: 3px;
  width: 12px; height: 12px; background: var(--bg); border: 2px solid var(--accent);
  box-shadow: 0 0 12px var(--accent); border-radius: 0;
}
@media (min-width: 768px) {
  .tl-item:nth-child(odd)::before { left: auto; right: -7px; }
  .tl-item:nth-child(even)::before { left: -6px; }
}
.tl-phase { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.tl-item h3 { font-size: 1.6rem; font-weight: 400; margin: 12px 0 12px; }
.tl-item p { font-size: 15.5px; color: var(--muted); line-height: 1.7; margin: 0; }
.tl-dur { display: inline-block; margin-top: 14px; font-family: var(--mono); font-size: 12px; color: var(--fg-soft); border: 1px solid var(--border); padding: 4px 12px; }

/* ───────── Stats band ───────── */
.stats { background: var(--accent); color: var(--bg-deep); }
.stats .grid-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(1,4,9,0.18); border: 1px solid rgba(1,4,9,0.18); }
@media (min-width: 768px) { .stats .grid-stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--accent); padding: 40px 28px; }
.stat strong { display: block; font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 3.8rem); font-weight: 400; letter-spacing: -0.03em; line-height: 1; }
.stat span { font-family: var(--mono); font-size: 13px; letter-spacing: 0.04em; display: block; margin-top: 12px; color: rgba(1,4,9,0.75); }

/* ───────── Feature / split ───────── */
.split { display: grid; gap: 48px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 72px; } .split--rev .split__media { order: 2; } }
.split__media { position: relative; overflow: hidden; border: 1px solid var(--border); aspect-ratio: 4/3; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media .scan { position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(46,232,158,0.06)); pointer-events: none; }
.checklist { list-style: none; margin: 28px 0 0; padding: 0; }
.checklist li { padding: 14px 0; border-top: 1px solid var(--border); display: flex; gap: 14px; align-items: flex-start; font-size: 16px; color: var(--fg-soft); }
.checklist li::before { content: "[ok]"; font-family: var(--mono); font-size: 12px; color: var(--accent); margin-top: 4px; }

/* ───────── Testimonials ───────── */
.quote-grid { display: grid; gap: 24px; }
@media (min-width: 768px) { .quote-grid { grid-template-columns: repeat(2, 1fr); } }
.quote { border: 1px solid var(--border); padding: 36px 32px; background: var(--bg-alt); }
.quote p { font-family: var(--serif); font-weight: 300; font-size: 1.25rem; line-height: 1.45; color: var(--fg); margin: 0 0 26px; }
.quote__who { display: flex; align-items: center; gap: 14px; }
.avatar { width: 46px; height: 46px; display: grid; place-items: center; font-family: var(--mono); font-weight: 600; font-size: 15px; color: var(--bg-deep); }
.quote__who div strong { display: block; font-family: var(--mono); font-size: 14px; color: var(--fg); }
.quote__who div span { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.tag-placeholder { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.1em; }

/* ───────── FAQ ───────── */
.faq { max-width: 860px; margin: 0 auto; border-top: 1px solid var(--border); }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary { list-style: none; cursor: pointer; padding: 28px 0; display: flex; justify-content: space-between; align-items: center; gap: 24px; font-family: var(--serif); font-size: clamp(1.15rem, 2.3vw, 1.5rem); font-weight: 400; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ico { font-family: var(--mono); color: var(--accent); flex-shrink: 0; transition: transform .3s var(--ease); }
.faq details[open] summary .ico { transform: rotate(45deg); }
.faq details p { padding: 0 0 28px; color: var(--muted); font-size: 16px; line-height: 1.75; max-width: 64ch; margin: 0; }

/* ───────── CTA ───────── */
.cta { background: var(--bg-deep); position: relative; overflow: hidden; text-align: center; }
.cta__grid { position: absolute; inset: 0; opacity: 0.3; background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px); background-size: 48px 48px; -webkit-mask-image: radial-gradient(60% 60% at 50% 50%, #000, transparent); mask-image: radial-gradient(60% 60% at 50% 50%, #000, transparent); }
.cta__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.cta h2 { font-size: clamp(2.2rem, 5.5vw, 4.2rem); font-weight: 300; letter-spacing: -0.03em; margin-bottom: 24px; }
.cta p { color: var(--fg-soft); margin-bottom: 38px; }
.cta .hero__actions { justify-content: center; }

/* ───────── Forms ───────── */
.form { display: grid; gap: 22px; }
.form__row { display: grid; gap: 22px; }
@media (min-width: 640px) { .form__row { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.field label .req { color: var(--accent); }
.field input, .field textarea, .field select {
  font-family: var(--mono); font-size: 15px; color: var(--fg);
  background: var(--bg); border: 1px solid var(--border-strong);
  padding: 14px 16px; transition: border-color .3s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 140px; }
.form__consent { display: flex; gap: 12px; align-items: flex-start; font-family: var(--mono); font-size: 13px; color: var(--muted); line-height: 1.6; }
.form__consent a { color: var(--accent); border-bottom: 1px solid transparent; }
.form__consent a:hover { border-color: var(--accent); }
.form__consent input { margin-top: 4px; accent-color: var(--accent); }

/* ───────── Contact info blocks ───────── */
.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.info-list li { background: var(--bg); padding: 26px 28px; }
.info-list .k { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 10px; }
.info-list .v { font-size: 16px; color: var(--fg-soft); line-height: 1.6; }

/* ───────── Footer ───────── */
.footer { background: var(--bg-deep); border-top: 1px solid var(--border); padding: clamp(64px, 8vw, 96px) 0 40px; }
.footer__top { display: grid; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid var(--border); }
@media (min-width: 768px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr; } }
.footer__brand .brand { font-size: 20px; margin-bottom: 22px; }
.footer__brand p { color: var(--muted); max-width: 40ch; font-size: 15px; }
.footer__col h4 { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 400; margin-bottom: 20px; }
.footer__col a { display: block; padding: 7px 0; color: var(--fg-soft); font-size: 15px; transition: color .3s var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; padding-top: 32px; font-family: var(--mono); font-size: 12px; color: var(--muted); }
.footer__bottom a { color: var(--muted); }
.footer__bottom a:hover { color: var(--accent); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 22px; }

/* ───────── Reveal ───────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease), transform .65s var(--ease); transition-delay: calc(var(--i, 0) * 80ms); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg img { animation: none; }
  .brand__cursor { animation: none; }
}

/* ───────── Cookie popup ───────── */
.cookie-popup { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: flex-end; justify-content: flex-start; padding: 24px; background: rgba(1,4,9,0.55); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity .3s; }
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card { background: var(--bg); border: 1px solid var(--border-strong); padding: 32px 34px; max-width: 480px; }
.cookie-popup__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.cookie-popup__card h3 { font-size: 1.4rem; font-weight: 400; margin-bottom: 14px; }
.cookie-popup__card p { font-size: 14px; line-height: 1.65; color: var(--muted); margin: 0; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 24px; }
.cookie-popup__actions button { padding: 12px 24px; border: 1px solid var(--border-strong); font-family: var(--mono); font-size: 13px; transition: border-color .3s var(--ease), background .3s var(--ease), color .3s var(--ease); }
.cookie-popup__actions button:hover { border-color: var(--accent); color: var(--accent); }
.cookie-popup__actions button:last-child { background: var(--accent); color: var(--bg-deep); border-color: var(--accent); font-weight: 600; }
.cookie-popup__actions button:last-child:hover { background: var(--accent-deep); color: var(--bg-deep); }

/* ───────── Legal pages ───────── */
.legal { padding-top: 64px; }
.legal__wrap { max-width: 820px; margin: 0 auto; }
.legal h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 300; margin-bottom: 16px; }
.legal__meta { font-family: var(--mono); font-size: 13px; color: var(--muted); margin-bottom: 48px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.legal h2 { font-size: 1.5rem; font-weight: 400; margin: 48px 0 16px; }
.legal h3 { font-size: 1.15rem; font-weight: 400; color: var(--accent); margin: 32px 0 12px; }
.legal p, .legal li { color: var(--fg-soft); font-size: 16px; line-height: 1.8; }
.legal ul { padding-left: 20px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--accent); border-bottom: 1px solid transparent; }
.legal a:hover { border-color: var(--accent); }

/* ───────── Thanks page ───────── */
.thanks { min-height: 80vh; display: grid; place-items: center; text-align: center; }
.thanks__inner { max-width: 600px; }
.thanks__check { font-family: var(--mono); color: var(--accent); font-size: 14px; letter-spacing: 0.1em; margin-bottom: 24px; }
.thanks h1 { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 300; margin-bottom: 20px; }
.thanks p { color: var(--fg-soft); margin-bottom: 36px; }

/* page hero (interior) */
.page-hero { padding: clamp(90px, 12vw, 150px) 0 clamp(40px, 6vw, 80px); border-bottom: 1px solid var(--border); position: relative; }
.page-hero h1 { font-size: clamp(2.8rem, 8vw, 6rem); font-weight: 300; letter-spacing: -0.03em; margin-bottom: 24px; max-width: 18ch; }
.page-hero h1 em { color: var(--accent); }
.page-hero .lede { font-size: clamp(1.1rem, 2vw, 1.35rem); }
.breadcrumb { font-family: var(--mono); font-size: 12px; color: var(--muted); margin-bottom: 28px; letter-spacing: 0.04em; }
.breadcrumb a { color: var(--accent); }
.breadcrumb span { margin: 0 8px; }
