:root {
  --pc-bg: #070c17;
  --pc-panel: #101827;
  --pc-panel-strong: #141f31;
  --pc-line: #26344a;
  --pc-text: #f7f9fc;
  --pc-muted: #aab7c9;
  --pc-cyan: #20d9ff;
  --pc-yellow: #ffd33d;
  --pc-green: #64e6ad;
  --pc-danger: #ff8ba0;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--pc-bg);
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(32, 217, 255, 0.09), transparent 27rem),
    radial-gradient(circle at 8% 34%, rgba(255, 211, 61, 0.05), transparent 24rem),
    var(--pc-bg) !important;
  color: var(--pc-text) !important;
  font-family: Pretendard, "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 17px !important;
  line-height: 1.68 !important;
  word-break: keep-all;
}

a {
  color: var(--pc-text);
  text-decoration-color: rgba(32, 217, 255, 0.6);
  text-underline-offset: 4px;
}

.policy-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 max(24px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 12, 23, 0.9);
  backdrop-filter: blur(16px);
}

.policy-topbar .brand {
  color: #fff;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.policy-topbar .brand i {
  color: var(--pc-yellow);
  font-style: normal;
}

.policy-topbar nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.policy-topbar nav a {
  color: var(--pc-muted);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.policy-topbar nav a:hover,
.policy-topbar nav a:focus-visible {
  color: var(--pc-cyan);
}

main.page,
main.wrap,
main.purchase-page {
  width: min(1120px, calc(100% - 40px)) !important;
  max-width: 1120px !important;
  margin: 0 auto !important;
  padding: 72px 0 88px !important;
}

.hero,
.wrap > .card:first-child,
.purchase-page > .hero-body {
  position: relative;
}

.hero {
  min-height: auto !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px !important;
  align-items: start;
  margin: 0 0 28px !important;
  padding: 48px !important;
  border: 1px solid var(--pc-line);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(20, 31, 49, 0.98), rgba(12, 19, 32, 0.98)) !important;
}

.hero .eyebrow,
.preview-panel .eyebrow,
.purchase-page .eyebrow {
  display: none !important;
}

.hero h1,
.hero-title-simple,
.wrap h1,
.purchase-page h1 {
  max-width: 900px;
  margin: 0 !important;
  color: #fff !important;
  font-size: clamp(38px, 5.2vw, 64px) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.045em !important;
  text-wrap: balance;
}

.hero-title-simple span {
  display: inline !important;
}

.hero-title-simple span + span::before {
  content: " ";
}

.hero-body,
.hero > p:not(.eyebrow),
.wrap > .card:first-child p {
  max-width: 760px;
  margin: 0 !important;
  color: var(--pc-muted) !important;
  font-size: 18px !important;
  line-height: 1.7 !important;
}

.status-row,
.button-row {
  grid-column: 1 / -1;
  margin: 0 !important;
}

.demo-badge,
.badge {
  display: inline-flex !important;
  align-items: center;
  min-height: 30px;
  padding: 5px 11px !important;
  border: 1px solid rgba(32, 217, 255, 0.22);
  border-radius: 999px !important;
  background: rgba(32, 217, 255, 0.08) !important;
  color: var(--pc-cyan) !important;
  font-size: 12px !important;
  font-weight: 850 !important;
}

.badge.ok {
  border-color: rgba(100, 230, 173, 0.24);
  background: rgba(100, 230, 173, 0.09) !important;
  color: var(--pc-green) !important;
}

.badge.danger {
  border-color: rgba(255, 139, 160, 0.25);
  background: rgba(255, 139, 160, 0.09) !important;
  color: var(--pc-danger) !important;
}

.preview-panel,
.wrap > .card,
.purchase-panel,
.notice-strip {
  margin: 16px 0 0 !important;
  padding: 32px !important;
  border: 1px solid var(--pc-line) !important;
  border-radius: 22px !important;
  background: rgba(16, 24, 39, 0.92) !important;
  color: var(--pc-text) !important;
  box-shadow: none !important;
}

.wrap > .card:first-child {
  padding: 44px !important;
  border-color: rgba(32, 217, 255, 0.25) !important;
  background: linear-gradient(145deg, var(--pc-panel-strong), var(--pc-panel)) !important;
}

.preview-panel h2,
.wrap h2,
.purchase-panel h2 {
  margin: 0 0 18px !important;
  color: #fff !important;
  font-size: clamp(26px, 3vw, 36px) !important;
  line-height: 1.2 !important;
  letter-spacing: -0.035em !important;
}

.preview-panel p,
.preview-panel li,
.wrap p,
.wrap li,
.purchase-panel p,
.notice-strip {
  color: var(--pc-muted) !important;
  font-size: 16px !important;
  line-height: 1.72 !important;
  overflow-wrap: anywhere;
}

.notice-list {
  display: grid;
  gap: 10px;
  margin: 0 !important;
  padding-left: 22px !important;
}

.notice-list li::marker,
.wrap li::marker {
  color: var(--pc-yellow);
}

.notice-list li,
.wrap li {
  word-break: normal;
}

/* 조항 목록. ①②③ 표기를 직접 쓰는 항목은 불릿을 겹쳐 달지 않는다. */
.clause-list {
  display: grid;
  gap: 10px;
  margin: 0 !important;
  padding-left: 0 !important;
  list-style: none;
}

.clause-list .notice-list {
  margin-top: 8px !important;
  padding-left: 20px !important;
}

.mini-grid,
.product-status-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.mini-card,
.product-status-card,
.product-info-list > div,
.summary-row {
  padding: 20px !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  border-radius: 15px !important;
  background: rgba(255, 255, 255, 0.035) !important;
}

.mini-card strong,
.product-status-card strong,
.product-info-list strong,
.summary-row strong {
  color: #fff !important;
  font-size: 17px !important;
}

.product-info-list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.product-info-list > div {
  display: grid !important;
  gap: 8px;
}

.product-info-list span {
  color: var(--pc-muted) !important;
}

table {
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  overflow: hidden;
  border: 1px solid var(--pc-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025) !important;
}

th,
td {
  padding: 16px 18px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--pc-line) !important;
  color: var(--pc-text) !important;
  font-size: 15px !important;
  text-align: left !important;
}

th {
  width: 30%;
  background: rgba(255, 255, 255, 0.035) !important;
  color: var(--pc-muted) !important;
}

tr:last-child th,
tr:last-child td {
  border-bottom: 0 !important;
}

.notice {
  border-left-color: var(--pc-cyan) !important;
  color: var(--pc-muted) !important;
}

.review-product-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  margin: 24px 0 0;
  padding: 32px;
  border: 1px solid rgba(255, 211, 61, 0.3);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 211, 61, 0.09), rgba(16, 24, 39, 0.94));
}

.review-product-hero strong {
  display: block;
  color: #fff;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.22;
  text-wrap: balance;
}

.review-product-hero b {
  color: var(--pc-yellow);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
}

.review-disabled {
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  background: #354056;
  color: #cbd3df;
  font-size: 15px;
  font-weight: 850;
  cursor: not-allowed;
}

footer {
  width: min(1120px, calc(100% - 40px)) !important;
  margin: 0 auto !important;
  padding: 34px 0 52px !important;
  border-top: 1px solid var(--pc-line) !important;
  background: transparent !important;
  color: var(--pc-muted) !important;
  text-align: left !important;
}

footer strong {
  color: #fff !important;
}

footer nav {
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px 18px !important;
  margin-top: 20px !important;
}

footer a {
  color: var(--pc-muted) !important;
}

footer p {
  margin: 8px 0 !important;
  color: var(--pc-muted) !important;
  font-size: 14px !important;
}

@media (max-width: 760px) {
  body {
    font-size: 16px !important;
    word-break: normal;
  }

  .policy-topbar {
    position: static;
    align-items: flex-start;
    padding: 18px 20px;
  }

  .policy-topbar nav {
    justify-content: flex-end;
    gap: 8px 14px;
  }

  .policy-topbar nav a:nth-child(n + 5) {
    display: none;
  }

  main.page,
  main.wrap,
  main.purchase-page {
    width: min(100% - 28px, 1120px) !important;
    padding: 30px 0 56px !important;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 20px !important;
    padding: 28px !important;
    border-radius: 20px;
  }

  .hero h1,
  .hero-title-simple,
  .wrap h1,
  .purchase-page h1 {
    font-size: clamp(34px, 10vw, 48px) !important;
    line-height: 1.12 !important;
  }

  .preview-panel,
  .wrap > .card,
  .purchase-panel,
  .notice-strip,
  .wrap > .card:first-child {
    padding: 24px !important;
    border-radius: 18px !important;
  }

  .mini-grid,
  .product-status-grid,
  .product-info-list,
  .review-product-hero {
    grid-template-columns: 1fr !important;
  }

  th,
  td {
    display: block;
    width: 100% !important;
  }

  th {
    padding-bottom: 6px !important;
    border-bottom: 0 !important;
  }

  td {
    padding-top: 6px !important;
  }
}

/* Sprint-S01B: premium app-like policy page visual polish */
:root {
  --pc-bg: #050914;
  --pc-panel: #0c1423;
  --pc-panel-strong: #111b2d;
  --pc-panel-soft: rgba(255, 255, 255, 0.035);
  --pc-line: rgba(179, 197, 225, 0.13);
  --pc-line-strong: rgba(255, 211, 61, 0.24);
  --pc-text: #f8f9fc;
  --pc-muted: #a6b1c2;
  --pc-muted-strong: #c5ccda;
  --pc-yellow: #ffd83d;
  --pc-yellow-soft: #ffe887;
  --pc-cyan: #79dff5;
  --pc-green: #7ce7b6;
  --pc-danger: #ff9bab;
}

body {
  background:
    radial-gradient(circle at 50% -12%, rgba(255, 216, 61, 0.1), transparent 34rem),
    radial-gradient(circle at 92% 20%, rgba(55, 111, 190, 0.1), transparent 28rem),
    linear-gradient(180deg, #08101e 0%, var(--pc-bg) 42%, #040711 100%) !important;
}

.policy-topbar {
  min-height: 68px;
  padding: 0 max(22px, calc((100vw - 1040px) / 2));
  border-bottom-color: rgba(255, 255, 255, 0.06);
  background: rgba(5, 9, 20, 0.86);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.16);
}

.policy-topbar nav {
  align-items: center;
  gap: 6px;
}

.policy-topbar nav a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #9da9bb;
  font-size: 13px;
  font-weight: 760;
  white-space: nowrap;
}

.policy-topbar nav a[aria-current="page"] {
  border-color: rgba(255, 216, 61, 0.22);
  background: rgba(255, 216, 61, 0.09);
  color: var(--pc-yellow-soft);
}

.policy-topbar nav a:hover,
.policy-topbar nav a:focus-visible {
  color: var(--pc-yellow);
}

main.page,
main.wrap,
main.purchase-page {
  width: min(1040px, calc(100% - 40px)) !important;
  max-width: 1040px !important;
  padding: 60px 0 84px !important;
}

.hero,
.wrap > .card:first-child {
  overflow: hidden;
  justify-items: center;
  gap: 16px !important;
  margin-bottom: 22px !important;
  padding: 52px 48px !important;
  border-color: rgba(255, 216, 61, 0.16) !important;
  border-radius: 28px !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 216, 61, 0.08), transparent 25rem),
    linear-gradient(145deg, rgba(17, 27, 45, 0.98), rgba(8, 14, 26, 0.98)) !important;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28) !important;
  text-align: center;
}

.hero::before,
.wrap > .card:first-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(320px, 54%);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--pc-yellow), transparent);
  transform: translateX(-50%);
}

.hero h1,
.hero-title-simple,
.wrap h1,
.purchase-page h1 {
  max-width: 820px;
  font-size: clamp(38px, 5vw, 58px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.05em !important;
}

.hero-subtitle {
  margin: -2px 0 0 !important;
  color: var(--pc-yellow-soft) !important;
  font-size: clamp(17px, 2vw, 20px) !important;
  font-weight: 820;
  line-height: 1.45 !important;
}

.hero-body,
.hero > p:not(.eyebrow),
.wrap > .card:first-child p,
.purchase-page > .hero-body {
  max-width: 620px;
  color: var(--pc-muted-strong) !important;
  font-size: 16px !important;
  line-height: 1.72 !important;
  text-wrap: pretty;
}

.report-hero .hero-body {
  max-width: 570px;
}

.status-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 4px !important;
}

.demo-badge,
.badge {
  min-height: 30px;
  padding: 5px 11px !important;
  border-color: rgba(255, 216, 61, 0.2);
  background: rgba(255, 216, 61, 0.075) !important;
  color: var(--pc-yellow-soft) !important;
  letter-spacing: -0.015em;
}

.report-hero .status-row .demo-badge:last-child,
.purchase-page > .status-row .demo-badge:nth-child(2) {
  border-color: rgba(173, 184, 202, 0.18);
  background: rgba(173, 184, 202, 0.07) !important;
  color: #bcc5d2 !important;
}

.purchase-page > .status-row .demo-badge:first-child {
  border-color: rgba(255, 155, 171, 0.2);
  background: rgba(255, 155, 171, 0.07) !important;
  color: #ffc1cc !important;
}

.purchase-page > .status-row .demo-badge:last-child {
  border-color: rgba(124, 231, 182, 0.2);
  background: rgba(124, 231, 182, 0.07) !important;
  color: #a4f0cd !important;
}

.button-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 4px !important;
}

.primary-button,
.secondary-button,
.policy-links .button {
  min-width: 172px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 860;
  line-height: 1.2;
  text-decoration: none;
}

.primary-button {
  border: 1px solid rgba(255, 216, 61, 0.82);
  background: linear-gradient(135deg, #ffe45f, #ffc928);
  box-shadow: 0 10px 30px rgba(255, 201, 40, 0.16);
  color: #111722;
}

.secondary-button,
.policy-links .button {
  border: 1px solid rgba(194, 207, 228, 0.16);
  background: rgba(255, 255, 255, 0.045);
  color: #edf1f8;
}

.preview-panel,
.wrap > .card,
.purchase-panel,
.notice-strip {
  margin: 14px 0 0 !important;
  padding: 30px !important;
  border-color: rgba(179, 197, 225, 0.11) !important;
  border-radius: 20px !important;
  background:
    linear-gradient(145deg, rgba(14, 23, 39, 0.96), rgba(9, 15, 27, 0.96)) !important;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.16) !important;
}

.preview-panel h2,
.wrap h2,
.purchase-panel h2 {
  margin: 0 0 14px !important;
  color: #fbfcff !important;
  font-size: clamp(24px, 2.7vw, 30px) !important;
  line-height: 1.28 !important;
  letter-spacing: -0.035em !important;
  text-wrap: balance;
}

.preview-panel p,
.preview-panel li,
.wrap p,
.wrap li,
.purchase-panel p,
.notice-strip {
  color: var(--pc-muted) !important;
  font-size: 15.5px !important;
  line-height: 1.74 !important;
}

.preview-panel p,
.wrap p,
.purchase-panel p {
  margin: 10px 0 0;
}

.preview-panel p:first-of-type,
.wrap p:first-of-type,
.purchase-panel p:first-of-type {
  margin-top: 0;
}

.notice-list {
  gap: 8px;
  padding-left: 20px !important;
}

.mini-grid,
.product-status-grid,
.product-info-list {
  gap: 10px !important;
}

.mini-card,
.product-status-card,
.product-info-list > div,
.summary-row {
  padding: 18px !important;
  border-color: rgba(203, 216, 236, 0.09) !important;
  border-radius: 14px !important;
  background: var(--pc-panel-soft) !important;
}

.mini-card strong {
  display: block;
  margin-bottom: 6px;
  color: #f8f9fd !important;
  font-size: 16px !important;
}

.mini-card p {
  margin: 0 !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
}

.product-info-list > div {
  align-content: start;
  min-height: 104px;
  gap: 7px !important;
}

.product-info-list > div > strong {
  color: #8794a9 !important;
  font-size: 11px !important;
  font-weight: 850 !important;
  letter-spacing: 0.08em;
}

.product-info-list > div > span {
  color: #f4f6fa !important;
  font-size: 16px;
  font-weight: 760;
  line-height: 1.5;
}

.product-info-list > div:nth-child(2) {
  border-color: rgba(255, 216, 61, 0.18) !important;
  background: rgba(255, 216, 61, 0.055) !important;
}

.product-info-list > div:nth-child(2) > span {
  color: var(--pc-yellow) !important;
  font-size: 24px;
  font-weight: 920;
  letter-spacing: -0.03em;
}

.review-disabled,
.disabled-action {
  min-height: 50px;
  border: 1px solid rgba(191, 203, 220, 0.13);
  border-radius: 14px;
  background: linear-gradient(180deg, #303a4a, #252d3a);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
  color: #c6cfdb;
  font-size: 14px;
  font-weight: 860;
  cursor: not-allowed;
  opacity: 0.82;
}

.review-disabled {
  width: 100%;
  margin-top: 14px;
}

.soft-notice,
#productTicketNotice,
#refundTicketNotice,
#termsServiceNature,
#businessServiceNotice {
  border-color: rgba(255, 216, 61, 0.17) !important;
  background:
    linear-gradient(145deg, rgba(255, 216, 61, 0.055), rgba(10, 17, 30, 0.97)) !important;
}

/* Purchase readiness: clear label/value hierarchy without a document-like table. */
.purchase-page {
  text-align: center;
}

.purchase-page > h1 {
  margin: 0 auto !important;
}

.purchase-page > .hero-body {
  margin: 16px auto 0 !important;
}

.purchase-page > .status-row {
  margin-top: 18px !important;
}

.purchase-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 14px;
  align-items: start;
  margin-top: 30px;
  text-align: left;
}

.purchase-panel {
  margin: 0 !important;
}

.purchase-card-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.summary-row {
  min-width: 0;
  min-height: 96px;
  display: grid;
  align-content: start;
  gap: 7px;
  border-bottom: 1px solid rgba(203, 216, 236, 0.09) !important;
}

.summary-row:nth-child(2),
.summary-row:nth-child(3) {
  grid-column: 1 / -1;
}

.summary-row span {
  color: #8794a9 !important;
  font-size: 11px !important;
  font-weight: 850;
  letter-spacing: 0.07em;
  line-height: 1.35;
}

.summary-row strong {
  color: #f7f9fc !important;
  font-size: 16px !important;
  font-weight: 820;
  line-height: 1.48;
  text-align: left;
  overflow-wrap: anywhere;
}

.summary-row:nth-child(3) {
  min-height: 112px;
  border-color: rgba(255, 216, 61, 0.2) !important;
  background:
    linear-gradient(135deg, rgba(255, 216, 61, 0.1), rgba(255, 216, 61, 0.035)) !important;
}

.summary-row:nth-child(3) strong {
  color: var(--pc-yellow) !important;
  font-size: clamp(28px, 3vw, 36px) !important;
  font-weight: 930;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.status-note {
  margin: 12px 0 0 !important;
  padding: 13px 14px;
  border: 1px solid rgba(255, 216, 61, 0.16);
  border-radius: 14px;
  background: rgba(255, 216, 61, 0.05);
  color: #e6dca4 !important;
  font-size: 13px !important;
  line-height: 1.58 !important;
}

.s01-consent {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  border: 0;
}

.s01-consent legend {
  margin-bottom: 7px;
  color: #f5f7fb;
  font-size: 13px;
  font-weight: 850;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 13px 14px;
  border: 1px solid rgba(203, 216, 236, 0.09);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.028);
  color: #aeb8c8;
  font-size: 13px;
  line-height: 1.58;
}

.check input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin: 3px 0 0;
  accent-color: var(--pc-yellow);
}

.small-note,
.muted {
  color: #8490a3 !important;
  font-size: 13px !important;
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.policy-links .button {
  min-width: 0;
  min-height: 42px;
  flex: 1 1 120px;
  padding: 0 14px;
  font-size: 13px;
}

.policy-links > a:not(.button) {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(203, 216, 236, 0.11);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  color: #e8edf5;
  font-size: 13px;
  font-weight: 780;
  text-decoration: none;
}

.disabled-action {
  width: 100%;
  margin-top: 12px;
  padding: 0 18px;
}

.purchase-page > .purchase-panel {
  margin-top: 14px !important;
  text-align: left;
}

/* Business information keeps exact data while looking like the same app surface. */
.wrap > .card:first-child p.notice {
  max-width: 640px;
  margin: 2px auto 0 !important;
  padding: 0;
  border: 0;
  text-align: center;
}

.wrap table {
  border-color: rgba(203, 216, 236, 0.1) !important;
  background: rgba(255, 255, 255, 0.018) !important;
}

.wrap th,
.wrap td {
  padding: 14px 16px !important;
}

.wrap th {
  width: 31%;
  background: rgba(255, 255, 255, 0.028) !important;
  color: #8794a9 !important;
  font-size: 12px !important;
  font-weight: 820;
}

.wrap td {
  color: #edf1f7 !important;
  font-size: 14px !important;
}

.badge.ok,
.badge.danger {
  margin-left: 7px;
  padding: 3px 8px !important;
  min-height: 23px;
  font-size: 10px !important;
}

.badge.ok {
  border-color: rgba(255, 216, 61, 0.18);
  background: rgba(255, 216, 61, 0.07) !important;
  color: var(--pc-yellow-soft) !important;
}

.notice {
  border-left-color: var(--pc-yellow) !important;
}

footer {
  width: min(1040px, calc(100% - 40px)) !important;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--pc-yellow);
  outline-offset: 3px;
}

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

@media (max-width: 760px) {
  .policy-topbar {
    position: sticky;
    display: grid;
    gap: 10px;
    padding: 13px 14px 10px;
  }

  .policy-topbar .brand {
    font-size: 21px;
  }

  .policy-topbar nav {
    width: calc(100vw - 28px);
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 5px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .policy-topbar nav::-webkit-scrollbar {
    display: none;
  }

  .policy-topbar nav a:nth-child(n + 5) {
    display: inline-flex;
  }

  .policy-topbar nav a {
    min-height: 32px;
    padding: 0 10px;
    font-size: 12px;
  }

  main.page,
  main.wrap,
  main.purchase-page {
    width: min(100% - 24px, 1040px) !important;
    padding: 24px 0 52px !important;
  }

  .hero,
  .wrap > .card:first-child {
    gap: 13px !important;
    padding: 30px 20px !important;
    border-radius: 20px !important;
  }

  .hero h1,
  .hero-title-simple,
  .wrap h1,
  .purchase-page h1 {
    font-size: clamp(32px, 10vw, 43px) !important;
    line-height: 1.1 !important;
  }

  .hero-subtitle {
    font-size: 16px !important;
  }

  .hero-body,
  .hero > p:not(.eyebrow),
  .wrap > .card:first-child p,
  .purchase-page > .hero-body {
    font-size: 14.5px !important;
    line-height: 1.68 !important;
  }

  .status-row {
    gap: 6px;
  }

  .demo-badge {
    min-height: 28px;
    padding: 4px 9px !important;
    font-size: 11px !important;
  }

  .button-row {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
    min-width: 0;
    min-height: 46px;
  }

  .preview-panel,
  .wrap > .card,
  .purchase-panel,
  .notice-strip,
  .wrap > .card:first-child {
    margin-top: 10px !important;
    padding: 21px !important;
    border-radius: 17px !important;
  }

  .preview-panel h2,
  .wrap h2,
  .purchase-panel h2 {
    margin-bottom: 10px !important;
    font-size: clamp(22px, 6.7vw, 27px) !important;
    line-height: 1.3 !important;
  }

  .preview-panel p,
  .preview-panel li,
  .wrap p,
  .wrap li,
  .purchase-panel p,
  .notice-strip {
    font-size: 14px !important;
    line-height: 1.68 !important;
  }

  .product-info-list,
  .purchase-card-summary {
    grid-template-columns: 1fr !important;
  }

  .product-info-list > div,
  .summary-row {
    min-height: 0;
    padding: 15px !important;
  }

  .summary-row:nth-child(2),
  .summary-row:nth-child(3) {
    grid-column: auto;
  }

  .summary-row:nth-child(3) {
    min-height: 96px;
  }

  .purchase-layout {
    gap: 10px;
    margin-top: 22px;
  }

  .check {
    padding: 12px;
    font-size: 12.5px;
  }

  .wrap th,
  .wrap td {
    display: block;
    width: 100% !important;
  }

  .wrap th {
    padding: 13px 14px 4px !important;
    border-bottom: 0 !important;
    background: transparent !important;
  }

  .wrap td {
    padding: 4px 14px 13px !important;
  }

  .wrap tr:not(:last-child) td {
    border-bottom: 1px solid var(--pc-line) !important;
  }

  footer {
    width: min(100% - 24px, 1040px) !important;
    padding: 28px 0 42px !important;
  }
}
