
:root {
  
  --ink: #191F28;
  --on-ink: #FFFFFF;                    
  --text: rgba(25, 31, 40, .89);        
  --text-sub: rgba(25, 31, 40, .61);    
  --text-faint: rgba(25, 31, 40, .47);  
  --bg: #FFFFFF;
  --surface: rgba(13, 25, 74, .025);    
  --surface-2: rgba(13, 25, 74, .045);  
  --surface-3: rgba(13, 25, 74, .065);  
  --ring: inset 0 0 0 0.75px var(--hairline); 
  --line: rgba(13, 25, 74, .08);        
  --amber: #B45309;                     
  --amber-bg: rgba(245, 158, 11, .12);
  --up: #2272EB;                        
  --down: #DE2B39;
  --muted: rgba(25, 31, 40, .61);       
  --success: #1B7A3D;
  --danger: #DE2B39;
  --info: #2272EB;
  
  --success-bg: rgba(27, 122, 61, .1);
  --info-bg: rgba(34, 114, 235, .1);
  --danger-bg: rgba(222, 43, 57, .08);  
  --underline: rgba(25, 31, 40, .25);   
  --ink-hover: rgba(25, 31, 40, .84);   
  --hairline: rgba(13, 25, 74, .06);    
  --shimmer: rgba(255, 255, 255, .7);   
  --blueprint-1: rgba(34, 114, 235, .14); 
  --blueprint-2: rgba(34, 114, 235, .09);
  --r-sm: 8px; --r-md: 12px; --r-lg: 16px; --r-pill: 999px; 
  
  --fs-display: 44px; --fs-h1: 28px; --fs-h2: 21px; --fs-h3: 16px; --fs-body: 15px; --fs-caption: 13px;
  
  --fs-input: 16px;
  
  --hover-shadow: 0 4px 12px rgba(13, 25, 74, .08); 
  --t-fast: .15s;
  
  --z-overlay: 100; --z-modal: 1000;
  
  --overlay-border: 1px solid rgba(13, 25, 74, .1);
  
  --chip-bg: #FFFFFF;
  --chip-ink: #191F28;
}

:root[data-theme="dark"] {
  --ink: #FFFFFF;
  --on-ink: #191F28;
  --text: rgba(255, 255, 255, .89);
  --text-sub: rgba(255, 255, 255, .64);
  --text-faint: rgba(255, 255, 255, .5);
  --muted: rgba(255, 255, 255, .64);
  --bg: #101418;
  --surface: rgba(255, 255, 255, .04);
  --surface-2: rgba(255, 255, 255, .07);
  --surface-3: rgba(255, 255, 255, .09);
  --hairline: rgba(255, 255, 255, .08);
  --line: rgba(255, 255, 255, .1);
  --underline: rgba(255, 255, 255, .3);
  --ink-hover: rgba(255, 255, 255, .84);
  --amber: #D97706;
  --amber-bg: rgba(217, 119, 6, .16);
  --success: #34C368; --success-bg: rgba(52, 195, 104, .12);
  --info: #6BA6FF; --info-bg: rgba(107, 166, 255, .12); --up: #6BA6FF;
  --down: #FF7A85; --danger: #FF7A85; --danger-bg: rgba(255, 122, 133, .1);
  --shimmer: rgba(255, 255, 255, .1);
  --overlay-border: 1px solid rgba(255, 255, 255, .12);
  --hover-shadow: 0 4px 12px rgba(0, 0, 0, .4);
  --blueprint-1: rgba(107, 166, 255, .14); --blueprint-2: rgba(107, 166, 255, .09);
  --chip-bg: #F2F3F5;   
  --chip-ink: #191F28;  
}
* { box-sizing: border-box; }

[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  margin: 0; background: var(--bg); color: var(--text);
  
  font-family: Pretendard, Inter, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Segoe UI', Roboto, sans-serif;
  font-size: var(--fs-body); line-height: 1.6; font-weight: 400; 
  -webkit-font-smoothing: antialiased;
}
.num, .stat-v, .result-num, td.num { font-variant-numeric: tabular-nums; }
a { color: var(--text); text-decoration: underline; text-decoration-color: var(--underline); }
a:hover { text-decoration-color: var(--text); }
img { max-width: 100%; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; } 
h1, h2, h3, .display { word-break: keep-all; } 
h1 { font-size: var(--fs-h1); font-weight: 800; line-height: 1.25; margin: 0 0 16px; letter-spacing: -.4px; }
h2 { font-size: var(--fs-h2); font-weight: 800; margin: 0 0 32px; letter-spacing: -.3px; } 
h3 { font-size: var(--fs-h3); font-weight: 700; margin: 0 0 8px; }

.display { font-size: clamp(30px, 20px + 2.4vw, var(--fs-display)); font-weight: 800; line-height: 1.14; letter-spacing: -.8px; text-wrap: balance; }
.hero-center .display { max-width: 30ch; margin-inline: auto; } 
.muted { color: var(--text-sub); }
.small { font-size: var(--fs-caption); font-weight: 500; }
.caption { font-size: var(--fs-caption); font-weight: 500; color: var(--text-faint); }
.gold-text { color: var(--ink); font-weight: 800; } 

input, select, textarea { font-size: var(--fs-input); }

a:focus-visible, button:focus-visible, select:focus-visible, input:focus-visible, summary:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--up); outline-offset: 2px;
}


.site-header { position: sticky; top: 0; z-index: var(--z-overlay); background: var(--bg); box-shadow: 0 0.75px 0 var(--hairline); } 
.site-header .container { display: flex; align-items: center; gap: 24px; height: 64px; }

.logo { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 20px; color: var(--ink); letter-spacing: -.3px; text-decoration: none; }
.logo svg { height: 22px; width: auto; display: block; }
.logo .lg-i { fill: var(--ink); }
.kicker { font-size: var(--fs-caption); font-weight: 600; color: var(--text-sub); margin: 0 0 8px; }
.nav-links { display: flex; gap: 16px; flex: 1; }
.nav-links a { color: var(--text-sub); font-size: var(--fs-caption); font-weight: 600; text-decoration: none; padding: 16px 0; white-space: nowrap; } 
.nav-links a:hover { color: var(--text); }
@media (max-width: 640px) { 
  .site-header .container { gap: 16px; }
  .nav-links { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .nav-links::-webkit-scrollbar { display: none; }
}

.nav-menu { display: none; position: relative; }
.nav-menu-btn { display: inline-flex; align-items: center; justify-content: center; width: var(--hdr-ctl-h); height: var(--hdr-ctl-h); border: 0; border-radius: var(--r-pill); background: var(--surface); box-shadow: var(--ring); color: var(--text); cursor: pointer; padding: 0; }
.nav-menu-btn:hover { background: var(--surface-2); }
.nav-menu-list { position: absolute; top: calc(100% + 8px); inset-inline-start: 0; min-width: 180px; display: flex; flex-direction: column; padding: 4px; background: var(--bg); border: var(--overlay-border); border-radius: var(--r-md); box-shadow: var(--hover-shadow); z-index: var(--z-overlay); }
.nav-menu-list[hidden] { display: none; }
.nav-menu-item { display: block; padding: 12px; min-height: 44px; border-radius: var(--r-sm); color: var(--text); font-size: var(--fs-body); font-weight: 600; text-decoration: none; white-space: nowrap; }
.nav-menu-item:hover { background: var(--surface-2); }
.nav-menu-logout { border: 0; background: transparent; width: 100%; text-align: start; cursor: pointer; font-family: inherit; }
@media (max-width: 640px) {
  .has-navmenu .nav-links { display: none; }
  .has-navmenu .nav-menu { display: inline-flex; }
  .has-navmenu #hdr-logout { display: none; }   
}

:root { --hdr-ctl-h: 36px; }
.header-cta { display: flex; gap: 8px; align-items: center; }
.header-cta .btn { min-height: var(--hdr-ctl-h); height: var(--hdr-ctl-h); border-radius: var(--r-pill); padding: 0 14px; }
.lang-select { background: var(--surface); color: var(--text); border: 0; box-shadow: var(--ring); border-radius: var(--r-pill); padding: 0 12px; min-height: var(--hdr-ctl-h); height: var(--hdr-ctl-h); font-size: var(--fs-input); font-weight: 600; }

.theme-seg { display: inline-flex; gap: 2px; align-items: center; background: var(--surface-3); box-shadow: var(--ring); border-radius: var(--r-pill); padding: 3px; height: var(--hdr-ctl-h); }
.theme-seg button { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: calc(var(--hdr-ctl-h) - 6px); border: 0; background: transparent; color: var(--text-faint); border-radius: var(--r-pill); cursor: pointer; padding: 0; transition: color var(--t-fast), background var(--t-fast); }
.theme-seg button:hover { color: var(--text); }
.theme-seg button.on { background: var(--bg); color: var(--ink); box-shadow: 0 1px 3px rgba(0, 0, 0, .12); }
.theme-seg svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.lang-select-hidden { display: none; }
.lang-dd { position: relative; }
.lang-dd-btn { display: inline-flex; align-items: center; gap: 6px; background: var(--surface); color: var(--text); border: 0; box-shadow: var(--ring); border-radius: var(--r-pill); padding: 0 12px; min-height: var(--hdr-ctl-h); height: var(--hdr-ctl-h); font-size: var(--fs-caption); font-weight: 600; cursor: pointer; white-space: nowrap; }
.lang-dd-btn svg { color: var(--text-faint); flex-shrink: 0; }
.lang-dd-code { display: none; }   

.lang-dd-list { position: absolute; top: calc(100% + 8px); inset-inline-end: 0; min-width: 160px; max-height: 320px; overflow-y: auto; margin: 0; padding: 4px; list-style: none; background: var(--bg); border: var(--overlay-border); border-radius: var(--r-md); box-shadow: var(--hover-shadow); z-index: var(--z-overlay); }
.lang-dd-list li { padding: 10px 12px; border-radius: var(--r-sm); font-size: var(--fs-caption); font-weight: 600; cursor: pointer; white-space: nowrap; }
.lang-dd-list li:hover, .lang-dd-list li.active { background: var(--surface-2); }
.lang-dd-list li[aria-selected="true"] { color: var(--ink); font-weight: 800; }
@media (max-width: 640px) { 
  
  .theme-seg button { width: 26px; }
  .lang-dd-name { display: none; }
  .lang-dd-code { display: inline; }
  .site-header .container { padding: 0 12px; gap: 8px; }
  .nav-links { min-width: 0; flex-basis: 88px; } 
  .logo-word { display: none; } 
  .header-cta { gap: 6px; flex-shrink: 0; }
  .lang-dd-btn { padding: 0 10px; }
  #hdr-cta, #hdr-logout { padding-left: 12px; padding-right: 12px; }
}


.btn { display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: var(--r-sm); font-weight: 600; cursor: pointer; text-align: center; font-size: var(--fs-body); padding: 8px 24px; min-height: 44px; transition: background-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast); text-decoration: none; } 
.btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: var(--hover-shadow); }
.btn:active { transform: translateY(0) scale(.98); box-shadow: none; }
.btn-primary { background: var(--ink); color: var(--on-ink); }
.btn-primary:hover { background: var(--ink-hover); }
.btn-outline { background: var(--surface); color: var(--text); box-shadow: var(--ring); }
.btn-outline:hover { background: var(--surface-2); }
.btn-ghost { background: transparent; color: var(--text-sub); }
.btn-ghost:hover { background: var(--surface); color: var(--text); }
.btn-sm { padding: 8px 16px; font-size: var(--fs-caption); }
.btn-lg { padding: 16px 32px; font-size: var(--fs-h3); }


.badge { display: inline-block; padding: 0 8px; line-height: 22px; border-radius: var(--r-pill); font-size: var(--fs-caption); font-weight: 600; letter-spacing: .2px; text-decoration: none; }
.badge-gold { background: var(--amber-bg); color: var(--amber); }
.badge-ok { background: var(--success-bg); color: var(--success); }
.badge-info { background: var(--info-bg); color: var(--info); }


.section { padding: 96px 0; }
.section-alt { background: var(--surface); }
@media (max-width: 720px) { .section { padding: 64px 0; } }
html.js main .section { opacity: 0; transform: translateY(12px); transition: opacity .24s ease, transform .24s ease; }
html.js main .section.in { opacity: 1; transform: none; }


body.grid-overlay::after {
  content: ''; position: fixed; inset: 0; z-index: var(--z-modal); pointer-events: none;
  background-image: repeating-linear-gradient(to bottom, var(--blueprint-1) 0 1px, transparent 1px 8px),
    repeating-linear-gradient(to right, var(--blueprint-2) 0 1px, transparent 1px 8px);
}


.hero-stage { position: relative; display: flex; flex-direction: column; min-height: 85vh; overflow: hidden; }
.hero-stage canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }

.hero-center { position: relative; z-index: 2; text-align: center; max-width: 760px; margin: 9vh auto 0; padding: 0 24px; }
.hero-center .sub { max-width: 560px; margin: 16px auto 24px; color: var(--text-sub); font-size: var(--fs-h3); }
.hero-action { display: flex; gap: 8px; align-items: stretch; background: var(--bg); box-shadow: var(--ring), 0 0.75px 0 var(--hairline); border-radius: var(--r-lg); padding: 8px; max-width: 560px; margin: 0 auto; text-align: left; }
.hero-action > select { flex: 1; min-width: 0; background: var(--surface); border: 0; box-shadow: var(--ring); border-radius: var(--r-sm); padding: 8px 16px; min-height: 48px; font-size: var(--fs-input); font-weight: 600; color: var(--text); }
.hero-action .ex-select { flex: 1; min-width: 0; }
.hero-action .btn { white-space: nowrap; align-self: center; }
.hero-calc-line { margin: 16px 0 0; }
.hero-calc-link { font-size: var(--fs-caption); font-weight: 600; color: var(--text-sub); }
.hero-calc-link:hover { color: var(--text); }
@media (max-width: 640px) { .hero-action { flex-direction: column; } .hero-action .btn { align-self: stretch; } }
.hero-stage-bottom { position: relative; z-index: 1; margin-top: auto; width: 100%; padding-bottom: 16px; }
.hero-trust { margin-top: 16px; justify-content: center; }
.hero-trust .trust-chip { padding: 8px 16px; font-size: var(--fs-caption); }

.fx-lanes { position: relative; display: flex; height: 168px; }
.fx-lane { flex: 1; position: relative; }

.fx-lane-label { position: absolute; bottom: 0; font-size: var(--fs-caption); font-weight: 700; color: var(--text-faint); letter-spacing: -.2px; white-space: nowrap; }
.fx-lane:first-child .fx-lane-label { right: 28px; text-align: right; }
.fx-lane:last-child .fx-lane-label { left: 28px; }
.fx-lane-label-on { color: var(--text); }
.fx-lane-label b { font-weight: 800; letter-spacing: -.3px; }
@media (max-width: 899px) and (min-width: 720px) { .fx-lanes { height: 140px; } }
@media (max-width: 720px) {
  .hero-stage { min-height: 70vh; }
  .hero-center { margin-top: 6vh; }
  .fx-lanes { height: 112px; }
  .fx-lane-label { font-size: 11px; } 
  .fx-lane:first-child .fx-lane-label { right: 16px; } 
  .fx-lane:last-child .fx-lane-label { left: 16px; }
}


.steps3 { text-align: left; }
.step3-card { display: flex; flex-direction: column; }
.step3-card h3 { display: flex; align-items: center; gap: 8px; }
.step3-n { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: var(--surface-2); color: var(--text); font-size: var(--fs-caption); font-weight: 700; flex-shrink: 0; }
.step3-card > p { margin: 0 0 24px; } 
.step3-card .btn { margin-top: 16px; align-self: flex-start; }
.mini-shot { margin-top: auto; background: var(--bg); box-shadow: var(--ring); border-radius: var(--r-md); padding: 16px; }
.mini-shot .caption { display: block; margin-top: 8px; }
.mini-row { display: flex; align-items: center; gap: 8px; }
.mini-g { display: inline-flex; align-items: center; justify-content: center; width: 16px; height: 16px; border-radius: 50%; background: var(--bg); color: var(--ink); font-size: 11px; font-weight: 800; } 
.mini-g-solo { width: 24px; height: 24px; background: var(--surface-2); font-size: var(--fs-caption); flex-shrink: 0; }
.mini-input { background: var(--surface-3); border-radius: var(--r-sm); padding: 8px 16px; font-size: var(--fs-caption); color: var(--text-faint); margin-top: 8px; }
.mini-input-grow { flex: 1; margin-top: 0; }
.mini-input b { color: var(--text); font-weight: 700; letter-spacing: .5px; }
.mini-label { font-size: 11px; font-weight: 600; color: var(--text-faint); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; } 
.mini-chips { display: flex; gap: 8px; margin-top: 8px; }
.mini-chips .ex-cc { margin-right: 0; }
.mini-num { font-size: var(--fs-h1); font-weight: 800; color: var(--amber); }
.mini-sub { display: flex; justify-content: space-between; font-size: var(--fs-caption); color: var(--text-sub); margin-top: 8px; }
.mini-sub .num { color: var(--amber); font-weight: 700; }


.calc-compact { max-width: 920px; margin: 0 auto; }
.calc-compact .calc { padding: 16px; }
.calc-compact .calc h2 { font-size: var(--fs-h3); margin-bottom: 8px; }
.calc-compact .calc .field { margin-bottom: 8px; }
.calc-compact .calc .seg { margin-bottom: 8px; }
.calc-compact .calc .preset-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.calc-compact .calc .preset { min-height: 34px; padding: 0 8px; }
.calc-compact .calc .result-card { padding: 16px; min-height: 0; }
.calc-compact .calc .result-num { font-size: var(--fs-h1); }
.calc-compact .calc .result-sub { margin-top: 8px; gap: 8px; }
.calc-compact .calc .result-sub .cell { padding: 8px 16px; }
.calc-compact .calc .fee-bar { margin-top: 16px; }
.calc-compact .calc .boost-badge { margin-top: 8px; }
.calc-compact .calc .disclaimer { font-size: 11px; margin-top: 8px; } 
.calc-compact .calc .mt-2 { margin-top: 8px; }
.calc-compact .calc .field input[type="number"], .calc-compact .calc .field select { min-height: 40px; padding: 8px 16px; font-size: var(--fs-input); }
.calc-compact .calc .field label { margin-bottom: 0; }
.calc-compact .calc .seg button { min-height: 32px; padding: 0 16px; }
.calc-compact .calc .result-sub .l { font-size: 11px; }
.calc-compact .calc .btn-primary { padding: 8px 24px; min-height: 40px; }
@media (max-width: 720px) { 
  .calc-compact .calc .preset, .calc-compact .calc .field input[type="number"], .calc-compact .calc .field select { min-height: 44px; }
}


.ex-select-native { display: none; } 
.ex-select { position: relative; }
.ex-select-btn { display: flex; align-items: center; gap: 8px; width: 100%; background: var(--surface); border: 0; box-shadow: var(--ring); border-radius: var(--r-sm); padding: 8px 16px; min-height: 48px; font-size: 14px; font-weight: 600; color: var(--text); cursor: pointer; text-align: left; transition: background-color var(--t-fast); }
.ex-select-btn:hover { background: var(--surface-2); }
.ex-select .ex-cc { margin-right: 0; }
.ex-select-name { font-weight: 700; white-space: nowrap; }
.ex-select-meta { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--text-sub); font-weight: 500; font-size: var(--fs-caption); }
.ex-select-caret { color: var(--text-sub); font-size: var(--fs-caption); }
.ex-select-panel { position: absolute; top: calc(100% + 8px); left: 0; right: 0; min-width: 280px; background: var(--bg); border: var(--overlay-border); border-radius: var(--r-md); box-shadow: var(--hover-shadow); z-index: var(--z-overlay); padding: 8px; }
.ex-select-panel.up { top: auto; bottom: calc(100% + 8px); }
.ex-select-search { width: 100%; background: var(--surface); border: 0; box-shadow: var(--ring); color: var(--text); border-radius: var(--r-sm); padding: 8px 16px; min-height: 44px; font-size: var(--fs-input); margin-bottom: 8px; }
.ex-select-list { max-height: 320px; overflow-y: auto; outline: none; }
.ex-select-opt { display: flex; align-items: center; gap: 8px; padding: 8px; min-height: 44px; border-radius: var(--r-sm); font-size: 14px; font-weight: 600; color: var(--text); cursor: pointer; transition: background-color var(--t-fast); }
.ex-select-opt:hover, .ex-select-opt.act { background: var(--surface); }
.ex-select-opt.on { background: var(--surface-2); }
@media (max-width: 640px) { .ex-select-panel { min-width: 0; } .ex-select-list { max-height: 46vh; } }


.ex-cc { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: var(--chip-bg); box-shadow: var(--ring); vertical-align: middle; margin-right: 8px; flex-shrink: 0; } 
.ex-cc img { width: 62%; height: 62%; object-fit: contain; display: block; }
.ex-cc b { font-size: 11px; font-weight: 800; color: var(--chip-ink); letter-spacing: 0; line-height: 1; } 
.ex-cc-lg { width: 40px; height: 40px; }
.ex-cc-lg b { font-size: var(--fs-caption); }
td .ex-cc { vertical-align: -7px; }
h1 .ex-cc-lg { vertical-align: -9px; margin-right: 8px; }
.stats-row { display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap; }
.stat { text-align: left; }
.stat-v { font-size: var(--fs-h1); font-weight: 800; color: var(--amber); } 
.stat-l { font-size: var(--fs-caption); font-weight: 500; color: var(--text-faint); }
.logo-strip { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 32px; }
.logo-chip { background: var(--surface); box-shadow: var(--ring); border-radius: var(--r-sm); padding: 8px 16px; font-weight: 600; font-size: var(--fs-caption); color: var(--text-sub); }


.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 720px) { .grid-2, .grid-4 { grid-template-columns: 1fr; } }
.card { background: var(--surface); box-shadow: var(--ring); border-radius: var(--r-lg); padding: 24px; }
.card h3 a { color: var(--text); }
.step-num { display: inline-flex; width: 32px; height: 32px; align-items: center; justify-content: center; background: var(--surface-2); color: var(--text); border-radius: var(--r-sm); font-weight: 700; margin-bottom: 8px; }
.rate-card { display: block; color: var(--text); transition: background-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast); text-decoration: none; }
.rate-card:hover { background: var(--surface-2); transform: translateY(-1px); box-shadow: var(--ring), var(--hover-shadow); }
.rate-card:active { transform: translateY(0) scale(.98); }
.rate-big { font-size: var(--fs-h1); font-weight: 800; color: var(--amber); } 
.trust-row { display: flex; gap: 16px; flex-wrap: wrap; }
.trust-chip { background: var(--surface); box-shadow: var(--ring); border-radius: var(--r-sm); padding: 8px 16px; font-size: var(--fs-caption); font-weight: 600; }


table { width: 100%; border-collapse: collapse; background: var(--bg); border-radius: var(--r-sm); overflow: hidden; }
th, td { padding: 16px; text-align: left; border-bottom: 0.75px solid var(--line); font-size: 14px; }
th { background: var(--surface); color: var(--text-faint); font-size: var(--fs-caption); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
tr:last-child td { border-bottom: 0; }
td.num, th.num { text-align: right; }
.table-wrap { overflow-x: auto; border-radius: var(--r-lg); box-shadow: var(--ring); }

.rates-name { white-space: nowrap; }

.cmp-us { background: var(--surface-2); box-shadow: inset 1px 0 0 var(--hairline), inset -1px 0 0 var(--hairline); }
thead .cmp-us { color: var(--ink); }
thead .cmp-us .lc { font-weight: 800; }
tr.hl td { background: var(--amber-bg); }
td a { color: var(--text); text-decoration: underline; text-decoration-color: var(--underline); }
td a:hover { text-decoration-color: var(--text); }


.tip { position: relative; cursor: help; color: var(--text-faint); font-size: var(--fs-caption); font-weight: 500; }
.tip:hover::after, .tip:focus::after {
  content: attr(data-tip); position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--bg); border: var(--overlay-border); box-shadow: var(--hover-shadow); color: var(--text);
  font-size: var(--fs-caption); font-weight: 500; padding: 8px; border-radius: var(--r-sm); white-space: nowrap; z-index: var(--z-overlay);
}



.fx-blocks-label { margin: 0 0 8px; font-size: var(--fs-caption); font-weight: 600; color: var(--text-faint); letter-spacing: .02em; }
.fx-blocks { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.fx-block { position: relative; display: flex; align-items: center; justify-content: flex-start;
  min-width: 0; height: 56px; padding: 0 16px 0 8px; background: var(--bg); box-shadow: var(--ring);
  border-radius: var(--r-sm); transition: background-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast); }
.fx-block:hover, .fx-block:focus-visible { background: var(--surface-2); transform: translateY(-1px); box-shadow: var(--ring), var(--hover-shadow); }
.fx-block:active { transform: translateY(0) scale(.98); }
.fx-block .ex-cc { margin: 0; }
.fx-block:hover::after, .fx-block:focus-visible::after { 
  content: attr(data-tip); position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--bg); border: var(--overlay-border); box-shadow: var(--hover-shadow); color: var(--text);
  font-size: var(--fs-caption); font-weight: 500; padding: 8px; border-radius: var(--r-sm); white-space: nowrap; z-index: var(--z-overlay);
  max-width: 84vw; white-space: normal; width: max-content; text-align: center;
}

.fx-block:first-child:hover::after, .fx-block:first-child:focus-visible::after { left: 0; transform: none; }
.fx-block:last-child:hover::after, .fx-block:last-child:focus-visible::after { left: auto; right: 0; transform: none; }
.fx-block { gap: 8px; text-decoration: none; }
.fx-block-name { font-size: var(--fs-caption); font-weight: 600; color: var(--text); }
@media (max-width: 720px) {
  .fx-blocks { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; } 
  .fx-block { height: 48px; padding: 0 8px; }
  .fx-block .ex-cc-lg { width: 32px; height: 32px; }
  .fx-block-name { font-size: 12px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } 
}


[dir="rtl"] body { direction: rtl; }
[dir="rtl"] th, [dir="rtl"] td, [dir="rtl"] .hero, [dir="rtl"] .stat, [dir="rtl"] .picker-item { text-align: right; }
[dir="rtl"] .num, [dir="rtl"] code, [dir="rtl"] .code-box { direction: ltr; unicode-bidi: isolate; }
[dir="rtl"] .ex-cc { margin-right: 0; margin-left: 8px; }
[dir="rtl"] summary { padding-right: 0; padding-left: 32px; }
[dir="rtl"] summary::after { right: auto; left: 2px; }


details { background: var(--surface); box-shadow: var(--ring); border-radius: var(--r-lg); margin-bottom: 8px; padding: 0 24px; }
summary { cursor: pointer; font-weight: 600; font-size: var(--fs-body); padding: 16px 32px 16px 0; list-style: none; position: relative; }
summary::after { content: "+"; position: absolute; right: 2px; top: 16px; color: var(--text-faint); font-weight: 700; }
details[open] summary::after { content: "−"; }
details p { margin: 0 0 16px; color: var(--text-sub); }


.calc { background: var(--surface); box-shadow: var(--ring); border-radius: var(--r-lg); padding: 24px; }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 720px) { .calc-grid { grid-template-columns: 1fr; } }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: var(--fs-caption); font-weight: 600; color: var(--text-sub); margin-bottom: 8px; }

.field input:not([type="range"]):not([type="checkbox"]):not([type="radio"]), .field select { width: 100%; background: var(--bg); border: 0; box-shadow: var(--ring); color: var(--text); border-radius: var(--r-sm); padding: 8px 16px; min-height: 44px; font-size: var(--fs-input); }
.field input:focus, .field select:focus { outline: 2px solid var(--up); outline-offset: -1px; }
.field input[type="range"] { width: 100%; accent-color: var(--ink); }

.hub-controls { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hub-controls input[type="search"] { background: var(--bg); border: 0; box-shadow: var(--ring); color: var(--text); border-radius: var(--r-sm); padding: 8px 16px; min-height: 44px; font-size: var(--fs-input); flex: 1; min-width: 180px; }
.chips { display: flex; gap: 8px; }
.chip { background: var(--surface); box-shadow: var(--ring); border: 0; color: var(--text-sub); border-radius: var(--r-pill); padding: 8px 16px; min-height: 44px; font-size: var(--fs-caption); font-weight: 600; cursor: pointer; transition: background-color var(--t-fast); }
.chip:hover { background: var(--surface-2); }
.chip.on { background: var(--ink); color: var(--on-ink); }
th[data-sort] { padding: 0; }
.th-sort { width: 100%; background: transparent; border: 0; color: inherit; font: inherit; font-size: var(--fs-caption); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; padding: 16px; cursor: pointer; text-align: inherit; }
th.num .th-sort { text-align: right; }
.sort-ind { color: var(--ink); font-weight: 800; }
th .lc { text-transform: none; } 


.picker-list { max-height: 280px; overflow-y: auto; margin-top: 8px; border-radius: var(--r-sm); box-shadow: var(--ring); background: var(--bg); }
.picker-group { padding: 8px 16px 0; font-size: var(--fs-caption); font-weight: 600; color: var(--text-faint); text-transform: uppercase; letter-spacing: .5px; }
.picker-item { display: flex; align-items: center; gap: 8px; width: 100%; text-align: left; border: 0; background: transparent; padding: 8px 16px; min-height: 44px; font-size: 14px; font-weight: 600; color: var(--text); cursor: pointer; transition: background-color var(--t-fast); }
.picker-item:hover { background: var(--surface); }
.picker-item.on { background: var(--surface-2); }
.picker-request { padding: 8px; box-shadow: 0 -0.75px 0 var(--hairline); }
.picker-request input { background: var(--bg); border: 0; box-shadow: var(--ring); color: var(--text); border-radius: var(--r-sm); padding: 8px 16px; min-height: 44px; font-size: var(--fs-input); }

.preset-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.preset { background: var(--bg); box-shadow: var(--ring); color: var(--text-sub); border: 0; border-radius: var(--r-sm); padding: 0 16px; min-height: 44px; font-size: var(--fs-caption); font-weight: 600; cursor: pointer; transition: background-color var(--t-fast); }
.preset:hover, .preset.on { color: var(--text); background: var(--surface-2); }
.seg { display: inline-flex; background: var(--surface-2); border-radius: var(--r-sm); padding: 0; margin-bottom: 16px; }
.seg button { border: 0; background: transparent; color: var(--text-sub); border-radius: var(--r-sm); padding: 8px 16px; min-height: 40px; font-size: var(--fs-caption); font-weight: 600; cursor: pointer; transition: background-color var(--t-fast); margin: 2px; } 
.seg button.on { background: var(--bg); color: var(--text); }
.result-card { background: var(--bg); box-shadow: var(--ring); border-radius: var(--r-lg); padding: 24px; text-align: center; min-height: 120px; }
.result-card.flash { animation: calc-flash .3s ease-out; }
@keyframes calc-flash { from { background-color: var(--amber-bg); } to { background-color: var(--bg); } }
.result-num { font-size: var(--fs-display); font-weight: 800; color: var(--amber); } 
.result-sub { display: flex; gap: 8px; justify-content: center; margin-top: 16px; }
.result-sub .cell { background: var(--surface); border-radius: var(--r-sm); padding: 8px 16px; flex: 1; }
.result-sub .v { font-weight: 700; color: var(--text); }
.result-sub .l { font-size: var(--fs-caption); font-weight: 500; color: var(--text-faint); }
.boost-badge { margin-top: 16px; }
.fee-bar { margin-top: 16px; }
.fee-bar .bar { height: 10px; background: var(--surface-2); border-radius: 2px; overflow: hidden; margin: 8px 0; }
.fee-bar .fill { height: 100%; background: var(--amber); border-radius: 2px; }
.fee-bar .row { display: flex; justify-content: space-between; font-size: var(--fs-caption); font-weight: 500; color: var(--text-sub); }
.disclaimer { font-size: var(--fs-caption); font-weight: 500; color: var(--text-faint); margin-top: 16px; }

.calc-share-link { background: none; border: 0; padding: 8px 0 0; margin: 0; font-size: var(--fs-caption); font-weight: 500; color: var(--text-sub); text-decoration: underline; text-decoration-color: var(--underline); cursor: pointer; }
.calc-share-link:hover { color: var(--text); text-decoration-color: var(--text); }


.pc-wrap { max-width: 720px; }
.pc-sub { max-width: 640px; }
.pc { background: var(--surface); box-shadow: var(--ring); border-radius: var(--r-lg); padding: 24px; }
.pc-progress { height: 8px; background: var(--surface-2); border-radius: var(--r-pill); overflow: hidden; }
.pc-progress-fill { height: 100%; background: var(--ink); border-radius: var(--r-pill); transition: width var(--t-fast); }
.pc-step-caption { margin: 8px 0 0; }
.pc-title { font-size: var(--fs-h2); margin: 8px 0 24px; }
.pc-search { width: 100%; background: var(--bg); border: 0; box-shadow: var(--ring); color: var(--text); border-radius: var(--r-sm); padding: 8px 16px; min-height: 44px; font-size: var(--fs-input); margin-bottom: 8px; }
.pc-group { font-size: var(--fs-caption); font-weight: 600; color: var(--text-faint); text-transform: uppercase; letter-spacing: .5px; margin: 16px 0 8px; }
.pc-ex-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.pc-ex-tile { display: flex; flex-direction: column; align-items: center; gap: 8px; background: var(--bg); box-shadow: var(--ring); border: 0; border-radius: var(--r-md); padding: 16px 8px; cursor: pointer; transition: background-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast); }
.pc-ex-tile:hover { background: var(--surface-2); transform: translateY(-1px); box-shadow: var(--ring), var(--hover-shadow); }
.pc-ex-tile:active { transform: translateY(0) scale(.98); }
.pc-ex-tile.on { background: var(--surface-2); box-shadow: inset 0 0 0 2px var(--ink); }
.pc-ex-tile .ex-cc { margin-right: 0; }
.pc-ex-name { font-size: var(--fs-caption); font-weight: 600; color: var(--text); }
.pc-ex-rate { font-size: var(--fs-caption); font-weight: 700; color: var(--amber); } 
.pc-field { margin-bottom: 24px; }
.pc-field-head { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; margin-bottom: 8px; }
.pc-label { font-size: var(--fs-caption); font-weight: 600; color: var(--text-sub); }
.pc-val { font-size: var(--fs-h2); font-weight: 800; color: var(--amber); } 
.pc-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
.pc-field input[type="range"] { width: 100%; accent-color: var(--ink); margin: 8px 0 0; }
.pc-ratio-ends { display: flex; justify-content: space-between; font-size: var(--fs-caption); font-weight: 500; color: var(--text-sub); margin-top: 8px; direction: ltr; } 
.pc-freq-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; }
.pc-freq-card { background: var(--bg); box-shadow: var(--ring); border: 0; border-radius: var(--r-md); padding: 16px 8px; min-height: 56px; font-size: var(--fs-caption); font-weight: 600; color: var(--text); cursor: pointer; transition: background-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast); }
.pc-freq-card:hover { background: var(--surface-2); transform: translateY(-1px); box-shadow: var(--ring), var(--hover-shadow); }
.pc-freq-card:active { transform: translateY(0) scale(.98); }
.pc-freq-card.on { background: var(--surface-2); box-shadow: inset 0 0 0 2px var(--ink); }
.pc-nav { display: flex; justify-content: space-between; gap: 8px; margin-top: 24px; }
.pc-nav .btn-primary:only-child { margin-left: auto; }


.pc-duel { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--bg); box-shadow: var(--ring); border-radius: var(--r-lg); overflow: hidden; }
.pc-duel-card { background: transparent; box-shadow: none; border-radius: 0; padding: 24px 16px; text-align: center; }
.pc-duel-with { box-shadow: inset 1px 0 0 var(--hairline); }   
.pc-duel-label { font-size: var(--fs-caption); font-weight: 700; color: var(--text-faint); }
.pc-duel-with .pc-duel-label { color: var(--text); }
.pc-duel-sub { margin: 0 0 8px; } 

.ex-cc.cc-skel { background: var(--surface-2); position: relative; overflow: hidden; }
.ex-cc.cc-skel img { visibility: hidden; }
.ex-cc.cc-skel::after { content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: linear-gradient(90deg, transparent, var(--shimmer), transparent);
  animation: cc-shimmer 1.2s infinite; }
@keyframes cc-shimmer { from { transform: translateX(-100%); } to { transform: translateX(100%); } }
.pc-duel-num { font-size: var(--fs-display); font-weight: 800; }
.pc-duel-without .pc-duel-num { color: var(--text-faint); }
.pc-duel-with .pc-duel-num { color: var(--amber); }
.pc-np-card { max-width: 480px; margin: 0 auto; background: var(--bg); box-shadow: var(--ring); border-radius: var(--r-lg); } 
.pc-np-ctas { text-align: center; }
.pc-how { margin-top: 16px; background: var(--bg); }
.pc-how-rows { padding-bottom: 16px; }
.pc-how-row { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; }
.pc-how-row span { color: var(--text-sub); font-size: 14px; }
.pc-how-note { margin: 0 0 8px; }
.pc-how-final b { color: var(--amber); }

.pc-card { background: var(--bg); box-shadow: var(--ring); border-radius: var(--r-lg); padding: 24px; margin-bottom: 16px; }
.pc-sum { display: grid; gap: 8px; margin: 0; }
.pc-sum > div { display: flex; justify-content: space-between; gap: 16px; }
.pc-sum dt { color: var(--text-sub); font-size: 14px; }
.pc-sum dd { margin: 0; font-weight: 600; }
.pc-derived { background: var(--surface-2); border-radius: var(--r-lg); padding: 24px; text-align: center; margin-bottom: 16px; }
.pc-derived-num { font-size: var(--fs-h1); font-weight: 800; margin: 8px 0; }
.pc-derived-back { font-size: var(--fs-h2); font-weight: 800; color: var(--amber); margin-top: 8px; }
.pc-derived-back span { font-size: var(--fs-caption); font-weight: 500; color: var(--text-faint); }
.pc-tl { list-style: none; margin: 0; padding: 0; }
.pc-tl li { display: flex; gap: 16px; padding: 8px 0; position: relative; }
.pc-tl li:not(:last-child)::after { content: ''; position: absolute; left: 15px; top: 48px; bottom: -8px; width: 2px; background: var(--line); } 
.pc-tl-dot { flex-shrink: 0; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: var(--surface-2); border-radius: 50%; font-weight: 700; font-size: var(--fs-caption); }
.pc-tl p { margin: 0; }
.pc-ctas { text-align: center; margin-top: 24px; }
.pc-ctas .btn-primary { width: 100%; max-width: 400px; }
.pc-boost { margin: 8px 0 0; color: var(--amber); font-weight: 600; } 
.pc-ctas .btn-ghost { margin-top: 8px; }
[dir="rtl"] .pc-tl li:not(:last-child)::after { left: auto; right: 15px; }
@media (max-width: 720px) {
  .pc-ex-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pc-freq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pc-duel { grid-template-columns: 1fr; }
  .pc-duel-with { box-shadow: inset 0 1px 0 var(--hairline); }
  .pc-duel-num { font-size: var(--fs-h1); }
}


.gd-head { display: flex; align-items: center; gap: 16px; margin: 16px 0; flex-wrap: wrap; }
.gd-tabs { flex-wrap: wrap; }
.gd-tabs .chip { text-decoration: none; display: inline-flex; align-items: center; }
.gd-steps { list-style: none; margin: 0; padding: 0; }
.gd-step { display: flex; gap: 16px; background: var(--surface); box-shadow: var(--ring); border-radius: var(--r-lg); padding: 24px; margin-bottom: 16px; }
.gd-n { flex-shrink: 0; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: var(--surface-2); color: var(--text); border-radius: 50%; font-weight: 700; font-size: var(--fs-caption); }
.gd-body { min-width: 0; flex: 1; }
.gd-img { width: 100%; border-radius: var(--r-md); box-shadow: var(--ring); margin-bottom: 16px; display: block; }
.gd-caption { margin: 0; }
.gd-body .note { margin-top: 8px; }
[dir="rtl"] .gd-tabs .chip { text-align: right; }


.breadcrumbs { font-size: var(--fs-caption); font-weight: 500; color: var(--text-faint); padding: 16px 0 0; }
.breadcrumbs a { color: var(--text-faint); }
.ex-hero { padding: 48px 0; }
.code-box { display: inline-flex; align-items: center; gap: 8px; background: var(--surface-2); border-radius: var(--r-sm); padding: 8px 16px; margin: 16px 0; }
.code-box code { font-size: var(--fs-h3); font-weight: 800; color: var(--ink); letter-spacing: 1px; }
.kpi-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 24px; }
@media (max-width: 900px) { .kpi-strip { grid-template-columns: repeat(2, 1fr); } }
.kpi { background: var(--surface); box-shadow: var(--ring); border-radius: var(--r-sm); padding: 16px; text-align: center; }
.kpi .v { font-weight: 800; font-size: var(--fs-h3); color: var(--text); }
.kpi .l { font-size: var(--fs-caption); font-weight: 500; color: var(--text-faint); }
.steps-list { counter-reset: s; list-style: none; padding: 0; margin: 0; }
.steps-list li { counter-increment: s; position: relative; padding: 16px 0 16px 48px; border-bottom: 0.75px solid var(--line); }
.steps-list li:last-child { border-bottom: 0; }
.steps-list li::before { content: counter(s); position: absolute; left: 0; top: 16px; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: var(--surface-2); color: var(--text); font-weight: 700; border-radius: var(--r-sm); font-size: 14px; }
.note { background: var(--surface); border-radius: var(--r-sm); box-shadow: var(--ring); padding: 16px; font-size: var(--fs-caption); font-weight: 500; color: var(--text-sub); }
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li { padding: 8px 0 8px 24px; position: relative; }
.feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--text-sub); font-weight: 700; }


.site-footer { background: var(--surface); padding: 32px 0; margin-top: 24px; font-size: var(--fs-caption); }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 16px; }
.footer-nav a { color: var(--text-sub); text-decoration: none; font-weight: 600; padding: 16px 0; display: inline-block; } 
.footer-nav a:hover { color: var(--text); }

.mega-footer { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.fm-col summary { font-weight: 700; color: var(--text); margin-bottom: 8px; list-style: none; cursor: default; }
.fm-col summary::-webkit-details-marker { display: none; }
.fm-col nav { display: flex; flex-direction: column; }
.fm-col nav a { color: var(--text-sub); text-decoration: none; font-weight: 500; padding: 6px 0; display: block; }
.fm-col nav a:hover { color: var(--text); }
.fm-col nav a[aria-current="true"] { color: var(--text); font-weight: 700; }
@media (max-width: 719px) {
  .mega-footer { grid-template-columns: 1fr; gap: 0; }
  .fm-col { border-bottom: 1px solid var(--line); }
  .fm-col summary { cursor: pointer; padding: 12px 0; margin-bottom: 0; } 
  .fm-col summary::after { content: "+"; float: right; color: var(--text-faint); }
  .fm-col[open] summary::after { content: "–"; }
  .fm-col nav { padding-bottom: 8px; }
  .fm-col nav a { padding: 10px 0; }
}

.hub-list { list-style: none; padding: 0; margin: 16px 0; }
.hub-list li { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; padding: 12px 0; border-bottom: 1px solid var(--line); }
.hub-list li a { font-weight: 600; text-decoration: none; color: var(--text); display: inline-flex; align-items: center; gap: 6px; padding: 4px 0; }
.hub-list li a:hover { color: var(--accent, var(--text-sub)); }
.hub-groups { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 16px; }
.hub-group h2 { display: flex; align-items: center; gap: 8px; font-size: var(--fs-h3, 18px); margin-bottom: 4px; }
.acct-chips a.badge { padding: 8px 16px; line-height: normal; } 
.legal-notes p { color: var(--text-faint); font-size: var(--fs-caption); font-weight: 500; margin: 8px 0; }


.legal-banner { background: var(--amber-bg); color: var(--ink); border-radius: var(--r-sm); padding: 12px 16px; font-size: var(--fs-caption); font-weight: 700; margin: 16px 0; }
.legal-toc { margin: 24px 0; }
.legal-toc ol { margin: 0; padding-left: 20px; }
.legal-toc li { padding: 4px 0; font-size: var(--fs-caption); }
.legal-toc a { color: var(--text-sub); text-decoration: none; }
.legal-toc a:hover { color: var(--ink); }
.legal-sec { margin-top: 32px; scroll-margin-top: 80px; } 
.legal-sec h2 { font-size: var(--fs-h2); margin-bottom: 8px; }
.legal-sec p { line-height: 1.7; margin: 12px 0; }
.legal-list { margin: 12px 0; padding-left: 20px; }
.legal-list li { line-height: 1.7; padding: 6px 0; }

.legal-callout { background: var(--surface); border-radius: var(--r-sm); padding: 16px; box-shadow: inset 3px 0 0 var(--ink); font-weight: 600; }
.legal-table th, .legal-table td { font-size: var(--fs-caption); vertical-align: top; }

.legal-pending { background: var(--surface-2); color: var(--text-sub); border-radius: var(--r-sm); padding: 1px 8px; font-size: var(--fs-caption); font-weight: 700; white-space: nowrap; }


.center { text-align: center; }
.mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mb-2 { margin-bottom: 16px; }
.err { color: var(--down); font-size: var(--fs-caption); font-weight: 500; min-height: 18px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); border: 0; }
