:root {
  --navy-950: #0b1430;
  --navy-900: #111d42;
  --navy-800: #192859;
  --purple: #6b4fd3;
  --purple-light: #a994ff;
  --teal: #22b8ad;
  --teal-dark: #0d746f;
  --gold: #f2b544;
  --gold-light: #ffe09a;
  --cream: #faf7f0;
  --sand: #f1e9dc;
  --white: #ffffff;
  --ink: #16203a;
  --muted: #626a7e;
  --line: #ddd9d0;
  --shadow: 0 24px 70px rgba(19, 29, 64, 0.12);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 38px;
  --container: 1160px;
}

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

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

body {
  margin: 0;
  overflow-x: clip;
  background: var(--cream);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

button,
summary {
  font: inherit;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 5vw, 4rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy-900);
  font-weight: 700;
}

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

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(17, 29, 66, 0.08);
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy-900);
  font-size: 1.04rem;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.brand strong {
  font-size: 1.2rem;
  letter-spacing: -0.04em;
}

.brand-symbol {
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  gap: 2px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--navy-900);
}

.brand-symbol i {
  display: block;
  width: 5px;
  border-radius: 5px;
  background: var(--gold);
}

.brand-symbol i:nth-child(1) {
  height: 11px;
  transform: rotate(-12deg);
}

.brand-symbol i:nth-child(2) {
  height: 19px;
}

.brand-symbol i:nth-child(3) {
  height: 13px;
  transform: rotate(12deg);
}

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

.nav > a:not(.button) {
  color: #343d58;
  font-size: 0.86rem;
  font-weight: 650;
}

.nav > a:not(.button):hover {
  color: var(--purple);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 0;
  border-radius: 12px;
  background: var(--navy-900);
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: var(--white);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button:focus-visible,
a:focus-visible,
summary:focus-visible,
.menu-button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.button--small {
  min-height: 44px;
  padding: 11px 19px;
  font-size: 0.82rem;
}

.button--large {
  min-height: 58px;
  padding: 16px 28px;
}

.button--primary {
  background: var(--purple);
  box-shadow: 0 12px 26px rgba(107, 79, 211, 0.24);
  color: var(--white);
}

.button--primary:hover {
  background: #5b3fc8;
  box-shadow: 0 16px 32px rgba(107, 79, 211, 0.32);
}

.button--ghost {
  border-color: rgba(17, 29, 66, 0.22);
  background: rgba(255, 255, 255, 0.42);
  color: var(--navy-900);
}

.button--ghost:hover {
  border-color: var(--purple);
  background: var(--white);
}

.button--light {
  background: var(--white);
  color: var(--navy-900);
}

.button--gold {
  background: var(--gold);
  box-shadow: 0 13px 30px rgba(242, 181, 68, 0.22);
  color: var(--navy-950);
}

.hero {
  position: relative;
  z-index: 2;
  overflow-x: clip;
  overflow-y: visible;
  padding: 74px 0 0;
  background:
    linear-gradient(90deg, rgba(17, 29, 66, 0.04) 1px, transparent 1px) 0 0 / 70px 70px,
    linear-gradient(rgba(17, 29, 66, 0.04) 1px, transparent 1px) 0 0 / 70px 70px,
    var(--cream);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.75;
}

.hero-orb--one {
  top: -220px;
  right: -140px;
  width: 520px;
  height: 520px;
  background: rgba(34, 184, 173, 0.14);
}

.hero-orb--two {
  bottom: 50px;
  left: -180px;
  width: 360px;
  height: 360px;
  background: rgba(107, 79, 211, 0.08);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 70px;
}

.eyebrow,
.section-label {
  color: var(--purple);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
}

.eyebrow > span:first-child {
  width: 24px;
  height: 2px;
  background: var(--purple);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 28px;
  color: var(--navy-900);
  font-size: clamp(3.35rem, 6.2vw, 6.1rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.hero h1 span {
  display: block;
  color: var(--purple);
  font-size: 0.78em;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 32px;
  color: #4f5870;
  font-size: clamp(1.04rem, 2vw, 1.2rem);
  line-height: 1.7;
}

.hero-lead strong {
  color: var(--navy-900);
}

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

.secure-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 650;
}

.secure-note span {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: rgba(34, 184, 173, 0.15);
  color: var(--teal-dark);
}

.hero-art {
  position: relative;
  min-height: 590px;
}

.event-poster {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 5%;
  display: flex;
  width: min(100%, 420px);
  min-height: 535px;
  padding: 38px 40px 40px;
  flex-direction: column;
  overflow: hidden;
  border-radius: 180px 180px var(--radius-lg) var(--radius-lg);
  background: var(--navy-900) url("assets/hero-professora-sala-de-aula.jpg") center 42% / cover no-repeat;
  box-shadow: var(--shadow);
  color: var(--white);
}

.event-poster::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 20, 48, 0.08) 0%,
    rgba(11, 20, 48, 0.18) 38%,
    rgba(11, 20, 48, 0.82) 67%,
    rgba(11, 20, 48, 0.98) 100%
  );
  content: "";
}

.event-poster::after {
  position: absolute;
  top: 105px;
  left: -62px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  opacity: 0.94;
}

.poster-kicker {
  position: relative;
  z-index: 2;
  align-self: flex-end;
  margin-bottom: auto;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(11, 20, 48, 0.64);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.poster-word {
  position: relative;
  z-index: 2;
  margin: 0;
  letter-spacing: -0.06em;
  line-height: 0.86;
}

.poster-word--one {
  margin-left: 0;
  color: var(--gold);
  font-size: 2.55rem;
  font-weight: 450;
  text-shadow: 0 2px 18px rgba(11, 20, 48, 0.55);
}

.poster-word--two {
  color: var(--white);
  font-size: 3rem;
  font-weight: 800;
  text-shadow: 0 2px 18px rgba(11, 20, 48, 0.6);
}

.poster-word--three {
  margin-top: 7px;
  color: var(--teal);
  font-size: 1.7rem;
  font-weight: 650;
  text-shadow: 0 2px 18px rgba(11, 20, 48, 0.68);
}

.poster-line {
  position: relative;
  z-index: 2;
  width: 70px;
  height: 4px;
  margin: 22px 0 14px;
  border-radius: 4px;
  background: var(--purple-light);
}

.poster-footer {
  position: relative;
  z-index: 2;
  color: #e0e4ee;
  font-size: 0.76rem;
  line-height: 1.5;
}

.art-pill {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(16, 27, 61, 0.18);
}

.art-pill--date {
  top: 74px;
  left: -25px;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 19px;
}

.art-pill--date > span {
  color: var(--purple);
  font-size: 2rem;
  font-weight: 850;
  line-height: 1;
}

.art-pill--date div {
  display: grid;
  line-height: 1;
}

.art-pill--date strong {
  color: var(--navy-900);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.art-pill--date small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.65rem;
}

.art-pill--hours {
  right: -24px;
  bottom: 50px;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 17px;
}

.art-pill--hours strong {
  color: var(--teal-dark);
  font-size: 1.55rem;
}

.art-pill--hours span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.art-ring {
  position: absolute;
  z-index: 1;
  right: -65px;
  bottom: 7px;
  width: 170px;
  height: 170px;
  border: 32px solid var(--purple-light);
  border-radius: 50%;
  opacity: 0.5;
}

.art-dot-grid {
  position: absolute;
  top: 10px;
  left: -4px;
  width: 110px;
  height: 110px;
  background: radial-gradient(var(--gold) 2px, transparent 3px) 0 0 / 14px 14px;
}

.facts-wrap {
  position: relative;
  z-index: 5;
  margin-top: 70px;
  transform: translateY(42px);
}

.event-facts {
  display: grid;
  grid-template-columns: 1.3fr 1.3fr 1fr 1.2fr;
  overflow: hidden;
  border: 1px solid rgba(17, 29, 66, 0.07);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.fact {
  display: flex;
  min-height: 115px;
  align-items: center;
  gap: 13px;
  padding: 22px;
}

.fact + .fact {
  border-left: 1px solid #ece9e2;
}

.fact-icon {
  display: grid;
  min-width: 33px;
  height: 33px;
  place-items: center;
  border-radius: 50%;
  background: #f0ecff;
  color: var(--purple);
  font-size: 0.64rem;
  font-weight: 850;
}

.fact div {
  display: grid;
  gap: 3px;
}

.fact small {
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.fact strong {
  color: var(--navy-900);
  font-size: 0.82rem;
  line-height: 1.35;
}

.section {
  padding: 120px 0;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 56px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.06rem;
}

.section--problem {
  position: relative;
  z-index: 1;
  padding-top: 170px;
  background: var(--white);
}

.problem-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 0.9fr;
  gap: 90px;
}

.section-intro h2 {
  color: var(--navy-900);
}

.section-intro > p:not(.section-label):not(.intro-highlight) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.02rem;
}

.intro-highlight {
  max-width: 610px;
  margin-bottom: 26px;
  color: var(--purple);
  font-size: 1.35rem;
  font-weight: 750;
  line-height: 1.35;
}

.questions-panel {
  padding: 38px;
  border: 1px solid #e6e1d8;
  border-radius: var(--radius-lg);
  background: var(--cream);
}

.questions-title {
  margin-bottom: 22px;
  color: var(--navy-900);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.question-list {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.question-list li {
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid #e1ddd4;
  color: #39425b;
  font-size: 0.93rem;
  font-weight: 650;
  line-height: 1.35;
}

.question-list li:last-child {
  border-bottom: 0;
}

.question-list li span {
  display: grid;
  min-width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-900);
  font-size: 0.8rem;
  font-weight: 850;
}

.section--audience {
  background: var(--cream);
}

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

.audience-card {
  min-height: 225px;
  padding: 30px;
  border: 1px solid #e3ded4;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  transition: transform 180ms ease, border-color 180ms ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  border-color: var(--purple-light);
}

.audience-card > span {
  display: block;
  margin-bottom: 48px;
  color: var(--purple);
  font-size: 0.71rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.audience-card h3 {
  color: var(--navy-900);
}

.audience-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.audience-card--accent {
  border-color: var(--navy-900);
  background: var(--navy-900);
}

.audience-card--accent > span {
  color: var(--gold);
}

.audience-card--accent h3 {
  color: var(--white);
}

.audience-card--accent p {
  color: #cbd1e2;
}

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

.learning-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
}

.learning-sticky {
  position: sticky;
  top: 130px;
}

.learning-sticky h2 {
  color: var(--navy-900);
}

.learning-sticky > p:not(.section-label) {
  max-width: 430px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 18px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--gold);
  color: var(--navy-900);
  font-weight: 750;
}

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

.learning-item {
  display: grid;
  min-height: 175px;
  align-items: start;
  grid-template-columns: 65px 1fr;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.learning-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: #f0ecff;
  color: var(--purple);
  font-size: 0.73rem;
  font-weight: 850;
}

.learning-item h3 {
  color: var(--navy-900);
  font-size: 1.55rem;
}

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

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

.program-shape {
  position: absolute;
  top: -100px;
  right: -80px;
  width: 330px;
  height: 330px;
  border: 65px solid var(--purple);
  border-radius: 50%;
  opacity: 0.42;
}

.section-heading--light {
  position: relative;
  z-index: 2;
}

.section-heading--light h2 {
  color: var(--white);
}

.section--program .section-label {
  color: var(--gold);
}

.modules {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.module {
  display: grid;
  min-height: 260px;
  align-items: start;
  grid-template-columns: 84px 1fr;
  gap: 30px;
  padding: 42px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.module-meta {
  display: grid;
}

.module-meta span {
  color: #aeb7d2;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.module-meta strong {
  color: var(--gold);
  font-size: 2.25rem;
  font-weight: 500;
}

.module h3 {
  color: var(--white);
  font-size: 1.55rem;
}

.module p {
  color: #bdc5da;
  font-size: 0.94rem;
}

.section--certificate {
  background: var(--gold);
}

.certificate-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 90px;
}

.certificate-mark {
  display: grid;
  width: min(100%, 360px);
  aspect-ratio: 1;
  place-content: center;
  border: 3px solid var(--navy-900);
  border-radius: 50%;
  text-align: center;
}

.certificate-mark span {
  color: var(--navy-900);
  font-size: 9rem;
  font-weight: 850;
  letter-spacing: -0.1em;
  line-height: 0.72;
}

.certificate-mark small {
  margin-top: 22px;
  color: var(--navy-900);
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section--certificate .section-label {
  color: var(--navy-900);
}

.section--certificate h2 {
  max-width: 700px;
  color: var(--navy-900);
}

.section--certificate p:not(.section-label) {
  max-width: 720px;
  color: rgba(11, 20, 48, 0.75);
}

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

.speakers-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  margin-bottom: 56px;
}

.speakers-heading h2 {
  margin-bottom: 0;
  color: var(--navy-900);
}

.speakers-copy {
  color: var(--muted);
}

.speakers-copy strong {
  color: var(--purple);
}

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

.speaker-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
}

.speaker-card > div:last-child {
  padding: 25px 26px 28px;
}

.speaker-avatar {
  position: relative;
  display: grid;
  height: 270px;
  place-items: center;
  overflow: hidden;
}

.speaker-avatar::before,
.speaker-avatar::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.speaker-avatar::before {
  width: 180px;
  height: 180px;
  border: 32px solid currentColor;
}

.speaker-avatar::after {
  right: -50px;
  bottom: -50px;
  width: 150px;
  height: 150px;
  background: currentColor;
  opacity: 0.36;
}

.speaker-avatar span {
  position: relative;
  z-index: 2;
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy-900);
  font-size: 1.35rem;
  font-weight: 850;
}

.speaker-avatar--1 {
  background: #ded7ff;
  color: var(--purple);
}

.speaker-avatar--2 {
  background: #c8efeb;
  color: var(--teal);
}

.speaker-avatar--3 {
  background: #ffe4a8;
  color: #dc9320;
}

.speaker-area {
  margin-bottom: 6px;
  color: var(--purple);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.speaker-card h3 {
  color: var(--navy-900);
  font-size: 1.18rem;
}

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

.details-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}

.details-copy h2 {
  color: var(--navy-900);
}

.details-copy > p:last-child {
  max-width: 470px;
  color: var(--muted);
}

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

.details-list > div {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 25px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.details-list dt {
  color: var(--purple);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.details-list dd {
  margin: 0;
  color: var(--navy-900);
  font-size: 1.22rem;
  font-weight: 750;
  line-height: 1.35;
}

.section--pricing {
  background: var(--sand);
}

.pricing-grid {
  display: grid;
  align-items: end;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 990px;
  margin: 0 auto;
}

.price-card {
  min-height: 250px;
  padding: 36px 32px;
  border: 1px solid #d9d2c5;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
}

.price-card--featured {
  min-height: 300px;
  border-color: var(--purple);
  background: var(--navy-900);
  box-shadow: var(--shadow);
  color: var(--white);
}

.price-badge {
  display: inline-block;
  margin-bottom: 43px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy-900);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-name {
  margin-bottom: 8px;
  color: var(--purple);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-card--featured .price-name {
  color: var(--purple-light);
}

.price-value {
  margin-bottom: 14px;
  color: var(--navy-900);
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  font-weight: 850;
  letter-spacing: -0.07em;
  line-height: 1;
}

.price-card--featured .price-value {
  color: var(--white);
}

.price-note {
  color: var(--muted);
  font-size: 0.82rem;
}

.price-card--featured .price-note {
  color: #bbc3da;
}

.pricing-action {
  display: grid;
  place-items: center;
  margin-top: 42px;
  text-align: center;
}

.pricing-action p {
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.8rem;
}

.pricing-action p span {
  color: var(--teal-dark);
  font-weight: 900;
}

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

.groups-panel {
  display: grid;
  align-items: center;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
  padding: 70px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--purple);
  color: var(--white);
}

.groups-visual {
  position: relative;
  display: flex;
  min-height: 320px;
  align-items: end;
  justify-content: center;
}

.groups-visual::before {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 240px;
  height: 240px;
  border: 42px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.groups-visual span {
  position: relative;
  z-index: 2;
  width: 62px;
  height: 150px;
  margin: 0 -5px;
  border-radius: 36px 36px 12px 12px;
  background: var(--gold);
}

.groups-visual span::before {
  position: absolute;
  top: -48px;
  left: 9px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.groups-visual span:nth-child(2),
.groups-visual span:nth-child(2)::before,
.groups-visual span:nth-child(4),
.groups-visual span:nth-child(4)::before {
  background: var(--teal);
}

.groups-visual span:nth-child(3) {
  z-index: 3;
  height: 185px;
  background: var(--white);
}

.groups-visual span:nth-child(3)::before {
  background: var(--white);
}

.groups-copy .section-label {
  color: var(--gold-light);
}

.groups-copy h2 {
  color: var(--white);
}

.groups-copy p:not(.section-label) {
  color: #e1ddf4;
}

.groups-copy .button {
  margin-top: 16px;
}

.section--organizer {
  background: var(--cream);
}

.organizer-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
}

.organizer-logo-wrap {
  display: grid;
  min-height: 330px;
  place-content: center;
  padding: 45px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.organizer-logo-wrap p {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.organizer-logo-wrap img {
  width: 280px;
}

.organizer-grid h2 {
  color: var(--navy-900);
}

.organizer-grid > div:last-child p:not(.section-label) {
  color: var(--muted);
}

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

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
}

.faq-heading {
  position: sticky;
  top: 130px;
}

.faq-heading h2 {
  color: var(--navy-900);
}

.faq-heading > p:last-child {
  color: var(--muted);
}

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

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

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 0;
  color: var(--navy-900);
  font-size: 1.04rem;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  display: block;
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f0ecff;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 13px;
  left: 8px;
  width: 12px;
  height: 2px;
  background: var(--purple);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

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

.final-cta {
  padding: 90px 0;
  background: var(--navy-900);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.final-cta .section-label {
  color: var(--gold);
}

.final-cta h2 {
  margin-bottom: 0;
  color: var(--white);
}

.site-footer {
  padding: 75px 0 30px;
  background: var(--navy-950);
  color: #b8c0d6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 0.7fr 0.8fr;
  gap: 65px;
  padding-bottom: 60px;
}

.brand--footer {
  margin-bottom: 17px;
  color: var(--white);
}

.footer-grid > div:first-child p {
  font-size: 0.84rem;
}

.footer-grid > div:not(:first-child) {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-grid a:not(.brand) {
  color: #b8c0d6;
  font-size: 0.84rem;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-label {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: #838da8;
  font-size: 0.72rem;
}

.mobile-cta {
  display: none;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 24px;
  bottom: 24px;
  max-width: min(390px, calc(100% - 32px));
  padding: 15px 20px;
  transform: translateY(120px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: var(--navy-900);
  box-shadow: 0 16px 40px rgba(11, 20, 48, 0.28);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 650;
  opacity: 0;
  pointer-events: none;
  transition: transform 220ms ease, opacity 220ms ease;
}

.toast--visible {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1050px) {
  .nav {
    gap: 18px;
  }

  .nav > a:not(.button) {
    font-size: 0.76rem;
  }

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

  .hero-art {
    transform: scale(0.9);
    transform-origin: center right;
  }

  .event-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact:nth-child(3) {
    border-left: 0;
    border-top: 1px solid #ece9e2;
  }

  .fact:nth-child(4) {
    border-top: 1px solid #ece9e2;
  }

  .learning-grid,
  .faq-grid {
    gap: 65px;
  }

  .groups-panel {
    gap: 45px;
    padding: 55px;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .menu-button {
    display: block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: none;
    align-items: stretch;
    padding: 18px;
    border: 1px solid #e4dfd4;
    border-radius: 0 0 20px 20px;
    background: var(--cream);
    box-shadow: var(--shadow);
  }

  .nav--open {
    display: grid;
  }

  .nav > a:not(.button) {
    padding: 9px 4px;
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 55px;
  }

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

  .hero-copy {
    max-width: 730px;
  }

  .hero h1 {
    max-width: 680px;
    font-size: clamp(3.5rem, 11vw, 5.4rem);
  }

  .hero-art {
    width: min(100%, 540px);
    margin: 20px auto 0;
    transform: none;
  }

  .event-poster {
    right: 8%;
  }

  .art-pill--date {
    left: 0;
  }

  .art-pill--hours {
    right: 0;
  }

  .facts-wrap {
    margin-top: 30px;
  }

  .section {
    padding: 95px 0;
  }

  .section--problem {
    padding-top: 145px;
  }

  .problem-grid,
  .learning-grid,
  .certificate-grid,
  .speakers-heading,
  .details-grid,
  .groups-panel,
  .organizer-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .audience-grid,
  .speaker-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-card:last-child,
  .speaker-card:last-child,
  .price-card:last-child {
    grid-column: 1 / -1;
  }

  .speaker-card:last-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .learning-sticky,
  .faq-heading {
    position: static;
  }

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

  .certificate-mark {
    width: 280px;
  }

  .groups-panel {
    padding: 55px;
  }

  .groups-visual {
    min-height: 250px;
  }

  .organizer-logo-wrap {
    max-width: 520px;
  }

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

@media (max-width: 580px) {
  html {
    scroll-padding-top: 76px;
  }

  body {
    padding-bottom: 76px;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .header-inner {
    min-height: 68px;
  }

  .hero {
    padding-top: 42px;
  }

  .eyebrow {
    align-items: flex-start;
    font-size: 0.66rem;
    line-height: 1.5;
  }

  .hero h1 {
    margin-bottom: 23px;
    font-size: clamp(3.05rem, 14.8vw, 4.8rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-art {
    min-height: 485px;
    margin-top: 30px;
  }

  .event-poster {
    right: 2%;
    left: 2%;
    width: auto;
    min-height: 445px;
    padding: 30px 28px 32px;
    border-radius: 135px 135px 30px 30px;
  }

  .poster-kicker {
    margin-bottom: auto;
    font-size: 0.58rem;
  }

  .poster-word--one {
    margin-left: 0;
    font-size: 2.2rem;
  }

  .poster-word--two {
    font-size: clamp(2.45rem, 11vw, 3rem);
  }

  .poster-word--three {
    font-size: 1.45rem;
  }

  .poster-line {
    margin-top: 18px;
  }

  .art-pill--date {
    top: 45px;
    left: -5px;
  }

  .art-pill--hours {
    right: -5px;
    bottom: 10px;
  }

  .art-dot-grid,
  .art-ring {
    display: none;
  }

  .facts-wrap {
    transform: translateY(30px);
  }

  .event-facts {
    grid-template-columns: 1fr;
  }

  .fact {
    min-height: 88px;
    padding: 18px;
  }

  .fact + .fact,
  .fact:nth-child(3) {
    border-top: 1px solid #ece9e2;
    border-left: 0;
  }

  .section {
    padding: 78px 0;
  }

  .section--problem {
    padding-top: 115px;
  }

  h2 {
    font-size: clamp(2.15rem, 11vw, 3.1rem);
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .problem-grid,
  .learning-grid,
  .certificate-grid,
  .speakers-heading,
  .details-grid,
  .groups-panel,
  .organizer-grid,
  .faq-grid {
    gap: 38px;
  }

  .questions-panel {
    padding: 26px 22px;
    border-radius: var(--radius);
  }

  .audience-grid,
  .speaker-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .audience-card:last-child,
  .speaker-card:last-child,
  .price-card:last-child {
    grid-column: auto;
  }

  .audience-card {
    min-height: 190px;
    padding: 26px;
  }

  .audience-card > span {
    margin-bottom: 35px;
  }

  .learning-item {
    min-height: 0;
    grid-template-columns: 48px 1fr;
    gap: 15px;
    padding: 27px 0;
  }

  .learning-number {
    width: 40px;
    height: 40px;
  }

  .learning-item h3 {
    font-size: 1.28rem;
  }

  .module {
    min-height: 0;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    padding: 28px 20px;
  }

  .module-meta strong {
    font-size: 1.75rem;
  }

  .module h3 {
    font-size: 1.25rem;
  }

  .certificate-mark {
    width: 220px;
    margin-inline: auto;
  }

  .certificate-mark span {
    font-size: 6.7rem;
  }

  .speaker-card:last-child {
    display: block;
  }

  .speaker-avatar {
    height: 225px;
  }

  .details-list > div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0;
  }

  .details-list dd {
    font-size: 1.05rem;
  }

  .price-card,
  .price-card--featured {
    min-height: 230px;
  }

  .price-card--featured {
    order: -1;
  }

  .price-badge {
    margin-bottom: 35px;
  }

  .groups-panel {
    width: calc(100% - 22px);
    padding: 40px 24px;
    border-radius: 28px;
  }

  .groups-visual {
    min-height: 205px;
    transform: scale(0.82);
  }

  .groups-copy .button {
    width: 100%;
    padding-inline: 20px;
  }

  .organizer-logo-wrap {
    min-height: 255px;
    padding: 32px;
  }

  .faq-list summary {
    min-height: 72px;
    font-size: 0.96rem;
  }

  .final-cta {
    padding: 70px 0;
  }

  .final-cta .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-bottom: 45px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 120;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 15px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(17, 29, 66, 0.1);
    background: rgba(250, 247, 240, 0.95);
    box-shadow: 0 -10px 30px rgba(17, 29, 66, 0.1);
    backdrop-filter: blur(16px);
  }

  .mobile-cta div {
    display: grid;
    line-height: 1.1;
  }

  .mobile-cta small {
    color: var(--muted);
    font-size: 0.63rem;
    font-weight: 750;
  }

  .mobile-cta strong {
    color: var(--navy-900);
    font-size: 1.27rem;
  }

  .mobile-cta .button {
    min-height: 46px;
    padding: 12px 19px;
    font-size: 0.82rem;
  }

  .toast {
    right: 16px;
    bottom: 94px;
    left: 16px;
    max-width: none;
    text-align: center;
  }
}

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