:root {
  --navy: #08285a;
  --navy-2: #0d376d;
  --teal: #1b8290;
  --teal-dark: #0e5e6c;
  --gold: #d79a12;
  --gold-dark: #8a5d00;
  --ink: #10213d;
  --muted: #59667a;
  --line: #dce5ed;
  --paper: #ffffff;
  --mist: #f4f8fa;
  --sand: #f7f3eb;
  --shadow: 0 22px 60px rgba(8, 40, 90, 0.13);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy);
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(calc(-100% - 24px));
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

body.simple-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(27, 130, 144, 0.09), transparent 36%),
    linear-gradient(315deg, rgba(215, 154, 18, 0.14), transparent 42%),
    var(--mist);
}

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

.text-nowrap {
  white-space: nowrap;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--navy);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
  padding: 14px clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(8, 40, 90, 0.1);
  backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-text {
  max-width: none;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-line {
  display: inline-block;
  white-space: nowrap;
}

.brand-line + .brand-line {
  margin-left: 0.22em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--navy);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.section-band {
  background:
    linear-gradient(135deg, rgba(27, 130, 144, 0.08), transparent 36%),
    linear-gradient(315deg, rgba(215, 154, 18, 0.12), transparent 42%),
    var(--mist);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(620px, calc(100svh - 86px), 700px);
  color: #fff;
  background: #061f48;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 31, 72, 0.99) 0%, rgba(6, 31, 72, 0.9) 34%, rgba(6, 31, 72, 0.48) 65%, rgba(6, 31, 72, 0.18) 100%),
    linear-gradient(180deg, rgba(6, 31, 72, 0.06) 0%, rgba(6, 31, 72, 0.08) 48%, rgba(6, 31, 72, 0.72) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.56fr);
  gap: clamp(32px, 4vw, 52px);
  align-items: center;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(28px, 3.2vw, 42px) 0;
}

.hero-copy {
  min-width: 0;
  max-width: 720px;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 3.45vw, 50px);
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.22);
}

.hero-title-kicker {
  display: block;
  margin: 0 0 12px;
  color: #f5c75c;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-title-main,
.hero-title-sub {
  display: block;
}

.hero-title-sub {
  margin-top: 7px;
  color: #f5c75c;
  font-size: 0.76em;
  line-height: 1.08;
}

.hero-summary {
  max-width: 590px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.5;
}

.hero-presenter {
  max-width: 590px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.conference-copy .button {
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 12px 26px rgba(8, 40, 90, 0.18);
}

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

.button-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(8, 40, 90, 0.22);
}

.hero .button-primary {
  color: var(--navy);
  background: linear-gradient(180deg, #f5c75c 0%, var(--gold) 100%);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.hero .button-primary:hover,
.hero .button-primary:focus-visible {
  background: linear-gradient(180deg, #ffd77a 0%, #dfa419 100%);
}

.hero .button-secondary {
  color: #fff;
  background: rgba(6, 31, 72, 0.34);
  border-color: rgba(245, 199, 92, 0.82);
  backdrop-filter: blur(8px);
}

.button-light {
  min-width: 174px;
  color: var(--navy);
  background: #fff;
}

.button[aria-disabled="true"] {
  color: rgba(8, 40, 90, 0.62);
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(8, 40, 90, 0.2);
  box-shadow: none;
}

.button[aria-disabled="true"]:hover,
.button[aria-disabled="true"]:focus-visible {
  transform: none;
}

.hero-picture {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-picture,
.hero-image {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 60% 56%;
}

.hero-summit-card {
  position: relative;
  align-self: center;
  min-height: 0;
  aspect-ratio: 1122 / 1402;
  overflow: hidden;
  background: #061f48;
  border: 1px solid rgba(245, 199, 92, 0.58);
  border-radius: var(--radius);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.hero-summit-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(6, 31, 72, 0) 38%,
    rgba(6, 31, 72, 0.16) 58%,
    rgba(6, 31, 72, 0.94) 100%
  );
}

.hero-card-picture,
.hero-card-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-card-art {
  object-fit: contain;
  object-position: center;
}

.hero-card-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 0;
  padding: clamp(22px, 2.6vw, 32px);
}

.hero-card-focus {
  max-width: 340px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 750;
  line-height: 1.35;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.34);
}

.hero-card-date {
  max-width: 360px;
  margin: 9px 0 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.2vw, 32px);
  line-height: 1.05;
  letter-spacing: 0;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.32);
}

.hero-card-meta {
  display: grid;
  gap: 3px;
  margin: 10px 0 0;
  color: #f5c75c;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.035em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.34);
}

.hero-card-meta a {
  width: fit-content;
  color: inherit;
  text-decoration-color: rgba(245, 199, 92, 0.65);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.hero-card-meta a:hover {
  text-decoration-color: currentColor;
}

.section-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 112px) 0;
}

.mission .section-inner {
  padding-top: clamp(46px, 5vw, 60px);
}

main#top,
section[id] {
  scroll-margin-top: 96px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.section-label {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2,
.conference h2,
.contact h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.2vw, 55px);
  line-height: 1.04;
  letter-spacing: 0;
}

.centered {
  max-width: 760px;
  margin: 0 auto clamp(36px, 5vw, 54px);
  text-align: center;
}

.mission-copy {
  color: var(--muted);
  font-size: 18px;
}

.mission-copy p {
  margin: 0;
}

.mission-copy p + p {
  margin-top: 18px;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.focus-card {
  min-height: 270px;
  padding: 34px 24px 30px;
  background: rgba(255, 255, 255, 0.93);
}

.focus-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  color: var(--teal);
}

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

.focus-card:nth-child(even) .focus-icon {
  color: var(--gold-dark);
}

.focus-card h3 {
  margin: 22px 0 10px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.15;
}

.focus-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.conference {
  background:
    linear-gradient(90deg, #f7fbfd 0%, #f7fbfd 58%, #fff 58%, #fff 100%);
}

.conference-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(260px, 0.7fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.conference-copy p {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.conference-question {
  max-width: 630px;
  margin: 24px 0 0;
  padding: 18px 22px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 700;
  line-height: 1.18;
  background: rgba(215, 154, 18, 0.1);
  border-left: 4px solid var(--gold);
}

.conference-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  color: #31435e;
  list-style: none;
}

.conference-list li {
  position: relative;
  padding-left: 28px;
}

.conference-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(215, 154, 18, 0.16);
}

.conference-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  margin: 0;
  padding: 0;
  background: var(--navy);
  border: 1px solid rgba(8, 40, 90, 0.13);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.conference-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.58) 25%, rgba(255, 255, 255, 0) 48%),
    linear-gradient(180deg, rgba(8, 40, 90, 0) 45%, rgba(8, 40, 90, 0.82) 77%, rgba(8, 40, 90, 0.98) 100%);
}

.conference-poster-picture,
.conference-poster-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.conference-poster-art {
  object-fit: cover;
}

.conference-poster-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  margin: 0;
  padding: clamp(18px, 3vw, 30px);
}

.poster-topline {
  max-width: 92%;
  color: var(--navy);
}

.poster-topline span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: clamp(12px, 1.3vw, 15px);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.poster-topline h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4.1vw, 56px);
  line-height: 0.95;
  letter-spacing: 0;
}

.poster-bottomline {
  color: #fff;
}

.poster-bottomline p {
  max-width: 440px;
  margin: 0 0 18px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 700;
  line-height: 1.05;
}

.poster-bottomline ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.poster-bottomline li {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 12px;
  color: #fff;
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
}

.registration {
  background:
    linear-gradient(135deg, rgba(8, 40, 90, 0.08), transparent 36%),
    linear-gradient(315deg, rgba(27, 130, 144, 0.1), transparent 42%),
    #f9fbfc;
}

.registration-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.52fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}

.registration .section-heading > p:not(.section-label) {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.event-details {
  display: grid;
  gap: 10px;
  max-width: 660px;
  margin-top: 26px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(8, 40, 90, 0.12);
  border-left: 4px solid var(--gold);
}

.event-details p {
  margin: 0;
  color: #31435e;
  font-size: 16px;
}

.event-details a {
  color: var(--navy);
  font-weight: 800;
  text-decoration-color: rgba(8, 40, 90, 0.36);
  text-underline-offset: 3px;
}

.registration-panel {
  padding: clamp(28px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(8, 40, 90, 0.13);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.registration-panel-kicker {
  margin: 0 0 8px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.registration-panel h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.1;
}

.registration-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.registration-option {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 18px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.registration-option span {
  color: var(--navy);
  font-size: 14px;
  font-weight: 850;
}

.registration-option strong {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 44px);
  line-height: 1;
}

.registration-option small {
  color: var(--muted);
  font-size: 13px;
}

.payment-button {
  width: 100%;
  margin-top: 24px;
}

.payment-status,
.registration-processor {
  margin: 14px 0 0;
  color: #6b7280;
  font-size: 14px;
}

.payment-status.is-ready {
  color: #365c45;
}

.registration-processor {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.contact {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(27, 130, 144, 0.38), transparent 38%),
    linear-gradient(315deg, rgba(215, 154, 18, 0.22), transparent 44%),
    var(--navy);
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(54px, 7vw, 74px) 0;
}

.contact h2 {
  color: #fff;
  font-size: clamp(34px, 3.4vw, 46px);
  white-space: nowrap;
}

.contact p {
  max-width: 640px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.site-footer {
  padding: 28px clamp(20px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.8);
  background: #061f48;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
}

.footer-brand > .brand-text {
  max-width: none;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.12;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 22px;
}

.site-footer a {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
}

.thanks-page {
  display: grid;
  align-content: center;
  gap: 46px;
  width: min(760px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 48px 0;
}

.thanks-panel {
  padding: clamp(34px, 7vw, 64px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(8, 40, 90, 0.13);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.thanks-panel h1 {
  max-width: 620px;
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 8vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}

.thanks-panel p:not(.section-label) {
  max-width: 590px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.thanks-panel .button {
  margin-top: 28px;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 76px;
  }

  .brand-text {
    max-width: 230px;
    font-size: 15px;
    white-space: normal;
  }

  .brand-line {
    display: block;
  }

  .brand-line + .brand-line {
    margin-left: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(6, 31, 72, 0.9) 0%, rgba(6, 31, 72, 0.68) 56%, rgba(6, 31, 72, 0.92) 100%),
      linear-gradient(90deg, rgba(6, 31, 72, 0.96) 0%, rgba(6, 31, 72, 0.58) 68%, rgba(6, 31, 72, 0.22) 100%);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    width: min(var(--max), calc(100% - 44px));
    min-height: auto;
    padding: 54px 0 38px;
  }

  .hero-copy {
    width: auto;
    padding: 0;
  }

  .hero h1 {
    max-width: 720px;
    font-size: clamp(38px, 5.8vw, 50px);
  }

  .hero-summary {
    max-width: 620px;
  }

  .hero-summit-card {
    min-height: 0;
    aspect-ratio: 800 / 364;
  }

  .hero-summit-card::before {
    background: linear-gradient(
      180deg,
      rgba(6, 31, 72, 0) 28%,
      rgba(6, 31, 72, 0.18) 52%,
      rgba(6, 31, 72, 0.94) 100%
    );
  }

  .hero-card-content {
    min-height: 0;
    padding: 24px;
  }

  .hero-card-date {
    max-width: 420px;
    font-size: clamp(26px, 4vw, 32px);
  }

  .hero-image {
    object-position: center 58%;
  }

  .two-column,
  .conference-layout,
  .registration-layout {
    grid-template-columns: 1fr;
  }

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

  .conference {
    background: #f7fbfd;
  }
}

@media (max-width: 760px) {
  .site-header {
    gap: 12px;
    padding: 10px 14px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand {
    gap: 8px;
  }

  .brand-text {
    max-width: none;
    font-size: 13px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    inset: 76px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .hero-inner {
    width: calc(100% - 44px);
    gap: 22px;
    padding: 30px 0 28px;
  }

  .hero-copy {
    width: auto;
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(32px, 8.7vw, 36px);
    line-height: 1.02;
  }

  .hero-title-kicker {
    margin-bottom: 9px;
    font-size: 12px;
  }

  .hero-title-sub {
    margin-top: 5px;
    font-size: 0.78em;
  }

  .hero-summary {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.48;
  }

  .hero-presenter {
    margin-top: 10px;
    font-size: 13px;
  }

  .hero-actions,
  .conference-copy .button {
    margin-top: 20px;
  }

  .hero-image {
    object-position: 58% center;
  }

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

  .contact h2 {
    white-space: normal;
  }

  .button {
    width: 100%;
  }

  .hero-summit-card {
    min-height: 0;
  }

  .hero-card-content {
    min-height: 0;
    padding: 12px 16px;
  }

  .hero-card-art {
    object-position: center;
  }

  .hero-card-date {
    max-width: 310px;
    margin-top: 6px;
    font-size: 20px;
    line-height: 1.05;
  }

  .hero-card-focus {
    max-width: 310px;
    font-size: 12px;
    line-height: 1.3;
  }

  .hero-card-meta {
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.3;
  }

  .section-inner {
    width: min(100% - 32px, var(--max));
    padding: 64px 0;
  }

  main#top,
  section[id] {
    scroll-margin-top: 84px;
  }

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

  .focus-card {
    min-height: 0;
  }

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

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

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