:root {
  --ink: #050814;
  --ink-2: #081723;
  --cyan: #28c7d6;
  --blue: #3f6df6;
  --green: #61d394;
  --amber: #ffbd59;
  --violet: #b36bf2;
  --magenta: #e08cff;
  --paper: #f5f7f2;
  --muted: #6a7780;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 80px rgba(4, 16, 24, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

body::selection {
  color: #ffffff;
  background: #12606d;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  background: #ffffff;
  color: var(--ink);
  border-radius: 6px;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(6, 11, 25, 0.98), rgba(20, 15, 55, 0.94) 56%, rgba(4, 18, 28, 0.98)),
    #050814;
  border-bottom: 1px solid rgba(76, 176, 226, 0.22);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

section[id] {
  scroll-margin-top: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 270px;
}

.brand img {
  width: 66px;
  height: 66px;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 16px rgba(76, 176, 226, 0.26));
}

.brand-text {
  display: block;
  width: auto;
}

.brand strong {
  display: block;
}

.brand strong {
  color: #ffffff;
  font-size: clamp(30px, 2.25vw, 38px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: #cf9be6;
  font-size: clamp(12.4px, 0.98vw, 14.1px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 1.1vw, 18px);
  font-size: 13px;
  font-weight: 700;
}

.nav-links a,
.site-footer a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.72);
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: #ffffff;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-action {
  color: #ffffff;
  background: linear-gradient(135deg, #356dff, #6e4dff);
  box-shadow: 0 10px 24px rgba(63, 109, 246, 0.24);
}

.button.primary {
  color: #061018;
  background: var(--amber);
}

.button.secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.button.light {
  border-color: rgba(7, 21, 29, 0.2);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #050c13;
}

.hero-photo {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  background:
    radial-gradient(circle at 22% 10%, rgba(159, 57, 255, 0.24), transparent 32%),
    radial-gradient(circle at 72% 55%, rgba(30, 197, 214, 0.12), transparent 36%),
    #050814;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-image {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100svh - 82px);
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  max-width: 720px;
  font-size: clamp(48px, 6.8vw, 104px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4.5vw, 62px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.2;
}

.hero-lede {
  max-width: 760px;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.18;
}

.hero-copy {
  max-width: 700px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(16px, 1.25vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.72fr);
  column-gap: clamp(28px, 6vw, 92px);
  align-items: end;
  padding: clamp(36px, 5vw, 66px) clamp(20px, 5vw, 76px);
  border-top: 1px solid rgba(76, 176, 226, 0.22);
  background:
    linear-gradient(135deg, rgba(5, 8, 20, 0.98), rgba(18, 18, 54, 0.95) 52%, rgba(4, 27, 33, 0.98)),
    var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-overlay .eyebrow {
  color: #6de8f0;
}

.hero-overlay .eyebrow,
.hero-overlay h1 {
  grid-column: 1;
}

.hero-overlay .hero-lede,
.hero-overlay .hero-copy,
.hero-overlay .hero-actions {
  grid-column: 2;
}

.hero-proof {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 clamp(20px, 5vw, 76px) clamp(28px, 4vw, 44px);
  background:
    linear-gradient(90deg, #050814, #141032 48%, #061c23),
    var(--ink);
}

.hero-proof span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
  border: 1px solid rgba(109, 232, 240, 0.24);
  border-radius: 6px;
  background: rgba(5, 8, 20, 0.62);
  backdrop-filter: blur(10px);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background:
    linear-gradient(90deg, #050814, #141032 48%, #061c23),
    var(--ink);
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.metrics div {
  padding: 28px clamp(18px, 3vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.metrics strong {
  display: block;
  color: var(--amber);
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1;
}

.metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.section,
.split-section {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 76px);
}

.intro,
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
}

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

.foundation-section {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 76px);
  background: #ffffff;
}

.foundation-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 72px);
  max-width: 1040px;
  margin-top: 34px;
  color: #35434c;
  font-size: 19px;
}

.foundation-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  background: rgba(7, 21, 29, 0.12);
  border: 1px solid rgba(7, 21, 29, 0.12);
}

.foundation-pillars article {
  min-height: 260px;
  padding: clamp(22px, 3vw, 34px);
  background: #f8faf7;
}

.foundation-pillars span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  color: #05222d;
  font-weight: 800;
  border-radius: 6px;
  background: #dff8f5;
}

.foundation-pillars p {
  color: #51616b;
}

.intro-copy {
  color: #35434c;
  font-size: 19px;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(7, 21, 29, 0.12);
}

.feature-card {
  min-height: 292px;
  padding: clamp(24px, 4vw, 42px);
  background: #ffffff;
}

.feature-card-large {
  grid-column: span 2;
  grid-row: span 2;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(8, 32, 43, 0.94), rgba(17, 60, 67, 0.9)),
    var(--ink-2);
}

.feature-card p,
.stacked-list p {
  color: #51616b;
}

.feature-card-large p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-card img,
.card-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 26px;
  object-fit: contain;
}

.card-icon {
  display: grid;
  place-items: center;
  color: var(--cyan);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.card-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.split-section {
  background:
    linear-gradient(180deg, rgba(8, 37, 46, 0.04), rgba(8, 37, 46, 0)),
    #ffffff;
}

.stacked-list {
  display: grid;
  gap: 18px;
}

.stacked-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(7, 21, 29, 0.12);
}

.stacked-list article:last-child {
  border-bottom: 0;
}

.stacked-list span {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #07212c;
  font-weight: 800;
  border-radius: 6px;
  background: #dff8f5;
}

.stacked-list h3,
.stacked-list p {
  grid-column: 2;
}

.stacked-list h3 {
  margin-bottom: 0;
}

.dions-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 76px);
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(8, 20, 30, 0.96), rgba(23, 76, 80, 0.84)),
    var(--ink);
}

.dions-content {
  max-width: 820px;
}

.dions-content p:last-child {
  max-width: 700px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
}

.community {
  background: #eef2ea;
}

.community-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.development-section {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 76px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(6, 17, 26, 0.96), rgba(14, 54, 63, 0.9)),
    var(--ink);
}

.speaking-section {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 76px);
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(6, 16, 24, 0.96), rgba(7, 30, 38, 0.96)),
    #061018;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 32px);
  margin-top: 38px;
}

.video-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.video-card div {
  padding: clamp(20px, 3vw, 30px);
}

.video-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.video-card p {
  color: rgba(255, 255, 255, 0.68);
}

.development-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.development-grid article {
  min-height: 270px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.development-grid span {
  margin-bottom: 34px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.development-grid p {
  color: rgba(255, 255, 255, 0.7);
}

.development-grid a {
  margin-top: auto;
  color: #ffffff;
  font-weight: 800;
  text-decoration-color: var(--cyan);
  text-underline-offset: 5px;
}

.community-links a {
  min-height: 190px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid rgba(7, 21, 29, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.community-links a:hover,
.community-links a:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(40, 199, 214, 0.56);
  background: #ffffff;
}

.community-links span {
  color: #16727e;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.community-links strong {
  font-size: 19px;
  line-height: 1.3;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) repeat(3, minmax(140px, 0.42fr)) minmax(260px, 0.9fr);
  gap: clamp(24px, 4vw, 72px);
  padding: clamp(44px, 7vw, 72px) clamp(20px, 5vw, 76px);
  color: #ffffff;
  background: #061018;
}

.site-footer .brand {
  min-width: 0;
  margin-bottom: 18px;
}

.site-footer .brand img {
  width: 56px;
  height: 56px;
}

.site-footer .brand strong {
  font-size: 30px;
}

.site-footer .brand small {
  font-size: 13px;
}

.footer-brand p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
}

.footer-nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-nav strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 13px;
  text-transform: uppercase;
}

.footer-nav a {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.64);
  text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #ffffff;
}

.footer-contact {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-contact strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 13px;
  text-transform: uppercase;
}

.footer-contact label {
  display: grid;
  gap: 6px;
}

.footer-contact label span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-contact input,
.footer-contact textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 11px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  font: inherit;
}

.footer-contact textarea {
  resize: vertical;
}

.footer-contact input::placeholder,
.footer-contact textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.contact-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.footer-legal {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.64);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .metrics,
  .feature-grid,
  .foundation-pillars,
  .video-grid,
  .community-links,
  .development-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro,
  .split-section,
  .foundation-body,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-overlay {
    width: min(620px, calc(100% - 40px));
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 74px;
    padding: 12px 16px;
    gap: 12px;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 24px;
  }

  .brand small {
    font-size: 12.4px;
    margin-top: 3px;
  }

  .header-action {
    min-height: 42px;
    padding-inline: 14px;
  }

  .hero {
    padding-top: 0;
  }

  .hero-photo {
    min-height: auto;
  }

  .hero-photo::after {
    background:
      linear-gradient(180deg, rgba(5, 8, 20, 0), rgba(5, 8, 20, 0.3));
  }

  .hero-image {
    width: 100%;
    max-height: none;
  }

  .hero-overlay {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    padding: 30px 20px 24px;
    border: 0;
    border-radius: 0;
    background:
      linear-gradient(135deg, rgba(5, 8, 20, 0.98), rgba(18, 24, 58, 0.94)),
      var(--ink);
    box-shadow: none;
  }

  .hero-overlay h1 {
    font-size: clamp(42px, 14vw, 60px);
  }

  .hero-proof {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 0 20px 24px;
    background: #050814;
  }

  .hero-proof span {
    flex: 1 1 100%;
  }

  .hero-copy,
  .dions-content p:last-child,
  .intro-copy {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .metrics,
  .feature-grid,
  .community-links,
  .foundation-pillars,
  .video-grid,
  .development-grid,
  .dions-band {
    grid-template-columns: 1fr;
  }

  .feature-card-large {
    grid-column: span 1;
  }

  .metrics div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stacked-list article {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Below-hero polish: make the foundation story read as one coherent site. */
.hero-overlay {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.8fr);
  align-items: center;
  padding: clamp(46px, 6vw, 82px) clamp(20px, 5vw, 76px);
  background:
    linear-gradient(135deg, #050814 0%, #121236 54%, #062029 100%),
    var(--ink);
}

.hero-overlay h1 {
  max-width: 620px;
  font-size: clamp(42px, 5.2vw, 76px);
}

.hero-overlay .hero-lede {
  margin-bottom: 16px;
  font-size: clamp(20px, 2vw, 28px);
}

.hero-overlay .hero-copy {
  max-width: 620px;
  margin-bottom: 24px;
}

.hero-proof {
  padding: 0 clamp(20px, 5vw, 76px) clamp(34px, 4vw, 50px);
  background:
    linear-gradient(135deg, #050814 0%, #121236 54%, #062029 100%),
    var(--ink);
}

.hero-proof span {
  min-height: 38px;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(109, 232, 240, 0.22);
}

.metrics {
  gap: 1px;
  padding: 1px;
  color: var(--ink);
  background: rgba(7, 21, 29, 0.12);
  border: 0;
}

.metrics div {
  padding: clamp(24px, 3vw, 36px);
  background: #ffffff;
  border-right: 0;
}

.metrics strong {
  color: #136d78;
  font-size: clamp(30px, 4vw, 48px);
}

.metrics span {
  color: #4d5c66;
}

.foundation-section,
.intro,
.split-section,
.community {
  background: #f8fafc;
}

.foundation-section {
  padding: clamp(72px, 9vw, 118px) clamp(20px, 5vw, 76px);
}

.section-heading h2,
.split-section h2,
.dions-content h2 {
  max-width: 860px;
  font-size: clamp(34px, 4vw, 56px);
}

.foundation-body {
  max-width: 1120px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(7, 21, 29, 0.12);
}

.foundation-body p {
  margin-bottom: 0;
}

.foundation-pillars {
  gap: 16px;
  margin-top: 38px;
  background: transparent;
  border: 0;
}

.foundation-pillars article,
.feature-card,
.community-links a {
  border: 1px solid rgba(7, 21, 29, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(11, 25, 36, 0.06);
}

.foundation-pillars article {
  min-height: 230px;
  background: #ffffff;
}

.foundation-pillars span,
.stacked-list span {
  color: #05222d;
  background: #e5fbfa;
}

.section,
.split-section {
  padding: clamp(72px, 9vw, 118px) clamp(20px, 5vw, 76px);
}

.intro {
  border-top: 1px solid rgba(7, 21, 29, 0.08);
}

.intro-copy,
.foundation-body {
  color: #34444f;
}

.feature-grid {
  gap: 16px;
  padding: 0 clamp(20px, 5vw, 76px) clamp(76px, 8vw, 110px);
  background: #f8fafc;
}

.feature-card {
  min-height: 250px;
  background: #ffffff;
}

.feature-card-large {
  border-color: rgba(109, 232, 240, 0.18);
  background:
    linear-gradient(135deg, rgba(7, 18, 38, 0.98), rgba(13, 55, 62, 0.94)),
    var(--ink-2);
}

.development-section,
.speaking-section {
  padding: clamp(72px, 9vw, 118px) clamp(20px, 5vw, 76px);
}

.development-section {
  background:
    linear-gradient(135deg, #06101d 0%, #111038 52%, #06252b 100%),
    var(--ink);
}

.development-grid {
  gap: 18px;
}

.development-grid article,
.video-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16);
}

.development-grid article {
  min-height: 240px;
}

.speaking-section {
  background:
    linear-gradient(180deg, #07111f 0%, #061018 100%),
    #061018;
}

.video-grid {
  gap: 22px;
}

.video-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.video-card h3 {
  font-size: clamp(22px, 2.2vw, 30px);
}

.split-section {
  border-top: 1px solid rgba(7, 21, 29, 0.08);
}

.stacked-list article {
  padding: 22px 0;
}

.dions-band {
  align-items: center;
  background:
    linear-gradient(120deg, #f3f8f7 0%, #ffffff 58%, #edf8fb 100%);
  color: var(--ink);
  border-top: 1px solid rgba(7, 21, 29, 0.08);
  border-bottom: 1px solid rgba(7, 21, 29, 0.08);
}

.dions-content p:last-child {
  color: #44535d;
}

.dions-band .button.light {
  color: #ffffff;
  background: #0b5360;
  border-color: #0b5360;
}

.community {
  border-top: 0;
}

.community-links {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.community-links a {
  background: #ffffff;
}

@media (max-width: 1080px) {
  .hero-overlay {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-overlay .eyebrow,
  .hero-overlay h1,
  .hero-overlay .hero-lede,
  .hero-overlay .hero-copy,
  .hero-overlay .hero-actions {
    grid-column: 1;
  }

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

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

@media (max-width: 720px) {
  .hero-overlay,
  .foundation-section,
  .legacy-section,
  .section,
  .split-section,
  .development-section,
  .speaking-section,
  .dions-band {
    padding: 44px 20px;
  }

  .hero-overlay h1,
  .section-heading h2,
  .split-section h2,
  .dions-content h2 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .hero-proof {
    padding: 0 20px 28px;
  }

  .metrics,
  .foundation-body,
  .foundation-pillars,
  .feature-grid,
  .development-grid,
  .video-grid,
  .community-links {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    padding: 0 20px 56px;
  }

.feature-card-large {
  grid-row: auto;
}
}

/* Research band fix: replace the old asymmetrical card mess with a clean system. */
.research-band {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 16%, rgba(40, 199, 214, 0.16), transparent 28%),
    radial-gradient(circle at 86% 72%, rgba(207, 155, 230, 0.14), transparent 34%),
    linear-gradient(135deg, #06101d 0%, #111038 52%, #06252b 100%),
    var(--ink);
  border-top: 1px solid rgba(109, 232, 240, 0.16);
}

.research-band .section-heading h2 {
  max-width: 760px;
}

.research-band .intro-copy {
  color: rgba(255, 255, 255, 0.72);
}

.research-band .intro-copy p {
  max-width: 660px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(20px, 5vw, 76px) clamp(76px, 8vw, 112px);
  background:
    linear-gradient(135deg, #06101d 0%, #111038 52%, #06252b 100%),
    var(--ink);
}

.feature-card,
.feature-card.feature-card-large {
  min-height: 235px;
  grid-column: auto;
  grid-row: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.14);
}

.feature-card:hover {
  border-color: rgba(109, 232, 240, 0.35);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.05);
}

.feature-kicker {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 42px;
  padding: 7px 10px;
  color: #6de8f0;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 6px;
  background: rgba(109, 232, 240, 0.1);
}

.feature-card h3 {
  margin-top: 0;
  color: #ffffff;
  font-size: clamp(21px, 1.7vw, 27px);
}

.feature-card p,
.feature-card-large p {
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 1180px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Foundation record section. */
.metrics {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.legacy-section {
  padding: clamp(48px, 6vw, 78px) clamp(20px, 5vw, 76px);
  color: #ffffff;
  background:
    linear-gradient(180deg, #061018 0%, #0a1527 56%, #081d21 100%),
    #061018;
}

.legacy-section .section-heading h2 {
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(30px, 3vw, 44px);
}

.legacy-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  max-width: 1120px;
  margin-top: 20px;
}

.legacy-intro p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.6;
}

.legacy-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.legacy-timeline article {
  min-height: 246px;
  display: grid;
  align-content: start;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: clamp(18px, 2.2vw, 24px);
  background: rgba(255, 255, 255, 0.06);
}

.legacy-timeline span,
.archive-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  color: #6de8f0;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.legacy-timeline h3 {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: clamp(19px, 1.6vw, 24px);
}

.legacy-timeline p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.55;
}

.legacy-timeline a {
  margin-top: auto;
  color: #f0b7ff;
  font-weight: 800;
  text-decoration: none;
}

.legacy-timeline a:hover,
.legacy-timeline a:focus-visible,
.archive-grid a:hover,
.archive-grid a:focus-visible {
  color: #ffffff;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.archive-grid a {
  min-height: 126px;
  border: 1px solid rgba(109, 232, 240, 0.18);
  border-radius: 8px;
  padding: 20px;
  color: #ffffff;
  text-decoration: none;
  background: rgba(109, 232, 240, 0.06);
}

.archive-grid strong {
  display: block;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.25;
}

@media (max-width: 1180px) {
  .metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 720px) {
  .metrics,
  .legacy-timeline,
  .archive-grid,
  .legacy-intro {
    grid-template-columns: 1fr;
  }

  .legacy-section {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .legacy-intro {
    align-items: start;
  }

  .legacy-timeline article {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .feature-grid {
    grid-template-columns: 1fr;
    padding: 0 20px 56px;
  }

  .feature-card,
  .feature-card.feature-card-large {
    min-height: 210px;
  }
}

/* Visual repair pass: keep legacy proof strong without making it look bolted on. */
.metrics {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: #edf3f4;
}

.metrics div {
  padding: clamp(18px, 2.1vw, 26px);
}

.metrics strong {
  color: #0a5f6e;
  font-size: clamp(24px, 2.5vw, 34px);
}

.metrics span {
  max-width: 210px;
  font-size: 13px;
  line-height: 1.45;
}

.legacy-section {
  padding: clamp(50px, 6vw, 82px) clamp(20px, 5vw, 76px);
  color: var(--ink);
  background: #f8fafc;
  border-top: 1px solid rgba(7, 21, 29, 0.08);
  border-bottom: 1px solid rgba(7, 21, 29, 0.08);
}

.legacy-section .eyebrow {
  color: #0a6a7a;
}

.legacy-section .section-heading h2 {
  max-width: 680px;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 44px);
}

.legacy-intro {
  grid-template-columns: minmax(0, 1fr) auto;
  max-width: 1120px;
  margin-top: 18px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(7, 21, 29, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(11, 25, 36, 0.05);
}

.legacy-intro p {
  max-width: 780px;
  color: #34444f;
  font-size: clamp(16px, 1.55vw, 19px);
}

.legacy-intro .button {
  color: #ffffff;
  background: #0b5360;
  border-color: #0b5360;
}

.legacy-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.legacy-proof span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 7px 12px;
  color: #0b5360;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  border: 1px solid rgba(11, 83, 96, 0.16);
  border-radius: 6px;
  background: #e7f7f8;
}

.legacy-timeline {
  position: relative;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.legacy-timeline article {
  min-height: 0;
  position: relative;
  padding: 22px 22px 22px 26px;
  color: var(--ink);
  border: 1px solid rgba(7, 21, 29, 0.1);
  border-left: 4px solid #4bb8cc;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: none;
}

.legacy-timeline span,
.archive-grid span {
  margin-bottom: 10px;
  color: #0a6a7a;
}

.legacy-timeline h3 {
  color: var(--ink);
  font-size: clamp(18px, 1.45vw, 22px);
}

.legacy-timeline p {
  color: #4d5c66;
  font-size: 14px;
}

.legacy-timeline a {
  color: #6d3480;
  font-size: 14px;
}

.legacy-timeline a:hover,
.legacy-timeline a:focus-visible,
.archive-grid a:hover,
.archive-grid a:focus-visible {
  color: #0b5360;
}

.archive-grid {
  gap: 12px;
  margin-top: 12px;
}

.archive-grid a {
  min-height: 112px;
  color: var(--ink);
  border-color: rgba(7, 21, 29, 0.1);
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(11, 25, 36, 0.05);
}

.archive-grid strong {
  font-size: clamp(16px, 1.35vw, 19px);
}

@media (max-width: 1180px) {
  .metrics,
  .legacy-timeline,
  .archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .metrics,
  .legacy-intro,
  .legacy-timeline,
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .metrics span {
    max-width: none;
  }

  .legacy-section {
    padding: 36px 20px;
  }

  .legacy-intro {
    padding: 20px;
  }
}

@media (max-width: 900px) {
  .speaking-contact {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .speaking-contact {
    margin-top: 18px;
    padding: 20px;
  }
}

@media (max-width: 900px) {
  .speaking-contact {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .speaking-contact {
    margin-top: 18px;
    padding: 20px;
  }
}

@media (max-width: 900px) {
  .speaking-contact {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .speaking-contact {
    margin-top: 18px;
    padding: 20px;
  }
}

@media (max-width: 900px) {
  .speaking-contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .speaking-contact {
    margin-top: 18px;
    padding: 20px;
  }
}

@media (max-width: 900px) {
  .speaking-contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .speaking-contact {
    margin-top: 18px;
    padding: 20px;
  }
}

.dions-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
  padding: clamp(52px, 6vw, 86px) clamp(20px, 5vw, 76px);
  color: var(--ink);
  background:
    linear-gradient(120deg, #f3f8f7 0%, #ffffff 58%, #edf8fb 100%);
  border-top: 1px solid rgba(7, 21, 29, 0.08);
  border-bottom: 1px solid rgba(7, 21, 29, 0.08);
}

.dions-content {
  max-width: 640px;
}

.dions-content h2 {
  max-width: 620px;
}

.dions-content p:last-of-type {
  color: #44535d;
}

.dions-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.dions-band .button.light {
  color: #ffffff;
  background: #0b5360;
  border-color: #0b5360;
}

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

.dions-specs article {
  min-height: 174px;
  border: 1px solid rgba(7, 21, 29, 0.1);
  border-radius: 8px;
  padding: clamp(18px, 2.2vw, 24px);
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(11, 25, 36, 0.055);
}

.dions-specs span {
  display: inline-flex;
  margin-bottom: 16px;
  color: #0a6a7a;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.dions-specs h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(19px, 1.55vw, 24px);
}

.dions-specs p {
  margin-bottom: 0;
  color: #4d5c66;
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .dions-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .dions-band {
    padding: 36px 20px;
  }

  .dions-specs {
    grid-template-columns: 1fr;
  }
}

/* Typography correction: keep the foundation site serious, not shouty. */
.hero-overlay h1 {
  max-width: 600px;
  font-size: clamp(40px, 4.6vw, 64px);
}

.section-heading h2,
.split-section h2,
.dions-content h2 {
  max-width: 760px;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.08;
}

.foundation-section,
.section,
.split-section,
.development-section,
.speaking-section {
  padding-top: clamp(56px, 7vw, 88px);
  padding-bottom: clamp(56px, 7vw, 88px);
}

.research-band .section-heading h2,
.development-section .section-heading h2,
.speaking-section .section-heading h2 {
  max-width: 680px;
}

.speaking-section {
  color: #ffffff;
  background:
    linear-gradient(180deg, #07111f 0%, #061018 100%),
    #061018;
}

.speaking-section .section-heading {
  max-width: 760px;
  display: block;
}

.speaking-section .section-heading::after {
  content: "Conference talks and project presentations from our foundation record.";
  display: block;
  max-width: 520px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
  line-height: 1.55;
}

.speaking-section .section-heading h2 {
  max-width: 660px;
  font-size: clamp(26px, 2.6vw, 36px);
}

.video-grid {
  gap: 18px;
  margin-top: 32px;
}

.video-card {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
}

.video-card div {
  padding: clamp(18px, 2.6vw, 26px);
}

.video-card h3 {
  font-size: clamp(20px, 1.8vw, 26px);
}

.video-card p {
  margin-bottom: 0;
}

@media (max-width: 720px) {
  .hero-overlay h1,
  .section-heading h2,
  .split-section h2,
  .dions-content h2,
  .speaking-section .section-heading h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .speaking-section .section-heading {
    max-width: 100%;
  }

  .speaking-section .section-heading::after {
    font-size: 16px;
  }
}

/* Condensed main page pass. Keep the hero photo intact; tighten everything below it. */
.hero-overlay {
  padding-top: clamp(34px, 4.5vw, 58px);
  padding-bottom: clamp(34px, 4.5vw, 58px);
}

.hero-proof {
  padding-bottom: clamp(22px, 3vw, 34px);
}

.metrics div {
  padding: clamp(18px, 2.4vw, 28px);
}

.foundation-section,
.section,
.split-section,
.development-section,
.speaking-section {
  padding-top: clamp(44px, 5.8vw, 72px);
  padding-bottom: clamp(44px, 5.8vw, 72px);
}

.foundation-body {
  margin-top: 22px;
  padding-top: 22px;
}

.foundation-pillars {
  margin-top: 28px;
}

.foundation-pillars article {
  min-height: 190px;
  padding: clamp(20px, 2.5vw, 28px);
}

.foundation-pillars span {
  margin-bottom: 18px;
}

.feature-grid {
  padding-bottom: clamp(48px, 5.8vw, 72px);
}

.feature-card,
.feature-card.feature-card-large {
  min-height: 205px;
  padding: clamp(20px, 2.5vw, 28px);
}

.feature-kicker {
  margin-bottom: 26px;
}

.development-grid article {
  min-height: 205px;
  padding: 24px;
}

.development-grid span {
  margin-bottom: 22px;
}

.video-grid {
  margin-top: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-card div {
  padding: clamp(16px, 2.2vw, 22px);
}

.video-card h3 {
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.18;
}

.video-card p {
  font-size: 14px;
  line-height: 1.55;
}

.video-card span {
  margin-bottom: 10px;
}

.speaking-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.72fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: start;
  margin-top: 24px;
  border: 1px solid rgba(109, 232, 240, 0.18);
  border-radius: 8px;
  padding: clamp(22px, 3.2vw, 34px);
  background:
    linear-gradient(135deg, rgba(109, 232, 240, 0.11), rgba(240, 183, 255, 0.07)),
    rgba(255, 255, 255, 0.055);
}

.speaking-contact h3 {
  max-width: 620px;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.08;
}

.speaking-contact p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.6;
}

.speaking-form {
  display: grid;
  gap: 10px;
}

.speaking-form label {
  display: grid;
  gap: 6px;
}

.speaking-form label span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.speaking-form input,
.speaking-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 11px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  font: inherit;
}

.speaking-form textarea {
  resize: vertical;
}

.speaking-form input::placeholder,
.speaking-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.split-section {
  gap: clamp(24px, 5vw, 66px);
}

.stacked-list {
  gap: 10px;
}

.stacked-list article {
  padding: 16px 0;
}

.dions-band {
  padding-top: clamp(40px, 5.4vw, 68px);
  padding-bottom: clamp(40px, 5.4vw, 68px);
}

.community-links {
  margin-top: 28px;
}

.community-links a {
  min-height: 150px;
  padding: 20px;
}

.site-footer {
  padding-top: clamp(36px, 5vw, 56px);
  padding-bottom: clamp(36px, 5vw, 56px);
}

@media (max-width: 1080px) {
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .hero-overlay,
  .foundation-section,
  .section,
  .split-section,
  .development-section,
  .speaking-section,
  .dions-band {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .feature-grid {
    padding-bottom: 42px;
  }

  .foundation-pillars,
  .development-grid,
  .video-grid,
  .community-links {
    gap: 12px;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .community-links a {
    min-height: 128px;
  }
}

/* Final visual repair pass. */
.metrics {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: #edf3f4;
}

.metrics div {
  padding: clamp(18px, 2.1vw, 26px);
}

.metrics strong {
  color: #0a5f6e;
  font-size: clamp(24px, 2.5vw, 34px);
}

.metrics span {
  max-width: 210px;
  font-size: 13px;
  line-height: 1.45;
}

.legacy-section {
  padding: clamp(50px, 6vw, 82px) clamp(20px, 5vw, 76px);
  color: var(--ink);
  background: #f8fafc;
  border-top: 1px solid rgba(7, 21, 29, 0.08);
  border-bottom: 1px solid rgba(7, 21, 29, 0.08);
}

.legacy-section .eyebrow {
  color: #0a6a7a;
}

.legacy-section .section-heading h2 {
  max-width: 680px;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 44px);
}

.legacy-intro {
  grid-template-columns: minmax(0, 1fr) auto;
  max-width: 1120px;
  margin-top: 18px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(7, 21, 29, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(11, 25, 36, 0.05);
}

.legacy-intro p {
  max-width: 780px;
  color: #34444f;
  font-size: clamp(16px, 1.55vw, 19px);
}

.legacy-intro .button {
  color: #ffffff;
  background: #0b5360;
  border-color: #0b5360;
}

.legacy-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.legacy-proof span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 7px 12px;
  color: #0b5360;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  border: 1px solid rgba(11, 83, 96, 0.16);
  border-radius: 6px;
  background: #e7f7f8;
}

.legacy-timeline {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.legacy-timeline article {
  min-height: 0;
  padding: 22px 22px 22px 26px;
  color: var(--ink);
  border: 1px solid rgba(7, 21, 29, 0.1);
  border-left: 4px solid #4bb8cc;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: none;
}

.legacy-timeline span,
.archive-grid span {
  margin-bottom: 10px;
  color: #0a6a7a;
}

.legacy-timeline h3 {
  color: var(--ink);
  font-size: clamp(18px, 1.45vw, 22px);
}

.legacy-timeline p {
  color: #4d5c66;
  font-size: 14px;
}

.legacy-timeline a {
  color: #6d3480;
  font-size: 14px;
}

.legacy-timeline a:hover,
.legacy-timeline a:focus-visible,
.archive-grid a:hover,
.archive-grid a:focus-visible {
  color: #0b5360;
}

.archive-grid {
  gap: 12px;
  margin-top: 12px;
}

.archive-grid a {
  min-height: 112px;
  color: var(--ink);
  border-color: rgba(7, 21, 29, 0.1);
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(11, 25, 36, 0.05);
}

.archive-grid strong {
  font-size: clamp(16px, 1.35vw, 19px);
}

@media (max-width: 1180px) {
  .metrics,
  .legacy-timeline,
  .archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .metrics,
  .legacy-intro,
  .legacy-timeline,
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .metrics span {
    max-width: none;
  }

  .legacy-section {
    padding: 36px 20px;
  }

  .legacy-intro {
    padding: 20px;
  }
}

@media (max-width: 900px) {
  .speaking-contact {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .speaking-contact {
    margin-top: 18px;
    padding: 20px;
  }
}
