@font-face {
  font-family: "GmarketSans";
  src: url("/assets/fonts/GmarketSansTTFLight.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GmarketSans";
  src: url("/assets/fonts/GmarketSansTTFMedium.ttf") format("truetype");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GmarketSans";
  src: url("/assets/fonts/GmarketSansTTFBold.ttf") format("truetype");
  font-weight: 700 950;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #000435;
  --navy-light: #10164f;
  --orange: #ff5500;
  --orange-dark: #d94700;
  --orange-soft: #fff0e8;
  --cream: #fff8f4;
  --paper: #ffffff;
  --ink: #1c2030;
  --muted: #676c78;
  --line: #e5e6eb;
  --success: #14825d;
  --danger: #c53d32;
  --shadow: 0 20px 55px rgba(0, 4, 53, 0.12);
  --font: "GmarketSans", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
}

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

html {
  min-height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background: #f7f7fa;
  font-family: var(--font);
  overflow-x: hidden;
  word-break: keep-all;
}

body,
button,
input {
  font: inherit;
}

button,
input {
  border-radius: 0;
}

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

button {
  cursor: pointer;
}

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

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 50%;
  z-index: 999;
  padding: 12px 18px;
  color: #fff;
  background: var(--navy);
  border-radius: 9px;
  font-size: 13px;
  font-weight: 800;
  transform: translate(-50%, -150%);
  transition: transform 0.18s ease;
}

.skip-link:focus {
  transform: translate(-50%, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  min-height: 78px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 4, 53, 0.08);
  backdrop-filter: blur(15px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand img {
  width: auto;
  height: 53px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  color: var(--navy);
  font-size: 17px;
  letter-spacing: -0.04em;
}

.brand-copy small {
  margin-top: 4px;
  color: #8b8f99;
  font-size: 8px;
  font-weight: 700;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #5c616d;
  font-size: 12px;
  font-weight: 700;
}

.header-nav > a:not(.header-cta) {
  position: relative;
  padding: 10px 0;
}

.header-nav > a:not(.header-cta)::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.18s ease;
}

.header-nav > a:hover,
.header-nav > a[aria-current="page"] {
  color: var(--navy);
}

.header-nav > a:hover::after,
.header-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 0 18px;
  color: #fff;
  background: var(--orange);
  border-radius: 11px;
  box-shadow: 0 9px 20px rgba(255, 85, 0, 0.2);
}

.header-cta:hover {
  background: var(--orange-dark);
}

.hero-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 14%, rgba(255, 85, 0, 0.28), transparent 31%),
    radial-gradient(circle at 15% 100%, rgba(54, 69, 161, 0.42), transparent 34%),
    linear-gradient(135deg, #00021f 0%, var(--navy) 52%, #10164f 100%);
}

.hero-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  align-items: center;
  gap: 46px;
  width: min(1180px, calc(100% - 40px));
  min-height: 600px;
  margin: 0 auto;
  padding: 72px 0 70px;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #ffaf87;
}

.eyebrow span {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--orange);
}

.hero-copy h1 {
  margin: 19px 0 0;
  font-size: clamp(48px, 5.4vw, 72px);
  line-height: 1.09;
  letter-spacing: -0.055em;
}

.hero-copy h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero-lead {
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.85;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 5px 11px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
}

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

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 57px;
  padding: 0 23px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 900;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.primary-button {
  justify-content: space-between;
  gap: 30px;
  min-width: 230px;
  background: var(--orange);
  box-shadow: 0 14px 32px rgba(255, 85, 0, 0.28);
}

.primary-button span {
  font-size: 21px;
  font-weight: 300;
}

.secondary-button {
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.primary-button:hover {
  background: #ff6a20;
  box-shadow: 0 17px 35px rgba(255, 85, 0, 0.34);
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-showcase {
  position: relative;
  min-height: 455px;
}

.showcase-glow {
  position: absolute;
  top: 48%;
  left: 50%;
  width: 430px;
  height: 430px;
  background: rgba(255, 85, 0, 0.18);
  border-radius: 50%;
  filter: blur(4px);
  transform: translate(-50%, -50%);
}

.showcase-character {
  position: absolute;
  top: 4px;
  left: 0;
  z-index: 4;
  width: 115px;
  filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.2));
}

.showcase-phones {
  position: absolute;
  inset: 0;
}

.showcase-phones img {
  position: absolute;
  top: 50%;
  width: 196px;
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 24px 22px rgba(0, 0, 15, 0.36));
}

.showcase-phones img:nth-child(1) {
  left: 3%;
  z-index: 1;
  transform: translateY(-43%) rotate(-4deg);
}

.showcase-phones img:nth-child(2) {
  left: 34%;
  z-index: 3;
  width: 215px;
  transform: translateY(-52%);
}

.showcase-phones img:nth-child(3) {
  right: 0;
  z-index: 2;
  transform: translateY(-43%) rotate(4deg);
}

.product-section {
  padding: 74px 0 90px;
  background: #f5f5f8;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  align-items: start;
  gap: 34px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.product-content {
  min-width: 0;
}

.service-summary,
.details-block {
  background: var(--paper);
  border: 1px solid rgba(0, 4, 53, 0.08);
  border-radius: 24px;
  box-shadow: 0 12px 36px rgba(0, 4, 53, 0.055);
}

.service-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.94fr);
  gap: 42px;
  padding: 42px;
}

.service-summary h2,
.tab-panel h2,
.subscribe-heading h2,
.notice-heading h2 {
  margin: 11px 0 0;
  color: var(--navy);
  font-size: 30px;
  line-height: 1.35;
  letter-spacing: -0.045em;
}

.service-summary > div > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

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

.summary-grid div {
  min-height: 96px;
  padding: 17px;
  background: #f7f7fa;
  border: 1px solid #ededf2;
  border-radius: 14px;
}

.summary-grid dt {
  color: #9396a0;
  font-size: 10px;
}

.summary-grid dd {
  margin: 9px 0 0;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
}

.details-block {
  margin-top: 28px;
  overflow: hidden;
}

.detail-tabs {
  position: sticky;
  top: 78px;
  z-index: 15;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.detail-tab {
  position: relative;
  min-height: 65px;
  padding: 0 7px;
  color: #8a8e98;
  background: transparent;
  border: 0;
  font-size: 12px;
  font-weight: 800;
}

.detail-tab::after {
  position: absolute;
  right: 14px;
  bottom: -1px;
  left: 14px;
  height: 3px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.18s ease;
}

.detail-tab:hover,
.detail-tab.is-active {
  color: var(--navy);
}

.detail-tab.is-active::after {
  transform: scaleX(1);
}

.detail-tab:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: -4px;
}

.tab-panel {
  min-height: 560px;
  padding: 46px 44px 50px;
}

.tab-panel[hidden] {
  display: none;
}

.panel-lead {
  max-width: 680px;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
}

.info-grid div {
  min-height: 120px;
  padding: 24px;
  background: #f8f8fb;
  border-radius: 16px;
}

.info-grid dt {
  margin-bottom: 9px;
  color: #858995;
  font-size: 12px;
  font-weight: 700;
}

.info-grid dd {
  margin: 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
}

.risk-note {
  margin-top: 28px;
  padding: 24px 26px;
  background: var(--orange-soft);
  border-left: 4px solid var(--orange);
  border-radius: 0 14px 14px 0;
}

.risk-note strong {
  color: var(--orange-dark);
  font-size: 14px;
}

.risk-note p {
  margin: 7px 0 0;
  color: #5f514b;
  font-size: 13px;
  line-height: 1.8;
}

.process-list {
  display: grid;
  gap: 0;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  padding: 0 0 30px;
}

.process-list li:not(:last-child)::after {
  position: absolute;
  top: 47px;
  bottom: 7px;
  left: 25px;
  width: 1px;
  content: "";
  background: #e1e3e9;
}

.process-list li > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: #fff;
  background: var(--navy);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.process-list strong {
  display: block;
  margin: 2px 0 5px;
  color: var(--navy);
  font-size: 17px;
}

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

.simple-notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 8px;
  padding: 20px 22px;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid rgba(255, 85, 0, 0.18);
  border-radius: 14px;
}

.simple-notice p {
  margin: 0;
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 800;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.benefit-grid article {
  min-width: 0;
  padding: 24px 20px;
  background: #f8f8fa;
  border: 1px solid #ededf1;
  border-radius: 16px;
}

.benefit-grid img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.benefit-grid strong {
  display: block;
  margin-top: 16px;
  color: var(--navy);
  font-size: 14px;
}

.benefit-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.license-note {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  padding: 21px 24px;
  background: var(--orange-soft);
  border-radius: 16px;
}

.license-note img {
  width: 108px;
}

.license-note strong {
  color: var(--navy);
  font-size: 13px;
}

.license-note p {
  margin: 7px 0 0;
  color: #6b625f;
  font-size: 11px;
  line-height: 1.65;
}

.content-list {
  display: grid;
  gap: 13px;
  margin-top: 30px;
}

.content-list article {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #f8f8fa;
  border-radius: 15px;
}

.content-list article > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #fff;
  background: var(--navy);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.content-list strong {
  color: var(--navy);
  font-size: 14px;
}

.content-list p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.screen-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: 14px;
  max-height: 440px;
  margin-top: 30px;
  padding: 28px 25px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 100%, rgba(255, 85, 0, 0.24), transparent 48%),
    var(--navy);
  border-radius: 18px;
}

.screen-gallery img {
  width: 100%;
  max-height: 410px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 15px 12px rgba(0, 0, 0, 0.28));
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.review-grid img {
  width: 100%;
  border: 1px solid #ededf1;
  border-radius: 15px;
  box-shadow: 0 8px 22px rgba(0, 4, 53, 0.06);
}

.review-caption {
  margin: 19px 0 0;
  color: #90949e;
  font-size: 10px;
  text-align: right;
}

.guide-list {
  display: grid;
  gap: 12px;
  margin: 29px 0 0;
  padding: 0;
  list-style: none;
}

.guide-list li {
  position: relative;
  padding: 19px 20px 19px 55px;
  background: #f8f8fa;
  border: 1px solid #ededf1;
  border-radius: 14px;
}

.guide-list li::before {
  position: absolute;
  top: 19px;
  left: 20px;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  color: #fff;
  content: "✓";
  background: var(--orange);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.guide-list strong {
  color: var(--navy);
  font-size: 13px;
}

.guide-list p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.refund-copy {
  margin-top: 32px;
  padding: 28px;
  color: #505662;
  background: #f8f8fb;
  border-radius: 16px;
}

.refund-copy p {
  margin: 0;
  font-size: 13px;
  line-height: 1.85;
}

.refund-copy p + p {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.contact-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin-top: 22px;
  padding: 20px 22px;
  color: var(--navy);
  background: var(--orange-soft);
  border-radius: 14px;
  font-size: 13px;
}

.contact-box span {
  margin-right: auto;
  font-weight: 800;
}

.contact-box a {
  color: var(--orange-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.checkout-column {
  position: relative;
}

.checkout-card {
  position: sticky;
  top: 104px;
  padding: 30px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(0, 4, 53, 0.09);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.checkout-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--orange), #ff9a45);
}

.checkout-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 21px;
}

.checkout-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.monthly-badge {
  color: #fff;
  background: var(--navy);
}

.choice-badge {
  color: var(--orange-dark);
  background: var(--orange-soft);
}

.checkout-label {
  margin: 0 0 6px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
}

.checkout-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: 25px;
  letter-spacing: -0.04em;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 23px;
  color: var(--navy);
}

.price-row small {
  margin-right: 2px;
  font-size: 12px;
  font-weight: 800;
}

.price-row strong {
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.price-row span {
  font-size: 14px;
  font-weight: 800;
}

.price-description {
  margin: 9px 0 23px;
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 800;
}

.checkout-info {
  margin: 0;
  padding: 5px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.checkout-info div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
  font-size: 11px;
}

.checkout-info dt {
  color: #8b8f99;
}

.checkout-info dd {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
  text-align: right;
}

.primary-pay-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 59px;
  margin-top: 23px;
  padding: 0 21px;
  color: #fff;
  background: var(--orange);
  border-radius: 14px;
  box-shadow: 0 13px 27px rgba(255, 85, 0, 0.23);
  font-size: 14px;
  font-weight: 900;
  transition: transform 0.18s ease, background 0.18s ease;
}

.primary-pay-button:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.primary-pay-button span:last-child {
  font-size: 22px;
  font-weight: 300;
}

.secure-note {
  margin: 14px 0 0;
  color: #7d828d;
  font-size: 10px;
  text-align: center;
}

.secure-note span {
  margin-right: 4px;
  color: var(--success);
  font-size: 7px;
}

.checkout-risk {
  margin: 18px 0 0;
  padding-top: 16px;
  color: #91949d;
  border-top: 1px dashed #d9dbe1;
  font-size: 9px;
  line-height: 1.7;
  text-align: center;
}

.subscribe-section {
  padding: 90px 0 96px;
  background: var(--paper);
}

.subscribe-inner {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
}

.subscribe-heading,
.notice-heading {
  text-align: center;
}

.subscribe-heading > p:last-child,
.notice-heading > p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.checkout-form {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: start;
  gap: 24px;
  margin-top: 38px;
}

.subscription-options {
  display: grid;
  gap: 12px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.subscription-options > input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.option-box {
  position: relative;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 112px;
  padding: 21px 22px;
  background: #fff;
  border: 1px solid #dfe1e7;
  border-radius: 18px;
  cursor: pointer;
  transition: border 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.option-box:hover {
  border-color: #b9bdc7;
  transform: translateY(-2px);
}

.subscription-options > input:focus-visible + .option-box {
  outline: 3px solid rgba(255, 85, 0, 0.24);
  outline-offset: 2px;
}

.subscription-options > input:checked + .option-box {
  border: 2px solid var(--orange);
  box-shadow: 0 14px 30px rgba(255, 85, 0, 0.12);
}

.option-featured::before {
  position: absolute;
  top: -10px;
  right: 18px;
  padding: 5px 9px;
  color: #fff;
  content: "통합 상품";
  background: var(--navy);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 900;
}

.option-check {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 2px solid #c9ccd4;
  border-radius: 50%;
}

.subscription-options > input:checked + .option-box .option-check {
  border-color: var(--orange);
}

.subscription-options > input:checked + .option-box .option-check::after {
  width: 12px;
  height: 12px;
  content: "";
  background: var(--orange);
  border-radius: 50%;
}

.option-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.option-name {
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.option-name b {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  margin-left: 5px;
  padding: 2px 7px;
  color: #fff;
  background: var(--orange);
  border-radius: 6px;
  font-size: 9px;
  vertical-align: 3px;
}

.option-description {
  margin-top: 6px;
  color: #858995;
  font-size: 10px;
}

.option-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  color: var(--navy);
  white-space: nowrap;
}

.option-price small {
  font-size: 10px;
  font-weight: 800;
}

.option-price strong {
  font-size: 25px;
  letter-spacing: -0.04em;
}

.option-price span {
  font-size: 11px;
  font-weight: 800;
}

.payment-panel {
  padding: 26px;
  background: #f7f7fa;
  border: 1px solid #e4e5ea;
  border-radius: 20px;
}

.payment-summary {
  margin: 0;
  padding-bottom: 17px;
  border-bottom: 1px solid #dedfe4;
}

.payment-summary div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
  font-size: 11px;
}

.payment-summary span {
  color: #888c96;
}

.payment-summary strong {
  color: var(--navy);
  font-weight: 800;
  text-align: right;
}

.agree {
  margin-top: 19px;
}

.all-agree {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding-bottom: 14px;
  color: var(--navy);
  border-bottom: 1px solid #dedfe4;
  cursor: pointer;
  font-size: 12px;
}

.agree input,
.card-agreement input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--orange);
}

.agree ul {
  display: grid;
  gap: 10px;
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}

.agree li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  color: #5e636e;
  font-size: 10px;
}

.agree li label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}

.agree li a {
  flex: 0 0 auto;
  color: var(--orange-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-error {
  min-height: 20px;
  margin: 15px 0 0;
  color: var(--danger);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.55;
  white-space: pre-line;
}

.join-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 61px;
  padding: 0 21px;
  color: #fff;
  background: var(--orange);
  border: 0;
  border-radius: 14px;
  box-shadow: 0 13px 27px rgba(255, 85, 0, 0.22);
  font-size: 13px;
  font-weight: 800;
}

.join-button:hover {
  background: var(--orange-dark);
}

.join-button b {
  font-weight: 950;
}

.join-button > span:last-child {
  font-size: 22px;
  font-weight: 300;
}

.renewal-note {
  margin: 13px 0 0;
  color: #858995;
  font-size: 9px;
  line-height: 1.65;
  text-align: center;
}

.notice-section {
  padding: 86px 0 92px;
  background: var(--cream);
}

.notice-inner {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
}

.notice-box {
  margin-top: 35px;
  padding: 27px 30px;
  color: #fff;
  background: var(--navy);
  border-radius: 18px;
}

.notice-box > strong {
  font-size: 15px;
}

.notice-box ul {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.7;
}

.policy-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.policy-list details {
  padding: 0 23px;
  background: #fff;
  border: 1px solid #e9ddd6;
  border-radius: 14px;
}

.policy-list summary {
  position: relative;
  padding: 20px 30px 20px 0;
  color: var(--navy);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  list-style: none;
}

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

.policy-list summary::after {
  position: absolute;
  top: 50%;
  right: 2px;
  color: var(--orange);
  content: "+";
  font-size: 22px;
  font-weight: 400;
  transform: translateY(-50%);
}

.policy-list details[open] summary::after {
  content: "−";
}

.policy-list p {
  margin: 0;
  padding: 0 0 21px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.site-footer {
  padding: 54px 0 62px;
  color: rgba(255, 255, 255, 0.64);
  background: #00021f;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: #fff;
}

.footer-brand img {
  width: auto;
  height: 61px;
}

.footer-brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
}

.footer-brand strong {
  font-size: 18px;
  letter-spacing: -0.04em;
}

.footer-brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 8px;
}

.footer-company p {
  margin: 0;
  font-size: 10px;
  line-height: 1.9;
}

.footer-company p + p {
  margin-top: 11px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 11px 22px;
  max-width: 480px;
}

.footer-links a {
  padding: 4px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 700;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mobile-purchase-bar {
  display: none;
}

dialog {
  color: var(--ink);
  font-family: var(--font);
}

dialog::backdrop {
  background: rgba(0, 2, 30, 0.72);
  backdrop-filter: blur(5px);
}

.card-dialog {
  width: min(620px, calc(100% - 28px));
  max-height: calc(100dvh - 28px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 0;
  border-radius: 23px;
  box-shadow: 0 30px 110px rgba(0, 0, 25, 0.34);
}

.card-dialog[open],
.success-dialog[open] {
  animation: dialog-in 0.22s ease-out;
}

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

.card-form {
  display: flex;
  flex-direction: column;
  max-height: calc(100dvh - 28px);
}

.dialog-header {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 26px 20px;
  color: #fff;
  background:
    radial-gradient(circle at 75% -30%, rgba(255, 85, 0, 0.55), transparent 42%),
    var(--navy);
}

.dialog-header p {
  margin: 0 0 5px;
  color: #ffb18a;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.dialog-header h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
}

.dialog-close {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  padding: 0 0 3px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  font-size: 25px;
  font-weight: 300;
}

.dialog-close:hover {
  background: rgba(255, 255, 255, 0.18);
}

.dialog-scroll {
  flex: 1 1 auto;
  padding: 23px 26px 27px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.dialog-description {
  margin: 0 0 20px;
  padding: 14px 16px;
  color: #5d626d;
  background: var(--orange-soft);
  border-radius: 11px;
  font-size: 11px;
  line-height: 1.65;
}

.dialog-description strong {
  color: var(--orange-dark);
}

.card-inputs,
.card-agreement {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.card-inputs legend,
.card-agreement legend {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.card-inputs legend span,
.card-agreement legend span {
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
  font-size: 9px;
}

.card-inputs {
  display: grid;
  gap: 8px;
}

.card-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  min-height: 55px;
  padding: 0 13px;
  background: #fff;
  border: 1px solid #dcdee4;
  border-radius: 10px;
}

.card-row:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 85, 0, 0.1);
}

.card-row > span:first-child {
  color: #343946;
  font-size: 11px;
  font-weight: 800;
}

.card-row input {
  width: 100%;
  min-width: 0;
  height: 42px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 14px;
  font-weight: 700;
}

.card-row input::placeholder {
  color: #a5a8b0;
  font-weight: 400;
}

.card-number-fields,
.expiry-fields,
.password-field {
  display: flex;
  align-items: center;
  gap: 7px;
}

.card-number-fields input {
  flex: 1 1 0;
  min-width: 0;
  padding: 0 1px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-variant-numeric: tabular-nums;
}

.expiry-fields input {
  flex: 0 0 68px;
  width: 68px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-variant-numeric: tabular-nums;
}

.expiry-fields b,
.password-field b {
  color: #9699a2;
  font-size: 16px;
}

.password-field input {
  flex: 0 1 95px;
  max-width: 95px;
}

.password-field.has-card-password {
  gap: 2px;
}

.password-field.has-card-password input {
  flex-basis: 34px;
  max-width: 34px;
  text-align: right;
}

.password-field b {
  letter-spacing: 0;
}

.card-info {
  margin: 9px 0 12px;
  color: #666b76;
  font-size: 10px;
}

.card-pay-notice {
  margin: 0;
  padding: 13px 15px;
  color: var(--orange-dark);
  background: var(--orange-soft);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 900;
}

.card-agreement {
  display: grid;
  gap: 9px;
  margin-top: 22px;
  padding-top: 21px;
  border-top: 1px solid var(--line);
}

.card-agreement legend {
  margin-bottom: 4px;
}

.card-agreement label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #565b66;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.55;
  cursor: pointer;
}

.card-agreement .card-agree-all {
  padding: 13px 14px;
  color: var(--navy);
  background: #f5f5f8;
  border-radius: 10px;
  font-size: 11px;
}

.card-dialog-actions {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 10px;
  padding: 15px 26px max(15px, env(safe-area-inset-bottom));
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(0, 4, 53, 0.05);
}

.card-dialog-actions button {
  min-height: 52px;
  color: var(--navy);
  background: #ececf0;
  border: 0;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 900;
}

.card-dialog-actions button[type="submit"] {
  color: #fff;
  background: var(--orange);
}

.card-dialog-actions button[type="submit"]:hover:not(:disabled) {
  background: var(--orange-dark);
}

.card-dialog-actions button:disabled {
  color: #9b9ea7;
  background: #e3e4e8;
  cursor: wait;
}

.success-dialog {
  width: min(470px, calc(100% - 28px));
  margin: auto;
  padding: 40px 34px 32px;
  text-align: center;
  background: #fff;
  border: 0;
  border-radius: 23px;
  box-shadow: 0 30px 110px rgba(0, 0, 25, 0.34);
}

.success-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 17px;
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(255, 85, 0, 0.25);
  font-size: 27px;
  font-weight: 900;
}

.success-kicker {
  margin: 0 0 5px;
  color: var(--orange);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.success-dialog h2 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
}

.success-message {
  margin: 11px 0 22px;
  color: var(--muted);
  font-size: 12px;
}

.success-details {
  margin: 0;
  padding: 14px 17px;
  background: #f7f7fa;
  border-radius: 12px;
}

.success-details div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 11px;
  padding: 7px 0;
  font-size: 11px;
}

.success-details dt {
  color: #898d96;
  text-align: left;
}

.success-details dd {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
  text-align: right;
}

.success-actions button {
  width: 100%;
  min-height: 50px;
  margin-top: 20px;
  color: #fff;
  background: var(--navy);
  border: 0;
  border-radius: 11px;
  font-weight: 900;
}

@media (max-width: 1060px) {
  .hero-inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  }

  .product-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
  }

  .service-summary {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  body {
    padding-bottom: 82px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    padding-bottom: 35px;
  }

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

  .hero-showcase {
    width: min(600px, 100%);
    min-height: 465px;
    margin: 0 auto;
  }

  .product-layout {
    grid-template-columns: minmax(0, 1fr);
    width: min(780px, calc(100% - 36px));
  }

  .checkout-column {
    display: none;
  }

  .mobile-purchase-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(160px, 1.25fr);
    gap: 12px;
    min-height: 74px;
    padding: 9px max(16px, env(safe-area-inset-right)) max(9px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(0, 4, 53, 0.1);
    box-shadow: 0 -10px 30px rgba(0, 4, 53, 0.1);
    backdrop-filter: blur(15px);
  }

  .mobile-purchase-bar > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .mobile-purchase-bar span {
    color: var(--orange-dark);
    font-size: 9px;
    font-weight: 800;
  }

  .mobile-purchase-bar strong {
    color: var(--navy);
    font-size: 16px;
  }

  .mobile-purchase-bar a {
    display: grid;
    place-items: center;
    min-height: 52px;
    color: #fff;
    background: var(--orange);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 900;
  }

  .checkout-form {
    grid-template-columns: minmax(0, 1fr);
    max-width: 650px;
    margin-right: auto;
    margin-left: auto;
  }

  .footer-inner {
    padding-bottom: 18px;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 67px;
  }

  .site-header,
  .header-inner {
    min-height: 64px;
  }

  .header-inner,
  .hero-inner,
  .footer-inner {
    width: min(100% - 30px, 1180px);
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    height: 42px;
  }

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

  .brand-copy small {
    font-size: 7px;
  }

  .header-nav {
    gap: 9px;
  }

  .header-nav > a:not(.header-cta) {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 15px;
    font-size: 11px;
  }

  .hero-inner {
    gap: 26px;
    min-height: 0;
    padding: 47px 0 20px;
  }

  .hero-copy h1 {
    margin-top: 16px;
    font-size: clamp(40px, 12vw, 55px);
  }

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

  .hero-badges {
    margin-top: 19px;
  }

  .hero-badges span {
    min-height: 29px;
    font-size: 9px;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .primary-button,
  .secondary-button {
    min-height: 53px;
  }

  .hero-showcase {
    width: 390px;
    max-width: 100%;
    min-height: 360px;
  }

  .showcase-glow {
    width: 310px;
    height: 310px;
  }

  .showcase-character {
    top: 10px;
    width: 78px;
  }

  .showcase-phones img {
    width: 132px;
    max-height: 340px;
  }

  .showcase-phones img:nth-child(1) {
    left: 1%;
  }

  .showcase-phones img:nth-child(2) {
    left: 32%;
    width: 148px;
  }

  .showcase-phones img:nth-child(3) {
    right: 0;
  }

  .product-section {
    padding: 28px 0 63px;
  }

  .product-layout {
    width: calc(100% - 24px);
  }

  .service-summary,
  .details-block {
    border-radius: 18px;
  }

  .service-summary {
    gap: 26px;
    padding: 28px 21px;
  }

  .service-summary h2,
  .tab-panel h2,
  .subscribe-heading h2,
  .notice-heading h2 {
    font-size: 26px;
  }

  .service-summary > div > p:last-child {
    font-size: 12px;
  }

  .summary-grid {
    gap: 8px;
  }

  .summary-grid div {
    min-height: 89px;
    padding: 15px;
  }

  .details-block {
    margin-top: 22px;
  }

  .detail-tabs {
    top: 64px;
    overflow-x: auto;
  }

  .detail-tab {
    min-width: 88px;
    min-height: 57px;
    font-size: 12px;
  }

  .detail-tab::after {
    right: 7px;
    left: 7px;
  }

  .tab-panel {
    min-height: 0;
    padding: 31px 20px 35px;
  }

  .panel-lead {
    font-size: 12px;
    line-height: 1.8;
  }

  .info-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 9px;
    margin-top: 25px;
  }

  .info-grid div {
    min-height: 0;
    padding: 18px;
  }

  .risk-note {
    padding: 19px;
  }

  .process-list {
    margin-top: 28px;
  }

  .process-list li {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
  }

  .process-list li > span {
    width: 44px;
    height: 44px;
  }

  .process-list li:not(:last-child)::after {
    top: 41px;
    left: 21px;
  }

  .process-list strong {
    font-size: 15px;
  }

  .process-list p {
    font-size: 12px;
  }

  .simple-notice {
    display: block;
  }

  .simple-notice p {
    margin-top: 5px;
  }

  .benefit-grid {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 25px;
  }

  .benefit-grid article {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    align-items: center;
    gap: 4px 15px;
    padding: 18px;
  }

  .benefit-grid img {
    grid-row: 1 / span 2;
    width: 50px;
    height: 50px;
  }

  .benefit-grid strong {
    margin-top: 0;
  }

  .benefit-grid p {
    margin-top: 2px;
  }

  .license-note {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    padding: 19px;
  }

  .license-note img {
    width: 100px;
  }

  .content-list article {
    grid-template-columns: 43px minmax(0, 1fr);
    gap: 13px;
    padding: 16px;
  }

  .content-list article > span {
    width: 41px;
    height: 41px;
  }

  .screen-gallery {
    gap: 7px;
    max-height: 330px;
    padding: 20px 10px 0;
  }

  .review-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .review-caption {
    text-align: left;
  }

  .guide-list li {
    padding: 18px 16px 18px 49px;
  }

  .guide-list li::before {
    top: 18px;
    left: 16px;
  }

  .refund-copy {
    padding: 19px;
    font-size: 13px;
  }

  .contact-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .subscribe-section,
  .notice-section {
    padding: 67px 0 70px;
  }

  .subscribe-inner,
  .notice-inner {
    width: calc(100% - 24px);
  }

  .subscribe-heading,
  .notice-heading {
    padding: 0 9px;
  }

  .subscribe-heading > p:last-child,
  .notice-heading > p:last-child {
    font-size: 11px;
  }

  .checkout-form {
    gap: 17px;
    margin-top: 29px;
  }

  .option-box {
    grid-template-columns: 24px minmax(0, 1fr) auto;
    gap: 11px;
    min-height: 101px;
    padding: 18px 16px;
    border-radius: 15px;
  }

  .option-name {
    font-size: 16px;
  }

  .option-description {
    max-width: 145px;
    font-size: 9px;
    line-height: 1.45;
  }

  .option-price strong {
    font-size: 21px;
  }

  .payment-panel {
    padding: 21px 17px;
    border-radius: 17px;
  }

  .notice-box {
    padding: 23px 20px;
  }

  .policy-list details {
    padding: 0 19px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .card-dialog {
    width: 100%;
    max-width: none;
    max-height: 96dvh;
    margin: auto 0 0;
    border-radius: 21px 21px 0 0;
  }

  .card-form {
    max-height: 96dvh;
  }

  .dialog-header {
    padding: 19px 17px 16px;
  }

  .dialog-header h2 {
    font-size: 17px;
  }

  .dialog-close {
    width: 37px;
    height: 37px;
  }

  .dialog-scroll {
    padding: 19px 16px 24px;
  }

  .card-row {
    grid-template-columns: 78px minmax(0, 1fr);
    padding: 0 10px;
  }

  .card-row > span:first-child {
    font-size: 10px;
  }

  .card-number-fields {
    gap: 4px;
  }

  .card-number-fields input {
    font-size: 13px;
  }

  .expiry-fields input {
    flex-basis: 58px;
    width: 58px;
  }

  .card-dialog-actions {
    padding: 12px 16px max(12px, env(safe-area-inset-bottom));
  }

  .success-dialog {
    padding: 35px 22px 26px;
  }
}

@media (max-width: 430px) {
  .hero-actions {
    display: grid;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .hero-showcase {
    width: 350px;
    min-height: 335px;
  }

  .showcase-phones img {
    width: 118px;
  }

  .showcase-phones img:nth-child(2) {
    width: 135px;
  }

  .summary-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .summary-grid div {
    min-height: 0;
  }

  .option-box {
    grid-template-columns: 22px minmax(0, 1fr);
  }

  .option-price {
    grid-column: 2;
    margin-top: 2px;
  }

  .option-description {
    max-width: none;
  }

  .payment-summary div {
    font-size: 10px;
  }

  .mobile-purchase-bar {
    grid-template-columns: minmax(120px, 0.8fr) minmax(145px, 1.2fr);
  }

  .mobile-purchase-bar strong {
    font-size: 14px;
  }

  .card-row {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .card-number-fields input {
    font-size: 12px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* 투자똑톡 단일 통합구독 페이지 */
.subscription-poster {
  position: relative;
  isolation: isolate;
  min-height: 610px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 83% 28%, rgba(255, 165, 111, 0.3), transparent 24%),
    radial-gradient(circle at 16% 86%, rgba(255, 85, 0, 0.2), transparent 31%),
    linear-gradient(145deg, #fff7f0 0%, #ffd9c2 41%, #ff915f 100%);
  border-radius: 14px;
}

.subscription-poster::before,
.subscription-poster::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(0, 4, 53, 0.13);
  border-radius: 50%;
}

.subscription-poster::before {
  top: -110px;
  right: -120px;
  width: 410px;
  height: 410px;
}

.subscription-poster::after {
  right: -30px;
  bottom: -180px;
  width: 440px;
  height: 440px;
  box-shadow:
    0 0 0 42px rgba(255, 255, 255, 0.14),
    0 0 0 84px rgba(0, 4, 53, 0.035);
}

.poster-copy {
  position: relative;
  z-index: 2;
  max-width: 82%;
  padding: clamp(38px, 7vw, 72px);
  color: var(--navy);
}

.poster-copy p {
  margin: 0 0 18px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.poster-copy h2 {
  margin: 0;
  font-size: clamp(35px, 6vw, 60px);
  line-height: 1.2;
  letter-spacing: -0.055em;
}

.poster-copy h2 em {
  color: var(--orange-dark);
  font-style: normal;
}

.poster-copy > span {
  display: block;
  margin-top: 22px;
  color: rgba(0, 4, 53, 0.68);
  font-size: clamp(13px, 2vw, 17px);
  font-weight: 700;
}

.subscription-poster .poster-copy + img {
  position: absolute;
  right: clamp(20px, 5vw, 56px);
  bottom: 72px;
  z-index: 1;
  width: min(47%, 350px);
  height: auto;
  filter: drop-shadow(0 22px 28px rgba(0, 4, 53, 0.18));
}

.poster-topics {
  position: absolute;
  right: 32px;
  bottom: 26px;
  left: 32px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.poster-topics span {
  padding: 8px 13px;
  color: #fff;
  background: rgba(0, 4, 53, 0.88);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.price-row small {
  margin-right: 1px;
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 900;
}

.payment-fallback {
  position: fixed;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.payment-dialog .card-number-fields {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.payment-dialog .card-number-fields input {
  min-width: 0;
  padding: 0 7px;
  text-align: center;
  letter-spacing: 0.04em;
}

.payment-dialog .password-field input,
.payment-dialog .password-field.has-card-password input {
  flex: initial;
  width: 100%;
  max-width: none;
  text-align: left;
}

.compatibility-checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  opacity: 0;
  pointer-events: none;
}

.payment-dialog .card-info {
  margin: 16px 0 0;
  color: #888c96;
  font-size: 10px;
}

.payment-dialog .dialog-actions {
  grid-template-columns: minmax(132px, 0.58fr) minmax(290px, 1.42fr);
}

.payment-dialog .dialog-button-group {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  flex-direction: unset;
  gap: 9px;
}

.payment-dialog .dialog-actions .dialog-cancel {
  padding: 0 12px;
  color: var(--navy);
  background: #f0f1f5;
}

.payment-dialog .dialog-actions .dialog-cancel:hover {
  background: #e5e7ed;
}

.payment-dialog .dialog-actions #cardSubmitButton {
  min-width: 0;
}

@media (max-width: 680px) {
  .subscription-poster {
    min-height: 480px;
  }

  .poster-copy {
    max-width: 100%;
    padding: 34px 28px;
  }

  .poster-copy p {
    margin-bottom: 12px;
    font-size: 9px;
  }

  .poster-copy h2 {
    font-size: clamp(31px, 10vw, 44px);
  }

  .poster-copy > span {
    max-width: 72%;
    margin-top: 14px;
    font-size: 12px;
  }

  .subscription-poster .poster-copy + img {
    right: 12px;
    bottom: 63px;
    width: min(53%, 260px);
  }

  .poster-topics {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .poster-topics span {
    padding: 6px 9px;
    font-size: 9px;
  }

  .payment-dialog .card-number-fields {
    gap: 5px;
  }

  .payment-dialog .card-number-fields input {
    padding: 0 3px;
    font-size: 12px;
  }

  .payment-dialog .dialog-actions {
    grid-template-columns: minmax(100px, 0.5fr) minmax(205px, 1.5fr);
  }

  .payment-dialog .dialog-button-group {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 6px;
  }

  .payment-dialog .dialog-actions .dialog-cancel {
    padding: 0 7px;
  }

  .payment-dialog .dialog-actions #cardSubmitButton {
    padding: 0 8px;
    font-size: 12px;
  }
}
