﻿@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Urbanist:ital,wght@0,400;0,500;0,600;0,700;0,800;1,700&display=swap");

:root {
  --font-display: "Urbanist", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --navy: #132255;
  --navy-deep: #0b173f;
  --navy-soft: #1d2f6f;
  --blue: #29abe2;
  --blue-dark: #148fc6;
  --blue-light: #dff5ff;
  --blue-mist: #f2faff;
  --ink: #17213f;
  --slate: #59637f;
  --muted: #7c86a0;
  --line: #dbe7f1;
  --white: #ffffff;
  --green: #70d79b;
  --shadow: 0 26px 80px rgba(18, 34, 85, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

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

body,
button,
input,
select,
textarea {
  font-family: var(--font-body);
}

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

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

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

svg {
  display: block;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 108px 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: -64px;
  left: 20px;
  padding: 12px 18px;
  border-radius: 0 0 12px 12px;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(219, 231, 241, 0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 156px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.primary-nav > a:not(.nav-cta) {
  position: relative;
  color: #2d395b;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.primary-nav > a:not(.nav-cta):hover,
.primary-nav > a:not(.nav-cta):focus-visible {
  color: var(--blue-dark);
}

.primary-nav > a:not(.nav-cta):hover::after,
.primary-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta {
  min-height: 46px;
  padding: 0 20px;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
}

.nav-cta svg,
.button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.nav-cta:hover {
  background: var(--blue-dark);
  box-shadow: 0 12px 26px rgba(41, 171, 226, 0.22);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  padding: 82px 0 92px;
  background:
    radial-gradient(circle at 91% 8%, rgba(41, 171, 226, 0.18), transparent 30%),
    radial-gradient(circle at 5% 92%, rgba(41, 171, 226, 0.1), transparent 26%),
    linear-gradient(135deg, #f9fdff 0%, #eef9ff 58%, #f9fcff 100%);
}

.hero::before {
  position: absolute;
  top: -220px;
  right: -170px;
  width: 570px;
  height: 570px;
  border: 1px solid rgba(41, 171, 226, 0.18);
  border-radius: 50%;
  content: "";
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.48;
  background-image:
    linear-gradient(rgba(19, 34, 85, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 34, 85, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent 0%, black 55%, black 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: 72px;
}

.eyebrow,
.kicker {
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 8px 13px;
  border: 1px solid rgba(41, 171, 226, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 8px 28px rgba(19, 34, 85, 0.06);
  letter-spacing: 0.08em;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(41, 171, 226, 0.13);
}

.hero h1 {
  max-width: 690px;
  margin-bottom: 26px;
  color: var(--navy);
  font-size: clamp(58px, 6.2vw, 88px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.93;
}

.hero h1 > span {
  position: relative;
  color: var(--blue);
}

.hero h1 > span::after {
  position: absolute;
  right: 4px;
  bottom: 0;
  left: 4px;
  height: 7px;
  border-radius: 999px;
  background: rgba(41, 171, 226, 0.16);
  content: "";
}

.hero h1 small {
  display: block;
  max-width: 620px;
  margin-top: 17px;
  color: #26345d;
  font-size: clamp(25px, 2.6vw, 36px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.hero-lede {
  max-width: 640px;
  margin-bottom: 30px;
  color: var(--slate);
  font-size: 18px;
  line-height: 1.75;
}

.event-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-bottom: 34px;
}

.event-fact {
  display: flex;
  align-items: center;
  gap: 11px;
}

.fact-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(41, 171, 226, 0.2);
  border-radius: 12px;
  background: var(--white);
  color: var(--blue-dark);
}

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

.event-fact > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.event-fact strong {
  color: var(--ink);
  font-size: 14px;
}

.event-fact small {
  color: var(--muted);
  font-size: 12px;
}

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

.button-primary {
  min-height: 55px;
  padding: 0 25px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(19, 34, 85, 0.2);
  font-size: 15px;
}

.button-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 16px 34px rgba(41, 171, 226, 0.26);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.text-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.text-link:hover svg {
  transform: translateY(3px);
}

.hero-visual {
  position: relative;
  min-height: 510px;
  display: grid;
  align-items: center;
}

.visual-orbit {
  position: absolute;
  border: 1px dashed rgba(41, 171, 226, 0.28);
  border-radius: 50%;
}

.orbit-one {
  inset: 0 12px 10px 0;
  animation: orbit-spin 45s linear infinite;
}

.orbit-two {
  inset: 62px 68px 72px 54px;
  border-style: solid;
  opacity: 0.55;
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

.growth-card {
  position: relative;
  z-index: 2;
  width: min(100%, 460px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 35px 90px rgba(15, 34, 80, 0.18);
  backdrop-filter: blur(16px);
}

.growth-card-top {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #26754a;
  font-size: 11px;
  font-weight: 700;
}

.live-pill i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(112, 215, 155, 0.16);
}

.growth-chart {
  position: relative;
  height: 266px;
  padding: 20px 20px 6px;
}

.growth-chart > svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.chart-grid {
  fill: none;
  stroke: #e8eff5;
  stroke-width: 1;
}

.chart-area {
  fill: url(#chart-fill);
}

.chart-line {
  fill: none;
  stroke: var(--blue);
  stroke-width: 5;
  stroke-linecap: round;
}

.growth-chart circle {
  fill: var(--white);
  stroke: var(--blue);
  stroke-width: 5;
}

.chart-label {
  position: absolute;
  padding: 6px 9px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(19, 34, 85, 0.1);
  font-size: 10px;
  font-weight: 700;
}

.label-cost {
  bottom: 34px;
  left: 34px;
  background: #fff0f1;
  color: #be5261;
}

.label-growth {
  top: 17px;
  right: 18px;
  background: var(--navy);
  color: var(--white);
}

.growth-levers {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 16px;
  border-top: 1px solid var(--line);
  background: #fbfdff;
}

.growth-levers > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.growth-levers small {
  color: #4d5876;
  font-size: 10px;
  font-weight: 700;
}

.lever-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
}

.lever-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tech-icon { background: #e5f5ff; color: #168fc4; }
.market-icon { background: #ecedff; color: #6569c9; }
.clinical-icon { background: #eaf9ef; color: #4ba971; }

.lever-plus {
  color: #a6b0c3;
  font-size: 17px;
  font-weight: 700;
}

.speaker-float {
  position: absolute;
  z-index: 3;
  right: -16px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 17px 13px 13px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 45px rgba(19, 34, 85, 0.16);
}

.mini-avatars {
  display: flex;
}

.mini-avatars span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
}

.mini-avatars span:last-child {
  margin-left: -9px;
  background: var(--blue);
}

.speaker-float p {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1.35;
}

.speaker-float strong { color: var(--navy); font-size: 12px; }
.speaker-float small { color: var(--muted); font-size: 10px; }

.section-intro {
  max-width: 600px;
}

.section-intro.centered {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.kicker {
  margin-bottom: 16px;
}

.section-intro h2,
.playbook-copy h2,
.agenda-heading h2,
.audience-card h2,
.register-copy h2 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(38px, 4.4vw, 58px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.section-intro > p:last-child,
.playbook-copy > p,
.agenda-heading > p,
.register-copy > p {
  color: var(--slate);
  font-size: 17px;
  line-height: 1.75;
}

.overview-section {
  background: var(--white);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.outcome-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  padding: 34px 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.outcome-card::after {
  position: absolute;
  right: -42px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--blue-mist);
  content: "";
  transition: transform 0.3s ease;
}

.outcome-card:hover {
  transform: translateY(-6px);
  border-color: rgba(41, 171, 226, 0.38);
  box-shadow: 0 24px 55px rgba(19, 34, 85, 0.1);
}

.outcome-card:hover::after { transform: scale(1.15); }

.outcome-number {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 34px;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.outcome-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.outcome-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.7;
}

.playbook-section {
  overflow: hidden;
  background: var(--blue-mist);
}

.playbook-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 86px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #3e4969;
  font-size: 14px;
  font-weight: 600;
}

.check-list span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
}

.playbook-map {
  position: relative;
  min-height: 500px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 92px 130px 92px;
  align-content: center;
  gap: 18px;
  padding: 34px;
  border: 1px solid rgba(41, 171, 226, 0.18);
  border-radius: 30px;
  background:
    radial-gradient(circle at 52% 50%, rgba(41, 171, 226, 0.15), transparent 35%),
    var(--white);
  box-shadow: 0 28px 70px rgba(19, 34, 85, 0.1);
}

.map-card {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 30px rgba(19, 34, 85, 0.07);
}

.map-clinical {
  grid-column: 1 / -1;
  grid-row: 3;
  width: calc(50% - 9px);
  justify-self: center;
}

.map-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 13px;
  background: var(--blue-mist);
  color: var(--blue-dark);
}

.map-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-card div {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.map-card small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-card strong {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 17px;
}

.map-lines {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.map-lines i {
  position: absolute;
  display: block;
  background: rgba(41, 171, 226, 0.3);
}

.map-lines i:nth-child(1) {
  top: 165px;
  left: 25%;
  width: 1px;
  height: 85px;
}

.map-lines i:nth-child(2) {
  top: 165px;
  right: 25%;
  width: 1px;
  height: 85px;
}

.map-lines i:nth-child(3) {
  top: 250px;
  left: 50%;
  width: 1px;
  height: 83px;
}

.map-result {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 156px;
  height: 156px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 8px solid var(--white);
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 20px 44px rgba(19, 34, 85, 0.25);
  text-align: center;
  transform: translate(-50%, -50%);
}

.map-result small {
  color: #9bdfff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-result strong {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.15;
}

.pulse-ring {
  position: relative;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  margin-bottom: 7px;
  border-radius: 50%;
  background: rgba(41, 171, 226, 0.25);
}

.pulse-ring i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(41, 171, 226, 0.15);
}

.agenda-section {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}

.agenda-section::before {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: radial-gradient(rgba(255, 255, 255, 0.5) 0.7px, transparent 0.7px);
  background-size: 22px 22px;
  content: "";
}

.agenda-glow {
  position: absolute;
  top: 20%;
  left: -180px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: rgba(41, 171, 226, 0.14);
  filter: blur(30px);
}

.agenda-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 78px;
}

.agenda-heading {
  position: sticky;
  top: 132px;
  align-self: start;
}

.kicker-light {
  color: #80d4f8;
}

.agenda-heading h2,
.register-copy h2 {
  color: var(--white);
}

.agenda-heading > p,
.register-copy > p {
  color: #aeb9d1;
}

.agenda-summary {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 38px;
}

.agenda-summary span {
  display: flex;
  flex-direction: column;
}

.agenda-summary strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
}

.agenda-summary small {
  margin-top: 5px;
  color: #8996b4;
  font-size: 11px;
}

.agenda-summary i {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.16);
}

.agenda-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.agenda-list li {
  position: relative;
  display: grid;
  grid-template-columns: 58px 138px 1fr;
  gap: 20px;
  min-height: 150px;
  padding: 10px 0 34px;
}

.agenda-list li:not(:last-child)::before {
  position: absolute;
  top: 57px;
  bottom: -7px;
  left: 24px;
  width: 1px;
  background: rgba(128, 212, 248, 0.2);
  content: "";
}

.agenda-marker {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(128, 212, 248, 0.32);
  border-radius: 50%;
  background: rgba(41, 171, 226, 0.09);
  color: #80d4f8;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
}

.agenda-time {
  display: flex;
  flex-direction: column;
  padding-top: 5px;
}

.agenda-time strong {
  color: #a6dff6;
  font-size: 12px;
}

.agenda-time small {
  margin-top: 4px;
  color: #6f7e9f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.agenda-content {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.agenda-content h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.agenda-content p {
  max-width: 510px;
  margin: 0;
  color: #98a5c2;
  font-size: 13px;
  line-height: 1.7;
}

.agenda-list .is-highlighted {
  min-height: auto;
  padding: 18px 18px 18px 0;
  border-radius: 20px;
  background: linear-gradient(90deg, rgba(41, 171, 226, 0.13), rgba(41, 171, 226, 0.03));
}

.is-highlighted .agenda-marker {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--navy-deep);
}

.is-highlighted .agenda-content {
  padding-bottom: 0;
  border-bottom: 0;
}

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

.speakers-layout {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  align-items: center;
  gap: 70px;
}

.speaker-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.speaker-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(19, 34, 85, 0.08);
}

.speaker-avatar {
  position: relative;
  min-height: 240px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.18) 0 28%, transparent 29%),
    linear-gradient(145deg, var(--navy), #263b79);
}

.avatar-v {
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.18) 0 28%, transparent 29%),
    linear-gradient(145deg, #148fc6, #43bce9);
}

.speaker-avatar::before,
.speaker-avatar::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  content: "";
}

.speaker-avatar::before { width: 210px; height: 210px; }
.speaker-avatar::after { width: 290px; height: 290px; }

.speaker-avatar.has-photo::before,
.speaker-avatar.has-photo::after {
  display: none;
}

.speaker-avatar img {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-d img { object-position: 50% 6%; }
.avatar-v img { object-position: 50% 6%; }

.speaker-avatar span {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 82px;
  font-weight: 700;
  line-height: 1;
}

.speaker-avatar i {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 18px;
  width: 12px;
  height: 12px;
  border: 3px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: var(--green);
}

.speaker-details {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px 25px 28px;
}

.speaker-label {
  margin-bottom: 6px;
  color: var(--blue-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.speaker-details h3 {
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
}

.speaker-role {
  min-height: 72px;
  margin-bottom: 16px;
  color: #506080;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}

.speaker-bio {
  flex: 1;
  margin: 0;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.audience-section {
  padding-top: 0;
  background: var(--white);
}

.audience-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 68px;
  padding: 54px 64px;
  border: 1px solid #d8edf8;
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(41, 171, 226, 0.16), transparent 32%),
    var(--blue-mist);
}

.audience-card h2 {
  margin: 0;
  font-size: clamp(32px, 3.6vw, 46px);
}

.audience-card ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-card li {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 54px;
  padding: 10px 14px;
  border: 1px solid rgba(219, 231, 241, 0.9);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.85);
  color: #334060;
  font-size: 13px;
  font-weight: 600;
}

.audience-card li span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue-dark);
}

.audience-card li svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.register-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 88%, rgba(41, 171, 226, 0.17), transparent 28%),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
}

.register-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 70% 40%, black, transparent 65%);
}

.register-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 90px;
}

.register-copy h2 {
  max-width: 520px;
}

.register-facts {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
}

.register-facts span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.register-facts strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 29px;
  font-weight: 700;
}

.register-facts small {
  color: #94a2c1;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.register-facts i {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.16);
}

.registration-card {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 35px 90px rgba(2, 9, 31, 0.36);
}

.form-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 25px;
}

.form-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 13px;
  background: var(--blue-light);
  color: var(--blue-dark);
}

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

.form-heading h3 {
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 700;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-grid label > span {
  color: #3c4765;
  font-size: 11px;
  font-weight: 700;
}

.form-grid label em {
  color: var(--muted);
  font-size: 9px;
  font-style: normal;
  font-weight: 500;
}

.form-grid input {
  min-width: 0;
  height: 48px;
  padding: 0 14px;
  outline: none;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fbfdff;
  color: var(--ink);
  font-size: 13px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-grid input::placeholder { color: #a2aabe; }

.form-grid input:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(41, 171, 226, 0.12);
}

.form-button {
  width: 100%;
  min-height: 52px;
  margin-top: 22px;
  background: var(--blue);
  color: var(--navy-deep);
  box-shadow: 0 13px 28px rgba(41, 171, 226, 0.25);
  font-size: 14px;
}

.form-button:hover {
  background: #49b9e9;
  box-shadow: 0 16px 34px rgba(41, 171, 226, 0.34);
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.form-note svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #6aa684;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand img { width: 132px; }

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.footer-inner > a:last-child {
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 700;
}

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

@media (max-width: 1060px) {
  .hero-grid {
    grid-template-columns: 1fr 0.86fr;
    gap: 38px;
  }

  .hero h1 { font-size: clamp(54px, 7vw, 75px); }
  .event-facts { gap: 14px; }
  .event-fact { flex: 1 1 145px; }
  .hero-visual { min-height: 470px; }
  .speaker-float { right: 0; }
  .playbook-grid { gap: 44px; }
  .playbook-map { padding: 24px; }
  .agenda-layout { gap: 46px; }
  .speakers-layout { gap: 42px; }
  .register-grid { gap: 50px; }
}

@media (max-width: 860px) {
  .section { padding: 88px 0; }
  .primary-nav > a:not(.nav-cta) { display: none; }
  .hero { padding: 66px 0 78px; }
  .hero-grid,
  .playbook-grid,
  .agenda-layout,
  .speakers-layout,
  .register-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid { gap: 58px; }
  .hero-copy { text-align: center; }
  .eyebrow { justify-content: center; }
  .hero h1,
  .hero h1 small,
  .hero-lede { margin-right: auto; margin-left: auto; }
  .event-facts,
  .hero-actions { justify-content: center; }
  .hero-visual { width: min(100%, 580px); margin: 0 auto; }
  .playbook-copy { max-width: 650px; }
  .agenda-heading { position: static; max-width: 650px; }
  .agenda-list { margin-top: 10px; }
  .speakers-layout { gap: 44px; }
  .section-intro { max-width: 720px; }
  .audience-card { grid-template-columns: 1fr; gap: 34px; padding: 44px; }
  .register-copy { max-width: 650px; }
  .registration-card { max-width: 680px; }
}

@media (max-width: 680px) {
  .shell { width: min(100% - 32px, 1180px); }
  .section { padding: 74px 0; }
  .header-inner { min-height: 74px; }
  .brand img { width: 135px; }
  .nav-cta { min-height: 42px; padding: 0 15px; font-size: 12px; }
  .hero { min-height: 0; padding: 50px 0 68px; }
  .hero-grid-pattern { mask-image: none; opacity: 0.3; }
  .eyebrow { font-size: 10px; }
  .hero h1 { font-size: clamp(47px, 15vw, 64px); }
  .hero h1 small { font-size: 24px; }
  .hero-lede { font-size: 16px; }
  .event-facts { display: grid; grid-template-columns: 1fr 1fr; text-align: left; }
  .event-fact:last-child { grid-column: 1 / -1; width: max-content; justify-self: center; }
  .hero-actions { flex-direction: column; gap: 17px; }
  .button-primary { width: 100%; max-width: 360px; }
  .hero-visual { min-height: 410px; }
  .growth-card { border-radius: 23px; }
  .growth-card-top { min-height: 60px; padding: 0 17px; }
  .growth-chart { height: 220px; padding: 18px 14px 4px; }
  .growth-levers { gap: 7px; }
  .growth-levers > div { flex-direction: column; gap: 4px; }
  .speaker-float { right: 4px; bottom: 4px; }
  .section-intro h2,
  .playbook-copy h2,
  .agenda-heading h2,
  .register-copy h2 { font-size: 38px; }
  .outcome-grid { grid-template-columns: 1fr; }
  .outcome-card { min-height: 0; padding: 28px; }
  .outcome-number { margin-bottom: 24px; }
  .playbook-grid { gap: 42px; }
  .playbook-map { min-height: 500px; padding: 20px; grid-template-columns: 1fr; grid-template-rows: auto; }
  .map-card { min-height: 78px; }
  .map-clinical { grid-column: auto; grid-row: auto; width: 100%; }
  .map-lines { display: none; }
  .map-result { position: relative; top: auto; left: auto; width: 100%; height: 104px; grid-column: 1; border-width: 5px; border-radius: 18px; transform: none; }
  .map-result .pulse-ring { display: none; }
  .agenda-layout { gap: 50px; }
  .agenda-list li { grid-template-columns: 46px 1fr; gap: 13px; min-height: 0; padding-bottom: 32px; }
  .agenda-list li:not(:last-child)::before { top: 48px; left: 20px; bottom: 0; }
  .agenda-marker { width: 42px; height: 42px; }
  .agenda-time { grid-column: 2; grid-row: 1; padding-top: 0; }
  .agenda-content { grid-column: 2; padding-bottom: 24px; }
  .agenda-list .is-highlighted { padding: 16px 12px 16px 4px; }
  .speaker-grid { grid-template-columns: 1fr; }
  .speaker-avatar { min-height: clamp(240px, 52vw, 340px); }
  .audience-card { padding: 32px 24px; }
  .audience-card ul { grid-template-columns: 1fr; }
  .register-grid { gap: 42px; }
  .register-facts { gap: 14px; }
  .registration-card { padding: 25px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 390px) {
  .primary-nav .nav-cta { padding: 0 12px; }
  .nav-cta svg { display: none; }
  .event-facts { grid-template-columns: 1fr; }
  .event-fact,
  .event-fact:last-child { grid-column: auto; width: auto; justify-self: stretch; }
  .growth-levers small { display: none; }
  .register-facts { justify-content: space-between; }
}

/* Conversion-first webinar hero */
.hero {
  min-height: 760px;
  padding: 66px 0 76px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(400px, 0.78fr);
  gap: 64px;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(54px, 5.5vw, 78px);
  line-height: 0.96;
}

.hero h1 small {
  max-width: 590px;
  font-size: clamp(25px, 2.35vw, 34px);
}

.hero-lede {
  max-width: 600px;
  margin-bottom: 27px;
}

.event-facts {
  gap: 13px 18px;
  margin-bottom: 28px;
}

.hero-actions {
  max-width: 610px;
  justify-content: space-between;
  gap: 24px;
  padding-top: 19px;
  border-top: 1px solid rgba(19, 34, 85, 0.1);
}

.hero-hosts {
  display: flex;
  align-items: center;
  gap: 11px;
}

.hero-hosts p,
.form-event-chip p {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1.35;
}

.hero-hosts strong,
.form-event-chip strong {
  color: var(--navy);
  font-size: 12px;
}

.hero-hosts small,
.form-event-chip small {
  color: var(--muted);
  font-size: 10px;
}

.hero-form-wrap {
  position: relative;
  min-height: 590px;
  display: grid;
  align-items: center;
  scroll-margin-top: 112px;
}

.form-orbit {
  position: absolute;
  border: 1px solid rgba(41, 171, 226, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.form-orbit-one {
  inset: -18px -72px -12px 28px;
}

.form-orbit-two {
  inset: 52px -8px 44px 88px;
  border-style: dashed;
}

.hero-registration {
  position: relative;
  z-index: 2;
  width: min(100%, 445px);
  margin-left: auto;
  padding: 27px 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-top: 4px solid var(--blue);
  box-shadow: 0 32px 90px rgba(15, 34, 80, 0.2);
}

.form-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 21px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.form-topline span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #26754a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-topline span i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(112, 215, 155, 0.16);
}

.form-topline strong {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--blue-mist);
  color: var(--blue-dark);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-registration .form-heading {
  margin-bottom: 21px;
}

.hero-registration .form-heading h2 {
  margin: 0 0 3px;
  color: var(--navy);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.hero-registration .form-grid {
  grid-template-columns: 1fr;
  gap: 13px;
}

.hero-registration .form-grid input {
  height: 47px;
}

.hero-registration .form-button {
  margin-top: 19px;
}

.hero-registration .form-note {
  margin-top: 12px;
}

.form-event-chip {
  position: absolute;
  z-index: 3;
  right: -18px;
  bottom: -42px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(19, 34, 85, 0.16);
}

.chip-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--blue-light);
  color: var(--blue-dark);
}

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

.audience-section {
  padding-top: 0;
  padding-bottom: 108px;
}

.closing-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 62px;
  padding: 10px 0;
}

.closing-copy {
  max-width: 650px;
}

.closing-copy h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: clamp(40px, 4.4vw, 60px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
}

.closing-copy > p:last-child {
  margin: 0;
  color: #aeb9d1;
  font-size: 16px;
}

.closing-action {
  display: grid;
  justify-items: end;
  gap: 24px;
}

.closing-button {
  min-width: 220px;
  min-height: 54px;
  padding: 0 24px;
  background: var(--blue);
  color: var(--navy-deep);
  box-shadow: 0 16px 36px rgba(41, 171, 226, 0.24);
}

.closing-button:hover {
  background: #54c0ec;
  box-shadow: 0 18px 42px rgba(41, 171, 226, 0.32);
}

@media (max-width: 1060px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.76fr);
    gap: 38px;
  }

  .hero h1 { font-size: clamp(52px, 6.4vw, 68px); }
  .hero-actions { align-items: flex-start; }
  .form-event-chip { right: -4px; }
  .closing-card { gap: 38px; }
}

@media (max-width: 860px) {
  .hero {
    padding-top: 58px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-copy { text-align: center; }
  .hero h1,
  .hero h1 small,
  .hero-lede,
  .hero-actions { margin-right: auto; margin-left: auto; }
  .event-facts,
  .hero-actions { justify-content: center; }
  .hero-form-wrap { width: min(100%, 520px); margin: 0 auto; }
  .hero-registration { margin: 0 auto; }
  .form-orbit-one { inset: -18px -54px -12px -54px; }
  .form-orbit-two { inset: 52px 15px 44px 15px; }
  .closing-card { grid-template-columns: 1fr; gap: 36px; }
  .closing-action { justify-items: start; }
}

@media (max-width: 680px) {
  .hero { padding-top: 44px; }
  .hero h1 { font-size: clamp(45px, 14vw, 60px); }
  .hero h1 small { font-size: 23px; }
  .hero-actions { flex-direction: column; padding-top: 18px; }
  .hero-hosts { justify-content: center; }
  .hero-form-wrap { min-height: 596px; }
  .hero-registration { padding: 23px 19px 21px; }
  .form-orbit-one { inset: -8px -24px 0; }
  .form-orbit-two { display: none; }
  .form-event-chip { right: 5px; bottom: -34px; }
  .hero-registration .form-heading h2 { font-size: 22px; }
  .closing-card { padding: 0; }
  .closing-copy h2 { font-size: 40px; }
  .closing-action { justify-items: stretch; }
  .closing-action .register-facts { justify-content: space-between; }
  .closing-button { width: 100%; }
  .audience-section { padding-bottom: 74px; }
}

@media (max-width: 390px) {
  .form-topline strong { display: none; }
  .form-event-chip { left: 16px; right: 16px; justify-content: center; }
}


/* ================= WP form integration ================= */

.quad-webinar-page .quad-webinar-alert {
  display: none;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.4;
}

.quad-webinar-page .quad-webinar-alert.is-error {
  display: block;
  background: #fdecea;
  color: #b3261e;
  border: 1px solid #f5c2bd;
}

.quad-webinar-page .quad-webinar-alert.is-success {
  display: block;
  background: #e7f6ec;
  color: #1b7e3c;
  border: 1px solid #b8e3c5;
}

.quad-webinar-page .quad-field-error {
  color: #dc3545;
  font-size: 12px;
  margin-top: 6px;
  display: none;
}

.quad-webinar-page .quad-field-error.is-visible {
  display: block;
}

.quad-webinar-page .form-grid input.is-invalid {
  border-color: #dc3545;
}

.quad-webinar-page .quad-webinar-full {
  grid-column: 1 / -1;
}

.quad-webinar-page .form-grid label .iti,
.quad-webinar-page .quad-webinar-iti {
  display: block;
  width: 100%;
}

.quad-webinar-page .form-grid label .iti input,
.quad-webinar-page .form-grid label .iti input[type="tel"] {
  width: 100%;
  box-sizing: border-box;
}

.quad-webinar-page .quad-webinar-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.quad-webinar-page .form-button:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.quad-webinar-page .form-button .submit-btn-loading,
.quad-webinar-page .form-button .submit-btn-text {
  display: inline;
}

.quad-webinar-page .iti {
  display: block;
  width: 100%;
}

.quad-webinar-page .iti input[type="tel"] {
  width: 100%;
  box-sizing: border-box;
  padding-left: 52px;
}

.quad-webinar-page .iti--separate-dial-code .iti__selected-flag {
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
}

.quad-webinar-page .iti__country-list {
  z-index: 25;
  text-align: left;
}
