@font-face {
  font-family: "Aktiv Grotesk";
  src: url("./AktivGrotesk-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aktiv Grotesk";
  src: url("./AktivGrotesk-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aktiv Grotesk";
  src: url("./AktivGrotesk-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #052139;
  --charcoal: #233848;
  --night: #052139;
  --paper: #eff9fe;
  --surface: #ffffff;
  --aqua: #38c7dc;
  --aqua-deep: #0a8fa5;
  --muted: #5b6973;
  --line: rgba(5, 33, 57, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

p,
h1,
h2,
h3,
dl,
dd,
ol {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(251, 248, 242, 0.16);
  background: rgba(5, 33, 57, 0.94);
  color: var(--paper);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: clamp(118px, 12vw, 156px);
  height: auto;
}

.brand-line {
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 36px);
  color: rgba(251, 248, 242, 0.78);
  font-size: 0.86rem;
  font-weight: 700;
}

.nav-links a,
.site-footer a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.site-footer a:hover,
.language-switcher a:hover {
  color: var(--aqua);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid rgba(239, 249, 254, 0.24);
  border-radius: 8px;
  background: rgba(239, 249, 254, 0.08);
  color: rgba(239, 249, 254, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 32px;
  border-radius: 6px;
  transition: background 160ms ease, color 160ms ease;
}

.language-switcher a[aria-current="page"] {
  background: var(--paper);
  color: var(--night);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-cta {
  padding: 0 18px;
  background: var(--paper);
  color: var(--night);
}

.button {
  padding: 0 22px;
  border: 1px solid transparent;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--aqua);
  color: var(--night);
}

.button-secondary {
  border-color: rgba(251, 248, 242, 0.42);
  color: var(--paper);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 33, 57, 0.98) 0%, rgba(5, 33, 57, 0.9) 34%, rgba(5, 33, 57, 0.54) 66%, rgba(5, 33, 57, 0.16) 100%),
    linear-gradient(180deg, rgba(5, 33, 57, 0.05) 0%, rgba(5, 33, 57, 0.52) 100%),
    url("./mooove-event-hero.jpg?v=20260603") center right / cover no-repeat,
    var(--night);
  color: var(--paper);
}

.hero::before {
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 199, 220, 0.62), transparent);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: clamp(64px, 8vh, 96px) clamp(20px, 5vw, 72px);
}

.eyebrow,
.section-kicker,
.role {
  color: var(--aqua-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin-top: 18px;
  font-size: clamp(2.55rem, 4.1vw, 3.8rem);
  font-weight: 800;
  line-height: 1.03;
}

.hero-subtitle {
  max-width: 680px;
  margin-top: 16px;
  color: rgba(239, 249, 254, 0.9);
  font-size: clamp(1.18rem, 2vw, 1.6rem);
  font-weight: 500;
}

.hero .eyebrow,
.registration-section .section-kicker,
.final-cta .section-kicker {
  color: var(--aqua);
}

.hero-quote {
  max-width: 720px;
  margin-top: 18px;
  padding: 16px 22px;
  border-left: 4px solid var(--aqua);
  background: rgba(239, 249, 254, 0.08);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 500;
}

.hero-quote p + p {
  margin-top: 3px;
  color: var(--paper);
  font-style: italic;
}

.booking-closed-alert {
  max-width: 760px;
  margin-top: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 184, 176, 0.78);
  border-radius: 8px;
  background: #b42318;
  color: #fff7f5 !important;
  font-weight: 900;
}

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

.facts-strip {
  padding: 0 clamp(20px, 5vw, 72px) 30px;
  background: var(--night);
}

.event-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 880px);
  max-width: 880px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(251, 248, 242, 0.24);
  border-radius: 8px;
  background: rgba(251, 248, 242, 0.18);
}

.event-facts div {
  padding: 14px 16px;
  background: rgba(5, 33, 57, 0.72);
}

.event-facts dt {
  color: rgba(251, 248, 242, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.event-facts dd {
  margin-top: 4px;
  color: var(--paper);
  font-weight: 900;
}

.event-photo-strip {
  padding: 0 0 clamp(34px, 5vw, 54px);
  background: var(--night);
}

.photo-strip-inner {
  display: flex;
  gap: 14px;
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 0 clamp(20px, 5vw, 72px) 12px;
  scroll-padding-inline: clamp(20px, 5vw, 72px);
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.photo-card {
  flex: 0 0 clamp(280px, 29vw, 420px);
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(239, 249, 254, 0.18);
  border-radius: 8px;
  background: rgba(239, 249, 254, 0.08);
  scroll-snap-align: start;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card-large {
  aspect-ratio: 4 / 3;
}

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

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

.two-column,
.registration-layout,
.price-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.section h2 {
  margin-top: 12px;
  font-size: clamp(2.1rem, 4vw, 4.8rem);
  font-weight: 800;
  line-height: 1;
}

.intro-copy {
  display: grid;
  gap: 18px;
  color: var(--charcoal);
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
}

.intro-section .two-column {
  grid-template-columns: minmax(310px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(64px, 8vw, 128px);
}

.intro-section .intro-copy {
  padding-left: clamp(18px, 2vw, 36px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(28px, 5vw, 56px);
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}

.agenda-section,
.price-section {
  background: var(--surface);
}

.agenda-list {
  display: grid;
  gap: 0;
  padding: 0;
  list-style: none;
}

.agenda-item {
  display: grid;
  grid-template-columns: minmax(118px, 160px) 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.agenda-item:first-child {
  border-top: 1px solid var(--line);
}

.agenda-item time {
  color: var(--aqua-deep);
  font-size: 1.28rem;
  font-weight: 900;
}

.agenda-item time span {
  display: block;
  color: var(--aqua-deep);
  font-size: 0.8rem;
  font-weight: 700;
}

.agenda-item h3,
.benefit h3,
.speaker-card h3,
.featured-speaker h3,
.audience-block h3 {
  font-size: 1.25rem;
  line-height: 1.18;
}

.agenda-item p {
  max-width: 850px;
  color: var(--charcoal);
}

.agenda-item p + p,
.agenda-detail-list {
  margin-top: 10px;
}

.agenda-label,
.session-language {
  font-weight: 900;
}

.session-language {
  color: var(--aqua-deep);
}

.agenda-detail-list {
  display: grid;
  gap: 7px;
  max-width: 850px;
  margin-bottom: 0;
  padding-left: 20px;
  color: var(--charcoal);
}

.agenda-speakers {
  display: grid;
  gap: 10px;
  max-width: 850px;
  margin-top: 8px;
}

.agenda-speakers p {
  margin: 0;
}

.agenda-item .byline {
  margin-top: 4px;
  color: var(--aqua-deep);
  font-style: italic;
}

.benefits-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--paper);
}

.benefits-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(239, 249, 254, 0.96) 0%, rgba(239, 249, 254, 0.86) 48%, rgba(239, 249, 254, 0.7) 100%),
    url("./mooove-event-audience.jpg?v=20260603") center / cover no-repeat;
  content: "";
}

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

.benefit {
  min-height: 310px;
  padding: 28px;
  background: var(--surface);
}

.benefit span {
  color: var(--aqua-deep);
  font-size: 2rem;
  font-weight: 800;
}

.benefit h3 {
  margin-top: 26px;
}

.benefit p {
  margin-top: 16px;
  color: var(--muted);
}

.registration-section,
.final-cta {
  background: var(--night);
  color: var(--paper);
}

.registration-section .section-inner,
.final-cta .section-inner {
  width: min(100%, 1320px);
}

.registration-section .registration-layout,
.final-cta .registration-layout {
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
}

.registration-section p,
.final-cta p {
  color: rgba(251, 248, 242, 0.78);
}

.registration-section .registration-layout > div:first-child > p:not(.section-kicker) {
  margin-top: 28px;
  max-width: 620px;
}

.registration-visual {
  margin: 34px 0 0;
  overflow: hidden;
  border: 1px solid rgba(251, 248, 242, 0.18);
  border-radius: 8px;
  background: rgba(239, 249, 254, 0.08);
}

.registration-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.form-panel {
  border: 1px solid rgba(251, 248, 242, 0.2);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  padding: clamp(18px, 3vw, 34px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.form-panel-dark {
  background: var(--paper);
}

.tally-embed iframe {
  width: 100%;
  min-height: 997px;
  border: 0;
  border-radius: 8px;
}

.speakers-section {
  background: var(--paper);
}

.speakers-section .section-inner {
  width: min(100%, 1540px);
}

.speakers-section .section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  align-items: end;
}

.speakers-section .section-heading .section-kicker {
  max-width: 360px;
  line-height: 1.45;
}

.speakers-section .section-heading h2 {
  justify-self: end;
  margin-top: 0;
  white-space: nowrap;
  font-size: clamp(3.1rem, 4vw, 5.2rem);
}

.featured-speaker {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 58px);
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
}

.featured-speaker h3 {
  margin-top: 12px;
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  font-weight: 800;
}

.speaker-title {
  margin-top: 10px;
  color: var(--muted);
}

.featured-speaker > p {
  color: var(--charcoal);
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.speaker-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.speaker-card .role {
  color: var(--muted);
}

.speaker-card h3 {
  margin-top: 12px;
}

.speaker-card p:last-child {
  margin-top: 14px;
  color: var(--muted);
}

.price-layout {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: center;
}

.price-section .section-inner {
  width: min(100%, 1380px);
}

.price-block {
  margin-top: 28px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.price {
  margin-top: 8px;
  color: var(--aqua-deep);
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.price-label {
  color: var(--ink);
  font-size: clamp(1.35rem, 2.25vw, 2.15rem);
  font-weight: 900;
  line-height: 1.05;
}

.price-block p:last-child {
  margin-top: 10px;
  color: var(--muted);
}

.price-block.is-unavailable {
  color: #7c8790;
  opacity: 0.58;
}

.price-block.is-unavailable .price,
.price-block.is-unavailable .price-label,
.price-block.is-unavailable p {
  color: #7c8790;
}

.price-block.is-unavailable .price,
.price-block.is-unavailable .price-label {
  color: #8c969e;
}

.price-block .availability-note {
  display: inline-flex;
  margin-top: 12px;
  padding: 5px 10px;
  border: 1px solid rgba(124, 135, 144, 0.42);
  border-radius: 999px;
  color: #67727a;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-block.muted {
  border-bottom: 1px solid var(--line);
  padding-bottom: 26px;
}

.audience-block {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  border-left: 1px solid var(--line);
  padding-left: clamp(24px, 5vw, 58px);
}

.audience-block p {
  color: var(--muted);
  font-size: 1.08rem;
}

.capacity {
  color: var(--aqua-deep) !important;
  font-weight: 900;
}

.final-cta {
  border-top: 1px solid rgba(251, 248, 242, 0.16);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: var(--night);
  color: rgba(251, 248, 242, 0.68);
  font-size: 0.92rem;
}

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

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 54px;
    padding-bottom: 54px;
  }

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

  .registration-section .registration-layout,
  .final-cta .registration-layout {
    grid-template-columns: 1fr;
  }

  .benefits-grid,
  .speakers-grid {
    grid-template-columns: 1fr 1fr;
  }

  .audience-block {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 34px 0 0;
  }
}

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

  .site-header {
    position: sticky;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
    padding: 14px 78px 14px 18px;
  }

  .brand {
    flex-direction: column;
    gap: 2px;
  }

  .brand img {
    width: 118px;
  }

  .brand-line {
    font-size: 0.68rem;
  }

  .nav-cta {
    display: none;
  }

  .language-switcher {
    position: absolute;
    top: 14px;
    right: 18px;
  }

  .language-switcher a {
    min-width: 30px;
    min-height: 28px;
  }

  .eyebrow,
  .section-kicker,
  .role {
    letter-spacing: 0.1em;
  }

  .hero .eyebrow {
    font-size: 0.68rem;
    line-height: 1.55;
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(5, 33, 57, 0.96) 0%, rgba(5, 33, 57, 0.84) 58%, rgba(5, 33, 57, 0.54) 100%),
      linear-gradient(180deg, rgba(5, 33, 57, 0.12) 0%, rgba(5, 33, 57, 0.72) 100%),
      url("./mooove-event-hero.jpg?v=20260603") 58% center / cover no-repeat,
      var(--night);
  }

  .hero-inner {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  .hero h1,
  .hero-subtitle,
  .hero-quote,
  .hero-actions {
    width: min(100%, 310px);
    max-width: calc(100vw - 48px);
    white-space: normal;
  }

  .hero h1 {
    overflow-wrap: break-word;
    font-size: clamp(1.7rem, 8.2vw, 2rem);
    line-height: 1.04;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-quote {
    padding: 18px;
    font-size: 0.95rem;
    overflow-wrap: break-word;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .event-facts,
  .agenda-item,
  .benefits-grid,
  .speakers-grid {
    grid-template-columns: 1fr;
  }

  .photo-card {
    flex-basis: min(84vw, 340px);
  }

  .section-heading {
    display: block;
  }

  .speakers-section .section-heading {
    display: block;
  }

  .speakers-section .section-heading .section-kicker {
    max-width: none;
    margin-bottom: 12px;
  }

  .speakers-section .section-heading h2 {
    justify-self: auto;
    white-space: normal;
    font-size: clamp(2.35rem, 10vw, 3.1rem);
    line-height: 0.98;
  }

  .agenda-item {
    gap: 10px;
  }

  .benefit {
    min-height: auto;
  }

  .speaker-card {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}
