/* ==============================================
   이버멕틴 정보 — style.css
   공문서·약전 레퍼런스 스타일 (헤어라인, 박스 없음) — Escoredream
   ============================================== */

/* 0. Web font: Escoredream (S-Core Dream) */
@font-face {
  font-family: 'Escoredream';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-1Thin.woff') format('woff');
  font-weight: 100;
  font-display: swap;
}
@font-face {
  font-family: 'Escoredream';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-2ExtraLight.woff') format('woff');
  font-weight: 200;
  font-display: swap;
}
@font-face {
  font-family: 'Escoredream';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-3Light.woff') format('woff');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'Escoredream';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-4Regular.woff') format('woff');
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Escoredream';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-5Medium.woff') format('woff');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Escoredream';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-6Bold.woff') format('woff');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Escoredream';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-7ExtraBold.woff') format('woff');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Escoredream';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-8Heavy.woff') format('woff');
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: 'Escoredream';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-9Black.woff') format('woff');
  font-weight: 900;
  font-display: swap;
}

/* 1. Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Escoredream', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  color: #221a12;
  background: #faf7f1;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
  overflow-wrap: break-word;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; }
h1, h2, h3, h4 { font-family: 'Escoredream', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif; }

/* 2. Tokens */
:root {
  --primary:       #7a4a1f;
  --primary-light: #efe2cc;
  --primary-hover: #603a18;
  --bg:            #faf7f1;
  --bg-alt:        #f2ece0;
  --text:          #221a12;
  --text-sub:      #6b5c48;
  --border:        #d8cbab;
  --radius:        0px;
  --max-w:         980px;
  --sec-pad:       68px;
  --hdr:           68px;
}

/* 3. Layout */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 720px; }
.center { text-align: center; }

/* 4. Section typography */
.eyebrow { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--primary); margin-bottom: 10px; font-family: 'Escoredream', sans-serif; }
.section-title { font-family: 'Escoredream', sans-serif; font-size: clamp(21px, 2.8vw, 28px); font-weight: 700; line-height: 1.4; letter-spacing: 0; color: var(--text); margin-bottom: 8px; }
.accent { color: var(--primary); }

/* 5. Buttons — 각진 형태, 최소한의 장식 */
.btn { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; padding: 12px 22px; border-radius: 0; border: 1px solid var(--text); cursor: pointer; transition: background .15s, color .15s; letter-spacing: 0; white-space: nowrap; line-height: 1; }
.btn-lg { font-size: 15px; padding: 14px 26px; }
.btn-primary { background: var(--text); color: #faf7f1; border-color: var(--text); }
.btn-primary:hover { background: var(--primary-hover); border-color: var(--primary-hover); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--text); }
.btn-outline:hover { background: var(--text); color: #faf7f1; }
.btn-white { background: #faf7f1; color: var(--text); border-color: #faf7f1; font-weight: 700; }
.btn-white:hover { background: transparent; color: #faf7f1; }
.btn-outline-white { background: transparent; color: #faf7f1; border-color: rgba(250,247,241,.5); }
.btn-outline-white:hover { background: rgba(250,247,241,.1); border-color: #faf7f1; }

/* 6. Header — 신문/저널 마스트헤드 (중앙 정렬 2단) */
.site-header { position: static; height: auto; background: var(--bg); border-bottom: 3px double var(--text); }
.hdr-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 30px 24px 18px; height: auto;
  display: flex; flex-direction: column; align-items: center; gap: 16px; position: relative;
}
.hdr-logo { display: flex; align-items: baseline; gap: 9px; flex-shrink: 0; text-decoration: none; }
.hdr-logo img { height: 26px; width: auto; }
.hdr-logo .logo-text { font-family: 'Escoredream', sans-serif; font-size: 26px; font-weight: 700; letter-spacing: 0.06em; color: var(--text); }
.hdr-nav {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 22px; width: 100%; border-top: 1px solid var(--border); padding-top: 14px;
}
.hdr-nav a { font-size: 12px; font-weight: 600; letter-spacing: .03em; color: var(--text-sub); transition: color .2s; white-space: nowrap; border-bottom: 1px solid transparent; padding-bottom: 2px; }
.hdr-nav a:hover, .hdr-nav a.active { color: var(--text); border-bottom-color: var(--text); }
.hdr-nav .hdr-cta { display: inline-flex; align-items: center; gap: 5px; font-weight: 700; color: var(--text); border-bottom: 1px solid var(--text); padding-bottom: 2px; transition: opacity .2s; }
.hdr-nav .hdr-cta:hover { opacity: .6; }
.nav-toggle { display: none; position: absolute; right: 20px; top: 30px; margin-left: 0; background: none; border: none; padding: 6px; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 22px; height: 1px; background: var(--text); transition: all .3s; }

/* 7. Mobile nav */
.site-nav-mobile { display: none; position: fixed; top: var(--hdr); left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); z-index: 199; flex-direction: column; }
.site-nav-mobile.open { display: flex; }
.site-nav-mobile a { display: flex; align-items: center; gap: 6px; padding: 14px 24px; font-size: 15px; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--border); }
.site-nav-mobile a:last-child { border-bottom: none; }
.site-nav-mobile a:hover { color: var(--primary); }

/* 8. Info banner — 본문 하단, 푸터 바로 위 공식 고지 박스 */
.info-banner {
  max-width: var(--max-w); margin: 0 auto; padding: 20px 24px 24px;
  border-top: 3px double var(--text); text-align: left;
  font-size: 12px; color: var(--text-sub); line-height: 1.7;
}

/* 9. Hero — 문서 표제부, 좌측 정렬 */
.hero { padding: 56px 0 40px; text-align: left; border-bottom: 1px solid var(--border); }
.hero .container { max-width: 760px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-sub); background: none; padding: 0; border-radius: 0; margin-bottom: 22px; }
.hero-badge::after { content: ''; flex: 1; max-width: 60px; height: 1px; background: var(--border); }
.hero h1 { font-size: clamp(26px, 4vw, 40px); font-weight: 700; line-height: 1.4; letter-spacing: 0; color: var(--text); margin-bottom: 20px; }
.hero-sub { font-size: clamp(14px, 1.7vw, 16px); color: var(--text-sub); line-height: 1.85; margin-bottom: 30px; max-width: 560px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* 허가범위 비교 (히어로 바로 아래) — 정의 리스트 형태, 박스 없음 */
.scope-notice { background: var(--bg-alt); border-bottom: 1px solid var(--border); padding: 0; }
.scope-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.scope-card { background: none; border: none; border-right: 1px solid var(--border); padding: 32px 36px; }
.scope-card:last-child { border-right: none; }
.scope-card .scope-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .06em; padding: 0; border-radius: 0; margin-bottom: 12px; border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.scope-card.domestic .scope-tag { color: var(--primary); }
.scope-card.abroad .scope-tag { color: var(--text-sub); }
.scope-card h3 { font-family: 'Escoredream', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.scope-card p { font-size: 13px; color: var(--text-sub); line-height: 1.75; }

/* 10. 핵심 정보 — 로마숫자 리스트 */
.cards-section { padding: var(--sec-pad) 0; }
.card-grid { display: flex; flex-direction: column; max-width: 100%; margin: 0; border-top: 1px solid var(--text); counter-reset: infonum; }
.info-card { counter-increment: infonum; background: none; border: none; border-bottom: 1px solid var(--border); border-radius: 0; padding: 24px 0; display: grid; grid-template-columns: 56px 1fr auto; align-items: start; gap: 18px; transition: none; }
.info-card:hover { background: var(--bg-alt); }
.card-icon { display: none; }
.info-card::before {
  content: counter(infonum, upper-roman);
  font-family: 'Escoredream', sans-serif; font-size: 17px; font-weight: 700; color: var(--primary);
  padding-top: 2px;
  grid-column: 1; grid-row: 1 / 3;
}
.info-card h3 { font-family: 'Escoredream', sans-serif; font-size: 16px; font-weight: 700; color: var(--text); line-height: 1.4; grid-column: 2; grid-row: 1; }
.info-card p { font-size: 13px; color: var(--text-sub); line-height: 1.7; margin-top: 4px; grid-column: 2; grid-row: 2; }
.card-link { grid-column: 3; grid-row: 1 / 3; display: inline-flex; align-items: center; gap: 3px; font-size: 12px; font-weight: 700; color: var(--text); border-bottom: 1px solid var(--text); padding-bottom: 1px; white-space: nowrap; align-self: start; margin-top: 3px; }
.card-link svg { display: none; }

/* 11. Overview table */
.overview-section { background: var(--bg); padding: var(--sec-pad) 0; }
.table-wrap { border-top: 3px double var(--text); border-bottom: 3px double var(--text); border-radius: 0; overflow: hidden; }
.overview-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.overview-table th { width: 160px; background: none; font-weight: 700; font-family: 'Escoredream', sans-serif; color: var(--text); padding: 13px 18px; border-bottom: 1px solid var(--border); vertical-align: top; text-align: left; white-space: nowrap; }
.overview-table td { padding: 13px 18px; border-bottom: 1px solid var(--border); color: var(--text); line-height: 1.7; }
.overview-table tr:last-child th, .overview-table tr:last-child td { border-bottom: none; }

/* 12. 작용원리 — 로마숫자 3분할, 박스 없음 */
.mechanism-section { padding: var(--sec-pad) 0; background: var(--bg-alt); }
.mech-flow { display: flex; align-items: stretch; justify-content: center; margin-top: 36px; border-top: 1px solid var(--text); border-bottom: 1px solid var(--text); }
.mech-step { flex: 1; max-width: 300px; background: none; border: none; border-right: 1px solid var(--border); padding: 26px 24px; text-align: left; }
.mech-step:last-child { border-right: none; }
.mech-step .step-num { font-family: 'Escoredream', sans-serif; font-size: 22px; font-weight: 700; letter-spacing: 0; color: var(--primary); margin-bottom: 12px; }
.mech-icon { display: none; }
.mech-step h4 { font-family: 'Escoredream', sans-serif; font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1.4; }
.mech-step p { font-size: 13px; color: var(--text-sub); line-height: 1.75; }
.mech-arrow { display: none; }
.mech-footnote { margin-top: 28px; text-align: left; font-size: 13px; color: var(--text-sub); }
.mech-footnote strong { color: var(--text); font-weight: 700; }

/* 13. Bottom CTA */
.bottom-cta { background: var(--text); padding: var(--sec-pad) 0; text-align: left; color: #faf7f1; }
.bottom-cta .container.narrow { text-align: left; }
.bottom-cta h2 { font-family: 'Escoredream', sans-serif; font-size: clamp(21px, 3.2vw, 30px); font-weight: 700; line-height: 1.4; letter-spacing: 0; margin-bottom: 14px; }
.bottom-cta .sub { font-size: 15px; opacity: .7; margin-bottom: 30px; line-height: 1.75; }
.bottom-cta .notice { margin-top: 18px; font-size: 12px; opacity: .5; }

/* 14. Footer */
.site-footer { background: var(--bg-alt); padding: 44px 0; border-top: 3px double var(--text); }
.footer-inner { display: flex; flex-direction: column; gap: 16px; }
.footer-brand { font-family: 'Escoredream', sans-serif; font-size: 15px; font-weight: 700; color: var(--text); }
.footer-disclaimer { font-size: 12px; line-height: 1.9; color: var(--text-sub); max-width: 700px; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: var(--text-sub); border-bottom: 1px solid transparent; }
.footer-links a:hover { color: var(--text); border-bottom-color: var(--text); }
.footer-copy { font-size: 12px; color: #a3927a; }

/* 15. Breadcrumb */
.breadcrumb { padding: 12px 0; font-size: 13px; color: var(--text-sub); display: flex; align-items: center; gap: 5px; border-bottom: 1px solid var(--border); }
.breadcrumb a { color: var(--text-sub); transition: color .2s; }
.breadcrumb a:hover { color: var(--primary); }

/* 16. Page hero (서브페이지) — 문서 표제부 */
.page-hero { background: var(--bg); padding: 44px 0 36px; border-bottom: 1px solid var(--border); }
.page-hero .container { max-width: 760px; }
.page-hero .eyebrow { margin-bottom: 10px; }
.page-hero h1 { font-family: 'Escoredream', sans-serif; font-size: clamp(23px, 3.4vw, 34px); font-weight: 700; line-height: 1.4; letter-spacing: 0; color: var(--text); margin-bottom: 12px; }
.page-hero .lead { font-size: 15px; color: var(--text-sub); line-height: 1.85; max-width: 600px; }

/* 17. Content sections */
.content-sec { padding: 50px 0; }
.content-sec + .content-sec { border-top: 1px solid var(--border); }
.content-sec.bg-alt { background: var(--bg-alt); border-top: none; }
.content-sec.bg-white { background: #fff; border-top: none; }
.content-h2 { font-family: 'Escoredream', sans-serif; font-size: clamp(18px, 2.2vw, 22px); font-weight: 700; line-height: 1.4; letter-spacing: 0; color: var(--text); margin-bottom: 20px; }
.content-body { font-size: 15px; color: var(--text-sub); line-height: 1.9; }
.content-body p + p { margin-top: 14px; }
.content-body strong { color: var(--text); font-weight: 700; }

/* 18. Data table — 공문서식 이중선 */
.data-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-top: 24px; border-top: 2px solid var(--text); border-bottom: 2px solid var(--text); }
.data-table thead th { background: var(--bg-alt); color: var(--text); font-family: 'Escoredream', sans-serif; font-weight: 700; padding: 11px 16px; text-align: left; font-size: 13px; border-bottom: 1px solid var(--text); }
.data-table tbody td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--text); line-height: 1.7; vertical-align: top; }
.data-table tbody tr:nth-child(even) td { background: none; }
.data-table tbody tr:last-child td { border-bottom: none; }
.tag { display: inline-block; font-size: 11px; font-weight: 700; padding: 1px 7px; border-radius: 0; margin-right: 4px; white-space: nowrap; border: 1px solid currentColor; }
.tag-warn { color: #7a520f; }
.tag-info { color: var(--primary); }
.tag-stop { color: #9c3a29; }

/* 19. Highlight / Disclaimer boxes — 박스 대신 좌측 세로선 최소화, 상단 라인 사용 */
.highlight-box { background: none; border-top: 1px solid var(--primary); border-radius: 0; padding: 16px 0 0; font-size: 14px; color: var(--text); line-height: 1.85; margin-top: 24px; }
.highlight-box strong { color: var(--primary); }
.disclaimer-box { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 0; padding: 18px 22px; font-size: 13px; color: var(--text-sub); line-height: 1.9; margin-top: 24px; }
.caution-box { background: none; border: 1px double #9c3a29; border-radius: 0; padding: 18px 22px; font-size: 13px; color: #7d3626; line-height: 1.9; margin-top: 24px; }

/* 20. Steps */
.step-list { display: flex; flex-direction: column; gap: 0; margin-top: 24px; border-top: 1px solid var(--border); }
.step-item { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--border); }
.step-badge { width: 26px; height: 26px; border-radius: 0; border: 1px solid var(--text); background: none; color: var(--text); font-family: 'Escoredream', sans-serif; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.step-content h4 { font-family: 'Escoredream', sans-serif; font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.step-content p { font-size: 13px; color: var(--text-sub); line-height: 1.75; }

/* 21. Timeline */
.timeline-list { display: flex; flex-direction: column; margin-top: 32px; }
.tl-item { display: flex; gap: 20px; padding-bottom: 30px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-aside { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; width: 40px; }
.tl-dot { width: 36px; height: 36px; border-radius: 0; border: 1px solid var(--text); background: none; color: var(--text); font-family: 'Escoredream', sans-serif; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tl-line { flex: 1; width: 1px; background: var(--border); margin-top: 8px; }
.tl-item:last-child .tl-line { display: none; }
.tl-body { padding-top: 5px; }
.tl-body h4 { font-family: 'Escoredream', sans-serif; font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.tl-body p { font-size: 14px; color: var(--text-sub); line-height: 1.8; }
.tl-badge { display: inline-block; font-size: 11px; font-weight: 700; color: var(--text-sub); background: none; padding: 0; border-radius: 0; margin-bottom: 6px; letter-spacing: .04em; }

/* 22. FAQ accordion */
.faq-list { margin-top: 32px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--text); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0; font-size: 15px; font-weight: 700; color: var(--text); background: none; border: none; cursor: pointer; text-align: left; line-height: 1.5; font-family: 'Escoredream', sans-serif; }
.faq-q svg { flex-shrink: 0; stroke: var(--text-sub); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s; width: 16px; height: 16px; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .3s ease; font-size: 14px; color: var(--text-sub); line-height: 1.88; font-family: 'Escoredream', sans-serif; }
.faq-a-inner { padding-bottom: 18px; }
.faq-item.open .faq-a { max-height: 800px; }

/* 23. CTA card — 상단 이중선 */
.cta-card { background: none; border: none; border-top: 3px double var(--text); border-radius: 0; padding: 28px 0 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 48px; }
.cta-card-text h3 { font-family: 'Escoredream', sans-serif; font-size: 18px; font-weight: 700; letter-spacing: 0; color: var(--text); margin-bottom: 6px; line-height: 1.4; }
.cta-card-text p { font-size: 14px; color: var(--text-sub); line-height: 1.7; }
.cta-notice { font-size: 12px; color: var(--text-sub); margin-top: 8px; line-height: 1.5; }
.cta-btns { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }

/* 24. 가로 스크롤 테이블 래퍼 */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-top: 24px; }
.table-scroll .data-table { margin-top: 0; min-width: 560px; }

/* 25. 쇼핑몰 안내 — 상단 이중선 */
.shop-cta-card { background: none; border: none; border-top: 3px double var(--text); border-radius: 0; padding: 28px 0 0; margin-top: 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.shop-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: var(--text-sub); margin-bottom: 8px; }
.shop-name { font-family: 'Escoredream', sans-serif; font-size: 20px; font-weight: 700; letter-spacing: 0; color: var(--text); margin-bottom: 6px; }
.shop-desc { font-size: 14px; color: var(--text-sub); line-height: 1.65; }
.shop-notice { font-size: 12px; color: var(--text-sub); margin-top: 8px; line-height: 1.5; }
.shop-cta-btns { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }

/* 26. 모바일 고정 구매 바 */
.mobile-buy-bar { display: none; }

/* 27. Responsive */
@media (max-width: 900px) {
  .scope-grid { grid-template-columns: 1fr; }
  .scope-card { border-right: none; border-bottom: 1px solid var(--border); }
  .scope-card:last-child { border-bottom: none; }
  .mech-flow { flex-direction: column; border-bottom: none; }
  .mech-step { max-width: 100%; width: 100%; border-right: none; border-bottom: 1px solid var(--border); }
  .mech-step:last-child { border-bottom: 1px solid var(--text); }
  .cta-card { flex-direction: column; align-items: flex-start; }
  .cta-btns { flex-direction: row; flex-wrap: wrap; }
  .shop-cta-card { padding: 24px 0 0; }
  .shop-cta-btns { flex-direction: row; flex-wrap: wrap; }
  .info-card { grid-template-columns: 36px 1fr; }
  .info-card::before { grid-row: 1 / 3; }
  .card-link { grid-column: 2; grid-row: 3; margin-top: 8px; }
}
@media (max-width: 768px) {
  :root { --sec-pad: 46px; }
  .hdr-inner { flex-direction: row; align-items: center; justify-content: space-between; padding: 16px 24px; gap: 0; }
  .hdr-logo .logo-text { font-size: 19px; }
  .hdr-nav { display: none; }
  .nav-toggle { display: flex; position: static; }
  .site-nav-mobile { top: 58px; }
  .overview-table th { width: 100px; font-size: 13px; }
  .overview-table td { font-size: 13px; }

  body { padding-bottom: 68px; }
  .mobile-buy-bar {
    display: flex;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 250;
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  }
  .mobile-buy-bar .btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .cta-card { padding: 22px 0 0; }
  .data-table { font-size: 13px; }
  .data-table thead th, .data-table tbody td { padding: 10px 12px; }
}
