:root {
  --ink: #1a1a1a;
  --ink-soft: #2e3a48;
  --navy: #02385f;
  --paper: #f9fcff;
  --paper-bright: #ffffff;
  --soft: #f2f9ff;
  --line: #e5eaf0;
  --muted: #5a6d85;
  --cyan: #50cde6;
  --cyan-soft: #e7f5ff;
  --purple: #31b1e8;
  /* 텍스트 전용 딥블루. 밝은 배경 위 WCAG AA 4.5:1 확보 (#f9fcff 5.67 · #fff 5.84 · #e7f5ff 5.26) */
  --purple-dark: #0a6b9c;
  --purple-soft: #e7f5ff;
  --lime: #ffd055;
  --lime-deep: #6ec18a;
  --coral: #ff6f6f;
  --orange: #ff6a4c;
  /* D-day 배지처럼 흰 글씨를 올리는 면에만 사용 (흰색 대비 4.71) */
  --orange-deep: #c9491f;
  --violet: #877de2;
  --blue: #31b1e8;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-card: 0 0 20px rgba(0, 0, 0, 0.08);
  --shadow-float: 0 2px 8px rgba(0, 0, 0, 0.16);
  --container: min(1180px, calc(100vw - 48px));
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --type-display: clamp(44px, 5vw, 72px);
  --type-section: clamp(32px, 4vw, 48px);
  --type-feature: clamp(28px, 3vw, 36px);
  --type-card: 24px;
  --type-lead: 18px;
  --type-body: 16px;
  --type-meta: 12px;
}

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

/*
 * img의 width/height 속성은 CLS 방지용 종횡비 힌트로만 둔다.
 * 실제 높이는 항상 CSS 폭에서 유도되어야 하므로 height를 auto로 되돌린다.
 * (명시적으로 height를 지정하는 .brand-logo·.path-icon img 등은 클래스 우선순위로 그대로 유지)
 */
img {
  height: auto;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Pretendard Variable", Pretendard, "SUIT Variable", SUIT, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  word-break: keep-all;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
}

svg {
  display: block;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  font-weight: 700;
  transition: transform 180ms ease;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 76px;
  border-bottom: 1px solid transparent;
  background: rgba(249, 252, 255, 0);
  transition: height 240ms ease, background-color 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease;
}

.site-header.is-scrolled {
  height: 68px;
  border-color: var(--line);
  background: rgba(249, 252, 255, 0.9);
  backdrop-filter: blur(18px) saturate(140%);
}

.header-inner {
  width: var(--container);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 9px;
}

.brand-logo {
  display: block;
  width: 118px;
  height: 24px;
}

.brand-divider {
  width: 1px;
  height: 15px;
  margin-inline: 2px;
  background: var(--line);
}

.brand-product {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

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

.site-nav > a:not(.button) {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #4a4a4a;
  font-size: 14px;
  font-weight: 700;
}

.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  inset: auto 0 6px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms var(--ease-out);
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  background: white;
  transition: transform 240ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

.button {
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:focus-visible,
.text-link:focus-visible,
.site-nav a:focus-visible,
.schedule-link:focus-visible,
.faq-item button:focus-visible,
.dialog-close:focus-visible {
  outline: 3px solid rgba(49, 177, 232, 0.35);
  outline-offset: 3px;
}

.button-primary {
  background: var(--purple);
  color: var(--navy);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #7fcbf6;
}

.button-dark {
  background: var(--ink);
  color: white;
}

.button-lime {
  background: var(--lime);
  color: var(--ink);
}

.button-lime:hover,
.button-lime:focus-visible {
  background: #ffd055;
}

.button-small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 16px;
}

.button-full {
  width: 100%;
  min-height: 52px;
  font-size: 18px;
}

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

.text-link span {
  transition: transform 220ms var(--ease-out);
}

.text-link:hover span {
  transform: translateY(2px);
}

.text-link-dark {
  color: var(--ink);
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: var(--type-meta);
  font-weight: 700;
  letter-spacing: 0.14em;
}

.eyebrow-light {
  color: var(--lime);
}

.hero {
  position: relative;
  min-height: 900px;
  padding: 164px 0 84px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #ffffff 0%, #f9fcff 42%, #e7f5ff 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.48;
  background-image: linear-gradient(rgba(18, 19, 26, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(18, 19, 26, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

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

.hero-orb-one {
  width: 540px;
  height: 540px;
  top: -180px;
  right: -180px;
  background: rgba(80, 205, 230, 0.22);
}

.hero-orb-two {
  width: 360px;
  height: 360px;
  left: 35%;
  bottom: -230px;
  background: rgba(80, 205, 230, 0.2);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, 0.82fr);
  gap: 82px;
  align-items: center;
}

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

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 6px rgba(49, 177, 232, 0.12);
}

.hero-title {
  margin: 0;
  font-size: var(--type-display);
  line-height: 1.04;
  letter-spacing: -0.045em;
  font-weight: 700;
}

.title-line {
  display: block;
  overflow: hidden;
  padding: 0.05em 0.08em 0.08em 0;
  margin-bottom: -0.05em;
}

.title-line > span {
  display: block;
  transform: translateY(115%);
  animation: title-in 950ms var(--ease-out) forwards;
}

.title-line:nth-child(2) > span {
  animation-delay: 90ms;
}

.title-line:nth-child(3) > span {
  animation-delay: 180ms;
}

.title-line:nth-child(4) > span {
  animation-delay: 270ms;
}

.title-line-accent > span {
  color: var(--purple);
}

@keyframes title-in {
  to { transform: translateY(0); }
}

.hero-description {
  margin: 32px 0 0;
  max-width: 580px;
  color: var(--muted);
  font-size: var(--type-lead);
  line-height: 1.65;
  letter-spacing: -0.025em;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.hero-facts {
  max-width: 520px;
  margin: 46px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.hero-facts li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-facts strong {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.hero-facts span {
  color: var(--muted);
  font-size: var(--type-meta);
  font-weight: 500;
}

.reveal-item {
  opacity: 0;
  transform: translateY(16px);
  animation: hero-reveal 800ms var(--ease-out) forwards;
}

.hero-eyebrow.reveal-item { animation-delay: 180ms; }
.hero-description.reveal-item { animation-delay: 420ms; }
.hero-actions.reveal-item { animation-delay: 520ms; }
.hero-facts.reveal-item { animation-delay: 620ms; }
.pass-visual.reveal-item { animation-delay: 360ms; }

@keyframes hero-reveal {
  to { opacity: 1; transform: translateY(0); }
}

.pass-visual {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.pass-visual::before {
  content: "";
  position: absolute;
  width: 610px;
  height: 410px;
  left: 50%;
  bottom: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, rgba(80, 205, 230, 0.7), rgba(80, 205, 230, 0.22) 52%, transparent 72%);
  transform: translateX(-50%);
  filter: blur(8px);
}

.pass-visual::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  top: 52px;
  right: -12px;
  border: 1px solid rgba(8, 36, 56, 0.11);
  border-radius: 50%;
  box-shadow: inset 0 0 0 27px rgba(80, 205, 230, 0.1);
}

.device-stage {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 570px;
}

.hero-device-image {
  position: absolute;
  z-index: 2;
  width: 126%;
  max-width: none;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  filter: drop-shadow(0 28px 38px rgba(8, 36, 56, 0.17));
}

.device-ring {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(8, 36, 56, 0.1);
  border-radius: 50%;
}

.device-ring-one {
  width: 440px;
  height: 220px;
  left: 50%;
  bottom: 90px;
  transform: translateX(-50%) rotate(-12deg);
}

.device-ring-two {
  width: 230px;
  height: 410px;
  left: 50%;
  bottom: 25px;
  transform: translateX(-50%) rotate(28deg);
}

.hero-pass-ticket {
  position: absolute;
  z-index: 5;
  top: 46px;
  right: 0;
  width: 210px;
  padding: 19px 20px;
  border: 1px solid rgba(8, 36, 56, 0.1);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 50px rgba(8, 36, 56, 0.14);
  backdrop-filter: blur(12px);
  transform: rotate(3deg);
}

.ticket-label {
  color: var(--purple-dark);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero-pass-ticket strong {
  margin-top: 2px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.hero-pass-ticket strong b {
  color: var(--purple);
  font-size: 43px;
}

.ticket-detail {
  margin-top: 7px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.exam-float {
  position: absolute;
  z-index: 4;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(8, 36, 56, 0.1);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 11px 28px rgba(8, 36, 56, 0.1);
  backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 700;
  animation: float 5s ease-in-out infinite;
}

.exam-float i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
}

.exam-float-ncs { left: -8px; top: 118px; }
.exam-float-jobs { left: 28px; top: 210px; animation-delay: -1.6s; }
.exam-float-toeic { right: 5px; bottom: 130px; animation-delay: -2.4s; }
.exam-float-license { left: -18px; bottom: 104px; animation-delay: -3.2s; }
.exam-float-data { right: -25px; top: 188px; animation-delay: -4s; }
.exam-float-history { right: -18px; top: 300px; animation-delay: -4.8s; }

.exam-float-jobs i { background: var(--orange); }
.exam-float-toeic i { background: #7fcbf6; }
.exam-float-license i { background: var(--lime-deep); }
.exam-float-data i { background: var(--violet); }
.exam-float-history i { background: var(--lime); }

.pass-card {
  position: relative;
  z-index: 2;
  width: min(390px, 88%);
  min-height: 528px;
  padding: 28px 28px 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 32px;
  overflow: hidden;
  color: white;
  background: var(--ink);
  box-shadow: 0 44px 90px rgba(18, 19, 26, 0.28), 0 8px 18px rgba(18, 19, 26, 0.16);
  transform: rotate(3deg);
  transition: transform 500ms var(--ease-out);
}

.pass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.36;
  background-image: radial-gradient(circle at 100% 0%, rgba(135, 125, 226, 0.95), transparent 36%), linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.04));
  pointer-events: none;
}

.pass-card::after {
  content: "";
  position: absolute;
  width: 270px;
  height: 270px;
  right: -155px;
  bottom: -145px;
  border: 58px solid rgba(255, 208, 85, 0.12);
  border-radius: 50%;
}

.pass-visual:hover .pass-card {
  transform: rotate(1deg) translateY(-5px);
}

.pass-card-topline,
.pass-card-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.mini-brand-mark {
  width: 13px;
  height: 13px;
  border-radius: 4px 4px 4px 1px;
  background: var(--lime);
  transform: rotate(-8deg);
}

.max-badge,
.price-max {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.pass-card-title {
  position: relative;
  z-index: 2;
  margin-top: 42px;
  display: flex;
  flex-direction: column;
  font-size: 36px;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.pass-card-title span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.pass-card-title strong {
  font-size: 54px;
  font-weight: 700;
}

.pass-duration {
  position: absolute;
  z-index: 2;
  top: 98px;
  right: 27px;
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: var(--lime);
  transform: rotate(90deg) translateX(100%);
  transform-origin: top right;
}

.duration-number {
  font-size: 23px;
  font-weight: 700;
}

.duration-unit {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.route-stack {
  position: relative;
  z-index: 2;
  margin-top: 34px;
  display: grid;
  gap: 8px;
}

.route-track {
  min-height: 45px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  display: grid;
  grid-template-columns: 10px 1fr auto;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 300ms ease, background-color 300ms ease, color 300ms ease, transform 300ms var(--ease-out);
}

.route-track.is-active {
  border-color: rgba(255, 208, 85, 0.38);
  color: white;
  background: rgba(255, 208, 85, 0.09);
  transform: translateX(5px);
}

.track-node {
  width: 7px;
  height: 7px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
}

.route-track.is-active .track-node {
  border-color: var(--lime);
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(255, 208, 85, 0.11);
}

.track-label {
  font-size: 12px;
  font-weight: 700;
}

.track-status {
  color: rgba(255, 255, 255, 0.44);
  font-size: 9px;
  font-weight: 500;
}

.pass-card-footer {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.floating-note {
  position: absolute;
  z-index: 4;
  min-width: 188px;
  padding: 13px 16px;
  border: 1px solid rgba(18, 19, 26, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow-float);
  backdrop-filter: blur(10px);
  animation: float 5s ease-in-out infinite;
}

.floating-note > span:last-child {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.floating-note strong {
  color: var(--ink);
  font-size: 12px;
}

.floating-note-one {
  left: -5px;
  bottom: 82px;
}

.floating-note-two {
  right: -32px;
  top: 102px;
  animation-delay: -2.2s;
}

.note-icon {
  width: 31px;
  height: 31px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  font-size: 15px;
  font-weight: 700;
}

.note-icon-dark {
  color: white;
  background: var(--ink);
  font-size: 9px;
  letter-spacing: 0.05em;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-9px) rotate(1deg); }
}

.brand-proof {
  position: absolute;
  inset: auto 0 0;
  padding: 20px 0;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(12px);
}

.brand-proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 58px);
}

.brand-proof p {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.brand-proof span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.brand-proof strong {
  font-size: 17px;
  letter-spacing: -0.04em;
}

.brand-proof i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
}

.section-dark {
  color: white;
  background: var(--navy);
}

.study-section {
  padding: 128px 0;
  background: #ffffff;
}

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

.study-card {
  position: relative;
  min-height: 470px;
  padding: 32px;
  border: 1px solid rgba(8, 36, 56, 0.09);
  border-radius: 28px;
  overflow: hidden;
  background: var(--soft);
  transition: transform 340ms var(--ease-out), box-shadow 340ms var(--ease-out);
}

.study-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-card);
}

.study-card-wide {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  align-items: center;
  grid-column: 1 / -1;
  min-height: 410px;
}

.study-card-dark {
  color: white;
  background: var(--navy);
}

.study-card-blue {
  background: linear-gradient(135deg, #e7f5ff, #d2edff);
}

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

.study-index {
  color: var(--navy);
  font-size: var(--type-meta);
  font-weight: 700;
  letter-spacing: 0.13em;
}

.study-card-dark .study-index {
  color: var(--cyan);
}

.study-card h3 {
  margin: 16px 0 12px;
  font-size: var(--type-feature);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.study-card p {
  margin: 0;
  max-width: 33ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.study-card-dark p {
  color: rgba(255, 255, 255, 0.6);
}

.study-card .study-context {
  position: relative;
  z-index: 3;
  margin-top: 18px;
  max-width: 360px;
}

.study-context-compare {
  width: fit-content;
  padding: 10px 12px;
  border: 1px solid rgba(8, 36, 56, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.84);
}

.study-context-compare span,
.study-context-compare strong {
  font-size: 13px;
  line-height: 1.35;
  white-space: nowrap;
}

.study-context-compare span {
  color: var(--muted);
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-color: rgba(92, 103, 112, 0.52);
}

.study-context-compare i {
  color: var(--purple-dark);
  font-size: 13px;
  font-style: normal;
}

.study-context-compare strong {
  color: var(--navy);
  font-weight: 750;
}

.study-context-devices {
  width: min(100%, 330px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.study-context-devices > span {
  min-width: 0;
  padding: 9px 11px;
  border: 1px solid rgba(78, 213, 255, 0.24);
  border-radius: var(--radius-md);
  background: rgba(20, 55, 89, 0.96);
}

.study-context-devices b,
.study-context-devices small {
  display: block;
}

.study-context-devices b {
  color: var(--cyan);
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: 0.08em;
}

.study-context-devices small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.4;
}

.study-context-moments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.study-context-moments span {
  padding: 8px 12px;
  border: 1px solid rgba(8, 36, 56, 0.1);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.study-card img {
  position: absolute;
  width: min(82%, 430px);
  right: -20px;
  bottom: -8px;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(8, 36, 56, 0.11));
}

.study-card-wide img {
  position: relative;
  width: 100%;
  max-width: 520px;
  right: auto;
  bottom: auto;
  justify-self: end;
}

.study-card-dark img {
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.22));
}

.study-flow {
  margin-top: 20px;
  padding: 22px 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--paper);
}

.study-flow span {
  font-size: 12px;
  font-weight: 700;
}

.study-flow i {
  color: rgba(8, 36, 56, 0.35);
  font-size: 13px;
  font-style: normal;
}

.study-flow .study-flow-max {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--purple);
}

.path-section {
  position: relative;
  padding: 144px 0 96px;
  overflow: hidden;
}

.path-section::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  top: -240px;
  right: -80px;
  border: 72px solid rgba(135, 125, 226, 0.26);
  border-radius: 50%;
}

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

.section-heading h2,
.split-heading h2,
.how-copy h2,
.purchase-copy h2,
.faq-heading h2,
.final-cta h2 {
  margin: 0;
  font-size: var(--type-section);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.section-heading > p:last-child {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: var(--type-lead);
  line-height: 1.72;
  letter-spacing: -0.025em;
}

.path-board {
  position: relative;
  margin-top: 82px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.path-step {
  position: relative;
  min-height: 384px;
  padding: 32px 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.035);
  transition: transform 320ms var(--ease-out), background-color 320ms ease, border-color 320ms ease;
}

.path-step:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.path-number {
  position: absolute;
  top: 25px;
  right: 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--type-meta);
  font-weight: 700;
  letter-spacing: 0.15em;
}

.path-icon {
  position: relative;
  z-index: 1;
  width: 84px;
  height: 84px;
  margin-bottom: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.path-icon img {
  width: 48px;
  height: 48px;
}

.path-icon-ncs,
.path-icon-aptitude,
.path-icon-toeic,
.path-icon-certification,
.path-icon-dataq,
.path-icon-history { background: rgba(255, 255, 255, 0.96); }

.path-kicker {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--type-meta);
  font-weight: 700;
}

.path-step h3 {
  margin: 0 0 14px;
  font-size: var(--type-card);
  line-height: 1.2;
  letter-spacing: -0.045em;
}

.path-step > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

.path-summary {
  margin-top: 28px;
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  align-items: center;
  gap: 28px;
  background: rgba(255, 255, 255, 0.055);
}

.path-summary strong {
  color: var(--lime);
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: -0.025em;
}

.path-summary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.72;
}

.consulting-section {
  padding: 64px 0 128px;
  color: white;
  background: #012f50;
}

.practice-contrast {
  position: relative;
  margin-top: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 32px;
  display: grid;
  grid-template-columns: 0.64fr 1.16fr 1fr;
  gap: 16px;
  overflow: hidden;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.08), rgba(49, 177, 232, 0.05));
}

.practice-contrast-mark {
  position: relative;
  min-height: 256px;
  border-radius: 23px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  overflow: hidden;
  color: var(--ink);
  background: var(--lime);
}

.practice-contrast-mark::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -118px;
  right: -82px;
  border: 34px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
}

.practice-contrast-mark span {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.practice-contrast-mark strong {
  margin-block: -4px;
  font-size: 56px;
  line-height: 1;
  font-weight: 500;
}

.practice-contrast-copy {
  align-self: center;
  padding: 24px 16px;
}

.practice-contrast-copy h3 {
  margin: 0;
  font-size: var(--type-feature);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.practice-contrast-copy > p:last-child {
  max-width: 47ch;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: var(--type-body);
  line-height: 1.72;
}

.practice-contrast-proof {
  align-self: stretch;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 23px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.055);
}

.practice-contrast-proof strong {
  font-size: 20px;
  line-height: 1.42;
  letter-spacing: -0.035em;
}

.practice-contrast-proof p {
  margin: 14px 0 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.7;
}

.practice-contrast-proof a {
  width: fit-content;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--lime);
  font-size: 14px;
  font-weight: 800;
}

.practice-contrast-proof a span {
  transition: transform 220ms var(--ease-out);
}

.practice-contrast-proof a:hover span,
.practice-contrast-proof a:focus-visible span {
  transform: translateX(4px);
}

.fit-section {
  padding: 128px 0;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.66fr;
  gap: 96px;
  align-items: end;
}

.split-heading > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.75;
  letter-spacing: -0.025em;
}

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

.fit-card {
  position: relative;
  min-height: 464px;
  padding: 32px;
  border-radius: 28px;
  overflow: hidden;
  transition: transform 340ms var(--ease-out), box-shadow 340ms var(--ease-out);
}

.fit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.fit-card-purple {
  color: white;
  background: var(--navy);
}

.fit-card-lime { background: var(--lime); }
.fit-card-cream { background: rgba(255, 208, 85, 0.18); }

.fit-index {
  position: absolute;
  top: 24px;
  right: 25px;
  width: 31px;
  height: 31px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid;
  place-items: center;
  opacity: 0.55;
  font-size: 10px;
  font-weight: 700;
}

.fit-graphic {
  position: relative;
  height: 225px;
}

.orbit {
  position: absolute;
  inset: 26px auto auto 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: translateX(-50%) rotate(-12deg);
}

.orbit-one {
  width: 180px;
  height: 110px;
}

.orbit-two {
  width: 110px;
  height: 180px;
  top: -8px;
  transform: translateX(-50%) rotate(28deg);
}

.orbit-dot {
  position: absolute;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 7px rgba(255, 208, 85, 0.16);
}

.orbit-dot-one { top: 40px; left: 25%; }
.orbit-dot-two { top: 112px; right: 24%; background: var(--coral); box-shadow: 0 0 0 7px rgba(255, 111, 111, 0.16); }

.orbit-center {
  position: absolute;
  top: 58px;
  left: 50%;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--purple);
  background: white;
  font-size: 31px;
  font-weight: 700;
  transform: translateX(-50%);
}

.fit-calendar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 0.85;
}

.fit-calendar::before,
.fit-calendar::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(18, 19, 26, 0.25);
  border-radius: 24px;
  transform: rotate(11deg);
}

.fit-calendar::after {
  transform: rotate(-7deg);
}

.fit-calendar span {
  position: relative;
  z-index: 1;
  font-size: 80px;
  font-weight: 700;
  letter-spacing: -0.09em;
}

.fit-calendar small {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.fit-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: center;
}

.fit-stack span {
  min-height: 58px;
  padding: 0 8px 0 12px;
  border: 1px solid rgba(18, 19, 26, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 18px rgba(18, 19, 26, 0.05);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.fit-stack span img {
  width: 26px;
  height: 26px;
  flex: none;
}

.fit-card h3 {
  margin: 0 0 12px;
  font-size: var(--type-card);
  line-height: 1.35;
  letter-spacing: -0.045em;
}

.fit-card > p {
  margin: 0;
  max-width: 30ch;
  color: rgba(18, 19, 26, 0.62);
  font-size: 15px;
  line-height: 1.7;
}

.fit-card-purple > p {
  color: rgba(255, 255, 255, 0.78);
}

.fit-note {
  margin: 26px 0 0;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.65;
  text-align: center;
}

.app-download {
  margin-top: 26px;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: rgba(255, 255, 255, 0.72);
}

.app-download-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.app-download-copy > span {
  margin-bottom: 4px;
  color: var(--purple-dark);
  font-size: var(--type-meta);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.app-download-copy strong {
  font-size: var(--type-body);
  letter-spacing: -0.02em;
}

.app-download-copy p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.app-download-button {
  flex: 0 0 auto;
  min-width: 224px;
}

.app-download-after-study {
  margin-top: 48px;
}

.section-soft {
  background: var(--soft);
}

.included-section {
  padding: 150px 0;
}

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

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

.rights-grid {
  margin-top: 76px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.right-card {
  position: relative;
  min-height: 360px;
  padding: 27px;
  border: 1px solid rgba(18, 19, 26, 0.09);
  border-radius: 24px;
  grid-column: span 2;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  transition: transform 340ms var(--ease-out), box-shadow 340ms var(--ease-out), border-color 340ms ease;
}

.right-card:hover {
  z-index: 2;
  transform: translateY(-8px) rotate(-0.5deg);
  border-color: rgba(18, 19, 26, 0.16);
  box-shadow: var(--shadow-card);
}

.right-card-wide {
  grid-column: span 3;
  min-height: 330px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
}

.right-card-dark {
  color: white;
  background: var(--ink);
}

.right-card-data {
  background: var(--purple-soft);
}

.right-tags {
  display: flex;
  align-items: center;
  gap: 7px;
}

.right-tags span {
  padding: 4px 8px;
  border: 1px solid currentColor;
  border-radius: 999px;
  opacity: 0.56;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.right-card h3 {
  margin: 27px 0 13px;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.right-card > p,
.right-card-copy > p {
  margin: 0;
  max-width: 27ch;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.right-card-dark > p {
  color: rgba(255, 255, 255, 0.56);
}

.ncs-graphic {
  position: relative;
  align-self: center;
  height: 170px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
}

.ncs-graphic .bar {
  width: 25px;
  border-radius: 8px 8px 3px 3px;
  background: var(--purple);
}

.bar-one { height: 54px; opacity: 0.34; }
.bar-two { height: 88px; opacity: 0.5; }
.bar-three { height: 120px; opacity: 0.68; }
.bar-four { height: 155px; }

.check-mark {
  position: absolute;
  top: -8px;
  right: 4px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  font-weight: 700;
}

.aptitude-graphic {
  position: absolute;
  inset: auto 20px 18px;
  height: 126px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.aptitude-graphic span {
  border: 1px solid rgba(135, 125, 226, 0.24);
  border-radius: 9px;
  background: var(--purple-soft);
}

.aptitude-graphic span:nth-child(2),
.aptitude-graphic span:nth-child(4) {
  border-radius: 50%;
  background: var(--purple);
}

.aptitude-graphic span:nth-child(5) {
  background: var(--lime);
}

.toeic-graphic {
  position: absolute;
  inset: auto 26px 28px;
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.toeic-graphic span {
  width: 69px;
  height: 69px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 700;
}

.toeic-graphic i {
  position: relative;
  flex: 1;
  height: 1px;
  background: rgba(255, 208, 85, 0.5);
}

.toeic-graphic i::before,
.toeic-graphic i::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: -2.5px;
  border-radius: 50%;
  background: var(--lime);
}

.toeic-graphic i::after { right: 0; }

.license-graphic {
  position: absolute;
  width: 150px;
  right: -2px;
  bottom: 12px;
  color: var(--purple);
}

.license-graphic svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.data-graphic {
  position: relative;
  min-height: 220px;
  display: grid;
  place-items: center;
}

.data-ring {
  position: absolute;
  border: 1px solid rgba(135, 125, 226, 0.32);
  border-radius: 50%;
}

.data-ring-one {
  width: 190px;
  height: 100px;
  transform: rotate(-16deg);
}

.data-ring-two {
  width: 100px;
  height: 190px;
  transform: rotate(20deg);
}

.data-core {
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: var(--purple);
  box-shadow: 0 0 0 13px rgba(135, 125, 226, 0.12);
  font-size: 20px;
  font-weight: 700;
}

.scope-note {
  margin-top: 20px;
  padding: 24px 28px;
  border: 1px solid rgba(18, 19, 26, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  background: rgba(255, 255, 255, 0.55);
}

.scope-label {
  display: block;
  margin-bottom: 4px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.scope-note p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.scope-note .scope-detail {
  max-width: 36ch;
  color: var(--muted);
  font-weight: 500;
  text-align: right;
}

.how-section {
  padding: 128px 0;
}

.how-layout {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 96px;
  align-items: start;
}

.how-copy {
  position: sticky;
  top: 120px;
}

.how-copy > p:not(.eyebrow) {
  margin: 28px 0 16px;
  max-width: 40ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.76;
}

.how-steps {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
  list-style: none;
  counter-reset: none;
}

.how-steps li {
  position: relative;
  min-height: 192px;
  padding: 32px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  display: grid;
  grid-template-columns: 40px 1fr 72px;
  gap: 24px;
  align-items: center;
  background: rgba(255, 255, 255, 0.55);
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out), background-color 300ms ease;
}

.how-steps li:hover {
  transform: translateX(-8px);
  background: white;
  box-shadow: var(--shadow-card);
}

.step-number {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: var(--type-meta);
  font-weight: 700;
}

.step-meta {
  color: var(--navy);
  font-size: var(--type-meta);
  font-weight: 700;
  letter-spacing: 0.13em;
}

.how-steps h3 {
  margin: 4px 0 8px;
  font-size: var(--type-card);
  letter-spacing: -0.04em;
}

.how-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.step-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: var(--purple-soft);
}

.how-steps li:nth-child(2) .step-icon { background: var(--lime); }
.how-steps li:nth-child(3) .step-icon { background: rgba(255, 106, 76, 0.18); }

.step-icon svg {
  width: 39px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

[data-schedule-section][hidden] {
  display: none;
}

.schedule-section {
  padding: 128px 0;
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.schedule-heading > p {
  align-self: end;
}

.calendar-tabs {
  margin-top: 48px;
  padding: 6px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  border: 1px solid rgba(2, 56, 95, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 38px rgba(2, 56, 95, 0.05);
}

.calendar-tabs button {
  min-height: 48px;
  padding: 10px 14px;
  border: 0;
  border-radius: 12px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.calendar-tabs button:hover {
  color: var(--navy);
  background: rgba(49, 177, 232, 0.08);
}

.calendar-tabs button[aria-selected="true"] {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 8px 24px rgba(2, 56, 95, 0.18);
}

.calendar-panel[hidden],
.calendar-tabs button[hidden] {
  display: none;
}

.calendar-panel {
  min-width: 0;
}

.calendar-panel-heading {
  margin-bottom: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.calendar-panel-heading h3 {
  margin: 7px 0 0;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.045em;
}

.calendar-panel-heading > p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  text-align: right;
}

.calendar-kicker {
  color: var(--blue-deep);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.calendar-panel .calendar-legend {
  margin-top: 0;
  margin-bottom: 18px;
}

.exam-calendar {
  display: grid;
  gap: 18px;
}

.exam-month {
  padding: 24px;
  border: 1px solid rgba(2, 56, 95, 0.11);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 50px rgba(2, 56, 95, 0.05);
}

.exam-month > header {
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.exam-month > header h4 {
  margin: 0;
  color: var(--navy);
  font-size: 23px;
  letter-spacing: -0.04em;
}

.exam-month > header span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.exam-event-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.exam-event {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(2, 56, 95, 0.09);
  border-radius: 18px;
  background: var(--paper-bright);
}

.exam-event-open,
.exam-event-deadline {
  border-color: rgba(49, 177, 232, 0.34);
  background: linear-gradient(145deg, rgba(49, 177, 232, 0.12), rgba(255, 255, 255, 0.96));
}

.exam-event > header,
.forecast-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.exam-status,
.exam-official,
.forecast-status,
.forecast-confidence {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.exam-status {
  padding: 7px 8px;
  color: var(--muted);
  background: rgba(2, 56, 95, 0.07);
}

.exam-status-open,
.exam-status-deadline {
  color: var(--navy);
  background: var(--lime);
}

.exam-status-upcoming {
  color: #076489;
  background: rgba(49, 177, 232, 0.15);
}

.exam-official {
  padding: 0;
  color: var(--blue-deep);
}

.exam-event h5 {
  margin: 15px 0 12px;
  font-size: 17px;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.exam-event-details,
.forecast-details {
  margin: 0;
  display: grid;
  gap: 7px;
}

.exam-event-details > div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 8px;
  font-size: 11px;
  line-height: 1.5;
}

.exam-event-details dt,
.forecast-details dt {
  color: var(--muted);
  font-weight: 800;
}

.exam-event-details dd,
.forecast-details dd {
  min-width: 0;
  margin: 0;
  color: var(--ink-soft);
  overflow-wrap: anywhere;
}

.exam-event-note {
  margin: 12px 0 0;
  padding-top: 11px;
  border-top: 1px solid rgba(2, 56, 95, 0.07);
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.public-flow {
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.public-flow article {
  padding: 16px;
  border-radius: 16px;
  color: #fff;
  background: var(--navy);
}

.public-flow strong {
  color: var(--lime);
  font-size: 11px;
}

.public-flow p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  line-height: 1.5;
}

.forecast-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.forecast-card {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(2, 56, 95, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
}

.forecast-card-official-plan {
  border-color: rgba(49, 177, 232, 0.24);
}

.forecast-status {
  padding: 7px 8px;
  color: #076489;
  background: rgba(49, 177, 232, 0.15);
}

.forecast-card-forecast .forecast-status {
  color: #50479a;
  background: rgba(135, 125, 226, 0.16);
}

.forecast-card-monitor .forecast-status {
  color: var(--muted);
  background: rgba(2, 56, 95, 0.07);
}

.forecast-confidence {
  color: var(--muted);
}

.forecast-card h4 {
  margin: 14px 0;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.forecast-details {
  padding-top: 13px;
  border-top: 1px solid rgba(2, 56, 95, 0.08);
}

.forecast-details > div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  font-size: 11px;
  line-height: 1.55;
}

.outlook-groups,
.outlook-group {
  display: grid;
  gap: 18px;
}

.outlook-group > h4 {
  margin: 0;
  color: var(--navy);
  font-size: 19px;
  letter-spacing: -0.035em;
}

.calendar-legend {
  margin-top: 48px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.calendar-legend-item,
.calendar-badge,
.calendar-state {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.calendar-legend-item {
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid rgba(2, 56, 95, 0.1);
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.72);
}

.calendar-legend-item::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
}

.calendar-legend-expected::before { background: var(--blue); }
.calendar-legend-guide::before { background: var(--violet); }

.career-calendar {
  margin-top: 18px;
}

.calendar-timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.calendar-month {
  border: 1px solid rgba(2, 56, 95, 0.12);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 50px rgba(2, 56, 95, 0.06);
}

.calendar-month-header {
  min-height: 82px;
  padding: 22px 26px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
  background: var(--navy);
}

.calendar-month-header h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.calendar-month-header span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

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

.calendar-week {
  position: relative;
  min-height: 168px;
  padding: 24px 24px 24px 22px;
  display: grid;
  grid-template-columns: 16px minmax(118px, 0.42fr) minmax(0, 1fr);
  gap: 16px;
  border-top: 1px solid rgba(2, 56, 95, 0.08);
}

.calendar-week:first-child {
  border-top: 0;
}

.calendar-week.is-current {
  background: linear-gradient(90deg, rgba(49, 177, 232, 0.12), rgba(255, 255, 255, 0));
}

.calendar-week-marker {
  position: relative;
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: #fff;
}

.calendar-week:not(:last-child)::before {
  position: absolute;
  width: 2px;
  top: 34px;
  bottom: -34px;
  left: 26px;
  background: rgba(49, 177, 232, 0.24);
  content: "";
}

.calendar-week.is-current .calendar-week-marker {
  border-color: var(--navy);
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(255, 208, 85, 0.24);
}

.calendar-week-period {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.calendar-badge {
  padding: 6px 8px;
}

.calendar-badge-expected {
  color: #076489;
  background: rgba(49, 177, 232, 0.15);
}

.calendar-badge-guide {
  color: #50479a;
  background: rgba(135, 125, 226, 0.16);
}

.calendar-week-period h4 {
  margin: 13px 0 2px;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.calendar-week-period p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.calendar-state {
  margin-top: 12px;
  padding: 6px 8px;
  color: var(--muted);
  background: rgba(2, 56, 95, 0.06);
}

.calendar-week.is-current .calendar-state {
  color: var(--navy);
  background: var(--lime);
}

.calendar-organizations {
  margin: 0;
  padding: 0;
  display: flex;
  align-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
}

.calendar-organizations li {
  padding: 7px 10px;
  border: 1px solid rgba(2, 56, 95, 0.1);
  border-radius: 10px;
  color: var(--ink-soft);
  background: var(--paper-bright);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.calendar-guide[hidden] {
  display: none;
}

.calendar-guide {
  margin-top: 18px;
  padding: 30px;
  border: 1px solid rgba(135, 125, 226, 0.25);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(135, 125, 226, 0.12), rgba(255, 255, 255, 0.92));
  box-shadow: 0 18px 50px rgba(63, 52, 146, 0.06);
}

.calendar-guide-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.calendar-guide-header h3 {
  margin: 13px 0 0;
  font-size: 25px;
  line-height: 1.3;
  letter-spacing: -0.045em;
}

.calendar-guide-period {
  margin: 0;
  color: #50479a;
  font-size: 15px;
  font-weight: 800;
}

.calendar-guide-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.calendar-guide-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.calendar-guide-organization {
  padding: 20px;
  border: 1px solid rgba(135, 125, 226, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
}

.calendar-guide-organization > span {
  color: #665bb5;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.calendar-guide-organization h4 {
  margin: 5px 0 8px;
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: -0.035em;
}

.calendar-guide-scale {
  min-height: 42px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
}

.calendar-guide-organization dl {
  margin: 14px 0 0;
  padding-top: 13px;
  border-top: 1px solid rgba(135, 125, 226, 0.14);
  display: grid;
  gap: 6px;
}

.calendar-guide-organization dl div {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 8px;
  font-size: 11px;
}

.calendar-guide-organization dt {
  color: #665bb5;
  font-weight: 800;
}

.calendar-guide-organization dd {
  margin: 0;
  color: var(--muted);
}

.schedule-source {
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(2, 56, 95, 0.08);
  border-radius: 16px;
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
  justify-content: space-between;
  gap: 16px 28px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.schedule-source p {
  margin: 0;
}

.schedule-source-links {
  margin-top: 5px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
}

.schedule-source-links a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.schedule-disclaimer {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.65;
}

.purchase-section {
  position: relative;
  padding: 128px 0;
  overflow: hidden;
}

.purchase-glow {
  position: absolute;
  width: 620px;
  height: 620px;
  top: -210px;
  left: -170px;
  border-radius: 50%;
  background: rgba(49, 177, 232, 0.21);
  filter: blur(2px);
}

.purchase-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr minmax(420px, 0.68fr);
  gap: 96px;
  align-items: center;
}

.purchase-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  max-width: 43ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--type-body);
  line-height: 1.7;
}

.purchase-points {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.purchase-points span {
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  font-size: var(--type-meta);
  font-weight: 700;
}

.price-card {
  padding: 32px;
  border-radius: 30px;
  color: var(--ink);
  background: var(--paper-bright);
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.32);
}

.price-deadline {
  margin: 0 0 18px;
  padding: 10px 14px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #c44a2c;
  background: rgba(255, 106, 76, 0.1);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.price-deadline strong {
  padding: 3px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--orange-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}


.price-card-header {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.price-card-label {
  color: var(--navy);
  font-size: var(--type-meta);
  font-weight: 700;
  letter-spacing: 0.13em;
}

.price-card h3 {
  margin: 4px 0 0;
  font-size: var(--type-card);
  letter-spacing: -0.045em;
}

.price-ladder {
  margin: 24px 0 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--soft);
  overflow: hidden;
}

.price-ladder-row {
  padding: 13px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price-ladder-row + .price-ladder-row {
  border-top: 1px solid var(--line);
}

.price-ladder-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-ladder-copy span {
  color: var(--ink-soft);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.price-ladder-copy small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.price-ladder-row > strong {
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.price-max {
  border-color: var(--line);
  color: var(--navy);
}

.price-value {
  padding: 22px 0 4px;
  display: flex;
  flex-direction: column;
}

.price-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.price-value strong {
  margin-top: 2px;
  font-size: 45px;
  line-height: 1.1;
  letter-spacing: -0.065em;
}

.price-value strong span {
  margin-left: 4px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.price-savings-chips {
  margin: 6px 0 24px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.price-savings-chips li {
  padding: 7px 13px;
  border-radius: 999px;
  color: var(--purple-dark);
  background: var(--purple-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.price-savings-chips li strong {
  font-weight: 800;
}

.price-features {
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  list-style: none;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.price-features li span {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--purple-soft);
  color: var(--purple-dark);
  font-size: 10px;
  font-weight: 700;
}

.price-features li:last-child {
  grid-column: 1 / -1;
}

.price-proof {
  margin: 0 0 24px;
  padding: 16px 0;
  border-block: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.65;
  text-align: center;
}

.price-helper {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: var(--type-meta);
  text-align: center;
}

.faq-section {
  padding: 128px 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.58fr 1fr;
  gap: 96px;
}

.faq-heading > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.7;
}

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

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

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  min-height: 86px;
  padding: 22px 2px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  background: transparent;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  cursor: pointer;
}

.faq-item button span {
  position: relative;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-item button span::before,
.faq-item button span::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 10px;
  height: 1px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 240ms ease;
}

.faq-item button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open button span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 380ms var(--ease-out);
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  max-width: 64ch;
  margin: 0;
  padding: 0 50px 0 2px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  transition: padding-bottom 380ms var(--ease-out);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 26px;
}

.faq-answer .policy-link {
  color: var(--purple-dark);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.faq-answer .policy-link:hover {
  color: var(--navy);
}

.faq-answer .policy-link:focus-visible,
.support-card a:focus-visible,
.footer-meta a:focus-visible,
.footer-company a:focus-visible {
  border-radius: 4px;
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.support-card {
  margin-top: 48px;
  padding: 30px 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  background: var(--soft);
}

.support-card-copy {
  max-width: 620px;
}

.support-card-copy .eyebrow {
  margin-bottom: 8px;
}

.support-card h3 {
  margin: 0;
  font-size: var(--type-card);
  letter-spacing: -0.04em;
}

.support-card-copy > p:last-child {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.support-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.support-actions .button {
  min-height: 48px;
  font-size: 15px;
}

.final-cta {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  color: var(--navy);
  background: var(--purple);
}

.final-cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: radial-gradient(circle at center, var(--navy) 1.4px, transparent 1.4px);
  background-size: 24px 24px;
  mask-image: linear-gradient(90deg, transparent, black 35%, black 70%, transparent);
}

.final-cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  gap: 100px;
  align-items: end;
}

.final-cta .eyebrow-light {
  color: var(--navy);
}

.final-cta-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.final-cta-action p {
  margin: 0;
  color: var(--navy);
  font-size: 16px;
}

.site-footer {
  padding: 54px 0;
  color: rgba(255, 255, 255, 0.7);
  background: var(--navy);
}

.footer-inner {
  display: grid;
  gap: 30px;
}

.footer-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.footer-logo {
  display: block;
  width: 104px;
  height: auto;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  font-size: 11px;
}

.footer-meta a:hover,
.footer-company a:hover {
  color: white;
}

.footer-company {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-style: normal;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.footer-company p {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
}

.footer-company strong {
  color: rgba(255, 255, 255, 0.82);
}

.footer-company a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.mobile-cta {
  display: none;
}

.checkout-dialog {
  width: min(480px, calc(100vw - 32px));
  padding: 38px;
  border: 0;
  border-radius: 28px;
  color: var(--ink);
  background: var(--paper-bright);
  box-shadow: 0 30px 100px rgba(18, 19, 26, 0.34);
}

.checkout-dialog::backdrop {
  background: rgba(18, 19, 26, 0.68);
  backdrop-filter: blur(5px);
}

.checkout-dialog[open] {
  animation: dialog-in 300ms var(--ease-out);
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
}

.dialog-badge {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--purple-dark);
  background: var(--purple-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.checkout-dialog h2 {
  margin: 18px 0 12px;
  font-size: 29px;
  line-height: 1.22;
  letter-spacing: -0.05em;
}

.checkout-dialog p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.checkout-dialog code {
  padding: 2px 5px;
  border-radius: 5px;
  color: var(--ink);
  background: var(--soft);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
}

.dialog-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}

[data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(32px);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fit-grid [data-reveal]:nth-child(2) { transition-delay: 90ms; }
.fit-grid [data-reveal]:nth-child(3) { transition-delay: 180ms; }

@media (max-width: 1080px) {
  :root { --container: min(100% - 40px, 940px); }

  .hero {
    min-height: auto;
    padding-top: 138px;
  }

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

  .hero-title {
    font-size: clamp(44px, 6vw, 64px);
  }

  .pass-visual {
    min-height: 560px;
  }

  .hero-device-image { width: 138%; }
  .hero-pass-ticket { right: -14px; }

  .split-heading,
  .how-layout,
  .purchase-layout,
  .faq-layout {
    gap: 64px;
  }

  .right-card {
    min-height: 340px;
  }

  .path-board {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .practice-contrast {
    grid-template-columns: 0.58fr 1.42fr;
  }

  .practice-contrast-proof {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  :root { --container: calc(100vw - 36px); }

  .site-header,
  .site-header.is-scrolled {
    height: 66px;
  }

  body.menu-open .site-header.is-scrolled {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    transition: none;
  }

  .menu-button {
    display: block;
    position: relative;
    z-index: 102;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 116px 24px 40px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--paper);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 380ms var(--ease-out), visibility 0s linear 380ms;
  }

  .site-nav.is-open {
    transform: translateX(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .site-nav > a:not(.button) {
    min-height: 62px;
    border-bottom: 1px solid var(--line);
    font-size: 23px;
    letter-spacing: -0.04em;
  }

  .site-nav .button {
    margin-top: 24px;
  }

  .hero {
    padding: 126px 0 112px;
  }

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

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

  .hero-title {
    font-size: clamp(44px, 9vw, 60px);
  }

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

  .hero-device-image { width: 112%; }
  .hero-pass-ticket { right: 4%; }
  .exam-float-ncs { left: 4%; }
  .exam-float-license { left: 2%; }
  .exam-float-data { right: 2%; }
  .exam-float-history { right: 3%; }

  .path-board,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .path-step {
    min-height: 310px;
    transform: none;
  }

  .path-summary {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .practice-contrast {
    grid-template-columns: 0.62fr 1.38fr;
  }

  .fit-card {
    min-height: 420px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .split-heading > p {
    max-width: 48ch;
  }

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

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

  .study-card-wide {
    grid-template-columns: 0.8fr 1fr;
  }

  .right-card,
  .right-card-wide {
    grid-column: span 1;
    min-height: 350px;
    display: block;
  }

  .ncs-graphic,
  .data-graphic {
    position: absolute;
    inset: auto 24px 24px auto;
    width: 42%;
    height: 150px;
    min-height: 0;
  }

  .scope-note {
    align-items: flex-start;
  }

  .how-layout,
  .purchase-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .how-copy {
    position: static;
  }

  .purchase-layout {
    gap: 64px;
  }

  .price-card {
    width: min(560px, 100%);
  }

  .faq-layout {
    gap: 56px;
  }

  .support-card,
  .support-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .support-actions {
    width: 100%;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .final-cta-action {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .calendar-timeline {
    grid-template-columns: 1fr;
  }

  .calendar-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .calendar-panel-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .calendar-panel-heading > p {
    max-width: 58ch;
    text-align: left;
  }

  .exam-event-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .public-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .calendar-week {
    grid-template-columns: 16px minmax(0, 1fr);
  }

  .calendar-organizations {
    grid-column: 2;
  }

  .calendar-guide-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .calendar-guide-grid {
    grid-template-columns: 1fr;
  }

  .schedule-source {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  :root {
    --container: calc(100vw - 32px);
    --radius-lg: 28px;
  }

  html {
    scroll-padding-top: 72px;
  }

  body {
    font-size: 15px;
    padding-bottom: 80px;
  }

  .brand-product,
  .brand-divider {
    display: none;
  }

  .hero {
    padding: 112px 0 152px;
  }

  .brand-logo {
    width: 104px;
    height: auto;
  }

  .hero-grid {
    background-size: 48px 48px;
  }

  .hero-orb-one {
    width: 310px;
    height: 310px;
    right: -170px;
    top: -95px;
  }

  .hero-title {
    font-size: clamp(40px, 12.5vw, 52px);
    line-height: 1.04;
  }

  .hero-description {
    margin-top: 27px;
    font-size: 16px;
  }

  .hero-description br {
    display: none;
  }

  .hero-actions {
    margin-top: 28px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

  .hero-facts {
    margin-top: 32px;
    padding-top: 18px;
  }

  .hero-facts strong {
    font-size: 16px;
  }

  .hero-facts span {
    font-size: 11px;
  }

  .pass-visual {
    min-height: 455px;
  }

  .pass-visual::before {
    width: 420px;
    height: 285px;
    inset: auto auto 24px 50%;
  }

  .pass-visual::after {
    width: 120px;
    height: 120px;
    right: -26px;
    top: 36px;
  }

  .device-stage {
    min-height: 445px;
  }

  .hero-device-image {
    width: 132%;
    bottom: 22px;
  }

  .device-ring-one {
    width: 340px;
    height: 170px;
    bottom: 72px;
  }

  .device-ring-two {
    width: 170px;
    height: 320px;
    bottom: 18px;
  }

  .hero-pass-ticket {
    top: 12px;
    right: -2px;
    width: 174px;
    padding: 15px 16px;
  }

  .hero-pass-ticket strong {
    font-size: 23px;
  }

  .hero-pass-ticket strong b {
    font-size: 35px;
  }

  .exam-float {
    min-height: 30px;
    padding-inline: 10px;
    font-size: 9px;
  }

  .exam-float-ncs { left: -2px; top: 102px; }
  .exam-float-jobs { left: 6px; top: 170px; }
  .exam-float-toeic { right: -3px; bottom: 80px; }
  .exam-float-license { left: -5px; bottom: 54px; }
  .exam-float-data { right: -8px; top: 153px; }
  .exam-float-history { right: -4px; top: auto; bottom: 126px; }

  .brand-proof {
    padding: 15px 0;
  }

  .brand-proof-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .brand-proof-inner > i {
    display: none;
  }

  .brand-proof p {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    text-align: center;
  }

  .brand-proof span {
    font-size: 10px;
  }

  .brand-proof strong {
    font-size: 14px;
  }

  .path-section,
  .fit-section,
  .study-section,
  .how-section,
  .schedule-section,
  .purchase-section,
  .faq-section {
    padding: 96px 0;
  }

  .path-section {
    padding-bottom: 64px;
  }

  .consulting-section {
    padding: 32px 0 96px;
  }

  .section-heading h2,
  .split-heading h2,
  .how-copy h2,
  .purchase-copy h2,
  .faq-heading h2,
  .final-cta h2 {
    font-size: clamp(34px, 10.5vw, 40px);
  }

  .section-heading > p:last-child {
    font-size: 16px;
  }

  .section-heading > p:last-child br {
    display: none;
  }

  .path-board {
    margin-top: 48px;
  }

  .path-step {
    min-height: 304px;
    padding: 24px;
  }

  .path-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
  }

  .fit-grid {
    margin-top: 48px;
  }

  .fit-card {
    min-height: 430px;
    padding: 24px;
  }

  .fit-graphic {
    height: 220px;
  }

  .app-download {
    padding: 21px;
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .app-download-button {
    width: 100%;
    min-width: 0;
  }

  .rights-grid {
    margin-top: 50px;
    grid-template-columns: 1fr;
  }

  .study-grid {
    margin-top: 48px;
    grid-template-columns: 1fr;
  }

  .study-card,
  .study-card-wide {
    min-height: 430px;
    grid-column: auto;
    display: block;
    padding: 26px;
  }

  .study-card img,
  .study-card-wide img {
    position: absolute;
    width: 86%;
    max-width: 390px;
    right: -16px;
    bottom: -6px;
  }

  .study-card h3 {
    font-size: 28px;
  }

  .study-flow {
    flex-wrap: wrap;
    gap: 8px 10px;
    padding: 18px;
  }

  .study-flow span {
    font-size: 12px;
  }

  .right-card,
  .right-card-wide {
    min-height: 335px;
  }

  .scope-note {
    flex-direction: column;
    padding: 22px;
  }

  .scope-note .scope-detail {
    text-align: left;
  }

  .practice-contrast {
    padding: 14px;
    grid-template-columns: 1fr;
    gap: 14px;
    border-radius: 26px;
  }

  .practice-contrast-mark {
    min-height: 136px;
    flex-direction: row;
    gap: 12px;
  }

  .practice-contrast-mark strong {
    margin: 0;
    font-size: 52px;
  }

  .practice-contrast-mark span {
    font-size: 19px;
  }

  .practice-contrast-copy {
    padding: 20px 10px 14px;
  }

  .practice-contrast-copy h3 {
    font-size: 28px;
  }

  .practice-contrast-proof {
    grid-column: auto;
    padding: 24px 20px;
  }

  .how-layout,
  .faq-layout {
    gap: 48px;
  }

  .calendar-legend {
    margin-top: 36px;
  }

  .calendar-tabs {
    margin-top: 36px;
    padding: 5px;
    border-radius: 16px;
  }

  .calendar-tabs button {
    min-height: 44px;
    padding: 9px 8px;
    font-size: 12px;
  }

  .career-calendar {
    margin-top: 16px;
  }

  .calendar-panel-heading h3 {
    font-size: 24px;
  }

  .calendar-panel .calendar-legend {
    margin-top: 0;
  }

  .exam-month {
    padding: 18px;
    border-radius: 22px;
  }

  .exam-event-list,
  .forecast-grid,
  .public-flow {
    grid-template-columns: 1fr;
  }

  .exam-event {
    padding: 17px;
  }

  .forecast-card {
    padding: 18px;
  }

  .forecast-details > div {
    grid-template-columns: 66px minmax(0, 1fr);
  }

  .calendar-month {
    border-radius: 22px;
  }

  .calendar-month-header {
    min-height: 72px;
    padding: 20px 22px;
  }

  .calendar-week {
    min-height: 0;
    padding: 22px 18px 24px 20px;
    gap: 12px;
  }

  .calendar-week:not(:last-child)::before {
    left: 24px;
  }

  .calendar-organizations {
    margin-top: 2px;
  }

  .calendar-guide {
    padding: 22px;
    border-radius: 22px;
  }

  .calendar-guide-organization {
    padding: 18px;
  }

  .calendar-guide-scale {
    min-height: 0;
  }

  .schedule-source {
    padding: 16px;
  }

  .how-steps li {
    min-height: 176px;
    padding: 24px;
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }

  .step-icon {
    display: none;
  }

  .price-card {
    padding: 24px;
  }

  .price-ladder-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .price-value strong {
    font-size: 40px;
  }

  .price-features {
    grid-template-columns: 1fr;
  }

  .price-features li:last-child {
    grid-column: auto;
  }

  .faq-item button {
    min-height: 78px;
    font-size: 16px;
  }

  .faq-answer p {
    padding-right: 10px;
  }

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

  .final-cta-action {
    flex-direction: column;
    align-items: stretch;
  }

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

  .support-card,
  .support-actions,
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .support-card {
    padding: 24px;
    gap: 22px;
  }

  .support-actions {
    width: 100%;
    gap: 6px;
  }

  .support-actions .button,
  .support-actions .text-link {
    width: 100%;
  }

  .support-actions .text-link {
    justify-content: center;
  }

  .footer-top {
    gap: 24px;
  }

  .footer-meta {
    justify-content: flex-start;
    gap: 10px 18px;
  }

  .footer-company p {
    flex-direction: column;
    gap: 2px;
  }

  .mobile-cta {
    position: fixed;
    inset: auto 0 0;
    z-index: 90;
    border-top: 1px solid rgba(18, 19, 26, 0.1);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(18px) saturate(140%);
    transform: translateY(110%);
    transition: transform 360ms var(--ease-out);
  }

  .mobile-cta.is-visible {
    transform: translateY(0);
  }

  .mobile-cta-deadline {
    margin: 0;
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #c44a2c;
    background: rgba(255, 106, 76, 0.1);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  .mobile-cta-deadline strong {
    padding: 1px 8px;
    border-radius: 999px;
    color: #fff;
    background: var(--orange-deep);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.02em;
  }

  .mobile-cta-row {
    min-height: 66px;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  .mobile-cta-row > div {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
  }

  .mobile-cta-row span {
    color: var(--muted);
    font-size: 12px;
  }

  .mobile-cta-row > div > strong {
    font-size: 18px;
    letter-spacing: -0.04em;
  }

  .mobile-cta .button {
    flex: 1;
    max-width: 58%;
    min-height: 54px;
    padding-inline: 24px;
    font-size: 17px;
    font-weight: 800;
  }

  .site-footer {
    padding-bottom: calc(90px + env(safe-area-inset-bottom));
  }

  .checkout-dialog {
    padding: 32px 24px 26px;
  }

  .dialog-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
  }

  .dialog-actions .text-link {
    justify-content: center;
  }
}

@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;
  }

  .title-line > span,
  .reveal-item,
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
