:root {
  --ink: #050505;
  --paper: #f5f5f2;
  --white: #ffffff;
  --muted: #777773;
  --line: #b8b8b1;
  --pad: clamp(22px, 5vw, 80px);
  --display: "Arial Black", "Pretendard", "Noto Sans KR", Arial, sans-serif;
  --sans: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  word-break: keep-all;
}

body,
button,
a,
summary {
  -webkit-font-smoothing: antialiased;
}

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

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

button,
summary {
  font: inherit;
}

::selection {
  background: var(--ink);
  color: var(--white);
}

.site-header {
  align-items: center;
  color: var(--white);
  display: flex;
  height: 88px;
  justify-content: space-between;
  left: 0;
  padding: 0 var(--pad);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 20;
}

.site-header::after {
  background: rgba(255, 255, 255, 0.28);
  bottom: 0;
  content: "";
  height: 1px;
  left: var(--pad);
  position: absolute;
  right: var(--pad);
}

.brand {
  align-items: baseline;
  display: inline-flex;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 1;
}

.brand-slash {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
  margin: 0 4px;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: clamp(18px, 2.4vw, 42px);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.desktop-nav a {
  transition: opacity 180ms ease;
}

.desktop-nav a:hover {
  opacity: 0.58;
}

.desktop-nav .nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 12px 18px;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  list-style: none;
}

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

.mobile-menu nav {
  background: var(--white);
  color: var(--ink);
  display: grid;
  gap: 0;
  min-width: 210px;
  padding: 10px;
  position: absolute;
  right: 0;
  top: 36px;
}

.mobile-menu nav a {
  border-bottom: 1px solid #d8d8d3;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 14px 12px;
}

.hero {
  background: var(--ink);
  color: var(--white);
  min-height: min(900px, 100svh);
  overflow: hidden;
  position: relative;
}

.hero-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.1) 42%, rgba(0, 0, 0, 0.78) 74%, #000 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, transparent 38%);
  inset: 0;
  position: absolute;
}

.hero-copy {
  bottom: clamp(105px, 14vh, 160px);
  left: clamp(46%, 53vw, 58%);
  max-width: 650px;
  padding-right: var(--pad);
  position: absolute;
  z-index: 2;
}

.eyebrow {
  align-items: center;
  display: flex;
  font-size: 10px;
  font-weight: 900;
  gap: 12px;
  letter-spacing: 0.2em;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.eyebrow::before {
  background: currentColor;
  content: "";
  height: 1px;
  width: 38px;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.68);
}

.hero h1,
.section h2,
.who-section h2,
.purchase-section h2 {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.98;
  margin: 0;
}

.hero h1 {
  font-size: clamp(46px, 5.4vw, 86px);
}

.hero h1 em,
.large-copy em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero h1 em {
  letter-spacing: -0.06em;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.8;
  margin: 30px 0 0;
}

.hero-actions,
.purchase-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
}

.button {
  align-items: center;
  border: 1px solid currentColor;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  justify-content: space-between;
  letter-spacing: 0.08em;
  min-width: 198px;
  padding: 18px 20px;
  transition: background 180ms ease, color 180ms ease;
}

.button span,
.text-link span,
.plan-link span {
  font-size: 17px;
  line-height: 0;
}

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

.button-light:hover {
  background: transparent;
  color: var(--white);
}

.button-outline {
  background: transparent;
  color: var(--white);
}

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

.text-link {
  border-bottom: 1px solid currentColor;
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  gap: 18px;
  letter-spacing: 0.08em;
  padding: 8px 0;
}

.light-link {
  color: rgba(255, 255, 255, 0.74);
}

.hero-index,
.hero-caption {
  font-size: 9px;
  letter-spacing: 0.2em;
  position: absolute;
  z-index: 2;
}

.hero-index {
  left: var(--pad);
  top: 50%;
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: left center;
}

.hero-caption {
  bottom: 30px;
  left: var(--pad);
  margin: 0;
}

.ticker {
  background: var(--white);
  border-bottom: 1px solid var(--ink);
  border-top: 1px solid var(--ink);
  overflow: hidden;
  padding: 18px 0;
}

.ticker div {
  align-items: center;
  display: flex;
  gap: 34px;
  justify-content: space-around;
  min-width: 1100px;
  padding: 0 30px;
}

.ticker span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.ticker i {
  font-style: normal;
}

.section {
  padding: clamp(90px, 10vw, 160px) var(--pad);
}

.section-heading {
  margin-bottom: clamp(52px, 6vw, 90px);
}

.split-heading,
.review-heading {
  align-items: end;
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
}

.section h2 {
  font-size: clamp(50px, 7vw, 112px);
}

.outline-word {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
}

.section-intro {
  color: #3f3f3c;
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.9;
  margin: 0 0 7px;
}

.problem-section {
  background: var(--paper);
}

.problem-grid {
  border-left: 1px solid var(--ink);
  border-top: 1px solid var(--ink);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.problem-card {
  border-bottom: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
  min-height: 330px;
  padding: 28px;
  position: relative;
  transition: background 180ms ease, color 180ms ease;
}

.problem-card:hover {
  background: var(--ink);
  color: var(--white);
}

.card-number {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.problem-card h3 {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 31px);
  letter-spacing: -0.055em;
  line-height: 1.15;
  margin: 90px 0 18px;
}

.problem-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
  margin: 0;
}

.problem-card:hover p {
  color: rgba(255, 255, 255, 0.68);
}

.card-arrow {
  bottom: 26px;
  font-size: 24px;
  position: absolute;
  right: 28px;
}

.pattern-line {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 64px);
  letter-spacing: -0.06em;
  margin: 54px 0 0;
  text-align: right;
}

.solution-section {
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: clamp(50px, 7vw, 110px);
  grid-template-columns: 0.9fr 1.1fr;
}

.solution-title h2 {
  font-size: clamp(54px, 6.5vw, 102px);
}

.solution-copy {
  align-self: end;
  max-width: 680px;
}

.large-copy {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.25;
  margin: 0 0 28px;
}

.solution-copy > p:not(.large-copy) {
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  line-height: 1.95;
  margin: 0 0 34px;
}

.process-list {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  grid-column: 1 / -1;
}

.process-item {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  display: grid;
  gap: 24px;
  grid-template-columns: 60px 1fr auto;
  padding: 23px 4px;
}

.process-item span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.process-item strong {
  font-size: clamp(18px, 2vw, 29px);
  letter-spacing: -0.04em;
}

.process-item i {
  font-size: 24px;
  font-style: normal;
}

.reviews-section {
  background: var(--white);
  overflow: hidden;
}

.review-strip {
  display: flex;
  gap: 18px;
  margin-left: calc(var(--pad) * -1);
  margin-right: calc(var(--pad) * -1);
  overflow-x: auto;
  padding: 0 var(--pad) 26px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--ink) #deded8;
  scrollbar-width: thin;
}

.review-frame {
  background: #dbe4ea;
  border: 1px solid var(--ink);
  flex: 0 0 clamp(260px, 23vw, 340px);
  margin: 0;
  min-height: 520px;
  padding: 26px 26px 18px;
  scroll-snap-align: start;
}

.review-frame:nth-child(even) {
  margin-top: 65px;
}

.review-frame img {
  filter: grayscale(1) contrast(1.03);
  height: 430px;
  margin: 0 auto;
  object-fit: contain;
  width: 100%;
}

.review-frame figcaption {
  border-top: 1px solid rgba(0, 0, 0, 0.4);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-top: 14px;
  padding-top: 12px;
}

.stats-grid {
  border-left: 1px solid var(--ink);
  border-top: 1px solid var(--ink);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(70px, 8vw, 120px);
}

.stats-grid article {
  border-bottom: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
  min-height: 260px;
  padding: 28px;
}

.stats-grid article > span {
  display: block;
  font-size: 9px;
  letter-spacing: 0.15em;
  margin-bottom: 55px;
}

.stats-grid strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(52px, 6vw, 98px);
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.stats-grid p {
  font-size: 13px;
  font-weight: 800;
  margin: 20px 0 0;
}

.stats-grid .stat-dark {
  background: var(--ink);
  color: var(--white);
}

.data-note {
  color: var(--muted);
  font-size: 10px;
  margin: 12px 0 0;
  text-align: right;
}

.programs-section {
  background: var(--ink);
  color: var(--white);
}

.programs-lead {
  display: grid;
  gap: 30px 60px;
  grid-template-columns: 1.25fr 0.75fr;
  margin-bottom: clamp(60px, 7vw, 100px);
}

.programs-lead .eyebrow {
  grid-column: 1 / -1;
}

.programs-lead h2 {
  font-size: clamp(52px, 7vw, 112px);
}

.programs-lead > p:last-child {
  align-self: end;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 7px;
}

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

.plan-card {
  background: var(--paper);
  color: var(--ink);
  min-height: 680px;
  padding: clamp(30px, 4vw, 58px);
  position: relative;
}

.plan-2 {
  background: #d8d8d2;
}

.plan-top {
  border-bottom: 1px solid var(--ink);
  display: flex;
  font-size: 9px;
  font-weight: 900;
  justify-content: space-between;
  letter-spacing: 0.18em;
  padding-bottom: 19px;
}

.plan-card h3 {
  font-family: var(--display);
  font-size: clamp(46px, 5vw, 78px);
  letter-spacing: -0.07em;
  margin: 58px 0 12px;
}

.plan-subtitle {
  color: #4d4d49;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.plan-card ul {
  border-top: 1px solid #999993;
  list-style: none;
  margin: 55px 0 35px;
  padding: 0;
}

.plan-card li {
  border-bottom: 1px solid #b5b5af;
  font-size: 13px;
  padding: 15px 0;
}

.plan-card li::before {
  content: "✓";
  display: inline-block;
  font-size: 11px;
  margin-right: 12px;
}

.plan-price {
  align-items: end;
  display: flex;
  justify-content: space-between;
}

.plan-price strong {
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: -0.06em;
}

.plan-price span {
  color: var(--muted);
  font-size: 9px;
  text-align: right;
}

.plan-link {
  align-items: center;
  border-top: 1px solid var(--ink);
  bottom: 0;
  display: flex;
  font-size: 11px;
  font-weight: 900;
  justify-content: space-between;
  left: clamp(30px, 4vw, 58px);
  letter-spacing: 0.08em;
  padding: 22px 0;
  position: absolute;
  right: clamp(30px, 4vw, 58px);
}

.all-in-one {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  display: grid;
  gap: 45px;
  grid-template-columns: 1fr 1fr auto;
  margin-top: 80px;
  padding: 52px 0;
}

.all-in-one h3 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 57px);
  letter-spacing: -0.06em;
  margin: 0;
}

.all-in-one > p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.8;
}

.circle-link {
  align-items: center;
  border: 1px solid var(--white);
  border-radius: 50%;
  display: flex;
  font-size: 27px;
  height: 86px;
  justify-content: center;
  transition: background 180ms ease, color 180ms ease;
  width: 86px;
}

.circle-link:hover {
  background: var(--white);
  color: var(--ink);
}

.who-section {
  background: #101010;
  color: var(--white);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 780px;
}

.who-visual {
  align-items: center;
  background: var(--paper);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 700px;
  overflow: hidden;
  position: relative;
}

.who-monogram {
  font-family: var(--display);
  font-size: clamp(170px, 25vw, 360px);
  font-weight: 900;
  letter-spacing: -0.12em;
  line-height: 0.72;
  position: relative;
  z-index: 2;
}

.who-visual > p {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.32em;
  margin: 48px 0 0;
  position: relative;
  z-index: 2;
}

.who-lines {
  background: repeating-linear-gradient(90deg, transparent 0 22px, rgba(0, 0, 0, 0.12) 23px 24px);
  inset: 0;
  position: absolute;
  transform: rotate(-18deg) scale(1.35);
}

.who-copy {
  align-self: center;
  padding: clamp(60px, 8vw, 130px);
}

.who-copy h2 {
  font-size: clamp(44px, 5vw, 82px);
}

.who-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.95;
  margin: 35px 0;
  max-width: 650px;
}

.credentials {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  list-style: none;
  margin: 0 0 38px;
  padding: 0;
}

.credentials li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 13px;
  padding: 16px 0;
}

.credentials li::before {
  content: "■";
  font-size: 6px;
  margin-right: 13px;
  vertical-align: middle;
}

.faq-section {
  background: var(--paper);
  display: grid;
  gap: 70px;
  grid-template-columns: 0.55fr 1.45fr;
}

.faq-title h2 {
  font-size: clamp(86px, 12vw, 190px);
}

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

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

.faq-list summary {
  align-items: center;
  cursor: pointer;
  display: grid;
  gap: 20px;
  grid-template-columns: 46px 1fr auto;
  list-style: none;
  padding: 27px 0;
}

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

.faq-list summary span {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.16em;
}

.faq-list summary strong {
  font-size: clamp(15px, 1.5vw, 21px);
  letter-spacing: -0.025em;
}

.faq-list summary i {
  font-size: 22px;
  font-style: normal;
  transition: transform 180ms ease;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details > p {
  color: #4f4f4a;
  font-size: 14px;
  line-height: 1.85;
  margin: 0;
  max-width: 800px;
  padding: 0 30px 30px 66px;
}

.purchase-section {
  background: var(--ink);
  color: var(--white);
  min-height: 720px;
  overflow: hidden;
  padding: clamp(90px, 10vw, 160px) var(--pad);
  position: relative;
}

.purchase-section > div {
  margin-left: auto;
  max-width: 780px;
  position: relative;
  z-index: 2;
}

.purchase-section h2 {
  font-size: clamp(50px, 7vw, 108px);
}

.purchase-section > div > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.9;
  margin: 34px 0 0;
  max-width: 630px;
}

.purchase-section small {
  color: rgba(255, 255, 255, 0.45);
  display: block;
  font-size: 9px;
  line-height: 1.7;
  margin-top: 34px;
}

.purchase-ghost {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.16);
  bottom: -0.25em;
  font-family: var(--display);
  font-size: clamp(210px, 32vw, 520px);
  font-weight: 900;
  left: -0.09em;
  letter-spacing: -0.12em;
  line-height: 0.8;
  margin: 0;
  position: absolute;
  white-space: nowrap;
}

.site-footer {
  align-items: end;
  background: var(--white);
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr 1fr auto;
  padding: 60px var(--pad);
}

.footer-brand {
  font-size: 52px;
}

.footer-copy p {
  font-size: 9px;
  letter-spacing: 0.14em;
  margin: 7px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  border-bottom: 1px solid var(--ink);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.11em;
  padding-bottom: 4px;
}

.floating-contact {
  bottom: 24px;
  display: grid;
  gap: 1px;
  position: fixed;
  right: 22px;
  z-index: 30;
}

.floating-contact a {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--ink);
  color: var(--ink);
  display: flex;
  font-size: 8px;
  font-weight: 900;
  height: 52px;
  justify-content: center;
  letter-spacing: 0.12em;
  transition: background 180ms ease, color 180ms ease;
  width: 52px;
}

.floating-contact a:hover {
  background: var(--ink);
  color: var(--white);
}

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero-copy {
    left: 44%;
  }

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

  .solution-section,
  .who-section {
    grid-template-columns: 1fr;
  }

  .who-visual {
    min-height: 470px;
  }

  .faq-section {
    grid-template-columns: 1fr;
  }

  .faq-title {
    align-items: end;
    display: flex;
    justify-content: space-between;
  }

  .faq-title .eyebrow {
    margin-bottom: 12px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 72px;
  }

  .site-header::after {
    left: 22px;
    right: 22px;
  }

  .brand {
    font-size: 22px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-image {
    height: 58%;
    object-position: 38% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, #000 0%, #000 39%, rgba(0, 0, 0, 0.76) 54%, rgba(0, 0, 0, 0.08) 100%),
      linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.35) 100%);
  }

  .hero-copy {
    bottom: 72px;
    left: 22px;
    max-width: 560px;
    padding-right: 22px;
    right: 0;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 62px);
  }

  .hero-lead {
    font-size: 13px;
    margin-top: 20px;
  }

  .hero-actions {
    gap: 16px;
    margin-top: 23px;
  }

  .hero-index {
    display: none;
  }

  .hero-caption {
    bottom: 22px;
  }

  .button {
    min-width: 176px;
    padding: 15px 16px;
  }

  .ticker {
    overflow-x: auto;
  }

  .ticker div {
    justify-content: flex-start;
  }

  .split-heading,
  .review-heading,
  .programs-lead {
    grid-template-columns: 1fr;
  }

  .section h2,
  .programs-lead h2 {
    font-size: clamp(46px, 15vw, 72px);
  }

  .problem-grid,
  .stats-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .problem-card {
    min-height: 260px;
  }

  .problem-card h3 {
    margin-top: 55px;
  }

  .pattern-line {
    text-align: left;
  }

  .solution-section {
    grid-template-columns: 1fr;
  }

  .process-item {
    grid-template-columns: 42px 1fr auto;
  }

  .review-frame:nth-child(even) {
    margin-top: 0;
  }

  .review-frame {
    min-height: 470px;
  }

  .review-frame img {
    height: 380px;
  }

  .stats-grid article {
    min-height: 220px;
  }

  .programs-lead > p:last-child {
    max-width: 500px;
  }

  .plan-card {
    min-height: 620px;
  }

  .all-in-one {
    align-items: start;
    grid-template-columns: 1fr auto;
  }

  .all-in-one > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .circle-link {
    height: 64px;
    width: 64px;
  }

  .who-copy {
    padding: 80px 22px;
  }

  .who-copy h2 {
    font-size: clamp(42px, 12vw, 64px);
  }

  .faq-title {
    align-items: start;
    display: block;
  }

  .faq-list summary {
    gap: 12px;
    grid-template-columns: 32px 1fr auto;
  }

  .faq-list details > p {
    padding-left: 44px;
  }

  .purchase-section {
    min-height: 650px;
  }

  .purchase-section h2 {
    font-size: clamp(45px, 13vw, 72px);
  }

  .site-footer {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .footer-links {
    margin-top: 10px;
  }

  .floating-contact {
    bottom: 12px;
    right: 12px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* WordPress shell and subpage system */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background: var(--white);
  clip: auto !important;
  clip-path: none;
  color: var(--ink);
  display: block;
  height: auto;
  left: 12px;
  padding: 14px 18px;
  top: 12px;
  width: auto;
  z-index: 100000;
}

.desktop-nav li,
.mobile-menu li {
  list-style: none;
}

.desktop-nav > li:last-child a {
  border: 1px solid currentColor;
  padding: 12px 18px;
}

.mobile-menu nav li {
  display: contents;
}

.site-logo,
.custom-logo-link {
  align-items: center;
  display: flex;
}

.custom-logo {
  height: auto;
  max-height: 46px;
  max-width: 180px;
  width: auto;
}

.inner-header {
  background: var(--white);
  color: var(--ink);
  position: relative;
}

.inner-header::after {
  background: rgba(0, 0, 0, 0.38);
}

.admin-bar .front-header {
  top: 32px;
}

.inner-main {
  background: var(--paper);
}

.inner-hero {
  align-items: end;
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: 50px;
  grid-template-columns: 110px minmax(0, 1.3fr) minmax(260px, 0.7fr);
  min-height: 610px;
  padding: clamp(100px, 12vw, 175px) var(--pad) clamp(70px, 8vw, 120px);
}

.inner-hero-index {
  align-self: start;
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  letter-spacing: 0.2em;
  padding-top: 10px;
  writing-mode: vertical-rl;
}

.inner-hero h1 {
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 112px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.98;
  margin: 0;
}

.inner-hero h1 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.inner-hero-intro {
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.95;
  margin: 0 0 10px;
}

.inner-section {
  padding: clamp(80px, 9vw, 140px) var(--pad);
}

.inner-lead-grid,
.who-story {
  align-items: start;
  display: grid;
  gap: 80px;
  grid-template-columns: 1.1fr 0.9fr;
}

.inner-lead-grid h2,
.who-story h2,
.inner-cta h2,
.consultant-section h2,
.purchase-actions-panel h2,
.refund-brief h2 {
  font-family: var(--display);
  font-size: clamp(40px, 5.2vw, 80px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 1.05;
  margin: 0;
}

.inner-lead-grid p,
.who-story p,
.centered-action p {
  color: #4d4d49;
  font-size: 15px;
  line-height: 1.95;
  margin: 0;
}

.pillar-grid-section,
.point-cards {
  border-left: 1px solid var(--ink);
  border-top: 1px solid var(--ink);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 0;
  padding-top: 0;
}

.pillar-card,
.point-cards article {
  border-bottom: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
  min-height: 520px;
  padding: clamp(28px, 3.5vw, 52px);
}

.pillar-card.dark,
.point-cards .dark {
  background: var(--ink);
  color: var(--white);
}

.pillar-card > span,
.point-cards article > span {
  display: block;
  font-size: 9px;
  letter-spacing: 0.2em;
  margin-bottom: 85px;
}

.pillar-card h3,
.point-cards h3 {
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 48px);
  letter-spacing: -0.055em;
  line-height: 1.05;
  margin: 0 0 26px;
}

.pillar-card > p:last-child,
.point-cards article > p:last-child {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.pillar-card.dark > p:last-child,
.point-cards .dark > p:last-child {
  color: rgba(255, 255, 255, 0.62);
}

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

.route-cards a {
  background: var(--white);
  border: 1px solid var(--ink);
  min-height: 330px;
  padding: 34px;
  position: relative;
  transition: background 180ms ease, color 180ms ease;
}

.route-cards a:hover {
  background: var(--ink);
  color: var(--white);
}

.route-cards span {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.route-cards h3 {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.06em;
  margin: 100px 0 9px;
}

.route-cards p {
  color: var(--muted);
  font-size: 12px;
}

.route-cards i {
  bottom: 28px;
  font-size: 24px;
  font-style: normal;
  position: absolute;
  right: 30px;
}

.inner-cta {
  background: var(--ink);
  color: var(--white);
  padding: clamp(80px, 9vw, 140px) var(--pad);
}

.inner-cta > div {
  align-items: end;
  display: flex;
  gap: 60px;
  justify-content: space-between;
}

.detail-steps > .eyebrow,
.contract-process > .eyebrow {
  margin-bottom: 60px;
}

.detail-steps article,
.contract-process article {
  align-items: start;
  border-top: 1px solid var(--ink);
  display: grid;
  gap: 30px;
  grid-template-columns: 80px 0.8fr 1.2fr;
  padding: 42px 0;
}

.detail-steps article:last-child,
.contract-process article:last-child {
  border-bottom: 1px solid var(--ink);
}

.detail-steps article > span,
.contract-process article > span {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.detail-steps h2,
.contract-process h2 {
  font-family: var(--display);
  font-size: clamp(23px, 2.7vw, 40px);
  letter-spacing: -0.05em;
  line-height: 1.2;
  margin: 0;
}

.detail-steps article p,
.contract-process article p {
  color: #555550;
  font-size: 14px;
  line-height: 1.9;
  margin: 0;
}

.season-summary {
  align-items: center;
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr 1fr auto;
  padding: clamp(70px, 8vw, 120px) var(--pad);
}

.season-summary h2 {
  font-family: var(--display);
  font-size: clamp(130px, 19vw, 280px);
  letter-spacing: -0.1em;
  line-height: 0.7;
  margin: 0 0 24px;
}

.season-summary > div > span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.25em;
}

.season-summary ul {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  list-style: none;
  margin: 0;
  padding: 0;
}

.season-summary li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 13px;
  padding: 15px 0;
}

.season-summary li::before {
  content: "✓";
  margin-right: 12px;
}

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

.allin-grid article {
  border: 1px solid var(--ink);
  min-height: 440px;
  padding: clamp(30px, 4vw, 58px);
}

.allin-grid article:nth-child(2),
.allin-grid article:nth-child(4) {
  border-left: 0;
}

.allin-grid article:nth-child(n+3) {
  border-top: 0;
}

.allin-grid article > span {
  display: block;
  font-size: 9px;
  letter-spacing: 0.18em;
  margin-bottom: 70px;
}

.allin-grid h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.3vw, 48px);
  letter-spacing: -0.055em;
  margin: 0 0 22px;
}

.allin-grid article > p:last-child {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.centered-action {
  text-align: center;
}

.centered-action .button {
  margin-top: 32px;
}

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

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

.who-story h2 {
  font-size: clamp(38px, 4.7vw, 72px);
}

.who-story > div:last-child p + p {
  margin-top: 24px;
}

.consultant-section {
  align-items: center;
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: 80px;
  grid-template-columns: 0.8fr 1.2fr;
  padding: clamp(80px, 9vw, 140px) var(--pad);
}

.consultant-number {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.65);
  font-family: var(--display);
  font-size: clamp(210px, 30vw, 450px);
  font-weight: 900;
  letter-spacing: -0.12em;
  line-height: 0.74;
}

.consultant-section ul {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
}

.consultant-section li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 13px;
  padding: 16px 0;
}

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

.review-page-grid figure {
  background: #dbe4ea;
  border: 1px solid var(--ink);
  margin: 0;
  min-height: 570px;
  padding: 28px;
}

.review-page-grid figure:nth-child(even) {
  transform: translateY(55px);
}

.review-page-grid figure > span,
.review-page-grid figcaption {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.review-page-grid img {
  filter: grayscale(1);
  height: 450px;
  margin: 22px auto;
  object-fit: contain;
  width: 100%;
}

.review-page-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 55px;
}

.review-page-stats article {
  border: 1px solid var(--ink);
  min-height: 260px;
  padding: 34px;
}

.review-page-stats article + article {
  border-left: 0;
}

.review-page-stats .dark {
  background: var(--ink);
  color: var(--white);
}

.review-page-stats strong {
  font-family: var(--display);
  font-size: clamp(60px, 7vw, 105px);
  letter-spacing: -0.08em;
}

.review-page-stats small {
  color: var(--muted);
  grid-column: 1 / -1;
  padding-top: 12px;
  text-align: right;
}

.purchase-actions-panel {
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.purchase-actions-panel > div {
  min-height: 520px;
  padding: clamp(55px, 7vw, 100px) var(--pad);
}

.purchase-actions-panel > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}

.purchase-actions-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.85;
  margin: 28px 0 34px;
}

.refund-brief h2 {
  margin-bottom: 38px;
}

.refund-brief ul {
  border-top: 1px solid var(--ink);
  list-style: none;
  margin: 0 0 34px;
  padding: 0;
}

.refund-brief li {
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  padding: 18px 4px;
}

.full-faq {
  padding-top: 0;
}

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

.full-faq details:first-child {
  border-top: 1px solid var(--ink);
}

.full-faq summary {
  align-items: center;
  cursor: pointer;
  display: grid;
  gap: 25px;
  grid-template-columns: 60px 1fr auto;
  list-style: none;
  padding: 32px 0;
}

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

.full-faq summary span {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.full-faq summary strong {
  font-family: var(--display);
  font-size: clamp(19px, 2.3vw, 34px);
  letter-spacing: -0.04em;
}

.full-faq summary i {
  font-size: 24px;
  font-style: normal;
}

.full-faq details[open] summary i {
  transform: rotate(45deg);
}

.full-faq details > p {
  color: #4f4f4a;
  line-height: 1.9;
  margin: 0;
  max-width: 900px;
  padding: 0 70px 38px 85px;
}

.policy-list article {
  align-items: start;
  border-top: 1px solid var(--ink);
  display: grid;
  gap: 30px;
  grid-template-columns: 70px 1fr;
  padding: 24px 0;
}

.policy-list article:last-of-type {
  border-bottom: 1px solid var(--ink);
}

.policy-list article span {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.policy-list article p {
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

.policy-note {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
  margin-top: 24px;
}

.prose-content {
  font-size: 16px;
  line-height: 1.9;
  margin: 0 auto;
  max-width: 980px;
}

.post-list article {
  border-top: 1px solid var(--ink);
  padding: 35px 0;
}

.post-list h2 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -0.05em;
  margin: 8px 0 18px;
}

.not-found {
  background: var(--ink);
  color: var(--white);
  min-height: 75vh;
  padding: clamp(100px, 12vw, 180px) var(--pad);
}

.not-found h1 {
  font-family: var(--display);
  font-size: clamp(80px, 14vw, 210px);
  letter-spacing: -0.08em;
  line-height: 0.82;
  margin: 50px 0 70px;
}

@media (max-width: 900px) {
  .inner-hero {
    grid-template-columns: 50px 1fr;
  }

  .inner-hero-intro {
    grid-column: 2;
  }

  .pillar-grid-section,
  .point-cards,
  .route-cards,
  .review-page-grid,
  .review-page-stats {
    grid-template-columns: 1fr;
  }

  .pillar-card,
  .point-cards article {
    min-height: 410px;
  }

  .route-cards a {
    min-height: 260px;
  }

  .route-cards h3 {
    margin-top: 60px;
  }

  .season-summary,
  .consultant-section {
    grid-template-columns: 1fr;
  }

  .allin-grid,
  .purchase-actions-panel {
    grid-template-columns: 1fr;
  }

  .allin-grid article:nth-child(2),
  .allin-grid article:nth-child(4),
  .purchase-actions-panel > div + div {
    border-left: 1px solid var(--ink);
  }

  .allin-grid article:nth-child(n+2) {
    border-top: 0;
  }

  .review-page-grid figure:nth-child(even) {
    transform: none;
  }

  .review-page-stats article + article {
    border-left: 1px solid var(--ink);
    border-top: 0;
  }
}

@media (max-width: 760px) {
  .admin-bar .front-header {
    top: 46px;
  }

  .inner-header {
    height: 72px;
  }

  .inner-hero {
    display: block;
    min-height: 560px;
  }

  .inner-hero-index {
    margin-bottom: 70px;
    writing-mode: initial;
  }

  .inner-hero-intro {
    margin-top: 35px;
  }

  .inner-lead-grid,
  .who-story {
    grid-template-columns: 1fr;
  }

  .detail-steps article,
  .contract-process article {
    grid-template-columns: 40px 1fr;
  }

  .detail-steps article p,
  .contract-process article p {
    grid-column: 2;
  }

  .season-summary {
    align-items: start;
  }

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

  .review-page-grid figure {
    min-height: 500px;
  }

  .review-page-grid img {
    height: 390px;
  }

  .purchase-actions-panel > div {
    min-height: auto;
  }

  .full-faq summary {
    gap: 12px;
    grid-template-columns: 34px 1fr auto;
  }

  .full-faq details > p {
    padding-left: 46px;
    padding-right: 24px;
  }
}

/* ================================================================
   JOBPT COLOR EDITORIAL 2.0
   Nicepage 79786의 대형 흑백 사진·비대칭 타이포를 기반으로,
   JobPT 전용 Acid / Cobalt / Coral 컬러 시스템을 더한 리디자인.
================================================================ */

:root {
  --ink: #0b0c10;
  --paper: #f2efe7;
  --white: #ffffff;
  --muted: #6f706d;
  --line: #a7a69f;
  --acid: #d7ff2f;
  --cobalt: #2d5bff;
  --coral: #ff5c45;
  --ice: #c8d8ff;
  --pad: clamp(22px, 5vw, 84px);
}

body {
  background: var(--paper);
}

::selection {
  background: var(--acid);
  color: var(--ink);
}

.brand-slash {
  color: var(--acid);
}

.front-header .nav-cta,
.inner-header .nav-cta {
  background: var(--cobalt);
  border-color: var(--cobalt);
  color: var(--white);
}

.front-header .nav-cta:hover,
.inner-header .nav-cta:hover {
  background: var(--acid);
  border-color: var(--acid);
  color: var(--ink);
  opacity: 1;
}

.hero {
  min-height: min(940px, 100svh);
}

.hero-image {
  object-position: center center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 12, 16, 0.95) 0%, rgba(11, 12, 16, 0.82) 31%, rgba(11, 12, 16, 0.23) 62%, rgba(11, 12, 16, 0.08) 100%),
    linear-gradient(0deg, rgba(11, 12, 16, 0.74) 0%, transparent 38%);
}

.hero-copy {
  bottom: clamp(92px, 11vh, 128px);
  left: var(--pad);
  max-width: min(760px, 54vw);
  padding-right: 0;
}

.hero h1 {
  font-size: clamp(52px, 6.5vw, 108px);
  line-height: 0.9;
}

.hero h1 em {
  color: var(--acid);
  display: inline-block;
  font-family: var(--display);
  font-style: normal;
  letter-spacing: -0.08em;
  position: relative;
}

.hero h1 span {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.92);
}

.hero-lead {
  border-left: 4px solid var(--cobalt);
  padding-left: 18px;
}

.hero .button-light {
  background: var(--acid);
  border-color: var(--acid);
}

.hero .button-light:hover {
  background: var(--cobalt);
  border-color: var(--cobalt);
  color: var(--white);
}

.hero-color-rail {
  bottom: 0;
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.45fr;
  height: 10px;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 4;
}

.hero-color-rail span:nth-child(1) { background: var(--acid); }
.hero-color-rail span:nth-child(2) { background: var(--cobalt); }
.hero-color-rail span:nth-child(3) { background: var(--coral); }

.ticker {
  background: var(--acid);
  border-color: var(--ink);
}

.ticker i {
  color: var(--cobalt);
}

.problem-section {
  background:
    linear-gradient(rgba(11, 12, 16, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 12, 16, 0.055) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
}

.problem-section .outline-word {
  -webkit-text-stroke-color: var(--cobalt);
}

.section-intro {
  border-top: 5px solid var(--coral);
  padding-top: 20px;
}

.pain-strip {
  border: 1px solid var(--ink);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: clamp(46px, 6vw, 80px);
}

.pain-strip p {
  font-size: clamp(14px, 1.25vw, 18px);
  line-height: 1.65;
  margin: 0;
  min-height: 170px;
  padding: 30px;
}

.pain-strip p + p {
  border-left: 1px solid var(--ink);
}

.pain-strip p:nth-child(1) { background: var(--white); }
.pain-strip p:nth-child(2) { background: var(--ice); }
.pain-strip p:nth-child(3) { background: var(--acid); }

.pain-strip strong {
  display: inline-block;
  font-size: 1.15em;
  margin-top: 18px;
}

.problem-card {
  min-height: 360px;
}

.problem-card:nth-child(1) { background: var(--white); }
.problem-card:nth-child(2) { background: var(--acid); }
.problem-card:nth-child(3) { background: var(--cobalt); color: var(--white); }
.problem-card:nth-child(4) { background: var(--coral); }

.problem-card:nth-child(3) p {
  color: rgba(255, 255, 255, 0.8);
}

.problem-card:hover {
  background: var(--ink);
}

.pattern-line {
  color: var(--cobalt);
}

.solution-section {
  background:
    radial-gradient(circle at 8% 18%, rgba(45, 91, 255, 0.35), transparent 25%),
    var(--ink);
  gap: clamp(42px, 5vw, 78px);
  grid-template-columns: 0.82fr 1.18fr;
}

.solution-title h2::after {
  background: var(--acid);
  content: "";
  display: block;
  height: 12px;
  margin-top: 28px;
  width: min(260px, 70%);
}

.solution-copy em {
  color: var(--acid);
  font-family: var(--display);
  font-style: normal;
}

.solution-media {
  align-self: stretch;
  border: 1px solid rgba(255, 255, 255, 0.34);
  grid-column: 1;
  margin: 0;
  min-height: 540px;
  overflow: hidden;
  position: relative;
}

.solution-media::before {
  background: var(--acid);
  content: "EMB";
  color: var(--ink);
  font-family: var(--display);
  font-size: 12px;
  left: 0;
  letter-spacing: 0.16em;
  padding: 12px 18px;
  position: absolute;
  top: 0;
  z-index: 2;
}

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

.solution-media figcaption {
  background: var(--cobalt);
  bottom: 0;
  color: var(--white);
  font-size: 9px;
  left: 0;
  letter-spacing: 0.12em;
  padding: 12px 16px;
  position: absolute;
}

.solution-section .process-list {
  align-self: stretch;
  grid-column: 2;
}

.process-item {
  min-height: 102px;
  transition: background 180ms ease, padding 180ms ease;
}

.process-item:hover {
  background: var(--cobalt);
  padding-left: 20px;
  padding-right: 20px;
}

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

.review-frame {
  box-shadow: 10px 10px 0 var(--ink);
}

.review-frame:nth-child(1),
.review-frame:nth-child(5) { background: var(--acid); }
.review-frame:nth-child(2) { background: var(--ice); }
.review-frame:nth-child(3) { background: var(--coral); }
.review-frame:nth-child(4) { background: var(--cobalt); color: var(--white); }

.review-frame img {
  filter: none;
}

.stats-grid article:nth-child(1) { background: var(--acid); }
.stats-grid .stat-dark { background: var(--cobalt); }
.stats-grid article:nth-child(3) { background: var(--coral); }

.programs-section {
  background:
    linear-gradient(135deg, rgba(45, 91, 255, 0.17), transparent 38%),
    var(--ink);
}

.programs-lead h2::first-line {
  color: var(--acid);
}

.plan-card {
  min-height: 910px;
  overflow: hidden;
  padding: 0 clamp(30px, 4vw, 58px) 82px;
}

.plan-1 { background: var(--acid); }
.plan-2 { background: var(--cobalt); color: var(--white); }

.plan-media {
  height: 280px;
  margin: 0 calc(clamp(30px, 4vw, 58px) * -1) 30px;
  overflow: hidden;
  position: relative;
}

.plan-media::after {
  border: 1px solid rgba(255, 255, 255, 0.4);
  content: "";
  inset: 18px;
  pointer-events: none;
  position: absolute;
}

.plan-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
  width: 100%;
}

.plan-card:hover .plan-media img {
  transform: scale(1.035);
}

.plan-card h3 {
  margin-top: 35px;
}

.plan-2 .plan-top,
.plan-2 ul,
.plan-2 li,
.plan-2 .plan-link {
  border-color: rgba(255, 255, 255, 0.55);
}

.plan-2 .plan-subtitle,
.plan-2 .plan-price span {
  color: rgba(255, 255, 255, 0.75);
}

.plan-2 li {
  border-color: rgba(255, 255, 255, 0.35);
}

.all-in-one {
  background: var(--coral);
  border: 0;
  color: var(--ink);
  grid-template-columns: minmax(260px, 0.9fr) 1fr 1fr auto;
  padding: 0 clamp(28px, 4vw, 56px) 0 0;
}

.all-in-one > img {
  height: 280px;
  object-fit: cover;
  width: 100%;
}

.all-in-one > p {
  color: rgba(11, 12, 16, 0.72);
}

.all-in-one .circle-link {
  border-color: var(--ink);
}

.all-in-one .circle-link:hover {
  background: var(--ink);
  color: var(--white);
}

.who-section {
  background: var(--cobalt);
}

.who-visual {
  background: var(--ink);
  color: var(--white);
}

.who-visual > img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.who-visual::after {
  background: linear-gradient(0deg, rgba(11, 12, 16, 0.86), transparent 55%);
  content: "";
  inset: 0;
  position: absolute;
}

.who-monogram {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px var(--acid);
  margin-top: auto;
  opacity: 0.9;
}

.who-visual > p {
  background: var(--acid);
  color: var(--ink);
  margin: 34px 0 42px;
  padding: 10px 16px;
}

.who-lines {
  display: none;
}

.who-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.who-copy .button-outline:hover {
  background: var(--acid);
  border-color: var(--acid);
  color: var(--ink);
}

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

.faq-title h2 {
  color: var(--cobalt);
}

.faq-list details[open] {
  background: var(--acid);
  padding-left: 22px;
  padding-right: 22px;
}

.purchase-section {
  background: var(--cobalt);
}

.purchase-section .button-light {
  background: var(--acid);
  border-color: var(--acid);
}

.purchase-section .button-outline:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--ink);
}

.purchase-ghost {
  -webkit-text-stroke-color: rgba(215, 255, 47, 0.28);
}

.site-footer {
  background: var(--acid);
}

.site-footer .brand-slash {
  color: var(--cobalt);
}

.floating-contact a:first-child {
  background: var(--acid);
}

.floating-contact a:last-child {
  background: var(--cobalt);
  color: var(--white);
}

/* Inner pages */
.inner-header {
  background: rgba(242, 239, 231, 0.96);
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
}

.inner-header::after {
  display: none;
}

.inner-hero {
  align-content: end;
  background: var(--cobalt);
  color: var(--white);
  display: grid;
  gap: 26px 36px;
  grid-template-columns: 56px minmax(0, 1fr);
  min-height: 760px;
  overflow: hidden;
  padding: clamp(120px, 14vw, 190px) var(--pad) clamp(70px, 8vw, 120px);
  position: relative;
}

.inner-hero::before {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.14);
  bottom: -0.26em;
  content: "JOBPT";
  font-family: var(--display);
  font-size: clamp(190px, 28vw, 460px);
  font-weight: 900;
  left: -0.05em;
  letter-spacing: -0.12em;
  line-height: 0.8;
  position: absolute;
  white-space: nowrap;
}

.inner-hero-media {
  bottom: 0;
  margin: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  width: 47%;
}

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

.inner-hero-media span {
  background: linear-gradient(90deg, var(--cobalt) 0%, transparent 40%);
  inset: 0;
  position: absolute;
}

.inner-hero-index {
  color: currentColor;
  grid-column: 1;
  opacity: 0.65;
  position: relative;
  z-index: 2;
}

.inner-hero-copy,
.inner-hero-intro {
  grid-column: 2;
  max-width: min(760px, 49vw);
  position: relative;
  z-index: 2;
}

.inner-hero h1 {
  font-size: clamp(54px, 6.6vw, 105px);
  line-height: 0.92;
}

.inner-hero h1 em {
  color: var(--acid);
  font-family: var(--display);
  font-style: normal;
}

.inner-hero-intro {
  border-left: 5px solid var(--acid);
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  padding-left: 20px;
}

.inner-hero.tone-acid {
  background: var(--acid);
  color: var(--ink);
}

.inner-hero.tone-acid .inner-hero-media span {
  background: linear-gradient(90deg, var(--acid) 0%, transparent 42%);
}

.inner-hero.tone-acid .eyebrow.light,
.inner-hero.tone-acid .inner-hero-intro {
  color: rgba(11, 12, 16, 0.78);
}

.inner-hero.tone-acid h1 em {
  color: var(--cobalt);
}

.inner-hero.tone-acid .inner-hero-intro {
  border-color: var(--coral);
}

.inner-hero.tone-coral {
  background: var(--coral);
  color: var(--ink);
}

.inner-hero.tone-coral .inner-hero-media span {
  background: linear-gradient(90deg, var(--coral) 0%, transparent 42%);
}

.inner-hero.tone-coral .eyebrow.light,
.inner-hero.tone-coral .inner-hero-intro {
  color: rgba(11, 12, 16, 0.78);
}

.inner-hero.tone-coral h1 em {
  color: var(--white);
}

.inner-hero.tone-coral .inner-hero-intro {
  border-color: var(--acid);
}

.inner-section {
  background: var(--paper);
}

.program-intro .inner-lead-grid h2,
.who-story h2 {
  color: var(--cobalt);
}

.pillar-grid-section {
  gap: 0;
}

.pillar-card:nth-child(1) { background: var(--acid); }
.pillar-card:nth-child(2) { background: var(--cobalt); color: var(--white); }
.pillar-card:nth-child(3) { background: var(--coral); }

.pillar-card,
.point-cards article {
  border-color: var(--ink);
}

.route-cards a:nth-child(1) { background: var(--acid); }
.route-cards a:nth-child(2) { background: var(--cobalt); color: var(--white); }
.route-cards a:nth-child(3) { background: var(--coral); }

.detail-steps article,
.contract-process article {
  transition: background 180ms ease, color 180ms ease, padding 180ms ease;
}

.detail-steps article:nth-of-type(2),
.contract-process article:nth-of-type(2) {
  background: var(--acid);
  padding-left: 24px;
  padding-right: 24px;
}

.detail-steps article:nth-of-type(3),
.contract-process article:nth-of-type(3) {
  background: var(--cobalt);
  color: var(--white);
  padding-left: 24px;
  padding-right: 24px;
}

.detail-steps article:nth-of-type(3) p,
.contract-process article:nth-of-type(3) p {
  color: rgba(255, 255, 255, 0.82);
}

.detail-steps article:nth-of-type(4),
.contract-process article:nth-of-type(4) {
  background: var(--coral);
  padding-left: 24px;
  padding-right: 24px;
}

.page-half .season-summary {
  background: var(--acid);
  color: var(--ink);
}

.page-half .season-summary .eyebrow.light {
  color: rgba(11, 12, 16, 0.72);
}

.page-half .season-summary li {
  border-color: rgba(11, 12, 16, 0.35);
}

.page-full .season-summary {
  background: var(--cobalt);
}

.page-half .season-summary .button-light {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.page-full .season-summary .button-light {
  background: var(--acid);
  border-color: var(--acid);
  color: var(--ink);
}

.allin-grid article:nth-child(1) { background: var(--white); }
.allin-grid article:nth-child(2) { background: var(--acid); color: var(--ink); }
.allin-grid article:nth-child(3) { background: var(--cobalt); color: var(--white); }
.allin-grid article:nth-child(4) { background: var(--coral); color: var(--ink); }

.allin-grid article:nth-child(3) > p:last-child {
  color: rgba(255, 255, 255, 0.82);
}

.centered-action {
  background: var(--acid);
}

.point-cards article:nth-child(1) { background: var(--acid); }
.point-cards article:nth-child(2) { background: var(--cobalt); }
.point-cards article:nth-child(3) { background: var(--coral); }

.consultant-section {
  background: var(--ink);
  gap: clamp(30px, 5vw, 76px);
  grid-template-columns: minmax(280px, 0.78fr) auto minmax(360px, 1.1fr);
  overflow: hidden;
}

.consultant-photo {
  align-self: stretch;
  margin: 0;
  min-height: 680px;
  position: relative;
}

.consultant-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.consultant-photo figcaption {
  background: var(--acid);
  bottom: 0;
  color: var(--ink);
  font-size: 8px;
  left: 0;
  letter-spacing: 0.08em;
  padding: 10px 14px;
  position: absolute;
}

.consultant-number {
  color: var(--acid);
}

.review-page-grid figure:nth-child(1),
.review-page-grid figure:nth-child(5) { background: var(--acid); }
.review-page-grid figure:nth-child(2) { background: var(--ice); }
.review-page-grid figure:nth-child(3) { background: var(--coral); }
.review-page-grid figure:nth-child(4) { background: var(--cobalt); color: var(--white); }

.review-page-grid img {
  filter: none;
}

.review-page-stats article:nth-child(1) { background: var(--acid); }
.review-page-stats article:nth-child(2) { background: var(--cobalt); }
.review-page-stats article:nth-child(3) { background: var(--coral); }

.purchase-actions-panel > div:first-child {
  background: var(--cobalt);
}

.purchase-actions-panel > div:last-child {
  background: var(--ink);
  border-left: 10px solid var(--acid);
}

.refund-brief {
  background: var(--coral);
}

.full-faq details[open] {
  background: var(--acid);
}

.policy-list article:nth-child(3n+1) span { background: var(--acid); }
.policy-list article:nth-child(3n+2) span { background: var(--cobalt); color: var(--white); }
.policy-list article:nth-child(3n) span { background: var(--coral); }

.policy-list article span {
  align-items: center;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.inner-cta {
  background: var(--acid);
  color: var(--ink);
}

.inner-cta .eyebrow {
  color: var(--ink);
}

@media (max-width: 1100px) {
  .hero-copy {
    max-width: 64vw;
  }

  .solution-section {
    grid-template-columns: 1fr;
  }

  .solution-title,
  .solution-copy,
  .solution-media,
  .solution-section .process-list {
    grid-column: 1;
  }

  .solution-media {
    min-height: 500px;
  }

  .all-in-one {
    grid-template-columns: minmax(240px, 0.8fr) 1.2fr auto;
  }

  .all-in-one > p {
    display: none;
  }

  .consultant-section {
    grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
  }

  .consultant-number {
    display: none;
  }
}

@media (max-width: 900px) {
  .pain-strip {
    grid-template-columns: 1fr;
  }

  .pain-strip p {
    min-height: 0;
  }

  .pain-strip p + p {
    border-left: 0;
    border-top: 1px solid var(--ink);
  }

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

  .plan-card {
    min-height: 860px;
  }

  .all-in-one {
    grid-template-columns: 1fr auto;
    padding: 0 28px 32px;
  }

  .all-in-one > img {
    grid-column: 1 / -1;
    height: 320px;
    margin: 0 -28px 10px;
    width: calc(100% + 56px);
  }

  .inner-hero {
    min-height: 820px;
  }

  .inner-hero-media {
    height: 45%;
    top: auto;
    width: 56%;
  }

  .inner-hero-media span {
    background: linear-gradient(0deg, transparent 0%, var(--cobalt) 100%);
  }

  .inner-hero.tone-acid .inner-hero-media span {
    background: linear-gradient(0deg, transparent 0%, var(--acid) 100%);
  }

  .inner-hero.tone-coral .inner-hero-media span {
    background: linear-gradient(0deg, transparent 0%, var(--coral) 100%);
  }

  .inner-hero-copy,
  .inner-hero-intro {
    max-width: 78vw;
  }

  .consultant-section {
    grid-template-columns: 1fr;
  }

  .consultant-photo {
    min-height: 620px;
  }
}

@media (max-width: 760px) {
  .front-header {
    background: linear-gradient(180deg, rgba(11, 12, 16, 0.8), transparent);
  }

  .hero {
    min-height: 820px;
  }

  .hero-image {
    height: 54%;
    object-position: 67% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, var(--ink) 0%, var(--ink) 44%, rgba(11, 12, 16, 0.2) 72%, rgba(11, 12, 16, 0.05) 100%);
  }

  .hero-copy {
    bottom: 54px;
    left: 22px;
    max-width: none;
    right: 22px;
  }

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

  .hero-actions {
    gap: 14px;
  }

  .hero .button,
  .hero .text-link {
    min-width: 0;
  }

  .pain-strip p {
    padding: 24px;
  }

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

  .problem-card {
    min-height: 280px;
  }

  .solution-media {
    min-height: 390px;
  }

  .review-frame {
    box-shadow: 6px 6px 0 var(--ink);
  }

  .plan-card {
    min-height: 850px;
  }

  .plan-media {
    height: 220px;
  }

  .all-in-one {
    grid-template-columns: 1fr auto;
  }

  .all-in-one h3 {
    font-size: 34px;
  }

  .who-section {
    grid-template-columns: 1fr;
  }

  .who-visual {
    min-height: 620px;
  }

  .inner-header .mobile-menu nav {
    border: 1px solid var(--ink);
  }

  .inner-hero {
    display: grid;
    gap: 22px;
    grid-template-columns: 1fr;
    min-height: 740px;
    padding-bottom: 60px;
    padding-top: 104px;
  }

  .inner-hero-index,
  .inner-hero-copy,
  .inner-hero-intro {
    grid-column: 1;
    max-width: none;
  }

  .inner-hero-index {
    margin: 0 0 34px;
    writing-mode: initial;
  }

  .inner-hero h1 {
    font-size: clamp(43px, 12vw, 62px);
  }

  .inner-hero-intro {
    max-width: 90%;
  }

  .inner-hero-media {
    height: 44%;
    opacity: 0.64;
    width: 100%;
  }

  .detail-steps article:nth-of-type(n),
  .contract-process article:nth-of-type(n) {
    padding-left: 16px;
    padding-right: 16px;
  }

  .consultant-photo {
    min-height: 560px;
  }

  .site-footer {
    background: var(--acid);
  }
}

/* ================================================================
   JOBPT SIMPLE BLUE 3.0
   이미지와 페이지 구성은 유지하고, Pretendard와 흑백·블루만으로
   문구 장식을 덜어낸 기본형 디자인 시스템.
================================================================ */

@font-face {
  font-display: swap;
  font-family: "Pretendard";
  font-style: normal;
  font-weight: 100 900;
  src: url("../fonts/PretendardVariable.woff2") format("woff2-variations");
}

:root {
  --ink: #111318;
  --paper: #f6f7f9;
  --white: #ffffff;
  --muted: #667085;
  --line: #d8dee8;
  --acid: #2563eb;
  --cobalt: #2563eb;
  --coral: #eef4ff;
  --ice: #eef4ff;
  --display: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
  --sans: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
}

html,
body,
button,
input,
select,
textarea,
summary {
  font-family: var(--sans);
}

body {
  background: var(--paper);
  color: var(--ink);
}

::selection {
  background: var(--cobalt);
  color: var(--white);
}

.brand {
  font-family: var(--sans);
  letter-spacing: -0.045em;
}

.brand-slash,
.site-footer .brand-slash {
  color: var(--cobalt);
  font-family: inherit;
  font-style: normal;
  font-weight: 800;
}

.hero h1,
.section h2,
.who-section h2,
.purchase-section h2,
.inner-hero h1,
.inner-lead-grid h2,
.who-story h2,
.inner-cta h2,
.consultant-section h2,
.purchase-actions-panel h2,
.refund-brief h2,
.problem-card h3,
.large-copy,
.plan-card h3,
.stats-grid strong,
.pillar-card h3,
.point-cards h3,
.route-cards h3,
.detail-steps h2,
.contract-process h2,
.season-summary h2,
.allin-grid h2,
.review-page-stats strong,
.full-faq summary strong {
  font-family: var(--sans);
  letter-spacing: -0.04em;
}

.hero h1,
.section h2,
.who-section h2,
.purchase-section h2,
.inner-hero h1 {
  line-height: 1.04;
}

.hero h1 em,
.hero h1 span,
.large-copy em,
.inner-hero h1 em,
.outline-word {
  -webkit-text-fill-color: currentColor;
  -webkit-text-stroke: 0;
  color: inherit;
  font-family: inherit;
  font-style: normal;
  letter-spacing: inherit;
}

.button,
.desktop-nav .nav-cta,
.desktop-nav > li:last-child a {
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.front-header .nav-cta,
.inner-header .nav-cta {
  background: var(--cobalt);
  border-color: var(--cobalt);
  color: var(--white);
}

.front-header .nav-cta:hover,
.inner-header .nav-cta:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  color: var(--white);
}

.hero {
  background: var(--ink);
  min-height: min(900px, 100svh);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(17, 19, 24, 0.94) 0%, rgba(17, 19, 24, 0.76) 34%, rgba(17, 19, 24, 0.2) 66%, rgba(17, 19, 24, 0.08) 100%),
    linear-gradient(0deg, rgba(17, 19, 24, 0.66) 0%, transparent 40%);
}

.hero-copy {
  max-width: min(720px, 54vw);
}

.hero h1 {
  font-size: clamp(48px, 5.6vw, 88px);
  letter-spacing: -0.045em;
}

.hero h1 em,
.hero h1 span {
  color: var(--white);
}

.hero-lead {
  border-left: 3px solid var(--cobalt);
  color: rgba(255, 255, 255, 0.82);
  padding-left: 18px;
}

.hero .button-light,
.purchase-section .button-light,
.page-full .season-summary .button-light {
  background: var(--cobalt);
  border-color: var(--cobalt);
  color: var(--white);
}

.hero .button-light:hover,
.purchase-section .button-light:hover,
.page-full .season-summary .button-light:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  color: var(--white);
}

.hero-color-rail,
.inner-hero::before,
.purchase-ghost,
.consultant-number,
.who-monogram {
  display: none;
}

.eyebrow {
  font-size: 10px;
  letter-spacing: 0.1em;
}

.eyebrow::before {
  width: 26px;
}

.ticker {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.ticker i {
  color: var(--cobalt);
}

.section {
  padding-bottom: clamp(80px, 9vw, 140px);
  padding-top: clamp(80px, 9vw, 140px);
}

.section h2 {
  font-size: clamp(42px, 5.4vw, 82px);
}

.section-intro {
  border-left: 3px solid var(--cobalt);
  border-top: 0;
  color: #475467;
  padding-left: 18px;
  padding-top: 0;
}

.problem-section {
  background: var(--paper);
}

.problem-section .outline-word {
  color: var(--ink);
}

.pain-strip,
.problem-grid,
.stats-grid,
.pillar-grid-section,
.point-cards {
  border-color: var(--line);
}

.pain-strip p {
  background: var(--white) !important;
  border-color: var(--line) !important;
}

.pain-strip p:nth-child(2) {
  background: var(--ice) !important;
}

.problem-card,
.problem-card:nth-child(n) {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
  min-height: 340px;
}

.problem-card:nth-child(2),
.problem-card:nth-child(4) {
  background: var(--ice);
}

.problem-card::before {
  background: var(--cobalt);
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.problem-card:nth-child(n) p {
  color: var(--muted);
}

.problem-card:hover,
.problem-card:nth-child(n):hover {
  background: var(--white);
  color: var(--ink);
}

.problem-card:hover p,
.problem-card:nth-child(n):hover p {
  color: var(--muted);
}

.pattern-line {
  color: var(--ink);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.solution-section,
.programs-section {
  background: var(--ink);
}

.solution-title h2::after {
  background: var(--cobalt);
  height: 4px;
  margin-top: 24px;
  width: 72px;
}

.solution-copy em {
  color: var(--white);
  font-family: inherit;
  font-style: normal;
}

.solution-media {
  border-color: rgba(255, 255, 255, 0.28);
}

.solution-media::before,
.consultant-photo figcaption {
  background: var(--cobalt);
  color: var(--white);
}

.solution-media figcaption {
  background: var(--ink);
  color: var(--white);
}

.process-item:hover {
  background: rgba(37, 99, 235, 0.18);
}

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

.review-frame,
.review-frame:nth-child(n),
.review-page-grid figure,
.review-page-grid figure:nth-child(n) {
  background: var(--white);
  border-color: var(--line);
  box-shadow: none;
  color: var(--ink);
}

.review-frame:nth-child(even),
.review-page-grid figure:nth-child(even) {
  background: var(--ice);
}

.review-frame figcaption {
  border-color: var(--line);
}

.stats-grid article,
.stats-grid article:nth-child(n),
.review-page-stats article,
.review-page-stats article:nth-child(n) {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.stats-grid .stat-dark,
.review-page-stats article:nth-child(2),
.review-page-stats .dark {
  background: var(--cobalt);
  color: var(--white);
}

.programs-lead h2::first-line {
  color: var(--white);
}

.plan-card,
.plan-card:nth-child(n) {
  background: var(--white);
  color: var(--ink);
  min-height: 860px;
}

.plan-card:nth-child(2) {
  background: var(--ice);
}

.plan-media::after {
  display: none;
}

.plan-2 .plan-top,
.plan-2 ul,
.plan-2 li,
.plan-2 .plan-link {
  border-color: var(--line);
}

.plan-2 .plan-subtitle,
.plan-2 .plan-price span {
  color: var(--muted);
}

.plan-link span,
.circle-link {
  color: var(--cobalt);
}

.all-in-one {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
}

.all-in-one > p {
  color: var(--muted);
}

.all-in-one .circle-link {
  border-color: var(--cobalt);
}

.all-in-one .circle-link:hover {
  background: var(--cobalt);
  color: var(--white);
}

.who-section {
  background: var(--ink);
}

.who-visual {
  background: #0b0d12;
}

.who-monogram {
  -webkit-text-fill-color: rgba(255, 255, 255, 0.92);
  -webkit-text-stroke: 0;
  font-size: clamp(70px, 11vw, 160px);
  letter-spacing: -0.05em;
}

.who-visual > p {
  background: var(--cobalt);
  color: var(--white);
}

.who-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.who-copy .button-outline:hover {
  background: var(--cobalt);
  border-color: var(--cobalt);
  color: var(--white);
}

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

.faq-title h2 {
  color: var(--ink);
}

.faq-list details[open],
.full-faq details[open] {
  background: var(--ice);
}

.purchase-section {
  background: var(--ink);
}

.purchase-section .button-outline:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.site-footer {
  background: var(--white);
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.floating-contact a:first-child {
  background: var(--cobalt);
  color: var(--white);
}

.floating-contact a:last-child {
  background: var(--ink);
  color: var(--white);
}

/* Inner pages */
.inner-header {
  background: rgba(255, 255, 255, 0.97);
  border-color: var(--line);
}

.inner-hero,
.inner-hero.tone-acid,
.inner-hero.tone-coral {
  background: var(--ink);
  color: var(--white);
  min-height: 720px;
}

.inner-hero-media span,
.inner-hero.tone-acid .inner-hero-media span,
.inner-hero.tone-coral .inner-hero-media span {
  background: linear-gradient(90deg, var(--ink) 0%, rgba(17, 19, 24, 0.72) 25%, transparent 64%);
}

.inner-hero h1 {
  font-size: clamp(46px, 5.7vw, 86px);
  letter-spacing: -0.045em;
}

.inner-hero h1 em,
.inner-hero.tone-acid h1 em,
.inner-hero.tone-coral h1 em {
  color: var(--white);
}

.inner-hero .eyebrow.light,
.inner-hero.tone-acid .eyebrow.light,
.inner-hero.tone-coral .eyebrow.light,
.inner-hero .inner-hero-intro,
.inner-hero.tone-acid .inner-hero-intro,
.inner-hero.tone-coral .inner-hero-intro {
  color: rgba(255, 255, 255, 0.78);
}

.inner-hero-intro,
.inner-hero.tone-acid .inner-hero-intro,
.inner-hero.tone-coral .inner-hero-intro {
  border-color: var(--cobalt);
  border-left-width: 3px;
}

.inner-section {
  background: var(--paper);
}

.program-intro .inner-lead-grid h2,
.who-story h2 {
  color: var(--ink);
}

.pillar-card,
.pillar-card:nth-child(n),
.point-cards article,
.point-cards article:nth-child(n),
.route-cards a,
.route-cards a:nth-child(n),
.allin-grid article,
.allin-grid article:nth-child(n) {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.pillar-card:nth-child(2),
.point-cards article:nth-child(2),
.route-cards a:nth-child(2),
.allin-grid article:nth-child(2),
.allin-grid article:nth-child(4) {
  background: var(--ice);
  color: var(--ink);
}

.pillar-card > p:last-child,
.pillar-card.dark > p:last-child,
.point-cards article > p:last-child,
.point-cards .dark > p:last-child,
.allin-grid article > p:last-child,
.allin-grid article:nth-child(3) > p:last-child {
  color: var(--muted);
}

.route-cards a:hover,
.route-cards a:nth-child(n):hover {
  background: var(--cobalt);
  border-color: var(--cobalt);
  color: var(--white);
}

.route-cards a:hover p {
  color: rgba(255, 255, 255, 0.78);
}

.detail-steps article,
.detail-steps article:nth-of-type(n),
.contract-process article,
.contract-process article:nth-of-type(n) {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
  padding-left: 0;
  padding-right: 0;
}

.detail-steps article:nth-of-type(2),
.contract-process article:nth-of-type(2) {
  background: var(--ice);
  padding-left: 24px;
  padding-right: 24px;
}

.detail-steps article:nth-of-type(n) p,
.contract-process article:nth-of-type(n) p {
  color: #475467;
}

.season-summary,
.page-half .season-summary,
.page-full .season-summary {
  background: var(--cobalt);
  color: var(--white);
}

.season-summary h2 {
  font-size: clamp(72px, 10vw, 150px);
  letter-spacing: -0.055em;
  line-height: 0.86;
}

.page-half .season-summary .eyebrow.light,
.page-full .season-summary .eyebrow.light {
  color: rgba(255, 255, 255, 0.72);
}

.page-half .season-summary li,
.page-full .season-summary li {
  border-color: rgba(255, 255, 255, 0.35);
}

.page-half .season-summary .button-light,
.page-full .season-summary .button-light {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.centered-action,
.refund-brief {
  background: var(--ice);
  color: var(--ink);
}

.consultant-section {
  background: var(--ink);
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
}

.review-page-grid figure:nth-child(even) {
  transform: none;
}

.review-page-stats small {
  color: var(--muted);
}

.purchase-actions-panel > div:first-child {
  background: var(--cobalt);
}

.purchase-actions-panel > div:last-child {
  background: var(--ink);
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.policy-list article {
  border-color: var(--line);
}

.policy-list article:nth-child(n) span {
  background: var(--cobalt);
  border-radius: 50%;
  color: var(--white);
}

.inner-cta {
  background: var(--cobalt);
  color: var(--white);
}

.inner-cta .eyebrow {
  color: var(--white);
}

.inner-cta .button-light {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

@media (max-width: 900px) {
  .inner-hero-media span,
  .inner-hero.tone-acid .inner-hero-media span,
  .inner-hero.tone-coral .inner-hero-media span {
    background: linear-gradient(0deg, transparent 0%, var(--ink) 100%);
  }

  .consultant-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .front-header {
    background: linear-gradient(180deg, rgba(17, 19, 24, 0.82), transparent);
  }

  .hero-shade {
    background: linear-gradient(0deg, var(--ink) 0%, var(--ink) 44%, rgba(17, 19, 24, 0.18) 76%, rgba(17, 19, 24, 0.04) 100%);
  }

  .hero h1 {
    font-size: clamp(42px, 11.6vw, 60px);
  }

  .review-frame {
    box-shadow: none;
  }

  .inner-hero,
  .inner-hero.tone-acid,
  .inner-hero.tone-coral {
    min-height: 720px;
  }

  .inner-hero h1 {
    font-size: clamp(40px, 10.8vw, 58px);
  }

  .detail-steps article:nth-of-type(n),
  .contract-process article:nth-of-type(n) {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-footer {
    background: var(--white);
  }
}
