/* palette: bg=#0A0E0A fg=#C8D0C6 accent=#55E081 */
/* fonts: display="Space Grotesk" body="IBM Plex Mono" mono="IBM Plex Mono" */

:root {
  --bg: #0A0E0A;        /* dominant near-black terminal background */
  --bg-alt: #10160F;    /* alternating panel background */
  --bg-panel: #0D130C;  /* raised panel */
  --fg: #C8D0C6;        /* primary off-white-green text */
  --fg-soft: #9AA698;   /* slightly softer foreground */
  --muted: #5C6A5C;     /* dimmed labels (SYS.NAME style) */
  --accent: #55E081;    /* terminal green accent */
  --accent-deep: #38B562; /* darker green for hover */
  --accent-dim: rgba(85, 224, 129, 0.14);
  --border: rgba(122, 150, 122, 0.18);
  --border-bright: rgba(85, 224, 129, 0.42);
  --serif: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --sans: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', monospace;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 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: 16px;
  line-height: 1.75;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  /* faint scanline texture — terminal CRT feel */
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: repeating-linear-gradient(
    to bottom,
    rgba(85, 224, 129, 0.020) 0px,
    rgba(85, 224, 129, 0.020) 1px,
    transparent 1px,
    transparent 3px
  );
  mix-blend-mode: screen;
}
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); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }

.accent { color: var(--accent); }
.muted { color: var(--muted); }

/* ---------- EYEBROW ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--accent);
  display: inline-block;
}

/* ---------- HEADER ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 14, 10, 0.82);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  transition: box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.header[data-scrolled="true"] {
  box-shadow: 0 8px 40px -12px rgba(0, 0, 0, 0.7);
  border-color: var(--border-bright);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: 0.02em;
}
.brand__mark { color: var(--accent); }
.brand__dot { color: var(--muted); }
.brand__caret {
  color: var(--accent);
  animation: blink 1.1s steps(1) infinite;
}
@keyframes blink { 0%,50% { opacity: 1; } 51%,100% { opacity: 0; } }

.nav { display: none; }
@media (min-width: 900px) {
  .nav { display: flex; align-items: center; gap: 4px; }
  .nav a {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--fg-soft);
    padding: 8px 14px;
    border: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
  }
  .nav a:hover { color: var(--bg); background: var(--accent); }
  .nav a[aria-current="page"] { color: var(--accent); border-color: var(--border); }
}
.nav__cta {
  display: none;
}
@media (min-width: 900px) {
  .nav__cta {
    display: inline-flex;
    margin-left: 10px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent) !important;
    border: 1px solid var(--border-bright) !important;
    padding: 8px 16px !important;
  }
  .nav__cta:hover { background: var(--accent); color: var(--bg) !important; }
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  align-items: flex-end;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--fg);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
  position: fixed;
  inset: 62px 0 0;
  z-index: 99;
  background: var(--bg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  border-top: 1px solid var(--border);
}
.mobile-menu[data-open="true"] { transform: none; }
.mobile-menu a {
  font-family: var(--mono);
  font-size: 22px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  color: var(--fg);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.mobile-menu a .num { color: var(--accent); font-size: 13px; }
.mobile-menu a:hover { color: var(--accent); }

/* ---------- STATUS BAR (hero top) ---------- */
.statusbar {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 22px;
  margin-bottom: 40px;
  display: grid;
  gap: 6px;
}
@media (min-width: 768px) {
  .statusbar { grid-template-columns: 1fr 1fr; column-gap: 40px; }
}
.statusbar__row {
  display: flex;
  gap: 10px;
  color: var(--fg-soft);
}
.statusbar__row.right { justify-content: flex-start; }
@media (min-width: 768px) { .statusbar__row.right { justify-content: flex-end; } }
.statusbar__key { color: var(--muted); min-width: 92px; }
.statusbar__val { color: var(--fg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0 60px;
  background:
    radial-gradient(120% 80% at 15% 0%, rgba(85, 224, 129, 0.06), transparent 55%),
    var(--bg);
}
.hero__ascii {
  font-family: var(--mono);
  font-size: clamp(6px, 1.5vw, 13px);
  line-height: 1.15;
  color: var(--accent);
  white-space: pre;
  overflow-x: auto;
  margin: 0 0 34px;
  opacity: 0.92;
  animation: heroFade 1s var(--ease) both;
}
@keyframes heroFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 0.92; transform: none; } }

.hero__lead { max-width: 880px; }
.cmd {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--accent);
  margin: 0 0 14px;
}
.cmd::before { content: "$ "; color: var(--muted); }
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  color: var(--fg);
}
.hero__title em { font-style: normal; color: var(--accent); }
.hero__desc {
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
  color: var(--fg-soft);
  max-width: 640px;
  margin: 0 0 34px;
}

/* key-value block */
.kv {
  font-family: var(--mono);
  font-size: 14px;
  margin: 30px 0;
  display: grid;
  gap: 12px;
}
.kv__row { display: flex; gap: 20px; align-items: baseline; }
.kv__key {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  min-width: 120px;
}
.kv__val { color: var(--fg); }
.kv__val a { color: var(--accent); border-bottom: 1px solid var(--border-bright); }

/* status badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg);
  border: 1px solid var(--border-bright);
  padding: 11px 18px;
  margin-top: 8px;
}
.badge__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__tip {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  margin-top: 40px;
}
.hero__tip b { color: var(--fg-soft); font-weight: 400; background: var(--bg-alt); padding: 2px 6px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 24px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--bg);
  transition: background 0.25s var(--ease), color 0.25s, transform 0.25s var(--ease);
}
.btn:hover { background: transparent; color: var(--accent); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--fg); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.link-arrow {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid transparent;
  transition: gap 0.25s var(--ease), border-color 0.25s;
}
.link-arrow::after { content: "→"; transition: transform 0.25s var(--ease); }
.link-arrow:hover { gap: 12px; border-color: var(--border-bright); }
.link-arrow:hover::after { transform: translateX(3px); }

/* ---------- SECTIONS ---------- */
.section { position: relative; z-index: 2; padding: clamp(72px, 12vw, 150px) 0; }
.section--alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section__head { max-width: 760px; margin-bottom: 56px; }
.section__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.1rem, 5.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--fg);
}
.section__title em { font-style: normal; color: var(--accent); }
.section__intro { font-size: 1.05rem; line-height: 1.75; color: var(--fg-soft); }

/* prompt heading marker */
.prompt-tag {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 16px;
}
.prompt-tag::before { content: "$ "; color: var(--muted); }

/* ---------- SERVICES GRID ---------- */
.grid { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); }
@media (min-width: 640px) { .grid--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--bg);
  padding: 34px 30px;
  transition: background 0.3s var(--ease);
  position: relative;
}
.card:hover { background: var(--bg-panel); }
.card__num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 22px;
}
.card__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--fg);
}
.card__text { font-size: 0.94rem; line-height: 1.7; color: var(--fg-soft); margin: 0 0 18px; }
.card__meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px dashed var(--border);
  padding-top: 16px;
  margin-top: auto;
}

/* ---------- WORK / CASE CARDS ---------- */
.work { display: grid; gap: 28px; }
@media (min-width: 800px) { .work { grid-template-columns: 1fr 1fr; } }
.work__item { border: 1px solid var(--border); background: var(--bg-panel); overflow: hidden; transition: border-color 0.3s var(--ease); }
.work__item:hover { border-color: var(--border-bright); }
.work__media { aspect-ratio: 16 / 10; overflow: hidden; position: relative; }
.work__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.4) brightness(0.72) contrast(1.05);
  transition: transform 0.7s var(--ease), filter 0.5s;
}
.work__item:hover .work__media img { transform: scale(1.05); filter: grayscale(0) brightness(0.85) contrast(1.05); }
.work__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,14,10,0.55), transparent 60%);
}
.work__body { padding: 26px 28px 30px; }
.work__tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.work__title { font-family: var(--serif); font-weight: 500; font-size: 1.5rem; margin: 0 0 12px; letter-spacing: -0.01em; }
.work__text { font-size: 0.95rem; color: var(--fg-soft); line-height: 1.7; margin: 0 0 20px; }

/* ---------- MANIFESTO (dark inverted band) ---------- */
.manifesto {
  position: relative;
  z-index: 2;
  background: var(--accent);
  color: var(--bg);
  padding: clamp(80px, 14vw, 170px) 0;
}
.manifesto__inner { max-width: 940px; margin: 0 auto; text-align: center; }
.manifesto__mark { font-family: var(--serif); font-size: 5rem; line-height: 0.5; color: var(--bg); opacity: 0.35; display: block; margin-bottom: 10px; }
.manifesto__text {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.7rem, 4.6vw, 3.4rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--bg);
}
.manifesto__sig {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 34px;
  color: rgba(10,14,10,0.7);
}

/* ---------- PROCESS / STEPS ---------- */
.steps { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { background: var(--bg); padding: 36px 30px; }
.step__num { font-family: var(--serif); font-size: 3rem; font-weight: 300; color: var(--accent); line-height: 1; margin-bottom: 20px; letter-spacing: -0.03em; }
.step__title { font-family: var(--serif); font-weight: 500; font-size: 1.25rem; margin: 0 0 12px; }
.step__text { font-size: 0.94rem; color: var(--fg-soft); line-height: 1.7; margin: 0; }

/* ---------- STATS ---------- */
.stats { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); }
@media (min-width: 640px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--bg-alt); padding: 40px 28px; }
.stat__num { font-family: var(--serif); font-weight: 300; font-size: clamp(2.6rem, 5vw, 3.6rem); color: var(--fg); letter-spacing: -0.03em; line-height: 1; }
.stat__num em { font-style: normal; color: var(--accent); }
.stat__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 14px; }

/* ---------- TEAM / PRINCIPLES (no faces) ---------- */
.people { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); }
@media (min-width: 640px) { .people { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .people { grid-template-columns: repeat(3, 1fr); } }
.person { background: var(--bg); padding: 32px 28px; }
.avatar {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 600; font-size: 1.15rem;
  color: var(--bg);
  margin-bottom: 22px;
  border: 1px solid var(--border-bright);
}
.person__name { font-family: var(--serif); font-weight: 500; font-size: 1.2rem; margin: 0 0 4px; }
.person__role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.person__bio { font-size: 0.92rem; color: var(--fg-soft); line-height: 1.7; margin: 0; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--border); max-width: 900px; }
.faq__item { border-bottom: 1px solid var(--border); padding: 26px 0; }
.faq__q { font-family: var(--serif); font-weight: 500; font-size: 1.2rem; margin: 0 0 12px; display: flex; gap: 14px; }
.faq__q::before { content: ">"; color: var(--accent); font-family: var(--mono); }
.faq__a { font-size: 0.98rem; color: var(--fg-soft); line-height: 1.75; margin: 0; padding-left: 26px; }

/* ---------- TESTIMONIAL ---------- */
.quotes { display: grid; gap: 24px; }
@media (min-width: 800px) { .quotes { grid-template-columns: 1fr 1fr; } }
.quote { border: 1px solid var(--border); padding: 32px 30px; background: var(--bg-panel); }
.quote__text { font-family: var(--serif); font-size: 1.15rem; line-height: 1.5; color: var(--fg); margin: 0 0 22px; }
.quote__meta { display: flex; align-items: center; gap: 14px; }
.quote__name { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--fg); }
.quote__firm { font-family: var(--mono); font-size: 11px; color: var(--muted); }

/* ---------- CTA / FORM ---------- */
.cta { position: relative; z-index: 2; }
.form-wrap { border: 1px solid var(--border-bright); background: var(--bg-panel); padding: clamp(28px, 5vw, 52px); }
.form-terminal-bar {
  font-family: var(--mono); font-size: 12px; color: var(--muted);
  border-bottom: 1px dashed var(--border); padding-bottom: 16px; margin-bottom: 28px;
  display: flex; gap: 8px; align-items: center;
}
.form-terminal-bar .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.form-terminal-bar .dot.g { background: var(--accent); }
.form { display: grid; gap: 20px; }
@media (min-width: 640px) { .form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
}
.field label::before { content: "// "; 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);
  padding: 13px 15px;
  transition: border-color 0.25s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field textarea { resize: vertical; min-height: 130px; }
.form__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; justify-content: space-between; }
.form__note { font-family: var(--mono); font-size: 11px; color: var(--muted); max-width: 360px; }

/* ---------- FOOTER ---------- */
.footer { position: relative; z-index: 2; background: var(--bg-alt); border-top: 1px solid var(--border); padding: 70px 0 40px; }
.footer__grid { display: grid; gap: 40px; }
@media (min-width: 768px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; } }
.footer__brand { font-family: var(--mono); font-size: 18px; margin-bottom: 18px; }
.footer__brand .brand__mark { color: var(--accent); }
.footer__desc { font-size: 0.92rem; color: var(--fg-soft); line-height: 1.7; max-width: 340px; margin: 0 0 20px; }
.footer__col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin: 0 0 18px; }
.footer__col a, .footer__col p { display: block; font-size: 0.92rem; color: var(--fg-soft); margin: 0 0 11px; transition: color 0.2s; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  margin-top: 54px; padding-top: 26px; border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; color: var(--muted);
}
.footer__bottom a:hover { color: var(--accent); }

/* ---------- LEGAL PAGES ---------- */
.legal { position: relative; z-index: 2; padding: clamp(80px, 10vw, 130px) 0; }
.legal__inner { max-width: 800px; margin: 0 auto; }
.legal h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -0.02em; margin: 0 0 12px; }
.legal .updated { font-family: var(--mono); font-size: 12px; color: var(--muted); margin-bottom: 48px; }
.legal h2 { font-family: var(--serif); font-weight: 500; font-size: 1.5rem; margin: 46px 0 14px; letter-spacing: -0.01em; }
.legal p, .legal li { font-size: 1rem; line-height: 1.8; color: var(--fg-soft); }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--accent); border-bottom: 1px solid var(--border-bright); }

/* ---------- THANKS ---------- */
.thanks { position: relative; z-index: 2; min-height: 78vh; display: flex; align-items: center; text-align: center; }
.thanks__inner { max-width: 640px; margin: 0 auto; }
.thanks__ascii { font-family: var(--mono); color: var(--accent); font-size: clamp(8px,1.6vw,13px); white-space: pre; margin: 0 0 28px; }
.thanks h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(2.4rem, 6vw, 4rem); letter-spacing: -0.02em; margin: 0 0 18px; }
.thanks p { font-size: 1.08rem; color: var(--fg-soft); line-height: 1.7; margin: 0 0 32px; }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[style*="--i"] { transition-delay: calc(var(--i) * 80ms); }

/* ---------- 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(0,0,0,0.5);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card {
  background: var(--bg); border: 1px solid var(--border-bright);
  padding: 30px 32px; max-width: 460px;
}
.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-family: var(--serif); font-weight: 500; font-size: 1.3rem; margin: 0 0 12px; }
.cookie-popup__card p { font-size: 0.9rem; color: var(--fg-soft); line-height: 1.65; margin: 0; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 11px 22px; border: 1px solid var(--border); transition: all 0.25s;
}
.cookie-popup__actions button:hover { border-color: var(--accent); color: var(--accent); }
.cookie-popup__actions button:last-child { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.cookie-popup__actions button:last-child:hover { background: transparent; color: var(--accent); }

/* ---------- MISC ---------- */
.divider-cmd { font-family: var(--mono); font-size: 12px; color: var(--muted); margin: 0 0 8px; }
.split { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 64px; } }
.split__media { border: 1px solid var(--border); overflow: hidden; aspect-ratio: 4/3; }
.split__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.35) brightness(0.78) contrast(1.05); }
.prose p { font-size: 1.02rem; line-height: 1.78; color: var(--fg-soft); margin: 0 0 18px; }
.prose p strong { color: var(--fg); font-weight: 600; }
