@import url("design-tokens.css");
/* 2026-05-20: Pretendard Variable — 단일 가변 폰트.
   기존 7개 weight 파일 대체. font-weight 100~900 자유.
   @font-face 선언은 design-tokens.css 가 담당. */

:root {
  color-scheme: light;
  /* 2026-05-20: C1 디자인 시스템 일원화 — 파란색 → 녹색 톤 alias 전환.
     실제 색 값은 design-tokens.css 가 단일 소스. */
  --bg: var(--surface-0);
  --bg-soft: var(--surface-1);
  --ivory: rgba(255, 252, 248, 0.82);
  --ivory-strong: #fffdf9;
  --blush: var(--primary-soft);
  --sage: var(--primary-soft);
  --beige: var(--primary-soft);
  --gold: var(--primary);
  --gold-dark: var(--primary-deep);
  --stone: #86868b;
  --text: #1d1d1f;
  --muted: #6e6e73;
  --line: rgba(31, 26, 23, 0.06);
  --line-strong: rgba(31, 26, 23, 0.1);
  --shadow: 0 24px 64px rgba(19, 17, 15, 0.04);
  --shadow-soft: 0 8px 24px rgba(19, 17, 15, 0.035);
  --radius-xl: 42px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --content-width: min(1280px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

main section[id] {
  scroll-margin-top: 110px;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: "Pretendard", sans-serif;
  color: var(--text);
  line-height: 1.8;
  letter-spacing: 0.012em;
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
  background: linear-gradient(180deg, #fbfbfd 0%, #f5f5f7 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent 22%);
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(176, 138, 99, 0.42);
  outline-offset: 3px;
}

button,
input,
textarea {
  font: inherit;
}

button {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

/* 2026-05-20: shadcn-style 폼 컨트롤 (Task 4 + KRDS 접근성)
   - 최소 높이 48px (터치 타깃 WCAG)
   - 폰트 크기 1rem 이상 (iOS 자동 zoom 방지)
   - focus 시 transform 제거 (UX 정확성 우선)
   - focus ring 은 --primary (녹색)
*/
input,
textarea,
select {
  width: 100%;
  min-height: var(--control-height, 48px);
  border: 1px solid var(--control-border, rgba(31, 26, 23, 0.14));
  border-radius: var(--control-radius, 12px);
  background: rgba(255, 255, 255, 0.96);
  padding: 12px var(--control-padding-x, 14px);
  color: var(--text);
  font-family: var(--font-sans, "Pretendard", system-ui, sans-serif);
  font-size: 1rem;
  line-height: 1.55;
  letter-spacing: var(--tracking-body, -0.012em);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(31, 26, 23, 0.4);
  font-weight: 400;
}

input:hover,
textarea:hover,
select:hover {
  border-color: var(--control-border-hover, rgba(31, 26, 23, 0.24));
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--control-ring, rgba(8, 98, 67, 0.18));
}

input:disabled,
textarea:disabled,
select:disabled {
  background: rgba(0, 0, 0, 0.03);
  color: rgba(31, 26, 23, 0.4);
  cursor: not-allowed;
}

input[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--status-error, #b34f4f);
}
input[aria-invalid="true"]:focus,
textarea[aria-invalid="true"]:focus {
  box-shadow: 0 0 0 3px rgba(179, 79, 79, 0.18);
}

textarea {
  min-height: 170px;
  resize: vertical;
}

/* 체크박스·라디오 — 녹색 강조 */
input[type="checkbox"],
input[type="radio"] {
  width: auto;
  min-height: auto;
  accent-color: var(--primary);
}

.page-shell {
  width: var(--content-width);
  margin: 0 auto;
  padding: 24px 0 36px;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(31, 26, 23, 0.08);
  box-shadow: 0 14px 32px rgba(19, 17, 15, 0.05);
}

.brand-lockup {
  display: grid;
  gap: 4px;
}

.brand-signature,
.eyebrow,
.service-copy p,
.keyword-row span,
.pillar-number,
.flow-step,
.review-score span,
.review-meta span,
.contact-meta-card span,
.journal-card span {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.brand-signature,
.eyebrow,
.hero-description,
.section-description,
.service-copy span,
.pillar-card p,
.flow-card p,
.review-card p,
.review-meta span,
.contact-point p,
.contact-point-label,
.contact-meta-card span,
.journal-card p,
.site-footer p,
.site-footer span,
.note-card span,
.modal-summary {
  color: var(--muted);
}

.brand-lockup strong {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 26px;
}

.site-nav a {
  color: var(--muted);
  letter-spacing: 0.01em;
  line-height: 1.5;
  font-size: 0.95rem;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}

.header-button,
.auth-button,
.secondary-button,
.filter-chip,
.contact-link,
.tag-row span,
.carousel-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.header-button,
.auth-button,
.primary-button,
.secondary-button,
.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-button:hover,
.auth-button:hover,
.secondary-button:hover,
.contact-link:hover,
.carousel-button:hover,
.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-2px);
}

.primary-button {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(11, 73, 54, 0.22);
}

.primary-button:hover,
.primary-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(8, 98, 67, 0.22);
}

.secondary-button,
.header-button,
.auth-button {
  color: var(--text);
}

.auth-account {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  max-width: 140px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.primary-button.wide {
  width: 100%;
}

.primary-button.is-loading {
  opacity: 0.86;
  cursor: wait;
}

button:disabled,
.primary-button:disabled,
.secondary-button:disabled {
  opacity: 0.62;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.primary-button.is-loading::after {
  content: "";
  width: 14px;
  height: 14px;
  margin-left: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.36);
  border-top-color: rgba(255, 255, 255, 0.96);
  animation: button-spin 0.9s linear infinite;
}

.hero-section,
.trust-band,
.story-section,
.services-section,
.pricing-section,
.flow-section,
.reviews-section,
.faq-section,
.journal-section,
.contact-section {
  padding: 108px 0;
}

.hero-section {
  min-height: max(860px, calc(100svh - 110px));
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  gap: 56px;
  align-items: center;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-top: 0;
}

.trust-band-card {
  display: grid;
  gap: 12px;
  padding: 24px 22px;
  border-radius: 24px;
  border: 1px solid rgba(31, 26, 23, 0.06);
  background: rgba(255, 252, 248, 0.68);
  box-shadow: var(--shadow-soft);
}

.trust-band-card span {
  color: var(--primary-deep);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trust-band-card strong {
  font-size: 1.02rem;
  line-height: 1.56;
  letter-spacing: -0.01em;
}

.trust-band-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.84;
  letter-spacing: 0.008em;
}

.hero-copy {
  display: grid;
  gap: 26px;
  max-width: 660px;
}

.hero-copy h1,
.heading-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(3rem, 6.6vw, 5.4rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 760;
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
  text-wrap: pretty;
}

.hero-description,
.section-description {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.96;
  letter-spacing: 0.012em;
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}

.hero-support {
  margin: -10px 0 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
  letter-spacing: 0.01em;
}

.hero-footnote {
  margin: -6px 0 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.82;
  letter-spacing: 0.01em;
}

.hero-proof-card,
.hero-path-card,
.pricing-compare,
.checkout-progress-card,
.sample-glance-card,
.sample-cta-panel {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(31, 26, 23, 0.06);
  background: rgba(255, 252, 248, 0.74);
  box-shadow: var(--shadow-soft);
}

.hero-proof-card {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.hero-proof-head {
  display: grid;
  gap: 8px;
}

.hero-proof-head strong,
.pricing-compare-head strong,
.sample-glance-card strong {
  font-size: 1.06rem;
  line-height: 1.68;
  letter-spacing: -0.01em;
  word-break: keep-all;
}

.hero-proof-copy,
.hero-path-card p,
.pricing-compare-row span,
.checkout-progress-step p,
.checkout-confidence-grid p,
.sample-glance-card p,
.sample-cta-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.86;
  letter-spacing: 0.01em;
  word-break: keep-all;
}

.hero-proof-list,
.checkout-inline-assurance,
.legal-header-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-proof-list span,
.checkout-inline-assurance span,
.legal-header-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(31, 26, 23, 0.06);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-path-card {
  display: grid;
  gap: 10px;
  padding: 22px 20px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.hero-path-card:hover,
.hero-path-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(184, 142, 102, 0.24);
  box-shadow: 0 16px 32px rgba(56, 41, 29, 0.08);
}

.hero-path-card-soft {
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(247, 241, 234, 0.88));
}

.hero-path-card-featured {
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(242, 232, 219, 0.92));
  border-color: rgba(184, 142, 102, 0.16);
}

.hero-path-card-solid {
  background: linear-gradient(180deg, rgba(247, 243, 236, 0.95), rgba(237, 230, 220, 0.94));
}

.hero-path-label,
.hero-path-card em,
.pricing-compare-row-head span,
.legal-card-index,
.checkout-progress-step span,
.checkout-confidence-grid span,
.sample-glance-card span {
  color: var(--primary-deep);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-style: normal;
}

.hero-path-card strong {
  font-size: 1rem;
  line-height: 1.62;
  letter-spacing: -0.01em;
  word-break: keep-all;
}

.hero-actions,
.tag-row,
.keyword-row,
.filter-row,
.contact-buttons,
.carousel-actions {
  display: flex;
  flex-wrap: wrap;
}

.hero-actions {
  gap: 12px;
}

.tag-row {
  gap: 10px;
}

.tag-row span {
  padding: 10px 14px;
  border-radius: 999px;
}

.hero-stage {
  position: relative;
  min-height: 800px;
}

.stage-wash {
  position: absolute;
  inset: 0 4% 8% 6%;
  border-radius: 54px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.85), transparent 22%),
    radial-gradient(circle at 82% 16%, rgba(194, 204, 191, 0.46), transparent 22%),
    radial-gradient(circle at 74% 74%, rgba(231, 210, 212, 0.62), transparent 24%),
    linear-gradient(150deg, rgba(255, 253, 249, 0.88), rgba(241, 231, 219, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.54), var(--shadow);
}

.stage-photo {
  position: absolute;
  inset: 10% 14% 18% 0;
  overflow: hidden;
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background:
    linear-gradient(150deg, rgba(255, 252, 247, 0.78), rgba(239, 229, 216, 0.82)),
    radial-gradient(circle at 16% 22%, rgba(255, 255, 255, 0.9), transparent 18%);
  box-shadow: var(--shadow);
}

.photo-softlight {
  position: absolute;
  inset: -12% auto auto -10%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.72), transparent 68%);
}

.photo-card {
  position: absolute;
  border: 1px solid rgba(31, 26, 23, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.report-card {
  inset: 11% 10% auto 10%;
  padding: 22px;
  border-radius: 28px;
  display: grid;
  gap: 16px;
}

.document-caption,
.document-header,
.report-summary-grid,
.report-table {
  display: grid;
}

.document-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(31, 26, 23, 0.05);
  background: rgba(248, 242, 235, 0.72);
}

.document-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.document-dots i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(184, 142, 102, 0.34);
}

.document-caption {
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
}

.document-toolbar span,
.document-caption span,
.document-caption em {
  color: var(--primary-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-style: normal;
}

.document-header {
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(31, 26, 23, 0.08);
}

.report-card strong {
  font-size: 1.34rem;
  line-height: 1.52;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.document-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.74;
}

.report-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.report-pill-row span,
.summary-label,
.metrics-head span,
.metrics-legend span,
.metrics-list span,
.report-table-row.report-table-head span {
  color: var(--primary-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.report-pill-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(31, 26, 23, 0.05);
  background: rgba(248, 242, 235, 0.68);
}

.report-summary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.report-summary-grid article {
  display: grid;
  gap: 6px;
  padding: 12px 12px 13px;
  border-radius: 16px;
  background: rgba(248, 241, 233, 0.82);
  border: 1px solid rgba(31, 26, 23, 0.05);
}

.summary-label,
.report-detail-grid p {
  margin: 0;
}

.report-summary-grid article strong {
  font-size: 0.94rem;
  line-height: 1.42;
  letter-spacing: 0.01em;
}

.report-summary-grid article small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.64;
  letter-spacing: 0.01em;
}

.report-table {
  gap: 6px;
}

.report-table-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(31, 26, 23, 0.06);
}

.report-table-row span {
  font-size: 0.88rem;
  letter-spacing: 0.004em;
  color: var(--text);
}

.report-state {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(184, 142, 102, 0.12);
  color: var(--primary-deep);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.report-detail-grid article {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(31, 26, 23, 0.05);
  background: rgba(255, 255, 255, 0.56);
}

.report-detail-grid p {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-lines {
  display: grid;
  gap: 10px;
}

.report-lines span {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(184, 142, 102, 0.34), rgba(184, 142, 102, 0.1));
}

.report-lines-dense {
  gap: 8px;
}

.report-lines span:nth-child(1) {
  width: 92%;
}

.report-lines span:nth-child(2) {
  width: 72%;
}

.report-lines span:nth-child(3) {
  width: 84%;
}

.metrics-card {
  inset: auto 10% 10% auto;
  width: 54%;
  padding: 18px;
  border-radius: 28px;
  display: grid;
  gap: 14px;
}

.metrics-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.metrics-head em {
  color: var(--muted);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metrics-chart {
  position: relative;
  aspect-ratio: 1 / 0.9;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(250, 245, 239, 0.78), rgba(245, 237, 228, 0.96));
  border: 1px solid rgba(31, 26, 23, 0.05);
  overflow: hidden;
}

.metrics-ring,
.metrics-axis,
.metrics-shape {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.metrics-ring {
  border-radius: 50%;
  border: 1px solid rgba(31, 26, 23, 0.08);
}

.metrics-ring-1 {
  width: 68%;
  height: 68%;
}

.metrics-ring-2 {
  width: 42%;
  height: 42%;
}

.metrics-axis {
  width: 1px;
  height: 62%;
  background: rgba(31, 26, 23, 0.08);
  transform-origin: center top;
}

.metrics-axis-1 {
  transform: translate(-50%, -50%) rotate(0deg);
}

.metrics-axis-2 {
  transform: translate(-50%, -50%) rotate(58deg);
}

.metrics-axis-3 {
  transform: translate(-50%, -50%) rotate(-58deg);
}

.metrics-shape {
  width: 54%;
  height: 54%;
  background: rgba(8, 98, 67, 0.12);
  clip-path: polygon(50% 4%, 84% 34%, 70% 86%, 28% 78%, 12% 32%);
  border: 1px solid rgba(176, 138, 99, 0.24);
}

.metrics-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.metrics-legend span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(31, 26, 23, 0.05);
  background: rgba(248, 242, 235, 0.74);
}

.metrics-list {
  display: grid;
  gap: 10px;
}

.metrics-list article {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(250, 245, 239, 0.86);
  position: relative;
  overflow: hidden;
}

.metrics-list article::after {
  content: "";
  display: block;
  height: 4px;
  margin-top: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(176, 138, 99, 0.62), rgba(176, 138, 99, 0.18));
}

.metrics-list article:nth-child(1)::after {
  width: 78%;
}

.metrics-list article:nth-child(2)::after {
  width: 64%;
}

.metrics-list article:nth-child(3)::after {
  width: 72%;
}

.metrics-list span {
  letter-spacing: 0.12em;
}

.metrics-list strong {
  font-size: 0.98rem;
  line-height: 1.62;
  letter-spacing: 0.008em;
  word-break: keep-all;
}

.hero-notes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.note-card {
  position: absolute;
  width: min(250px, 44%);
  padding: 18px 18px 20px;
  border-radius: 26px;
  background: rgba(255, 252, 248, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow-soft);
  pointer-events: auto;
}

.note-card p,
.note-card strong,
.note-card span {
  margin: 0;
}

.note-card p {
  color: var(--primary-deep);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.note-card strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 1rem;
  line-height: 1.72;
  letter-spacing: 0.006em;
  word-break: keep-all;
}

.note-card span {
  line-height: 1.88;
  letter-spacing: 0.01em;
  word-break: keep-all;
}

.note-card-1 {
  top: 2%;
  right: 0;
}

.note-card-2 {
  right: 6%;
  bottom: 2%;
}

.story-section,
.services-section,
.pricing-section,
.flow-section,
.reviews-section,
.faq-section,
.journal-section,
.contact-section {
  border-top: 1px solid rgba(31, 26, 23, 0.08);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 34px;
  align-items: start;
}

.quote-panel,
.pillar-card,
.flow-card,
.pricing-card,
.review-card,
.faq-item,
.journal-card,
.contact-panel,
.contact-meta-card,
.service-card,
.modal-panel {
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 248, 0.72);
  border: 1px solid rgba(31, 26, 23, 0.055);
  box-shadow: var(--shadow-soft);
}

.quote-panel {
  padding: 30px;
  display: grid;
  gap: 20px;
}

.keyword-row {
  gap: 10px;
}

.keyword-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(194, 204, 191, 0.36);
  color: #5f6b59;
}

.quote-panel blockquote {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.92;
  letter-spacing: 0.01em;
  font-weight: 500;
  word-break: keep-all;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 38px;
}

.story-paragraphs {
  display: grid;
  gap: 22px;
}

.story-paragraphs p {
  margin: 0;
  font-size: 1rem;
  line-height: 2.08;
  letter-spacing: 0.012em;
  word-break: keep-all;
}

.story-closing-line {
  color: var(--primary-deep);
  font-weight: 600;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pillar-card {
  padding: 24px;
}

.pillar-number {
  color: var(--primary-deep);
}

.pillar-card strong {
  display: block;
  margin: 14px 0 10px;
  font-size: 1.08rem;
  line-height: 1.68;
  letter-spacing: 0.006em;
  word-break: keep-all;
}

.pillar-card p {
  margin: 0;
  line-height: 2;
  letter-spacing: 0.01em;
  word-break: keep-all;
}

.filter-row {
  gap: 10px;
  margin-top: 34px;
}

.filter-chip {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--text);
}

.filter-chip.is-active {
  background: var(--text);
  color: #fff;
  border-color: rgba(31, 26, 23, 0.9);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.pricing-section {
  display: grid;
  gap: 30px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 34px 30px 30px;
  height: 100%;
  overflow: hidden;
}

.pricing-card-soft {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.92), rgba(248, 243, 236, 0.84)),
    rgba(255, 252, 248, 0.78);
}

.pricing-card-featured {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.96), rgba(241, 229, 214, 0.92)),
    rgba(255, 252, 248, 0.84);
  border-color: rgba(184, 142, 102, 0.18);
  box-shadow: 0 16px 34px rgba(145, 108, 71, 0.08);
}

.pricing-card-solid {
  background:
    linear-gradient(180deg, rgba(247, 243, 236, 0.94), rgba(236, 229, 219, 0.92)),
    rgba(255, 252, 248, 0.78);
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 1px;
  background: rgba(31, 26, 23, 0.05);
}

.pricing-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(184, 142, 102, 0.08);
  color: var(--primary-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-head {
  display: grid;
  gap: 10px;
}

.pricing-price-block {
  display: grid;
  gap: 8px;
}

.pricing-head strong {
  font-size: 1.4rem;
  line-height: 1.48;
  letter-spacing: -0.01em;
  word-break: keep-all;
}

.pricing-amount {
  margin-top: 4px;
  font-size: clamp(2.45rem, 5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.pricing-price-note {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(31, 26, 23, 0.06);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.pricing-summary,
.pricing-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.96;
  letter-spacing: 0.012em;
  word-break: keep-all;
  line-break: strict;
  text-wrap: pretty;
}

.pricing-compare {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.pricing-compare-head {
  display: grid;
  gap: 8px;
}

.pricing-compare-table {
  display: grid;
  gap: 10px;
}

.pricing-compare-row {
  display: grid;
  grid-template-columns: minmax(130px, 1.1fr) repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.pricing-compare-row > strong,
.pricing-compare-row > span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  align-items: flex-start;
  min-height: 64px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(31, 26, 23, 0.05);
  background: rgba(255, 255, 255, 0.7);
}

.pricing-compare-row > strong {
  font-size: 0.96rem;
  line-height: 1.56;
  letter-spacing: -0.01em;
}

.pricing-compare-row-head > span {
  justify-content: center;
  background: rgba(246, 239, 231, 0.92);
}

.pricing-compare-mobile-label {
  display: none;
  color: var(--primary-deep);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-style: normal;
}

.pricing-connection-note,
.checkout-connection-note {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 36px;
  margin: 2px 0 0;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(184, 142, 102, 0.16);
  background: rgba(255, 251, 246, 0.88);
  color: var(--primary-deep);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.01em;
  word-break: keep-all;
}

.pricing-features {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-features li {
  position: relative;
  padding-left: 18px;
  line-height: 1.84;
  letter-spacing: 0.01em;
  word-break: keep-all;
}

.pricing-features li::before {
  content: "";
  position: absolute;
  top: 0.9em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(184, 142, 102, 0.5);
  transform: translateY(-50%);
}

.pricing-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.pricing-meta-card {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(31, 26, 23, 0.05);
  background: rgba(255, 255, 255, 0.54);
}

.pricing-meta-card span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-meta-card strong {
  font-size: 0.96rem;
  line-height: 1.68;
  letter-spacing: -0.01em;
  word-break: keep-all;
}

.pricing-actions {
  display: flex;
  margin-top: auto;
}

.pricing-action-group {
  display: grid;
  gap: 12px;
  width: 100%;
}

.pricing-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  width: 100%;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.pricing-link:hover,
.pricing-link:focus-visible {
  transform: translateY(-2px);
}

.pricing-link-soft {
  border: 1px solid rgba(31, 26, 23, 0.08);
  background: rgba(255, 255, 255, 0.82);
}

.pricing-link-featured {
  background: linear-gradient(180deg, #bb9168 0%, #a97d55 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(148, 104, 69, 0.18);
}

.pricing-link-solid {
  border: 1px solid rgba(31, 26, 23, 0.08);
  background: rgba(117, 107, 98, 0.08);
}

.pricing-action-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.84;
  letter-spacing: 0.01em;
  word-break: keep-all;
}

.pricing-note {
  padding: 0 4px;
  font-size: 0.95rem;
  max-width: 900px;
}

.service-card {
  padding: 16px;
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card[hidden] {
  display: none;
}

.service-card:hover,
.service-card:focus-visible {
  border-color: rgba(184, 142, 102, 0.2);
  box-shadow: 0 18px 40px rgba(52, 38, 28, 0.06);
}

.service-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 20px;
}

.service-ivory {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.88), transparent 22%),
    linear-gradient(145deg, #fffaf4, #ead8c6);
}

.service-blush {
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 255, 255, 0.62), transparent 20%),
    linear-gradient(145deg, #f2dfe1, #e0c4c6);
}

.service-sage {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.52), transparent 20%),
    linear-gradient(145deg, #d6dfd2, #bcc7bf);
}

.service-pearl {
  background:
    radial-gradient(circle at 74% 18%, rgba(184, 142, 102, 0.18), transparent 18%),
    linear-gradient(145deg, #fffdf9, #f0e4d8);
}

.service-stone {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.12), transparent 20%),
    linear-gradient(145deg, #5f5852, #877d72);
}

.service-gold {
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 255, 255, 0.18), transparent 18%),
    linear-gradient(145deg, #e1c4a8, #b88e66);
}

.service-sheet {
  position: absolute;
  inset: 22px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.34);
  display: grid;
  align-content: space-between;
}

.service-stone .service-sheet {
  background: rgba(255, 252, 248, 0.14);
  color: #fffaf4;
}

.service-sheet span {
  color: var(--primary-deep);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-stone .service-sheet span {
  color: rgba(255, 250, 244, 0.74);
}

.service-sheet strong {
  font-size: 1.12rem;
  line-height: 1.58;
  letter-spacing: 0.004em;
  word-break: keep-all;
}

.sheet-lines {
  display: grid;
  gap: 10px;
}

.sheet-lines span {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: rgba(31, 26, 23, 0.12);
}

.service-stone .sheet-lines span {
  background: rgba(255, 255, 255, 0.16);
}

.sheet-lines span:nth-child(1) {
  width: 88%;
}

.sheet-lines span:nth-child(2) {
  width: 70%;
}

.sheet-lines span:nth-child(3) {
  width: 80%;
}

.service-copy {
  display: grid;
  gap: 8px;
}

.service-copy strong {
  font-size: 1.16rem;
  line-height: 1.68;
  letter-spacing: 0.006em;
  word-break: keep-all;
}

.service-copy span {
  line-height: 2;
  letter-spacing: 0.01em;
  word-break: keep-all;
}

.flow-section {
  display: grid;
  gap: 26px;
}

.flow-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
}

.kakao-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  font-weight: 600;
  border: 1px solid rgba(31, 26, 23, 0.08);
  box-shadow: var(--shadow-soft);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.flow-card {
  padding: 24px;
}

.flow-step {
  color: var(--primary-deep);
}

.flow-card strong {
  display: block;
  margin: 14px 0 10px;
  font-size: 1.06rem;
  line-height: 1.68;
  letter-spacing: 0.006em;
  word-break: keep-all;
}

.flow-card p {
  margin: 0;
  line-height: 2;
  letter-spacing: 0.01em;
  word-break: keep-all;
}

.carousel-actions {
  gap: 10px;
  justify-content: flex-end;
}

.carousel-button {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
}

.review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(336px, 372px);
  gap: 20px;
  margin-top: 30px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.review-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  min-height: 292px;
  padding: 28px 28px 24px;
  scroll-snap-align: start;
  background: rgba(255, 252, 248, 0.68);
}

.review-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(31, 26, 23, 0.06);
}

.review-label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.review-mark {
  color: rgba(176, 138, 99, 0.22);
  font-size: 2.7rem;
  line-height: 1;
  font-weight: 700;
}

.review-card p {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.92;
  letter-spacing: 0.01em;
  word-break: keep-all;
}

.review-meta {
  display: grid;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(31, 26, 23, 0.06);
}

.review-meta strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.72;
  letter-spacing: 0.008em;
  word-break: keep-all;
}

.review-meta span {
  line-height: 1.74;
  letter-spacing: 0.12em;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.journal-card {
  min-height: 220px;
  padding: 22px;
  display: grid;
  align-content: start;
  gap: 16px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.36), transparent 24%),
    linear-gradient(160deg, rgba(255, 251, 246, 0.94), rgba(243, 235, 226, 0.9));
  overflow: hidden;
}

.journal-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 456px;
}

.journal-wide {
  grid-column: span 2;
}

.journal-copy {
  display: grid;
  gap: 10px;
  align-content: end;
}

.journal-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.journal-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(31, 26, 23, 0.06);
  background: rgba(255, 255, 255, 0.74);
  color: var(--primary-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.journal-card.has-image {
  padding: 16px;
  background: rgba(255, 252, 248, 0.84);
}

.journal-media {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 239, 230, 0.92));
  border: 1px solid rgba(31, 26, 23, 0.06);
  box-shadow: 0 14px 30px rgba(39, 30, 24, 0.06);
}

.journal-media::before,
.journal-media::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  height: 1px;
  background: rgba(31, 26, 23, 0.05);
  z-index: 1;
}

.journal-media::before {
  top: 16px;
}

.journal-media::after {
  bottom: 16px;
}

.journal-media-button {
  width: 100%;
  padding: 0;
  text-align: left;
  cursor: zoom-in;
}

.journal-media-button:hover .journal-zoom-hint,
.journal-media-button:focus-visible .journal-zoom-hint {
  opacity: 1;
  transform: translateY(0);
}

.journal-media-button:focus-visible {
  outline: 2px solid rgba(184, 142, 102, 0.42);
  outline-offset: 3px;
}

.journal-card:not(.journal-large):not(.journal-wide) .journal-media {
  aspect-ratio: 1 / 1.22;
}

.journal-large .journal-media {
  min-height: 330px;
}

.journal-wide .journal-media {
  min-height: 220px;
}

.journal-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.92) contrast(0.98);
}

.journal-zoom-hint {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(24, 20, 16, 0.64);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.journal-media-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(253, 250, 245, 0.88);
  border: 1px solid rgba(31, 26, 23, 0.08);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.journal-card strong {
  font-size: 1.16rem;
  line-height: 1.58;
  letter-spacing: 0.006em;
  word-break: keep-all;
}

.journal-card p {
  margin: 0;
  line-height: 1.9;
  letter-spacing: 0.008em;
  word-break: keep-all;
}

.faq-section {
  display: grid;
  gap: 30px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  background: rgba(255, 252, 248, 0.7);
}

.faq-question {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 24px 28px;
  text-align: left;
}

.faq-question span {
  font-size: 1.06rem;
  line-height: 1.7;
  font-weight: 600;
  letter-spacing: 0.002em;
}

.faq-question strong {
  color: var(--primary-deep);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-answer {
  padding: 0 28px 24px;
  border-top: 1px solid rgba(31, 26, 23, 0.06);
}

.faq-answer p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.92;
  letter-spacing: 0.008em;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
  gap: 38px;
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 0;
}

.contact-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 26px;
}

.contact-point {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(31, 26, 23, 0.06);
  background: rgba(255, 252, 248, 0.66);
  box-shadow: var(--shadow-soft);
}

.contact-point-label {
  color: var(--primary-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-point strong {
  font-size: 1rem;
  line-height: 1.68;
  letter-spacing: -0.01em;
}

.contact-point p {
  margin: 0;
  line-height: 1.86;
  letter-spacing: 0.008em;
  word-break: keep-all;
}

.contact-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.contact-meta-card {
  padding: 18px;
}

.contact-meta-card strong {
  display: block;
  margin-top: 8px;
  font-size: 0.98rem;
  line-height: 1.9;
  letter-spacing: 0.01em;
  word-break: keep-all;
}

.contact-buttons {
  gap: 10px;
  margin-top: 20px;
}

.contact-assurance {
  margin-top: 26px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(31, 26, 23, 0.06);
  background: rgba(255, 252, 248, 0.7);
  box-shadow: var(--shadow-soft);
}

.contact-assurance strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.7;
  letter-spacing: -0.01em;
}

.contact-assurance p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.88;
  letter-spacing: 0.008em;
}

.contact-assurance-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.contact-assurance-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 26, 23, 0.06);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.journal-actions {
  margin-top: 8px;
}

.journal-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(31, 26, 23, 0.08);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.journal-link:hover,
.journal-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(39, 30, 24, 0.1);
}

.journal-highlights {
  display: grid;
  gap: 10px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.journal-highlights li {
  padding-left: 16px;
  position: relative;
  line-height: 1.84;
  letter-spacing: 0.004em;
  color: var(--text);
}

.journal-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(184, 142, 102, 0.82);
}

.contact-link-kakao {
  background: linear-gradient(180deg, #bb9168 0%, #a97d55 100%);
  border-color: rgba(148, 104, 69, 0.24);
  color: #fff;
  font-weight: 600;
}

.contact-link-ghost {
  color: var(--text);
}

.contact-panel {
  padding: 30px;
  background: rgba(255, 252, 248, 0.78);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.004em;
}

.selected-plan {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(184, 142, 102, 0.18);
  background: rgba(255, 248, 241, 0.88);
}

.selected-plan span {
  color: var(--primary-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.selected-plan strong {
  font-size: 1.02rem;
  line-height: 1.72;
  letter-spacing: -0.01em;
  word-break: keep-all;
}

.privacy-note {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.78;
  letter-spacing: 0.008em;
  padding-top: 4px;
  border-top: 1px solid rgba(31, 26, 23, 0.05);
}

.privacy-note a {
  color: var(--primary-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 10px;
}

/* 2026-05-20 즉시1: 인라인 에러 메시지 + 응답 후 next-action 카드 */
.field-error {
  margin: 6px 0 0;
  padding: 0 4px;
  color: var(--status-error, #b34f4f);
  font-size: 0.85rem;
  line-height: 1.5;
  letter-spacing: -0.005em;
}

.form-success,
.checkout-success {
  padding: 28px;
  border-radius: var(--radius-md, 18px);
  background: var(--primary-soft);
  border: 1px solid rgba(8, 98, 67, 0.18);
}
.form-success strong,
.checkout-success strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.form-success p,
.checkout-success p {
  margin: 0 0 16px;
  color: var(--ink-soft, #433f38);
  font-size: 0.98rem;
  line-height: 1.7;
}
.form-success-actions,
.checkout-success-actions {
  display: flex;
  gap: 10px;
  margin: 18px 0 14px;
  flex-wrap: wrap;
}
.form-success-actions a,
.checkout-success-actions a {
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.form-success-actions a.secondary,
.checkout-success-actions a.secondary {
  background: #fff;
  color: var(--primary);
  border: 1px solid rgba(8, 98, 67, 0.24);
}
.form-success-foot,
.checkout-success-foot {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(8, 98, 67, 0.12);
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.55;
}

.consent-check {
  display: flex !important;
  align-items: start;
  gap: 12px;
  padding: 12px 0 4px;
}

.consent-check input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  padding: 0;
  border-radius: 6px;
  flex: 0 0 auto;
}

.consent-check span {
  margin: 0 !important;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.76;
  letter-spacing: 0.006em;
}

.contact-form label span {
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.016em;
  word-break: keep-all;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-size: 0.95rem;
}

.form-status.is-pending {
  color: #8d6a4f;
}

.form-status.is-success {
  color: #2d7452;
}

.form-status.is-error {
  color: #b34f4f;
}

.checkout-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(231, 210, 212, 0.42), transparent 24%),
    radial-gradient(circle at top right, rgba(194, 204, 191, 0.34), transparent 28%),
    linear-gradient(180deg, #faf6f1 0%, #f2ebe2 100%);
}

.checkout-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 72px;
}

.checkout-header {
  display: grid;
  gap: 20px;
  margin-bottom: 34px;
}

.checkout-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
  width: fit-content;
}

.checkout-header-copy {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.checkout-header-copy h1,
.checkout-panel h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.checkout-header-copy p,
.checkout-summary,
.checkout-section-head p,
.checkout-note-box p,
.checkout-glance p,
.payment-provider-card p,
.checkout-receipt-note,
.checkout-status,
.checkout-privacy-note,
.checkout-support-copy p {
  margin: 0;
  line-height: 1.92;
  letter-spacing: 0.01em;
  color: var(--muted);
  word-break: keep-all;
}

.checkout-header-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checkout-header-notes span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(31, 26, 23, 0.06);
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.98fr);
  gap: 24px;
  align-items: start;
}

.checkout-panel,
.checkout-error-card,
.checkout-receipt {
  border-radius: 30px;
  border: 1px solid rgba(31, 26, 23, 0.08);
  background: rgba(255, 252, 248, 0.8);
  box-shadow: var(--shadow-soft);
}

.checkout-panel {
  padding: 32px;
  display: grid;
  gap: 20px;
}

.checkout-panel-accent {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.72), transparent 26%),
    linear-gradient(160deg, rgba(255, 250, 244, 0.96), rgba(241, 232, 220, 0.9));
}

.checkout-price {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.checkout-feature-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checkout-feature-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.88;
  letter-spacing: 0.01em;
}

.checkout-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.92em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(184, 142, 102, 0.56);
  transform: translateY(-50%);
}

.checkout-process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.checkout-process-list article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(31, 26, 23, 0.05);
  background: rgba(255, 255, 255, 0.52);
}

.checkout-process-list span {
  color: var(--primary-deep);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.checkout-process-list strong {
  font-size: 1rem;
  line-height: 1.58;
  letter-spacing: -0.01em;
}

.checkout-process-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.88;
  letter-spacing: 0.01em;
}

.checkout-glance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.checkout-glance article {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(31, 26, 23, 0.05);
  background: rgba(255, 255, 255, 0.56);
}

.checkout-glance span {
  color: var(--primary-deep);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.checkout-glance strong {
  font-size: 0.98rem;
  line-height: 1.56;
  letter-spacing: -0.01em;
}

.checkout-compact-note {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(184, 142, 102, 0.14);
  background: rgba(255, 255, 255, 0.7);
}

.checkout-compact-note strong,
.checkout-compact-note p {
  margin: 0;
  word-break: keep-all;
}

.checkout-compact-note strong {
  font-size: 1rem;
  line-height: 1.72;
  letter-spacing: 0.004em;
}

.checkout-compact-note p {
  color: var(--muted);
  line-height: 1.88;
  letter-spacing: 0.01em;
}

.checkout-note-box {
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(31, 26, 23, 0.06);
}

.checkout-note-box strong,
.checkout-section-head strong {
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.004em;
  word-break: keep-all;
}

.checkout-section-head {
  display: grid;
  gap: 10px;
}

.checkout-progress-card {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.checkout-progress-steps,
.checkout-confidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.checkout-progress-step,
.checkout-confidence-grid article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(31, 26, 23, 0.05);
  background: rgba(255, 255, 255, 0.68);
}

.checkout-progress-step.is-active {
  border-color: rgba(184, 142, 102, 0.2);
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.98), rgba(245, 236, 225, 0.9));
}

.checkout-progress-step strong,
.checkout-confidence-grid strong {
  font-size: 0.98rem;
  line-height: 1.62;
  letter-spacing: -0.01em;
  word-break: keep-all;
}

.checkout-order-summary {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(31, 26, 23, 0.06);
  background: rgba(255, 255, 255, 0.66);
}

.checkout-order-summary-head {
  display: grid;
  gap: 6px;
}

.checkout-order-summary-head strong {
  font-size: 1.02rem;
  line-height: 1.62;
  letter-spacing: -0.01em;
}

.checkout-order-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.checkout-order-summary-grid article {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(31, 26, 23, 0.05);
  background: rgba(255, 255, 255, 0.72);
}

.checkout-order-summary-grid span {
  color: var(--muted);
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-order-summary-grid strong {
  font-size: 0.98rem;
  line-height: 1.7;
  letter-spacing: -0.01em;
  word-break: keep-all;
}

.payment-provider-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.payment-provider-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(31, 26, 23, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(68, 50, 34, 0.04);
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.payment-provider-card:hover,
.payment-provider-card:focus-visible,
.payment-provider-card.is-selected {
  transform: translateY(-2px);
  border-color: rgba(184, 142, 102, 0.28);
  box-shadow: 0 16px 34px rgba(68, 50, 34, 0.06);
}

.payment-provider-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 10px;
}

.payment-provider-top strong {
  font-size: 1rem;
  line-height: 1.7;
}

.payment-provider-badge,
.payment-provider-hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.payment-provider-badge-pending {
  background: rgba(184, 142, 102, 0.12);
  color: var(--primary-deep);
}

.payment-provider-badge-ready {
  background: rgba(45, 116, 82, 0.12);
  color: #2d7452;
}

.payment-provider-hint {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(31, 26, 23, 0.08);
  color: var(--muted);
}

.checkout-form {
  display: grid;
  gap: 16px;
}

.checkout-status {
  min-height: 26px;
}

.checkout-status.is-pending {
  color: #8d6a4f;
}

.checkout-status.is-success {
  color: #2d7452;
}

.checkout-status.is-error {
  color: #b34f4f;
}

.checkout-privacy-note {
  padding-top: 6px;
  border-top: 1px solid rgba(31, 26, 23, 0.05);
  font-size: 0.9rem;
}

.checkout-inline-assurance {
  padding-top: 2px;
}

.checkout-receipt {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.checkout-receipt-head {
  display: grid;
  gap: 6px;
}

.checkout-receipt-head strong {
  font-size: 1.08rem;
  line-height: 1.72;
}

.checkout-receipt-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.checkout-receipt-grid article {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(31, 26, 23, 0.06);
}

.checkout-receipt-grid span,
.checkout-support span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-receipt-grid strong,
.checkout-support strong,
.checkout-support a {
  font-size: 1rem;
  line-height: 1.76;
  letter-spacing: 0.006em;
  word-break: keep-all;
}

.checkout-support {
  display: grid;
  gap: 6px;
}

.checkout-support-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(31, 26, 23, 0.06);
  background: rgba(255, 255, 255, 0.66);
}

.checkout-support-copy {
  display: grid;
  gap: 8px;
}

.checkout-support-copy strong {
  font-size: 0.98rem;
  line-height: 1.62;
  letter-spacing: -0.01em;
}

.checkout-guide-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(31, 26, 23, 0.06);
  background: rgba(255, 255, 255, 0.7);
}

.checkout-guide-head {
  display: grid;
  gap: 6px;
}

.checkout-guide-head strong {
  font-size: 1.04rem;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.checkout-guide-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checkout-guide-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.88;
  letter-spacing: 0.01em;
}

.checkout-guide-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.92em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(167, 176, 156, 0.82);
  transform: translateY(-50%);
}

.checkout-error-card {
  padding: 26px;
}

.checkout-error-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.checkout-error-actions a {
  height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 800;
}
.checkout-error-actions a:first-child {
  background: var(--primary);
  color: #fff;
}
.checkout-error-actions a:last-child {
  background: #fff;
  color: var(--primary);
  border: 1px solid rgba(8, 98, 67, 0.24);
}

.admin-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(231, 210, 212, 0.46), transparent 26%),
    radial-gradient(circle at top right, rgba(194, 204, 191, 0.34), transparent 28%),
    linear-gradient(180deg, #fbf7f2 0%, #f3ece3 100%);
}

.admin-shell {
  width: min(1260px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 60px;
}

.admin-header,
.admin-card,
.admin-banner {
  border-radius: 30px;
  border: 1px solid rgba(31, 26, 23, 0.08);
  background: rgba(255, 252, 248, 0.82);
  box-shadow: var(--shadow-soft);
}

.admin-header,
.admin-card,
.admin-banner {
  padding: 26px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.admin-header-copy {
  display: grid;
  gap: 10px;
}

.admin-header-copy h1,
.admin-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.admin-header-copy p,
.admin-muted,
.admin-inline-note p,
.admin-empty,
.admin-alert-card p,
.admin-table td,
.admin-kv-list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.88;
  letter-spacing: 0.004em;
  word-break: keep-all;
}

.admin-header-actions,
.admin-inline-form {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.admin-banner {
  margin-top: 18px;
}

.admin-banner-success {
  background: rgba(235, 247, 239, 0.88);
}

.admin-banner-error {
  background: rgba(255, 240, 240, 0.9);
}

.admin-login-layout,
.admin-grid {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.admin-login-layout {
  max-width: 560px;
}

.admin-login-card,
.admin-login-form {
  display: grid;
  gap: 14px;
}

.admin-login-form label {
  display: grid;
  gap: 8px;
}

.admin-login-form label span {
  font-size: 0.95rem;
  font-weight: 600;
}

.admin-summary-grid,
.admin-status-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.admin-status-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.admin-summary-card {
  display: grid;
  gap: 8px;
}

.admin-summary-card span,
.admin-kv-list dt,
.admin-alert-foot span,
.admin-table th,
.admin-inline-note strong {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.admin-summary-card strong {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.admin-card {
  display: grid;
  gap: 18px;
}

.admin-card-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.admin-status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(31, 26, 23, 0.08);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.admin-status-chip.is-online {
  background: rgba(232, 246, 237, 0.92);
  color: #2f6c4f;
}

.admin-status-chip.is-offline {
  background: rgba(255, 237, 237, 0.94);
  color: #9d3f3f;
}

.admin-status-chip.is-warning {
  background: rgba(255, 244, 228, 0.94);
  color: #9a6a2f;
}

.admin-kv-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.admin-kv-list div {
  display: grid;
  gap: 4px;
}

.admin-alert-list {
  display: grid;
  gap: 14px;
}

.admin-alert-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(31, 26, 23, 0.08);
  background: rgba(255, 255, 255, 0.58);
}

.admin-alert-card.is-open {
  background: rgba(255, 245, 243, 0.82);
}

.admin-alert-card.is-resolved {
  background: rgba(245, 249, 245, 0.82);
}

.admin-alert-head,
.admin-alert-foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.admin-alert-head strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.08rem;
  line-height: 1.6;
}

.admin-alert-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-alert-level {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-deep);
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
}

.admin-table th,
.admin-table td {
  padding: 14px 10px;
  border-bottom: 1px solid rgba(31, 26, 23, 0.08);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--stone);
}

.admin-order-status-form {
  display: grid;
  gap: 10px;
  min-width: 172px;
}

.admin-order-status-form select {
  min-height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(31, 26, 23, 0.14);
  background: rgba(255, 255, 255, 0.88);
  padding: 0 14px;
  font: inherit;
  color: var(--ink);
}

.admin-order-status-form .secondary-button {
  width: 100%;
  justify-content: center;
}

.admin-empty {
  padding: 8px 0 4px;
}

.admin-inline-note {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(184, 142, 102, 0.08);
}

@keyframes button-spin {
  to {
    transform: rotate(360deg);
  }
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 64px;
  padding: 60px 14px 24px;
  border-top: 1px solid rgba(31, 26, 23, 0.08);
}

.support-page .site-footer {
  margin-top: 80px;
}

.footer-grid,
.footer-column,
.footer-bottom {
  display: grid;
}

.footer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 40px;
  padding-top: 4px;
}

.footer-column {
  gap: 6px;
}

.site-footer strong,
.footer-column strong {
  font-size: 0.9rem;
}

.footer-bottom {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(31, 26, 23, 0.06);
}

.site-footer p,
.site-footer span,
.contact-point,
.contact-point p,
.contact-point strong,
.brand-lockup strong,
.site-nav a {
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}

.site-footer p,
.site-footer span {
  margin: 0;
  line-height: 1.72;
  letter-spacing: 0.004em;
}

.footer-column a,
.footer-column span,
.footer-business-inline span,
.footer-business-meta span,
.footer-bottom p,
.footer-bottom span {
  color: var(--muted);
  line-height: 1.72;
  letter-spacing: 0.01em;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--text);
}

.footer-business-strip,
.footer-business-inline,
.footer-business-details,
.footer-business-meta,
.footer-business-meta div,
.footer-business-actions,
.footer-utility-links {
  display: grid;
}

.footer-business-strip {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 28px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid rgba(29, 29, 31, 0.06);
  border-bottom: 1px solid rgba(29, 29, 31, 0.06);
}

.footer-business-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
}

.footer-business-inline strong {
  font-size: 0.92rem;
}

.footer-business-details {
  gap: 12px;
  padding-top: 6px;
  padding-bottom: 12px;
}

.footer-business-details summary {
  cursor: pointer;
  list-style: none;
  color: #1d1d1f;
  font-size: 0.92rem;
  font-weight: 600;
}

.footer-business-details summary::-webkit-details-marker {
  display: none;
}

.footer-business-details summary::after {
  content: "+";
  margin-left: 8px;
  color: var(--muted);
}

.footer-business-details[open] summary::after {
  content: "−";
}

.footer-business-meta {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 18px;
  padding-top: 14px;
}

.footer-business-meta div {
  gap: 3px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(245, 245, 247, 0.92);
}

.footer-business-meta span {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.footer-business-meta strong {
  font-size: 0.9rem;
  line-height: 1.58;
}

.footer-business-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.footer-business-actions a,
.footer-utility-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(31, 26, 23, 0.1);
  background: rgba(255, 255, 255, 0.54);
  color: #424245;
  font-size: 0.88rem;
  line-height: 1;
}

.footer-business-actions a:hover,
.footer-business-actions a:focus-visible,
.footer-utility-links a:hover,
.footer-utility-links a:focus-visible {
  border-color: rgba(31, 26, 23, 0.18);
  transform: translateY(-1px);
}

.footer-utility-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding-top: 4px;
}

.mobile-cta-bar {
  display: none;
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(231, 210, 212, 0.34), transparent 24%),
    radial-gradient(circle at top right, rgba(194, 204, 191, 0.26), transparent 24%),
    linear-gradient(180deg, #fbf8f4 0%, #f3ece3 100%);
}

.legal-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 64px;
}

.legal-header {
  display: grid;
  gap: 20px;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(31, 26, 23, 0.08);
  background: rgba(255, 252, 248, 0.82);
  box-shadow: var(--shadow-soft);
}

.legal-header-copy {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.legal-header-copy h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.legal-header-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.92;
  letter-spacing: 0.01em;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(31, 26, 23, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(29, 24, 20, 0.08);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}

.legal-action-link:hover,
.legal-action-link:focus-visible {
  border-color: rgba(201, 158, 67, 0.52);
  background: rgba(255, 250, 244, 0.92);
}

.legal-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.legal-card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(184, 142, 102, 0.12);
}

.legal-grid {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.legal-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(31, 26, 23, 0.08);
  background: rgba(255, 252, 248, 0.82);
  box-shadow: var(--shadow-soft);
}

.legal-card h2 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.56;
  letter-spacing: -0.01em;
}

.legal-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.92;
  letter-spacing: 0.01em;
}

.sample-page {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.82), transparent 32%),
    linear-gradient(180deg, #f7f2ec 0%, #f3ece3 100%);
  color: var(--text);
}

.sample-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 80px;
}

.sample-hero,
.sample-intro,
.sample-card,
.sample-note {
  border-radius: 28px;
  border: 1px solid rgba(31, 26, 23, 0.06);
  background: rgba(255, 252, 248, 0.78);
  box-shadow: 0 24px 60px rgba(39, 30, 24, 0.08);
}

.sample-hero,
.sample-intro,
.sample-note {
  padding: 30px;
}

.sample-hero h1 {
  margin: 10px 0 18px;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.sample-description,
.sample-intro p,
.sample-note p {
  margin: 0;
  line-height: 1.92;
  letter-spacing: 0.004em;
  word-break: keep-all;
}

.sample-intro {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

.sample-glance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.sample-glance-card {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.sample-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.sample-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.sample-card {
  padding: 26px;
  display: grid;
  gap: 16px;
}

.sample-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(184, 142, 102, 0.12);
  color: var(--primary-deep);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.sample-card strong {
  font-size: 1.36rem;
  line-height: 1.42;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.sample-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.sample-list li {
  line-height: 1.84;
  letter-spacing: 0.004em;
  word-break: keep-all;
}

.sample-note {
  margin-top: 22px;
}

.sample-cta-panel {
  display: grid;
  gap: 18px;
  margin-top: 22px;
  padding: 30px;
}

.sample-cta-copy {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.sample-cta-copy h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.24;
  letter-spacing: -0.03em;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(27, 20, 17, 0.42);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  width: min(680px, calc(100% - 32px));
  margin: min(12vh, 90px) auto 0;
  padding: 28px;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(31, 26, 23, 0.06);
  font-size: 1.4rem;
}

.modal-panel h3 {
  margin: 6px 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.24;
  letter-spacing: -0.03em;
}

.modal-summary {
  margin: 0;
  font-size: 1rem;
  line-height: 1.94;
  letter-spacing: 0.004em;
}

.modal-highlights {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.modal-highlights li {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(184, 142, 102, 0.12);
  line-height: 1.84;
  letter-spacing: 0.003em;
}

.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 21, 17, 0.52);
  backdrop-filter: blur(10px);
}

.lightbox-panel {
  position: relative;
  width: min(1020px, calc(100% - 28px));
  max-height: calc(100vh - 40px);
  margin: 20px auto 0;
  padding: 26px;
  border-radius: 30px;
  background: rgba(255, 252, 248, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: 0 30px 70px rgba(24, 18, 14, 0.18);
  display: grid;
  gap: 18px;
}

.lightbox-copy {
  display: grid;
  gap: 8px;
  padding-right: 40px;
}

.lightbox-copy h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.36;
  letter-spacing: -0.02em;
}

.lightbox-caption {
  margin: 0;
  color: var(--muted);
  line-height: 1.84;
  letter-spacing: 0.008em;
}

.lightbox-note {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.72;
  letter-spacing: 0.008em;
}

.lightbox-frame {
  overflow: auto;
  border-radius: 24px;
  border: 1px solid rgba(31, 26, 23, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 238, 231, 0.9));
  padding: 18px;
}

.lightbox-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(24, 18, 14, 0.08);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(31, 26, 23, 0.06);
  font-size: 1.5rem;
  line-height: 1;
}

.hero-section {
  grid-template-columns: 1fr;
  gap: 28px;
  padding-top: 46px;
}

.hero-metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 720px);
  margin: 0 auto;
}

.hero-metric-card {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(31, 26, 23, 0.06);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.hero-metric-card strong {
  font-size: 1.22rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-metric-card span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.hero-mobile-offer {
  display: none;
}

.hero-stage {
  min-height: auto;
  display: grid;
  gap: 18px;
  align-content: start;
  width: min(100%, 1080px);
  margin: 0 auto;
}

.offer-stack {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  grid-template-areas:
    "featured mini"
    "featured assurance";
  align-items: start;
  gap: 16px;
}

.featured-offer-card,
.offer-mini-card,
.offer-assurance-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(31, 26, 23, 0.06);
  box-shadow: var(--shadow-soft);
}

.featured-offer-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.6), transparent 26%),
    linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(241, 231, 219, 0.94));
  grid-area: featured;
}

.featured-offer-topline,
.featured-offer-head,
.featured-offer-price-block,
.featured-offer-footer,
.sample-cta-actions,
.pricing-utility-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 12px;
}

.featured-offer-kicker,
.featured-offer-state {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(31, 26, 23, 0.06);
  color: var(--primary-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-offer-head {
  align-items: start;
}

.featured-offer-head strong {
  display: block;
  margin-top: 6px;
  font-size: 1.35rem;
  line-height: 1.42;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.featured-offer-price {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.featured-offer-price-note,
.featured-offer-summary,
.offer-mini-card p,
.featured-offer-footer span,
.sample-glance-list li {
  color: var(--muted);
  line-height: 1.72;
  letter-spacing: 0.01em;
}

.featured-offer-summary {
  margin: 0;
  font-size: 0.96rem;
}

.featured-offer-features,
.sample-glance-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.featured-offer-features li,
.sample-glance-list li {
  position: relative;
  padding-left: 16px;
  font-size: 0.93rem;
  word-break: keep-all;
}

.featured-offer-features li::before,
.sample-glance-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--primary-deep);
}

.featured-offer-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.featured-offer-actions > *,
.sample-cta-actions > * {
  width: 100%;
}

.featured-offer-footer {
  justify-content: flex-start;
  padding-top: 4px;
  border-top: 1px solid rgba(31, 26, 23, 0.06);
}

.offer-mini-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  grid-area: mini;
}

.offer-mini-card {
  display: grid;
  gap: 10px;
  padding: 20px 18px 18px;
  background: rgba(255, 252, 248, 0.72);
}

.offer-mini-card.is-featured {
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(241, 231, 219, 0.88));
  border-color: rgba(184, 142, 102, 0.16);
}

.offer-mini-card strong {
  font-size: 1rem;
  line-height: 1.45;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.offer-mini-price {
  font-size: 1.38rem;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.offer-mini-link,
.pricing-utility-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(31, 26, 23, 0.08);
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.offer-mini-link:hover,
.offer-mini-link:focus-visible,
.pricing-utility-bar a:hover,
.pricing-utility-bar a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(184, 142, 102, 0.22);
  box-shadow: 0 12px 24px rgba(56, 41, 29, 0.08);
}

.offer-assurance-card {
  display: grid;
  gap: 12px;
  padding: 22px 24px;
  background: rgba(255, 252, 248, 0.74);
  grid-area: assurance;
}

.offer-assurance-head {
  display: grid;
  gap: 8px;
}

.offer-assurance-head strong {
  font-size: 1.02rem;
  line-height: 1.62;
  letter-spacing: -0.01em;
  word-break: keep-all;
}

.hero-notes {
  position: relative;
  inset: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  pointer-events: auto;
  width: min(100%, 1080px);
  margin: 0 auto;
}

.note-card,
.note-card-1,
.note-card-2,
.note-card-3 {
  position: relative;
  inset: auto;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: auto;
}

.pricing-utility-bar {
  justify-content: flex-start;
}

.sample-glance-section {
  display: grid;
  gap: 28px;
  padding: 32px 0 12px;
}

.embed-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 22px;
  align-items: start;
}

.embed-showcase-copy {
  display: grid;
  gap: 14px;
}

.embed-showcase-copy strong {
  font-size: 1.18rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.embed-showcase-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.embed-frame-panel {
  display: grid;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(29, 29, 31, 0.06);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05);
}

.embed-frame-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(29, 29, 31, 0.05);
  background: rgba(248, 248, 250, 0.92);
}

.embed-frame-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.18);
}

.embed-frame-toolbar em {
  margin-left: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
  letter-spacing: 0.02em;
}

.embed-frame {
  width: 100%;
  min-height: 760px;
  border: 0;
  background: #fff;
}

.embed-preview-page {
  min-height: 100vh;
  margin: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
  color: var(--text);
}

.embed-preview-shell {
  width: min(100% - 24px, 980px);
  margin: 0 auto;
  padding: 22px 0 28px;
  display: grid;
  gap: 16px;
}

.embed-preview-hero,
.embed-preview-card,
.embed-preview-bottom {
  border-radius: 26px;
  border: 1px solid rgba(29, 29, 31, 0.05);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.04);
}

.embed-preview-hero,
.embed-preview-bottom {
  padding: 24px;
  display: grid;
  gap: 12px;
}

.embed-preview-hero h1 {
  margin: 0;
  font-size: clamp(1.85rem, 3.6vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: -0.04em;
  font-weight: 800;
  word-break: keep-all;
}

.embed-preview-description {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.embed-preview-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.embed-preview-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(8, 98, 67, 0.08);
  border: 1px solid rgba(8, 98, 67, 0.12);
  color: var(--primary-deep);
  font-size: 0.8rem;
  font-weight: 600;
}

.embed-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.embed-preview-card {
  display: grid;
  gap: 10px;
  padding: 22px 20px;
}

.embed-preview-card span {
  color: var(--primary-deep);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.embed-preview-card strong {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.embed-preview-card p,
.embed-preview-bottom-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.74;
}

.embed-preview-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.embed-preview-list li {
  position: relative;
  padding-left: 14px;
  font-size: 0.9rem;
  line-height: 1.66;
}

.embed-preview-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--primary-deep);
}

.embed-preview-bottom {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 16px;
}

.embed-preview-bottom-copy strong {
  display: block;
  margin: 2px 0 8px;
  font-size: 1.12rem;
  line-height: 1.46;
  letter-spacing: -0.02em;
}

.embed-preview-actions {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sample-glance-list {
  margin-top: 4px;
}

.sample-cta-actions {
  justify-content: flex-start;
}

.hero-copy {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  justify-items: center;
}

.hero-description,
.section-description,
.hero-support,
.hero-footnote {
  max-width: 760px;
}

.hero-actions,
.tag-row,
.hero-proof-list {
  justify-content: center;
}

.hero-proof-card {
  width: min(100%, 760px);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.78);
}

.hero-proof-head,
.offer-assurance-head,
.section-heading {
  text-align: center;
}

.section-heading {
  grid-template-columns: 1fr;
  max-width: 860px;
  margin: 0 auto;
}

.pricing-section,
.story-section,
.services-section,
.flow-section,
.reviews-section,
.faq-section,
.journal-section,
.contact-section,
.sample-glance-section {
  gap: 22px;
}

.sample-glance-section,
.pricing-section,
.journal-section,
.contact-section {
  padding: 64px 56px;
  border-radius: 40px;
  border: 1px solid rgba(29, 29, 31, 0.05);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.04);
}

.trust-band-card,
.pricing-card,
.service-card,
.quote-panel,
.pillar-card,
.flow-card,
.review-card,
.faq-item,
.journal-card,
.contact-panel,
.contact-meta-card,
.sample-glance-card,
.sample-cta-panel {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(29, 29, 31, 0.05);
}

.featured-offer-card,
.offer-mini-card,
.offer-assurance-card,
.trust-band-card,
.pricing-card,
.service-card,
.review-card,
.faq-item,
.journal-card,
.contact-panel,
.sample-glance-card,
.sample-cta-panel,
.footer-business-card {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(29, 29, 31, 0.05);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
}

.featured-offer-card {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.72), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 247, 251, 0.92));
}

.offer-mini-card.is-featured,
.pricing-card-featured {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 246, 255, 0.94));
  border-color: rgba(8, 98, 67, 0.12);
  box-shadow: 0 18px 36px rgba(8, 98, 67, 0.08);
}

.pricing-badge,
.checkout-connection-note,
.pricing-connection-note,
.hero-proof-list span,
.featured-offer-kicker,
.featured-offer-state {
  background: rgba(8, 98, 67, 0.08);
  border-color: rgba(8, 98, 67, 0.12);
  color: var(--primary-deep);
}

.tag-row span,
.offer-mini-link,
.pricing-utility-bar a,
.secondary-button,
.header-button,
.contact-link,
.carousel-button {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(29, 29, 31, 0.06);
}

.hero-notes {
  display: none;
}

.hero-copy h1,
.heading-copy h2,
.contact-copy h2 {
  font-weight: 800;
  letter-spacing: -0.045em;
}

.hero-description,
.hero-support,
.hero-footnote,
.section-description {
  color: var(--muted);
}

.site-nav a,
.footer-utility-links a,
.footer-business-actions a {
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-utility-links a:hover,
.footer-utility-links a:focus-visible,
.footer-business-actions a:hover,
.footer-business-actions a:focus-visible {
  color: var(--text);
}


.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .hero-section,
  .section-heading,
  .story-layout,
  .contact-section,
  .flow-stage,
  .checkout-grid,
  .admin-status-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: auto;
  }

  .offer-stack {
    grid-template-columns: 1fr;
    grid-template-areas:
      "featured"
      "mini"
      "assurance";
  }

  .offer-mini-grid,
  .hero-notes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid,
  .pricing-grid,
  .hero-path-grid,
  .trust-band,
  .flow-grid,
  .pillar-grid,
  .contact-points,
  .contact-meta-grid,
  .journal-grid,
  .pricing-meta-grid,
  .checkout-progress-steps,
  .checkout-confidence-grid,
  .checkout-process-list,
  .checkout-glance,
  .checkout-order-summary-grid,
  .payment-provider-grid,
  .checkout-receipt-grid,
  .sample-glance-grid,
  .admin-summary-grid,
  .footer-grid,
  .footer-business-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-utility-links {
    justify-content: flex-start;
  }

  .footer-business-strip {
    grid-template-columns: 1fr;
  }

  .footer-business-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  :root {
    --content-width: min(100% - 24px, 1280px);
  }

  .page-shell {
    padding-top: 12px;
    padding-bottom: 100px;
  }

  .site-header {
    position: relative;
    top: 0;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 14px;
    padding: 16px 16px 14px;
    border-radius: 28px;
  }

  .header-button {
    display: none;
  }

  .brand-lockup strong {
    font-size: 1.08rem;
  }

  .site-nav {
    width: calc(100% + 4px);
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 8px 14px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    font-size: 0.85rem;
    white-space: nowrap;
    scroll-snap-align: start;
  }

  .footer-grid,
  .footer-business-meta {
    grid-template-columns: 1fr;
  }

  .site-footer {
    margin-top: 44px;
    padding: 44px 6px 18px;
    gap: 24px;
  }

  .support-page .site-footer {
    margin-top: 56px;
  }

  .hero-section,
  .trust-band,
  .story-section,
  .services-section,
  .pricing-section,
  .flow-section,
  .reviews-section,
  .faq-section,
  .journal-section,
  .contact-section {
    padding: 52px 0;
  }

  .hero-section {
    min-height: auto;
    gap: 22px;
  }

  .hero-copy {
    gap: 18px;
  }

  .hero-copy h1,
  .heading-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.25rem, 10vw, 3.25rem);
  }

  .hero-description,
  .section-description {
    font-size: 0.95rem;
    line-height: 1.78;
  }

  .hero-support,
  .hero-footnote {
    font-size: 0.9rem;
    line-height: 1.72;
  }

  .tag-row {
    gap: 8px;
  }

  .tag-row span {
    padding: 8px 12px;
    font-size: 0.78rem;
  }

  .hero-proof-card {
    gap: 10px;
    padding: 18px;
    border-radius: 24px;
  }

  .sample-glance-section,
  .pricing-section,
  .journal-section,
  .contact-section {
    padding: 28px 20px;
    border-radius: 28px;
  }

  .embed-showcase,
  .embed-preview-grid,
  .embed-preview-bottom {
    grid-template-columns: 1fr;
  }

  .embed-frame {
    min-height: 620px;
  }

  .hero-metric-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-metric-card {
    padding: 14px 16px;
  }

  .hero-mobile-offer {
    display: grid;
    gap: 12px;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(31, 26, 23, 0.06);
    background: linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(241, 231, 219, 0.94));
    box-shadow: var(--shadow-soft);
  }

  .hero-mobile-offer-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 10px;
  }

  .hero-mobile-offer-head strong {
    display: block;
    margin-top: 4px;
    font-size: 1.04rem;
    line-height: 1.46;
    letter-spacing: -0.02em;
  }

  .hero-mobile-offer-price {
    font-size: clamp(2.15rem, 9vw, 2.8rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.05em;
  }

  .hero-mobile-offer p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.68;
  }

  .hero-proof-head strong {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .hero-proof-list span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.74rem;
  }

  .hero-stage {
    display: none;
  }

  .stage-wash {
    inset: 0;
    border-radius: 34px;
  }

  .stage-photo {
    inset: 4% 0 10% 0;
    border-radius: 28px;
  }

  .report-card,
  .metrics-card {
    position: relative;
    inset: auto;
    width: auto;
    margin: 10px;
  }

  .report-card {
    gap: 12px;
    padding: 16px;
  }

  .document-header p {
    font-size: 0.88rem;
    line-height: 1.62;
  }

  .metrics-card {
    gap: 12px;
    padding: 14px;
  }

  .report-summary-grid,
  .report-table-row {
    grid-template-columns: 1fr;
  }

  .hero-notes {
    position: relative;
    display: grid;
    gap: 10px;
    margin-top: 12px;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 74%);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .report-summary-grid,
  .report-detail-grid {
    grid-template-columns: 1fr;
  }

  .note-card {
    position: relative;
    width: auto;
    padding: 14px 14px 16px;
    border-radius: 22px;
    scroll-snap-align: start;
  }

  .hero-notes::-webkit-scrollbar {
    display: none;
  }

  .hero-path-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(236px, 82%);
    gap: 12px;
    overflow-x: auto;
    padding: 2px 4px 8px 0;
    margin-right: -4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .hero-path-grid::-webkit-scrollbar {
    display: none;
  }

  .hero-path-card {
    gap: 8px;
    min-height: 100%;
    padding: 18px 16px;
    border-radius: 24px;
    scroll-snap-align: start;
  }

  .hero-path-card strong {
    font-size: 0.95rem;
    line-height: 1.52;
  }

  .trust-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .trust-band-card {
    gap: 8px;
    padding: 18px 16px;
  }

  .trust-band-card strong {
    font-size: 0.95rem;
    line-height: 1.48;
  }

  .trust-band-card p {
    font-size: 0.88rem;
    line-height: 1.62;
  }

  .section-heading {
    gap: 20px;
  }

  .story-layout {
    gap: 16px;
    margin-top: 24px;
  }

  .story-paragraphs {
    gap: 16px;
  }

  .story-paragraphs p {
    font-size: 0.96rem;
    line-height: 1.84;
  }

  .pillar-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 74%);
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .pillar-card {
    padding: 18px;
    scroll-snap-align: start;
  }

  .pillar-grid::-webkit-scrollbar {
    display: none;
  }

  .filter-row {
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 22px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .filter-row::-webkit-scrollbar {
    display: none;
  }

  .filter-chip {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 14px;
  }

  .service-grid,
  .pricing-grid,
  .flow-grid,
  .field-grid,
  .journal-grid,
  .pricing-meta-grid,
  .checkout-progress-steps,
  .checkout-confidence-grid,
  .checkout-process-list,
  .checkout-glance,
  .checkout-order-summary-grid,
  .footer-grid,
  .footer-business-meta,
  .payment-provider-grid,
  .checkout-receipt-grid,
  .sample-glance-grid,
  .admin-summary-grid {
    grid-template-columns: 1fr;
  }

  .footer-business-head {
    grid-template-columns: 1fr;
  }

  .footer-business-actions {
    grid-auto-flow: row;
    grid-auto-columns: unset;
    justify-content: start;
  }

  .footer-utility-links {
    justify-content: flex-start;
  }

  .service-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(244px, 82%);
    gap: 14px;
    margin-top: 20px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .pricing-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(286px, 88%);
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .pricing-card {
    gap: 18px;
    padding: 24px 20px 20px;
    scroll-snap-align: start;
  }

  .pricing-card::before {
    left: 20px;
    right: 20px;
  }

  .service-grid::-webkit-scrollbar,
  .pricing-grid::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    scroll-snap-align: start;
  }

  .pricing-amount {
    font-size: clamp(2.1rem, 9vw, 2.8rem);
  }

  .pricing-summary,
  .pricing-note {
    font-size: 0.94rem;
    line-height: 1.74;
  }

  .pricing-meta-grid {
    display: none;
  }

  .pricing-features {
    gap: 10px;
  }

  .pricing-features li {
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .pricing-compare {
    gap: 14px;
    padding: 18px;
  }

  .pricing-utility-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .pricing-utility-bar::-webkit-scrollbar {
    display: none;
  }

  .pricing-utility-bar a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .pricing-compare-table {
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .pricing-compare-row {
    min-width: 620px;
    grid-template-columns: 140px repeat(3, minmax(148px, 1fr));
  }

  .pricing-compare-row > strong,
  .pricing-compare-row > span {
    min-height: 0;
    padding: 12px 14px;
  }

  .pricing-compare-row-head {
    display: grid;
  }

  .pricing-compare-mobile-label {
    display: none;
  }

  .checkout-panel {
    padding: 24px;
  }

  .checkout-header-notes {
    gap: 8px;
  }

  .flow-stage {
    gap: 16px;
  }

  .flow-grid {
    gap: 12px;
  }

  .flow-card {
    padding: 18px;
  }

  .review-track {
    grid-auto-columns: calc(100% - 32px);
    gap: 14px;
    margin-top: 20px;
  }

  .review-card {
    min-height: 248px;
    gap: 14px;
    padding: 22px 20px 20px;
  }

  .journal-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(244px, 82%);
    gap: 12px;
    margin-top: 20px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .journal-card {
    min-height: 200px;
    padding: 18px;
    scroll-snap-align: start;
  }

  .journal-large,
  .journal-wide {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 220px;
  }

  .journal-large .journal-media,
  .journal-wide .journal-media {
    min-height: 0;
    aspect-ratio: 1 / 0.92;
  }

  .journal-grid::-webkit-scrollbar {
    display: none;
  }

  .faq-list {
    gap: 10px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 0;
  }

  .footer-business-card {
    padding: 18px;
    border-radius: 22px;
  }

  .footer-business-head,
  .footer-business-actions,
  .footer-utility-links {
    gap: 8px;
  }

  .footer-business-actions a,
  .footer-utility-links a {
    min-height: 40px;
    font-size: 0.9rem;
  }

  .lightbox-panel {
    width: min(100% - 16px, 1020px);
    margin-top: 8px;
    max-height: calc(100vh - 16px);
    padding: 18px;
    border-radius: 24px;
  }

  .lightbox-frame {
    padding: 10px;
  }

  .faq-question {
    padding: 18px 18px 16px;
  }

  .faq-answer {
    padding: 0 18px 18px;
  }

  .contact-section {
    gap: 18px;
  }

  .contact-copy {
    gap: 14px;
  }

  .contact-points {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(228px, 82%);
    gap: 10px;
    margin-top: 18px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .contact-point {
    padding: 14px 14px 15px;
    scroll-snap-align: start;
  }

  .contact-point strong {
    font-size: 0.96rem;
  }

  .contact-point p {
    font-size: 0.88rem;
    line-height: 1.58;
  }

  .contact-meta-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(180px, 58%);
    gap: 10px;
    margin-top: 16px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .contact-meta-card {
    padding: 14px;
    scroll-snap-align: start;
  }

  .contact-buttons {
    gap: 10px;
  }

  .contact-panel {
    padding: 18px;
  }

  .contact-form {
    gap: 12px;
  }

  .contact-form .field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-assurance {
    padding: 14px 16px;
  }

  .contact-assurance strong {
    font-size: 0.94rem;
  }

  .contact-assurance p {
    display: none;
  }

  .contact-assurance-list {
    margin-top: 10px;
  }

  .contact-points::-webkit-scrollbar,
  .contact-meta-grid::-webkit-scrollbar {
    display: none;
  }

  .sample-glance-section {
    gap: 20px;
    padding: 18px 0 4px;
  }

  .sample-cta-panel {
    padding: 22px 18px;
  }

  .sample-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .contact-form label span {
    margin-bottom: 6px;
    font-size: 0.9rem;
  }

  .selected-plan {
    gap: 5px;
    padding: 14px 16px;
  }

  .selected-plan strong {
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .privacy-note {
    font-size: 0.84rem;
    line-height: 1.68;
  }

  input,
  textarea {
    padding: 14px 15px;
  }

  textarea {
    min-height: 132px;
  }

  .mobile-cta-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
    display: block;
    padding: 10px;
    border-radius: 24px;
    background: rgba(255, 251, 247, 0.88);
    border: 1px solid rgba(31, 26, 23, 0.08);
    backdrop-filter: blur(18px);
    box-shadow: 0 16px 32px rgba(52, 38, 28, 0.12);
  }

  .admin-shell {
    width: min(100% - 24px, 1260px);
    padding-top: 18px;
  }

  .admin-header,
  .admin-card-head,
  .admin-alert-head,
  .admin-alert-foot {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-table {
    min-width: 640px;
  }

  .legal-card-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-actions {
    gap: 8px;
  }

  .legal-action-link {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .hero-section,
  .trust-band,
  .story-section,
  .services-section,
  .pricing-section,
  .flow-section,
  .reviews-section,
  .faq-section,
  .journal-section,
  .contact-section {
    padding: 44px 0;
  }

  .hero-stage {
    min-height: 430px;
  }

  .hero-path-grid {
    grid-auto-columns: minmax(220px, 88%);
  }

  .hero-metric-strip {
    grid-template-columns: 1fr;
  }

  .sample-glance-section,
  .pricing-section,
  .journal-section,
  .contact-section {
    padding: 24px 16px;
    border-radius: 24px;
  }

  .embed-frame {
    min-height: 520px;
  }

  .embed-preview-actions {
    grid-template-columns: 1fr;
  }

  .hero-notes {
    grid-template-columns: 1fr;
  }

  .pillar-grid {
    grid-auto-columns: minmax(204px, 82%);
  }

  .service-grid {
    grid-auto-columns: minmax(226px, 88%);
  }

  .pricing-grid {
    grid-auto-columns: minmax(270px, 92%);
  }

  .featured-offer-actions {
    grid-template-columns: 1fr;
  }

  .journal-grid {
    grid-auto-columns: minmax(226px, 88%);
  }

  .contact-points {
    grid-auto-columns: minmax(212px, 88%);
  }

  .contact-meta-grid {
    grid-auto-columns: minmax(164px, 70%);
  }

  .pricing-meta-grid {
    grid-template-columns: 1fr;
  }

  .pricing-compare-row {
    min-width: 560px;
    grid-template-columns: 124px repeat(3, minmax(136px, 1fr));
  }

  .review-track {
    grid-auto-columns: calc(100% - 20px);
  }
}

.hero-section {
  min-height: auto;
  grid-template-columns: 1fr;
  gap: 34px;
  padding-top: 72px;
}

.hero-copy {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero-actions,
.tag-row,
.hero-metric-strip,
.hero-proof-list {
  justify-content: center;
}

.hero-proof-card {
  width: min(100%, 720px);
  margin: 0 auto;
  padding: 28px 30px;
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(29, 29, 31, 0.06);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.04);
}

.hero-stage {
  width: min(100%, 920px);
  margin: 0 auto;
}

.offer-stack.is-single-focus {
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.74fr);
  grid-template-areas: "featured assurance";
}

.free-plan-note {
  padding: 24px;
  background: linear-gradient(180deg, rgba(245, 245, 247, 0.95), rgba(255, 255, 255, 0.98));
}

.featured-offer-card {
  padding: 36px 34px;
}

.featured-offer-head strong,
.pricing-card-free-focus .pricing-head strong,
.embed-preview-bottom-copy strong {
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.32;
  letter-spacing: -0.03em;
}

.pricing-section {
  display: grid;
  gap: 24px;
}

.pricing-grid-single {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.pricing-card-free-focus {
  gap: 22px;
  padding: 38px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 251, 0.94));
  border-color: rgba(8, 98, 67, 0.12);
  box-shadow: 0 18px 42px rgba(8, 98, 67, 0.08);
}

.sample-glance-section {
  gap: 24px;
}

.embed-showcase {
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: stretch;
}

.embed-showcase-copy {
  gap: 16px;
  padding-top: 14px;
}

.embed-showcase-copy strong {
  font-size: clamp(1.26rem, 1.8vw, 1.56rem);
  line-height: 1.42;
}

.embed-frame-panel {
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.05);
}

.embed-frame-toolbar {
  min-height: 54px;
  background: rgba(245, 245, 247, 0.96);
}

.embed-frame {
  min-height: 700px;
  background: #fff;
}

.embed-preview-page {
  background:
    radial-gradient(circle at top, rgba(8, 98, 67, 0.06), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
}

.embed-preview-shell {
  width: min(100% - 28px, 1020px);
  padding: 26px 0 36px;
  gap: 18px;
}

.embed-preview-hero,
.embed-preview-card,
.embed-preview-bottom {
  border-radius: 32px;
  border: 1px solid rgba(29, 29, 31, 0.06);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.04);
}

.embed-preview-hero {
  padding: 34px 34px 30px;
  text-align: center;
}

.embed-preview-hero h1 {
  max-width: 12ch;
  margin: 0 auto;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.14;
  letter-spacing: -0.05em;
}

.embed-preview-description {
  max-width: 56ch;
  margin: 0 auto;
}

.embed-preview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.embed-preview-card {
  padding: 24px;
}

.embed-preview-bottom {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 26px 28px;
}

.embed-preview-actions {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 12px;
}

@media (max-width: 980px) {
  .offer-stack.is-single-focus,
  .embed-showcase,
  .embed-preview-grid,
  .embed-preview-bottom {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 52px;
  }

  .embed-frame {
    min-height: 620px;
  }
}

@media (max-width: 640px) {
  .hero-proof-card,
  .featured-offer-card,
  .pricing-card-free-focus,
  .free-plan-note {
    padding: 22px 20px;
  }

  .embed-frame {
    min-height: 520px;
  }

.embed-preview-actions {
  grid-template-columns: 1fr;
}
}

/* 2026-04 Apple minimal public pages */
.homepage-page,
.checkout-page,
.legal-page,
.sample-page,
.embed-preview-page {
  background:
    radial-gradient(circle at top, rgba(8, 98, 67, 0.06), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
}

.homepage-page .site-header,
.homepage-page .hero-proof-card,
.homepage-page .featured-offer-card,
.homepage-page .pricing-card-free-focus,
.homepage-page .sample-glance-section,
.homepage-page .faq-section,
.homepage-page .contact-section,
.checkout-page .checkout-panel,
.checkout-page .checkout-progress-card,
.checkout-page .checkout-order-summary,
.checkout-page .checkout-receipt,
.checkout-page .checkout-support-card,
.legal-page .legal-header,
.legal-page .legal-card,
.sample-page .sample-hero,
.sample-page .sample-intro,
.sample-page .sample-card,
.sample-page .sample-note,
.sample-page .sample-cta-panel,
.sample-page .sample-glance-card,
.site-footer,
.footer-business-card {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(29, 29, 31, 0.06);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.04);
}

.homepage-page .tag-row,
.homepage-page .hero-proof-card,
.homepage-page .trust-band,
.homepage-page .offer-assurance-card.free-plan-note,
.homepage-page .featured-offer-footer,
.homepage-page .hero-mobile-offer,
.checkout-page .checkout-header-notes,
.checkout-page .checkout-confidence-grid,
.checkout-page .checkout-glance,
.checkout-page .checkout-note-box,
.embed-preview-page .embed-preview-pills,
.embed-preview-page .embed-preview-list {
  display: none;
}

.homepage-page .hero-section {
  min-height: auto;
  gap: 34px;
  padding-top: 52px;
}

.homepage-page .hero-copy {
  gap: 18px;
  max-width: 720px;
}

.homepage-page .hero-copy h1,
.checkout-page .checkout-header-copy h1,
.legal-page .legal-header-copy h1,
.sample-page .sample-hero h1 {
  letter-spacing: -0.05em;
}

.homepage-page .hero-description,
.homepage-page .hero-support,
.homepage-page .hero-footnote,
.homepage-page .section-description,
.checkout-page .checkout-header-copy p,
.legal-page .legal-header-copy p,
.sample-page .sample-description,
.sample-page .sample-intro p,
.sample-page .sample-note p {
  max-width: 40ch;
  color: #6e6e73;
}

.homepage-page .hero-stage {
  min-height: auto;
  width: min(100%, 760px);
  margin: 0 auto;
}

.homepage-page .offer-stack.is-single-focus {
  grid-template-columns: 1fr;
  grid-template-areas: "featured";
}

.homepage-page .featured-offer-card {
  padding: 30px 30px 28px;
}

.homepage-page .featured-offer-summary,
.homepage-page .featured-offer-price-note,
.homepage-page .sample-glance-list li,
.homepage-page .contact-point p,
.homepage-page .contact-assurance p,
.checkout-page .checkout-summary,
.checkout-page .checkout-process-list p,
.checkout-page .checkout-order-summary-grid span,
.checkout-page .checkout-privacy-note,
.legal-page .legal-card p,
.sample-page .sample-card strong + ol,
.embed-preview-page .embed-preview-description,
.embed-preview-page .embed-preview-card p {
  color: #6e6e73;
}

.homepage-page .sample-glance-section,
.homepage-page .faq-section,
.homepage-page .contact-section {
  gap: 22px;
  padding: 52px 48px;
}

.homepage-page .pricing-section {
  padding: 48px 48px 44px;
}

.homepage-page .pricing-utility-bar,
.homepage-page .sample-cta-actions,
.sample-page .sample-actions {
  justify-content: center;
}

.homepage-page .pricing-note,
.homepage-page .hero-footnote,
.homepage-page .contact-assurance-list,
.site-footer p,
.site-footer span {
  color: #6e6e73;
}

.homepage-page .contact-section {
  grid-template-columns: 1fr;
}

.homepage-page .contact-copy,
.homepage-page .contact-panel,
.homepage-page .faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.homepage-page .contact-copy {
  text-align: center;
}

.homepage-page .contact-buttons,
.homepage-page .contact-meta-grid {
  justify-content: center;
}

.homepage-page .contact-meta-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.checkout-page .checkout-shell,
.legal-page .legal-shell,
.sample-page .sample-shell,
.embed-preview-page .embed-preview-shell {
  width: min(1080px, calc(100% - 40px));
}

.checkout-page .checkout-shell {
  padding: 32px 0 56px;
}

.checkout-page .checkout-header {
  gap: 16px;
  margin-bottom: 26px;
}

.checkout-page .checkout-header-copy,
.legal-page .legal-header-copy,
.sample-page .sample-hero {
  max-width: 720px;
}

.checkout-page .checkout-grid {
  gap: 22px;
}

.checkout-page .checkout-process-list {
  gap: 12px;
}

.checkout-page .checkout-process-list article,
.checkout-page .checkout-order-summary-grid article,
.checkout-page .payment-provider-card {
  background: #ffffff;
  border: 1px solid rgba(29, 29, 31, 0.06);
  box-shadow: none;
}

.checkout-page .checkout-order-summary-grid,
.checkout-page .checkout-receipt-grid {
  gap: 10px;
}

.checkout-page .payment-provider-grid {
  gap: 10px;
}

.checkout-page .checkout-form,
.homepage-page .contact-form {
  gap: 16px;
}

.legal-page .legal-header-points {
  gap: 6px;
}

.legal-page .legal-actions {
  gap: 8px;
}

.sample-page .sample-glance-grid {
  gap: 14px;
}

.sample-page .sample-grid {
  gap: 14px;
}

.sample-page .sample-card,
.sample-page .sample-glance-card {
  padding: 22px;
}

.embed-preview-page .embed-preview-shell {
  padding: 18px 0 28px;
  gap: 14px;
}

.embed-preview-home-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
}

.embed-preview-brand {
  min-width: 0;
}

.embed-preview-home-nav,
.embed-preview-home-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.embed-preview-home-nav {
  justify-content: center;
}

.embed-preview-home-nav a {
  color: #6e6e73;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 180ms ease;
}

.embed-preview-home-nav a:hover,
.embed-preview-home-nav a:focus-visible {
  color: #1d1d1f;
}

.embed-preview-home-actions {
  justify-content: flex-end;
}

.embed-preview-home-link,
.embed-preview-home-cta {
  white-space: nowrap;
}

.embed-preview-banner {
  display: grid;
  gap: 8px;
  padding: 0 8px;
}

.embed-preview-banner-copy {
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
}

.embed-preview-banner-copy span {
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.embed-preview-banner-copy strong {
  font-size: 0.98rem;
  line-height: 1.56;
  letter-spacing: -0.02em;
  color: #1d1d1f;
  word-break: keep-all;
}

.embed-preview-page .embed-preview-hero {
  padding: 30px 28px 24px;
}

.embed-preview-page .embed-preview-grid {
  gap: 14px;
}

.embed-preview-page .embed-preview-card {
  padding: 20px;
}

.embed-preview-page .embed-preview-bottom {
  padding: 22px 24px;
}

.hero-section-compact {
  padding-bottom: 48px;
}

.home-shortcuts-section {
  margin-top: 40px;
  padding: 40px 0 84px;
}

.home-shortcuts-heading {
  margin-bottom: 26px;
}

.home-shortcuts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-shortcut-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.06);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home-shortcut-card strong {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.35;
  color: #0f172a;
}

.home-shortcut-card p {
  margin: 0;
  color: #475569;
  line-height: 1.7;
}

.home-shortcut-card .secondary-button {
  width: fit-content;
  margin-top: auto;
}

.home-support-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.home-support-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.9);
  color: #334155;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}

.home-support-strip a:hover,
.home-support-strip a:focus-visible {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(8, 98, 67, 0.18);
  color: var(--primary);
}

.seo-resource-section,
.seo-faq-section,
.seo-related-section {
  margin-top: 36px;
  padding-bottom: 24px;
}

.seo-resource-grid,
.seo-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.seo-landing-hero {
  margin-top: 18px;
}

.seo-landing-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.seo-landing-summary article {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
}

.seo-landing-summary span {
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 700;
}

.seo-landing-summary strong {
  color: #0f172a;
  font-size: 1.12rem;
}

.seo-landing-summary p {
  margin: 0;
  color: #475569;
  line-height: 1.7;
}

.seo-landing-grid {
  margin-top: 24px;
}

.home-embed-note {
  margin: 14px 2px 0;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.7;
}

.contact-request-page {
  background:
    radial-gradient(circle at top, rgba(247, 248, 251, 0.94), rgba(241, 245, 249, 0.96) 38%, rgba(255, 255, 255, 1) 78%);
  color: #0f172a;
}

.contact-request-main {
  width: min(1120px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 132px 0 88px;
}

.contact-request-hero {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 34px;
}

.contact-request-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.contact-request-hero p:last-of-type {
  margin: 16px 0 0;
  color: #475569;
  line-height: 1.8;
}

.contact-request-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.contact-section-standalone {
  margin-top: 0;
}

.faq-section-standalone {
  padding-top: 48px;
}

.support-page .legal-header {
  gap: 18px;
  padding: 42px;
}

.support-page .legal-header-copy {
  max-width: 780px;
}

.support-page .legal-header-copy h1 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.support-page .legal-header-copy p {
  max-width: 44ch;
}

.legal-grid-support {
  display: grid;
  gap: 22px;
  margin-top: 24px;
}

.support-hub-hero,
.support-action-card,
.support-tool-card,
.support-topic-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(29, 29, 31, 0.06);
  border-radius: 30px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.04);
}

.support-hub-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 18px;
  padding: 32px;
}

.support-hub-copy h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #1d1d1f;
}

.support-hub-copy p:last-child {
  margin: 16px 0 0;
  color: #6e6e73;
  line-height: 1.8;
  max-width: 36ch;
}

.support-tool-grid,
.support-action-grid,
.support-topic-grid {
  display: grid;
  gap: 18px;
}

.support-tool-grid,
.support-topic-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.support-action-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.support-tool-card,
.support-action-card,
.support-topic-card {
  padding: 26px;
}

.support-tool-card span,
.support-topic-head .legal-card-index,
.support-action-card .eyebrow {
  color: var(--primary);
}

.support-tool-card span {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.support-tool-card strong,
.support-action-card strong,
.support-topic-card h2 {
  display: block;
  margin-top: 10px;
  color: #1d1d1f;
  font-size: 1.2rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.support-tool-card p,
.support-action-card p,
.support-topic-card p {
  margin: 12px 0 0;
  color: #6e6e73;
  line-height: 1.78;
}

.support-tool-card a,
.support-action-card .legal-action-link {
  margin-top: 18px;
}

.support-tool-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(8, 98, 67, 0.12);
  background: rgba(8, 98, 67, 0.08);
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.support-tool-card a:hover,
.support-tool-card a:focus-visible {
  background: rgba(8, 98, 67, 0.12);
  border-color: rgba(8, 98, 67, 0.18);
}

.support-topic-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.support-topic-head h2 {
  margin: 0;
}

@media (max-width: 960px) {
  .homepage-page .sample-glance-section,
  .homepage-page .faq-section,
  .homepage-page .contact-section,
  .homepage-page .pricing-section {
    padding: 28px 22px;
  }

  .homepage-page .contact-meta-grid,
  .sample-page .sample-glance-grid,
  .embed-preview-page .embed-preview-grid {
    grid-template-columns: 1fr;
  }

  .checkout-page .checkout-grid,
  .homepage-page .contact-section {
    grid-template-columns: 1fr;
  }

  .embed-preview-home-banner {
    grid-template-columns: 1fr;
    justify-items: center;
    border-radius: 28px;
    padding: 16px;
  }

  .embed-preview-home-nav,
  .embed-preview-home-actions {
    justify-content: center;
  }

  .home-shortcuts-grid,
  .seo-resource-grid,
  .seo-faq-grid,
  .seo-landing-summary {
    grid-template-columns: 1fr;
  }

  .contact-request-main {
    width: min(100vw - 28px, 760px);
    padding: 112px 0 72px;
  }

  .support-page .legal-header {
    padding: 28px 22px;
  }

  .support-hub-hero,
  .support-tool-grid,
  .support-action-grid,
  .support-topic-grid {
    grid-template-columns: 1fr;
  }
}

/* 2026-04 Apple-like support hub refinement */
.support-page .legal-shell {
  width: var(--content-width);
  padding: 32px 0 84px;
}

.support-page .site-header {
  margin-bottom: 36px;
}

.support-page .legal-grid-support {
  display: grid;
  gap: 40px;
  margin-top: 0;
}

.support-page-hero,
.support-page .support-section {
  border-radius: 36px;
  border: 1px solid rgba(29, 29, 31, 0.06);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.04);
}

.support-page-hero {
  display: grid;
  gap: 20px;
  justify-items: center;
  padding: clamp(44px, 6vw, 72px);
  text-align: center;
}

.support-page-hero-copy {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.support-page-hero-copy h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5.2vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.support-page-hero-copy p:last-child,
.support-section-head p {
  margin: 0;
  color: #6e6e73;
  line-height: 1.8;
}

.support-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.support-page .support-section {
  display: grid;
  gap: 20px;
  padding: 38px;
}

.support-section-head {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.support-section-head h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.support-page .support-action-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.support-page .support-tool-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.support-page .support-topic-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.support-page .support-action-card,
.support-page .support-tool-card,
.support-page .support-topic-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding: 28px;
  border-radius: 32px;
  border: 1px solid rgba(29, 29, 31, 0.06);
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
}

.support-action-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(8, 98, 67, 0.08);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.support-page .support-action-card strong,
.support-page .support-tool-card strong,
.support-page .support-topic-card h2 {
  margin: 0;
  color: #1d1d1f;
  font-size: 1.32rem;
  line-height: 1.32;
  letter-spacing: -0.03em;
}

.support-page .support-action-card p,
.support-page .support-tool-card p,
.support-page .support-topic-card p {
  margin: 0;
  color: #6e6e73;
  line-height: 1.76;
}

.support-page .support-tool-card a,
.support-page .support-action-card .legal-action-link {
  margin-top: auto;
}

.support-page .support-tool-card span,
.support-page .support-topic-head .legal-card-index {
  background: rgba(8, 98, 67, 0.08);
  color: var(--primary);
}

.support-page .support-topic-head {
  align-items: flex-start;
}

.support-page .support-topic-head .legal-card-index {
  min-width: 50px;
}

@media (max-width: 1180px) {
  .support-page .support-action-grid,
  .support-page .support-tool-grid,
  .support-page .support-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .support-page .legal-shell {
    width: min(100% - 24px, 1280px);
    padding-top: 12px;
  }

  .support-page-hero {
    padding: 28px 22px;
  }

  .support-page .support-section {
    padding: 24px 20px;
  }

  .support-page .support-action-grid,
  .support-page .support-tool-grid,
  .support-page .support-topic-grid {
    grid-template-columns: 1fr;
  }

  .support-hero-actions {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* 2026-04 public-education homepage audit fixes */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.homepage-page *,
.contact-request-page *,
.legal-page *,
.sample-page *,
.embed-preview-page * {
  min-width: 0;
}

.homepage-page .featured-offer-card {
  position: relative;
}

.homepage-page .featured-offer-card .pricing-badge {
  position: static;
  white-space: nowrap;
}

.homepage-page .featured-offer-topline,
.homepage-page .featured-offer-head,
.homepage-page .sample-cta-actions,
.homepage-page .home-support-strip,
.contact-request-page .contact-request-links,
.legal-page .legal-actions,
.site-header .site-nav {
  min-width: 0;
}

.homepage-page .hero-copy h1,
.homepage-page .heading-copy h2,
.contact-request-page .contact-request-hero h1,
.legal-page .legal-header-copy h1,
.sample-page .sample-hero h1,
.embed-preview-page .embed-preview-title {
  overflow-wrap: anywhere;
  word-break: keep-all;
  text-wrap: balance;
}

.homepage-page .hero-description,
.homepage-page .hero-support,
.homepage-page .hero-footnote,
.homepage-page .section-description,
.contact-request-page .contact-request-hero p,
.contact-request-page .contact-point p,
.contact-request-page .contact-meta-card strong,
.legal-page .legal-header-copy p,
.legal-page .legal-card p,
.site-footer p,
.site-footer span {
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  :root {
    --content-width: calc(100vw - 24px);
  }

  .page-shell,
  .checkout-page .checkout-shell,
  .legal-page .legal-shell,
  .sample-page .sample-shell,
  .embed-preview-page .embed-preview-shell,
  .contact-request-main {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    overflow: hidden;
  }

  .homepage-page main,
  .homepage-page .hero-section,
  .homepage-page .sample-glance-section,
  .homepage-page .pricing-section,
  .homepage-page .faq-section,
  .homepage-page .contact-section,
  .homepage-page .home-shortcuts-section,
  .homepage-page .seo-resource-section,
  .seo-landing-page .seo-faq-section,
  .seo-landing-page .seo-related-section {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
  }

  .site-header {
    width: 100%;
    overflow: hidden;
  }

  .site-header-actions {
    gap: 6px;
  }

  .auth-button,
  .header-button {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.86rem;
  }

  .auth-account {
    display: none;
  }

  .site-header .site-nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
  }

  .brand-lockup strong {
    overflow-wrap: anywhere;
  }

  .homepage-page .hero-section {
    padding-top: 42px;
  }

  .homepage-page .hero-copy,
  .homepage-page .section-heading,
  .homepage-page .heading-copy,
  .homepage-page .embed-showcase-copy,
  .homepage-page .embed-frame-panel,
  .contact-request-page .contact-request-hero,
  .legal-page .legal-header-copy,
  .sample-page .sample-hero {
    width: 100% !important;
    max-width: 100% !important;
  }

  .homepage-page .hero-copy h1,
  .homepage-page .heading-copy h2,
  .contact-request-page .contact-request-hero h1,
  .legal-page .legal-header-copy h1 {
    font-size: clamp(1.9rem, 8.8vw, 2.55rem) !important;
    line-height: 1.18 !important;
    letter-spacing: -0.045em !important;
    max-width: 11ch;
    margin-left: auto;
    margin-right: auto;
    white-space: normal !important;
  }

  .homepage-page .hero-copy h1 {
    max-width: 9.8ch;
  }

  .homepage-page .heading-copy h2 {
    max-width: 10.5ch;
  }

  .homepage-page .hero-description,
  .homepage-page .hero-support,
  .homepage-page .hero-footnote,
  .homepage-page .section-description,
  .contact-request-page .contact-request-hero p,
  .legal-page .legal-header-copy p {
    width: 100% !important;
    justify-self: stretch !important;
    max-width: 100% !important;
    font-size: 0.98rem;
    line-height: 1.76;
    white-space: normal !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
  }

  .homepage-page .embed-showcase-copy > strong,
  .homepage-page .embed-showcase-copy > p,
  .homepage-page .sample-glance-list,
  .homepage-page .sample-glance-list li,
  .homepage-page .home-embed-note,
  .homepage-page .home-shortcut-card,
  .homepage-page .home-shortcut-card p,
  .homepage-page .home-shortcut-card strong {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
  }

  .homepage-page .primary-button,
  .homepage-page .secondary-button,
  .contact-request-page .primary-button,
  .contact-request-page .secondary-button,
  .legal-page .primary-button,
  .legal-page .secondary-button {
    white-space: nowrap !important;
  }

  .homepage-page .hero-actions,
  .homepage-page .featured-offer-actions,
  .homepage-page .sample-cta-actions,
  .homepage-page .home-support-strip,
  .contact-request-page .contact-request-links,
  .legal-page .legal-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .homepage-page .hero-actions > *,
  .homepage-page .featured-offer-actions > *,
  .homepage-page .sample-cta-actions > *,
  .homepage-page .home-support-strip > *,
  .contact-request-page .contact-request-links > *,
  .legal-page .legal-actions > * {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .homepage-page .hero-metric-strip,
  .contact-request-page .contact-points,
  .contact-request-page .contact-meta-grid,
  .homepage-page .contact-points,
  .homepage-page .contact-meta-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-auto-flow: row !important;
    grid-auto-columns: auto !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
    padding-bottom: 0 !important;
  }

  .homepage-page .sample-glance-section,
  .homepage-page .faq-section,
  .homepage-page .contact-section,
  .homepage-page .pricing-section,
  .legal-page .legal-header,
  .legal-page .legal-card,
  .contact-request-page .contact-panel,
  .contact-request-page .contact-assurance {
    padding-left: 18px !important;
    padding-right: 18px !important;
    border-radius: 24px !important;
  }

  .contact-request-page .field-grid,
  .checkout-page .field-grid,
  .homepage-page .field-grid {
    grid-template-columns: 1fr !important;
  }

  .contact-request-page input,
  .contact-request-page textarea,
  .checkout-page input,
  .checkout-page textarea,
  .homepage-page input,
  .homepage-page textarea {
    width: 100%;
  }

  .embed-frame-panel,
  .embed-frame {
    max-width: 100%;
  }

  .mobile-cta-bar {
    left: 10px;
    right: 10px;
  }
}


/* 2026-05 CLED public page unification */
/* 2026-05-20: C1 일원화 — design-tokens.css 의 단일 색 정의로 alias. */
:root {
  --cled-green: var(--primary);
  --cled-green-deep: var(--primary-deep);
  --cled-charcoal: #30352f;
  --cled-ink: #10140f;
  --cled-muted: #5f675f;
  --cled-paper: #fffdf6;
  --cled-white: #fffef9;
  --cled-bg: #f4f1e8;
  --cled-line: #ded8ca;
  --cled-gold: var(--accent-amber);
}

.contact-request-page,
.legal-page,
.checkout-page,
.sample-page,
.seo-landing-page,
.admin-page,
.embed-preview-page {
  background: linear-gradient(180deg, #fbfaf4 0%, var(--cled-bg) 62%, #ece6d8 100%) !important;
  color: var(--cled-ink) !important;
}

.contact-request-page body::before,
.legal-page body::before,
.checkout-page body::before,
.sample-page body::before,
.seo-landing-page body::before,
.admin-page body::before {
  display: none !important;
}

.contact-request-page .site-header,
.legal-page .site-header,
.checkout-page .site-header,
.sample-page .site-header,
.seo-landing-page .site-header,
.admin-page .site-header,
.embed-preview-page .site-header {
  background: rgba(255, 253, 246, 0.94) !important;
  border: 1px solid var(--cled-line) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.contact-request-page .site-logo,
.legal-page .site-logo,
.checkout-page .site-logo,
.sample-page .site-logo,
.seo-landing-page .site-logo,
.admin-page .site-logo,
.embed-preview-page .site-logo,
.contact-request-page .brand-signature,
.legal-page .brand-signature,
.checkout-page .brand-signature,
.sample-page .brand-signature,
.seo-landing-page .brand-signature {
  color: var(--cled-green) !important;
}

.contact-request-page .site-nav a,
.legal-page .site-nav a,
.checkout-page .site-nav a,
.sample-page .site-nav a,
.seo-landing-page .site-nav a,
.admin-page .site-nav a,
.embed-preview-page .site-nav a {
  color: var(--cled-ink) !important;
}

.contact-request-hero,
.legal-header,
.seo-landing-hero,
.support-page-hero,
.checkout-header,
.sample-hero,
.embed-preview-hero {
  border-radius: 0 !important;
  border: 1px solid var(--cled-line) !important;
  background: linear-gradient(112deg, var(--cled-green) 0%, var(--cled-green-deep) 58%, var(--cled-charcoal) 100%) !important;
  color: #fff !important;
  box-shadow: none !important;
}

.contact-request-hero,
.legal-header,
.seo-landing-hero,
.support-page-hero,
.sample-hero {
  padding: clamp(44px, 6vw, 72px) !important;
}

/* CLED global top banner: match the homepage product header across all public pages. */
.contact-request-page .site-header,
.legal-page .site-header,
.checkout-page .site-header,
.sample-page .site-header,
.seo-landing-page .site-header,
.admin-page .site-header,
.embed-preview-page .site-header {
  position: static !important;
  top: auto !important;
  height: 70px !important;
  display: grid !important;
  grid-template-columns: 180px 1fr 140px !important;
  align-items: center !important;
  gap: 0 !important;
  padding: 0 36px !important;
  border: 1px solid var(--cled-line) !important;
  border-radius: 0 !important;
  background: var(--cled-paper) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  transform: none !important;
}

.contact-request-page .brand-lockup,
.legal-page .brand-lockup,
.checkout-page .brand-lockup,
.sample-page .brand-lockup,
.seo-landing-page .brand-lockup,
.admin-page .brand-lockup,
.embed-preview-page .brand-lockup {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0 !important;
  min-width: 0 !important;
}

.contact-request-page .brand-lockup strong,
.legal-page .brand-lockup strong,
.checkout-page .brand-lockup strong,
.sample-page .brand-lockup strong,
.seo-landing-page .brand-lockup strong,
.admin-page .brand-lockup strong,
.embed-preview-page .brand-lockup strong {
  color: var(--cled-ink) !important;
  font-size: 17px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: -0.06em !important;
}

.contact-request-page .site-nav,
.legal-page .site-nav,
.checkout-page .site-nav,
.sample-page .site-nav,
.seo-landing-page .site-nav,
.admin-page .site-nav,
.embed-preview-page .site-nav {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 32px !important;
}

.contact-request-page .site-nav a,
.legal-page .site-nav a,
.checkout-page .site-nav a,
.sample-page .site-nav a,
.seo-landing-page .site-nav a,
.admin-page .site-nav a,
.embed-preview-page .site-nav a {
  color: var(--cled-ink) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: -0.035em !important;
}

.contact-request-page .header-button,
.legal-page .header-button,
.checkout-page .header-button,
.sample-page .header-button,
.seo-landing-page .header-button,
.admin-page .header-button,
.embed-preview-page .header-button {
  justify-self: end !important;
  min-height: 0 !important;
  height: 38px !important;
  padding: 0 18px !important;
  border: 1px solid var(--cled-line) !important;
  border-radius: 999px !important;
  background: var(--cled-white) !important;
  color: var(--cled-green) !important;
  box-shadow: none !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: -0.035em !important;
  transform: none !important;
}

@media(max-width: 760px) {
  .contact-request-page .site-header,
  .legal-page .site-header,
  .checkout-page .site-header,
  .sample-page .site-header,
  .seo-landing-page .site-header,
  .admin-page .site-header,
  .embed-preview-page .site-header {
    grid-template-columns: 1fr auto !important;
    padding: 0 22px !important;
  }

  .contact-request-page .site-nav,
  .legal-page .site-nav,
  .checkout-page .site-nav,
  .sample-page .site-nav,
  .seo-landing-page .site-nav,
  .admin-page .site-nav,
  .embed-preview-page .site-nav {
    display: none !important;
  }
}

.checkout-header {
  padding: 32px !important;
}

.contact-request-hero h1,
.legal-header-copy h1,
.support-page-hero-copy h1,
.checkout-header-copy h1,
.sample-hero h1,
.seo-landing-hero h1 {
  color: #fff !important;
  font-size: clamp(2.6rem, 5.6vw, 5rem) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.08em !important;
  max-width: 11.5ch;
}

.contact-request-hero p,
.legal-header-copy p,
.support-page-hero-copy p,
.checkout-header-copy p,
.sample-hero p,
.seo-landing-hero p {
  color: rgba(255,255,255,0.82) !important;
  max-width: 44ch !important;
}

.eyebrow,
.contact-point-label,
.legal-card-index,
.support-action-badge,
.support-tool-card span,
.seo-landing-summary span,
.checkout-process-list span,
.checkout-confidence-grid span,
.checkout-glance span,
.checkout-order-summary-grid span {
  color: var(--cled-green) !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase;
}

.legal-header .eyebrow,
.support-page-hero .eyebrow,
.contact-request-hero .eyebrow,
.checkout-header .eyebrow,
.seo-landing-hero .eyebrow,
.sample-hero .eyebrow {
  color: rgba(255,255,255,0.78) !important;
}

.contact-section,
.contact-panel,
.contact-point,
.contact-meta-card,
.contact-assurance,
.faq-section,
.faq-item,
.legal-card,
.support-section,
.support-action-card,
.support-tool-card,
.support-topic-card,
.seo-landing-summary article,
.home-shortcut-card,
.checkout-panel,
.checkout-progress-card,
.checkout-order-summary,
.checkout-receipt,
.checkout-support-card,
.checkout-guide-card,
.checkout-note-box,
.checkout-process-list article,
.checkout-glance article,
.checkout-order-summary-grid article,
.payment-provider-card,
.sample-intro,
.sample-card,
.sample-note,
.sample-cta-panel,
.sample-glance-card,
.embed-preview-card {
  border-radius: 0 !important;
  background: var(--cled-paper) !important;
  border: 1px solid var(--cled-line) !important;
  box-shadow: none !important;
  color: var(--cled-ink) !important;
}

.contact-request-main,
.legal-shell,
.checkout-shell,
.sample-shell,
.embed-preview-shell {
  width: min(1180px, calc(100vw - 40px)) !important;
}

.contact-request-main {
  padding-top: 32px !important;
}

.legal-shell,
.checkout-shell,
.sample-shell,
.embed-preview-shell {
  padding-top: 24px !important;
}

.contact-request-page .contact-section,
.legal-grid,
.legal-grid-support,
.seo-landing-grid,
.checkout-grid,
.sample-grid {
  margin-top: 24px !important;
}

.contact-request-page h2,
.legal-card h2,
.support-section-head h2,
.support-topic-card h2,
.checkout-panel h2,
.checkout-section-head strong,
.sample-card strong,
.seo-faq-section h2,
.seo-related-section h2,
.heading-copy h2 {
  color: var(--cled-ink) !important;
  letter-spacing: -0.045em !important;
}

.contact-request-page p,
.contact-request-page li,
.legal-page p,
.legal-page li,
.checkout-page p,
.checkout-page li,
.sample-page p,
.sample-page li,
.seo-landing-page p,
.seo-landing-page li {
  color: var(--cled-muted) !important;
}

.legal-card-head,
.support-topic-head,
.checkout-section-head,
.checkout-order-summary-head,
.checkout-receipt-head,
.support-section-head,
.section-heading {
  border-color: var(--cled-line) !important;
}

.legal-action-link,
.primary-button,
.secondary-button,
.contact-link,
.checkout-back,
.support-tool-card a,
.home-support-strip a {
  border-radius: 999px !important;
  border: 1px solid rgba(8,98,67,0.18) !important;
  background: #fffdf6 !important;
  color: var(--cled-green) !important;
  box-shadow: none !important;
  font-weight: 800 !important;
}

.primary-button,
.contact-link-primary,
.legal-action-link:first-child,
.checkout-page .primary-button {
  background: var(--cled-green) !important;
  color: #fff !important;
  border-color: var(--cled-green) !important;
}

input,
textarea,
select {
  border-radius: 0 !important;
  border: 1px solid #cfc7b8 !important;
  background: #fffef9 !important;
  color: var(--cled-ink) !important;
  box-shadow: none !important;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--cled-green) !important;
  box-shadow: 0 0 0 3px rgba(8,98,67,0.10) !important;
  transform: none !important;
}

.legal-header-points span,
.contact-assurance-list span,
.checkout-inline-assurance span,
.seo-landing-summary article,
.support-action-badge,
.legal-card-index {
  background: #eef2e9 !important;
  border: 1px solid rgba(8,98,67,0.12) !important;
  color: var(--cled-green) !important;
}

.site-footer,
.footer-business-card {
  border-radius: 0 !important;
  background: var(--cled-paper) !important;
  border: 1px solid var(--cled-line) !important;
  box-shadow: none !important;
}

.site-footer p,
.site-footer span,
.footer-business-card p {
  color: var(--cled-muted) !important;
}

@media (max-width: 760px) {
  .contact-request-main,
  .legal-shell,
  .checkout-shell,
  .sample-shell,
  .embed-preview-shell {
    width: calc(100vw - 24px) !important;
  }
  .contact-request-hero,
  .legal-header,
  .seo-landing-hero,
  .support-page-hero,
  .checkout-header,
  .sample-hero {
    padding: 28px 20px !important;
  }
  .contact-request-hero h1,
  .legal-header-copy h1,
  .support-page-hero-copy h1,
  .checkout-header-copy h1,
  .sample-hero h1,
  .seo-landing-hero h1 {
    font-size: 2.55rem !important;
    max-width: none;
  }
}

/* 2026 typography system: CLED public pages */
:root{
  --font-sans:"Pretendard","Noto Sans KR","Malgun Gothic",system-ui,sans-serif;
  --type-display:clamp(3.2rem,5.7vw,5rem);
  --type-hero:clamp(2.9rem,4.8vw,4.3rem);
  --type-section:clamp(2.05rem,3.3vw,3.05rem);
  --type-card-title:clamp(1.25rem,1.75vw,1.65rem);
  --type-body-lg:clamp(1.02rem,1.2vw,1.14rem);
  --type-body:1rem;
  --type-small:.875rem;
  --type-caption:.75rem;
  --leading-tight:1.05;
  --leading-title:1.15;
  --leading-card:1.35;
  --leading-body:1.7;
  --tracking-display:-.056em;
  --tracking-title:-.042em;
  --tracking-card:-.03em;
  --tracking-body:-.01em;
  --tracking-label:.075em;
}
body{font-family:var(--font-sans);letter-spacing:var(--tracking-body);line-height:var(--leading-body);overflow-wrap:break-word}
.eyebrow,.brand-signature,.legal-card-index,.contact-point-label,.contact-meta-card span,.journal-card span,.service-copy p,.keyword-row span,.pillar-number,.flow-step,.review-score span,.review-meta span{font-size:var(--type-caption);line-height:1.35;letter-spacing:var(--tracking-label);font-weight:700;text-transform:none}
.brand-lockup strong{font-weight:800;letter-spacing:-.025em}.site-nav a{font-weight:600;letter-spacing:-.006em}.header-button,.auth-button,.primary-button,.legal-action-link,.contact-link{font-weight:800;letter-spacing:-.018em}
.hero-title,.home-hero h1,.legal-header h1,.contact-request-hero h1,.seo-landing-hero h1{font-size:var(--type-hero);line-height:var(--leading-tight);letter-spacing:var(--tracking-display);font-weight:800;text-wrap:balance}
.section-heading h2,.legal-card h2,.support-section h2,.contact-section h2,.faq-section h2,.seo-faq-section h2,.seo-related-section h2,.home-section h2{font-size:var(--type-section);line-height:var(--leading-title);letter-spacing:var(--tracking-title);font-weight:800;text-wrap:balance}
.home-shortcut-card h3,.faq-question span,.contact-point strong,.contact-meta-card strong,.legal-card-head h2,.support-topic-head h2,.support-action-card strong,.support-tool-card strong{font-size:var(--type-card-title);line-height:var(--leading-card);letter-spacing:var(--tracking-card);font-weight:700}
.hero-description,.section-description,.legal-header p,.legal-card p,.support-section p,.contact-request-hero p,.contact-point p,.faq-answer p,.seo-landing-summary p,.home-shortcut-card p,.site-footer p,.site-footer span{font-size:var(--type-body);line-height:var(--leading-body);font-weight:400;letter-spacing:var(--tracking-body)}
.legal-header p,.contact-request-hero p{font-size:var(--type-body-lg);font-weight:500}.field-grid label span,.contact-form label span{font-size:var(--type-small);font-weight:700;letter-spacing:-.01em}
@media(max-width:560px){:root{--type-hero:clamp(2.45rem,11vw,3.2rem);--type-section:clamp(1.8rem,7.5vw,2.28rem);--type-card-title:1.22rem}.legal-header h1,.contact-request-hero h1,.seo-landing-hero h1{letter-spacing:-.05em}}

/* Public writing tools: external CSS only, because production CSP blocks inline styles. */
.public-tools-page {
  --tool-green: #086243;
  --tool-green-deep: #064d35;
  --tool-mint: #e8f1e8;
  --tool-paper: #fffdf7;
  --tool-ink: #1d1f1d;
  --tool-muted: #626862;
  --tool-line: #ded8cc;
  --tool-shadow: 0 20px 60px rgba(33, 38, 31, 0.08);
  background: linear-gradient(180deg, #fbfbfd 0%, #f7f7f3 48%, #f2efe7 100%);
  color: var(--tool-ink);
  letter-spacing: 0;
}

.public-tools-page .tool-shell {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 46px 0 86px;
}

.public-tools-page.public-seteuk-page .tool-shell {
  width: min(980px, calc(100% - 40px));
}

.public-tools-page .tool-hero {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
  padding: 30px;
  border: 1px solid rgba(8, 98, 67, 0.16);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #f7fbf4 64%, #edf5ea 100%);
  box-shadow: var(--tool-shadow);
}

.public-tools-page .tool-eyebrow {
  margin: 0;
  color: var(--tool-green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
}

.public-tools-page .tool-shell h1 {
  margin: 0;
  color: var(--tool-ink);
  font-size: 2.55rem;
  line-height: 1.12;
  font-weight: 850;
  letter-spacing: 0;
}

.public-tools-page .tool-lead {
  max-width: 68ch;
  margin: 0;
  color: var(--tool-muted);
  font-size: 1.06rem;
  line-height: 1.72;
  letter-spacing: 0;
}

.public-tools-page .tool-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.public-tools-page .tool-badges span,
.public-tools-page .tcard .badge,
.public-tools-page .score {
  border: 1px solid rgba(8, 98, 67, 0.16);
  border-radius: 999px;
  background: #fffef9;
  color: var(--tool-green-deep);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  padding: 6px 10px;
}

.public-tools-page .tool-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.public-tools-page .tcard,
.public-tools-page .tool-card {
  border: 1px solid var(--tool-line);
  border-radius: 8px;
  background: var(--tool-paper);
  box-shadow: var(--tool-shadow);
}

.public-tools-page .tool-link-card {
  display: flex;
  min-height: 236px;
  flex-direction: column;
  padding: 26px;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.public-tools-page .tool-link-card:hover,
.public-tools-page .tool-link-card:focus-visible {
  border-color: rgba(8, 98, 67, 0.36);
  box-shadow: 0 24px 70px rgba(33, 38, 31, 0.12);
  transform: translateY(-2px);
}

.public-tools-page .tcard h2 {
  margin: 16px 0 8px;
  color: var(--tool-ink);
  font-size: 1.42rem;
  line-height: 1.35;
  font-weight: 850;
  letter-spacing: 0;
}

.public-tools-page .tcard p {
  flex: 1;
  margin: 0 0 20px;
  color: var(--tool-muted);
  font-size: 1rem;
  line-height: 1.72;
  letter-spacing: 0;
}

.public-tools-page .tcard .go {
  color: var(--tool-green);
  font-size: 1rem;
  font-weight: 850;
}

.public-tools-page .pii-lock {
  margin-top: 18px;
  padding: 13px 15px;
  border: 1px dashed rgba(8, 98, 67, 0.22);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.78);
  color: var(--tool-muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.public-tools-page .steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}

.public-tools-page .steps .s {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(29, 31, 29, 0.52);
  font-size: 0.9rem;
  font-weight: 750;
}

.public-tools-page .steps .s.active {
  color: var(--tool-green);
}

.public-tools-page .steps .n {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: #e6e1d7;
  color: var(--tool-ink);
  font-size: 0.78rem;
  font-weight: 850;
}

.public-tools-page .steps .s.active .n {
  background: var(--tool-green);
  color: #fff;
}

.public-tools-page .steps .sep {
  color: #a49d8f;
}

.public-tools-page .notice {
  margin-bottom: 22px;
  padding: 14px 16px;
  border: 1px solid rgba(8, 98, 67, 0.15);
  border-radius: 8px;
  background: rgba(232, 241, 232, 0.82);
  color: var(--tool-ink);
  font-size: 0.92rem;
  line-height: 1.65;
}

.public-tools-page .notice b {
  color: var(--tool-green-deep);
}

.public-tools-page .tool-card {
  padding: 28px;
  margin-bottom: 22px;
}

.public-tools-page .field {
  margin-bottom: 16px;
}

.public-tools-page .field label {
  display: block;
  margin-bottom: 7px;
  color: var(--tool-ink);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
}

.public-tools-page .field .hint {
  margin-top: 6px;
  color: var(--tool-muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.public-tools-page .field textarea,
.public-tools-page .field input,
.public-tools-page .field select {
  width: 100% !important;
  border: 1px solid #cfc7b8 !important;
  border-radius: 8px !important;
  background: #fffef9 !important;
  color: var(--tool-ink) !important;
  box-shadow: none !important;
  font-family: var(--font-sans) !important;
  font-size: 1rem !important;
  letter-spacing: 0 !important;
  line-height: 1.6 !important;
  padding: 12px 14px !important;
}

.public-tools-page .field textarea {
  min-height: 132px !important;
  resize: vertical;
}

.public-tools-page.public-seteuk-page .field textarea {
  min-height: 210px !important;
}

.public-tools-page .field textarea:focus,
.public-tools-page .field input:focus,
.public-tools-page .field select:focus {
  border-color: var(--tool-green) !important;
  box-shadow: 0 0 0 3px rgba(8, 98, 67, 0.12) !important;
}

.public-tools-page .field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.public-tools-page .field-row.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.public-tools-page .actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.public-tools-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border-radius: 999px !important;
  border: 1px solid rgba(8, 98, 67, 0.18) !important;
  box-shadow: none !important;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0;
  padding: 12px 24px;
}

.public-tools-page .btn.primary {
  background: var(--tool-green) !important;
  color: #fff !important;
  border-color: var(--tool-green) !important;
}

.public-tools-page .btn.primary:hover {
  background: var(--tool-green-deep) !important;
}

.public-tools-page .btn.ghost {
  background: #fffef9 !important;
  color: var(--tool-green) !important;
}

.public-tools-page .btn.small {
  min-height: 38px;
  padding: 8px 14px;
  font-size: 0.86rem;
}

.public-tools-page .btn:disabled {
  cursor: progress;
  opacity: 0.78;
}

.public-tools-page .btn.is-loading::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  border-radius: 50%;
  animation: publicToolSpin 700ms linear infinite;
}

.public-tools-page .topics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.public-tools-page .topics .tcard {
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(33, 38, 31, 0.08);
}

.public-tools-page .tcard .th {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--tool-line);
  background: var(--tool-mint);
}

.public-tools-page .tcard .th .no {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  background: var(--tool-green);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 850;
}

.public-tools-page .tcard .th .tt {
  flex: 1;
  min-width: 220px;
  color: var(--tool-ink);
  font-size: 1.12rem;
  line-height: 1.35;
  font-weight: 850;
}

.public-tools-page .strat {
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 850;
  padding: 4px 10px;
}

.public-tools-page .strat.ext {
  background: #e4f0e3;
  color: var(--tool-green-deep);
}

.public-tools-page .strat.new {
  background: #f9ead8;
  color: #8b4a12;
}

.public-tools-page .tcard .tb {
  padding: 16px 18px 18px;
}

.public-tools-page .axis4 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin-bottom: 14px;
}

.public-tools-page .axis {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
}

.public-tools-page .axis .name {
  flex: 0 0 58px;
  color: var(--tool-muted);
  font-weight: 750;
}

.public-tools-page .axis .track {
  flex: 1;
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8e3d9;
}

.public-tools-page .axis .fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--tool-green);
}

.public-tools-page .axis .pct {
  flex: 0 0 34px;
  color: var(--tool-green);
  font-variant-numeric: tabular-nums;
  font-weight: 850;
  text-align: right;
}

.public-tools-page .tlabel {
  margin: 12px 0 5px;
  color: var(--tool-green-deep);
  font-size: 0.86rem;
  font-weight: 850;
}

.public-tools-page .tbody-p,
.public-tools-page .flowline {
  margin: 0 0 4px;
  color: var(--tool-ink);
  font-size: 0.96rem;
  line-height: 1.68;
}

.public-tools-page .topic-bullets {
  margin: 0 0 4px;
  padding-left: 20px;
  color: var(--tool-ink);
  font-size: 0.94rem;
  line-height: 1.62;
}

.public-tools-page .topic-bullets li + li {
  margin-top: 3px;
}

.public-tools-page .flowline {
  margin-top: 8px;
  color: var(--tool-muted);
}

.public-tools-page .gpt-prompt-tools {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--tool-line);
}

.public-tools-page .prompt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.public-tools-page .gpt-prompt-box {
  border: 1px solid rgba(8, 98, 67, 0.18);
  border-radius: 8px;
  background: #fffef9;
}

.public-tools-page .gpt-prompt-box summary {
  cursor: pointer;
  padding: 11px 13px;
  color: var(--tool-green-deep);
  font-size: 0.9rem;
  font-weight: 850;
}

.public-tools-page .gpt-prompt-text {
  max-height: 360px;
  overflow: auto;
  margin: 0;
  padding: 0 13px 13px;
  white-space: pre-wrap;
  color: var(--tool-ink);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.62;
}

.public-tools-page .pick-prompt-card .th {
  background: #eef6ef;
}

.public-tools-page .srcs {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 4px;
}

.public-tools-page .srcs div {
  color: var(--tool-ink);
  font-size: 0.9rem;
  line-height: 1.55;
}

.public-tools-page .srcs .lab {
  display: inline-block;
  margin-right: 7px;
  padding: 2px 8px;
  border-radius: 5px;
  font-size: 0.72rem;
  font-weight: 850;
}

.public-tools-page .srcs .lab.book {
  background: #f0e4c9;
  color: #745511;
}

.public-tools-page .srcs .lab.paper,
.public-tools-page .srcs .lab.news,
.public-tools-page .srcs .lab.video {
  background: #f5dddd;
  color: #8c3030;
}

.public-tools-page .empty {
  margin: 0;
  color: var(--tool-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.public-tools-page .byte-meter {
  display: flex;
  gap: 6px;
  margin-top: 6px;
  color: var(--tool-muted);
  font-size: 0.82rem;
}

.public-tools-page .byte-meter b {
  color: var(--tool-green);
  font-variant-numeric: tabular-nums;
}

.public-tools-page .progress-card {
  display: grid;
  gap: 12px;
  padding: 20px 22px;
  border-color: rgba(8, 98, 67, 0.22);
  background: #fbfff8;
}

.public-tools-page .progress-card.is-error {
  border-color: rgba(160, 45, 45, 0.28);
  background: #fff8f7;
}

.public-tools-page .progress-card.is-done {
  border-color: rgba(8, 98, 67, 0.28);
}

.public-tools-page .progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.public-tools-page .progress-head strong {
  color: var(--tool-green-deep);
  font-size: 1rem;
  font-weight: 850;
}

.public-tools-page .progress-head span {
  color: var(--tool-green);
  font-variant-numeric: tabular-nums;
  font-size: 0.95rem;
  font-weight: 850;
}

.public-tools-page .progress-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #e1ddd3;
}

.public-tools-page .progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--tool-green), #17a36e);
  transition: width 220ms ease;
}

.public-tools-page .progress-card.is-error .progress-head strong,
.public-tools-page .progress-card.is-error .progress-head span {
  color: #9b2f2f;
}

.public-tools-page .progress-card.is-error .progress-track span {
  background: #b23b3b;
}

.public-tools-page .progress-card p {
  margin: 0;
  color: var(--tool-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.public-tools-page .file-summary {
  margin-top: 8px;
  padding: 10px 12px;
  border: 1px dashed rgba(8, 98, 67, 0.2);
  border-radius: 8px;
  background: rgba(232, 241, 232, 0.48);
  color: var(--tool-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.public-tools-page .result pre {
  min-height: 180px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--tool-line);
  border-radius: 8px;
  background: #fffef9;
  color: var(--tool-ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.75;
  white-space: pre-wrap;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.public-tools-page .result .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 12px;
  color: var(--tool-muted);
  font-size: 0.84rem;
}

.public-tools-page .result .meta .ok {
  color: #0d7a4d;
  font-weight: 850;
}

.public-tools-page .result .meta .warn {
  color: #9a5b00;
  font-weight: 850;
}

.public-tools-page .is-hidden {
  display: none !important;
}

@keyframes publicToolSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 760px) {
  .public-tools-page .tool-shell {
    width: calc(100% - 24px);
    padding: 28px 0 62px;
  }

  .public-tools-page .tool-hero,
  .public-tools-page .tool-card,
  .public-tools-page .tool-link-card {
    padding: 20px;
  }

  .public-tools-page .tool-shell h1 {
    font-size: 2rem;
  }

  .public-tools-page .tool-grid,
  .public-tools-page .field-row,
  .public-tools-page .field-row.three,
  .public-tools-page .axis4 {
    grid-template-columns: 1fr;
  }

  .public-tools-page .tcard .th .tt {
    min-width: 0;
  }
}
