/* =========================================================
   Wegovy® in MASH — landing page styles
   Mobile-first. Brand palette mirrors the Save the Date.
   ========================================================= */

:root {
  --brand:        #e6007e;          /* Wegovy magenta */
  --brand-dark:   #b80064;
  --brand-soft:   #fde6f1;
  --accent:       #2a8be0;          /* Sky blue */
  --accent-dark:  #1561a8;
  --accent-soft:  #e6f1fb;
  --ink:          #0d1a33;          /* Deep navy */
  --ink-2:        #36405a;
  --muted:        #6b7390;
  --paper:        #ffffff;
  --paper-2:      #f6f9fd;
  --line:         #e3e9f2;
  --shadow-sm:    0 2px 6px rgba(13,26,51,.06);
  --shadow-md:    0 12px 32px rgba(13,26,51,.10);
  --shadow-lg:    0 24px 60px rgba(13,26,51,.14);
  --radius:       14px;
  --radius-lg:    22px;
  --container:    1180px;
  --header-h:     64px;
  --font-sans:    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; margin: 0 0 .5em; font-weight: 800; letter-spacing: -.01em; }
h1 { font-size: clamp(1.9rem, 4.6vw + .5rem, 3.4rem); }
h2 { font-size: clamp(1.6rem, 2.2vw + .8rem, 2.4rem); }
h3 { font-size: clamp(1.15rem, 1vw + .7rem, 1.4rem); }
h4 { font-size: 1.05rem; margin: 0 0 .3em; }
p  { margin: 0 0 1em; }

sup { font-size: .55em; vertical-align: super; }

abbr[title] { text-decoration: none; border-bottom: 1px dotted currentColor; cursor: help; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: 12px 16px; z-index: 1000; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============== HEADER / NAV ============== */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 16px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink); text-decoration: none;
}
.brand-mark {
  display: inline-grid; 
  place-items: center;
  width: 150px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff; font-weight: 900; font-size: 1.05rem;
  box-shadow: var(--shadow-sm);
}
img.brand-mark {
  width: 150px; height: auto;
  background: none; box-shadow: none;
  border-radius: 6px; object-fit: contain;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-size: .98rem; font-weight: 800; }
.brand-text small { font-size: .7rem; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }

.nav-toggle {
  appearance: none; background: transparent; border: 1px solid var(--line);
  width: 44px; height: 44px; border-radius: 10px;
  display: inline-grid; place-items: center;
  color: var(--ink);
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease;
}
.nav-toggle:hover { background: var(--paper-2); }
.nav-toggle:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
.nav-toggle-icon {
  grid-area: 1 / 1;
  width: 24px; height: 24px;
  transition: opacity .2s ease, transform .25s ease;
}
.nav-toggle-close { opacity: 0; transform: rotate(-45deg); pointer-events: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle-open  { opacity: 0; transform: rotate(45deg); pointer-events: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle-close { opacity: 1; transform: rotate(0); pointer-events: auto; }

.primary-nav {
  position: absolute; top: var(--header-h); left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--line);
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: transform .25s ease, opacity .2s ease;
}
.primary-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.primary-nav ul {
  list-style: none; margin: 0; padding: 14px 20px;
  display: flex; flex-direction: column; gap: 4px;
  max-width: var(--container); margin: 0 auto;
}
.primary-nav a {
  display: block; padding: 12px 8px; border-radius: 8px;
  color: var(--ink); font-weight: 600; text-decoration: none;
}
.primary-nav a:hover { background: var(--paper-2); }
.nav-cta {
  margin-top: 6px;
  background: var(--brand); color: #fff !important; text-align: center;
  padding: 12px 18px !important; border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.nav-cta:hover { background: var(--brand-dark); text-decoration: none; }

@media (min-width: 880px) {
  .nav-toggle { display: none; }
  .primary-nav {
    position: static; transform: none; opacity: 1; pointer-events: auto;
    background: transparent; border: 0;
  }
  .primary-nav ul {
    flex-direction: row; align-items: center; gap: 6px; padding: 0;
  }
  .primary-nav a { padding: 10px 14px; }
  .nav-cta { margin-top: 0; padding: 10px 20px !important; }
}

/* ============== HERO ============== */

.hero {
  background: linear-gradient(180deg, #eaf4ff 0%, #ffffff 65%);
  padding-bottom: clamp(28px, 5vw, 60px);
}
.hero-banner {
  width: 100%;
  margin: 0;
  overflow: hidden;
}
.hero-banner img,
.hero-banner video {
  width: 100%;
  height: auto;
  display: block;
}
.hero-body {
  margin-top: clamp(20px, 3vw, 36px);
}
.eyebrow {
  display: inline-block;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 700; font-size: .78rem;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  margin: 0 0 14px;
}
.hero h1 {
  margin: 0 0 12px;
}
.hero h1 span {
  display: block;
  font-size: clamp(1rem, 1.4vw + .6rem, 1.5rem);
  font-weight: 600; color: var(--ink-2); margin-top: .35em;
}
.lede {
  font-size: clamp(1rem, .6vw + .85rem, 1.15rem);
  color: var(--ink-2);
  max-width: 62ch;
  margin-bottom: 24px;
}

.event-meta {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: grid; gap: 12px;
  grid-template-columns: 1fr 1fr;
}
.event-meta li {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
}
.meta-label {
  display: block;
  font-size: .72rem; font-weight: 700;
  color: var(--brand-dark);
  letter-spacing: .07em; text-transform: uppercase;
  margin-bottom: 4px;
}
.event-meta strong { font-size: .98rem; color: var(--ink); font-weight: 700; }

@media (min-width: 720px) {
  .event-meta { grid-template-columns: repeat(4, 1fr); }
}

/* Countdown */
.countdown {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  padding: 18px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin: 8px 0 24px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.countdown > div {
  display: flex; flex-direction: column; align-items: center;
  padding: 6px 4px;
  border-right: 1px solid rgba(255,255,255,.18);
}
.countdown > div:last-child { border-right: 0; }
.countdown span {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800; line-height: 1; letter-spacing: -.02em;
}
.countdown small {
  font-size: .65rem; text-transform: uppercase; letter-spacing: .12em;
  margin-top: 6px; opacity: .9;
}
.countdown.is-live { background: linear-gradient(135deg, #1d9b5e 0%, #117a47 100%); }
.countdown.is-live::before {
  content: "● Live now";
  grid-column: 1 / -1; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; font-size: .9rem;
}
.countdown.is-live > div { display: none; }
.countdown.is-ended {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
}
.countdown.is-ended::before {
  content: "Thank you for joining";
  grid-column: 1 / -1; font-weight: 800; font-size: 1rem;
}
.countdown.is-ended > div { display: none; }

/* CTA buttons */
.cta-row {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 12px 22px;
  border-radius: 999px; border: 1px solid transparent;
  font-family: inherit; font-size: 1rem; font-weight: 700;
  cursor: pointer; text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary {
  background: var(--brand); color: #fff;
  box-shadow: 0 8px 20px rgba(230,0,126,.32);
}
.btn-primary:hover { background: var(--brand-dark); }
.btn-secondary {
  background: #fff; color: var(--ink); border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { border-color: var(--brand); color: var(--brand-dark); }
.btn-on-dark { background: #fff; color: var(--brand-dark); }
.btn-on-dark:hover { background: var(--paper-2); }
.btn-ghost {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.55);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* ============== SECTIONS ============== */

.section {
  padding: clamp(48px, 7vw, 96px) 0;
}
.section.about       { background: var(--paper); }
.section.speakers    { background: var(--paper-2); }
.section.agenda      { background: var(--paper); }
.section.cta-strip   {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
}

.kicker {
  display: inline-block;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand-dark);
  margin: 0 0 10px;
}
.kicker.light { color: rgba(255,255,255,.85); }

/* ABOUT cards */
.about-cards {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
.about-cards li {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.about-cards h3 { color: var(--brand-dark); font-size: 1.05rem; margin-bottom: 6px; }
.about-cards p  { margin: 0; color: var(--ink-2); }
@media (min-width: 720px) {
  .about-cards { grid-template-columns: repeat(3, 1fr); }
}

/* SPEAKERS */
.speaker-grid {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: grid; gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .speaker-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px)  { .speaker-grid { grid-template-columns: repeat(3, 1fr); } }

.speaker {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .25s ease;
}
.speaker:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.speaker.chairperson { border-color: var(--brand); }
.speaker-photo {
  aspect-ratio: 1 / 1; background: var(--accent-soft); overflow: hidden;
}
.speaker-photo img { width: 100%; height: 100%; object-fit: cover; }
.speaker-body { padding: 20px 22px 24px; }
.role-tag {
  display: inline-block;
  background: var(--brand); color: #fff;
  font-size: .68rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 999px;
  margin: 0 0 10px;
}
.speaker h3 { margin: 0 0 4px; color: var(--accent-dark); }
.creds { font-size: .8rem; color: var(--muted); margin: 0 0 10px; font-weight: 600; letter-spacing: .04em; }
.affiliation { font-size: .92rem; color: var(--ink-2); margin: 0; }

/* AGENDA */
.agenda-meta { color: var(--muted); margin: 0 0 28px; }
.agenda-track {
  margin: 36px 0 14px;
  padding: 12px 18px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  border-radius: var(--radius);
  font-size: 1.05rem;
}
.agenda-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
}
.agenda-list li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.agenda-list li:last-child { border-bottom: 0; }
.time {
  font-variant-numeric: tabular-nums;
  font-weight: 800; color: var(--brand-dark); font-size: .92rem;
  letter-spacing: .02em;
}
.agenda-list h3, .agenda-list h4 {
  margin: 2px 0 4px; color: var(--ink); font-size: 1.05rem;
}
.agenda-topic { margin: 0 0 4px; color: var(--ink-2); font-style: italic; font-size: .94rem; }
.agenda-speaker { margin: 0; color: var(--accent-dark); font-weight: 600; font-size: .92rem; }
.agenda-break { opacity: .8; }
.agenda-break h4 { color: var(--muted); }

@media (min-width: 720px) {
  .agenda-list li {
    grid-template-columns: 130px 1fr;
    align-items: start;
  }
}

/* CTA STRIP */
.cta-strip-inner {
  display: grid; gap: 28px; align-items: center;
  grid-template-columns: 1fr;
}
.cta-strip h2 { color: #fff; margin: 0 0 10px; }
.cta-strip p { color: rgba(255,255,255,.92); margin: 0 0 20px; max-width: 56ch; }
@media (min-width: 880px) {
  .cta-strip-inner { grid-template-columns: 1.4fr 1fr; }
}

/* REGISTER PAGE */
.register-page { background: var(--paper-2); }
.register-section { padding-top: clamp(32px, 5vw, 56px); }
.register-layout {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.register-intro { text-align: center; }
.register-intro .kicker { color: var(--brand-dark); }
.register-intro h1 {
  font-size: clamp(1.6rem, 2.4vw + .7rem, 2.2rem);
  margin-bottom: 6px;
}
.register-intro .lede {
  margin: 0 0 18px;
  font-size: 1.02rem;
  color: var(--ink-2);
}
.register-intro .event-meta {
  margin: 0 0 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 10px;
  padding: 0;
  list-style: none;
}
.register-intro .event-meta li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}
.register-intro .event-meta .meta-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.register-intro .event-meta strong {
  font-size: .9rem;
  color: var(--ink);
  font-weight: 700;
}
.register-note {
  margin: 0;
  color: var(--ink-2);
  font-size: .95rem;
}
.register-widget {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(16px, 3vw, 28px);
}
.register-widget > div { width: 100%; }
.register-widget input,
.register-widget select,
.register-widget textarea { max-width: 100%; }
.bigmarker-widget-out-box {
  max-width: 450px !important;
}

/* ============== FOOTER ============== */

.site-footer {
  background: var(--ink);
  color: #cdd5e6;
  padding: 48px 0 32px;
}
.footer-brand {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  gap: 22px 40px;
  margin-bottom: 28px;
}
.footer-brand img {
  background: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  max-height: 64px; width: auto;
}
.brand-group {
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
}
.brand-group-end { margin-left: auto; align-items: flex-end; }
@media (max-width: 720px) {
  .brand-group-end { margin-left: 0; align-items: flex-start; }
}
.brand-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8893ae;
}
.disclaimer {
  font-size: .82rem;
  line-height: 1.6;
  color: #aab4cc;
  max-width: 90ch;
  margin: 0 0 16px;
}
.disclaimer strong { color: #fff; }
.abbreviation {
  font-size: .76rem; color: #8a93ad; margin: 0 0 18px;
}
.meta-line {
  display: flex; flex-wrap: wrap; gap: 8px 24px;
  font-size: .76rem; color: #8a93ad;
  border-top: 1px solid #1f2c4a;
  padding-top: 16px; margin: 0;
}

/* ============== PRINT ============== */

@media print {
  :root { --container: 100%; }
  .site-header, .nav-toggle, .primary-nav, .countdown, .cta-row, .cta-strip, .hero-banner { display: none !important; }
  body { color: #000; background: #fff; }
  .section { padding: 16px 0; }
  .speaker, .about-cards li { box-shadow: none; border-color: #999; break-inside: avoid; }
  .agenda-list li { break-inside: avoid; }
  a { color: #000; text-decoration: underline; }
}

/* ============== COMING SOON ============== */
.coming-soon-page {
  background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 60%);
  min-height: 100vh;
  display: flex;
}
.coming-soon {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(48px, 8vw, 96px) 0;
}
.coming-soon-inner {
  max-width: 640px;
  text-align: center;
}
.coming-soon-logo {
  width: clamp(180px, 40vw, 280px);
  height: auto;
  margin: 0 auto 28px;
}
.coming-soon h1 {
  font-size: clamp(1.9rem, 4vw + .6rem, 2.8rem);
  margin: 4px 0 10px;
}
.coming-soon .lede {
  font-size: 1.1rem;
  color: var(--ink-2);
  margin: 0 0 18px;
}
.coming-soon-meta {
  font-weight: 700;
  color: var(--brand-dark);
  margin: 0 0 10px;
}
.coming-soon-note {
  color: var(--muted);
  max-width: 52ch;
  margin: 0 auto 28px;
}
.coming-soon .cta-row {
  justify-content: center;
}
.hidden { 
  display: none; 
  visibility: hidden;
  
}
