/* AI Brain Transplant — v4 visual direction
   Original system informed by Vercel principles: near-black, 5% gray, compact type,
   ring borders, broad whitespace, and a dedicated dark mode. */

/* Geist and Geist Mono variable fonts are registered through theme.json,
   which loads the same self-hosted faces in the Site Editor and front end.
   Font license: ../fonts/OFL.txt */

:root {
  color-scheme: light;
  --page: #fafafa;
  --surface: #ffffff;
  --surface-subtle: #f5f5f5;
  --surface-muted: #f2f2f2;
  --ink: #171717;
  --ink-soft: #4d4d4d;
  --muted: #8f8f8f;
  --line: #ebebeb;
  --line-soft: #f2f2f2;
  --ring: 0 0 0 1px var(--line);
  --card-shadow: 0 1px 1px rgba(0,0,0,.035), 0 8px 16px -14px rgba(0,0,0,.10);
  --blue: #0070f3;
  --focus: #0070f3;
  --hero-mesh: radial-gradient(circle at 76% 30%, rgba(0, 223, 216, .21) 0, transparent 25%), radial-gradient(circle at 90% 56%, rgba(255, 0, 128, .16) 0, transparent 31%), radial-gradient(circle at 65% 76%, rgba(121, 40, 202, .16) 0, transparent 31%), radial-gradient(circle at 92% 88%, rgba(249, 203, 40, .13) 0, transparent 20%), radial-gradient(circle at 70% 48%, rgba(0, 124, 240, .17) 0, transparent 34%);
  --max: 1200px;
  /* Single page gutter: theme.json assigns this to WordPress root padding.
     Full-width section backgrounds still bleed edge to edge; their content does not. */
  --abt-page-gutter: clamp(1.25rem, 4vw, 3rem);
  --space-section: clamp(6rem, 10vw, 8rem);
  --sans: Geist, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "Geist Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --page: #0a0a0a;
  --surface: #111111;
  --surface-subtle: #151515;
  --surface-muted: #1a1a1a;
  --ink: #ffffff;
  --ink-soft: #d4d4d4;
  --muted: #a3a3a3;
  --line: rgba(255, 255, 255, .16);
  --line-soft: rgba(255, 255, 255, .10);
  --ring: 0 0 0 1px rgba(255,255,255,.16);
  --card-shadow: 0 0 0 1px rgba(255,255,255,.14), 0 16px 30px -22px rgba(0,0,0,.85), rgba(255,255,255,.025) 0 0 0 1px inset;
  --blue: #3291ff;
  --focus: #3291ff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--page);
  font-family: var(--sans);
  font-feature-settings: "liga" 1, "calt" 1;
  transition: background .22s ease, color .22s ease;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; }

.container { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }

/* Header / desktop navigation */
.site-header {
  position: sticky; top: 0; z-index: 30;
  height: 66px;
  background: color-mix(in srgb, var(--page) 92%, transparent);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(18px) saturate(160%);
}
.site-header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.wordmark { display: inline-flex; align-items: center; gap: 9px; color: var(--ink); font-size: 14px; font-weight: 600; letter-spacing: -.035em; white-space: nowrap; }
.mark { width: 18px; height: 16px; background: currentColor; clip-path: polygon(50% 0, 100% 100%, 0 100%); }
.site-nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-link, .nav-trigger {
  display: inline-flex; align-items: center; gap: 6px; min-height: 36px; padding: 0 10px;
  border: 0; border-radius: 7px; background: transparent; color: var(--ink-soft);
  font-size: 14px; font-weight: 500; line-height: 1; cursor: pointer;
}
.nav-link:hover, .nav-trigger:hover, .has-dropdown:focus-within .nav-trigger { color: var(--ink); background: var(--surface-muted); }
.caret { width: 12px; height: 12px; transition: transform .18s ease; }
.has-dropdown:hover .caret, .has-dropdown:focus-within .caret, .has-dropdown.open .caret { transform: rotate(180deg); }
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0; width: 300px; padding: 7px;
  border-radius: 10px; background: var(--surface); box-shadow: var(--card-shadow), 0 18px 36px -26px rgba(0,0,0,.5);
  opacity: 0; visibility: hidden; transform: translateY(-5px); transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.dropdown--right { left: auto; right: 0; }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown, .has-dropdown.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: grid; grid-template-columns: 26px 1fr; gap: 10px; align-items: start; padding: 10px; border-radius: 7px; }
.dropdown a:hover { background: var(--surface-muted); }
.dropdown-icon { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 6px; color: var(--ink); background: var(--surface-muted); box-shadow: var(--ring); font: 500 11px/1 var(--mono); }
.dropdown strong { display: block; color: var(--ink); font-size: 13px; font-weight: 500; letter-spacing: -.01em; }
.dropdown small { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; line-height: 1.35; }
.header-actions { display: flex; gap: 8px; align-items: center; margin-left: 10px; }
.theme-toggle, .header-cta {
  min-height: 34px; border-radius: 7px; font-size: 13px; font-weight: 500; cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.theme-toggle { width: 34px; padding: 0; color: var(--ink); background: var(--surface); border: 0; box-shadow: var(--ring); }
.theme-toggle:hover { background: var(--surface-muted); }
.header-cta { display: inline-flex; align-items: center; padding: 0 13px; color: var(--surface); background: var(--ink); border: 1px solid var(--ink); }
.header-cta:hover { opacity: .86; }

/* Shared visual grammar */
.eyebrow, .mono { color: var(--muted); font: 500 12px/1.35 var(--mono); letter-spacing: .055em; text-transform: uppercase; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; }
.eyebrow i { width: 7px; height: 7px; border-radius: 50%; background: var(--ink); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink); text-wrap: balance; }
h1 { margin-bottom: 24px; max-width: 9.5ch; font-size: clamp(3rem, 6vw, 5.4rem); font-weight: 600; letter-spacing: -.07em; line-height: .94; }
h2 { margin-bottom: 0; max-width: 15ch; font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 600; letter-spacing: -.055em; line-height: 1; }
h3 { margin-bottom: 10px; font-size: 20px; font-weight: 600; letter-spacing: -.035em; line-height: 1.25; }
p { color: var(--ink-soft); }

/* Hero */
.hero { position: relative; overflow: hidden; padding: clamp(6rem, 12vw, 10rem) 0 clamp(6.5rem, 13vw, 11rem); border-bottom: 1px solid var(--line-soft); }
.hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .8; background-image: linear-gradient(to right, var(--line-soft) 1px, transparent 1px), linear-gradient(to bottom, var(--line-soft) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(100deg, #000 0%, transparent 73%); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(40px, 7vw, 96px); align-items: center; }
.hero .lead { max-width: 54ch; margin-bottom: 30px; font-size: 18px; line-height: 1.68; }
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; }
.button { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 0 18px; border-radius: 999px; box-shadow: var(--ring); font-size: 14px; font-weight: 500; }
.button--dark { color: var(--surface); background: var(--ink); box-shadow: 0 0 0 1px var(--ink); }
.button--light { color: var(--ink); background: var(--surface); }
.button:hover { transform: translateY(-1px); }
.hero-note { margin-top: 19px; color: var(--muted); font: 500 11px/1.5 var(--mono); }
.hero-art { position: relative; min-height: 430px; padding: 22px; overflow: hidden; color: #fff; background: #0a0a0a; border-radius: 10px; box-shadow: 0 0 0 1px rgba(0,0,0,.25), 0 32px 80px -38px rgba(0,0,0,.65); }
html[data-theme="dark"] .hero-art { box-shadow: 0 0 0 1px rgba(255,255,255,.18), 0 32px 80px -38px #000; }
.hero-art::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.075) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.075) 1px, transparent 1px); background-size: 38px 38px; mask-image: radial-gradient(circle at 55% 45%, #000 0%, transparent 75%); }
.art-topline { position: relative; display: flex; justify-content: space-between; color: rgba(255,255,255,.58); font: 500 10px/1 var(--mono); letter-spacing: .02em; }
.art-core { position: absolute; top: 50%; left: 50%; width: 124px; height: 124px; transform: translate(-50%, -50%); border-radius: 50%; background: radial-gradient(circle at 36% 32%, #fafafa 0 5%, #8d8d8d 22%, #2d2d2d 48%, #0a0a0a 72%); box-shadow: 0 0 0 1px rgba(255,255,255,.28), 0 0 0 28px rgba(255,255,255,.035), 0 0 0 70px rgba(255,255,255,.018); }
.art-node { position: absolute; width: 13px; height: 13px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 5px rgba(255,255,255,.07); }
.art-node::after { content: ""; position: absolute; top: 6px; left: 6px; width: 150px; height: 1px; background: linear-gradient(90deg, rgba(255,255,255,.5), transparent); transform-origin: left; }
.n1 { top: 25%; left: 16%; }.n1::after { transform: rotate(27deg); }
.n2 { top: 19%; right: 19%; }.n2::after { width: 155px; transform: rotate(136deg); }
.n3 { right: 14%; bottom: 26%; }.n3::after { width: 145px; transform: rotate(209deg); }
.n4 { bottom: 18%; left: 22%; }.n4::after { width: 132px; transform: rotate(324deg); }
.art-bottom { position: absolute; right: 22px; bottom: 21px; left: 22px; display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.art-stat { padding: 11px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.05); }
.art-stat b { display: block; font-size: 15px; font-weight: 500; }.art-stat span { display: block; margin-top: 5px; color: rgba(255,255,255,.56); font-size: 10px; line-height: 1.35; }

/* Sections / content */
.section { padding: var(--space-section) 0; border-bottom: 1px solid var(--line-soft); }
.section--surface { background: var(--surface); }
.section--muted { background: var(--surface-subtle); }
.section--dark { color: #fff; background: #0a0a0a; }
.section--dark h2, .section--dark h3, .section--dark p { color: #fff; }
.section--dark .eyebrow { color: rgba(255,255,255,.62); }
.section--dark .eyebrow i { background: #fff; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr); gap: 48px; align-items: end; margin-bottom: clamp(2.4rem, 5vw, 4.25rem); }
.section-heading p { margin-bottom: 3px; font-size: 16px; line-height: 1.64; }
.grid-2, .grid-4, .grid-5, .grid-3 { display: grid; gap: 14px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }.grid-4 { grid-template-columns: repeat(4, 1fr); }.grid-5 { grid-template-columns: repeat(5, 1fr); }.grid-3 { grid-template-columns: 1.6fr 1fr 1fr; }
.card { min-height: 100%; padding: 28px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--card-shadow); border-radius: 12px; }
.card p { margin-bottom: 0; font-size: 15px; line-height: 1.65; }
.card--dark { background: #111; box-shadow: 0 0 0 1px rgba(255,255,255,.16), 0 20px 30px -26px #000; }.card--dark h3,.card--dark p,.card--dark .mono { color: #fff; }.card--dark p { color: rgba(255,255,255,.7); }.card--dark .mono { color: rgba(255,255,255,.55); }
.tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 22px; }.tag { padding: 5px 7px; color: var(--ink-soft); border-radius: 999px; background: var(--surface-muted); box-shadow: var(--ring); font: 500 10px/1 var(--mono); }
.trust-card { min-height: 116px; padding: 20px; text-align: left; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--card-shadow); border-radius: 12px; }.trust-card b { display: block; color: var(--ink); font-size: 15px; letter-spacing: -.02em; }.trust-card span { display: block; margin-top: 7px; color: var(--muted); font-size: 12px; line-height: 1.4; }
.feature-grid .card { min-height: 250px; }.feature-grid .mono { margin-bottom: 30px; }
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px, 5vw, 72px); align-items: start; }
.manifesto { padding: 34px; color: #fff; background: #0a0a0a; border-radius: 10px; box-shadow: 0 0 0 1px rgba(255,255,255,.16); }.manifesto p, .manifesto li { color: rgba(255,255,255,.74); }.manifesto h3 { color: #fff; font-size: 24px; }.manifesto ul { margin: 22px 0 0; padding-left: 18px; }.manifesto li { margin: 10px 0; }
.process { display: grid; grid-template-columns: repeat(5,1fr); gap: 1px; overflow: hidden; background: var(--line); border-radius: 10px; box-shadow: var(--ring); }.step { min-height: 220px; padding: 24px; background: var(--surface); }.step b { display: block; margin-top: 24px; color: var(--ink); font-size: 18px; letter-spacing: -.035em; }.step p { margin: 8px 0 0; font-size: 13px; line-height: 1.58; }
.article-feature { min-height: 250px; background: var(--ink); box-shadow: none; }.article-feature h3,.article-feature p,.article-feature .mono,.article-feature .article-meta { color: #fff; }.article-feature p { color: rgba(255,255,255,.72); }.article-meta { display: flex; justify-content: space-between; margin-top: 38px; color: var(--muted); font: 500 11px/1 var(--mono); }

/* FAQ */
.faq { border-top: 1px solid var(--line); }.faq-item { border-bottom: 1px solid var(--line); }.faq-question { width: 100%; min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 0; color: var(--ink); background: transparent; border: 0; text-align: left; font-size: 17px; font-weight: 500; letter-spacing: -.025em; cursor: pointer; }.faq-question:hover { color: var(--blue); }.faq-icon { width: 27px; height: 27px; position: relative; flex: 0 0 auto; border-radius: 50%; box-shadow: var(--ring); }.faq-icon::before,.faq-icon::after { content: ""; position: absolute; top: 13px; left: 7px; width: 13px; height: 1px; background: currentColor; }.faq-icon::after { transform: rotate(90deg); transition: transform .16s ease; }.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .24s ease; }.faq-answer > div { overflow: hidden; max-width: 68ch; color: var(--ink-soft); font-size: 16px; line-height: 1.68; }.faq-item.open .faq-answer { grid-template-rows: 1fr; }.faq-item.open .faq-answer > div { padding: 0 54px 28px 0; }.faq-item.open .faq-icon::after { transform: rotate(0); }

/* Footer / dark closure */
.final-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 42px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--card-shadow); border-radius: 16px; }.final-cta h3 { margin-bottom: 0; color: var(--ink); font-size: clamp(1.7rem, 3vw, 2.5rem); }.final-cta .mono { margin-bottom: 14px; color: var(--muted); }.final-cta .button--light { background: var(--ink); color: var(--surface); box-shadow: none; }
.site-footer { padding: 44px 0; color: var(--ink-soft); background: var(--page); border-top: 1px solid var(--line); }.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; }.site-footer .wordmark { color: var(--ink); }.site-footer p { max-width: 52ch; margin: 18px 0 0; color: var(--ink-soft); font-size: 14px; line-height: 1.65; }.footer-links { display: grid; gap: 10px; justify-content: start; }.footer-links a { color: var(--ink-soft); font-size: 14px; }.footer-links a:hover { color: var(--ink); }

@media (max-width: 900px) {
  .site-header { height: auto; }.site-header__inner { min-height: 64px; flex-wrap: wrap; padding: 12px 0; }.site-nav { order: 3; width: 100%; justify-content: flex-start; overflow-x: auto; }.header-actions { margin-left: auto; }.hero-grid,.split { grid-template-columns: 1fr; }.hero-art { min-height: 380px; }.section-heading { grid-template-columns: 1fr; gap: 16px; }.grid-4,.grid-5,.process { grid-template-columns: repeat(2, 1fr); }.grid-3 { grid-template-columns: 1fr 1fr; }.article-feature { grid-column: span 2; }.footer-grid { grid-template-columns: 1fr; }.final-cta { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 600px) {
  .container { width: min(100% - 32px, var(--max)); }.site-nav { gap: 0; }.nav-link,.nav-trigger { padding: 0 8px; font-size: 13px; }.dropdown { position: fixed; top: 116px; left: 16px; right: 16px; width: auto; }.header-cta { display: none; }.hero { padding: 76px 0 88px; }.hero-art { min-height: 330px; }.grid-2,.grid-3,.grid-4,.grid-5,.process { grid-template-columns: 1fr; }.article-feature { grid-column: auto; }.card,.manifesto,.final-cta { padding: 24px; }.step { min-height: 0; }.art-bottom { grid-template-columns: 1fr; }.art-stat:nth-child(n+2) { display: none; }.faq-question { min-height: 72px; font-size: 16px; }.faq-item.open .faq-answer > div { padding-right: 0; }
}
@media (prefers-reduced-motion: reduce) { *,*::before,*::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; } }

/* WordPress block-theme mapping. The site root stays unpadded so structural
   alignfull blocks can truly reach both viewport edges. The gutter lives on the
   section shell instead: that keeps its background full bleed but insets its
   actual content on a shared 1200px track. */
:root {
  --wp--style--global--content-size: 760px;
  --wp--style--global--wide-size: 1200px;
}
.wp-site-blocks { padding-top: 0; }
.wp-site-blocks > * { margin-block-start: 0; }

/* Full-bleed structural bands — never apply this to ordinary content blocks. */
.abt-header,
.abt-footer,
.abt-hero,
.abt-section {
  width: 100% !important;
  max-width: none !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  padding-inline: var(--abt-page-gutter);
}

/* One visual alignment line for all band content: header, hero, section headings,
   grids, cards, and footer all begin/end together without turning the band itself
   into an inset card. */
.abt-header > .abt-header__inner.alignwide,
.abt-footer > .wp-block-columns.alignwide,
.abt-hero > .wp-block-columns.alignwide,
.abt-section > .wp-block-group.alignwide,
.abt-section > .wp-block-columns.alignwide {
  width: 100% !important;
  max-width: var(--wp--style--global--wide-size) !important;
  margin-right: auto !important;
  margin-left: auto !important;
}
.abt-header { position: sticky; top: 0; z-index: 30; background: var(--page); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px) saturate(160%); }
.abt-header__inner { min-height: 64px; }
.abt-site-title, .abt-site-title a { color: var(--ink); font-size: 14px; font-weight: 600; letter-spacing: -.035em; text-decoration: none; }
.abt-site-title a::before { content: ""; display: inline-block; width: 18px; height: 16px; margin-right: 9px; vertical-align: -2px; background: currentColor; clip-path: polygon(50% 0, 100% 100%, 0 100%); }
.abt-nav { font-size: 14px; font-weight: 500; }
.abt-nav .wp-block-navigation-item__content { color: var(--ink-soft); border-radius: 9999px; padding: 8px 12px; }
.abt-nav .wp-block-navigation-item__content:hover, .abt-nav .wp-block-navigation-item__content:focus { color: var(--ink); background: var(--surface-muted); }
.abt-nav .wp-block-navigation__submenu-container { min-width: 270px !important; padding: 7px !important; background: var(--surface) !important; border: 0 !important; border-radius: 10px; box-shadow: var(--card-shadow), 0 18px 36px -26px rgba(0,0,0,.5) !important; }
.abt-nav .wp-block-navigation__submenu-container .wp-block-navigation-item__content { display: block; padding: 11px; }
.abt-theme-toggle { width: 36px; min-height: 36px; color: var(--ink); background: var(--surface); border: 0; border-radius: 6px; box-shadow: var(--ring); cursor: pointer; }
.abt-header .wp-block-button__link { min-height: 36px; display: inline-flex; align-items: center; padding: 0 8px; color: var(--surface); background: var(--ink); border-radius: 6px; font-size: 14px; font-weight: 500; }
.abt-section { padding: var(--space-section) 0; border-bottom: 1px solid var(--line-soft); }
.abt-section--surface { background: var(--surface); }
.abt-section--muted { background: var(--surface-subtle); }
.abt-section--dark { color: #fff; background: #0a0a0a; }
.abt-section--dark h1, .abt-section--dark h2, .abt-section--dark h3, .abt-section--dark p { color: #fff; }
.abt-section--dark p { color: rgba(255,255,255,.72); }
.abt-section .wp-block-columns { gap: 14px; }

/* A wide section may still contain a constrained WordPress group. Keep prose at
   the 760px reading measure, but let its card, process, and post layouts use
   the section's 1200px-wide track. Without this override Gutenberg caps these
   nested components at contentSize, turning horizontal cards into tall columns. */
.abt-section > .wp-block-group.alignwide > .wp-block-columns,
.abt-section > .wp-block-group.alignwide > .wp-block-query,
.abt-section > .wp-block-group.alignwide > .wp-block-query > .wp-block-post-template {
  width: 100% !important;
  max-width: var(--wp--style--global--wide-size) !important;
  margin-right: auto !important;
  margin-left: auto !important;
}
.abt-card { height: 100%; padding: 24px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; box-shadow: none; }
.abt-card .wp-block-heading { margin-top: 14px; }
.abt-card p:last-child { margin-bottom: 0; }
.abt-eyebrow { color: var(--muted); font: 500 12px/16px var(--mono); letter-spacing: 0; text-transform: uppercase; }
.abt-hero { position: relative; overflow: hidden; padding: var(--space-section) 0; background: var(--page); border-bottom: 1px solid var(--line); }
.abt-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .7; background-image: linear-gradient(to right, var(--line-soft) 1px, transparent 1px), linear-gradient(to bottom, var(--line-soft) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(100deg, #000 0%, transparent 73%); }
.abt-hero::after { content: ""; position: absolute; z-index: 0; inset: 0; pointer-events: none; opacity: .9; background: var(--hero-mesh); mask-image: linear-gradient(100deg, transparent 35%, #000 57%, #000 100%); }
.abt-hero > * { position: relative; z-index: 1; }
.abt-hero h1 { max-width: 11ch; font-size: clamp(2.5rem, 4vw, 3rem); font-weight: 600; letter-spacing: -0.05em; line-height: 1; }

/* Apply this intentionally to a heading or other short display moment.
   It never changes global heading typography by itself. */
.display-geist-pixel {
  font-family: "Geist Pixel", var(--sans);
  font-weight: 400;
  font-synthesis: none;
  letter-spacing: -0.035em;
}

.abt-hero h2, .abt-section h2 { font-size: clamp(2rem, 3vw, 2rem); font-weight: 600; letter-spacing: -0.04em; line-height: 1.25; }
.abt-hero h3, .abt-section h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.4; }
.abt-hero .wp-block-button__link, .final-cta .wp-block-button__link { min-height: 44px; display: inline-flex; align-items: center; padding: 0 14px; border-radius: 100px; font-weight: 500; }
.abt-hero .wp-block-button.is-style-outline .wp-block-button__link { color: var(--ink); background: var(--surface); border: 1px solid var(--line); box-shadow: none; }
.final-cta .wp-block-button.is-style-outline .wp-block-button__link { color: var(--surface); background: var(--ink); border: 1px solid var(--ink); box-shadow: none; }
.abt-process { overflow: hidden; background: var(--line); border: 1px solid var(--line); border-radius: 12px; box-shadow: none; gap: 1px !important; }
.abt-process > .wp-block-column { min-height: 210px; padding: 24px; background: var(--surface); }
.abt-process .wp-block-heading { margin-top: 24px; font-size: 18px; }
.abt-faq { border-top: 1px solid var(--line); }
.abt-faq details { border-bottom: 1px solid var(--line); }
.abt-faq summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 80px; cursor: pointer; color: var(--ink); font-size: 17px; font-weight: 500; letter-spacing: -.025em; }
.abt-faq summary::after { content: "+"; display: grid; place-items: center; width: 27px; height: 27px; flex: 0 0 auto; border-radius: 50%; box-shadow: var(--ring); font-weight: 400; }
.abt-faq details[open] summary::after { content: "−"; }
.abt-faq details > p { max-width: 68ch; padding-bottom: 28px; font-size: 16px; line-height: 1.68; }
.abt-post-list .wp-block-post { padding: 24px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; box-shadow: none; }
.abt-post-list .wp-block-post-title { font-size: 21px; letter-spacing: -.045em; }
.abt-footer { padding: 52px 0; color: var(--ink-soft); background: var(--page); border-top: 1px solid var(--line); }
.abt-footer p, .abt-footer .wp-block-navigation-item__content { color: var(--ink-soft); }
.abt-footer .wp-block-navigation-item__content:hover { color: var(--ink); }
.abt-footer .wp-block-site-title a { color: var(--ink); }
.abt-footer .wp-block-site-title a::before { content: ""; display: inline-block; width: 18px; height: 16px; margin-right: 9px; vertical-align: -2px; background: currentColor; clip-path: polygon(50% 0, 100% 100%, 0 100%); }
@media (max-width: 782px) { .abt-header__inner { min-height: 64px; } .abt-nav .wp-block-navigation__responsive-container-open { color: var(--ink); } .abt-section { padding: 72px 0; } .abt-process > .wp-block-column { min-height: 0; } }

/* v0.2 Vercel-system refinement: colour lives only in the hero mesh; all
   infrastructure surfaces stay precise, white, and hairline-defined. */
.abt-hero .hero-art {
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: none;
}
.abt-hero .hero-art::before {
  background-image: linear-gradient(var(--line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
}
.abt-hero .art-topline { color: var(--muted); }
.abt-hero .art-core {
  background: radial-gradient(circle at 36% 32%, #ffffff 0 5%, #d1d1d1 22%, #4d4d4d 48%, #171717 72%);
  box-shadow: 0 0 0 1px var(--ink), 0 0 0 28px rgba(23,23,23,.04), 0 0 0 70px rgba(23,23,23,.018);
}
.abt-hero .art-node { background: var(--ink); box-shadow: 0 0 0 5px rgba(23,23,23,.06); }
.abt-hero .art-node::after { background: linear-gradient(90deg, rgba(23,23,23,.48), transparent); }
.abt-hero .art-stat { color: var(--ink); border-color: var(--line); background: var(--surface); }
.abt-hero .art-stat span { color: var(--muted); }
.abt-section a:not(.wp-block-button__link), .abt-footer a:not(.wp-block-button__link) { color: var(--blue); }
.abt-section a:not(.wp-block-button__link):hover, .abt-footer a:not(.wp-block-button__link):hover { color: #0761d1; }
@media (max-width: 600px) {
  .abt-hero .wp-block-buttons, .abt-hero .wp-block-button, .abt-hero .wp-block-button__link { width: 100%; }
  .abt-hero .wp-block-button__link { justify-content: center; }
}
