:root {
  --deep-navy: #0b142b;
  --blue: #2f63ff;
  --blue-dark: #0648f5;
  --pale-blue: #e8f0ff;
  --off-white: #fafbfd;
  --gray: #8a93a6;
  --line: #d9e1f0;
  --text: #101a35;
  --muted: #556079;
  --shadow: 0 18px 50px rgba(11, 20, 43, 0.09);
  --radius: 8px;
  --max: 1280px;
  --font-sans: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 5% 10%, rgba(232, 240, 255, 0.95), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, var(--off-white) 100%);
  font-family: var(--font-sans);
  line-height: 1.8;
  letter-spacing: 0;
  overflow-x: hidden;
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

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

main :where(section, div, article, h1, h2, h3, p) {
  min-width: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 92px;
  padding: 18px clamp(20px, 4vw, 64px);
  background: rgba(250, 251, 253, 0.86);
  border-bottom: 1px solid rgba(217, 225, 240, 0.72);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, min-height 0.25s ease;
}

.site-header.is-scrolled {
  min-height: 76px;
  box-shadow: 0 10px 34px rgba(11, 20, 43, 0.08);
}

.brand {
  display: inline-grid;
  gap: 2px;
  min-width: 185px;
}

.brand-word {
  position: relative;
  color: var(--deep-navy);
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: 0.22em;
}

.brand-word::after {
  content: "";
  position: absolute;
  left: 61%;
  bottom: 6%;
  width: 28px;
  height: 8px;
  background: var(--blue);
  transform: skewX(-18deg);
}

.brand-sub {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.46em;
  white-space: nowrap;
}

.global-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(22px, 4vw, 54px);
  color: var(--deep-navy);
  font-size: 0.95rem;
  font-weight: 650;
}

.global-nav a {
  position: relative;
}

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

.nav-cta-link {
  display: none;
}

.global-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: var(--radius);
  font-weight: 700;
  line-height: 1.2;
  --float-y: 0px;
  --press-scale: 1;
  transform: translateY(var(--float-y)) scale(var(--press-scale));
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.header-cta::before,
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.28) 42%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.header-cta,
.btn.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue) 0%, #064bff 100%);
  box-shadow: 0 14px 26px rgba(47, 99, 255, 0.24);
}

.btn.secondary {
  color: var(--deep-navy);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--blue);
}

.btn:hover,
.header-cta:hover {
  --float-y: -2px;
  box-shadow: 0 20px 36px rgba(47, 99, 255, 0.22);
}

.btn:hover::before,
.header-cta:hover::before,
.btn.is-hovering::before,
.header-cta.is-hovering::before {
  transform: translateX(120%);
}

.btn.is-pressing,
.header-cta.is-pressing {
  --press-scale: 0.98;
}

.btn-ripple {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1);
  animation: button-ripple 0.58s ease-out forwards;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: var(--deep-navy);
}

.section-pad {
  width: min(calc(100vw - 40px), var(--max));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 112px) 0;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
  padding-top: clamp(54px, 8vw, 92px);
}

.hero::after {
  content: "";
  position: absolute;
  right: min(2vw, 28px);
  bottom: 64px;
  z-index: -1;
  width: min(46vw, 520px);
  height: min(46vw, 520px);
  background: linear-gradient(135deg, rgba(47, 99, 255, 0.16), rgba(232, 240, 255, 0));
  clip-path: polygon(42% 0, 100% 22%, 78% 100%, 0 72%);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 28px;
  color: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.leadline,
.eyebrow {
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  overflow-wrap: anywhere;
}

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

h1 {
  margin-bottom: 26px;
  color: var(--deep-navy);
  font-family: var(--font-display);
  font-size: 3.55rem;
  line-height: 1.18;
  font-weight: 800;
  overflow-wrap: normal;
}

h2 {
  margin-bottom: 30px;
  color: var(--deep-navy);
  font-family: var(--font-display);
  font-size: 2.8rem;
  line-height: 1.24;
  font-weight: 800;
  overflow-wrap: anywhere;
}

h3 {
  color: var(--deep-navy);
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.55;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.sp-title-line {
  display: inline;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-text,
.section-lead {
  max-width: 660px;
  color: var(--text);
  font-weight: 500;
  overflow-wrap: anywhere;
}

.hero-actions,
.stacked-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  color: var(--deep-navy);
  background: rgba(232, 240, 255, 0.74);
  border: 1px solid rgba(47, 99, 255, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
}

.hero-actions .btn {
  min-width: min(100%, 270px);
}

.hero-visual {
  position: relative;
  height: min(44vw, 560px);
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(250, 251, 253, 0.95) 0%, rgba(250, 251, 253, 0.28) 30%, rgba(250, 251, 253, 0) 70%);
  pointer-events: none;
}

.hero-visual img,
.final-cta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.metric-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.metric-card,
.text-card,
.number-card,
.feature-card,
.flow article,
.persona-card,
.voice-card,
.instructor-card,
.faq details,
.proof-quote {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.metric-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 124px;
  padding: 22px;
}

.metric-icon,
.round-icon {
  display: inline-grid;
  place-items: center;
  color: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 999px;
}

.metric-icon {
  width: 58px;
  height: 58px;
  font-size: 1.8rem;
  font-weight: 850;
}

.metric-card p {
  margin-bottom: 4px;
  color: var(--deep-navy);
  font-weight: 750;
}

.metric-card strong {
  display: block;
  color: var(--deep-navy);
  font-size: clamp(1.65rem, 2.4vw, 2.45rem);
  line-height: 1.1;
  font-weight: 900;
  white-space: nowrap;
}

.metric-note,
.legal-note {
  grid-column: 1 / -1;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.split-head {
  padding-bottom: 42px;
}

.consultation-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: min(calc(100vw - 40px), var(--max));
  margin: 0 auto;
  padding: clamp(30px, 4vw, 44px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(47, 99, 255, 0.32), rgba(11, 20, 43, 0.04)),
    var(--deep-navy);
  border: 1px solid rgba(47, 99, 255, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(11, 20, 43, 0.18);
}

.consultation-strip h2 {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.consultation-strip p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 650;
}

.consultation-strip .eyebrow {
  color: #8fb0ff;
}

.consultation-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.consultation-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
}

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

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

.text-card,
.number-card,
.feature-card {
  padding: 26px;
}

.round-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  font-weight: 900;
}

.text-card p,
.number-card p,
.feature-card p,
.flow p,
.persona-card p,
.voice-card p,
.instructor-card p,
.pricing-copy p,
.faq p,
.final-copy p {
  color: var(--muted);
  font-weight: 620;
}

.image-link {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-link span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 20px;
  color: #ffffff;
  font-weight: 850;
  background: linear-gradient(0deg, rgba(11, 20, 43, 0.72), transparent);
}

.band {
  background:
    linear-gradient(180deg, rgba(232, 240, 255, 0.8), rgba(255, 255, 255, 0.96)),
    var(--pale-blue);
}

.number-grid,
.promise-cards,
.feature-grid,
.persona-grid,
.voice-grid,
.instructor-grid {
  display: grid;
  gap: 18px;
}

.number-grid {
  grid-template-columns: repeat(3, 1fr);
}

.number-card strong,
.feature-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 3.4rem;
  line-height: 1;
  font-weight: 900;
}

.center-message {
  margin: 48px 0 0;
  color: var(--deep-navy);
  text-align: center;
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  font-weight: 900;
}

.promise-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: stretch;
}

.promise-cards {
  grid-template-columns: repeat(3, 1fr);
}

.promise-photo {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mini-gallery {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1.35fr;
  gap: 12px;
  margin-top: 24px;
}

.mini-gallery img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius);
}

.proof-head {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 34px;
  align-items: center;
}

.proof-head img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
}

.proof-quote {
  margin-top: 28px;
  padding: 28px;
  color: var(--deep-navy);
  text-align: center;
  font-size: clamp(1.05rem, 2vw, 1.38rem);
  font-weight: 900;
}

.authority {
  padding-top: 32px;
}

.authority-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  padding: clamp(34px, 5vw, 58px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(47, 99, 255, 0.22), rgba(11, 20, 43, 0.2)),
    var(--deep-navy);
  border: 1px solid rgba(47, 99, 255, 0.32);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(11, 20, 43, 0.18);
}

.authority .eyebrow,
.authority-kicker {
  color: #8fb0ff;
}

.authority-kicker {
  margin: 18px 0 4px;
  font-size: 0.92rem;
  font-weight: 900;
}

.authority h2 {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.authority-copy p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
}

.authority-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.authority-points span {
  padding: 7px 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 850;
}

.authority-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.18);
}

.authority-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.authority-card div {
  padding: 22px;
}

.authority-card strong {
  display: block;
  color: var(--deep-navy);
  font-size: 1.28rem;
  line-height: 1.35;
}

.authority-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.media-section {
  padding-top: 42px;
}

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

.youtube-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.youtube-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 99, 255, 0.34);
  box-shadow: 0 24px 58px rgba(11, 20, 43, 0.13);
}

.youtube-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--deep-navy);
}

.youtube-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease, opacity 0.32s ease;
}

.youtube-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 20, 43, 0), rgba(11, 20, 43, 0.34));
}

.youtube-card:hover .youtube-thumb img {
  opacity: 0.92;
  transform: scale(1.04);
}

.play-mark {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #ffffff;
  background: rgba(47, 99, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(11, 20, 43, 0.26);
  transform: translate(-50%, -50%);
  font-size: 1.15rem;
  line-height: 1;
}

.youtube-copy {
  padding: 22px;
}

.youtube-copy span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.youtube-copy h3 {
  margin: 8px 0 14px;
}

.youtube-copy p {
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 620;
}

.courses {
  padding-top: 40px;
}

.course-list {
  display: grid;
  gap: 20px;
}

.course-card {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --card-lift: 0px;
  transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(var(--card-lift));
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  will-change: transform;
}

.course-card.is-hovering {
  --card-lift: -4px;
  border-color: rgba(47, 99, 255, 0.34);
  box-shadow: 0 24px 58px rgba(11, 20, 43, 0.13);
}

.course-card.reverse {
  grid-template-columns: 1.25fr 0.95fr;
}

.course-card.reverse .course-media {
  order: 2;
}

.course-card.reverse .course-copy {
  order: 1;
}

.course-media {
  position: relative;
  min-height: 250px;
  overflow: hidden;
}

.course-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(0deg, rgba(11, 20, 43, 0.94), rgba(11, 20, 43, 0));
}

.course-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-media span {
  position: absolute;
  z-index: 1;
  left: 32px;
  bottom: 26px;
  color: #ffffff;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.25;
}

.course-media small {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.course-copy {
  padding: clamp(28px, 4vw, 42px);
}

.course-copy ul {
  display: grid;
  gap: 8px;
  padding-left: 1.2em;
  color: var(--text);
  font-weight: 650;
}

.course-copy li::marker {
  color: var(--blue);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.tags span {
  padding: 5px 14px;
  color: var(--blue);
  border: 1px solid rgba(47, 99, 255, 0.36);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.text-link {
  position: relative;
  display: inline-flex;
  width: fit-content;
  transform-origin: left center;
  color: var(--blue);
  font-weight: 900;
  transition: transform 0.2s ease, color 0.2s ease;
}

.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.text-link:hover,
.text-link:focus-visible,
.text-link.is-hovering {
  color: var(--blue-dark);
  transform: translateX(4px) scale(1.08);
}

.text-link:hover::after,
.text-link:focus-visible::after,
.text-link.is-hovering::after {
  transform: scaleX(1);
}

.feature-grid {
  grid-template-columns: repeat(5, 1fr);
}

.feature-card {
  min-height: 220px;
}

.feature-card strong {
  font-size: 2.6rem;
}

.flow {
  margin-top: 56px;
}

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

.flow article {
  position: relative;
  padding: 28px;
}

.flow article:not(:last-child)::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: -34px;
  color: var(--blue);
  font-size: 4rem;
  line-height: 1;
  transform: translateY(-50%);
}

.flow span,
.persona-card strong {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  color: #ffffff;
  background: var(--blue);
  border-radius: 999px;
  font-weight: 900;
}

.persona-grid {
  grid-template-columns: repeat(3, 1fr);
}

.persona-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 18px;
}

.persona-card img {
  width: 120px;
  height: 132px;
  object-fit: cover;
  border-radius: var(--radius);
}

.note {
  margin: 24px 0 0;
  color: var(--deep-navy);
  text-align: center;
  font-weight: 800;
}

.voice {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(232, 240, 255, 0.52));
}

.voice-grid,
.instructor-grid {
  grid-template-columns: repeat(3, 1fr);
}

.voice-card,
.instructor-card {
  overflow: hidden;
}

.voice-card img,
.instructor-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.voice-card h3,
.voice-card p,
.voice-card span,
.instructor-card h3,
.instructor-card strong,
.instructor-card p {
  display: block;
  margin-right: 24px;
  margin-left: 24px;
}

.voice-card h3,
.instructor-card h3 {
  margin-top: 22px;
}

.voice-card span {
  width: fit-content;
  margin-top: 22px;
  margin-bottom: 8px;
  padding: 2px 12px;
  color: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
}

.instructor-card strong {
  color: var(--deep-navy);
  font-weight: 900;
}

.pricing {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 64px;
  align-items: center;
}

.pricing-visual {
  position: relative;
  min-height: 350px;
}

.pricing-visual img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.floating-box {
  position: absolute;
  right: 40px;
  bottom: 34px;
  width: min(300px, 72%);
  padding: 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.floating-box strong {
  display: block;
  margin-bottom: 10px;
  color: var(--deep-navy);
  font-size: 1.08rem;
  line-height: 1.55;
}

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

.faq details {
  padding: 0 28px;
}

.faq summary {
  display: grid;
  grid-template-columns: 34px 1fr 24px;
  gap: 14px;
  align-items: center;
  padding: 26px 0;
  color: var(--deep-navy);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 900;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  color: var(--blue);
  font-size: 1.7rem;
  line-height: 1;
}

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

.faq summary span,
.faq p span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #ffffff;
  background: var(--blue);
  border-radius: 999px;
  font-weight: 900;
}

.faq p {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 4px;
}

.faq p span {
  color: var(--blue);
  background: #ffffff;
  border: 1px solid var(--blue);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 34px;
  align-items: center;
  min-height: 450px;
  padding: clamp(64px, 8vw, 94px) clamp(20px, 6vw, 90px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(232, 240, 255, 0.95) 0%, rgba(250, 251, 253, 0.9) 52%, rgba(250, 251, 253, 0) 100%),
    var(--pale-blue);
}

.final-kicker {
  color: var(--blue) !important;
  font-size: 1.18rem;
  font-weight: 900 !important;
}

.final-cta img {
  min-height: 320px;
  border-radius: var(--radius);
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  width: min(calc(100vw - 40px), 920px);
  margin: 0 auto;
  padding: 60px 0 36px;
}

.site-footer div {
  display: grid;
  gap: 8px;
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.site-footer strong {
  color: var(--blue);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.site-footer a {
  color: var(--deep-navy);
  font-weight: 760;
}

.site-footer p {
  grid-column: 1 / -1;
  margin: 18px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.88rem;
  font-weight: 650;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(47, 99, 255, 0.25);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(11, 20, 43, 0.18);
  backdrop-filter: blur(16px);
}

.sticky-cta span {
  padding-left: 12px;
  color: var(--deep-navy);
  font-size: 0.8rem;
  font-weight: 900;
  white-space: nowrap;
}

.sticky-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: #ffffff;
  background: var(--blue);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
}

.legal-page {
  max-width: 920px;
}

.legal-page h1 {
  max-width: 780px;
}

.legal-page section {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.legal-page h2 {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.legal-page p,
.legal-page li,
.legal-table dd {
  color: var(--muted);
  font-weight: 560;
}

.legal-page ul {
  display: grid;
  gap: 8px;
  padding-left: 1.2em;
}

.legal-updated {
  color: var(--blue-dark) !important;
  font-weight: 800 !important;
}

.legal-table {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-table div {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-bottom: 1px solid var(--line);
}

.legal-table div:last-child {
  border-bottom: 0;
}

.legal-table dt,
.legal-table dd {
  margin: 0;
  padding: 20px 22px;
}

.legal-table dt {
  color: var(--deep-navy);
  background: rgba(232, 240, 255, 0.55);
  font-weight: 900;
}

.sub-hero,
.course-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
  padding-top: clamp(58px, 8vw, 104px);
}

.sub-hero-copy p,
.course-hero p,
.section-heading.narrow p {
  max-width: 760px;
  color: var(--muted);
  font-weight: 540;
}

.sub-hero-media,
.course-hero > img {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.sub-hero-media img,
.course-hero > img {
  width: 100%;
  height: min(44vw, 520px);
  min-height: 360px;
  object-fit: cover;
}

.sub-hero-media.collage {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  background: #ffffff;
}

.sub-hero-media.collage img {
  height: 100%;
  min-height: 0;
  border-radius: 6px;
}

.sub-hero-media.collage img:first-child {
  grid-row: 1 / -1;
}

.sub-band {
  background:
    linear-gradient(180deg, rgba(232, 240, 255, 0.72), rgba(255, 255, 255, 0.96)),
    var(--pale-blue);
}

.corporate-hero {
  position: relative;
}

.corporate-hero::before {
  content: "";
  position: absolute;
  right: 5%;
  bottom: 12%;
  z-index: -1;
  width: min(38vw, 480px);
  height: min(26vw, 330px);
  background: linear-gradient(135deg, rgba(47, 99, 255, 0.15), rgba(255, 255, 255, 0));
  clip-path: polygon(14% 18%, 100% 0, 86% 82%, 0 100%);
}

.corporate-proof span {
  background: #ffffff;
}

.corporate-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(calc(100vw - 40px), var(--max));
  margin: -26px auto 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(217, 225, 240, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(11, 20, 43, 0.08);
}

.corporate-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  color: var(--deep-navy);
  background: rgba(232, 240, 255, 0.66);
  border: 1px solid rgba(47, 99, 255, 0.15);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 850;
}

.corporate-fit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.corporate-fit-grid article {
  min-height: 260px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 251, 253, 0.86)),
    #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.corporate-fit-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 99, 255, 0.34);
  box-shadow: 0 24px 58px rgba(11, 20, 43, 0.13);
}

.corporate-fit-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.corporate-fit-grid h3 {
  margin-bottom: 14px;
}

.corporate-fit-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 540;
}

.corporate-flow > .eyebrow,
.corporate-flow > h2,
.corporate-faq > .eyebrow,
.corporate-faq > h2 {
  display: block;
}

.corporate-quote {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  padding-top: clamp(44px, 6vw, 74px);
  padding-bottom: clamp(44px, 6vw, 74px);
}

.corporate-quote > div {
  padding: clamp(30px, 5vw, 54px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.corporate-quote h2 {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
}

.corporate-quote p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 540;
}

.corporate-quote img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.statement-grid,
.module-grid,
.course-detail-grid,
.deliverable-list,
.check-grid {
  display: grid;
  gap: 18px;
}

.statement-grid {
  grid-template-columns: repeat(3, 1fr);
}

.statement-card,
.module-grid article,
.course-tile,
.deliverable-list div,
.check-grid p {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.statement-card,
.module-grid article {
  padding: 28px;
}

.statement-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 800;
}

.statement-card p,
.module-grid p,
.course-tile p,
.deliverable-list p,
.check-grid p,
.timeline p,
.promise-table p {
  color: var(--muted);
  font-weight: 540;
}

.split-list {
  display: grid;
  gap: 16px;
}

.split-list article {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 28px;
  align-items: start;
  padding: 26px 0;
  border-top: 1px solid rgba(138, 147, 166, 0.26);
}

.split-list article:last-child {
  border-bottom: 1px solid rgba(138, 147, 166, 0.26);
}

.promise-table {
  display: grid;
  gap: 14px;
}

.promise-table div {
  display: grid;
  grid-template-columns: 150px 0.42fr 1fr;
  gap: 22px;
  align-items: center;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.promise-table span,
.module-grid span,
.course-tile span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.promise-table strong,
.deliverable-list strong {
  color: var(--deep-navy);
  font-size: 1.08rem;
  line-height: 1.55;
}

.feature-grid.detail {
  grid-template-columns: repeat(5, 1fr);
}

.course-detail-grid {
  grid-template-columns: repeat(3, 1fr);
}

.course-tile {
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.course-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 99, 255, 0.34);
  box-shadow: 0 24px 58px rgba(11, 20, 43, 0.13);
}

.course-tile img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.course-tile div {
  padding: 24px;
}

.timeline {
  display: grid;
  gap: 18px;
  counter-reset: step;
}

.timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 74px 0.35fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.timeline span,
.module-grid span:first-child {
  display: inline-grid;
  place-items: center;
}

.timeline span {
  width: 54px;
  height: 54px;
  color: #ffffff;
  background: var(--blue);
  border-radius: 999px;
  font-weight: 800;
}

.module-grid {
  grid-template-columns: repeat(4, 1fr);
}

.module-grid article span {
  display: block;
  margin-bottom: 12px;
}

.deliverable-list {
  grid-template-columns: repeat(4, 1fr);
}

.deliverable-list div {
  padding: 24px;
}

.check-grid {
  grid-template-columns: repeat(4, 1fr);
}

.check-grid p {
  position: relative;
  margin: 0;
  padding: 24px 24px 24px 58px;
  color: var(--deep-navy);
}

.check-grid p::before {
  content: "✓";
  position: absolute;
  top: 24px;
  left: 24px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #ffffff;
  background: var(--blue);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.course-hero {
  grid-template-columns: minmax(0, 0.86fr) minmax(440px, 1.14fr);
}

.tags.large {
  margin: 22px 0 0;
}

.tags.large span {
  padding: 7px 16px;
  background: rgba(232, 240, 255, 0.58);
}

.page-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  width: min(calc(100vw - 40px), var(--max));
  margin: 0 auto clamp(72px, 9vw, 112px);
  padding: clamp(34px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(232, 240, 255, 0.92), rgba(255, 255, 255, 0.96)),
    #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-cta h2 {
  margin-bottom: 12px;
  font-size: clamp(1.85rem, 3.2vw, 2.8rem);
}

.page-cta p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 540;
}

.reveal {
  opacity: 0;
  --reveal-y: 24px;
  transform: translateY(var(--reveal-y));
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  --reveal-y: 0px;
}

.course-card.reveal {
  transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(calc(var(--reveal-y) + var(--card-lift)));
}

@keyframes button-ripple {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

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

  .course-card {
    transform: none !important;
  }
}

@media (max-width: 1080px) {
  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .hero,
  .pricing,
  .proof-head,
  .final-cta,
  .sub-hero,
  .course-hero,
  .consultation-strip,
  .authority-panel {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .sub-hero-media img,
  .course-hero > img {
    min-height: 420px;
  }

  .metric-row,
  .philosophy-grid,
  .feature-grid,
  .statement-grid,
  .module-grid,
  .deliverable-list,
  .check-grid,
  .youtube-grid,
  .corporate-fit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .corporate-quote {
    grid-template-columns: 1fr;
  }

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

  .timeline article,
  .promise-table div {
    grid-template-columns: 90px 1fr;
  }

  .timeline p,
  .promise-table p {
    grid-column: 2;
  }

  .promise-layout {
    grid-template-columns: 1fr;
  }

  .promise-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 78px;
    gap: 14px;
  }

  .brand {
    min-width: 132px;
  }

  .brand-word {
    font-size: 2.2rem;
  }

  .brand-sub {
    font-size: 0.5rem;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .global-nav {
    position: fixed;
    top: 78px;
    right: 16px;
    left: 16px;
    display: none;
    padding: 20px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .global-nav.is-open {
    display: grid;
    gap: 16px;
  }

  .nav-cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    color: #ffffff !important;
    background: var(--blue);
    border-radius: var(--radius);
  }

  .nav-cta-link::after {
    display: none;
  }

  .hero,
  .course-card,
  .course-card.reverse,
  .statement-grid,
  .corporate-fit-grid,
  .feature-grid.detail,
  .course-detail-grid,
  .module-grid,
  .deliverable-list,
  .check-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.34rem;
  }

  .course-card.reverse .course-media,
  .course-card.reverse .course-copy {
    order: initial;
  }

  .metric-row,
  .number-grid,
  .promise-cards,
  .feature-grid,
  .flow-grid,
  .persona-grid,
  .voice-grid,
  .instructor-grid,
  .site-footer,
  .philosophy-grid {
    grid-template-columns: 1fr;
  }

  .youtube-grid {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    margin-right: -32px;
    margin-left: -32px;
    padding: 0 32px 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .youtube-grid::-webkit-scrollbar {
    display: none;
  }

  .youtube-card {
    flex: 0 0 min(82vw, 320px);
    scroll-snap-align: start;
  }

  .flow-grid {
    gap: 16px;
  }

  .flow article:not(:last-child)::after {
    display: none;
  }

  .mini-gallery {
    grid-template-columns: 1fr;
  }

  .persona-card {
    grid-template-columns: 96px 1fr;
  }

  .persona-card img {
    width: 96px;
    height: 112px;
  }

  .final-cta {
    padding-right: 20px;
    padding-left: 20px;
  }

  .split-list article,
  .timeline article,
  .promise-table div,
  .page-cta,
  .legal-table div {
    grid-template-columns: 1fr;
  }

  .legal-table dt {
    border-bottom: 1px solid var(--line);
  }

  .legal-page {
    width: min(300px, calc(100vw - 48px));
    margin-right: auto;
    margin-left: 42px;
  }

  .legal-table {
    width: 100%;
  }

  .timeline p,
  .promise-table p {
    grid-column: auto;
  }

  .sub-hero-media.collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .sub-hero-media.collage img:first-child {
    grid-row: auto;
  }

  .page-cta {
    width: min(calc(100vw - 84px), var(--max));
  }

  .corporate-quote {
    width: min(calc(100vw - 84px), var(--max));
  }

  .corporate-quote > div {
    padding: 28px;
  }

  .corporate-quote img {
    height: 280px;
  }
}

@media (max-width: 560px) {
  .section-pad {
    width: auto;
    margin-right: 32px;
    margin-left: 32px;
    padding: 64px 0;
  }

  body {
    padding-bottom: 76px;
  }

  .hero,
  .sub-hero,
  .course-hero,
  .pricing,
  .proof-head,
  .final-cta,
  .consultation-strip,
  .authority,
  .media-section,
  .corporate-strip {
    width: auto;
    margin-right: 32px;
    margin-left: 32px;
  }

  .corporate-strip {
    justify-content: flex-start;
    margin-top: -18px;
    padding: 14px;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  .corporate-strip::-webkit-scrollbar {
    display: none;
  }

  .corporate-strip span {
    flex: 0 0 auto;
  }

  .authority-panel {
    padding: 26px;
  }

  .authority-card img {
    height: 240px;
  }

  .consultation-strip {
    padding: 26px;
    overflow: hidden;
  }

  .consultation-strip h2,
  .consultation-strip p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .consultation-strip .btn {
    width: 100%;
    min-width: 0;
  }

  h1 {
    font-size: 1.9rem;
  }

  h2 {
    font-size: 1.64rem;
  }

  .leadline {
    font-size: 0.74rem;
  }

  .hero-title-line {
    white-space: normal;
  }

  .hero-copy,
  .sub-hero-copy,
  .course-hero > div,
  .final-copy {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .sub-hero h1,
  .sub-hero h2,
  .sub-hero h3,
  .sub-hero p,
  .statement-card,
  .module-grid article,
  .deliverable-list div,
  .corporate-fit-grid article,
  .corporate-quote,
  .corporate-quote * {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-all;
    line-break: anywhere;
  }

  .corporate-hero h1 {
    font-size: 1.78rem;
    line-height: 1.32;
  }

  .sp-title-line {
    display: block;
  }

  .hero-visual {
    min-height: 310px;
  }

  .sub-hero-media img,
  .course-hero > img {
    min-height: 280px;
  }

  .corporate-fit-grid article {
    min-height: 0;
    padding: 24px;
  }

  .corporate-quote {
    width: auto;
    margin-right: 32px;
    margin-left: 32px;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .corporate-quote > div {
    padding: 24px;
  }

  .metric-card {
    grid-template-columns: 52px 1fr;
    padding: 18px;
  }

  .metric-icon {
    width: 48px;
    height: 48px;
    font-size: 1.45rem;
  }

  .hero-actions .btn,
  .stacked-actions .btn {
    width: min(100%, 100%);
    min-width: 0;
  }

  .course-media span {
    left: 22px;
    right: 22px;
  }

  .faq details {
    padding: 0 18px;
  }

  .faq summary {
    grid-template-columns: 30px 1fr 20px;
    gap: 10px;
    font-size: 0.96rem;
  }

  .floating-box {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .legal-page {
    width: min(300px, calc(100vw - 48px));
    margin-right: auto;
    margin-left: 42px;
  }

  .legal-page h1 {
    font-size: 1.55rem;
  }

  .legal-table {
    width: 100%;
  }

  .sticky-cta {
    right: 14px;
    bottom: 12px;
    left: 14px;
    display: flex;
    justify-content: space-between;
  }

  .sticky-cta a {
    flex: 1;
    min-width: 0;
    padding: 0 12px;
    font-size: 0.82rem;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 1.68rem;
  }

  .pill {
    width: 100%;
    justify-content: center;
    padding-right: 14px;
    padding-left: 14px;
    font-size: 0.72rem;
  }
}


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

.chat-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: grid;
  justify-items: end;
  gap: 12px;
  font-family: var(--font-sans);
}

.chat-widget-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 20px;
  color: #ffffff;
  background: var(--deep-navy);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(11, 20, 43, 0.2);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.chat-widget-dot {
  width: 10px;
  height: 10px;
  background: #41e98a;
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(65, 233, 138, 0.18);
}

.chat-widget-panel {
  width: min(360px, calc(100vw - 24px));
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 54px rgba(11, 20, 43, 0.22);
  backdrop-filter: blur(16px);
}

.chat-widget-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  color: #ffffff;
  background: var(--deep-navy);
}

.chat-widget-head strong {
  font-size: 0.96rem;
  line-height: 1.3;
}

.chat-widget-head button {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 1.2rem;
  line-height: 1;
}

.chat-widget-body {
  display: grid;
  gap: 8px;
  max-height: min(340px, 44vh);
  padding: 14px;
  overflow-y: auto;
}

.chat-bubble {
  max-width: 86%;
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.65;
  white-space: pre-wrap;
}

.chat-bubble.bot {
  justify-self: start;
  color: var(--deep-navy);
  background: var(--pale-blue);
  border: 1px solid rgba(47, 99, 255, 0.14);
}

.chat-bubble.user {
  justify-self: end;
  color: #ffffff;
  background: var(--blue);
}

.chat-bubble.pending {
  color: var(--muted);
}

.chat-widget-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 12px 14px 14px;
  border-top: 1px solid var(--line);
}

.chat-widget-form textarea {
  width: 100%;
  min-height: 48px;
  max-height: 120px;
  resize: vertical;
  padding: 11px 12px;
  color: var(--deep-navy);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  font-size: 0.86rem;
  line-height: 1.5;
}

.chat-widget-form button {
  min-width: 64px;
  padding: 0 12px;
  color: #ffffff;
  background: var(--deep-navy);
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
}

.chat-widget-form button:disabled,
.chat-widget-form textarea:disabled {
  cursor: progress;
  opacity: 0.62;
}

.chat-widget-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 14px 14px;
}

.chat-widget-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 900;
  text-align: center;
}

.chat-widget-links a:first-child {
  color: #ffffff;
  background: var(--blue);
}

.chat-widget-links a:last-child {
  color: var(--deep-navy);
  background: #ffffff;
  border: 1px solid var(--line);
}

@media (max-width: 820px) {
  .chat-widget {
    right: 10px;
    bottom: 72px;
  }

  .chat-widget-toggle {
    min-height: 46px;
    padding: 0 16px;
    font-size: 0.86rem;
  }

  .chat-widget-panel {
    width: calc(100vw - 20px);
  }
}
