:root {
  --ink: #18201f;
  --muted: #5b6662;
  --line: #d9ded8;
  --paper: #f7f6f1;
  --white: #ffffff;
  --teal: #0f6b66;
  --teal-dark: #0a4542;
  --copper: #a3653e;
  --mist: #e9efec;
  --charcoal: #202625;
  --shadow: 0 24px 60px rgba(24, 32, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 76px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(247, 246, 241, 0.92);
  border-bottom: 1px solid rgba(24, 32, 31, 0.1);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--teal-dark);
  border-radius: 8px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--teal-dark);
}

.hero {
  position: relative;
  display: grid;
  min-height: 82svh;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 26, 25, 0.88) 0%, rgba(18, 26, 25, 0.73) 42%, rgba(18, 26, 25, 0.16) 100%),
    linear-gradient(0deg, rgba(18, 26, 25, 0.42), rgba(18, 26, 25, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 40px));
  margin-left: clamp(20px, 6vw, 92px);
  padding: 50px 0 70px;
  color: var(--white);
}

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

.hero .eyebrow,
.speaker-hero .eyebrow {
  color: #e0a36f;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  font-size: 4.8rem;
}

h2 {
  font-size: 3.3rem;
}

h3 {
  font-size: 1.35rem;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.28rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: var(--white);
  background: var(--teal);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary.dark {
  color: var(--teal-dark);
  border-color: rgba(15, 107, 102, 0.3);
  background: rgba(15, 107, 102, 0.07);
}

.section {
  padding: clamp(70px, 9vw, 128px) clamp(20px, 5vw, 72px);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.intro-band,
.pale-section,
.audience-section {
  background: var(--mist);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.two-column > p,
.large-text {
  margin: 0;
  color: var(--muted);
  font-size: 1.36rem;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 36px;
}

.section-heading .muted,
.muted {
  color: var(--muted);
}

.service-grid,
.brand-grid,
.bio-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.brand-panel,
.media-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(24, 32, 31, 0.06);
}

.service-card {
  padding: 28px;
}

.service-card h3 {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.service-card li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--teal);
  transform: translateY(-1px);
}

.experience-section {
  background: var(--charcoal);
  color: var(--white);
}

.experience-section .muted {
  color: rgba(255, 255, 255, 0.68);
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(120px, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.logo-strip span {
  display: grid;
  min-height: 92px;
  place-items: center;
  padding: 18px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.98rem;
  font-weight: 800;
  text-align: center;
}

.prose {
  color: var(--muted);
  font-size: 1.08rem;
}

.prose p:first-child {
  margin-top: 0;
}

.prose.wide {
  max-width: 860px;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.brands-section {
  background: #fbfaf6;
}

.brand-panel {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px;
}

.brand-panel p {
  color: var(--muted);
}

.brand-panel .button {
  margin-top: auto;
}

.brand-kicker {
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-size: 1.05rem;
  font-weight: 900;
}

.speaker-hero {
  padding: clamp(84px, 12vw, 150px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(20, 29, 28, 0.96), rgba(20, 52, 49, 0.92)),
    url("assets/images/technology-leadership-hero.png") center / cover;
}

.speaker-hero-inner {
  width: min(980px, 100%);
  margin: 0 auto;
}

.speaker-line {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.32rem;
  font-weight: 800;
}

.perspective-strip {
  padding: 34px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--teal-dark);
}

.perspective-strip p {
  max-width: 980px;
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  font-weight: 850;
  line-height: 1.18;
}

.bio-grid {
  align-items: start;
}

.topic-grid,
.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.topic-grid span,
.audience-list span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--charcoal);
  font-weight: 750;
}

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

.episode-list span {
  display: flex;
  min-height: 72px;
  align-items: center;
  padding: 18px 20px;
  border-left: 4px solid var(--copper);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(24, 32, 31, 0.06);
  font-size: 1.02rem;
  font-weight: 850;
}

.question-grid,
.conversation-grid,
.takeaway-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.question-panel,
.fit-panel,
.takeaway-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(24, 32, 31, 0.06);
}

.question-panel,
.fit-panel {
  padding: 28px;
}

.question-panel ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.question-panel li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 1.03rem;
}

.question-panel li::before {
  content: "?";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 900;
}

.conversation-grid {
  align-items: start;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.fit-panel h3,
.takeaway-grid h3 {
  margin-bottom: 16px;
}

.audience-list.compact {
  margin-bottom: 22px;
}

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

.takeaway-grid article {
  padding: 26px;
}

.takeaway-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.proof-grid article {
  padding: 34px;
  border-left: 4px solid var(--teal);
  background: var(--white);
}

.proof-grid p {
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #151b1a;
}

.site-footer p {
  margin: 4px 0 0;
}

.site-footer a,
.site-footer strong {
  color: var(--white);
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    margin-left: 20px;
    padding: 72px 0 80px;
  }

	  .two-column,
	  .service-grid,
	  .brand-grid,
	  .bio-grid,
	  .proof-grid,
	  .episode-list,
	  .question-grid,
	  .conversation-grid,
	  .takeaway-grid {
	    grid-template-columns: 1fr;
	  }

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

  h1 {
    font-size: 3.85rem;
  }

  h2 {
    font-size: 2.75rem;
  }
}

@media (max-width: 620px) {
  .site-nav {
    gap: 12px;
    font-size: 0.84rem;
  }

  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero-copy,
  .speaker-line,
  .two-column > p,
  .large-text {
    font-size: 1.08rem;
  }

  .button {
    width: 100%;
  }

  .logo-strip {
    grid-template-columns: 1fr;
  }

  .service-card,
  .brand-panel,
  .proof-grid article {
    padding: 24px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
