:root {
  --bg: #08111a;
  --bg-deep: #050a11;
  --surface: rgba(10, 23, 35, 0.78);
  --surface-strong: rgba(13, 29, 45, 0.92);
  --surface-accent: rgba(166, 120, 70, 0.18);
  --text: #f3efe6;
  --muted: #b8c3cf;
  --soft: #8e9dab;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #d2a46a;
  --accent-strong: #f5c27d;
  --accent-cool: #8fd1c7;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(143, 209, 199, 0.12), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(210, 164, 106, 0.16), transparent 26%),
    linear-gradient(180deg, #08111a 0%, #050a11 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 88%);
  opacity: 0.45;
}

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

p {
  margin: 0;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.6;
  pointer-events: none;
}

.ambient-one {
  top: 120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(143, 209, 199, 0.18), transparent 70%);
}

.ambient-two {
  top: 840px;
  left: -160px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(210, 164, 106, 0.16), transparent 72%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: var(--content);
  margin: 0 auto;
  padding: 22px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 10px -18px auto;
  height: calc(100% + 8px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  background: rgba(7, 16, 25, 0.72);
  backdrop-filter: blur(18px);
  z-index: -1;
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 12px 10px;
}

.brand-mark-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 4px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid var(--accent-strong);
  color: var(--accent-strong);
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.18s ease;
  overflow: hidden;
}

.brand-mark-header:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent-cool);
  box-shadow: 0 8px 16px rgba(143, 209, 199, 0.2);
}

.header-profile-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.96rem;
}

.brand-copy span {
  font-size: 0.78rem;
  color: var(--soft);
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding-right: 10px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.section {
  width: var(--content);
  margin: 0 auto;
  padding: 120px 0;
}

main [id] {
  scroll-margin-top: 112px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(240px, 0.4fr) minmax(0, 1fr);
  gap: 32px;
  padding-top: 72px;
  align-items: center;
  min-height: calc(100svh - 110px);
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  grid-row: auto;
  background: transparent;
  grid-column: 1;
}

.profile-icon {
  width: 100%;
  max-width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-strong);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.profile-icon:hover {
  transform: scale(1.05);
  border-color: var(--accent-cool);
  box-shadow: 0 12px 32px rgba(143, 209, 199, 0.2);
}

.hero-square-image {
  width: 100%;
  max-width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  border: 2px solid var(--accent-strong);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.hero-square-image:hover {
  transform: translateY(-4px);
  border-color: var(--accent-cool);
  box-shadow: 0 16px 40px rgba(143, 209, 199, 0.25);
}

.bridge-icon {
  width: 100%;
  max-width: 220px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  background: transparent;
  mix-blend-mode: multiply;
}

.hero-visual-caption {
  text-align: center;
  color: var(--soft);
  font-size: 0.88rem;
  line-height: 1.4;
  max-width: 18ch;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--accent-cool);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: "Fraunces", serif;
  letter-spacing: -0.03em;
  line-height: 0.96;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.6rem, 7vw, 6.6rem);
}

.hero-subheadline {
  margin-top: 22px;
  max-width: 24ch;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  line-height: 1.2;
  color: rgba(243, 239, 230, 0.92);
}

.hero-supporting,
.section-lead,
.section-story p,
.bridge-points p,
.service-card p,
.conversation-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.hero-supporting {
  margin-top: 22px;
  max-width: 66ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #08111a;
  box-shadow: 0 16px 36px rgba(210, 164, 106, 0.25);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.hero-panel,
.capability-card,
.service-card,
.conversation-card,
.bridge-node,
.offer-card,
.impact-card,
.ecosystem-card,
.thinking-card,
.insight-card,
.contact-card,
.contact-shell {
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(13, 29, 45, 0.86), rgba(9, 21, 32, 0.72));
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 32px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hero-panel::after,
.conversation-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -45% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(210, 164, 106, 0.2), transparent 70%);
}

.panel-label {
  color: var(--soft);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero-profile,
.hero-operating-panel {
  display: grid;
  gap: 22px;
  align-self: stretch;
}

.stack-panel {
  display: grid;
  gap: 16px;
}

.stack-card {
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.stack-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--accent-cool);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.stack-card strong {
  display: block;
  margin-top: 14px;
  font-size: 1.05rem;
}

.stack-card p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.65;
}

.stack-card-active {
  transform: translateX(-12px);
  background:
    linear-gradient(180deg, rgba(210, 164, 106, 0.18), rgba(143, 209, 199, 0.08)),
    rgba(255, 255, 255, 0.04);
  border-color: rgba(245, 194, 125, 0.28);
}

.profile-portrait {
  position: relative;
  min-height: 256px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 30% 20%, rgba(143, 209, 199, 0.22), transparent 36%),
    radial-gradient(circle at 70% 70%, rgba(210, 164, 106, 0.24), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.profile-portrait::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-core {
  position: relative;
  width: 170px;
  height: 170px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(210, 164, 106, 0.28), rgba(143, 209, 199, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.profile-core span {
  color: rgba(243, 239, 230, 0.98);
  font-family: "Fraunces", serif;
  font-size: 4.25rem;
  letter-spacing: -0.06em;
}

.profile-copy strong {
  display: block;
  margin-top: 12px;
  font-size: 1.2rem;
  line-height: 1.35;
}

.profile-copy p:last-child {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.credential-list {
  display: grid;
  gap: 14px;
}

.credential-card {
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.credential-card span,
.bridge-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--accent-cool);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.credential-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.credential-card-active {
  transform: translateX(-12px);
  background:
    linear-gradient(180deg, rgba(210, 164, 106, 0.18), rgba(143, 209, 199, 0.08)),
    rgba(255, 255, 255, 0.04);
  border-color: rgba(245, 194, 125, 0.28);
}

.proof-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.proof-strip article {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.proof-strip strong {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-strong);
  font-size: 1.52rem;
}

.proof-strip span {
  color: var(--muted);
  line-height: 1.6;
}

.industry-trust-line {
  grid-column: 1 / -1;
  margin-top: 24px;
  color: var(--soft);
  font-size: 0.96rem;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-heading-compact {
  max-width: 920px;
}

.section-story {
  max-width: 76ch;
  display: grid;
  gap: 16px;
  margin-bottom: 42px;
}

h2 {
  max-width: 14ch;
  font-size: clamp(2.5rem, 4.6vw, 4.4rem);
}

.section-lead {
  margin-top: 20px;
  max-width: 62ch;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.capability-card {
  grid-column: span 2;
  padding: 28px;
  border-radius: var(--radius-lg);
}

.capability-card-wide {
  grid-column: span 4;
}

.icon-badge {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.icon-badge svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--accent-strong);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.capability-card h3,
.service-card h3,
.bridge-node h3,
.offer-card h3,
.impact-card h3,
.thinking-card h3,
.insight-card h3 {
  margin-top: 22px;
  font-size: 1.28rem;
  line-height: 1.2;
}

.capability-subtitle {
  margin-top: 8px;
  color: var(--accent-cool);
  font-size: 0.95rem;
  font-weight: 700;
}

.capability-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.bridge-section {
  position: relative;
}

.bridge-section::before {
  content: "";
  position: absolute;
  inset: 90px 0 90px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 12% 20%, rgba(143, 209, 199, 0.08), transparent 32%),
    radial-gradient(circle at 80% 78%, rgba(210, 164, 106, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  z-index: -1;
}

.bridge-framework {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.18fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-top: 44px;
  text-align: center;
}

.bridge-node {
  padding: 24px;
  border-radius: 28px;
  text-align: center;
}

.bridge-node::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, rgba(210, 164, 106, 0.6), rgba(143, 209, 199, 0.35));
}

.bridge-node:last-child::after {
  display: none;
}

.bridge-node p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.bridge-node-callout {
  margin-top: 14px;
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bridge-node-callout + h3 {
  margin-top: 12px;
}

.bridge-node-active {
  transform: translateY(-14px);
  background:
    linear-gradient(180deg, rgba(210, 164, 106, 0.18), rgba(143, 209, 199, 0.06)),
    linear-gradient(180deg, rgba(13, 29, 45, 0.94), rgba(9, 21, 32, 0.82));
  border-color: rgba(245, 194, 125, 0.3);
}

.bridge-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
  text-align: center;
}

.bridge-points p {
  padding: 20px 22px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.bridge-closing {
  margin-top: 28px;
  padding: 28px 32px;
  color: var(--accent-strong);
  font-family: "Fraunces", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  text-align: center;
}

.audience-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.audience-strip span {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.92rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  padding: 30px;
  border-radius: 28px;
}

.services-grid .service-card:last-child {
  grid-column: 1 / -1;
}

.service-subtitle {
  margin-top: 6px;
  color: var(--accent-cool);
  font-size: 0.95rem;
  font-weight: 700;
}

.service-label {
  margin-top: 20px;
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.conversation-card {
  margin-top: 34px;
  padding: 40px;
  border-radius: 36px;
  overflow: hidden;
}

.conversation-card h2 {
  max-width: 16ch;
}

.conversation-card p:last-of-type {
  margin-top: 16px;
  max-width: 58ch;
}

/* Contact form styles */
.contact-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.contact-shell {
  width: min(840px, 100%);
  margin-top: 18px;
  padding: 28px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-field {
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(10,18,26,0.45);
  color: var(--text);
  font-size: 0.96rem;
}

.contact-field[type="email"], .contact-field[type="text"] {
  grid-column: span 1;
}

.contact-field[name="message"] {
  grid-column: 1 / -1;
  min-height: 140px;
  resize: vertical;
}

.contact-form select.contact-field {
  appearance: none;
}

.contact-actions {
  grid-column: 1 / -1;
  display: flex;
  gap: 12px;
  align-items: center;
}

.contact-button {
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  color: #102023;
  background: linear-gradient(90deg, var(--accent-strong), var(--accent));
  cursor: pointer;
}

.contact-note {
  margin-top: 10px;
  color: var(--soft);
  font-size: 0.86rem;
}

@media (max-width: 780px) {
  .contact-form { grid-template-columns: 1fr; }
  .contact-field[name="message"] { min-height: 120px; }
}

/* Articles section */
.articles-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.article-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 18px;
}

.article-card {
  padding: 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.04);
}

.article-card a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.article-card p {
  margin-top: 6px;
  color: var(--soft);
  font-size: 0.95rem;
}

@media (min-width: 980px) {
  .article-list { grid-template-columns: repeat(2, 1fr); }
}

.contact-links {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-top: 24px;
}

.contact-link {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.18s ease;
  width: fit-content;
}

.contact-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
}

.contact-link span {
  font-size: 0.78rem;
  color: var(--soft);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-link {
  color: var(--accent-strong);
  font-size: 0.96rem;
  font-weight: 500;
}

.offer-grid,
.impact-grid,
.thinking-grid,
.insight-grid {
  display: grid;
  gap: 22px;
}

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

.offer-card,
.impact-card,
.thinking-card,
.insight-card,
.contact-card {
  padding: 30px;
  border-radius: 28px;
}

.offer-kicker,
.impact-kicker,
.insight-type {
  color: var(--accent-cool);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offer-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.offer-card p:not(.offer-kicker) {
  color: var(--muted);
  line-height: 1.7;
}

.offer-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.offer-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-cool));
  transform: translateY(-50%);
}

.ecosystem-card {
  margin-top: 28px;
  padding: 30px;
  border-radius: 30px;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.ecosystem-node {
  position: relative;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.ecosystem-node::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -16px;
  width: 16px;
  height: 2px;
  background: linear-gradient(90deg, rgba(210, 164, 106, 0.7), rgba(143, 209, 199, 0.4));
}

.ecosystem-node:last-child::after {
  display: none;
}

.ecosystem-node strong,
.impact-metrics span,
.contact-card strong {
  display: block;
}

.ecosystem-node strong {
  font-size: 1.08rem;
}

.ecosystem-node span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.ecosystem-closing {
  margin-top: 20px;
  color: var(--soft);
  line-height: 1.65;
}

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

.impact-card p:not(.impact-kicker) {
  color: var(--muted);
  line-height: 1.7;
}

.impact-metrics {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.impact-metrics span {
  color: var(--accent-strong);
  font-size: 0.96rem;
  font-weight: 700;
}

.architecture-shell {
  display: grid;
  gap: 28px;
}

.architecture-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.architecture-node {
  position: relative;
  min-height: 116px;
  display: grid;
  place-items: center;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(210, 164, 106, 0.12), rgba(143, 209, 199, 0.04)),
    rgba(255, 255, 255, 0.03);
  color: rgba(243, 239, 230, 0.96);
  font-family: "Fraunces", serif;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  text-align: center;
}

.architecture-node::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, rgba(210, 164, 106, 0.75), rgba(143, 209, 199, 0.45));
}

.architecture-node:last-child::after {
  display: none;
}

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

.thinking-card p:not(.offer-kicker),
.insight-card p:not(.insight-type),
.contact-card p:not(.service-label) {
  color: var(--muted);
  line-height: 1.7;
}

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

.insight-status {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-top: 22px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  padding: 34px;
  border-radius: 32px;
  overflow: hidden;
}

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

.contact-lead {
  max-width: 30ch;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.06rem;
}

.contact-card-list {
  display: grid;
  gap: 16px;
}

.contact-card strong {
  margin-top: 4px;
  color: rgba(243, 239, 230, 0.96);
  font-size: 1.05rem;
  line-height: 1.35;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero,
  .services-grid,
  .bridge-framework,
  .bridge-points,
  .offer-grid,
  .impact-grid,
  .thinking-grid,
  .insight-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

  .ecosystem-grid,
  .architecture-flow {
    grid-template-columns: 1fr;
  }

  .capability-card,
  .capability-card-wide {
    grid-column: span 1;
  }

  .bridge-node::after {
    top: auto;
    bottom: -18px;
    left: 50%;
    right: auto;
    width: 2px;
    height: 18px;
    transform: translateX(-50%);
  }

  .bridge-node-active {
    transform: none;
  }

  .credential-card-active {
    transform: none;
  }

  .stack-card-active {
    transform: none;
  }

  .ecosystem-node::after,
  .architecture-node::after {
    top: auto;
    bottom: -18px;
    left: 50%;
    right: auto;
    width: 2px;
    height: 18px;
    transform: translateX(-50%);
  }
}

@media (max-width: 780px) {
  .site-header {
    position: static;
    width: min(100vw - 28px, var(--content));
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-top: 18px;
  }

  .site-header::before {
    inset: 0;
    height: 100%;
    border-radius: 28px;
  }

  .site-nav {
    justify-content: space-between;
    gap: 14px;
    padding: 0 12px 14px;
    overflow-x: auto;
  }

  .section {
    width: min(100vw - 28px, var(--content));
    padding: 84px 0;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2.3rem, 12vw, 3.3rem);
  }

  .hero {
    padding-top: 48px;
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-visual {
    grid-row: auto;
    max-width: 280px;
    margin: 0 auto;
  }

  .profile-icon {
    max-width: 100px;
    height: 100px;
  }

  .hero-square-image {
    max-width: 160px;
    height: 160px;
  }

  .bridge-icon {
    max-width: 180px;
  }

  .proof-strip,
  .capability-grid,
  .ecosystem-grid,
  .architecture-flow {
    grid-template-columns: 1fr;
  }

  .hero-subheadline {
    font-size: clamp(1.18rem, 6vw, 1.55rem);
  }

  .profile-portrait {
    min-height: 220px;
  }

  .profile-core {
    width: 136px;
    height: 136px;
  }

  .profile-core span {
    font-size: 3.4rem;
  }

  .hero-panel,
  .capability-card,
  .service-card,
  .conversation-card,
  .bridge-node,
  .offer-card,
  .impact-card,
  .ecosystem-card,
  .thinking-card,
  .insight-card,
  .contact-card,
  .contact-shell,
  .proof-strip article,
  .bridge-points p {
    border-radius: 24px;
  }

  .credential-card-active {
    transform: none;
  }

  .stack-card-active {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .button {
    transition: none;
  }

  .button:hover,
  .button:focus-visible {
    transform: none;
  }
}
