body.topik-page {
  background:
    radial-gradient(circle at 7% -18%, rgba(26, 115, 232, 0.2) 0%, rgba(26, 115, 232, 0) 35%),
    radial-gradient(circle at 96% 7%, rgba(255, 111, 97, 0.16) 0%, rgba(255, 111, 97, 0) 30%),
    linear-gradient(180deg, #ffffff 0%, #f5f9ff 42%, #ffffff 100%);
}

.tp-main {
  position: relative;
  overflow: hidden;
}

.tp-main::before {
  content: "TOPIK";
  position: absolute;
  top: 86px;
  right: -0.08em;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(5rem, 13vw, 11rem);
  line-height: 1;
  color: rgba(26, 115, 232, 0.08);
  pointer-events: none;
  z-index: 0;
}

.tp-hero {
  position: relative;
  min-height: min(920px, calc(100vh - 122px));
  display: grid;
  align-items: center;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.tp-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(1.08) contrast(1.02);
}

.tp-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(109deg, rgba(8, 23, 51, 0.9) 9%, rgba(8, 23, 51, 0.52) 58%, rgba(8, 23, 51, 0.22) 100%),
    linear-gradient(180deg, rgba(26, 115, 232, 0.2), rgba(15, 23, 42, 0.5));
}

.tp-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 405px);
  gap: 1.9rem;
  padding: clamp(2.2rem, 6vw, 5.4rem) 0;
}

.tp-hero-content {
  color: #ffffff;
}

.tp-kicker {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.93);
}

.tp-hero-content h1 {
  margin: 0.64rem 0 0;
  max-width: 21ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 4.8vw, 3.45rem);
  line-height: 1.08;
}

.tp-subtext {
  margin: 0.95rem 0 0;
  max-width: 62ch;
  font-size: clamp(0.96rem, 1.8vw, 1.1rem);
  color: rgba(255, 255, 255, 0.9);
}

.tp-urgency-row {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: auto auto;
  gap: 0.72rem;
  align-items: center;
}

.tp-countdown-box {
  padding: 0.56rem 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(13, 33, 70, 0.42);
}

.tp-countdown-box .label {
  margin: 0;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.86);
}

.tp-countdown-box .value {
  margin: 0.2rem 0 0;
  font-size: 1.03rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.tp-score-promise {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.56rem 0.82rem;
  border-radius: 999px;
  background: rgba(229, 57, 53, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.34);
  font-size: 0.8rem;
  color: #ffffff;
}

.tp-score-promise .dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #ffc107;
  box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
  animation: tpPulse 1.6s ease-in-out infinite;
}

@keyframes tpPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7); }
  70% { box-shadow: 0 0 0 11px rgba(255, 193, 7, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0); }
}

.tp-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tp-pay-cta {
  background: linear-gradient(135deg, #e53935, #c62828);
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.tp-progress-block {
  margin-top: 1rem;
  max-width: 560px;
}

.tp-progress-block p {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.85rem;
}

.tp-progress-meter {
  margin-top: 0.52rem;
  height: 0.58rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

.tp-progress-meter span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(135deg, #1a73e8 0%, #ffd54f 45%, #ff6f61 100%);
  transition: width 920ms ease;
}

.tp-hero-card {
  align-self: center;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  border: 1px solid rgba(26, 115, 232, 0.25);
  box-shadow: 0 14px 34px rgba(10, 34, 64, 0.19);
  padding: 1.14rem;
}

.tp-hero-card .mini-kicker {
  margin: 0;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #2c5fca;
  text-transform: uppercase;
}

.tp-hero-card h2 {
  margin: 0.46rem 0 0;
  color: #0f172a;
  font-size: 1.3rem;
}

.tp-hero-card ul {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.tp-hero-card li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.45rem;
  align-items: center;
  color: #334155;
  font-size: 0.83rem;
}

.tp-hero-card li span {
  width: 1.46rem;
  height: 1.46rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 115, 232, 0.12);
  color: #2c5fca;
  font-size: 0.72rem;
  font-weight: 800;
}

.tp-hero-card a {
  margin-top: 0.85rem;
  display: inline-flex;
  color: #e53935;
  font-weight: 700;
}

.tp-audience,
.tp-curriculum,
.tp-motivation,
.tp-social-proof,
.tp-payment,
.tp-engagement {
  position: relative;
  z-index: 1;
}

.tp-audience-grid,
.tp-month-grid {
  margin-top: 1.18rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.72rem;
}

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

.tp-audience-card,
.tp-month-card {
  background: #ffffff;
  border: 1px solid rgba(26, 115, 232, 0.21);
  border-radius: 14px;
  padding: 0.82rem;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.07);
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.tp-audience-card:hover,
.tp-month-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.11);
}

.tp-audience-card h3,
.tp-month-card h3 {
  margin: 0;
  font-size: 0.95rem;
  color: #0f172a;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.44rem;
  align-items: center;
}

.tp-month-card h3 {
  display: block;
  margin-top: 0.44rem;
}

.tp-audience-card h3 span {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 0.55rem;
  background: rgba(26, 115, 232, 0.11);
  color: #2c5fca;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
}

.tp-audience-card p,
.tp-month-card p,
.tp-month-card ul {
  margin: 0.55rem 0 0;
  color: #475569;
  font-size: 0.79rem;
}

.tp-month-card .month {
  margin: 0;
  font-size: 0.69rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #e53935;
}

.tp-month-card ul {
  padding-left: 1rem;
  display: grid;
  gap: 0.32rem;
}

.tp-month-card .challenge {
  margin-top: 0.62rem;
  padding: 0.42rem 0.5rem;
  border-radius: 8px;
  background: rgba(255, 111, 97, 0.1);
  border: 1px solid rgba(229, 57, 53, 0.2);
  color: #c62828;
  font-weight: 700;
}

.tp-meter-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.74rem;
}

.tp-level-meter,
.tp-leaderboard,
.tp-score-predictor,
.tp-video-card,
.tp-payment-aside,
.tp-weekly-tracker,
.tp-cert-slides {
  border-radius: 14px;
  border: 1px solid rgba(26, 115, 232, 0.21);
  background: #ffffff;
  box-shadow: 0 9px 20px rgba(15, 23, 42, 0.07);
  padding: 0.9rem;
}

.tp-level-meter h3,
.tp-leaderboard h3,
.tp-score-predictor h3,
.tp-weekly-tracker h3,
.tp-cert-slides h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1rem;
}

.meter-row {
  margin-top: 0.7rem;
}

.meter-row p {
  margin: 0;
  color: #334155;
  font-size: 0.8rem;
}

.meter {
  margin-top: 0.28rem;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(26, 115, 232, 0.12);
  overflow: hidden;
}

.meter span {
  display: block;
  height: 100%;
  border-radius: 999px;
}

.meter.base span { background: linear-gradient(135deg, #94a3b8, #64748b); }
.meter.success span { background: linear-gradient(135deg, #1a73e8, #ff6f61); }

.tp-leaderboard ol {
  margin: 0.65rem 0 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.4rem;
}

.tp-leaderboard li {
  color: #334155;
  font-size: 0.82rem;
}

.tp-leaderboard li span {
  margin-left: 0.35rem;
  color: #e53935;
  font-weight: 700;
}

.tp-score-predictor {
  margin-top: 0.78rem;
}

.tp-score-predictor p {
  margin: 0.45rem 0 0;
  color: #475569;
  font-size: 0.8rem;
}

.predictor-grid {
  margin-top: 0.6rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.predictor-grid label {
  display: grid;
  gap: 0.34rem;
  font-size: 0.82rem;
  color: #334155;
  font-weight: 700;
}

.predictor-grid select {
  min-height: 2.4rem;
  border-radius: 10px;
  border: 1px solid rgba(26, 115, 232, 0.26);
  background: #f8fbff;
  padding: 0 0.72rem;
  color: #334155;
  font-family: inherit;
}

.tp-score-predictor .btn {
  margin-top: 0.55rem;
}

.tp-predictor-result {
  margin-top: 0.6rem;
  border-radius: 10px;
  border: 1px solid rgba(26, 115, 232, 0.23);
  padding: 0.72rem;
  color: #334155;
  background: #f8fbff;
}

.tp-predictor-result.good {
  border-color: rgba(21, 128, 61, 0.45);
  background: rgba(22, 163, 74, 0.08);
  color: #166534;
}

.tp-predictor-result.average {
  border-color: rgba(202, 138, 4, 0.48);
  background: rgba(234, 179, 8, 0.12);
  color: #854d0e;
}

.tp-predictor-result.low {
  border-color: rgba(220, 38, 38, 0.45);
  background: rgba(239, 68, 68, 0.1);
  color: #991b1b;
}

.tp-proof-stats {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.tp-proof-stats article {
  border-radius: 12px;
  padding: 0.9rem;
  text-align: center;
  border: 1px solid rgba(26, 115, 232, 0.22);
  background: #ffffff;
  box-shadow: 0 8px 19px rgba(15, 23, 42, 0.07);
}

.tp-proof-stats strong {
  display: block;
  font-size: 1.72rem;
  line-height: 1;
  color: #e53935;
}

.tp-proof-stats span {
  display: block;
  margin-top: 0.35rem;
  color: #475569;
  font-size: 0.77rem;
}

.tp-video-grid {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.74rem;
}

.tp-video-card video {
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 16 / 10;
  background: #0f172a;
}

.tp-video-card h3 {
  margin: 0.55rem 0 0;
  color: #0f172a;
  font-size: 0.95rem;
}

.tp-video-card p {
  margin: 0.34rem 0 0;
  color: #475569;
  font-size: 0.79rem;
}

.tp-payment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 0.9rem;
}

.tp-price-card {
  margin-top: 0.75rem;
  border-radius: 14px;
  border: 1px solid rgba(26, 115, 232, 0.24);
  background: linear-gradient(135deg, rgba(26, 115, 232, 0.08), rgba(255, 111, 97, 0.12));
  padding: 0.9rem;
}

.tp-price-card .price-label {
  margin: 0;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #334155;
  font-weight: 800;
}

.tp-price-card .price-value {
  margin: 0.4rem 0 0;
  font-size: 2rem;
  color: #e53935;
  font-weight: 800;
  line-height: 1;
}

.tp-price-card .price-note {
  margin: 0.45rem 0 0;
  color: #475569;
  font-size: 0.8rem;
}

.tp-pay-actions {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
}

.tp-trust-badges {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tp-trust-badges span {
  padding: 0.34rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(26, 115, 232, 0.3);
  background: rgba(26, 115, 232, 0.1);
  color: #2c5fca;
  font-size: 0.75rem;
  font-weight: 700;
}

.tp-payment-aside ul {
  margin: 0.72rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.46rem;
}

.tp-payment-aside li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.45rem;
  align-items: center;
  color: #334155;
  font-size: 0.82rem;
}

.tp-payment-aside li span {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 0.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2c5fca;
  background: rgba(26, 115, 232, 0.11);
  font-size: 0.73rem;
  font-weight: 800;
}

.tp-payment-aside img {
  margin-top: 0.75rem;
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid rgba(26, 115, 232, 0.2);
}

.tp-payment-aside .cert-caption {
  margin: 0.45rem 0 0;
  color: #475569;
  font-size: 0.75rem;
}

.mock-preview-link {
  margin-top: 0.72rem;
  display: inline-flex;
  color: #e53935;
  font-weight: 700;
  font-size: 0.84rem;
}

.tp-engagement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.tp-weekly-tracker p,
.tp-cert-slides p {
  margin: 0.45rem 0 0;
  color: #475569;
  font-size: 0.8rem;
}

.tp-weekly-tracker ul {
  margin: 0.6rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.38rem;
}

.tp-weekly-tracker li label {
  display: inline-flex;
  align-items: center;
  gap: 0.46rem;
  color: #334155;
  font-size: 0.82rem;
}

.tp-weekly-tracker input[type="checkbox"] {
  accent-color: #1a73e8;
}

.tracker-meter {
  margin-top: 0.62rem;
  height: 0.56rem;
  border-radius: 999px;
  background: rgba(26, 115, 232, 0.12);
  overflow: hidden;
}

.tracker-meter span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(135deg, #1a73e8, #ff6f61);
  transition: width 260ms ease;
}

.tracker-status {
  margin-top: 0.45rem;
  font-weight: 700;
  color: #2c5fca;
}

.slide-grid {
  margin-top: 0.62rem;
  display: grid;
  gap: 0.5rem;
}

.slide-grid div {
  border-radius: 10px;
  border: 1px solid rgba(26, 115, 232, 0.2);
  padding: 0.6rem;
  background: #f8fbff;
}

.slide-grid strong {
  color: #0f172a;
  font-size: 0.84rem;
}

@media (max-width: 1200px) {
  .tp-audience-grid,
  .tp-proof-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tp-month-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .tp-main::before {
    display: none;
  }

  .tp-hero-grid,
  .tp-payment-grid,
  .tp-engagement-grid,
  .tp-meter-grid {
    grid-template-columns: 1fr;
  }

  .tp-hero-card {
    order: -1;
  }

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

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

@media (max-width: 760px) {
  .tp-hero {
    min-height: auto;
  }

  .tp-hero-content h1 {
    max-width: none;
  }

  .tp-urgency-row,
  .tp-audience-grid,
  .tp-proof-stats,
  .tp-video-grid {
    grid-template-columns: 1fr;
  }

  .tp-actions,
  .tp-pay-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .tp-actions .btn,
  .tp-pay-actions .btn {
    justify-content: center;
  }
}
