:root {
  --bg: #02070d;
  --bg-2: #07111c;
  --panel: #08131f;
  --panel-2: #0b1826;
  --ink: #f8fbff;
  --muted: #a8b3c2;
  --line: rgba(111, 157, 218, 0.22);
  --blue: #00a6ff;
  --blue-2: #46d6ff;
  --pink: #ff1492;
  --white: #ffffff;
  --max: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 6%, rgba(0, 166, 255, 0.18), transparent 25%),
    linear-gradient(rgba(75, 136, 204, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75, 136, 204, 0.045) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: auto 0 0;
  height: 220px;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 30% 100%, rgba(0, 166, 255, 0.28), transparent 34%),
    radial-gradient(ellipse at 70% 100%, rgba(0, 166, 255, 0.2), transparent 32%);
  opacity: 0.44;
  z-index: -1;
}

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

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

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

.site-header {
  align-items: center;
  backdrop-filter: blur(22px);
  background: rgba(2, 7, 13, 0.83);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  height: 78px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(24px, 4vw, 42px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 30;
}

.brand {
  display: grid;
  line-height: 1;
  min-width: 208px;
}

.brand span {
  color: var(--white);
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  font-weight: 950;
  text-transform: uppercase;
}

.brand em,
.site-footer em {
  color: var(--pink);
  font-style: normal;
}

.brand small {
  color: rgba(248, 251, 255, 0.78);
  font-size: 0.68rem;
  letter-spacing: 0;
  margin-top: 8px;
  text-transform: uppercase;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(16px, 2vw, 30px);
}

.site-nav a {
  color: rgba(248, 251, 255, 0.86);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

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

.site-nav a:first-child {
  color: var(--white);
  position: relative;
}

.site-nav a:first-child::after {
  background: var(--pink);
  bottom: -18px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
}

.nav-cta {
  background: var(--pink);
  color: var(--white) !important;
  min-width: 164px;
  padding: 15px 20px;
  text-align: center;
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 42px;
  padding: 8px;
  width: 48px;
}

.nav-toggle span {
  background: var(--white);
  display: block;
  height: 3px;
  margin: 6px 0;
}

.hero {
  min-height: 600px;
  overflow: hidden;
  padding: 152px clamp(28px, 5vw, 48px) 74px;
  position: relative;
}

.hero-media,
.hero-overlay,
.signal-grid {
  inset: 0;
  position: absolute;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: 72% 35%;
  width: 100%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 7, 13, 0.96) 0%, rgba(2, 7, 13, 0.9) 31%, rgba(2, 7, 13, 0.38) 61%, rgba(2, 7, 13, 0.82) 100%),
    linear-gradient(0deg, rgba(2, 7, 13, 0.9) 0%, transparent 35%);
}

.signal-grid {
  background:
    radial-gradient(ellipse at 58% 91%, rgba(0, 166, 255, 0.38), transparent 27%),
    repeating-linear-gradient(90deg, transparent 0 82px, rgba(0, 166, 255, 0.08) 83px 84px);
  opacity: 0.72;
}

.hero-content {
  max-width: 520px;
  position: relative;
  z-index: 2;
}

.signature {
  display: none;
}

.hero h1 {
  font-size: clamp(4.25rem, 8vw, 7rem);
  letter-spacing: 0;
  line-height: 0.9;
  margin: 0 0 18px;
}

.hero h2 {
  color: var(--white);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.1;
  margin-bottom: 18px;
  max-width: 520px;
}

.hero h2::after {
  background: var(--pink);
  content: "";
  display: block;
  height: 3px;
  margin-top: 18px;
  width: 44px;
}

.hero p:not(.signature) {
  color: rgba(248, 251, 255, 0.86);
  font-size: 1.02rem;
  max-width: 460px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 38px;
}

.button {
  align-items: center;
  border-radius: 0;
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  min-height: 46px;
  padding: 13px 28px;
}

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

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.76);
  color: var(--white);
}

.button-secondary::after {
  content: "→";
  margin-left: 14px;
}

.hero-actions .button-secondary::before {
  display: none;
}

.hero-actions .button-secondary[href*="youtube"]::before {
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "▶";
  display: inline-grid;
  font-size: 0.58rem;
  height: 18px;
  margin-right: 12px;
  place-items: center;
  width: 18px;
}

.hero-actions .button-secondary::after {
  content: "→";
  margin-left: 14px;
}

.hero-actions .button-secondary[href*="youtube"]::after {
  content: "";
  margin: 0;
}

.hero-lower-third {
  display: none;
}

.trust-band,
.section,
.booking {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-band {
  padding: 38px clamp(28px, 5vw, 48px) 34px;
}

.section-label,
.card-type {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.trust-logos {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  max-width: var(--max);
}

.trust-logos span {
  color: var(--white);
  font-size: clamp(1.05rem, 2vw, 1.72rem);
  font-weight: 900;
  line-height: 1;
  opacity: 0.94;
}

.trust-logos span:nth-last-child(-n + 2) {
  font-size: 1.1rem;
  text-transform: uppercase;
}

.section {
  margin: 0 auto;
  max-width: none;
  padding: 42px clamp(28px, 5vw, 48px);
}

.section-heading {
  display: grid;
  gap: 30px;
  grid-template-columns: 0.92fr 1.2fr;
  margin: 0 auto 34px;
  max-width: var(--max);
}

.section-heading h2,
.thought-copy h2,
.booking h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.03;
  margin: 0;
}

.thought-leadership {
  display: grid;
  gap: 36px;
  grid-template-columns: 0.72fr 1.28fr;
}

.thought-copy,
.thought-cards,
.topic-grid,
.media-grid,
.pathway,
.image-wall {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max);
}

.thought-copy p:not(.section-label) {
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 440px;
}

.thought-cards {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.thought-cards article {
  min-width: 0;
}

.thought-cards img {
  aspect-ratio: 1 / 0.84;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.thought-cards img[src*="amy-aws-reinvent"],
.cloud-grid img[src*="amy-aws-reinvent"],
.image-wall img[src*="amy-aws-reinvent"] {
  object-position: 82% 50%;
}

.thought-cards h3 {
  font-size: 1.02rem;
  line-height: 1.1;
  margin: 12px 0 6px;
}

.thought-cards p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.topic-grid,
.media-grid,
.pathway-grid,
.cloud-grid {
  display: grid;
}

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

.topic-card {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0 28px 10px;
}

.topic-card:first-child {
  border-left: 0;
  padding-left: 0;
}

.topic-icon {
  align-items: center;
  border: 2px solid var(--pink);
  border-radius: 50%;
  color: var(--pink);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 950;
  height: 54px;
  justify-content: center;
  margin-bottom: 24px;
  width: 54px;
}

.topic-card h3 {
  font-size: 1.02rem;
  line-height: 1.15;
  margin-bottom: 12px;
}

.topic-card p,
.media-card p,
.path-step span,
.booking p {
  color: var(--muted);
  font-size: 0.92rem;
}

.cloud-presence {
  padding-top: 34px;
}

.cloud-grid {
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: var(--max);
}

.cloud-grid article {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--panel);
  min-width: 0;
}

.cloud-grid img {
  aspect-ratio: 1 / 0.72;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.cloud-grid article:nth-child(2) img,
.cloud-grid article:last-child img {
  object-position: 50% 22%;
}

.cloud-grid article:nth-child(3) img {
  object-position: 100% 50%;
}

.cloud-grid img[src*="amy-aws-reinvent-speaking"] {
  object-position: 50% 34%;
}

.cloud-grid h3 {
  font-size: 1.04rem;
  margin: 16px 18px 8px;
}

.cloud-grid p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 18px 20px;
}

.framework {
  background:
    linear-gradient(90deg, rgba(255, 20, 146, 0.08), transparent 34%),
    rgba(3, 10, 18, 0.42);
}

.framework-grid,
.use-case-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: var(--max);
}

.framework-grid article,
.use-case-grid article {
  background: rgba(8, 19, 31, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.14);
  min-width: 0;
  padding: 24px;
}

.framework-grid span {
  color: var(--pink);
  display: block;
  font-size: 0.82rem;
  font-weight: 950;
  margin-bottom: 22px;
}

.framework-grid h3,
.use-case-grid h3 {
  font-size: 1.08rem;
  line-height: 1.12;
  margin-bottom: 12px;
}

.framework-grid p,
.use-case-grid p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 0;
}

.use-case-grid a {
  color: var(--white);
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 900;
  margin-top: 18px;
}

.use-case-grid a::after {
  content: "→";
  margin-left: 10px;
}

.platform-proof {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 20, 146, 0.12), transparent 28%),
    rgba(3, 10, 18, 0.38);
}

.product-card {
  padding-top: 18px;
}

.product-preview {
  background:
    linear-gradient(135deg, rgba(0, 166, 255, 0.22), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015)),
    #050c15;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  margin-bottom: 20px;
  min-height: 170px;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.product-preview::before {
  background: linear-gradient(180deg, rgba(2, 7, 13, 0), rgba(2, 7, 13, 0.28));
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.product-preview::after {
  background: var(--pink);
  content: "Private Demo";
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 950;
  padding: 6px 9px;
  position: absolute;
  right: 12px;
  text-transform: uppercase;
  top: 12px;
  z-index: 2;
}

.product-preview img {
  height: 100%;
  object-fit: cover;
  object-position: left top;
  width: 100%;
}

.product-preview-video img {
  object-position: center top;
}

.product-preview-avails img {
  object-position: left top;
}

.cannes-spotlight {
  background: linear-gradient(180deg, rgba(0, 166, 255, 0.06), rgba(2, 7, 13, 0));
}

.cannes-grid {
  display: grid;
  gap: 16px;
  margin: 0 auto;
  max-width: var(--max);
}

.cannes-primary {
  align-items: center;
  background: rgba(8, 19, 31, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 420px);
  min-width: 0;
  padding: clamp(24px, 4vw, 38px);
}

.cannes-primary h3 {
  font-size: clamp(1.5rem, 2.7vw, 2.4rem);
  line-height: 1.04;
  margin-bottom: 16px;
}

.cannes-primary p:not(.section-label) {
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 620px;
}

.tiktok-embed {
  background: #050b13;
  border: 1px solid rgba(255, 255, 255, 0.14);
  margin: 0;
  min-height: 560px;
  width: 100%;
}

.social-reels {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.social-reels a {
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.social-reels img {
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.social-reels span {
  background: linear-gradient(0deg, rgba(2, 7, 13, 0.92), rgba(2, 7, 13, 0.42));
  bottom: 0;
  color: var(--white);
  font-weight: 900;
  left: 0;
  padding: 34px 18px 16px;
  position: absolute;
  right: 0;
}

.media-grid {
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.linkedin-articles {
  display: contents;
}

.media-card {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.17);
  min-height: 390px;
  overflow: hidden;
  padding: 0 18px 58px;
  position: relative;
}

.media-thumb {
  aspect-ratio: 16 / 9;
  height: auto;
  margin: 0 -18px 18px;
  object-fit: cover;
  width: calc(100% + 36px);
}

.media-card .card-type {
  background: var(--pink);
  color: var(--white);
  display: inline-block;
  font-size: 0.62rem;
  left: 18px;
  margin-bottom: 18px;
  padding: 5px 8px;
  position: absolute;
  top: 14px;
}

.media-card h3 {
  font-size: 1.18rem;
  line-height: 1.12;
  margin-bottom: 12px;
}

.media-card a {
  bottom: 18px;
  color: var(--white);
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 850;
  left: 20px;
  position: absolute;
}

.media-card a::after {
  content: "→";
  margin-left: 10px;
}

.media-card-large,
.article-measure,
.article-youtube {
  background: var(--panel);
}

.article-linkedin small {
  color: var(--blue-2);
  display: block;
  font-size: 0.72rem;
  font-weight: 850;
  margin-top: 10px;
  text-transform: uppercase;
}

.video-card {
  grid-column: auto;
}

.video-preview {
  align-items: center;
  background: transparent;
  display: flex !important;
  gap: 10px;
  margin-top: 6px;
  position: static !important;
}

.video-preview::before {
  display: none;
}

.video-preview span:last-child {
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 850;
}

.play-icon {
  background: var(--pink);
  border-radius: 50%;
  display: inline-block;
  height: 30px;
  position: relative;
  width: 30px;
}

.play-icon::after {
  border-bottom: 7px solid transparent;
  border-left: 10px solid var(--white);
  border-top: 7px solid transparent;
  content: "";
  left: 12px;
  position: absolute;
  top: 8px;
}

.pathway {
  align-items: center;
  display: grid;
  gap: 36px;
  grid-template-columns: 270px 1fr;
  padding-bottom: 34px;
  padding-top: 34px;
}

.pathway-portrait img {
  aspect-ratio: 1 / 1.12;
  height: auto;
  object-fit: cover;
  object-position: 50% 8%;
  width: 100%;
}

.pathway .section-label {
  margin-bottom: 28px;
}

.pathway-grid {
  gap: 26px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
}

.path-step {
  min-width: 0;
  padding-top: 68px;
  position: relative;
}

.path-step::before {
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  content: "";
  height: 58px;
  left: 0;
  position: absolute;
  top: 0;
  width: 58px;
}

.path-step::after {
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.38) 0 4px, transparent 4px 10px);
  content: "";
  height: 1px;
  left: 74px;
  position: absolute;
  right: -18px;
  top: 29px;
}

.path-step:last-child::before {
  border-color: var(--pink);
}

.path-step:last-child::after {
  display: none;
}

.path-step strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.16;
  margin-bottom: 10px;
}

.image-wall {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  padding: 0;
}

.image-wall .section-label {
  background: var(--bg);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  grid-column: 1 / -1;
  margin: 0;
  padding: 14px 28px;
  text-align: center;
}

.image-wall img {
  aspect-ratio: 1.18 / 1;
  height: 170px;
  object-fit: cover;
  width: 100%;
}

.booking {
  align-items: center;
  background:
    radial-gradient(ellipse at 15% 100%, rgba(0, 166, 255, 0.34), transparent 24%),
    radial-gradient(ellipse at 85% 100%, rgba(0, 166, 255, 0.26), transparent 28%),
    #06111e;
  display: flex;
  gap: 28px;
  justify-content: center;
  margin: 0;
  padding: 36px 28px;
  text-align: center;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.booking div {
  max-width: 760px;
}

.booking .section-label {
  display: none;
}

.booking h2 {
  font-size: clamp(1.6rem, 3vw, 2.28rem);
  margin-bottom: 6px;
}

.booking p {
  margin-bottom: 0;
}

.site-footer {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  padding: 24px clamp(24px, 5vw, 48px);
}

.site-footer div {
  display: grid;
  gap: 5px;
}

.site-footer strong {
  font-size: 1.42rem;
  font-weight: 950;
  text-transform: uppercase;
}

.site-footer span,
.site-footer a {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.speaker-page {
  padding-top: 78px;
}

.speaker-hero {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 1fr) minmax(220px, 310px);
  margin: 0 auto;
  max-width: var(--max);
  padding: 72px clamp(28px, 5vw, 48px) 46px;
}

.speaker-hero h1 {
  font-size: clamp(4rem, 8vw, 6.5rem);
  letter-spacing: 0;
  line-height: 0.9;
  margin-bottom: 16px;
}

.speaker-hero h2 {
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  line-height: 1.08;
  margin-bottom: 18px;
  max-width: 720px;
}

.speaker-hero p:not(.section-label) {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 690px;
}

.speaker-hero img {
  aspect-ratio: 1 / 1.08;
  border: 1px solid rgba(255, 255, 255, 0.16);
  height: auto;
  justify-self: end;
  max-width: 310px;
  object-fit: cover;
  object-position: 50% 8%;
  width: 100%;
}

.speaker-bio-section,
.speaker-topics-section {
  padding-top: 34px;
}

.bio-copy {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  margin: 0 auto;
  max-width: 920px;
}

@media (max-width: 1100px) {
  .site-nav {
    background: rgba(2, 7, 13, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    display: none;
    gap: 0;
    left: 0;
    padding: 12px 28px 24px;
    position: absolute;
    right: 0;
    top: 100%;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 12px 0;
  }

  .site-nav a:first-child::after {
    display: none;
  }

  .nav-cta {
    margin-top: 8px;
    width: max-content;
  }

  .nav-toggle {
    display: block;
  }

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

  .thought-leadership,
  .section-heading,
  .pathway {
    grid-template-columns: 1fr;
  }

  .pathway-portrait {
    display: none;
  }

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

  .topic-card:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }

  .media-grid,
  .cloud-grid,
  .framework-grid,
  .use-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cannes-primary,
  .speaker-hero {
    grid-template-columns: 1fr;
  }

  .speaker-hero img {
    justify-self: start;
    max-width: 260px;
  }

  .speaker-nav {
    right: 0;
  }
}

@media (max-width: 700px) {
  .site-header {
    height: 72px;
    padding: 0 20px;
  }

  .brand {
    min-width: 0;
  }

  .hero {
    min-height: 620px;
    padding: 124px 22px 54px;
  }

  .hero-media img {
    object-position: 68% 30%;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(2, 7, 13, 0.94) 0%, rgba(2, 7, 13, 0.7) 52%, rgba(2, 7, 13, 0.25) 100%),
      linear-gradient(90deg, rgba(2, 7, 13, 0.92), rgba(2, 7, 13, 0.18));
  }

  .hero h1 {
    font-size: clamp(3.7rem, 18vw, 5.5rem);
  }

  .hero-actions {
    gap: 12px;
    margin-top: 24px;
  }

  .button {
    min-height: 42px;
    padding: 11px 16px;
  }

  .trust-band,
  .section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .trust-logos,
  .thought-cards,
  .topic-grid,
  .media-grid,
  .cloud-grid,
  .framework-grid,
  .use-case-grid,
  .social-reels,
  .pathway-grid,
  .image-wall {
    display: grid;
    grid-template-columns: 1fr;
  }

  .trust-logos {
    gap: 18px;
  }

  .section-heading h2,
  .thought-copy h2 {
    font-size: 2rem;
  }

  .topic-card,
  .topic-card:nth-child(odd) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding: 22px 0 10px;
  }

  .topic-card:first-child {
    border-top: 0;
  }

  .media-card {
    min-height: 260px;
  }

  .framework-grid article,
  .use-case-grid article {
    padding: 20px;
  }

  .cannes-primary {
    padding: 22px;
  }

  .tiktok-embed {
    min-height: 420px;
  }

  .speaker-page {
    padding-top: 72px;
  }

  .speaker-hero {
    padding: 46px 22px 28px;
  }

  .speaker-hero img {
    max-width: 210px;
  }

  .speaker-hero h1 {
    font-size: clamp(3.7rem, 18vw, 5.5rem);
  }

  .path-step {
    padding: 0 0 0 74px;
  }

  .path-step::after {
    background: rgba(255, 255, 255, 0.24);
    height: calc(100% - 64px);
    left: 29px;
    right: auto;
    top: 66px;
    width: 1px;
  }

  .image-wall img {
    height: auto;
  }

  .booking {
    align-items: stretch;
    flex-direction: column;
  }

  .booking-actions {
    align-items: stretch;
    flex-direction: column;
  }

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