@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700&family=IBM+Plex+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --black: #060606;
  --night: #0d0f12;
  --charcoal: #15191f;
  --panel: rgba(14, 16, 20, 0.88);
  --panel-light: rgba(255, 255, 255, 0.9);
  --paper: #eef1f6;
  --paper-2: #f7f8fb;
  --text: #14181d;
  --ink: #14181d;
  --muted: #536170;
  --line: rgba(29, 35, 44, 0.12);
  --line-light: rgba(255, 255, 255, 0.18);
  --yellow: #ecd200;
  --yellow-2: #fff29f;
  --cyan: #55d6ff;
  --white: #ffffff;
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.22);
  --shadow-deep: 0 36px 120px rgba(0, 0, 0, 0.42);
  --shadow-lift: 0 22px 52px rgba(21, 25, 31, 0.11);
  --radius: 22px;
  --max: min(1240px, calc(100% - 2rem));
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-snap: cubic-bezier(0.34, 1.12, 0.64, 1);
  --dur-fast: 160ms;
  --dur-mid: 240ms;
  color-scheme: light;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(85, 214, 255, 0.06), transparent 28rem),
    linear-gradient(90deg, rgba(14, 16, 20, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
  background-size: auto, 72px 72px, auto;
  color: var(--text);
  font: 17px/1.68 "IBM Plex Sans", "Aptos", "Segoe UI", sans-serif;
}

::selection { background: rgba(236, 210, 0, 0.28); color: var(--text); }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
main { overflow: hidden; }
.wrap { width: var(--max); margin: 0 auto; }
body.nav-open-body { overflow: hidden; }
.skip-link {
  position: absolute; left: 1rem; top: -5rem; z-index: 50;
  padding: 0.8rem 1rem; background: var(--yellow); color: var(--black); font-weight: 800;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky; top: 0; z-index: 30;
  border-bottom: 1px solid rgba(236, 210, 0, 0.14);
  background: rgba(6, 6, 6, 0.78); backdrop-filter: blur(22px);
  transition: box-shadow var(--dur-mid) var(--ease-out), background var(--dur-mid) var(--ease-out), border-color var(--dur-mid) var(--ease-out);
}
.site-header.is-scrolled {
  background: rgba(6, 6, 6, 0.92);
  border-bottom-color: rgba(236, 210, 0, 0.22);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}
.nav {
  width: var(--max); min-height: 88px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1.4rem;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; color: var(--white); transition: opacity var(--dur-fast) var(--ease-out); }
.brand:hover { opacity: 0.92; }
.brand img { height: clamp(48px, 6vw, 64px); width: auto; filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.38)); }
.nav-toggle {
  display: none; align-items: center; gap: 0.7rem;
  min-height: 46px; padding: 0.72rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 999px;
  background: rgba(255, 255, 255, 0.04); color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}
.nav-toggle-label {
  font-size: 0.72rem; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase;
}
.nav-toggle-bars {
  position: relative; display: block; width: 1.05rem; height: 2px;
  border-radius: 999px; background: currentColor;
  transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: ""; position: absolute; left: 0; width: 1.05rem; height: 2px;
  border-radius: 999px; background: currentColor; transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}
.nav-toggle-bars::before { top: -5px; }
.nav-toggle-bars::after { top: 5px; }
.nav-links {
  display: flex; align-items: center; gap: clamp(0.8rem, 1.5vw, 1.2rem); margin-left: auto;
  font-size: 0.86rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
}
.nav-links a { position: relative; text-decoration: none; transition: color var(--dur-fast) var(--ease-out); }
.nav-links a:not(.button)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -0.55rem; height: 2px;
  background: linear-gradient(90deg, var(--yellow), var(--cyan));
  transform: scaleX(0); transform-origin: left; transition: transform var(--dur-mid) var(--ease-out);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.button,
button {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  min-height: 48px; padding: 0.82rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.26); border-radius: 999px;
  background: rgba(255, 255, 255, 0.02); color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  font: inherit; font-size: 0.84rem; font-weight: 900; letter-spacing: 0.08em;
  text-decoration: none; text-transform: uppercase; cursor: pointer;
  transition: transform var(--dur-mid) var(--ease-snap), box-shadow var(--dur-mid) var(--ease-out), border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.button:hover,
button:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22); }
.button:active,
button:active { transform: translateY(0); transition-duration: 80ms; }
.button:focus-visible,
button:focus-visible,
.nav-toggle:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(85, 214, 255, 0.45);
  outline-offset: 4px;
}
.button:focus-visible,
button:focus-visible,
.nav-toggle:focus-visible {
  box-shadow: 0 0 0 4px rgba(85, 214, 255, 0.16), 0 18px 40px rgba(0, 0, 0, 0.22);
}
.nav-links a:focus-visible::after { transform: scaleX(1); }
.button.accent {
  border-color: rgba(236, 210, 0, 0.6);
  background: linear-gradient(135deg, var(--yellow), #fff087 120%);
  color: var(--black); box-shadow: 0 16px 38px rgba(236, 210, 0, 0.22);
}
.button.accent:hover { box-shadow: 0 20px 44px rgba(236, 210, 0, 0.28); }
.button.secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
}
.section:not(.glow-band) .button.secondary,
.quote-strip:not(.dark) .button.secondary {
  color: var(--text); border-color: rgba(29, 35, 44, 0.18); background: rgba(255, 255, 255, 0.82);
}
.section:not(.glow-band) .button.secondary:hover,
.quote-strip:not(.dark) .button.secondary:hover { background: var(--white); }
.button.ghost {
  border-color: rgba(85, 214, 255, 0.38); background: rgba(85, 214, 255, 0.1); color: var(--white);
}

.section { padding: clamp(4rem, 7vw, 7rem) 0; position: relative; }
.section.compact { padding: clamp(3rem, 5vw, 4.8rem) 0; }
.section.flush-top { padding-top: 0; }
.section.surface-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, transparent 100%);
}
.section.surface-alt::before {
  content: ""; position: absolute; inset: 0 auto 0 50%; width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent, rgba(29, 35, 44, 0.06) 20%, rgba(29, 35, 44, 0.06) 80%, transparent);
  pointer-events: none;
}
.section-head--centered { text-align: center; align-items: center; }
.section-head--centered > div { display: grid; justify-items: center; }
.section-head--centered h2 { max-width: 18ch; }
.section-head--centered p { text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem; margin: 0 0 1rem;
  color: var(--yellow); font-size: 0.76rem; font-weight: 900; letter-spacing: 0.18em; text-transform: uppercase;
}
.section:not(.glow-band) .eyebrow,
.quote-strip:not(.dark) .eyebrow,
.card:not(.dark) .eyebrow,
.service-panel:not(.dark) .eyebrow,
.contact-aside:not(.dark) .eyebrow {
  color: #6b5a00;
}
.eyebrow::before {
  content: ""; width: 0.8rem; height: 0.8rem; border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow), var(--cyan)); box-shadow: 0 0 18px rgba(85, 214, 255, 0.45);
}
.section:not(.glow-band) .eyebrow::before,
.quote-strip:not(.dark) .eyebrow::before,
.card:not(.dark) .eyebrow::before,
.service-panel:not(.dark) .eyebrow::before,
.contact-aside:not(.dark) .eyebrow::before {
  background: linear-gradient(135deg, #caa500, #2ea9d1);
  box-shadow: none;
}

h1, h2, h3, h4 {
  margin: 0; font-family: "Barlow Condensed", "IBM Plex Sans", sans-serif;
  font-weight: 700; letter-spacing: -0.02em; text-transform: uppercase;
}
h1 { font-size: clamp(2.9rem, 6vw, 5.4rem); max-width: 12ch; line-height: 1.02; }
h2 { font-size: clamp(2.45rem, 5vw, 4.65rem); max-width: 14ch; line-height: 1.04; }
h3 { font-size: clamp(1.36rem, 2.5vw, 1.95rem); line-height: 1.08; }
p { margin: 0; }
.lead {
  max-width: 60ch; margin-top: 1.25rem; color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.45vw, 1.18rem); line-height: 1.64;
}
.page-intro,
.section-note,
.card p,
.content p,
.content li,
.section-head p,
.post-card p,
.service-panel p,
.contact-aside p { color: var(--muted); }

.hero {
  position: relative; isolation: isolate; min-height: calc(100vh - 88px);
  display: grid; align-items: center; padding: clamp(4rem, 7vw, 7rem) 0;
  background:
    linear-gradient(90deg, rgba(236, 210, 0, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    radial-gradient(ellipse 28rem 20rem at 14% 18%, rgba(85, 214, 255, 0.1), transparent),
    radial-gradient(ellipse 24rem 18rem at 88% 22%, rgba(236, 210, 0, 0.12), transparent),
    linear-gradient(128deg, #050505 0%, #0a0b0d 44%, #11151c 100%);
  background-size: 96px 96px, 96px 96px, auto, auto, auto; color: var(--white);
}
.hero::before {
  content: ""; position: absolute; inset: auto 0 0 0; height: 3px;
  background: linear-gradient(90deg, var(--yellow) 0%, var(--cyan) 55%, transparent 100%);
}
.hero::after {
  content: ""; position: absolute; right: min(6vw, 4.5rem); bottom: clamp(2rem, 8vw, 5.5rem);
  width: clamp(180px, 18vw, 280px); aspect-ratio: 1; border-radius: 24px;
  border: 1px solid rgba(85, 214, 255, 0.14); transform: rotate(8deg);
  box-shadow: 0 0 80px rgba(85, 214, 255, 0.05);
  pointer-events: none; opacity: 0.7;
}
.hero-grid,
.split,
.contact-layout,
.detail-grid,
.cta-split {
  display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr); gap: clamp(1.5rem, 5vw, 4.5rem); align-items: center;
}
.hero.copy-only { min-height: auto; padding: clamp(3rem, 5vw, 4.8rem) 0; }
.hero.copy-only::after { display: none; }
.hero.copy-only h1 { max-width: 13ch; }
.hero.copy-only .lead { max-width: 54ch; }
.hero.copy-only .actions { margin-top: 1.45rem; }
.hero-media {
  position: relative; min-height: 440px; border-radius: 26px; padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.05) 0%, transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  box-shadow: var(--shadow-deep), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: transform var(--dur-mid) var(--ease-out), box-shadow var(--dur-mid) var(--ease-out);
}
.hero-media::before {
  content: ""; position: absolute; inset: 0.85rem; border: 1px solid rgba(236, 210, 0, 0.16); border-radius: 20px;
  pointer-events: none; z-index: 1;
}
.hero-media::after {
  content: ""; position: absolute; right: 1.1rem; top: 1.1rem; width: 72px; height: 72px;
  border-top: 3px solid var(--yellow); border-right: 3px solid var(--cyan); border-radius: 0 20px 0 0;
  pointer-events: none; z-index: 2; opacity: 0.85;
}
.hero-media img,
.cover-image img,
.service-visual img,
.contact-visual img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 18px;
  transition: transform 0.5s var(--ease-out), filter var(--dur-mid) var(--ease-out);
}
.hero-media:hover img,
.service-visual:hover img,
.contact-visual:hover img { transform: scale(1.015); }
.hero-media img,
.cover-image img { min-height: 100%; }
.media-tag,
.surface-tag {
  position: absolute; left: 1.4rem; bottom: 1.4rem; max-width: min(380px, calc(100% - 2.8rem));
  padding: 0.9rem 1rem 0.95rem 1.05rem; border: 1px solid rgba(85, 214, 255, 0.22);
  border-radius: 16px; background: rgba(6, 6, 6, 0.78); backdrop-filter: blur(16px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.32);
  z-index: 3;
  transition: border-color var(--dur-fast) var(--ease-out), transform var(--dur-mid) var(--ease-out);
}
.media-tag strong,
.surface-tag strong { display: block; color: var(--white); font-size: 1.02rem; font-weight: 800; }
.media-tag span,
.surface-tag span { display: block; margin-top: 0.3rem; color: rgba(255, 255, 255, 0.82); font-size: 0.9rem; line-height: 1.5; }
.actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.8rem; }
.proof-grid,
.summary-grid,
.pillar-grid,
.post-grid,
.grid,
.link-grid { display: grid; gap: 1rem; }
.proof-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 2.1rem; }
.summary-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.pillar-grid,
.grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.post-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.link-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.section-head {
  display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 2rem;
  padding-bottom: 1.4rem; border-bottom: 1px solid var(--line);
}
.section-head p { max-width: 58ch; }
.glow-band .section-head { border-bottom-color: rgba(255, 255, 255, 0.1); }

.card,
.post-card,
.service-panel,
.contact-aside,
.quote-strip,
.metric-card,
.list-card {
  position: relative; border-radius: var(--radius); border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  padding: clamp(1.2rem, 2vw, 1.6rem); box-shadow: 0 14px 38px rgba(21, 25, 31, 0.07);
  transition: transform var(--dur-mid) var(--ease-snap), box-shadow var(--dur-mid) var(--ease-out), border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.card.dark,
.quote-strip.dark,
.list-card.dark,
.service-panel.dark,
.contact-aside.dark {
  border-color: var(--line-light);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 42%), rgba(12, 14, 18, 0.96);
  color: var(--white); box-shadow: var(--shadow);
}
.card::before,
.post-card::before,
.service-panel::before,
.quote-strip::before,
.list-card::before,
.contact-aside::before,
.metric-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px; border-radius: 22px 22px 0 0;
  background: linear-gradient(90deg, var(--yellow), var(--cyan));
  opacity: 0.92;
}
.card h3,
.post-card h3,
.service-panel h3,
.contact-aside h3,
.quote-strip h3,
.list-card h3 { margin-bottom: 0.55rem; }
.card p + p,
.content p + p,
.content ul + p,
.content p + ul,
.content h2 + p,
.content h3 + p { margin-top: 1rem; }
.card ul,
.content ul,
.contact-aside ul,
.service-panel ul,
.quote-strip ul,
.list-card ul { margin: 1rem 0 0; padding-left: 1.15rem; }
.card li,
.content li,
.contact-aside li,
.service-panel li,
.quote-strip li,
.list-card li { margin: 0.42rem 0; }
.card li::marker,
.content li::marker,
.contact-aside li::marker,
.service-panel li::marker,
.quote-strip li::marker,
.list-card li::marker { color: var(--yellow); }
.card.dark p,
.card.dark li,
.service-panel.dark p,
.service-panel.dark li,
.contact-aside.dark p,
.contact-aside.dark li,
.quote-strip.dark p,
.quote-strip.dark li,
.list-card.dark p,
.list-card.dark li { color: rgba(255, 255, 255, 0.86); }
.tag {
  display: inline-flex; align-items: center; min-height: 28px; padding: 0.32rem 0.62rem;
  border-radius: 999px; background: rgba(236, 210, 0, 0.14); color: #5b5100;
  font-size: 0.72rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase;
  transition: background var(--dur-fast) var(--ease-out);
}
.dark .tag { background: rgba(236, 210, 0, 0.12); color: var(--yellow-2); }
.card-link,
.inline-link,
.post-card a,
.card a,
.service-panel a,
.link-list a {
  color: #4e4600; font-weight: 900; text-decoration-thickness: 2px; text-underline-offset: 0.22em;
  transition: color var(--dur-fast) var(--ease-out), text-decoration-color var(--dur-fast) var(--ease-out);
}
.card-link:hover,
.inline-link:hover,
.link-list a:hover { text-decoration-color: currentColor; }
.dark .card-link,
.dark a.inline-link,
.dark .post-card a,
.dark .card a,
.dark .service-panel a,
.quote-strip.dark a,
.contact-aside.dark a { color: var(--yellow-2); }

.glow-band {
  position: relative; border-block: 1px solid rgba(236, 210, 0, 0.14);
  background:
    radial-gradient(ellipse 22rem 16rem at 18% 8%, rgba(85, 214, 255, 0.1), transparent),
    linear-gradient(90deg, rgba(236, 210, 0, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #0c0f14 0%, #11161d 100%);
  background-size: auto, 96px 96px, auto; color: var(--white);
}
.glow-band::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 5px;
  background: linear-gradient(180deg, var(--yellow), var(--cyan));
}
.glow-band .lead,
.glow-band p,
.glow-band li,
.glow-band .section-head p { color: rgba(255, 255, 255, 0.86); }
.service-visual,
.contact-visual,
.cover-image {
  position: relative; overflow: hidden; border-radius: 22px; min-height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-mid) var(--ease-out);
}
.cover-image { min-height: 420px; margin-top: 2rem; }
.cover-image::before,
.service-visual::before,
.contact-visual::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.cover-image::after,
.service-visual::after,
.contact-visual::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 38%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.48));
  z-index: 1; pointer-events: none;
}
.metric-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  backdrop-filter: blur(8px);
}
.metric-card::before { opacity: 0.65; height: 3px; }
.metric-card strong {
  display: block; color: var(--white); font-family: "Barlow Condensed", sans-serif;
  font-size: 1.85rem; line-height: 1;
}
.metric-card span {
  display: block; margin-top: 0.4rem; color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem; font-weight: 600; line-height: 1.5;
}
.hero .metric-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(85, 214, 255, 0.22);
  transform: translateY(-2px);
}
.content-shell { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr); gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.content { max-width: 780px; }
.content h2,
.content h3 { margin-top: 2.2rem; margin-bottom: 0.8rem; }
.content blockquote {
  margin: 1.5rem 0; padding: 1rem 1.15rem; border-left: 5px solid var(--yellow);
  background: rgba(236, 210, 0, 0.08); color: #313842;
}
.callout {
  padding: 1.2rem 1.3rem; border-radius: 20px; border: 1px solid rgba(85, 214, 255, 0.2);
  background: linear-gradient(145deg, rgba(85, 214, 255, 0.08), rgba(236, 210, 0, 0.08));
}
.contact-layout { align-items: stretch; }
.contact-panel {
  border-radius: 26px; border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(ellipse 18rem 14rem at top right, rgba(85, 214, 255, 0.1), transparent),
    linear-gradient(90deg, rgba(236, 210, 0, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(10, 12, 16, 0.97), rgba(12, 14, 18, 0.95));
  background-size: auto, 58px 58px, auto; color: var(--white);
  padding: clamp(1.4rem, 4vw, 2.2rem);
  box-shadow: var(--shadow-deep), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: box-shadow var(--dur-mid) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.contact-panel:focus-within {
  border-color: rgba(85, 214, 255, 0.28);
  box-shadow: var(--shadow-deep), 0 0 0 1px rgba(85, 214, 255, 0.12);
}
.contact-panel h3 { margin-bottom: 1rem; }
.contact-panel p,
.contact-panel li,
.contact-panel .note { color: rgba(255, 255, 255, 0.84); }
.contact-form { display: grid; gap: 1rem; margin-top: 1.4rem; }
label {
  display: grid; gap: 0.38rem; color: rgba(255, 255, 255, 0.92);
  font-size: 0.8rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase;
}
input,
textarea {
  width: 100%; min-height: 50px; padding: 0.82rem 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 14px;
  background: rgba(255, 255, 255, 0.04); color: var(--white); font: inherit;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
textarea { min-height: 160px; resize: vertical; }
input:hover,
textarea:hover { border-color: rgba(255, 255, 255, 0.28); background: rgba(255, 255, 255, 0.06); }
input:focus,
textarea:focus { outline: 3px solid rgba(85, 214, 255, 0.26); border-color: var(--yellow); background: rgba(255, 255, 255, 0.07); }
.bot-field { position: absolute; left: -100vw; width: 1px; height: 1px; overflow: hidden; }
.note { font-size: 0.92rem; }
.crumbs { margin-bottom: 1rem; color: rgba(255, 255, 255, 0.74); font-size: 0.88rem; font-weight: 800; }
.crumbs a { color: #fff6b5; text-decoration: none; transition: color var(--dur-fast) var(--ease-out); }
.crumbs a:hover { color: var(--white); }
.post-card { text-decoration: none; overflow: hidden; }
.post-card img {
  width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 16px; margin-bottom: 1rem;
  transition: transform 0.45s var(--ease-out), filter var(--dur-mid) var(--ease-out);
}
.post-card .meta,
.date-line {
  display: flex; align-items: center; gap: 0.55rem; flex-wrap: wrap;
}
.post-card .meta { margin-bottom: 0.8rem; }
.meta span,
.meta time,
.date-line time,
.date-line span {
  display: inline-flex; align-items: center; min-height: 28px; padding: 0.24rem 0.6rem; border-radius: 999px;
  background: rgba(85, 214, 255, 0.1); color: #0d6078; font-size: 0.72rem; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase;
}
.date-line { margin-top: 1rem; color: rgba(255, 255, 255, 0.82); font-size: 0.9rem; }
.date-line time,
.date-line span { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.92); }
.byline {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.quote-strip { overflow: hidden; }
.quote-strip::after {
  content: ""; position: absolute; inset: auto -10% -40% auto; width: 220px; aspect-ratio: 1;
  border-radius: 999px; background: radial-gradient(circle, rgba(85, 214, 255, 0.22), transparent 62%);
  pointer-events: none;
}
.link-list { display: grid; gap: 0.55rem; margin-top: 1rem; }
.link-list a {
  display: block; padding: 0.55rem 0.7rem; margin: 0 -0.7rem;
  border-radius: 12px; text-decoration: none;
  transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.link-list a:hover { background: rgba(236, 210, 0, 0.08); transform: translateX(3px); }
.dark .link-list a:hover { background: rgba(255, 255, 255, 0.06); }
.site-footer {
  padding: 3.2rem 0; border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--yellow), var(--cyan)) 1;
  background: linear-gradient(180deg, #050505 0%, #0a0c10 100%); color: var(--white);
}
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr; gap: 2rem; }
.footer-brand img { height: clamp(56px, 6.5vw, 74px); width: auto; }
.footer-grid strong {
  display: block; margin-bottom: 0.8rem; color: var(--yellow-2);
  font: 700 1.32rem/1 "Barlow Condensed", sans-serif; text-transform: uppercase;
}
.footer-grid a {
  display: block; margin: 0.35rem 0; color: rgba(255, 255, 255, 0.82); text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.footer-grid a:hover { color: var(--white); transform: translateX(2px); }
.footer-grid p { color: rgba(255, 255, 255, 0.82); line-height: 1.6; }

.page-home .hero { padding: clamp(3.2rem, 6vw, 5.2rem) 0; }
.page-home .hero-grid {
  gap: clamp(1.4rem, 4vw, 4rem);
  align-items: start;
}
.page-home .hero h1 {
  font-size: clamp(2.65rem, 5vw, 4.85rem);
  max-width: 13.5ch;
  line-height: 0.98;
}
.page-home .hero .lead { max-width: 56ch; }
.page-home .hero-media {
  height: clamp(460px, 42vw, 580px);
  min-height: clamp(460px, 42vw, 580px);
}
.page-home .proof-grid { margin-top: 1.8rem; }
.page-home .section:nth-of-type(2) { padding-top: clamp(2.5rem, 4vw, 3.5rem); }

.page-services .hero.copy-only h1,
.page-service-detail .hero.copy-only h1,
.page-blog-index .hero.copy-only h1,
.page-contact .hero.copy-only h1,
.page-about .hero.copy-only h1 {
  font-size: clamp(2.55rem, 5vw, 4.9rem);
  max-width: 10.5ch;
}
.page-services .hero.copy-only .hero-media,
.page-service-detail .hero.copy-only .hero-media,
.page-about .hero.copy-only .hero-media {
  min-height: clamp(320px, 34vw, 420px);
}
.hero.copy-only .cover-image {
  min-height: clamp(260px, 30vw, 360px);
  margin-top: 1.4rem;
}
.page-contact .hero.copy-only { padding-bottom: clamp(2.8rem, 5vw, 4rem); }
.page-contact .hero.copy-only h1 {
  font-size: clamp(2.4rem, 4.4vw, 4.2rem);
  max-width: 12.5ch;
}
.page-contact .hero.copy-only .lead { max-width: 54ch; }
.page-about .hero.copy-only h1 {
  font-size: clamp(2.35rem, 4.3vw, 4.1rem);
  max-width: 12.5ch;
}
.page-about .hero.copy-only .lead { max-width: 58ch; }
.page-proof .hero.copy-only h1 {
  font-size: clamp(2.3rem, 4.15vw, 3.95rem);
  max-width: 12ch;
}
.page-proof .hero.copy-only .lead { max-width: 58ch; }
.page-proof .hero.copy-only .hero-media {
  min-height: clamp(320px, 34vw, 420px);
}
.page-contact .contact-layout {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.96fr);
  align-items: start;
}
.page-contact .contact-visual.cover-image {
  min-height: clamp(220px, 24vw, 280px);
  max-height: 280px;
}
.page-contact .contact-panel { padding: clamp(1.4rem, 3vw, 2rem); }
.page-contact .hero.copy-only > .wrap > div:first-child > p:not(.crumbs):not(.eyebrow):not(.lead) {
  max-width: 58ch; margin-top: 1.05rem; color: rgba(255, 255, 255, 0.8);
}
.page-article .hero.copy-only,
.page-privacy .hero.copy-only {
  padding: clamp(2.6rem, 4.6vw, 3.8rem) 0 2.5rem;
}
.page-article .hero h1,
.page-privacy .hero h1 {
  font-size: clamp(2.4rem, 4.35vw, 4.15rem);
  max-width: 11ch; letter-spacing: -0.04em; line-height: 1; text-transform: none;
}
.page-article .hero .lead,
.page-privacy .hero .lead {
  font-size: clamp(1.02rem, 1.28vw, 1.12rem); max-width: 62ch;
}
.page-article .content-shell,
.page-privacy .content-shell { gap: clamp(1.6rem, 3vw, 2.6rem); }
.page-article .content,
.page-privacy .content { max-width: 760px; }
.page-article .content h2,
.page-article .content h3,
.page-privacy .content h2,
.page-privacy .content h3 {
  font-family: "IBM Plex Sans", "Aptos", "Segoe UI", sans-serif;
  font-weight: 700; letter-spacing: -0.03em; text-transform: none; max-width: 19ch;
}
.page-article .content h2,
.page-privacy .content h2 {
  font-size: clamp(1.95rem, 3.1vw, 2.85rem); line-height: 1.12; margin-top: 2.5rem;
}
.page-article .content h3,
.page-privacy .content h3 {
  font-size: clamp(1.25rem, 2vw, 1.7rem); line-height: 1.2;
}
.page-article .content p,
.page-article .content li,
.page-privacy .content p,
.page-privacy .content li {
  font-size: 1.03rem; line-height: 1.82; color: #364250;
}
.page-article .content blockquote,
.page-privacy .content blockquote {
  border-left: 0; border-radius: 22px; padding: 1.2rem 1.3rem;
  background: linear-gradient(145deg, rgba(236, 210, 0, 0.12), rgba(85, 214, 255, 0.08));
  box-shadow: 0 18px 42px rgba(21, 25, 31, 0.08); color: #24303c;
}
.page-article .contact-aside { position: sticky; top: 7rem; }
.page-privacy .content-shell { grid-template-columns: minmax(0, 1fr); max-width: 880px; }
.page-privacy .content h2 { max-width: 16ch; }

.service-panel { padding-top: clamp(1.4rem, 2.2vw, 1.75rem); }
.service-panel .tag { margin-bottom: 0.65rem; }
.service-panel.dark {
  background:
    linear-gradient(155deg, rgba(85, 214, 255, 0.06) 0%, transparent 50%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 42%),
    rgba(12, 14, 18, 0.96);
}

.card:focus-within,
.post-card:focus-visible,
.service-panel:focus-within,
.contact-aside:focus-within,
.quote-strip:focus-within,
.metric-card:focus-within,
.list-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(85, 214, 255, 0.22);
  box-shadow: var(--shadow-lift);
}

@media (hover: hover) and (pointer: fine) {
  .card:hover,
  .post-card:hover,
  .service-panel:hover,
  .contact-aside:hover,
  .quote-strip:hover,
  .metric-card:hover,
  .list-card:hover {
    transform: translateY(-3px);
    border-color: rgba(85, 214, 255, 0.22);
    box-shadow: var(--shadow-lift);
  }
  .service-panel:hover .tag { background: rgba(236, 210, 0, 0.2); }
  .dark.service-panel:hover .tag { background: rgba(236, 210, 0, 0.16); }
  .post-card:hover img { transform: scale(1.025); filter: brightness(1.03); }
  .post-card:hover h3 { color: #2a2500; }
  .hero-media:hover { transform: translateY(-2px); box-shadow: var(--shadow-deep), 0 28px 60px rgba(0, 0, 0, 0.18); }
  .service-visual:hover,
  .contact-visual:hover { border-color: rgba(85, 214, 255, 0.28); box-shadow: var(--shadow-deep); }
}

/* ── Trust strip & assurance framing ── */
.trust-strip {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.55rem 1.4rem;
  margin: 0 0 1.35rem; padding: 0.72rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.trust-strip span {
  display: inline-flex; align-items: center; gap: 0.45rem;
}
.trust-strip span::before {
  content: ""; width: 5px; height: 5px; border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow), var(--cyan));
  box-shadow: 0 0 8px rgba(85, 214, 255, 0.35);
}
.section:not(.glow-band) .trust-strip,
.quote-strip:not(.dark) .trust-strip {
  border-color: rgba(29, 35, 44, 0.1);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
}
.section:not(.glow-band) .trust-strip span::before,
.quote-strip:not(.dark) .trust-strip span::before {
  background: linear-gradient(135deg, #caa500, #2ea9d1);
  box-shadow: none;
}

/* ── Process / diagram surfaces ── */
.process-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem;
  counter-reset: process;
}
.process-grid,
.page-home .proof-grid { position: relative; }
.process-grid::before,
.page-home .proof-grid::before {
  content: ""; position: absolute; left: 8%; right: 8%; top: 2.15rem; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(236, 210, 0, 0.28) 18%, rgba(85, 214, 255, 0.32) 82%, transparent);
  pointer-events: none;
}
.process-grid .card {
  counter-increment: process;
  padding-top: clamp(1.5rem, 2.4vw, 1.85rem);
}
.process-grid .card::after {
  content: counter(process, decimal-leading-zero);
  position: absolute; top: 1.15rem; right: 1.15rem;
  font-family: "Barlow Condensed", sans-serif; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.06em; color: rgba(29, 35, 44, 0.28);
}
.process-grid .card h3::before {
  content: ""; display: block; width: 1.6rem; height: 3px; margin-bottom: 0.65rem;
  border-radius: 999px; background: linear-gradient(90deg, var(--yellow), var(--cyan));
}
.process-grid .card h3,
.page-home .metric-card strong { position: relative; }
.process-grid .card h3::after,
.page-home .metric-card strong::after {
  content: ""; position: absolute; top: -1.25rem; right: 0;
  width: 0.62rem; height: 0.62rem; border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow), var(--cyan));
  box-shadow: 0 0 0 5px rgba(85, 214, 255, 0.08);
}

.assurance-panel {
  position: relative; overflow: hidden;
  border-radius: var(--radius); border: 1px solid var(--line-light);
  background:
    linear-gradient(155deg, rgba(85, 214, 255, 0.05) 0%, transparent 48%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 42%),
    rgba(12, 14, 18, 0.96);
  padding: clamp(1.2rem, 2.2vw, 1.6rem);
  box-shadow: var(--shadow);
}
.assurance-panel::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(236, 210, 0, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px; opacity: 0.55;
}
.assurance-panel > * { position: relative; z-index: 1; }
.assurance-panel h3 { margin-bottom: 0.75rem; color: var(--white); }
.assurance-panel li { color: rgba(255, 255, 255, 0.86); }
.assurance-panel li::marker { color: var(--cyan); }

.section.frame-band {
  position: relative;
  border-block: 1px solid rgba(29, 35, 44, 0.08);
  background:
    linear-gradient(90deg, rgba(29, 35, 44, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.28) 100%);
  background-size: 64px 64px, auto;
}
.section.frame-band::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 3px;
  background: linear-gradient(90deg, transparent, rgba(236, 210, 0, 0.35) 20%, rgba(85, 214, 255, 0.35) 80%, transparent);
  pointer-events: none;
}
.section-head--framed {
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid var(--line); border-radius: 18px;
  background: rgba(255, 255, 255, 0.65);
  margin-bottom: 2.2rem;
}
.section-head--framed::after {
  content: ""; display: block; width: 3.5rem; height: 3px; margin-top: 1rem;
  border-radius: 999px; background: linear-gradient(90deg, var(--yellow), var(--cyan));
}

.quote-strip.cta-panel {
  padding: clamp(1.4rem, 2.5vw, 1.85rem);
  background:
    radial-gradient(ellipse 16rem 12rem at 92% 8%, rgba(85, 214, 255, 0.1), transparent),
    rgba(255, 255, 255, 0.94);
}
.quote-strip.cta-panel::before { opacity: 0.85; height: 4px; }
.glow-band .quote-strip.dark {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(ellipse 14rem 10rem at 100% 0%, rgba(85, 214, 255, 0.08), transparent),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 45%),
    rgba(10, 12, 16, 0.92);
}

.contact-assurance {
  display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 1.15rem 0 0;
}
.contact-assurance span {
  display: inline-flex; align-items: center; gap: 0.4rem;
  min-height: 32px; padding: 0.35rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
.contact-assurance span::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px;
  background: var(--cyan); opacity: 0.85;
}

.buyer-router {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem;
  margin-top: 1.6rem;
}
.buyer-router .router-card {
  display: flex; flex-direction: column; gap: 0.55rem;
  padding: clamp(1.1rem, 2vw, 1.35rem); border-radius: var(--radius);
  border: 1px solid var(--line); background: rgba(255, 255, 255, 0.92);
  text-decoration: none; color: inherit;
  box-shadow: 0 10px 28px rgba(21, 25, 31, 0.05);
  transition: transform var(--dur-mid) var(--ease-snap), box-shadow var(--dur-mid) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.buyer-router .router-card:hover {
  transform: translateY(-3px); border-color: rgba(85, 214, 255, 0.35);
  box-shadow: 0 16px 36px rgba(21, 25, 31, 0.09);
}
.buyer-router .router-card strong { display: block; font-size: 1.02rem; font-weight: 800; color: var(--ink); }
.buyer-router .router-card span { color: var(--muted); font-size: 0.9rem; line-height: 1.5; }
.buyer-router .router-card em { margin-top: auto; font-style: normal; font-size: 0.88rem; font-weight: 700; color: #0d6078; }

.contact-aside .aside-prompt {
  margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line);
  color: var(--muted); font-size: 0.88rem; line-height: 1.55;
}
.contact-aside.dark .aside-prompt {
  border-top-color: rgba(255, 255, 255, 0.12); color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1080px) {
  .content-shell,
  .summary-grid,
  .post-grid,
  .link-grid,
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before,
  .page-home .proof-grid::before { display: none; }
  .section.surface-alt::before { display: none; }
  .buyer-router { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
  body.nav-open-body { overflow: hidden; }
  .site-header.nav-open { box-shadow: 0 20px 56px rgba(0, 0, 0, 0.38); }
  .site-header.nav-open .nav-toggle-bars { background: transparent; }
  .site-header.nav-open .nav-toggle-bars::before { transform: translateY(5px) rotate(45deg); }
  .site-header.nav-open .nav-toggle-bars::after { transform: translateY(-5px) rotate(-45deg); }
  .nav {
    min-height: auto; padding: 0.9rem 0;
    align-items: center; gap: 0.9rem; flex-wrap: wrap;
  }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .nav-links {
    width: 100%; display: none; grid-template-columns: 1fr; gap: 0.2rem;
    margin-left: 0; padding: 0.55rem 0 0.1rem; font-size: 0.78rem;
  }
  .site-header.nav-open .nav-links { display: grid; }
  .nav-links a:not(.button) {
    padding: 0.84rem 0.1rem; border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-links a.active:not(.button) { color: #fff6b5; }
  .nav-links .button { width: 100%; margin-top: 0.35rem; }
  .nav-links a:not(.button)::after { display: none; }
  .hero { min-height: auto; }
  .hero-grid,
  .split,
  .contact-layout,
  .detail-grid,
  .cta-split,
  .pillar-grid,
  .proof-grid,
  .summary-grid,
  .post-grid,
  .grid,
  .link-grid,
  .footer-grid,
  .content-shell,
  .process-grid,
  .buyer-router { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: start; }
  .hero-media,
  .cover-image,
  .service-visual,
  .contact-visual { min-height: 280px; }
  .page-article .contact-aside { position: static; }
  .page-contact .contact-layout { grid-template-columns: 1fr; }
  .trust-strip { gap: 0.45rem 0.9rem; font-size: 0.68rem; }
}
@media (max-width: 720px) {
  .section { padding: 3.6rem 0; }
  .section.compact { padding: 2.6rem 0; }
  .section-head { gap: 0.85rem; margin-bottom: 1.4rem; padding-bottom: 1rem; }
  .section-head p { max-width: none; }
  .card,
  .post-card,
  .service-panel,
  .contact-aside,
  .quote-strip,
  .metric-card,
  .list-card { padding: 1.1rem; }
  .nav { padding: 0.78rem 0; }
  .nav-toggle { padding-inline: 0.88rem; }
  .actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quote-strip .actions,
  .contact-panel .actions { grid-template-columns: 1fr; }
  .footer-grid { gap: 1.4rem; }
  .page-home .proof-grid { margin-top: 1.5rem; }
  .page-home .hero-media {
    height: 360px;
    min-height: 360px;
  }
  .contact-assurance { display: none; }
  .page-contact .contact-visual.cover-image { display: none; }
  .page-article .content h2,
  .page-privacy .content h2 { font-size: clamp(1.7rem, 8vw, 2.3rem); }
  .section-head--framed { padding: 0.95rem; margin-bottom: 1.5rem; }
  .contact-assurance { gap: 0.4rem; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap, .nav { width: min(1240px, calc(100% - 1.2rem)); }
  h1 { font-size: clamp(2.35rem, 11vw, 3.45rem); max-width: 100%; }
  h2 { font-size: clamp(2.15rem, 12vw, 3.35rem); }
  .trust-strip {
    gap: 0.45rem 0.75rem;
    padding: 0.55rem 0.72rem;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }
  .contact-assurance { gap: 0.45rem; }
  .contact-assurance span {
    min-height: 28px;
    padding: 0.28rem 0.6rem;
    font-size: 0.62rem;
  }
  .button,
  button { width: 100%; }
  .nav-toggle { width: auto; }
  .actions { grid-template-columns: 1fr; }
  .hero-media { min-height: 240px; }
  .brand img,
  .footer-brand img { height: min(64px, 18vw); width: auto; }
  .page-home .hero { padding: 2.4rem 0 2.8rem; }
  .page-home .hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.05rem);
    max-width: 100%;
  }
  .page-services .hero.copy-only h1,
  .page-service-detail .hero.copy-only h1,
  .page-blog-index .hero.copy-only h1,
  .page-contact .hero.copy-only h1,
  .page-about .hero.copy-only h1,
  .page-proof .hero.copy-only h1 {
    font-size: clamp(2.05rem, 9.4vw, 2.95rem);
    max-width: 100%;
  }
  .page-home .hero .lead { font-size: 1rem; }
  .page-home .proof-grid { gap: 0.75rem; }
  .page-home .metric-card { padding: 0.95rem; }
  .page-home .hero-media {
    height: 320px;
    min-height: 320px;
  }
  .page-contact .hero.copy-only,
  .page-article .hero.copy-only,
  .page-privacy .hero.copy-only,
  .page-service-detail .hero.copy-only,
  .page-services .hero.copy-only,
  .page-blog-index .hero.copy-only,
  .page-proof .hero.copy-only,
  .page-about .hero.copy-only { padding: 2.3rem 0 2.5rem; }
  .page-article .hero h1,
  .page-privacy .hero h1 {
    font-size: clamp(2.1rem, 9.6vw, 2.9rem);
    max-width: 100%;
  }
  .page-article .content p,
  .page-article .content li,
  .page-privacy .content p,
  .page-privacy .content li { font-size: 1rem; line-height: 1.76; }
}

/* ── Scroll reveal & motion hierarchy ── */
@media (prefers-reduced-motion: no-preference) {
  html:not(.motion-ready) .reveal { opacity: 1; transform: none; }

  .reveal {
    opacity: 0; transform: translateY(18px);
    transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
    transition-delay: var(--reveal-delay, 0ms);
  }
  .reveal.is-visible { opacity: 1; transform: translateY(0); }

  .hero .eyebrow,
  .hero .trust-strip { animation: hero-fade 0.55s var(--ease-out) both; }
  .hero h1 { animation: hero-rise 0.75s var(--ease-out) 0.04s both; }
  .hero .lead { animation: hero-rise 0.75s var(--ease-out) 0.1s both; }
  .hero .actions { animation: hero-rise 0.75s var(--ease-out) 0.16s both; }
  .hero .proof-grid { animation: hero-rise 0.75s var(--ease-out) 0.22s both; }
  .hero .metric-card:nth-child(1) { animation: hero-rise 0.75s var(--ease-out) 0.24s both; }
  .hero .metric-card:nth-child(2) { animation: hero-rise 0.75s var(--ease-out) 0.3s both; }
  .hero .metric-card:nth-child(3) { animation: hero-rise 0.75s var(--ease-out) 0.36s both; }
  .hero-media { animation: hero-media-in 0.85s var(--ease-out) 0.12s both; }
  .contact-panel { animation: hero-rise 0.7s var(--ease-out) 0.14s both; }

  .button.accent:hover { transform: translateY(-3px); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero .eyebrow, .hero h1, .hero .lead, .hero .actions,
  .hero .proof-grid, .hero-media, .hero .metric-card, .contact-panel {
    animation: none !important;
  }
  .card:hover, .post-card:hover, .service-panel:hover, .button:hover,
  .hero-media:hover, .metric-card:hover { transform: none !important; }
}
@keyframes hero-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-media-in {
  from { opacity: 0; transform: translateY(20px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
