:root {
  --bg: #f3f7fd;
  --paper: #fffdf8;
  --paper-strong: #ffffff;
  --surface: #edf3fb;
  --ink: #16233b;
  --muted: #60748e;
  --line: rgba(22, 35, 59, 0.12);
  --forest: #173154;
  --forest-strong: #0e2140;
  --forest-soft: #35547a;
  --olive: #607ca1;
  --gold: #efb94c;
  --gold-strong: #ff8b2b;
  --gold-light: #fff2d8;
  --heading-font: "Georgia", "Times New Roman", serif;
  --body-font: "Trebuchet MS", "Segoe UI", sans-serif;
  --shadow: 0 24px 70px rgba(18, 33, 63, 0.14);
  --shadow-soft: 0 18px 44px rgba(18, 33, 63, 0.1);
  --radius: 28px;
  --radius-sm: 18px;
}

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

html {
  scroll-behavior: smooth;
}

html.is-rotating,
html.is-rotating body {
  scroll-behavior: auto !important;
}

html.is-rotating *,
html.is-rotating *::before,
html.is-rotating *::after {
  transition: none !important;
  animation: none !important;
}

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(84, 115, 154, 0.16), transparent 30rem),
    radial-gradient(circle at 85% 0%, rgba(103, 191, 220, 0.1), transparent 24rem),
    linear-gradient(180deg, #f9fbff 0%, var(--bg) 58%, #eaf1fb 100%);
  line-height: 1.5;
}

button,
a {
  font: inherit;
}

button {
  border: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: min(1180px, calc(100% - 32px));
  margin: 12px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(14, 33, 64, 0.84);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 36px rgba(14, 33, 64, 0.18);
}

.brand,
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  min-width: 0;
}

.brand-text {
  color: #f8f5ee;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.header-link {
  color: rgba(248, 245, 238, 0.8);
  font-weight: 760;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 34px;
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 30px;
  padding: clamp(24px, 3.5vw, 46px);
  overflow: hidden;
  border-radius: calc(var(--radius) + 12px);
  background: linear-gradient(135deg, #11213f 0%, #173154 50%, #26466f 100%);
  box-shadow: var(--shadow);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 163, 70, 0.18), transparent 18rem),
    radial-gradient(circle at 8% 18%, rgba(103, 191, 220, 0.14), transparent 22rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px, 42px 42px;
  pointer-events: none;
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: #ffd88e;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(239, 185, 76, 0.16);
}

.eyebrow.dark {
  color: #7a5a21;
}

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

h1,
h2,
h3 {
  font-family: var(--heading-font);
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  margin-bottom: 14px;
  color: #fffaf2;
  font-size: clamp(2.55rem, 4.5vw, 4.2rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 18px;
  color: #d7e4f4;
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
}

.hero-lead strong {
  color: #fff6dc;
  font-weight: 900;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 720px;
  margin-bottom: 20px;
}

.proof-strip > div {
  padding: 14px 14px 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
}

.proof-strip strong {
  display: block;
  margin-bottom: 4px;
  color: #fff8eb;
  font-size: 1.06rem;
  letter-spacing: -0.02em;
}

.proof-strip span {
  display: block;
  color: #d0ddef;
  font-size: 0.92rem;
}

.hero-cta-row,
.cta-stack {
  display: grid;
  gap: 10px;
}

.cta-note {
  max-width: 620px;
  margin: 0;
  color: #d1dded;
  font-size: 0.92rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 920;
  letter-spacing: -0.018em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn::after {
  content: "→";
  font-size: 1.08em;
}

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

.btn:focus-visible,
.header-link:focus-visible,
.brand:focus-visible,
summary:focus-visible {
  outline: 4px solid rgba(255, 193, 86, 0.35);
  outline-offset: 4px;
}

.btn-cta {
  color: #221608;
  background: linear-gradient(135deg, #ffd05b, #ff8b2b);
  box-shadow: 0 20px 48px rgba(255, 139, 43, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.btn-cta:hover {
  box-shadow: 0 26px 60px rgba(255, 139, 43, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.btn-small {
  padding: 11px 18px;
  font-size: 0.92rem;
}

.btn-large {
  width: fit-content;
  min-height: 58px;
  padding: 16px 26px;
  font-size: clamp(1rem, 2vw, 1.11rem);
}

.hero-panel {
  display: grid;
  gap: 16px;
  align-self: stretch;
}

.growth-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}

.growth-visual {
  position: relative;
  aspect-ratio: 1.52;
  overflow: hidden;
  background: #11271f;
}

.growth-visual svg {
  width: 100%;
  height: 100%;
  display: block;
}

.growth-copy {
  padding: 22px 22px 24px;
  color: #e7eef8;
}

.panel-kicker {
  margin-bottom: 6px;
  color: #ffd88e;
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.growth-copy h2 {
  margin-bottom: 10px;
  color: #fff9ed;
  font-size: clamp(1.2rem, 2.4vw, 1.72rem);
  line-height: 1.13;
}

.growth-copy p {
  margin-bottom: 0;
  color: #d7e4f4;
}

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

.hero-check-list li {
  position: relative;
  padding-left: 30px;
  color: #eaf1fb;
  line-height: 1.62;
}

.hero-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #ffd05b;
  box-shadow: 0 0 0 6px rgba(255, 208, 91, 0.14);
}

.section,
.cta-band,
.final-cta {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto 30px;
}

.section {
  padding: clamp(22px, 3.2vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.88);
  box-shadow: var(--shadow-soft);
}

.section-header {
  max-width: 820px;
  margin-bottom: 20px;
}

.section-header.compact {
  max-width: 640px;
}

.section-header h2,
.authority-copy h2,
.cta-band h2,
.final-cta h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-header p,
.authority-copy p,
.cta-band p,
.final-cta p,
.faq-item p {
  color: var(--muted);
}

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

.audience-card,
.value-card,
.result-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f7fd 100%);
  box-shadow: 0 14px 30px rgba(17, 28, 19, 0.06);
}

.audience-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 999px;
  color: #362108;
  background: #ffd88e;
  font-weight: 900;
}

.audience-card h3,
.value-card h3,
.result-card h3,
.day-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.audience-card p,
.value-card p,
.result-card p,
.day-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.audience-card.featured {
  color: #fffaf2;
  background: linear-gradient(135deg, #173154, #2b4f7a);
}

.audience-card.featured h3,
.audience-card.featured span {
  color: #221608;
}

.audience-card.featured span {
  background: #ffd88e;
}

.audience-card.featured p {
  color: #d6e4f4;
}

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

.day-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f7fd 100%);
}

.day-number {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
  border-radius: 16px;
  color: #221608;
  background: linear-gradient(135deg, #ffd05b, #ff9b36);
  font-size: 1.45rem;
  font-weight: 900;
  box-shadow: 0 12px 22px rgba(255, 155, 54, 0.18);
}

.cta-band,
.final-cta {
  padding: clamp(24px, 4vw, 40px);
  border-radius: calc(var(--radius) + 4px);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 26px;
  align-items: center;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 214, 122, 0.18), transparent 18rem),
    linear-gradient(135deg, #173154 0%, #234162 54%, #34557c 100%);
  color: #fffaf2;
  box-shadow: var(--shadow);
}

.cta-band h2,
.cta-band p {
  color: inherit;
}

.cta-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.cta-panel h3 {
  margin-bottom: 8px;
  color: #fff9ed;
  font-size: 1.26rem;
}

.cta-panel p {
  margin-bottom: 0;
  color: #d7e4f4;
}

.authority-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.64fr) minmax(0, 1.36fr);
  gap: 32px;
  align-items: center;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background:
    radial-gradient(circle at 10% 15%, rgba(239, 185, 76, 0.12), transparent 18rem),
    #ffffff;
  box-shadow: var(--shadow-soft);
}

.authority-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  background: #e3ecf8;
  box-shadow: 0 20px 48px rgba(18, 33, 63, 0.14);
}

.authority-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: inherit;
  pointer-events: none;
}

.authority-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.trust-list li {
  position: relative;
  padding: 12px 14px 12px 42px;
  border: 1px solid rgba(23, 49, 84, 0.1);
  border-radius: 16px;
  background: #f3f7fd;
  color: #2b486f;
  font-weight: 760;
}

.trust-list li::before {
  content: "✓";
  position: absolute;
  left: 15px;
  top: 12px;
  color: #b56a13;
  font-weight: 950;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  cursor: pointer;
  padding: 18px 54px 18px 20px;
  list-style: none;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: -0.018em;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--olive);
  font-size: 1.55rem;
  font-weight: 500;
}

.faq-item[open] summary {
  background: #f3f6ec;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  line-height: 1.7;
}

.final-cta {
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(255, 216, 142, 0.35), transparent 18rem),
    linear-gradient(180deg, #fffdf8 0%, #fff7e8 100%);
  border: 1px solid rgba(239, 185, 76, 0.32);
  box-shadow: 0 20px 48px rgba(181, 106, 19, 0.08);
}

.final-cta .eyebrow {
  color: #9f6518;
  justify-content: center;
}

.final-cta p {
  max-width: 760px;
  margin: 0 auto;
}

.final-cta .cta-stack {
  justify-items: center;
  margin-top: 22px;
}

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

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

.delay-1 {
  transition-delay: 0.12s;
}

.pulse-once {
  animation: pulseOnce 0.45s ease;
}

@keyframes pulseOnce {
  0% { transform: scale(1); }
  45% { transform: scale(0.985); }
  100% { transform: scale(1); }
}

@media (min-width: 961px) and (max-height: 820px) {
  .hero {
    gap: 28px;
    padding: 24px 32px;
  }

  h1 {
    font-size: clamp(2.35rem, 4.1vw, 3.8rem);
  }
}

@media (max-width: 960px) {
  .hero,
  .cta-band,
  .authority-card {
    grid-template-columns: 1fr;
  }

  .proof-strip,
  .audience-grid,
  .value-grid,
  .result-grid,
  .curriculum-grid {
    grid-template-columns: 1fr;
  }

  .audience-card,
  .value-card,
  .result-card {
    min-height: auto;
  }

  .hero-panel,
  .authority-photo-wrap {
    max-width: 680px;
  }
}

@media (max-width: 720px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 10px 12px;
  }

  .brand-text,
  .header-link {
    display: none;
  }


  .hero,
  .section,
  .cta-band,
  .final-cta {
    width: calc(100% - 20px);
  }

  .hero {
    padding: 24px 18px;
    border-radius: 30px;
  }

  h1 {
    font-size: clamp(2.25rem, 10.2vw, 3.55rem);
    line-height: 1.05;
  }

  .btn-large {
    width: 100%;
  }

  .section-header h2,
  .authority-copy h2,
  .cta-band h2,
  .final-cta h2 {
    font-size: clamp(1.9rem, 8.8vw, 2.7rem);
  }
}

@media (hover: none) and (pointer: coarse) {
  html {
    scroll-behavior: auto;
  }

  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(14, 33, 64, 0.96);
  }

  .hero-bg {
    background:
      radial-gradient(circle at 78% 16%, rgba(255, 163, 70, 0.16), transparent 16rem),
      radial-gradient(circle at 8% 18%, rgba(103, 191, 220, 0.12), transparent 18rem);
    background-size: auto, auto;
  }

  .hero,
  .growth-card,
  .section,
  .cta-band,
  .authority-card,
  .final-cta {
    box-shadow: 0 16px 36px rgba(17, 28, 19, 0.1);
  }

  .reveal,
  .reveal.visible,
  .delay-1 {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

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