:root {
  --red: #eb0028;
  --red-deep: #b0001e;
  --red-dark: #650013;
  --red-pale: #fff0ee;
  --paper: #f3ebeb;
  --paper-deep: #e7dddd;
  --white: #ffffff;
  --ink: #171717;
  --muted: #646060;
  --charcoal: #252222;
  --line: rgba(169, 29, 22, .18);
  --line-strong: rgba(169, 29, 22, .34);
  --line-light: rgba(255, 255, 255, .23);
  --font-display: "Inter", Helvetica, Arial, sans-serif;
  --font-body: "EB Garamond", Garamond, "Times New Roman", serif;
  --header-h: 116px;
  --sidebar-w: 260px;
  --maxw: 1180px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-sharp: cubic-bezier(.77, 0, .18, 1);
  --hero-shift: 0px;
  --pointer-x: 70%;
  --pointer-y: 28%;
  --photo-spencer: image-set(
    url("../../assets/images/rochester-hills-spencer-park.avif") type("image/avif") 1x,
    url("../../assets/images/rochester-hills-spencer-park.jpg") type("image/jpeg") 1x
  );
  --photo-rochester-one: image-set(
    url("../../assets/images/rochester-hills-supplied-1.avif") type("image/avif") 1x,
    url("../../assets/images/rochester-hills-supplied-1.jpg") type("image/jpeg") 1x
  );
  --photo-rochester-two: image-set(
    url("../../assets/images/rochester-hills-supplied-2.avif") type("image/avif") 1x,
    url("../../assets/images/rochester-hills-supplied-2.jpg") type("image/jpeg") 1x
  );
  --photo-schedule: image-set(
    url("../../assets/images/schedule-flow.avif") type("image/avif") 1x,
    url("../../assets/images/schedule-flow.webp") type("image/webp") 1x,
    url("../../assets/images/schedule-flow.jpg") type("image/jpeg") 1x
  );
  --photo-flow: image-set(
    url("../../assets/images/flow-background.avif") type("image/avif") 1x,
    url("../../assets/images/flow-background.webp") type("image/webp") 1x,
    url("../../assets/images/flow-background.jpg") type("image/jpeg") 1x
  );
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 38px);
  background: var(--paper);
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  background: transparent;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

@supports (overflow: clip) {
  body[data-page="home"]:not(.nav-open) {
    overflow-x: clip;
  }
}

#neural-field {
  position: fixed !important;
  z-index: -3;
  inset: 0;
  width: 100vw;
  height: 100vh;
  opacity: .5;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 16%, rgba(176, 0, 30, .18), transparent 28rem),
    radial-gradient(circle at 82% 72%, rgba(101, 0, 19, .14), transparent 25rem),
    var(--paper);
}

#neural-field canvas {
  opacity: .94;
  filter: blur(.72px) saturate(1.14) contrast(1.08);
}

.site-main,
.page-next,
.site-footer {
  position: relative;
  z-index: 1;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -.042em;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: var(--white);
  background: var(--red);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 12px;
  padding: 9px 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.page-curtain {
  position: fixed;
  z-index: 999;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  transform: scaleY(1);
  transform-origin: top;
  transition: transform .72s var(--ease-sharp);
  pointer-events: none;
}

.page-curtain::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(255, 255, 255, .34) 50%, transparent 50.2%),
    linear-gradient(0deg, transparent 49.8%, rgba(255, 255, 255, .2) 50%, transparent 50.2%);
  background-size: 82px 82px;
}

.curtain-lockup {
  position: relative;
  display: grid;
  justify-items: start;
  min-width: min(560px, calc(100vw - 52px));
  padding: clamp(28px, 5vw, 58px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .48);
  background: var(--ink);
  box-shadow: 0 36px 100px -54px rgba(0, 0, 0, .68);
}

.curtain-brand {
  display: flex;
  align-items: baseline;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 5.4rem);
  line-height: .9;
  letter-spacing: -.06em;
}

.curtain-brand b {
  color: var(--red);
  font-weight: 800;
}

.curtain-brand span {
  color: var(--white);
  font-weight: 300;
}

.curtain-lockup small {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: clamp(.62rem, 1.2vw, .82rem);
  letter-spacing: .01em;
}

.curtain-lockup em {
  margin-top: clamp(34px, 7vw, 76px);
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 9vw, 7.5rem);
  font-style: normal;
  font-weight: 650;
  line-height: .84;
  letter-spacing: -.065em;
}

body.is-ready .page-curtain {
  transform: scaleY(0);
  transform-origin: top;
}

body.is-leaving .page-curtain {
  transform: scaleY(1);
  transform-origin: bottom;
}

.site-progress {
  position: fixed;
  z-index: 250;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, .13);
}

.site-progress-bar {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--red), #ff8d84);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

/* Refractive surfaces inherited from the reference site. */
[rt-liquid-glass] {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .78);
  background-color: var(--rt-liquid-tint, rgba(255, 255, 255, .46));
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, .94),
    inset -1px -1px 0 rgba(169, 29, 22, .1),
    0 28px 76px -48px rgba(101, 16, 11, .55);
}

[rt-liquid-glass]::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--glass-x, 18%) var(--glass-y, 8%), rgba(255, 255, 255, .84), transparent 31%),
    linear-gradient(125deg, rgba(255, 255, 255, .42), rgba(255, 255, 255, .08) 43%, rgba(230, 43, 30, .06) 76%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity .72s var(--ease);
}

[rt-liquid-glass]::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  border: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, .16), transparent 24% 76%, rgba(235, 0, 40, .06));
  box-shadow: none;
  opacity: 0;
  transition: opacity .72s var(--ease);
}

@media (hover: hover) {
  [rt-liquid-glass]:hover::before,
  [rt-liquid-glass]:hover::after,
  [rt-liquid-glass]:focus-within::before,
  [rt-liquid-glass]:focus-within::after {
    opacity: 1;
  }
}

[rt-liquid-glass] > * {
  position: relative;
  z-index: 1;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 200;
  inset: 0 0 auto;
  height: var(--header-h);
}

.utility-bar {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(18px, 3.4vw, 52px);
  overflow: hidden;
  color: rgba(255, 255, 255, .76);
  background: var(--charcoal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .075em;
  text-transform: none;
  transition: transform .5s var(--ease);
}

.utility-bar strong {
  color: var(--white);
  font-weight: 800;
}

.utility-links {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
}

.utility-links a {
  color: #ff8d84;
}

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

.conference-header {
  height: 84px;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 36px);
  padding: 0 clamp(18px, 3.4vw, 52px);
  border-bottom: 1px solid rgba(169, 29, 22, .14);
  border-radius: 0;
  background: rgba(255, 255, 255, .94);
  transition: height .5s var(--ease), transform .5s var(--ease), background .3s;
}

.site-header.is-condensed .utility-bar {
  transform: translateY(-100%);
}

.site-header.is-condensed .conference-header {
  height: 72px;
  transform: translateY(-32px);
  background: rgba(255, 255, 255, .97);
}

.conference-brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  min-width: 235px;
}

.brand-copy {
  display: grid;
  padding: 0;
  border-radius: 0;
  background: transparent;
  line-height: 1;
}

.brand-line {
  display: flex;
  align-items: baseline;
  letter-spacing: -.06em;
}

.brand-line .tedx {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 800;
}

.brand-line .place {
  margin-left: 2px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 400;
}

.brand-copy small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .06em;
}

.page-nav {
  margin-left: auto;
}

.page-nav > ul {
  display: flex;
  align-items: center;
  gap: clamp(9px, 1.25vw, 22px);
  list-style: none;
}

.page-nav a {
  position: relative;
  display: block;
  padding: 10px 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: color .25s;
}

.page-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 2px;
  background: var(--red);
  transition: right .4s var(--ease);
}

.page-nav a:hover,
.page-nav a:focus-visible,
.page-nav a.active {
  color: var(--red);
}

.page-nav a:hover::after,
.page-nav a:focus-visible::after,
.page-nav a.active::after {
  right: 0;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 27px;
  height: 1.5px;
  margin: 7px auto;
  background: var(--ink);
  transition: transform .35s var(--ease), opacity .25s;
}

body.nav-open .menu-toggle span:first-child {
  transform: translateY(4.25px) rotate(45deg);
}

body.nav-open .menu-toggle span:last-child {
  transform: translateY(-4.25px) rotate(-45deg);
}

/* Same-page section navigation on every page. */
.anchor-sidebar {
  --side-progress: 0;
  position: fixed;
  z-index: 90;
  top: var(--header-h);
  bottom: 0;
  left: 0;
  width: var(--sidebar-w);
  padding: 40px 28px 30px;
  overflow: hidden;
  color: var(--white);
  background: var(--red-dark);
}

.anchor-sidebar::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .46;
  background: var(--photo-spencer) 47% center / cover;
  filter: saturate(.8) contrast(1.05);
  transform: scale(1.07) translateY(calc(var(--side-progress) * -16px));
  will-change: transform;
}

.anchor-sidebar::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(101, 16, 11, .96) 2%, rgba(230, 43, 30, .76) 48%, rgba(73, 8, 5, .97) 100%),
    linear-gradient(90deg, rgba(61, 7, 5, .52), transparent);
}

.anchor-sidebar > * {
  position: relative;
  z-index: 1;
}

.sidebar-mark {
  padding-bottom: 27px;
  border-bottom: 1px solid var(--line-light);
}

.sidebar-mark strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
}

.sidebar-mark span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, .62);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: none;
}

.anchor-title {
  margin: 29px 0 11px;
  color: #ffc4bf;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: none;
}

.anchor-nav {
  display: grid;
}

.anchor-nav a {
  display: grid;
  grid-template-columns: 25px 1fr;
  align-items: center;
  gap: 9px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .66);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.3;
  transition: color .25s, padding-left .35s var(--ease);
}

.anchor-index {
  color: #ffc4bf;
  font-family: var(--font-display);
  font-size: 15px;
}

.anchor-nav a:hover,
.anchor-nav a:focus-visible,
.anchor-nav a.active {
  padding-left: 6px;
  color: var(--white);
}

.sidebar-meta {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, .62);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: none;
}

.site-main {
  min-height: calc(100vh - var(--header-h));
  margin-left: var(--sidebar-w);
  padding-top: var(--header-h);
}

.content-wrap {
  width: min(var(--maxw), calc(100% - 64px));
  margin: 0 auto;
}

/* Mastheads */
.page-masthead {
  position: relative;
  min-height: clamp(470px, 65vh, 690px);
  display: flex;
  align-items: flex-end;
  padding: clamp(66px, 8vw, 116px) 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--photo-spencer) center calc(53% + var(--hero-shift)) / cover no-repeat;
}

.page-masthead::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, .42), transparent 29%),
    linear-gradient(90deg, rgba(53, 5, 3, .64) 0%, rgba(169, 29, 22, .5) 52%, rgba(230, 43, 30, .22) 100%),
    linear-gradient(0deg, rgba(23, 23, 23, .26), transparent 44%);
}

.page-masthead::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), rgba(255, 255, 255, .9), transparent 82%);
}

.masthead-panel {
  position: relative;
  width: min(900px, 87%);
  padding: clamp(30px, 4.6vw, 56px);
  border-radius: 34px;
  background: rgba(255, 255, 255, .56);
}

.page-masthead h1 {
  max-width: 12ch;
  margin: 0 0 19px;
  font-size: clamp(4rem, 7.2vw, 7.1rem);
  line-height: .84;
  letter-spacing: -.065em;
  text-wrap: balance;
}

.title-word {
  display: inline-block;
  margin-right: .14em;
}

.js .title-word {
  opacity: 0;
  transform: translateY(70%) rotate(2deg);
}

body.is-ready .title-word {
  opacity: 1;
  transform: none;
  transition: opacity .68s var(--ease), transform .95s var(--ease);
  transition-delay: calc(.12s + var(--word-index) * .07s);
}

.page-masthead .subtitle {
  max-width: 62ch;
  color: var(--charcoal);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 600;
  line-height: 1.5;
  text-wrap: balance;
}

.home-hero {
  min-height: calc(100svh - 32px);
  align-items: center;
  padding-top: clamp(106px, 12vw, 166px);
}

.home-hero .masthead-panel {
  width: min(950px, 91%);
}

.home-hero h1 {
  max-width: none;
  font-size: clamp(4.8rem, 9vw, 8.8rem);
}

.home-hero .subtitle {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.045em;
}

.hero-date {
  margin-top: 18px;
  color: var(--red-deep);
  font-size: .96rem;
  font-weight: 700;
  letter-spacing: .01em;
}

.hero-context {
  max-width: 65ch;
  margin-top: 12px;
  color: var(--charcoal);
  font-size: 1rem;
}

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

.photo-credit {
  color: rgba(255, 255, 255, .72);
  font-size: 9px;
  letter-spacing: .04em;
}

.hero-credit {
  position: absolute;
  right: 18px;
  bottom: 12px;
}

/* Content */
.content-section {
  position: relative;
  padding: clamp(74px, 9vw, 128px) 0;
  scroll-margin-top: calc(var(--header-h) + 28px);
}

.content-section.is-render-managed {
  content-visibility: auto;
  contain-intrinsic-size: auto var(--section-intrinsic-size, 900px);
}

.content-section.image-band {
  --section-photo: var(--photo-rochester-one);
  --section-photo-position: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--paper-deep);
  border-top: 1px solid rgba(169, 29, 22, .08);
  border-bottom: 1px solid rgba(169, 29, 22, .08);
}

.content-section.image-band::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, .42), rgba(235, 0, 40, .16) 50%, rgba(255, 255, 255, .36)),
    var(--section-photo) var(--section-photo-position) / cover no-repeat;
  filter: saturate(.86) contrast(1.04);
  transform: scale(1.02);
}

.content-section.image-band::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .28), rgba(255, 255, 255, .1)),
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, .5), transparent 34%);
}

#community,
#livestream,
#production {
  --section-photo: var(--photo-rochester-one);
  --section-photo-position: center 52%;
}

#theme,
#session-format,
#opportunities,
#official-event {
  --section-photo: var(--photo-rochester-two);
  --section-photo-position: center 62%;
}

#experience,
#speaker-application,
#message {
  --section-photo: var(--photo-spencer);
  --section-photo-position: center 54%;
}

#participate,
#additional-speakers,
#partner-contact {
  --section-photo: var(--photo-rochester-two);
  --section-photo-position: center 48%;
}

.glass-panel {
  padding: clamp(30px, 4.2vw, 58px);
  border: 1px solid rgba(169, 29, 22, .14);
  border-radius: 32px;
  background: rgba(255, 255, 255, .28);
  box-shadow: 0 34px 90px -64px rgba(101, 16, 11, .55);
}

.section-heading {
  max-width: 17ch;
  margin: 0 0 24px;
  font-size: clamp(2.75rem, 5vw, 5.6rem);
  line-height: .94;
  text-wrap: balance;
}

.section-lead {
  max-width: 70ch;
  color: var(--charcoal);
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
  line-height: 1.55;
}

.quote-interlude {
  --quote-top: 72px;
  position: relative;
  padding: clamp(64px, 8vw, 112px) 0;
  scroll-margin-top: calc(var(--quote-top) - var(--header-h) - 38px);
  background: #fff9f7;
}

.quote-stage {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: min(640px, 80svh);
  padding: clamp(32px, 5vw, 68px) clamp(24px, 5vw, 76px);
  overflow: hidden;
  background: #fff9f7;
}

.quote-stage::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -45%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 25% 35%, rgba(235, 0, 40, .30), transparent 42%),
    radial-gradient(ellipse at 75% 65%, rgba(235, 0, 40, .24), transparent 40%),
    radial-gradient(ellipse at 65% 20%, rgba(255, 255, 255, .95), transparent 38%),
    radial-gradient(ellipse at 35% 80%, rgba(255, 255, 255, .90), transparent 38%);
  animation: quote-gradient-flow 2.8s cubic-bezier(.45, 0, .55, 1) infinite alternate;
  animation-play-state: paused;
}

.is-quote-active .quote-stage::before {
  animation-play-state: running;
  will-change: transform;
}

@keyframes quote-gradient-flow {
  0% { transform: translate3d(-12%, -10%, 0) rotate(-12deg) scale(1.05); }
  33% { transform: translate3d(12%, -5%, 0) rotate(12deg) scale(1.1); }
  66% { transform: translate3d(-4%, 12%, 0) rotate(-6deg) scale(1.05); }
  100% { transform: translate3d(10%, 6%, 0) rotate(18deg) scale(1.1); }
}

.theme-quote {
  width: 100%;
  max-width: 1060px;
  margin: 0;
  color: var(--red-deep);
}

.theme-quote p {
  margin: 0;
  color: inherit;
  font-size: clamp(1.9rem, 4.2vw, 4.3rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.quote-word {
  display: inline-block;
  transform-origin: 50% 80%;
}

.quote-interlude.is-scroll-animated {
  height: calc(var(--quote-height) + var(--quote-travel));
  padding: 0;
}

.is-scroll-animated .quote-stage {
  position: sticky;
  top: var(--quote-top);
  height: var(--quote-height);
  min-height: 0;
}

.is-scroll-animated.is-quote-active .quote-word {
  will-change: transform, opacity, filter;
}

@media (max-width: 1050px) {
  .quote-interlude { --quote-top: 134px; }
}

@media (prefers-reduced-motion: reduce) {
  .quote-stage::before {
    animation: none;
    transform: none;
    will-change: auto;
  }

  .quote-interlude.is-scroll-animated {
    height: auto;
    padding: clamp(64px, 8vw, 112px) 0;
  }

  .is-scroll-animated .quote-stage {
    position: static;
    height: auto;
  }

  .quote-word {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    will-change: auto !important;
  }
}

.prose {
  max-width: 72ch;
  color: var(--charcoal);
}

.prose p + p {
  margin-top: 1em;
}

.prose.columns {
  max-width: none;
  column-count: 2;
  column-gap: clamp(32px, 5vw, 72px);
}

.prose.columns p {
  break-inside: avoid;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(250px, .7fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: start;
  margin-top: 34px;
}

.side-card {
  min-height: 220px;
  padding: 30px;
  border-radius: 26px;
  background: rgba(255, 255, 255, .46);
}

.side-card h3 {
  margin: 13px 0 15px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.02;
}

.side-card p,
.side-card li {
  color: var(--muted);
  font-size: .94rem;
}

.card-kicker,
.session-type {
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: none;
}

.idea-grid,
.action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.info-card,
.action-card,
.contact-card {
  position: relative;
  min-height: 280px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, .67);
  transition: transform .42s var(--ease), border-color .3s, box-shadow .42s var(--ease);
}

.info-card:hover,
.action-card:hover,
.contact-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 28px 58px -46px rgba(101, 16, 11, .6);
}

.info-card::after,
.action-card::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -75px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(230, 43, 30, .13);
  border-radius: 50%;
}

.number {
  display: block;
  margin-bottom: 42px;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.info-card h3,
.action-card h3,
.contact-card h3 {
  margin-bottom: 15px;
  font-size: clamp(1.75rem, 2.5vw, 2.6rem);
}

.info-card p,
.action-card p,
.contact-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
}

.action-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
}

.action-card .button,
.action-card form {
  margin-top: auto;
}

.section-intro-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.section-intro-row .section-heading {
  margin-bottom: 0;
}

/* Buttons and links */
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid var(--red);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .025em;
  text-align: center;
  transition: transform .3s var(--ease), color .25s, background .25s, box-shadow .3s;
}

.button.secondary[rt-liquid-glass] {
  color: #850017;
  background: rgba(255, 255, 255, .56);
  border-color: rgba(255, 255, 255, .86);
}

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

.button.primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 15px 32px -22px rgba(169, 29, 22, .9);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--red-deep);
}

.button.secondary {
  color: var(--red-deep);
  background: rgba(255, 255, 255, .55);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  color: var(--white);
  background: var(--red);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--red-deep);
  font-size: 12px;
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.text-link span {
  transition: transform .3s var(--ease);
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

.light-link {
  color: var(--red-dark);
}

/* Speakers and team */
.speaker-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.speaker-card,
.team-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, .72);
  transition: transform .42s var(--ease), box-shadow .42s var(--ease);
}

.speaker-card:hover,
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px -52px rgba(101, 16, 11, .64);
}

.portrait-placeholder {
  position: relative;
  min-height: 300px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: rgba(101, 16, 11, .42);
  background:
    linear-gradient(135deg, rgba(230, 43, 30, .1), rgba(255, 255, 255, .75)),
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(169, 29, 22, .035) 18px 19px);
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: none;
}

.speaker-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid var(--line);
  background: var(--red-pale);
}

.speaker-photo.pavan-photo,
.profile-photo.pavan-photo {
  object-position: 60% center;
}

.portrait-placeholder::before,
.portrait-placeholder::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(230, 43, 30, .11);
  border-radius: 50%;
}

.portrait-placeholder::before {
  width: 110px;
  height: 110px;
  top: 62px;
}

.portrait-placeholder::after {
  width: 220px;
  height: 160px;
  top: 185px;
}

.portrait-placeholder span {
  position: relative;
  z-index: 1;
  padding: 6px 9px;
  background: rgba(255, 255, 255, .78);
}

.speaker-copy,
.team-card {
  padding: 27px;
}

.speaker-card .speaker-copy {
  min-height: 250px;
}

.speaker-card h3,
.team-card h3 {
  margin: 10px 0 13px;
  font-size: clamp(1.75rem, 2.6vw, 2.5rem);
}

.speaker-card h3 a {
  transition: color .25s;
}

.speaker-card h3 a:hover,
.speaker-card h3 a:focus-visible {
  color: var(--red);
}

.speaker-card h3 span {
  color: var(--red);
  font-family: var(--font-body);
  font-size: .7em;
}

.speaker-card p,
.team-card p {
  color: var(--muted);
  font-size: .94rem;
}

.speaker-card .speaker-topic {
  margin-bottom: 9px;
  color: var(--red-deep);
  font-weight: 700;
}

.compact-speaker-grid .portrait-placeholder {
  min-height: 235px;
}

.placeholder-speaker-grid .speaker-card {
  opacity: .83;
}

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

.team-card {
  padding: 0 0 26px;
}

.team-card > .card-kicker,
.team-card > h3,
.team-card > p {
  margin-left: 27px;
  margin-right: 27px;
}

.team-card > .card-kicker {
  display: block;
  margin-top: 25px;
}

.team-card .portrait-placeholder {
  min-height: 230px;
}

/* Schedule */
.notice {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
  padding: 12px 16px;
  color: var(--red-dark);
  border-left: 3px solid var(--red);
  background: var(--red-pale);
  font-size: .88rem;
}

.notice strong {
  font-weight: 800;
}

.timeline {
  margin-top: 40px;
  padding: 10px 30px;
  border-radius: 26px;
  background: rgba(255, 255, 255, .44);
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item:last-child {
  border-bottom: 0;
}

.timeline-item time {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
}

.timeline-item h3 {
  margin: 7px 0 8px;
  font-size: clamp(1.6rem, 2.6vw, 2.5rem);
}

.timeline-item p {
  color: var(--muted);
}

/* Forms */
.inline-form {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}

.inline-form label {
  flex: 1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  outline: 0;
  background: rgba(255, 255, 255, .78);
  transition: border-color .25s, box-shadow .25s;
}

input,
select {
  height: 50px;
  padding: 0 15px;
}

textarea {
  min-height: 140px;
  padding: 14px 15px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(230, 43, 30, .12);
}

.signup-form {
  max-width: 760px;
  margin-top: 34px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 20px;
}

.form-grid label {
  display: grid;
  gap: 7px;
  color: var(--charcoal);
  font-size: .82rem;
  font-weight: 700;
}

.form-grid .full-field {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 1.5em;
  margin-top: 11px;
  color: var(--red-deep);
  font-size: .84rem;
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 20px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

/* Partners, contact, and FAQ */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.logo-placeholder {
  min-height: 170px;
  display: grid;
  place-items: center;
  color: rgba(101, 16, 11, .45);
  border: 1px dashed rgba(169, 29, 22, .3);
  border-radius: 22px;
  background: rgba(255, 255, 255, .56);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: none;
}

.sponsor-logo-grid {
  grid-template-columns: minmax(0, 360px);
}

.sponsor-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 34px;
  color: #18453b;
  text-align: center;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 24px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 28px 70px -48px rgba(0, 0, 0, .72);
}

.sponsor-logo {
  width: min(140px, 46%);
  height: auto;
  display: block;
}

.sponsor-card span {
  max-width: 26ch;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.sponsor-card:hover,
.sponsor-card:focus-visible {
  color: #18453b;
}

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

.contact-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
}

.placeholder-label {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  padding: 7px 10px;
  color: var(--red-deep);
  background: var(--red-pale);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: none;
}

.faq-list {
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.1vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  color: var(--red);
  font-family: var(--font-body);
  font-size: 1.5rem;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 72ch;
  padding: 0 48px 24px 0;
  color: var(--muted);
}

.social-placeholder-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.social-placeholder-row span {
  padding: 10px 16px;
  color: var(--red-deep);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, .55);
  font-size: .85rem;
  font-weight: 700;
}

/* Extend the reference template's refractive surfaces across every component. */
.glass-panel[rt-liquid-glass] {
  border-color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .24);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, .92),
    inset -1px -1px 0 rgba(169, 29, 22, .09),
    0 34px 90px -52px rgba(61, 7, 5, .58);
}

.side-card[rt-liquid-glass],
.info-card[rt-liquid-glass],
.action-card[rt-liquid-glass],
.speaker-card[rt-liquid-glass],
.team-card[rt-liquid-glass],
.contact-card[rt-liquid-glass],
.logo-placeholder[rt-liquid-glass] {
  border-color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .2);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, .86),
    0 24px 58px -40px rgba(61, 7, 5, .52);
}

.timeline[rt-liquid-glass] {
  background: rgba(255, 255, 255, .18);
}

.timeline-item[rt-liquid-glass] {
  margin: 10px 0;
  padding: 26px 20px;
  border: 1px solid rgba(255, 255, 255, .54);
  border-radius: 20px;
  background: rgba(255, 255, 255, .1);
}

.faq-list details[rt-liquid-glass] {
  margin: 12px 0;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, .54);
  border-radius: 18px;
  background: rgba(255, 255, 255, .1);
}

.signup-form[rt-liquid-glass] {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .16);
}

.notice[rt-liquid-glass] {
  border: 1px solid rgba(255, 255, 255, .58);
  border-left: 3px solid var(--red);
  border-radius: 16px;
  background: rgba(255, 255, 255, .16);
}

.button[rt-liquid-glass] {
  border-color: rgba(255, 255, 255, .66);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, .5),
    0 18px 34px -24px rgba(61, 7, 5, .64);
}

.button.primary[rt-liquid-glass] {
  color: var(--white);
  background: rgba(235, 0, 40, .88);
}

.button.secondary[rt-liquid-glass] {
  color: var(--red-dark);
  background: rgba(255, 255, 255, .18);
}

.page-next > a[rt-liquid-glass],
.footer-inner[rt-liquid-glass] {
  border-color: rgba(255, 255, 255, .26);
  background: rgba(23, 23, 23, .26);
}

.footer-inner[rt-liquid-glass] {
  margin-top: 28px;
  padding: 46px 40px 38px;
  border-radius: 28px;
}

/* Page flow and footer */
.page-next {
  margin-left: var(--sidebar-w);
  color: var(--white);
  background: var(--red);
}

.page-next a {
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(40px, 6vw, 82px);
  overflow: hidden;
}

.page-next-copy {
  display: grid;
  gap: 4px;
}

.page-next-copy span {
  color: rgba(255, 255, 255, .7);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: none;
}

.page-next-copy strong {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6.8rem);
  font-weight: 500;
  line-height: .95;
  letter-spacing: -.05em;
}

.page-next-arrow {
  font-family: var(--font-body);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-style: normal;
  transition: transform .45s var(--ease);
}

.page-next a:hover .page-next-arrow,
.page-next a:focus-visible .page-next-arrow {
  transform: translate(7px, -7px);
}

.site-footer {
  margin-left: var(--sidebar-w);
  color: rgba(255, 255, 255, .72);
  background: var(--charcoal);
}

.footer-inner {
  width: min(1180px, calc(100% - 64px));
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 38px;
  margin: 0 auto;
  padding: 58px 0 44px;
}

.footer-brand {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  letter-spacing: -.04em;
}

.footer-brand .tedx {
  color: var(--red);
  font-weight: 800;
}

.footer-brand .place {
  color: var(--white);
}

.footer-inner strong {
  display: block;
  margin-bottom: 11px;
  color: var(--white);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: none;
}

.footer-inner p,
.footer-inner a {
  font-size: .82rem;
}

.footer-inner a {
  color: #ff9b93;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color .25s;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
  text-decoration-color: currentColor;
}

.footer-legal {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 19px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .48);
  font-size: .72rem;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(32px);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity .72s var(--ease), transform .8s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

/* Expanded editorial and interaction system. */
.utility-bar,
.conference-header,
.anchor-sidebar,
.button,
.card-kicker,
.number,
.session-type,
.speaker-topic,
.placeholder-label,
.page-next,
.site-footer,
button,
input,
select,
textarea {
  font-family: var(--font-display);
}

.glass-panel[rt-liquid-glass],
.profile-card[rt-liquid-glass] {
  background: rgba(255, 255, 255, .08);
}

.masthead-panel[rt-liquid-glass] {
  color: rgba(255, 255, 255, .94);
  background: rgba(18, 14, 16, .46);
  border-color: rgba(255, 255, 255, .72);
}

.page-masthead .masthead-panel :is(h1, .subtitle, .hero-context, .light-link) {
  color: inherit;
}

.page-masthead .masthead-panel .hero-date {
  color: #ff9a91;
}

.glass-tone-light[rt-liquid-glass] {
  background: rgba(255, 255, 255, .09);
}

.glass-tone-red[rt-liquid-glass] {
  background: rgba(235, 0, 40, .23);
  border-color: rgba(255, 255, 255, .62);
}

.glass-tone-dark[rt-liquid-glass],
.tone-dark[rt-liquid-glass] {
  color: rgba(255, 255, 255, .9);
  background: rgba(16, 14, 15, .56);
  border-color: rgba(255, 255, 255, .26);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, .24),
    0 34px 90px -60px rgba(0, 0, 0, .92);
}

.glass-tone-dark :is(h2, h3, h4, p, time, a, .number, .session-type, .speaker-topic),
.tone-dark :is(h1, h2, h3, h4, p, li, a, .number, .section-lead, .prose, .text-link) {
  color: inherit;
}

.glass-tone-dark .number,
.tone-dark .number,
.tone-dark .text-link {
  color: #ff9a91;
}

.section-glass {
  isolation: isolate;
  border-top: 1px solid rgba(255, 255, 255, .58);
  border-bottom: 1px solid rgba(169, 29, 22, .14);
  background: rgba(255, 255, 255, .1);
}

.section-glass[rt-liquid-glass] {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, .08);
}

.section-glass.tone-dark,
.section-glass.tone-dark[rt-liquid-glass] {
  color: rgba(255, 255, 255, .9);
  background:
    linear-gradient(118deg, rgba(15, 13, 14, .91), rgba(53, 7, 15, .82)),
    rgba(16, 14, 15, .74);
}

.section-glass > .content-wrap {
  padding-top: clamp(20px, 2vw, 30px);
  padding-bottom: clamp(20px, 2vw, 30px);
}

.content-section.image-band {
  --section-photo: var(--photo-rochester-one);
}

.content-section.image-band::before {
  background:
    linear-gradient(110deg, rgba(18, 13, 14, .36), rgba(235, 0, 40, .12) 50%, rgba(255, 255, 255, .13)),
    var(--section-photo) var(--section-photo-position) / cover no-repeat;
  filter: saturate(.94) contrast(1.08);
}

.content-section.image-band::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .1), rgba(15, 12, 13, .14)),
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, .28), transparent 34%);
}

#community,
#janilla-lee,
#message,
#livestream,
#production,
#partner-contact,
#day-at-a-glance {
  --section-photo: var(--photo-rochester-one);
  --section-photo-position: center 48%;
}

#day-at-a-glance::before {
  background-attachment: fixed;
}

#theme,
#speaker-application,
#kaiqi-zhao,
#opportunities,
#official-event {
  --section-photo: var(--photo-rochester-two);
  --section-photo-position: center 54%;
}

#experience,
#participate {
  --section-photo: var(--photo-spencer);
  --section-photo-position: center 52%;
}

.ambient-zone {
  --ambient-x: 50%;
  --ambient-y: 50%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.ambient-zone > .ambient-glow {
  position: absolute !important;
  z-index: 0 !important;
  inset: -18%;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--ambient-x) var(--ambient-y), rgba(235, 0, 40, .28), transparent 18%),
    radial-gradient(circle at calc(var(--ambient-x) + 8%) calc(var(--ambient-y) - 6%), rgba(255, 255, 255, .34), transparent 24%);
  opacity: .82;
}

.ambient-zone > :not(.ambient-glow) {
  position: relative;
  z-index: 1;
}

.tone-dark .ambient-glow {
  opacity: .62;
  background:
    radial-gradient(circle at var(--ambient-x) var(--ambient-y), rgba(235, 0, 40, .4), transparent 19%),
    radial-gradient(circle at calc(var(--ambient-x) + 8%) calc(var(--ambient-y) - 6%), rgba(255, 255, 255, .14), transparent 25%);
}

.home-speaker-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 16px;
  margin-top: 34px;
}

.speaker-list-section {
  background: #fff;
  color: var(--ink);
}

.sponsor-card.sponsor-card[rt-liquid-glass] {
  color: #18453b;
  background: rgba(255, 255, 255, .78);
}

.home-speaker-card {
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .66);
  border-radius: 24px;
}

.home-speaker-card .speaker-photo,
.home-speaker-card .portrait-placeholder {
  width: 100%;
  min-height: 0;
  aspect-ratio: 4 / 5;
  border: 0;
  border-radius: 0;
  object-fit: cover;
}

.home-speaker-picture,
.profile-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.home-speaker-picture {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.home-speaker-picture .speaker-photo {
  height: 100%;
}

.home-speaker-card .speaker-copy {
  flex: 1 0 auto;
  min-height: 15rem;
  padding: 20px 19px 23px;
}

/* Portraits never borrow height from the text, even for the longest talk titles. */
.home-speaker-card > :is(.home-speaker-picture, .speaker-photo, .portrait-placeholder) {
  flex: 0 0 auto;
  height: auto;
  min-height: 0;
}

.home-speaker-card h3 {
  min-height: 3.12em;
  font-size: clamp(1.22rem, 1.7vw, 1.68rem);
  line-height: 1.04;
}

.speaker-grid-twelve .home-speaker-card h3 {
  font-size: clamp(1.18rem, 1.35vw, 1.46rem);
}

.home-speaker-card p {
  margin-top: 9px;
  color: inherit;
  font-size: .98rem;
  line-height: 1.36;
}

.speaker-order-note {
  margin-top: 12px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: .74rem;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: .055em;
}

.tone-dark .speaker-order-note {
  color: rgba(255, 255, 255, .72);
}

.speaker-directory-panel {
  padding: clamp(30px, 4vw, 54px);
}

.speaker-directory-card {
  color: inherit;
  cursor: pointer;
  transition:
    transform .45s var(--ease),
    border-color .45s var(--ease),
    box-shadow .45s var(--ease);
}

.speaker-directory-card:hover,
.speaker-directory-card:focus-visible {
  border-color: rgba(235, 0, 40, .78);
  box-shadow: 0 22px 48px rgba(92, 0, 18, .2);
  transform: translateY(-6px);
}

.speaker-directory-card:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.speaker-directory-card .speaker-copy {
  display: flex;
  flex-direction: column;
}

.speaker-jump {
  margin-top: auto;
  padding-top: 17px;
  color: var(--red-deep);
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
}

.glass-tone-red .speaker-jump,
.glass-tone-dark .speaker-jump {
  color: #ffd0cc;
}

.speaker-profile {
  min-height: 650px;
}

.profile-card {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr);
  align-items: stretch;
  gap: clamp(24px, 5vw, 76px);
  padding: clamp(18px, 2.4vw, 30px);
  overflow: hidden;
  border-radius: 34px;
}

.profile-reverse .profile-visual {
  order: 2;
}

.profile-reverse .profile-copy {
  order: 1;
}

.profile-visual {
  min-height: 500px;
  overflow: hidden;
  border-radius: 24px;
}

.profile-photo,
.profile-placeholder {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.profile-picture .profile-photo {
  height: 100%;
}

.profile-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 4vw, 64px) clamp(10px, 2vw, 28px);
}

.profile-copy h2 {
  margin: 10px 0 26px;
  font-size: clamp(3rem, 5.3vw, 6.2rem);
  line-height: .88;
  text-wrap: balance;
}

.profile-copy h2 span {
  display: inline-block;
  color: var(--red);
  font-size: .35em;
  transition: transform .35s var(--ease);
}

.profile-copy h2 a:hover span,
.profile-copy h2 a:focus-visible span {
  transform: translate(5px, -5px);
}

.profile-copy p:not(.speaker-topic) {
  max-width: 62ch;
  font-size: clamp(1.06rem, 1.5vw, 1.23rem);
}

.profile-copy p + p {
  margin-top: 14px;
}

.schedule-journey {
  min-height: 1700px;
}

.schedule-journey .section-heading {
  color: var(--white);
  text-shadow: 0 3px 28px rgba(0, 0, 0, .46);
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(58px, 8vw, 100px);
  margin-top: 54px;
  padding: 70px 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.schedule-thread {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.schedule-thread path {
  fill: none;
  stroke: var(--red);
  stroke-width: 5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(235, 0, 40, .74));
  transition: stroke-dashoffset .12s linear;
}

.timeline-item {
  z-index: 1;
  width: calc(50% - 70px);
  min-height: 220px;
  align-self: flex-start;
  margin: 0;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 26px;
  transition:
    opacity .72s var(--ease),
    transform .82s var(--ease),
    box-shadow .55s var(--ease),
    border-color .55s var(--ease);
}

.timeline-item:nth-of-type(even) {
  align-self: flex-end;
}

.timeline-item.reveal {
  transform: translateX(-74px) scale(.96);
}

.timeline-item:nth-of-type(even).reveal {
  transform: translateX(74px) scale(.96);
}

.timeline-item.reveal.is-visible {
  transform: none;
}

.timeline-item.is-current {
  z-index: 2;
  transform: scale(1.028) !important;
  border-color: rgba(255, 255, 255, .96);
  box-shadow:
    0 0 0 1px rgba(235, 0, 40, .28),
    0 0 42px rgba(235, 0, 40, .4),
    0 34px 90px -52px rgba(0, 0, 0, .9);
}

.timeline-item time {
  font-size: clamp(1.28rem, 2vw, 1.75rem);
}

.timeline-item p {
  color: inherit;
}

.page-next,
.page-next a {
  border: 0;
  background: linear-gradient(112deg, #eb0028, #8f0019 72%, #250007);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.page-next a {
  box-shadow: inset 0 1px rgba(255, 255, 255, .18);
}

@media (min-width: 1051px) {
  .anchor-nav {
    max-height: calc(100vh - var(--header-h) - 255px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, .26) transparent;
  }

  .anchor-nav::-webkit-scrollbar {
    width: 4px;
  }

  .anchor-nav::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: rgba(255, 255, 255, .26);
  }
}

@media (max-width: 1220px) {
  .conference-brand {
    min-width: 206px;
  }

  .brand-line .tedx {
    font-size: 22px;
  }

  .brand-line .place {
    font-size: 20px;
  }

  .page-nav > ul {
    gap: 11px;
  }

  .page-nav a {
    font-size: 11px;
  }
}

@media (max-width: 1050px) {
  :root {
    --header-h: 84px;
  }

  .utility-bar {
    display: none;
  }

  .conference-header,
  .site-header.is-condensed .conference-header {
    height: 84px;
    transform: none;
    border-radius: 0;
    overflow: visible;
  }

  .menu-toggle {
    display: block;
  }

  .page-nav {
    position: fixed;
    z-index: 205;
    top: var(--header-h);
    right: 0;
    bottom: auto;
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    width: min(420px, 90vw);
    margin: 0;
    padding: 30px;
    overflow-y: auto;
    background: rgba(255, 255, 255, .97);
    border-left: 1px solid var(--line);
    transform: translateX(105%);
    transition: transform .48s var(--ease);
  }

  body.nav-open .page-nav {
    transform: none;
  }

  .page-nav > ul {
    display: grid;
    gap: 0;
  }

  .page-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 500;
  }

  .page-nav a::after {
    display: none;
  }

  .anchor-sidebar {
    top: var(--header-h);
    right: 0;
    bottom: auto;
    width: 100%;
    height: 54px;
    padding: 0 18px;
    overflow-x: auto;
    overflow-y: hidden;
    background: var(--red);
    scrollbar-width: none;
  }

  .anchor-sidebar::-webkit-scrollbar {
    display: none;
  }

  .anchor-sidebar::before,
  .anchor-sidebar::after,
  .sidebar-mark,
  .anchor-title,
  .sidebar-meta {
    display: none;
  }

  .anchor-nav {
    width: max-content;
    display: flex;
    gap: 2px;
  }

  .anchor-nav a {
    min-height: 54px;
    display: flex;
    gap: 7px;
    padding: 0 14px;
    border: 0;
    color: rgba(255, 255, 255, .76);
    white-space: nowrap;
  }

  .anchor-nav a:hover,
  .anchor-nav a:focus-visible,
  .anchor-nav a.active {
    padding-left: 14px;
    color: var(--white);
    background: rgba(101, 16, 11, .28);
  }

  .anchor-index {
    color: #ffd4d0;
  }

  .site-main {
    margin-left: 0;
    padding-top: calc(var(--header-h) + 54px);
  }

  .page-next,
  .site-footer {
    margin-left: 0;
  }

  .page-masthead {
    min-height: 570px;
  }
}

@media (max-width: 820px) {
  .content-wrap,
  .footer-inner,
  .footer-legal {
    width: min(100% - 36px, var(--maxw));
  }

  .masthead-panel {
    width: 100%;
  }

  .feature-split,
  .idea-grid,
  .action-grid,
  .speaker-grid,
  .team-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

  .prose.columns {
    column-count: 1;
  }

  .section-intro-row {
    align-items: start;
    flex-direction: column;
  }

  .info-card,
  .contact-card {
    min-height: 240px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 15px;
  }

  .conference-header {
    padding: 0 17px;
  }

  .conference-brand {
    min-width: 0;
  }

  .brand-line .tedx {
    font-size: 20px;
  }

  .brand-line .place {
    font-size: 18px;
  }

  .brand-copy small {
    font-size: 7px;
  }

  .content-wrap,
  .footer-inner,
  .footer-legal {
    width: min(100% - 26px, var(--maxw));
  }

  .page-masthead {
    min-height: 520px;
    padding: 54px 0;
  }

  .home-hero {
    min-height: calc(100svh - var(--header-h) - 54px);
    padding-top: 60px;
  }

  .masthead-panel,
  .glass-panel {
    padding: 27px 23px;
    border-radius: 24px;
  }

  .page-masthead h1 {
    font-size: clamp(3.4rem, 16vw, 5.4rem);
  }

  .home-hero h1 {
    font-size: clamp(3.35rem, 15vw, 4.65rem);
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    align-self: flex-start;
    margin-top: 8px;
  }

  .hero-credit {
    right: 12px;
    left: 12px;
    text-align: right;
  }

  .content-section {
    padding: 68px 0;
  }

  .section-heading {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .compact-speaker-grid,
  .logo-grid {
    grid-template-columns: 1fr;
  }

  .portrait-placeholder {
    min-height: 250px;
  }

  .timeline {
    padding: 8px 20px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 24px 0;
  }

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

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

  .form-grid .full-field {
    grid-column: auto;
  }

  .inline-form {
    flex-direction: column;
  }

  .page-next a {
    min-height: 210px;
    padding: 36px 22px;
  }

  .page-next-copy strong {
    font-size: clamp(2.8rem, 15vw, 4.5rem);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding-top: 44px;
  }

  .footer-inner > :first-child {
    grid-column: auto;
  }
}

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

}

@media (max-width: 1050px) {
  :root {
    --header-h: 134px;
  }

  .conference-header,
  .site-header.is-condensed .conference-header {
    height: 80px;
    overflow: visible;
  }

  .menu-toggle {
    display: none;
  }

  .page-nav {
    position: fixed;
    z-index: 205;
    top: 80px;
    right: 0;
    left: 0;
    bottom: auto;
    width: 100%;
    height: 54px;
    margin: 0;
    padding: 0 12px;
    overflow-x: auto;
    overflow-y: hidden;
    border: 0;
    background: rgba(22, 18, 19, .97);
    transform: none;
    scrollbar-width: none;
  }

  .page-nav::-webkit-scrollbar {
    display: none;
  }

  .page-nav > ul {
    width: max-content;
    min-width: 100%;
    height: 54px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 2px;
  }

  .page-nav a {
    height: 54px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border: 0;
    color: rgba(255, 255, 255, .74);
    font-size: .76rem;
    font-weight: 600;
  }

  .page-nav a:hover,
  .page-nav a:focus-visible,
  .page-nav a.active {
    color: var(--white);
    background: rgba(235, 0, 40, .28);
  }

  .anchor-sidebar {
    display: none;
  }

  .site-main {
    margin-left: 0;
    padding-top: var(--header-h);
  }

  .page-next,
  .site-footer {
    margin-left: 0;
  }
}

@media (max-width: 820px) {
  #day-at-a-glance::before {
    background-attachment: scroll;
  }

  .profile-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .profile-reverse .profile-visual,
  .profile-reverse .profile-copy {
    order: initial;
  }

  .profile-visual,
  .profile-photo,
  .profile-placeholder {
    min-height: 390px;
    max-height: 520px;
  }

  .profile-copy {
    padding: 26px 14px 34px;
  }

  .timeline {
    gap: 62px;
    padding: 56px 0;
  }

  .timeline-item,
  .timeline-item:nth-of-type(even) {
    width: calc(100% - 52px);
    align-self: flex-end;
  }

  .timeline-item.reveal,
  .timeline-item:nth-of-type(even).reveal {
    transform: translateX(52px) scale(.97);
  }
}

@media (max-width: 600px) {
  body {
    font-size: 17px;
  }

  .page-nav > ul {
    justify-content: flex-start;
  }

  .page-nav a {
    padding: 0 13px;
    font-size: .72rem;
  }

  .home-hero {
    min-height: calc(100svh - var(--header-h));
  }

  .home-speaker-grid {
    grid-template-columns: 1fr;
  }

  .home-speaker-card .speaker-photo,
  .home-speaker-card .portrait-placeholder,
  .home-speaker-picture {
    aspect-ratio: 5 / 4;
  }

  .profile-card {
    padding: 14px;
    border-radius: 24px;
  }

  .profile-visual,
  .profile-photo,
  .profile-placeholder {
    min-height: 330px;
  }

  .profile-copy h2 {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
  }

  .timeline {
    margin-top: 30px;
    padding: 42px 0;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
    padding: 23px 20px;
  }

  .schedule-thread path {
    stroke-width: 4;
  }

  .curtain-lockup {
    min-width: calc(100vw - 30px);
    padding: 28px 24px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Final readability and composition pass. */
.page-masthead::before {
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, .24), transparent 18%),
    linear-gradient(90deg, rgba(53, 5, 3, .68) 0%, rgba(169, 29, 22, .52) 52%, rgba(230, 43, 30, .24) 100%),
    linear-gradient(0deg, rgba(23, 23, 23, .3), transparent 44%);
}

[rt-liquid-glass]::before {
  background:
    radial-gradient(circle at var(--glass-x, 18%) var(--glass-y, 8%), rgba(255, 255, 255, .8), transparent 20%),
    linear-gradient(125deg, rgba(255, 255, 255, .34), rgba(255, 255, 255, .06) 43%, rgba(230, 43, 30, .05) 76%);
}

@media (hover: hover) {
  [rt-liquid-glass]:hover::before,
  [rt-liquid-glass]:focus-within::before {
    opacity: .72;
  }

  [rt-liquid-glass]:hover::after,
  [rt-liquid-glass]:focus-within::after {
    opacity: .58;
  }
}

.page-masthead h1 {
  font-size: clamp(3.7rem, 6vw, 6.2rem);
  line-height: .88;
}

.home-hero h1 {
  font-size: clamp(4.35rem, 7.7vw, 7.25rem);
}

.home-hero .subtitle {
  font-size: clamp(1.65rem, 2.7vw, 2.75rem);
  line-height: 1.1;
}

.section-heading {
  font-size: clamp(2.55rem, 4vw, 4.45rem);
  line-height: .98;
}

.side-card h3,
.side-card .side-card-title,
.info-card h3,
.action-card h3,
.contact-card h3,
.speaker-card h3,
.team-card h3,
.timeline-item h3 {
  font-size: clamp(1.55rem, 2vw, 2.2rem);
  line-height: 1.08;
}

.profile-copy h2 {
  font-size: clamp(2.75rem, 4.25vw, 4.8rem);
  line-height: .94;
}

.faq-list summary {
  font-size: clamp(1.25rem, 1.7vw, 1.72rem);
}

.page-next-copy strong {
  font-size: clamp(2.9rem, 5vw, 5.25rem);
}

.button {
  min-height: 50px;
  padding: 13px 22px;
  font-size: .84rem;
  line-height: 1.2;
}

.text-link {
  font-size: .84rem;
  line-height: 1.35;
}

.card-kicker,
.session-type {
  font-size: .76rem;
  line-height: 1.3;
  letter-spacing: .08em;
}

.photo-credit,
.logo-placeholder,
.portrait-placeholder,
.placeholder-label,
.page-next-copy span {
  font-size: .76rem;
}

.footer-inner p,
.footer-legal {
  font-size: .92rem;
  line-height: 1.55;
}

.feature-split {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.feature-split > :first-child {
  min-width: 0;
  grid-column: 1;
  grid-row: 1;
}

.feature-split > .side-card {
  width: 100%;
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  margin: 0;
}

.feature-split > .prose {
  max-width: none;
}

.glass-panel[rt-liquid-glass] {
  background: rgba(255, 255, 255, .38);
}

.section-glass[rt-liquid-glass]:not(.tone-dark) {
  background: rgba(255, 255, 255, .22);
}

.glass-tone-light[rt-liquid-glass] {
  color: var(--ink);
  background: rgba(255, 255, 255, .48);
  border-color: rgba(255, 255, 255, .82);
}

.glass-tone-light[rt-liquid-glass] :is(h2, h3, h4, p, li, a, time) {
  color: inherit;
}

.glass-tone-light[rt-liquid-glass] :is(p, li) {
  color: #2e2929;
}

.glass-tone-red[rt-liquid-glass] {
  color: rgba(255, 255, 255, .97);
  background: rgba(122, 0, 22, .72);
  border-color: rgba(255, 255, 255, .58);
}

.glass-tone-red[rt-liquid-glass] :is(h2, h3, h4, p, li, a, time) {
  color: inherit;
}

.glass-tone-red[rt-liquid-glass] :is(p, li) {
  color: rgba(255, 255, 255, .88);
}

.glass-tone-red[rt-liquid-glass] :is(.card-kicker, .session-type, .speaker-topic, .text-link) {
  color: #ffd0cc;
}

.glass-tone-dark[rt-liquid-glass],
.tone-dark[rt-liquid-glass] {
  color: rgba(255, 255, 255, .96);
  background: rgba(16, 14, 15, .74);
}

.glass-tone-dark[rt-liquid-glass] :is(p, li),
.tone-dark[rt-liquid-glass] :is(p, li, .section-lead, .prose) {
  color: rgba(255, 255, 255, .86);
}

.glass-tone-dark[rt-liquid-glass] :is(.card-kicker, .session-type, .speaker-topic, .text-link, time),
.tone-dark[rt-liquid-glass] :is(.card-kicker, .session-type, .speaker-topic, .text-link, time) {
  color: #ffaaa2;
}

.side-card {
  min-height: 0;
  padding: clamp(26px, 3vw, 34px);
}

.side-card h3 {
  margin: 12px 0 17px;
}

.side-card p.side-card-title {
  margin: 12px 0 17px;
  color: inherit;
  font-family: var(--font-display);
  font-weight: 650;
  letter-spacing: -.042em;
}

.side-card p,
.side-card li,
.info-card p,
.action-card p,
.contact-card p,
.speaker-card p,
.team-card p {
  font-size: 1rem;
  line-height: 1.52;
}

.info-card,
.contact-card {
  min-height: 255px;
}

.action-card {
  min-height: 330px;
}

.info-card h3,
.action-card h3,
.contact-card h3 {
  margin-top: 0;
}

.action-card p {
  margin-bottom: 28px;
}

.action-card .button {
  margin-top: auto;
}

.prose p + .button,
.prose p + a.button,
.side-card p + .text-link,
.info-card p + .text-link,
.section-lead + .button,
.glass-panel > .section-lead + .button,
.glass-panel > .button {
  margin-top: 26px;
}

.glass-panel > .button + .button {
  margin-left: 10px;
}

.idea-grid + .section-lead,
.action-grid + .section-lead,
.logo-grid + .section-lead {
  margin-top: clamp(36px, 4vw, 54px);
}

.image-band .section-lead,
.image-band .prose {
  color: #171414;
}

.image-band .section-lead {
  font-weight: 500;
}

.form-grid {
  margin-bottom: 28px;
}

.signup-form .button {
  margin-top: 4px;
}

.ambient-zone > .ambient-glow {
  inset: -4%;
  background:
    radial-gradient(circle at var(--ambient-x) var(--ambient-y), rgba(235, 0, 40, .2), transparent 11%),
    radial-gradient(circle at calc(var(--ambient-x) + 5%) calc(var(--ambient-y) - 4%), rgba(255, 255, 255, .24), transparent 15%);
  opacity: .44;
}

.tone-dark .ambient-glow {
  opacity: .36;
  background:
    radial-gradient(circle at var(--ambient-x) var(--ambient-y), rgba(235, 0, 40, .28), transparent 12%),
    radial-gradient(circle at calc(var(--ambient-x) + 5%) calc(var(--ambient-y) - 4%), rgba(255, 255, 255, .1), transparent 16%);
}

#day-at-a-glance {
  --section-photo: var(--photo-schedule);
  --section-photo-position: center;
}

#day-at-a-glance::before {
  background:
    linear-gradient(180deg, rgba(8, 7, 8, .5), rgba(26, 3, 8, .36) 48%, rgba(8, 7, 8, .58)),
    linear-gradient(105deg, rgba(0, 0, 0, .5), rgba(145, 0, 25, .12) 50%, rgba(0, 0, 0, .42)),
    var(--photo-schedule) center / cover no-repeat;
  background-attachment: scroll;
  filter: saturate(1.03) contrast(1.04);
  transform: scale(1.005);
}

#day-at-a-glance::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .2), transparent 30%, transparent 70%, rgba(0, 0, 0, .2)),
    linear-gradient(180deg, rgba(16, 13, 14, .22), rgba(16, 13, 14, .08) 50%, rgba(16, 13, 14, .3));
}

.timeline-item time {
  font-size: clamp(1.18rem, 1.7vw, 1.5rem);
  white-space: nowrap;
}

.page-next,
.page-next a {
  color: var(--white);
  border: 0;
  background: #171717;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.page-next {
  border-top: 3px solid var(--red);
}

.page-next a {
  box-shadow: none;
}

.page-next-copy span {
  color: #bdb7b7;
}

.page-next-copy strong {
  color: var(--white);
}

.page-next-arrow {
  color: var(--red);
}

.button.secondary[rt-liquid-glass] {
  color: #850017;
  background: rgba(255, 255, 255, .64);
  border-color: rgba(255, 255, 255, .88);
}

@media (max-width: 820px) {
  .feature-split {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .feature-split > :first-child,
  .feature-split > .side-card {
    width: auto;
    grid-column: 1;
    grid-row: auto;
  }

  .feature-split > .side-card {
    margin-top: 4px;
  }
}

@media (max-width: 600px) {
  .page-masthead h1,
  .home-hero h1 {
    font-size: clamp(3.25rem, 14vw, 4.65rem);
  }

  .home-hero .subtitle {
    font-size: clamp(1.45rem, 7.5vw, 2.1rem);
  }

  .section-heading {
    font-size: clamp(2.35rem, 11vw, 3.7rem);
  }

  .profile-copy h2 {
    font-size: clamp(2.45rem, 11vw, 3.7rem);
  }

  .glass-panel > .button,
  .glass-panel > .button + .button {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .glass-panel > .button + .button {
    margin-top: 12px;
  }
}

/* Screenshot-directed refinements. */
body {
  font-size: 21px;
}

.hero-context {
  font-size: 1.16rem;
}

.section-lead {
  font-size: clamp(1.28rem, 1.82vw, 1.56rem);
}

.side-card p,
.side-card li,
.info-card p,
.action-card p,
.contact-card p,
.speaker-card p,
.team-card p,
.home-speaker-card p {
  font-size: 1.2rem;
  line-height: 1.58;
}

.profile-copy p:not(.speaker-topic),
.timeline-item p,
.faq-list details p {
  font-size: 1.2rem;
  line-height: 1.58;
}

.footer-inner p,
.footer-inner a,
.footer-legal {
  font-size: 1.05rem;
}

.anchor-sidebar {
  padding: 30px 22px;
}

.anchor-nav {
  margin: 0;
}

.anchor-nav a {
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 8px;
  padding: 15px 0;
  font-size: .9rem;
  line-height: 1.25;
}

.anchor-index {
  color: #ffd0cc;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.flow-background {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: rgba(255, 255, 255, .96);
  background: #100d0f;
}

.flow-background::before,
.flow-background::after {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: 0;
}

.flow-background::before {
  z-index: 0;
  background:
    linear-gradient(110deg, rgba(5, 5, 7, .54), rgba(95, 0, 18, .18) 52%, rgba(5, 5, 7, .48)),
    var(--photo-flow) center / cover no-repeat;
  filter: saturate(1.04) contrast(1.06);
  transform: scale(1.01);
}

.flow-background::after {
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(10, 8, 10, .28), rgba(10, 8, 10, .08) 46%, rgba(10, 8, 10, .38)),
    radial-gradient(circle at 78% 30%, rgba(235, 0, 40, .18), transparent 30%);
}

.flow-background > * {
  position: relative;
  z-index: 1;
}

.flow-background :is(.section-heading, .section-lead, .prose) {
  color: inherit;
}

.flow-background .glass-panel[rt-liquid-glass] {
  color: rgba(255, 255, 255, .96);
  background: rgba(16, 14, 15, .5);
}

#speaker-intro::before,
#contact-team::before,
#why-partner::before,
#organizing-team::before {
  background-position: center 38%;
}

#speaker-note::before,
#speaker-expectations::before {
  background-position: center 68%;
}

@media (min-width: 821px) {
  .heading-split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    grid-template-rows: auto auto;
    column-gap: clamp(34px, 5vw, 72px);
    row-gap: 28px;
    align-items: start;
  }

  .heading-split-layout > .section-heading {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
  }

  .heading-split-layout > .feature-split {
    display: contents;
  }

  .heading-split-layout > .feature-split > :first-child {
    min-width: 0;
    grid-column: 1;
    grid-row: 2;
  }

  .heading-split-layout > .feature-split > .side-card {
    width: 100%;
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: start;
    margin: 0;
  }
}

.page-next,
.page-next a {
  background: #171717;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-main > :last-child,
.page-next {
  margin-bottom: 0;
}

.page-next {
  margin-top: 0;
}

.site-footer {
  display: flow-root;
  margin-top: 0;
  padding-top: 0;
  background: #171717;
}

.footer-inner,
.footer-inner[rt-liquid-glass] {
  margin: 0 auto;
  padding: 52px 0 42px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.footer-inner::before,
.footer-inner::after {
  display: none;
}

.page-next + .site-footer {
  margin-top: 0;
}

@media (max-width: 600px) {
  body {
    font-size: 19px;
  }

  .side-card p,
  .side-card li,
  .info-card p,
  .action-card p,
  .contact-card p,
  .speaker-card p,
  .team-card p,
  .home-speaker-card p,
  .profile-copy p:not(.speaker-topic),
  .timeline-item p,
  .faq-list details p {
    font-size: 1.12rem;
  }

  .footer-inner {
    padding: 42px 0 34px;
  }
}

/* Keep the mobile header opaque so it remains inexpensive to composite. */
@supports (-webkit-touch-callout: none) {
  @media (max-width: 1050px) and (hover: none) and (pointer: coarse) {
    .conference-header[rt-liquid-glass] {
      background: rgba(250, 246, 246, .96) !important;
      box-shadow: 0 10px 32px rgba(40, 18, 22, .16);
    }
  }
}

/* Richer static glass without per-card backdrop sampling. */
[rt-liquid-glass]::before {
  mix-blend-mode: normal;
  opacity: 0;
  transition-duration: .34s;
}

[rt-liquid-glass]::after {
  opacity: 0;
  transition-duration: .34s;
}

.page-masthead .masthead-panel[rt-liquid-glass] {
  background: rgba(18, 14, 16, .74);
  border-color: rgba(255, 255, 255, .72);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, .34),
    inset -1px -1px 0 rgba(235, 0, 40, .14),
    0 30px 78px -46px rgba(37, 4, 7, .72);
}

/* Registration campaign */
.hero-venue {
  margin-top: 16px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.6vw, 1.34rem);
  font-weight: 750;
  line-height: 1.3;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .7);
}

.hero-venue span {
  color: rgba(255, 255, 255, .86);
  font-family: var(--font-body);
  font-size: .9em;
  font-weight: 600;
}

.registration-callout {
  position: relative;
  z-index: 2;
  padding: clamp(34px, 5vw, 66px) 0;
  scroll-margin-top: calc(var(--header-h) + 28px);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 8%, rgba(235, 0, 40, .42), transparent 30%),
    linear-gradient(112deg, rgba(15, 10, 12, .9), rgba(74, 4, 17, .66) 58%, rgba(15, 10, 12, .82)),
    var(--photo-rochester-two) center 52% / cover no-repeat;
  border-top: 3px solid var(--red);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.registration-callout-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(30px, 5vw, 72px);
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 30px;
  background: rgba(17, 13, 15, .7);
  box-shadow: 0 34px 74px -52px rgba(0, 0, 0, .9);
}

.registration-eyebrow {
  margin-bottom: 10px;
  color: #ffaaa2;
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .07em;
}

.registration-callout h2 {
  max-width: 17ch;
  color: var(--white);
  font-size: clamp(2.5rem, 4.8vw, 5.2rem);
}

.registration-callout h2 + p {
  max-width: 62ch;
  margin-top: 17px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
}

.registration-button,
.registration-button[rt-liquid-glass] {
  min-width: 150px;
  color: #7a0015;
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 18px 36px -24px rgba(0, 0, 0, .82);
}

.registration-button:hover,
.registration-button:focus-visible,
.registration-button[rt-liquid-glass]:hover,
.registration-button[rt-liquid-glass]:focus-visible {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.registration-banner[hidden] {
  display: none;
}

.registration-banner {
  position: fixed;
  z-index: 520;
  right: 22px;
  bottom: max(22px, env(safe-area-inset-bottom));
  left: calc(var(--sidebar-w) + 22px);
  width: min(820px, calc(100vw - var(--sidebar-w) - 44px));
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  padding: 22px 62px 22px 26px;
  color: var(--white);
  background: #171315;
  border: 1px solid rgba(255, 255, 255, .22);
  border-left: 5px solid var(--red);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .38);
  opacity: 0;
  transform: translateY(calc(100% + 36px));
  transition: opacity .32s ease, transform .36s var(--ease);
}

.registration-banner[rt-liquid-glass] {
  background:
    linear-gradient(118deg, rgba(20, 15, 17, .68), rgba(78, 8, 21, .58)),
    rgba(20, 15, 17, .5);
  border-color: rgba(255, 255, 255, .42);
  border-left-color: var(--red);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, .26),
    inset -1px -1px 0 rgba(235, 0, 40, .12),
    0 24px 64px rgba(0, 0, 0, .38);
  -webkit-backdrop-filter: blur(22px) saturate(128%);
  backdrop-filter: blur(22px) saturate(128%);
}

.registration-banner.is-visible {
  opacity: 1;
  transform: none;
}

.registration-banner-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
  margin-right: auto;
}

.registration-banner-copy strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.16rem;
}

.registration-banner-copy span {
  color: rgba(255, 255, 255, .76);
  font-size: 1rem;
  line-height: 1.35;
}

.registration-banner-close {
  position: absolute;
  top: 8px;
  right: 12px;
  width: 36px;
  height: 36px;
  color: rgba(255, 255, 255, .72);
  background: transparent;
  border: 0;
  border-radius: 50%;
  font-size: 1.7rem;
  line-height: 1;
}

.registration-banner-close:hover,
.registration-banner-close:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, .1);
}

.speaker-grid-twelve {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

@media (min-width: 1101px) and (max-width: 1500px) {
  .speaker-grid-twelve {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

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

@media (max-width: 1050px) {
  .registration-banner {
    right: 16px;
    left: 16px;
    width: auto;
  }
}

@media (max-width: 700px) {
  .registration-callout-panel {
    grid-template-columns: 1fr;
  }

  .registration-callout .registration-button {
    width: 100%;
  }

  .registration-banner {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    padding: 20px 48px 20px 20px;
  }

  .registration-banner .registration-button {
    width: 100%;
  }
}

.glass-panel[rt-liquid-glass] {
  background: rgba(250, 247, 247, .7);
}

.section-glass[rt-liquid-glass]:not(.tone-dark) {
  background: rgba(250, 247, 247, .6);
}

.glass-tone-light[rt-liquid-glass] {
  background: rgba(252, 249, 249, .76);
  border-color: rgba(255, 255, 255, .9);
}

.glass-tone-red[rt-liquid-glass] {
  background: rgba(112, 0, 20, .84);
  border-color: rgba(255, 255, 255, .64);
}

.glass-tone-dark[rt-liquid-glass],
.tone-dark[rt-liquid-glass] {
  background: rgba(16, 14, 15, .86);
  border-color: rgba(255, 255, 255, .32);
}

.flow-background .glass-panel[rt-liquid-glass] {
  background: rgba(16, 14, 15, .76);
}

.button.secondary[rt-liquid-glass] {
  background: rgba(255, 255, 255, .8);
}

@media (hover: hover) {
  [rt-liquid-glass]:hover::before,
  [rt-liquid-glass]:focus-within::before {
    opacity: .56;
  }

  [rt-liquid-glass]:hover::after,
  [rt-liquid-glass]:focus-within::after {
    opacity: .46;
  }
}

/* The collapsed desktop header is 44px shorter than the full header. */
@media (min-width: 1051px) {
  .site-header {
    transition: height .5s var(--ease);
  }

  .site-header.is-condensed {
    height: 72px;
  }

  .anchor-sidebar {
    transition: top .5s var(--ease);
  }

  body.header-condensed .anchor-sidebar {
    top: 72px;
  }
}

/* A single composited grid layer replaces a continuously rendered particle field. */
.speaker-list-section > .speaker-grid-field {
  position: absolute !important;
  z-index: 1 !important;
  inset: -58px !important;
  pointer-events: none;
  opacity: .80;
  background-image:
    linear-gradient(rgba(32, 21, 25, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 21, 25, .12) 1px, transparent 1px),
    linear-gradient(rgba(235, 0, 40, .14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(235, 0, 40, .14) 1px, transparent 1px);
  background-size: 46px 46px, 46px 46px, 184px 184px, 184px 184px;
  mask-image: radial-gradient(ellipse at center, #000 18%, rgba(0, 0, 0, .88) 48%, transparent 82%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 18%, rgba(0, 0, 0, .88) 48%, transparent 82%);
  transform: translate3d(var(--speaker-grid-shift-x, 0), var(--speaker-grid-shift-y, 0), 0);
  transition: opacity .3s ease;
  will-change: transform;
  contain: strict;
}

.speaker-list-section > .content-wrap {
  z-index: 2;
}

@media (hover: hover) {
  .speaker-list-section:hover > .speaker-grid-field {
    opacity: .64;
  }
}

/* Avoid full-section filter surfaces; the tinting remains in the gradient overlays. */
.anchor-sidebar::before,
.content-section.image-band::before,
#day-at-a-glance::before,
.flow-background::before {
  filter: none;
}

@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .speaker-list-section > .speaker-grid-field {
    opacity: .3;
    transform: none;
    will-change: auto;
  }
}

@media (min-width: 821px) {
  .home-action-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .home-action-grid > .action-card {
    grid-column: span 3;
  }
}

/* Venue map */
.venue-map-panel {
  overflow: hidden;
}

.venue-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, .72fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 40px;
}

.venue-map-frame {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 26px;
  background: #e8e3e3;
  box-shadow: 0 28px 70px -48px rgba(55, 8, 14, .72);
}

.venue-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  border: 0;
}

.venue-map-card {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.venue-map-card h3 {
  margin-top: 18px;
  font-size: clamp(2.25rem, 4vw, 4rem);
}

.venue-map-card p + p {
  margin-top: 22px;
}

.venue-map-card strong {
  color: inherit;
  font-family: var(--font-display);
  font-size: .84rem;
  letter-spacing: .025em;
}

.venue-map-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin-top: 34px;
}

.venue-map-actions .button {
  width: 100%;
  justify-content: center;
}

.venue-support-grid {
  margin-top: 18px;
}

.venue-support-grid .info-card {
  min-height: 230px;
}

@media (max-width: 820px) {
  .venue-map-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .venue-map-frame,
  .venue-map-card {
    min-height: 400px;
  }
}

@media (max-width: 600px) {
  .venue-map-layout {
    margin-top: 30px;
  }

  .venue-map-frame {
    min-height: 330px;
    border-radius: 22px;
  }

  .venue-map-card {
    min-height: 0;
  }
}

/* Explicit section choices keep neighboring backgrounds distinct on every page. */
.content-section[data-backdrop="rochester-one"] {
  --backdrop-image: var(--photo-rochester-one);
}

.content-section[data-backdrop="rochester-two"] {
  --backdrop-image: var(--photo-rochester-two);
}

.content-section[data-backdrop="spencer"] {
  --backdrop-image: var(--photo-spencer);
}

.content-section.image-band[data-backdrop]:not([data-backdrop="schedule"])::before {
  background-image:
    linear-gradient(110deg, rgba(18, 13, 14, .36), rgba(235, 0, 40, .12) 50%, rgba(255, 255, 255, .13)),
    var(--backdrop-image, var(--section-photo));
}

.flow-background[data-backdrop="ted-stage"]::before {
  background:
    linear-gradient(100deg, rgba(3, 5, 12, .60), rgba(3, 5, 12, .18) 70%, rgba(3, 5, 12, .30)),
    url("../../assets/images/ted-stage-supplied.webp") 62% 58% / cover no-repeat;
}

#what-is-tedx.flow-background::before {
  background-image:
    linear-gradient(100deg, rgba(3, 5, 12, .80), rgba(3, 5, 12, .60) 70%, rgba(3, 5, 12, .70)),
    url("../../assets/images/ted-stage-supplied.webp");
}

#why-partner[data-backdrop="ted-stage"]::before {
  background-position: center, 62% 58%;
}

.flow-background .glass-panel:not([rt-liquid-glass]) {
  color: rgba(255, 255, 255, .96);
  background: rgba(16, 14, 15, .76);
}

/* A plain, equally weighted choice, separate from the registration reminder. */
.cookie-banner[hidden],
.map-consent-message[hidden],
.venue-map-frame iframe[hidden] {
  display: none;
}

.cookie-banner {
  position: fixed;
  z-index: 1000;
  inset: auto 0 0;
  max-height: 60svh;
  overflow-y: auto;
  padding: 20px max(24px, env(safe-area-inset-right)) max(20px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
  color: #fff;
  background: #21191d;
  border-top: 2px solid var(--red);
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.5;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.cookie-banner-copy { flex: 1; }
.cookie-banner-copy strong { display: block; margin-bottom: 4px; }
.cookie-banner-copy p { color: #ece5e8; }
.cookie-banner-actions { display: flex; gap: 12px; flex-shrink: 0; }

.cookie-banner-actions button {
  min-width: 100px;
  min-height: 44px;
  padding: 10px 20px;
  border: 1px solid #fff;
  border-radius: 4px;
  color: #21191d;
  background: #fff;
  font-weight: 600;
}

.cookie-banner-actions button:hover { background: #f9dce2; }
.cookie-banner-actions button:focus-visible { outline: 3px solid #ff8fa2; outline-offset: 4px; }

.cookie-settings {
  padding: 0;
  border: 0;
  color: inherit;
  background: none;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 1rem;
}

body.has-cookie-banner { padding-bottom: var(--cookie-banner-height, 0px); }
body.has-cookie-banner .registration-banner { visibility: hidden; pointer-events: none; }

.map-consent-message {
  display: flex;
  min-height: inherit;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 32px;
  color: #21191d;
  text-align: center;
}

.map-consent-message p { max-width: 35ch; color: inherit; }
.map-consent-message a { color: #900019; text-decoration: underline; }

@media (max-width: 700px) {
  .cookie-banner-inner { align-items: stretch; flex-direction: column; gap: 16px; }
  .cookie-banner-actions button { flex: 1; }
}

/* Parking guide */
.parking-guide-section {
  background:
    radial-gradient(circle at 84% 12%, rgba(235, 0, 40, .26), transparent 34%),
    linear-gradient(135deg, #171315 0%, #2b1116 52%, #121112 100%);
}

.parking-guide-panel {
  overflow: hidden;
}

.parking-guide-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: 38px;
}

.parking-guide-heading .section-heading,
.parking-guide-heading .section-lead,
.parking-guide-note {
  color: #111;
}

.parking-guide-heading .section-lead {
  max-width: 760px;
  margin-bottom: 0;
}

.parking-download {
  white-space: nowrap;
}

.parking-guide-image {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 32px 80px -45px rgba(0, 0, 0, .9);
}

.parking-guide-image img {
  width: 100%;
  height: auto;
  display: block;
}

.parking-guide-note {
  margin: 18px 0 0;
  color: #111;
  font-size: 1rem;
}

/* Text on light glass must remain fully legible without hover. */
.glass-tone-light[rt-liquid-glass] {
  color: #111;
}

.glass-tone-light[rt-liquid-glass] :is(h1, h2, h3, h4, p, li, a:not(.button), time, strong, em, small, .card-kicker, .speaker-topic, .speaker-jump, .side-card-title),
.parking-guide-panel[rt-liquid-glass] :is(h1, h2, h3, h4, p, li, a:not(.button), time, strong, em, small, .card-kicker, .speaker-topic, .speaker-jump, .side-card-title) {
  color: #111;
}

.button.secondary[rt-liquid-glass] {
  color: #111;
}

.glass-tone-light[rt-liquid-glass] .button.primary,
.parking-guide-panel[rt-liquid-glass] .button.primary {
  color: var(--white);
}

@media (max-width: 820px) {
  .parking-guide-heading {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .parking-download {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .parking-guide-heading {
    margin-bottom: 26px;
  }

  .parking-guide-image {
    border-radius: 20px;
  }
}
