.inter-<uniquifier> {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

:root {
  --bg: #ffffff;
  --bg-deep: #061827;
  --bg-soft: #f8f5ef;
  --surface: #ffffff;
  --surface-2: #fbf8f2;
  --surface-3: #f1ece1;
  --border: rgba(15, 35, 65, 0.12);
  --border-strong: rgba(15, 35, 65, 0.2);
  --text: #0f2341;
  --muted: #58687b;
  --muted-2: #7b8998;
  --gold: #e7ad46;
  --gold-light: #ffd98c;
  --gold-dark: #c98d2f;
  --teal: #43ddc9;
  --danger: #ef8e8e;
  --shadow: 0 24px 60px rgba(15, 35, 65, 0.12);
  --radius: 28px;
  --container: 1180px;
  --header-height: 78px;
  --font-main: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans", "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

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

p,
li,
label,
input,
textarea,
button {
  font-family: var(--font-main);
}

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

h1,
h2,
h3 {
  color: var(--text);
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
}

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

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  border-radius: 10px;
  color: var(--bg);
  background: var(--gold);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(15, 35, 65, 0.09);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 34px rgba(15, 35, 65, 0.08);
}

.header-inner {
  height: 100%;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.brand-logo {
  width: 54px;
  height: 54px;
  padding: 3px;
  border: 1px solid rgba(231, 173, 70, 0.48);
  border-radius: 14px;
  background: #fff;
  object-fit: contain;
  object-position: center;
  box-shadow:
    0 10px 34px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(6, 24, 39, 0.06);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  color: #0f2341;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.brand-copy small {
  margin-top: 4px;
  color: #7f92a8;
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.02;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  color: #536277;
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--gold);
}

.button {
  position: relative;
  isolation: isolate;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.button-primary::before,
.button-small::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -80%;
  left: -35%;
  width: 28%;
  height: 260%;
  background: rgba(255, 255, 255, 0.34);
  transform: rotate(20deg) translateX(-260%);
  transition: transform 0.55s ease;
}

.button-primary:hover::before,
.button-small:hover::before {
  transform: rotate(20deg) translateX(620%);
}

.button:focus-visible,
.accordion-trigger:focus-visible,
input:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(246, 199, 94, 0.35);
  outline-offset: 3px;
}

.button svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.3;
  transition: transform 0.2s ease;
}

.button:hover svg {
  transform: translateX(3px);
}

.button-small {
  min-height: 40px;
  padding: 10px 14px;
  color: #07131f;
  background: linear-gradient(135deg, #ffd98c, #e7ad46);
  box-shadow: 0 18px 42px rgba(231, 173, 70, 0.26);
}

.button-primary {
  color: #07131f;
  background: linear-gradient(135deg, #ffd98c, #e7ad46);
  box-shadow: 0 18px 42px rgba(231, 173, 70, 0.26);
}

.hero .button-primary {
  min-height: 58px;
  padding: 16px 27px;
  box-shadow:
    0 20px 46px rgba(231, 173, 70, 0.3),
    0 0 0 1px rgba(255, 217, 140, 0.24);
}

.button-primary:hover,
.button-small:hover {
  box-shadow: 0 20px 46px rgba(231, 173, 70, 0.32);
}

.button-secondary {
  color: #0f2341;
  border-color: rgba(15, 35, 65, 0.2);
  background: rgba(15, 35, 65, 0.035);
}

.button-secondary:hover {
  border-color: rgba(246, 199, 94, 0.45);
  color: var(--gold-light);
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 32%, rgba(41, 139, 143, 0.1), transparent 34%),
    radial-gradient(circle at 12% 14%, rgba(231, 173, 70, 0.09), transparent 28%),
    linear-gradient(rgba(15, 35, 65, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 35, 65, 0.025) 1px, transparent 1px),
    var(--bg);
  background-size: auto, auto, 64px 64px, 64px 64px, auto;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(transparent, var(--bg));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 825px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 78px;
  padding-block: 82px 100px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 24px;
  color: #c98d2f;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow-line {
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.hero-content > .eyebrow {
  color: #c98d2f;
  font-size: 16px;
  background: none;
}

.hero-content > .eyebrow .eyebrow-line {
  background: #c98d2f;
}

.eyebrow-centered {
  justify-content: center;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 4.2vw, 4.15rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.55;
}

.hero-highlights {
  display: flex;
  gap: 25px;
  margin: 0 0 33px;
  padding: 0;
  color: #46566b;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.28;
  list-style: none;
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-highlights svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.countdown {
  max-width: 560px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.countdown-unit {
  min-width: 86px;
  display: grid;
  justify-items: center;
  padding: 13px 12px 11px;
  border: 1px solid rgba(15, 35, 65, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 28px rgba(15, 35, 65, 0.07);
}

.countdown-unit strong {
  color: #0f2341;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown-unit span {
  margin-top: 6px;
  color: #718094;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.countdown > i {
  color: var(--gold-dark);
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
}

.countdown-status {
  margin: 0 0 27px;
  color: #748396;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 20px 0 0;
  color: #778697;
  font-size: 14px;
  font-weight: 600;
}

.hero-note svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
}

.hero-visual {
  position: relative;
  padding-inline: 30px;
}

.portrait-card {
  position: relative;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 34px;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.portrait-accent {
  display: none;
}

.portrait-photo {
  width: 100%;
  height: 615px;
  border-radius: 34px;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(0.92) contrast(1.04);
  box-shadow: var(--shadow);
}

.portrait-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 34px;
  background: linear-gradient(180deg, transparent 55%, rgba(6, 24, 39, 0.84));
  pointer-events: none;
}

.webinar-badge {
  position: absolute;
  z-index: 4;
  top: 42px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  border: 1px solid rgba(15, 35, 65, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(67, 221, 201, 0.12), 0 0 13px rgba(67, 221, 201, 0.5);
}

.webinar-badge div {
  display: flex;
  flex-direction: column;
}

.webinar-badge small {
  color: var(--muted-2);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.webinar-badge strong {
  color: #0f2341;
  font-size: 14px;
}

.portrait-caption {
  position: absolute;
  z-index: 4;
  right: 48px;
  bottom: 40px;
  left: 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
}

.portrait-caption span {
  color: #c98d2f;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.portrait-caption p {
  margin: 0;
  color: #c7d2db;
  font-size: 12px;
}

.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: 18px;
  color: #647386;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  font-size: 13px;
  line-height: 1.4;
}

.floating-card strong {
  display: block;
  color: #0f2341;
  font-size: 14px;
  font-weight: 900;
}

.floating-card svg,
.mini-check {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  padding: 6px;
  border-radius: 8px;
  color: var(--gold);
  background: rgba(246, 199, 94, 0.08);
}

.mini-check {
  color: var(--teal);
}

.floating-card-top {
  top: 128px;
  left: -18px;
}

.floating-card-bottom {
  right: -2px;
  bottom: 115px;
}

.hero-decoration {
  position: absolute;
  border: 1px solid rgba(246, 199, 94, 0.12);
  border-radius: 50%;
}

.hero-decoration-one {
  width: 480px;
  height: 480px;
  top: 160px;
  right: -170px;
}

.hero-decoration-two {
  width: 250px;
  height: 250px;
  bottom: 50px;
  left: -190px;
}

.trust-strip {
  position: relative;
  z-index: 3;
  min-height: 79px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  border-top: 1px solid var(--border);
  color: #667587;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.trust-strip i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.section {
  padding-block: 115px;
}

.section-heading {
  max-width: 590px;
}

.section-heading.centered {
  max-width: 810px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-heading h2,
.about-content h2,
.registration-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 3.6vw, 3.35rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0;
}

.section-heading > p:not(.eyebrow),
.about-content > p,
.registration-copy > p {
  color: var(--muted);
  font-family: var(--font-main);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 400;
  line-height: 1.55;
}

.learning-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.learning-card {
  position: relative;
  min-height: 345px;
  padding: 29px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #ffffff, #faf7f1);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.learning-card:hover {
  border-color: rgba(246, 199, 94, 0.4);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.card-index {
  position: absolute;
  top: 17px;
  right: 21px;
  color: rgba(246, 199, 94, 0.12);
  font-size: 47px;
  font-weight: 800;
}

.icon-wrap {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 57px;
  border: 1px solid rgba(246, 199, 94, 0.25);
  border-radius: 15px;
  color: var(--gold);
  background: rgba(246, 199, 94, 0.06);
}

.icon-wrap svg {
  width: 26px;
  height: 26px;
}

.learning-card h3,
.resource-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.22rem, 2.2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.06;
}

.learning-card p,
.resource-card p {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

.receive-section {
  border-block: 1px solid var(--border);
  background:
    radial-gradient(circle at 15% 45%, rgba(231, 173, 70, 0.09), transparent 32%),
    var(--bg-soft);
}

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

.receive-grid > .section-heading {
  max-width: 760px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
  color: #c98d2f;
  font-size: 16px;
  font-weight: 800;
}

.text-link span {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.receive-cta {
  margin-top: 22px;
  min-height: 56px;
  padding: 15px 26px;
  font-size: 16px;
}

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

.resource-card {
  min-height: 186px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff, #fbf8f2);
  box-shadow: 0 15px 36px rgba(15, 35, 65, 0.07);
}

.resource-check {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #ffffff;
  background: #c98d2f;
  font-size: 12px;
  font-weight: 800;
}

.resource-card small {
  color: #c98d2f;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.resource-card h3 {
  margin-top: 7px;
}

.about-section {
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: center;
  gap: 105px;
}

.about-visual {
  position: relative;
  padding: 0 0 45px 35px;
}

.about-frame {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 32px;
  background: transparent;
  box-shadow: none;
}

.about-photo {
  width: 100%;
  height: 575px;
  border-radius: 32px;
  object-fit: cover;
  object-position: center 18%;
  box-shadow: var(--shadow);
}

.about-visual blockquote {
  position: absolute;
  right: -45px;
  bottom: 0;
  width: 310px;
  margin: 0;
  padding: 23px 26px;
  border-left: 3px solid var(--gold);
  border-radius: 0 20px 20px 0;
  color: #f7fbff;
  background: #061827;
  box-shadow: var(--shadow);
  font-size: 16px;
  font-style: normal;
  font-weight: 650;
  line-height: 1.5;
}

.about-lead {
  color: var(--text) !important;
  font-size: 19px !important;
  font-weight: 650;
}

.mission-list {
  display: grid;
  gap: 16px;
  margin-top: 31px;
}

.mission-list div {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
}

.mission-list strong {
  min-width: 150px;
  color: #c98d2f;
  font-size: 16px;
}

.mission-list span {
  color: var(--muted);
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.6;
}

.registration-section {
  padding-block: 110px;
  background:
    radial-gradient(circle at 82% 48%, rgba(231, 173, 70, 0.12), transparent 24%),
    radial-gradient(circle at 15% 30%, rgba(30, 113, 118, 0.16), transparent 34%),
    linear-gradient(135deg, #0a2338, #061827);
  border-block: 1px solid var(--border);
}

.registration-shell {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  align-items: center;
  gap: 105px;
}

.registration-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding-block: 0;
}

.registration-heading .eyebrow {
  margin-bottom: 12px;
}

.registration-heading h2 {
  margin-bottom: 0;
}

.eyebrow-light {
  color: #c98d2f;
}

.registration-copy > p {
  max-width: 590px;
  margin-bottom: 0;
  color: #b8c6d3;
}

.registration-copy h2 {
  color: #f7fbff;
}

.registration-copy ul {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px 18px;
  margin: 0;
  padding: 0;
  color: #c3ced8;
  font-size: 15px;
  font-weight: 650;
  list-style: none;
}

.registration-copy li {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.registration-copy li span {
  color: var(--teal);
}

.form-card {
  padding: 39px;
  border: 1px solid rgba(255, 217, 140, 0.38);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow:
    0 30px 76px rgba(0, 0, 0, 0.34),
    0 0 0 5px rgba(231, 173, 70, 0.045);
}

.form-heading {
  margin-bottom: 25px;
}

.form-heading span {
  color: #c98d2f;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.form-heading h3 {
  margin: 5px 0 0;
  font-size: clamp(1.22rem, 2.2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.06;
  color: #0f2341;
}

.form-intro {
  margin: 0 0 22px;
  color: #334963;
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  color: #0f2341;
  font-size: 12px;
  font-weight: 700;
}

.form-group input {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  color: #0f2341;
  background: #ffffff;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder {
  color: #65798b;
}

.form-group input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(246, 199, 94, 0.08);
  outline: none;
}

.form-group input.has-error {
  border-color: var(--danger);
}

.field-error {
  min-height: 17px;
  display: block;
  padding-top: 3px;
  color: var(--danger);
  font-size: 11px;
}

.privacy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 13px 0 0;
  color: var(--muted-2);
  font-size: 10px;
  line-height: 1.5;
}

.privacy-note svg {
  width: 12px;
  height: 12px;
}

.form-message {
  min-height: 0;
  margin-top: 0;
  padding: 0;
  border-radius: 14px;
  font-size: 12px;
  text-align: center;
}

.form-message.is-success {
  margin-top: 12px;
  padding: 10px 12px;
  color: var(--teal);
  background: rgba(67, 221, 201, 0.08);
}

.form-card .button-full {
  min-height: 50px;
  margin-top: 4px;
  font-size: 16px;
  box-shadow:
    0 20px 46px rgba(231, 173, 70, 0.3),
    0 0 0 1px rgba(255, 217, 140, 0.24);
}

.registration-form-button {
  width: auto;
  min-width: 0;
  align-self: flex-start;
  padding: 14px 24px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.faq-section .section-heading a {
  color: #c98d2f;
  font-size: 16px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-section a[href^="mailto:"] {
  font-size: 18px;
  font-weight: 800;
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

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

.accordion-trigger {
  width: 100%;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 0;
  border: 0;
  color: #0f2341;
  background: transparent;
  font-size: 17px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.accordion-trigger span {
  position: relative;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  border: 1px solid var(--border);
  border-radius: 50%;
}

.accordion-trigger span::before,
.accordion-trigger span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--gold);
  transform: translate(-50%, -50%);
}

.accordion-trigger span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.2s ease;
}

.accordion-trigger[aria-expanded="true"] span::after {
  transform: translate(-50%, -50%);
}

.accordion-panel {
  padding: 0 55px 23px 0;
}

.accordion-panel p {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.7;
}

.site-footer {
  padding-top: 58px;
  color: #9fb0c0;
  background: var(--bg-deep);
}

.footer-main {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 41px;
}

.brand-footer .brand-logo {
  width: 60px;
  height: 60px;
}

.brand-footer .brand-copy strong {
  color: #f7fbff;
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.brand-footer .brand-copy small {
  color: #7f92a8;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.footer-main > div > p {
  margin: 16px 0 0 72px;
  color: #9fb0c0;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
}

.footer-links {
  display: flex;
  gap: 28px;
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-links a[href^="mailto:"] {
  font-size: 18px;
  font-weight: 800;
}

.footer-bottom {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--border);
  color: #526879;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .hero-grid {
    gap: 42px;
  }

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

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

  .receive-grid,
  .about-grid,
  .registration-shell,
  .faq-layout {
    gap: 60px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 80px;
  }

  .main-nav {
    display: none;
  }

  .hero-grid,
  .receive-grid,
  .about-grid,
  .registration-shell,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 65px;
    padding-top: 65px;
  }

  .hero-visual {
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .trust-strip {
    flex-wrap: wrap;
    padding-block: 22px;
  }

  .about-visual {
    width: min(100%, 570px);
    margin-inline: auto;
  }

  .receive-grid,
  .about-grid,
  .registration-shell,
  .faq-layout {
    gap: 52px;
  }
}

@media (max-width: 767px) {
  .brand-copy strong,
  .brand-footer .brand-copy strong {
    font-size: 0.92rem;
  }
}

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

  .header-inner > .button {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 10.8vw, 3.35rem);
    letter-spacing: 0;
  }

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

  .hero-highlights,
  .hero-actions,
  .trust-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-highlights {
    gap: 10px;
  }

  .countdown {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
  }

  .countdown > i {
    display: none;
  }

  .countdown-unit {
    min-width: 0;
    padding-inline: 5px;
  }

  .countdown-unit strong {
    font-size: 22px;
  }

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

  .hero-visual {
    padding-inline: 0;
  }

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

  .portrait-photo {
    height: 455px;
  }

  .webinar-badge {
    top: 34px;
    right: -5px;
  }

  .floating-card-top {
    left: -5px;
  }

  .floating-card-bottom {
    right: -5px;
    bottom: 88px;
  }

  .trust-strip {
    gap: 8px;
  }

  .trust-strip i {
    display: none;
  }

  .section {
    padding-block: 80px;
  }

  .section-heading.centered {
    text-align: left;
  }

  .eyebrow-centered {
    justify-content: flex-start;
  }

  .section-heading h2,
  .about-content h2,
  .registration-copy h2 {
    font-size: clamp(1.78rem, 8.6vw, 2.65rem);
    letter-spacing: 0;
  }

  .learning-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

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

  .icon-wrap {
    margin-bottom: 40px;
  }

  .about-visual {
    padding: 0 0 60px;
  }

  .about-frame {
    min-height: 0;
  }

  .about-photo {
    height: 455px;
  }

  .about-visual blockquote {
    right: 14px;
    bottom: 0;
    left: 14px;
    width: auto;
  }

  .mission-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .registration-section {
    padding-block: 80px;
  }

  .registration-copy ul {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-card {
    padding: 27px 22px;
  }

  .footer-main,
  .footer-bottom,
  .footer-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main > div > p {
    margin-left: 0;
  }

  .footer-bottom {
    justify-content: center;
    padding-block: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
