/* EagleAgentic — professional corporate editorial
   Direction: precision, cool neutrals, restrained brand red
   Accent only for EA mark, CTAs, and key emphasis */

:root {
  --bg: #f3f4f6;
  --bg-elevated: #ffffff;
  --bg-muted: #e9ebef;
  --ink: #0b1220;
  --ink-soft: #1c2434;
  --text: #121826;
  --text-secondary: #4b5565;
  --text-tertiary: #6b7280;
  --line: #dde1e7;
  --line-strong: #c8ced8;
  --brand: #e8452b;
  --brand-hover: #cf3a22;
  --brand-soft: rgba(232, 69, 43, 0.08);
  --brand-ring: rgba(232, 69, 43, 0.22);
  --navy: #0f2744;
  --navy-soft: rgba(15, 39, 68, 0.06);
  --success: #0f766e;
  --radius: 12px;
  --radius-lg: 18px;
  --nav-h: 68px;
  --max: 1120px;
  --font-display: "Plus Jakarta Sans", "Noto Sans TC", system-ui, sans-serif;
  --font-body: "Noto Sans TC", "Plus Jakarta Sans", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 1px 2px rgba(11, 18, 32, 0.04), 0 4px 12px rgba(11, 18, 32, 0.04);
  --shadow-md: 0 8px 24px rgba(11, 18, 32, 0.06);
  --shadow-lg: 0 20px 48px rgba(11, 18, 32, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
svg,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* subtle grid atmosphere — professional, not playful */
.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(180deg, #f7f8fa 0%, var(--bg) 40%, #eef0f3 100%);
}

.page-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 0%, #000 10%, transparent 75%);
}

.page-bg .blob {
  display: none;
}

.site {
  position: relative;
  z-index: 1;
}

/* ——— Type ——— */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.eyebrow::before {
  content: "";
  width: 1.1rem;
  height: 1.5px;
  background: var(--brand);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.2rem, 4.8vw, 3.35rem);
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.25rem);
}

h3 {
  font-size: 1.15rem;
}

.lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 38rem;
  line-height: 1.7;
}

.section {
  padding: clamp(4.25rem, 9vw, 6.5rem) 0;
}

.section-head {
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
  max-width: 38rem;
}

.section-head .lead {
  margin-top: 0.9rem;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.85rem;
  padding: 0.7rem 1.25rem;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  transition:
    transform 0.25s var(--ease),
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.25s var(--ease),
    color 0.2s ease;
}

.btn:focus-visible,
.nav-link:focus-visible,
.logo:focus-visible,
.audience-chip:focus-visible,
.contact-mail:focus-visible,
.pathway-map a:focus-visible,
.footer a:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset, 0 8px 20px var(--brand-ring);
}

.btn-primary:hover {
  background: var(--brand-hover);
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset, 0 12px 28px var(--brand-ring);
}

.btn-shine::after {
  display: none;
}

.btn-ghost {
  border: 1px solid var(--line-strong);
  background: var(--bg-elevated);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--bg-elevated);
  transform: translateY(-1px);
}

#solutions .btn-ghost:hover {
  border-color: var(--brand-hover);
  background: var(--brand-hover);
  color: #fff;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* ——— Nav ——— */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    backdrop-filter 0.3s ease;
}

/* solid bar only after scroll (or when mobile menu open) */
.nav.is-scrolled,
.nav.is-open {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px) saturate(1.1);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(11, 18, 32, 0.03);
}

/* light nav chrome over dark hero while transparent */
.nav:not(.is-scrolled):not(.is-open) .logo {
  color: #ffffff;
}

.nav:not(.is-scrolled):not(.is-open) .nav-link {
  color: rgba(255, 255, 255, 0.82);
}

.nav:not(.is-scrolled):not(.is-open) .nav-link:hover {
  color: #ffffff;
}

.nav:not(.is-scrolled):not(.is-open) .nav-link::after {
  background: #ffffff;
}

.nav:not(.is-scrolled):not(.is-open) .nav-toggle {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
}

.nav:not(.is-scrolled):not(.is-open) .nav-toggle span {
  background: #ffffff;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  transition: color 0.3s ease;
}

.logo img,
.logo svg {
  width: 42px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.logo:hover img {
  transform: none;
  opacity: 0.85;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  position: relative;
}

/* width-based underline keeps 1px thickness stable (scaleX subpixel jitter) */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width 0.28s var(--ease);
  pointer-events: none;
}

.nav-link:hover {
  color: var(--ink);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  display: none;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--bg-elevated);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.3s ease;
}

.nav.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.nav.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-panel {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 1.25rem 1.25rem;
  box-shadow: var(--shadow-md);
}

.nav.is-open .mobile-panel {
  display: block;
}

.mobile-panel a {
  display: block;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-weight: 500;
}

.mobile-panel .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.85rem;
  margin-top: 1rem;
  padding: 0.7rem 1.25rem;
  border-bottom: 0;
  color: #fff;
  font-weight: 600;
}

@media (min-width: 900px) {
  .nav-links,
  .nav-cta {
    display: flex;
  }
  .nav-toggle,
  .mobile-panel {
    display: none !important;
  }
}

/* ——— HERO ——— */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + clamp(1.5rem, 4vw, 2.5rem)) 0 clamp(2.5rem, 6vw, 4.5rem);
  overflow: hidden;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video,
.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

.hero-video {
  z-index: 1;
}

.hero-fallback {
  z-index: 0;
}

/* professional dual-tone veil: deep navy left for readability */
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      105deg,
      rgba(11, 18, 32, 0.92) 0%,
      rgba(11, 18, 32, 0.78) 36%,
      rgba(11, 18, 32, 0.35) 58%,
      rgba(11, 18, 32, 0.18) 100%
    ),
    linear-gradient(180deg, rgba(11, 18, 32, 0.25) 0%, transparent 30%, rgba(11, 18, 32, 0.4) 100%);
}

.hero-glow {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(100% - 2.5rem, var(--max));
}

.hero-glass {
  max-width: min(44rem, 100%);
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-glass .eyebrow {
  margin-bottom: 1.15rem;
  color: #ff8f7a;
}

.hero-glass .eyebrow::before {
  background: #ff8f7a;
}

.hero-glass h1 {
  margin-bottom: 1.15rem;
  color: #ffffff;
  font-size: clamp(1.9rem, 4vw, 3.15rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
  overflow-wrap: normal;
  word-break: keep-all;
}

/* Each title line is intentional — avoid awkward mid-phrase wraps */
.hero-glass .hero-line {
  display: block;
}

.hero-glass h1 em {
  font-style: normal;
  color: #ff8f7a;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  white-space: nowrap;
}

@media (min-width: 720px) {
  .hero-glass .hero-line {
    white-space: nowrap;
  }
}

.hero-glass .lead {
  margin-bottom: 1.6rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 40rem;
  line-height: 1.75;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.hero-glass .btn-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  box-shadow: none;
}

.hero-glass .btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
}

.hero-meta {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.chip {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.05);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.chip:hover {
  transform: none;
  border-color: rgba(255, 143, 122, 0.55);
  color: #ffc4b8;
  background: rgba(232, 69, 43, 0.12);
}

.hero-in {
  opacity: 0;
  transform: translateY(16px);
  animation: hero-in 0.75s var(--ease) forwards;
  animation-delay: calc(var(--d, 0) * 0.1s + 0.1s);
}

@keyframes hero-in {
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.35rem;
  z-index: 4;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.hero-scroll i {
  width: 1px;
  height: 24px;
  background: linear-gradient(180deg, rgba(255, 143, 122, 0.9), transparent);
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
  0% {
    transform: scaleY(0.25);
    opacity: 0;
    transform-origin: top;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    opacity: 0;
    transform-origin: top;
  }
}

/* ——— Proof ——— */
.proof {
  border-block: 1px solid var(--line);
  background: var(--bg-elevated);
  padding: 0.95rem 0;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.15rem;
}

.proof-label {
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

.proof-divider {
  width: 1px;
  height: 1rem;
  background: var(--line-strong);
  flex-shrink: 0;
}

.proof-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.proof-tags li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1;
  color: var(--text-secondary);
  white-space: nowrap;
}

.proof-tags li:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.7;
  flex-shrink: 0;
  /* flex + align-items:center keeps the dot vertically centered with text */
}

@media (max-width: 640px) {
  .proof-divider {
    display: none;
  }

  .proof-row {
    flex-direction: column;
    gap: 0.55rem;
  }
}

/* ——— Cards shared ——— */
.card-surface {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* ——— Problem ——— */
.problem-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .problem-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.problem-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}

.problem-photo {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--bg-muted);
}

.problem-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.problem-card:hover .problem-photo img {
  transform: scale(1.03);
}

.problem-text {
  padding: 1.25rem 1.3rem 1.4rem;
}

.problem-card .num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--brand);
  margin-bottom: 0.55rem;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.problem-card h3 {
  margin-bottom: 0.45rem;
}

.problem-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.93rem;
}

/* ——— Approach ——— */
.approach {
  background: var(--bg-elevated);
  border-block: 1px solid var(--line);
  position: relative;
}

.approach::before {
  display: none;
}

.steps {
  display: grid;
  gap: 0.75rem;
  counter-reset: step;
}

@media (min-width: 720px) {
  .steps {
    grid-template-columns: repeat(5, 1fr);
  }
}

.step {
  counter-increment: step;
  padding: 1.25rem 1rem 1.3rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg);
  position: relative;
  min-height: 158px;
  transition: transform 0.3s var(--ease), border-color 0.25s ease, box-shadow 0.3s var(--ease);
  overflow: hidden;
}

.step::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--brand);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s var(--ease);
}

.step:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
  background: var(--bg-elevated);
}

.step:hover::after {
  transform: scaleY(1);
}

.step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 0.7rem;
  letter-spacing: 0.08em;
}

.step .en {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 0.15rem;
}

.step .zh {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.step .desc {
  margin-top: 0.7rem;
  font-size: 0.8rem;
  color: var(--text-tertiary);
  line-height: 1.5;
}

/* ——— Products ——— */
.products-list {
  display: grid;
  gap: 1.15rem;
}

.product-card {
  display: grid;
  gap: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.25s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}

@media (min-width: 880px) {
  .product-card {
    grid-template-columns: 1.15fr 0.85fr;
  }
  .product-card:nth-child(even) .product-media {
    order: -1;
  }
}

.product-body {
  padding: clamp(1.4rem, 2.8vw, 2.1rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 4px;
  background: var(--brand-soft);
  color: var(--brand);
}

.tag.muted {
  background: var(--bg-muted);
  color: var(--text-secondary);
}

.product-body h3 {
  font-size: clamp(1.2rem, 1.9vw, 1.4rem);
}

.pain {
  margin: 0;
  padding: 0.85rem 0.95rem;
  border-left: 2px solid var(--brand);
  background: var(--navy-soft);
  border-radius: 0 8px 8px 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
  font-weight: 500;
}

.meta-grid {
  display: grid;
  gap: 0.75rem;
}

.meta-item dt {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 0.15rem;
}

.meta-item dd {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.product-media {
  position: relative;
  min-height: 250px;
  background: var(--bg-muted);
  border-left: 1px solid var(--line);
  overflow: hidden;
}

@media (max-width: 879px) {
  .product-media {
    border-left: none;
    border-top: 1px solid var(--line);
    min-height: 210px;
    aspect-ratio: 16 / 10;
  }
}

.product-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.product-card:hover .product-media img {
  transform: scale(1.03);
}

/* ——— Audience: dual-path decision deck ——— */
.audience {
  --audience-midnight: #071521;
  --audience-depth: #0d2630;
  --audience-panel: #112d38;
  --audience-ink: #dce8ec;
  --audience-steel: #93a8b1;
  --audience-blue: #78b4c6;
  --audience-accent: #f05a40;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-block: 1px solid #1f3d48;
  background:
    radial-gradient(circle at 13% 12%, rgba(61, 129, 145, 0.22), transparent 32%),
    linear-gradient(135deg, var(--audience-midnight) 0%, var(--audience-depth) 58%, #08131d 100%);
  color: var(--audience-ink);
}

.audience-blueprint {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.65;
  background-image:
    linear-gradient(rgba(173, 207, 218, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(173, 207, 218, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, #000, transparent 45%, transparent 55%, #000);
}

.audience-wrap {
  position: relative;
  z-index: 1;
}

.audience-head {
  display: grid;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.audience-head .eyebrow {
  color: var(--audience-accent);
}

.audience-head h2 {
  max-width: 14ch;
  margin-top: 0.85rem;
  color: #f4f8fa;
  font-size: clamp(2rem, 4.5vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.audience-head h2 em {
  display: block;
  color: var(--audience-accent);
  font-style: normal;
}

.audience-intro {
  max-width: 32rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(173, 207, 218, 0.28);
}

.audience-intro > p {
  margin: 0;
  color: #b7c7cc;
  font-size: 0.98rem;
  line-height: 1.75;
}

.audience-intro-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.2rem;
  margin-top: 1rem;
  color: var(--audience-blue);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.audience-intro-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.audience-intro-meta span::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.audience-deck {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(160, 199, 210, 0.24);
  border-radius: 24px;
  background: rgba(3, 12, 18, 0.74);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 30px 80px rgba(0, 6, 10, 0.42);
}

.audience-deck-bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: #061018;
  color: #829ba4;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.audience-deck-bar span:last-child {
  text-align: right;
}

.audience-or {
  display: none;
}

.audience-profile {
  min-width: 0;
  background: rgba(17, 45, 56, 0.94);
  transition: background 0.35s ease;
}

.audience-profile + .audience-profile {
  border-top: 1px solid rgba(173, 207, 218, 0.16);
}

.audience-profile:hover {
  background: #153540;
}

.audience-profile-media {
  position: relative;
  height: clamp(220px, 54vw, 310px);
  overflow: hidden;
  background: #07131b;
}

.audience-profile-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(4, 16, 23, 0.84) 100%),
    linear-gradient(120deg, rgba(8, 31, 39, 0.14), transparent 55%);
  pointer-events: none;
}

.audience-profile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.5s ease;
}

.audience-profile--business .audience-profile-media img {
  object-position: center 24%;
}

.audience-profile--founder .audience-profile-media img {
  object-position: center 20%;
}

.audience-profile:hover .audience-profile-media img {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.02);
}

.audience-profile-state {
  position: absolute;
  left: 1.25rem;
  bottom: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.audience-profile-signal {
  width: 0.55rem;
  height: 0.55rem;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: var(--audience-accent);
  box-shadow: 0 0 0 5px rgba(232, 69, 43, 0.22);
}

.audience-profile-body {
  display: flex;
  flex-direction: column;
  gap: 1.55rem;
  padding: clamp(1.4rem, 3vw, 2.1rem);
}

.audience-profile-top {
  display: grid;
  gap: 0.65rem;
}

.audience-profile-type,
.audience-profile-label {
  margin: 0;
  color: var(--audience-blue);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.audience-profile h3 {
  color: #f4f8fa;
  font-size: clamp(1.35rem, 2.3vw, 1.75rem);
  line-height: 1.22;
  letter-spacing: -0.035em;
}

.audience-profile-lede {
  max-width: 38ch;
  margin: 0;
  color: #b8c8ce;
  font-size: 0.94rem;
  line-height: 1.7;
}

.audience-profile-needs {
  display: grid;
  gap: 0.7rem;
}

.audience-profile-needs ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(173, 207, 218, 0.14);
  list-style: none;
}

.audience-profile-needs li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.25rem;
  border-bottom: 1px solid rgba(173, 207, 218, 0.12);
  color: #d1dde1;
  font-size: 0.88rem;
  line-height: 1.5;
}

.audience-profile-needs li::before {
  content: "↳";
  position: absolute;
  top: 0.72rem;
  left: 0;
  color: var(--audience-accent);
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
}

.audience-profile-route {
  display: grid;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 2px solid #496b78;
}

.audience-route-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.audience-route-head > span {
  color: var(--audience-accent);
  font-family: "IBM Plex Mono", monospace;
  font-size: 1rem;
  line-height: 1;
}

.audience-route-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.audience-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.42rem 0.75rem;
  border: 1px solid var(--audience-ink);
  border-radius: 6px;
  background: var(--audience-ink);
  color: var(--audience-midnight);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.25;
  transition:
    transform 0.25s var(--ease),
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.audience-chip:hover {
  transform: translateY(-2px);
  border-color: var(--audience-accent);
  background: var(--audience-accent);
  color: #ffffff;
}

.audience-chip--ghost {
  border-color: rgba(220, 232, 236, 0.38);
  background: transparent;
  color: var(--audience-ink);
}

.audience-profile-note {
  margin: 0;
  color: var(--audience-steel);
  font-size: 0.77rem;
  line-height: 1.55;
}

@media (min-width: 820px) {
  .audience-head {
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
    gap: clamp(2rem, 6vw, 5.5rem);
  }

  .audience-deck {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-deck-bar {
    grid-column: 1 / -1;
  }

  .audience-profile + .audience-profile {
    border-top: 0;
    border-left: 1px solid rgba(173, 207, 218, 0.16);
  }

  .audience-profile-media {
    height: clamp(250px, 24vw, 300px);
  }

  .audience-or {
    position: absolute;
    top: calc(2.78rem + clamp(250px, 24vw, 300px));
    left: 50%;
    z-index: 3;
    display: grid;
    width: 2.8rem;
    height: 2.8rem;
    place-items: center;
    transform: translate(-50%, -50%);
    border: 5px solid var(--audience-panel);
    border-radius: 50%;
    background: var(--audience-accent);
    color: #ffffff;
    box-shadow: 0 8px 22px rgba(0, 6, 10, 0.48);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.06em;
  }

  .audience-profile-body {
    min-height: 520px;
  }
}

@media (max-width: 560px) {
  .audience-deck {
    border-radius: 18px;
  }

  .audience-deck-bar span:last-child {
    display: none;
  }

  .audience-profile h3 br {
    display: none;
  }
}

/* ——— About: from experiment to owned capability ——— */
.about {
  --about-blueprint: #123a5a;
  --about-harbour: #4d7184;
  --about-mist: #dfe7eb;
  --about-paper: #f7f8f5;
  --about-ink: #0a1b29;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(5rem, 10vw, 8rem);
  color: var(--about-ink);
  background:
    linear-gradient(90deg, rgba(18, 58, 90, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(18, 58, 90, 0.06) 1px, transparent 1px),
    var(--about-mist);
  background-size: 72px 72px;
  border-top: 1px solid rgba(18, 58, 90, 0.12);
}

.about::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 14rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), transparent);
  pointer-events: none;
}

.about-wrap {
  position: relative;
  z-index: 1;
}

.about-stage {
  display: grid;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
}

.about-copy {
  max-width: 38rem;
}

.about-kicker,
.about-label {
  margin: 1.6rem 0 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--about-harbour);
}

.about-copy h2 {
  margin-top: 0.75rem;
  max-width: none;
  font-family: var(--font-body);
  font-size: clamp(2.15rem, 4vw, 3.35rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.055em;
  text-wrap: balance;
  color: var(--about-ink);
}

.about-copy h2 em {
  display: block;
  font-style: normal;
  color: var(--brand);
}

.about-lede {
  max-width: 36rem;
  margin: 1.5rem 0 0;
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  line-height: 1.85;
  color: #344d5e;
}

.about-thesis {
  position: relative;
  margin: 1.75rem 0 0;
  padding: 0.1rem 0 0.1rem 1.25rem;
  border-left: 3px solid var(--brand);
}

.about-thesis p {
  margin: 0;
  max-width: 33rem;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.7;
  color: var(--about-blueprint);
}

@media (min-width: 1200px) {
  .about-thesis p {
    max-width: none;
    font-size: 0.88rem;
    letter-spacing: -0.01em;
    white-space: nowrap;
  }
}

.about-figure {
  position: relative;
  min-width: 0;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--about-blueprint);
  box-shadow: 0 28px 60px rgba(10, 27, 41, 0.2);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2.8rem), calc(100% - 2.8rem) 100%, 0 100%);
}

.about-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(4, 17, 27, 0.76) 100%);
  pointer-events: none;
}

.about-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(0.88) contrast(1.02);
}

.about-figure figcaption {
  position: absolute;
  z-index: 2;
  right: 1.35rem;
  bottom: 1.25rem;
  left: 1.35rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  color: #fff;
}

.about-figure figcaption span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

.about-figure figcaption strong {
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}

.about-role-stamp {
  position: absolute;
  z-index: 3;
  top: 1rem;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
}

.about-role-stamp span {
  padding: 0.45rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--about-ink);
  background: rgba(247, 248, 245, 0.92);
  backdrop-filter: blur(10px);
}

.about-handover {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: clamp(4.5rem, 8vw, 7rem);
  padding: clamp(1.75rem, 4vw, 3.25rem);
  color: #fff;
  background: var(--about-blueprint);
  clip-path: polygon(0 0, calc(100% - 2.4rem) 0, 100% 2.4rem, 100% 100%, 0 100%);
}

.about-handover .about-label {
  margin: 0;
  color: #9eb9c8;
}

.about-handover h3 {
  margin-top: 0.55rem;
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  color: #fff;
}

.about-handover-head > p:last-child {
  max-width: 31rem;
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
  line-height: 1.75;
  color: #c3d2dc;
}

.about-handover-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-self: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-handover-track::before {
  content: "";
  position: absolute;
  top: 0.36rem;
  right: 10%;
  left: 10%;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.about-handover-track li {
  position: relative;
  display: grid;
  gap: 0.3rem;
  padding: 1.35rem 0.5rem 0;
  text-align: center;
}

.about-handover-track li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0.72rem;
  height: 0.72rem;
  border: 2px solid var(--about-blueprint);
  border-radius: 50%;
  background: #d5e1e7;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.45);
  transform: translateX(-50%);
  z-index: 1;
}

.about-handover-track li:last-child::before {
  background: var(--brand);
}

.about-handover-track span {
  font-size: 0.95rem;
  font-weight: 700;
}

.about-handover-track small {
  font-size: 0.72rem;
  color: #9eb9c8;
}

.about-beliefs {
  display: grid;
  margin-top: clamp(4rem, 8vw, 6rem);
  border-block: 1px solid rgba(18, 58, 90, 0.18);
}

.about-belief {
  position: relative;
  min-width: 0;
  padding: 2rem 0;
  overflow: hidden;
}

.about-belief + .about-belief {
  border-top: 1px solid rgba(18, 58, 90, 0.18);
}

.about-belief-word {
  margin: 0 0 -0.35rem;
  font-family: var(--font-body);
  font-size: clamp(3rem, 6vw, 4.6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.08em;
  color: rgba(18, 58, 90, 0.1);
}

.about-belief h3 {
  position: relative;
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 1.32rem);
  color: var(--about-ink);
}

.about-belief > p:last-child {
  position: relative;
  margin: 0.75rem 0 0;
  max-width: 29rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #456071;
}

.about-pathway {
  margin-top: clamp(4rem, 8vw, 6.5rem);
  padding: clamp(1.5rem, 4vw, 2.8rem);
  background: var(--about-paper);
  border: 1px solid rgba(18, 58, 90, 0.15);
  box-shadow: 0 18px 45px rgba(18, 58, 90, 0.09);
}

.about-pathway-copy .about-label {
  margin: 0;
}

.about-pathway-copy h3 {
  margin-top: 0.4rem;
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  color: var(--about-ink);
}

.about-routes {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 2rem;
  border-block: 1px solid #cad5db;
}

.about-route {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
  padding: 1rem 0.85rem;
  border-left: 1px solid #cad5db;
  transition: color 0.2s ease, background 0.2s ease;
}

.about-route:last-child {
  border-right: 1px solid #cad5db;
}

.about-route:hover {
  color: #fff;
  background: var(--about-blueprint);
}

.about-route:focus-visible,
.about-more-link:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.about-route span {
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
}

.about-route small {
  font-size: 0.72rem;
  color: var(--about-harbour);
}

.about-route:hover small {
  color: #bad0dc;
}

.about-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.5rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--about-blueprint);
}

.about-more-link span {
  color: var(--brand);
  transition: transform 0.2s ease;
}

.about-more-link:hover span {
  transform: translate(2px, -2px);
}

@media (min-width: 900px) {
  .about-stage {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .about-figure {
    margin-right: clamp(-4rem, -5vw, -1.5rem);
  }

  .about-handover {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
  }

  .about-beliefs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-belief {
    padding: 2.35rem clamp(1.5rem, 3vw, 2.5rem);
  }

  .about-belief:first-child {
    padding-left: 0;
  }

  .about-belief + .about-belief {
    border-top: 0;
    border-left: 1px solid rgba(18, 58, 90, 0.18);
  }
}

@media (max-width: 719px) {
  .about-copy h2 {
    max-width: none;
  }

  .about-figure figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.3rem;
  }

  .about-handover-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1.5rem;
  }

  .about-handover-track::before {
    display: none;
  }

  .about-handover-track li::after {
    content: "";
    position: absolute;
    top: 0.36rem;
    left: 50%;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
  }

  .about-handover-track li:nth-child(2n)::after {
    display: none;
  }

  .about-routes {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid #cad5db;
    background: #cad5db;
  }

  .about-route {
    grid-column: span 2;
    border: 0;
    background: var(--about-paper);
  }

  .about-route:nth-child(4),
  .about-route:nth-child(5) {
    grid-column: span 3;
  }

  .about-route:last-child {
    border: 0;
  }
}

@media (max-width: 480px) {
  .about-copy h2 {
    font-size: 2rem;
  }

  .about-role-stamp span {
    padding: 0.35rem 0.48rem;
    font-size: 0.62rem;
  }

  .about-figure figcaption strong {
    font-size: 0.75rem;
  }
}

/* ——— About page ——— */
.about-page .nav-link.is-active::after {
  width: 100%;
}

.about-page .page-bg {
  opacity: 0.55;
}

/* Hero: cinematic full-bleed */
.ah-hero {
  position: relative;
  min-height: min(920px, 100svh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: calc(var(--nav-h) + 3.5rem) 0 5.5rem;
  color: #fff;
}

.ah-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ah-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 40%;
  transform: scale(1.04);
}

.ah-hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(5, 10, 18, 0.92) 0%, rgba(7, 14, 24, 0.78) 42%, rgba(8, 16, 28, 0.45) 68%, rgba(8, 18, 30, 0.55) 100%),
    linear-gradient(180deg, rgba(5, 10, 18, 0.55) 0%, transparent 28%, rgba(5, 10, 18, 0.75) 100%);
}

.ah-hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 30% 50%, #000 20%, transparent 75%);
  pointer-events: none;
}

.ah-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  width: min(100% - 2.5rem, var(--max));
  align-items: end;
}

.ah-eyebrow {
  margin-bottom: 1.1rem;
  color: #ff8f7a;
}

.ah-eyebrow::before {
  background: #ff8f7a;
}

.ah-hero h1 {
  color: #fff;
  font-size: clamp(2.05rem, 5.2vw, 3.85rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  max-width: 16ch;
}

.ah-hero h1 em {
  display: inline-block;
  font-style: normal;
  color: #ff9a86;
  white-space: nowrap;
}

.ah-no-break {
  white-space: nowrap;
}

.ah-hero-lead {
  max-width: 36rem;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  line-height: 1.7;
}

.ah-hero-beliefs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.75rem;
}

.ah-hero-beliefs span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.9);
}

/* Signature: before → after photo pair */
.ah-hero-shift {
  max-width: 100%;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(6, 12, 22, 0.55);
  backdrop-filter: blur(16px) saturate(1.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.ah-shift-label {
  margin: 0 0 0.85rem 0.15rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 159, 140, 0.85);
}

.ah-shift-pair {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.55rem;
  align-items: center;
}

.ah-shift-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4 / 5;
  min-height: 0;
}

.ah-shift-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ah-shift-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.6rem 0.75rem 0.7rem;
  background: linear-gradient(180deg, transparent, rgba(4, 8, 16, 0.92));
}

.ah-shift-card strong,
.ah-shift-card span {
  display: block;
}

.ah-shift-card strong {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ah-shift-card span {
  margin-top: 0.15rem;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.62);
}

.ah-shift-card--from {
  opacity: 0.88;
  filter: saturate(0.85);
}

.ah-shift-card--to {
  box-shadow: 0 0 0 1px rgba(232, 69, 43, 0.35);
}

.ah-shift-arrow {
  display: grid;
  place-items: center;
  color: #ff8f7a;
  opacity: 0.9;
}

.ah-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.55);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ah-scroll i {
  display: block;
  width: 1px;
  height: 1.6rem;
  background: linear-gradient(#ff8f7a, transparent);
  animation: ah-scroll-pulse 1.8s var(--ease) infinite;
}

@keyframes ah-scroll-pulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.7); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

@media (min-width: 960px) {
  .ah-hero-content {
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.55fr);
    align-items: end;
  }

  .ah-hero {
    align-items: center;
    padding-bottom: 4.5rem;
  }

  .ah-hero h1 {
    max-width: none;
    font-size: clamp(2.05rem, 4.1vw, 3.35rem);
  }
}

@media (max-width: 600px) {
  .ah-hero {
    min-height: auto;
    padding: calc(var(--nav-h) + 2.75rem) 0 4rem;
  }

  .ah-hero h1 {
    font-size: clamp(1.85rem, 8.5vw, 2.35rem);
    max-width: none;
  }

  .ah-shift-pair {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .ah-shift-arrow {
    transform: rotate(90deg);
    padding: 0.15rem 0;
  }

  .ah-shift-card {
    aspect-ratio: 16 / 10;
  }

  .ah-scroll {
    display: none;
  }
}

/* Shared section head */
.ah-section-head {
  margin-bottom: clamp(2rem, 4.5vw, 2.85rem);
  max-width: 42rem;
}

.ah-section-head h2 {
  margin-top: 0.85rem;
  font-size: clamp(1.75rem, 3.4vw, 2.45rem);
}

.ah-section-head .lead {
  margin-top: 0.95rem;
}

.ah-section-head--center {
  margin-inline: auto;
  text-align: center;
}

.ah-section-head--center .lead {
  margin-inline: auto;
}

/* Observation / gap grid */
.ah-observe {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.ah-gap-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .ah-gap-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
  }
}

.ah-gap-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.ah-gap-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.ah-gap-photo {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--bg-muted);
}

.ah-gap-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.ah-gap-card:hover .ah-gap-photo img {
  transform: scale(1.04);
}

.ah-gap-body {
  display: grid;
  gap: 0.45rem;
  align-content: start;
  padding: 1.15rem 1.15rem 1.3rem;
}

.ah-gap-tag {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.ah-gap-body h3 {
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.ah-gap-body p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.ah-pullquote {
  position: relative;
  margin: clamp(2.5rem, 5vw, 3.5rem) 0 0;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: 18px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(232, 69, 43, 0.06), transparent 45%),
    #f7f8fa;
  box-shadow: var(--shadow-sm);
}

.ah-pullquote::before {
  content: "“";
  position: absolute;
  top: 0.35rem;
  left: 1rem;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: rgba(232, 69, 43, 0.22);
  pointer-events: none;
}

.ah-pullquote p {
  position: relative;
  margin: 0;
  max-width: 48rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.ah-pullquote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand);
}

/* Why we exist — full-bleed split */
.ah-why {
  display: grid;
  padding-inline: max(1.25rem, calc((100% - var(--max)) / 2));
  background: var(--ink);
  color: #fff;
}

.ah-why-visual {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.ah-why-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.ah-why-caption {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(6, 12, 22, 0.62);
  backdrop-filter: blur(12px);
}

.ah-why-caption span {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff8f7a;
}

.ah-why-caption strong {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.ah-why-copy {
  display: grid;
  align-content: center;
  gap: 0;
  padding: clamp(2.75rem, 7vw, 5rem) 0;
}

.ah-why-copy .eyebrow {
  color: #ff8f7a;
}

.ah-why-copy .eyebrow::before {
  background: #ff8f7a;
}

.ah-why-copy h2 {
  margin-top: 0.9rem;
  color: #fff;
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  max-width: 18ch;
}

.ah-why-prose {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.5rem;
  max-width: 36rem;
}

.ah-why-prose p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.98rem;
  line-height: 1.7;
}

@media (min-width: 900px) {
  .ah-why {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    min-height: 560px;
  }

  .ah-why-visual {
    min-height: 100%;
  }

  .ah-why-copy {
    padding-inline: clamp(2rem, 5vw, 4rem);
  }
}

/* Beliefs with photo + text */
.ah-beliefs {
  background: linear-gradient(180deg, #f1f3f6 0%, #e9edf1 100%);
  border-bottom: 1px solid var(--line);
}

.ah-belief-stack {
  display: grid;
  gap: 1.15rem;
}

.ah-belief {
  display: grid;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.ah-belief-media {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: var(--bg-muted);
}

.ah-belief-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.7s var(--ease);
}

.ah-belief:hover .ah-belief-media img {
  transform: scale(1.03);
}

.ah-belief-body {
  display: grid;
  align-content: center;
  gap: 0.35rem;
  padding: clamp(1.4rem, 3vw, 2rem);
}

.ah-belief-num {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--brand);
}

.ah-belief-en {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.ah-belief-body h3 {
  margin-top: 0.25rem;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
}

.ah-belief-body > p {
  margin: 0.55rem 0 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

.ah-belief-note {
  margin-top: 0.85rem !important;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem !important;
  color: var(--ink-soft) !important;
  font-weight: 500;
}

.ah-belief-qs {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.ah-belief-qs li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.ah-belief-qs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.7;
}

@media (min-width: 860px) {
  .ah-belief {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    min-height: 340px;
  }

  .ah-belief--flip {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  }

  .ah-belief--flip .ah-belief-media {
    order: 2;
  }

  .ah-belief-media {
    min-height: 100%;
  }
}

/* Roles */
.ah-roles {
  background: #fff;
}

.ah-role-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 860px) {
  .ah-role-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
  }
}

.ah-role {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #f7f8fa;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.ah-role:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.ah-role-photo {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.ah-role-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.ah-role:hover .ah-role-photo img {
  transform: scale(1.05);
}

.ah-role-body {
  padding: 1.25rem 1.2rem 1.4rem;
}

.ah-role-body > span {
  color: var(--brand);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ah-role-body h3 {
  margin-top: 0.45rem;
  font-size: 1.2rem;
}

.ah-role-body p {
  margin: 0.65rem 0 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Method dark + bg image */
.ah-method {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(4.25rem, 9vw, 6.5rem) 0;
  color: #fff;
  background: #070b14;
}

.ah-method-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.22;
}

.ah-method-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: grayscale(0.35);
}

.ah-method::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 50% 45% at 80% 20%, rgba(232, 69, 43, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(7, 11, 20, 0.75), rgba(7, 11, 20, 0.92));
  pointer-events: none;
}

.ah-method-inner {
  position: relative;
  z-index: 1;
}

.ah-method-head {
  max-width: 40rem;
}

.ah-method .eyebrow {
  color: #ff8f7a;
}

.ah-method .eyebrow::before {
  background: #ff8f7a;
}

.ah-method-head h2 {
  margin-top: 0.9rem;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
}

.ah-method-head > p:last-child {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.98rem;
  line-height: 1.7;
}

.ah-steps {
  display: grid;
  gap: 0;
  margin: 2.75rem 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  list-style: none;
}

.ah-steps li {
  padding: 1.3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.ah-steps span {
  display: block;
  margin-bottom: 0.7rem;
  color: #ff8f7a;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  font-weight: 600;
}

.ah-steps strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.ah-steps p {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.84rem;
  line-height: 1.5;
}

@media (min-width: 800px) {
  .ah-steps {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .ah-steps li {
    min-height: 210px;
    padding: 1.3rem 1rem;
    border-bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .ah-steps li:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }
}

/* Pathways visual cards */
.ah-paths {
  background: #f5f6f8;
}

.ah-path-map {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 720px) {
  .ah-path-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1080px) {
  .ah-path-map {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.75rem;
  }
}

.ah-path-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.25s ease;
}

.ah-path-card:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: var(--shadow-md);
}

.ah-path-card:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.ah-path-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-muted);
}

.ah-path-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.ah-path-card:hover .ah-path-photo img {
  transform: scale(1.06);
}

.ah-path-meta {
  display: grid;
  gap: 0.25rem;
  align-content: start;
  padding: 1rem 1rem 1.15rem;
}

.ah-path-meta span {
  color: var(--brand);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ah-path-meta strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.ah-path-meta p {
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-secondary);
}

/* Success */
.ah-success {
  background: #fff;
  border-top: 1px solid var(--line);
}

.ah-success-layout {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

.ah-success-visual {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
  max-height: 540px;
}

.ah-success-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.ah-success-badge {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 12, 22, 0.72);
  backdrop-filter: blur(12px);
  color: #fff;
}

.ah-success-badge span {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff8f7a;
}

.ah-success-badge strong {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.ah-success-copy h2 {
  margin-top: 0.85rem;
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  max-width: 18ch;
}

.ah-success-lead {
  margin: 1rem 0 0;
  max-width: 32rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.ah-success-list {
  margin: 1.75rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.ah-success-list li {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  gap: 0.65rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.ah-success-list span {
  color: var(--brand);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.67rem;
  font-weight: 600;
}

@media (min-width: 900px) {
  .ah-success-layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 3rem;
  }
}

/* Closing cinematic CTA */
.ah-close {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 12vw, 8rem) 0;
  color: #fff;
}

.ah-close-media {
  position: absolute;
  inset: 0;
}

.ah-close-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.ah-close-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 20% 30%, rgba(232, 69, 43, 0.22), transparent 55%),
    linear-gradient(180deg, rgba(5, 10, 18, 0.82), rgba(5, 10, 18, 0.9));
}

.ah-close-inner {
  position: relative;
  z-index: 1;
  max-width: 48rem;
}

.ah-close .eyebrow {
  color: #ff8f7a;
}

.ah-close .eyebrow::before {
  background: #ff8f7a;
}

.ah-close h2 {
  margin-top: 1rem;
  color: #fff;
  font-size: clamp(1.45rem, 3.2vw, 2.15rem);
  line-height: 1.35;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.ah-close-three {
  display: grid;
  gap: 0.65rem;
  margin: 1.75rem 0 1.85rem;
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.ah-close-three p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.88);
}

.ah-close-three p::before {
  content: "→ ";
  color: #ff8f7a;
}

.ah-ghost-on-dark {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: none;
}

.ah-ghost-on-dark:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .ah-scroll i {
    animation: none;
  }

  .ah-gap-card:hover,
  .ah-role:hover,
  .ah-path-card:hover {
    transform: none;
  }

  .ah-gap-card:hover .ah-gap-photo img,
  .ah-role:hover .ah-role-photo img,
  .ah-path-card:hover .ah-path-photo img,
  .ah-belief:hover .ah-belief-media img {
    transform: none;
  }
}

/* ——— Contact: direct line ——— */
.contact {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(4.25rem, 9vw, 6.5rem) 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 20%, rgba(232, 69, 43, 0.16), transparent 58%),
    radial-gradient(ellipse 50% 45% at 90% 80%, rgba(70, 120, 180, 0.12), transparent 55%),
    linear-gradient(180deg, #070b14 0%, #0b1220 48%, #0e1628 100%);
  color: rgba(255, 255, 255, 0.8);
}

.contact-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.contact-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(56px);
  opacity: 0.55;
}

.contact-glow--a {
  width: min(46vw, 440px);
  height: min(46vw, 440px);
  top: -8%;
  left: -6%;
  background: rgba(232, 69, 43, 0.22);
}

.contact-glow--b {
  width: min(40vw, 380px);
  height: min(40vw, 380px);
  right: -8%;
  bottom: -10%;
  background: rgba(90, 140, 200, 0.14);
}

.contact-grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 65% at 50% 40%, #000 15%, transparent 75%);
}

.contact-wrap {
  position: relative;
  z-index: 1;
}

.contact-layout {
  display: grid;
  gap: 1.75rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 2rem;
    align-items: center;
  }
}

.contact-copy .eyebrow {
  color: #ff8f7a;
}

.contact-copy .eyebrow::before {
  background: #ff8f7a;
}

.contact-copy h2 {
  margin: 0.85rem 0 0;
  max-width: none;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: #fff;
}

.contact-copy .lead {
  margin: 1.05rem 0 0;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.68);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-btn-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #fff;
  box-shadow: none;
}

.contact-btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.contact-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.65rem);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(12, 18, 30, 0.72);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 24px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px) saturate(1.15);
}

.contact-card-kicker {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.contact-mail {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "label arrow"
    "addr arrow";
  gap: 0.15rem 0.75rem;
  align-items: center;
  padding: 1rem 1.05rem;
  border-radius: 14px;
  border: 1px solid rgba(232, 69, 43, 0.28);
  background:
    linear-gradient(135deg, rgba(232, 69, 43, 0.16), transparent 60%),
    rgba(255, 255, 255, 0.03);
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.3s var(--ease);
}

.contact-mail:hover {
  border-color: rgba(255, 143, 122, 0.55);
  transform: translateY(-2px);
  background:
    linear-gradient(135deg, rgba(232, 69, 43, 0.22), transparent 60%),
    rgba(255, 255, 255, 0.05);
}

.contact-mail-label {
  grid-area: label;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff8f7a;
}

.contact-mail-addr {
  grid-area: addr;
  font-family: var(--font-display);
  font-size: clamp(0.98rem, 1.6vw, 1.12rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  word-break: break-all;
}

.contact-mail-arrow {
  grid-area: arrow;
  font-size: 1.25rem;
  color: #ff8f7a;
  transition: transform 0.3s var(--ease);
}

.contact-mail:hover .contact-mail-arrow {
  transform: translateX(4px);
}

.contact-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.contact-meta > div {
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.contact-meta-label {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.contact-meta strong {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.contact-footnote {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
}

/* ——— Footer ——— */
.footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 2rem;
  background: var(--bg-elevated);
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer .logo {
  margin-bottom: 0.7rem;
}

.footer p {
  margin: 0;
  color: var(--text-tertiary);
  font-size: 0.9rem;
  max-width: 28ch;
}

.footer h4 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  font-weight: 700;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.footer a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--brand);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  color: var(--text-tertiary);
  font-size: 0.78rem;
  font-family: var(--font-display);
}

/* ——— Reveal ——— */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--i, 0) * 0.07s);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal,
  .hero-in {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
  .hero-scroll i {
    animation: none;
  }
  .btn-primary:hover,
  .problem-card:hover,
  .product-card:hover,
  .audience-chip:hover,
  .about-pillar:hover,
  .ah-gap-card:hover,
  .ah-role:hover,
  .ah-path-card:hover,
  .contact-mail:hover,
  .step:hover {
    transform: none;
  }

  .about-more-link:hover span {
    transform: none;
  }

  .contact-mail:hover .contact-mail-arrow {
    transform: none;
  }
  .problem-card:hover .problem-photo img,
  .product-card:hover .product-media img,
  .audience-profile:hover .audience-profile-media img {
    transform: none;
  }
}
