:root {
  --bg: #141218;
  --surface: #1D1B20;
  --card: #2B2930;
  --cardhi: #36343B;
  --outline: #49454F;
  --outline-var: #33303A;
  --on: #F5F1F6;
  --onvar: #D6D0DC;
  --primary: #FFB74D;
  --onprimary: #4A2800;
  --green: #66BB6A;
  --error: #EF5350;
  --info: #64B5F6;
  --gold: #FFD54F;
  --kakao: #FFCC00;
  --shadow: rgba(0,0,0,.45);
  color-scheme: dark;
}
:root[data-theme="day"] {
  --bg: #F8F9FA;
  --surface: #FFFFFF;
  --card: #FFFFFF;
  --cardhi: #F2EEF5;
  --outline: #CAC4D0;
  --outline-var: #E7E0EC;
  --on: #1C1B1F;
  --onvar: #49454F;
  --primary: #EF6C00;
  --onprimary: #FFFFFF;
  --green: #2E7D32;
  --error: #C62828;
  --info: #1565C0;
  --gold: #A67C00;
  --kakao: #B08900;
  --shadow: rgba(0,0,0,.12);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--on);
  font-family: 'Pretendard Variable', Pretendard, 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img, svg { max-width: 100%; }
strong { font-weight: 700; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 760px; }

.top {
  position: sticky; top: 0; z-index: 20;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--outline-var);
}
.top .wrap { display: flex; align-items: center; gap: 16px; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--on); font-weight: 800; font-size: 19px; }
.brand:hover { text-decoration: none; }
.brand svg { width: 32px; height: 32px; color: var(--primary); }
.nav { display: flex; gap: 4px; margin-left: auto; align-items: center; }
.nav a { color: var(--onvar); font-size: 15px; padding: 8px 12px; border-radius: 20px; }
.nav a:hover { background: var(--cardhi); text-decoration: none; color: var(--on); }
.nav a.cur { color: var(--on); font-weight: 700; }
.theme-btn {
  font: inherit; font-size: 14px; font-weight: 600;
  color: var(--onvar); background: var(--card); border: 1px solid var(--outline);
  border-radius: 20px; padding: 6px 12px; cursor: pointer; min-height: 40px;
}
.theme-btn:hover { color: var(--on); }
.menu-btn { display: none; }
@media (max-width: 720px) {
  .nav { display: none; position: absolute; top: 64px; left: 0; right: 0;
         background: var(--surface); border-bottom: 1px solid var(--outline-var);
         flex-direction: column; align-items: stretch; padding: 8px 12px 16px; gap: 0; }
  .nav.open { display: flex; }
  .nav a { padding: 12px 8px; font-size: 17px; min-height: 48px; }
  .menu-btn { display: inline-flex; margin-left: auto; align-items: center; justify-content: center;
              width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--outline);
              background: var(--card); color: var(--on); font: inherit; cursor: pointer; }
  .top .theme-btn { order: 3; }
}

.card {
  background: var(--card); border: 1px solid var(--outline); border-radius: 12px; padding: 20px;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 52px; padding: 0 24px; border-radius: 26px;
  font-weight: 700; font-size: 17px; border: 1px solid transparent; cursor: pointer;
}
.btn.primary { background: var(--primary); color: var(--onprimary); }
.btn.primary:hover { text-decoration: none; filter: brightness(1.05); }
.btn.outline { background: transparent; color: var(--on); border-color: var(--outline); }
.btn.outline:hover { background: var(--cardhi); text-decoration: none; }
.btn.soon { opacity: .55; cursor: default; }
.btn.soon:hover { filter: none; background: transparent; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; padding: 4px 10px; border-radius: 12px;
  border: 1px solid var(--outline); color: var(--onvar); background: transparent;
}
.chip.on { color: var(--onprimary); background: var(--primary); border-color: var(--primary); }
.chip.soft { color: var(--onvar); background: var(--cardhi); border-color: transparent; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--primary); display: inline-block; animation: breath 1.8s ease-in-out infinite; }
@keyframes breath { 0%,100% { opacity: 1 } 50% { opacity: .3 } }
.eyebrow { color: var(--primary); font-weight: 700; font-size: 14px; letter-spacing: .02em; margin: 0 0 8px; }
.muted { color: var(--onvar); }
.small { font-size: 14px; }
.num { font-variant-numeric: tabular-nums; }

h1, h2, h3 { line-height: 1.3; margin: 0; }
h2 { font-size: 28px; font-weight: 800; }
h3 { font-size: 19px; font-weight: 700; }
section { padding: 72px 0; scroll-margin-top: 72px; }
section + section { border-top: 1px solid var(--outline-var); }
.sec-head { max-width: 760px; margin-bottom: 32px; }
.sec-head p { color: var(--onvar); margin: 12px 0 0; }
.sec-head .eyebrow { color: var(--primary); margin: 0 0 8px; }
@media (max-width: 720px) { section { padding: 48px 0; } h2 { font-size: 24px; } }

.hero { padding: 56px 0 72px; }
.hero .wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero h1 { font-size: 44px; font-weight: 800; letter-spacing: -.01em; }
.hero h1 em { font-style: normal; color: var(--primary); }
.hero .lead { font-size: 19px; color: var(--onvar); margin: 20px 0 0; max-width: 520px; }
.hero .slogan { margin: 8px 0 0; font-weight: 700; }
.hero .cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero .note { margin: 14px 0 0; font-size: 14px; color: var(--onvar); }
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 34px; }
  .hero .lead { font-size: 17px; }
}

.dev {
  --z: .86;
  flex: none; position: relative;
  width: calc(360px * var(--z) + 22px); padding: 10px; border-radius: 44px;
  background: #0B0A0D; border: 1px solid #3A3742; box-shadow: 0 24px 48px var(--shadow);
}
.app {
  zoom: var(--z);
  --d: 1px;
  width: 360px; height: 760px; border-radius: 34px; overflow: hidden; position: relative;
  display: flex; flex-direction: column;
  background: #141218; color: #F5F1F6;
  font-size: 15px; line-height: 1.6; text-align: left; letter-spacing: 0;
  word-break: keep-all; overflow-wrap: break-word; font-variant-numeric: tabular-nums;
  user-select: none;
}
.app *, .ink * { min-width: 0; }
.app b, .ink b { font-weight: 700; }

.sbar { flex: none; height: 34px; padding: 0 22px; display: flex; align-items: center; justify-content: space-between; font-size: 14px; font-weight: 600; position: relative; }
.sbar::after { content: ''; position: absolute; left: 50%; top: 11px; width: 12px; height: 12px; margin-left: -6px; border-radius: 50%; background: #000; box-shadow: 0 0 0 2px #1D1B20; }
.sbar .sic { display: flex; align-items: center; gap: 6px; font-size: 12px; }
.sbar svg { width: 34px; height: 12px; fill: currentColor; }
.nav3 { flex: none; height: 48px; display: flex; align-items: center; justify-content: space-around; padding: 0 40px; color: #9A94A2; background: #141218; border-top: 1px solid #1D1B20; }
.nav3 svg { width: 22px; height: 22px; }
.abody { flex: 1; min-height: 0; overflow: hidden; position: relative; }
.apad { padding: 16px; display: flex; flex-direction: column; gap: 16px; }

.acard { background: #2B2930; border: 1px solid #49454F; border-radius: 12px; padding: 16px; }
.on2 { color: #D6D0DC; }
.pri { color: #FFB74D; }
.grn { color: #66BB6A; }
.ell { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hr1 { height: 1px; background: #49454F; }
.ic-luck { width: 20px; height: 20px; flex: none; }
.breath { width: 10px; height: 10px; border-radius: 50%; background: #FFB74D; flex: none; animation: breath 1.6s linear infinite alternate; }
@media (prefers-reduced-motion: reduce) { .breath, .dot { animation: none; } }

.bdg { flex: none; display: grid; place-items: center; font-weight: 800; line-height: 1;
  width: calc(40 * var(--d)); height: calc(40 * var(--d)); border-radius: calc(10 * var(--d)); font-size: calc(17 * var(--d)); }
.bdg.two { font-size: calc(12.75 * var(--d)); }
.bdg.s22 { width: 22px; height: 22px; border-radius: 6px; font-size: 12px; }
.bdg.s16 { width: 16px; height: 16px; border-radius: 4px; font-size: 9px; }
.b-k { background: #FFCC00; color: #1A1A1A; }
.b-t { background: #FFFFFF; color: #111111; box-shadow: inset 0 0 0 1px #49454F; }
.b-cm { background: #666666; color: #FFFFFF; }
.b-si { background: #33CCCC; color: #0A2724; }
.coin { flex: none; display: inline-grid; place-items: center; border-radius: 50%; font-weight: 700; font-style: normal; line-height: 1;
  width: calc(16 * var(--d)); height: calc(16 * var(--d)); }
.coin.c14 { width: calc(14 * var(--d)); height: calc(14 * var(--d)); }
.coin.k { background: #FF9933; box-shadow: inset 0 0 0 calc(2 * var(--d)) #FFCC66; color: #FFCC66; font-size: calc(9.6 * var(--d)); }
.coin.k.c14 { font-size: calc(8.4 * var(--d)); }
.coin.t { background: #FFFFFF; box-shadow: inset 0 0 0 1px #49454F; color: #111111; font-size: calc(11.2 * var(--d)); }

.hpf { display: flex; align-items: center; gap: 12px; padding: 8px 0; }
.hpf .av { width: 44px; height: 44px; border-radius: 50%; background: #2B2930; box-shadow: inset 0 0 0 2px #FFB74D; display: grid; place-items: center; font-size: 17px; font-weight: 700; color: #D6D0DC; flex: none; }
.hpf .nm { font-size: 17px; font-weight: 600; line-height: 1.4; }
.hpf .sub { font-size: 13px; color: #D6D0DC; line-height: 1.5; }
.hpf .set { margin-left: auto; font-size: 15px; font-weight: 600; color: #FFB74D; padding: 8px 12px; }
.hrec .l { display: grid; grid-template-columns: 10px 1fr; column-gap: 8px; align-items: center; }
.hrec .l1 { font-size: 15px; font-weight: 600; line-height: 1.5; }
.hrec .l2 { grid-column: 2; font-size: 13px; font-weight: 600; color: #FFB74D; line-height: 1.5; }
.hrec .hr1 { margin: 12px 0; }
.hlast { display: flex; align-items: center; gap: 8px; }
.hlast .mid { flex: 1; }
.hlast .t { font-size: 13px; color: #D6D0DC; line-height: 1.5; }
.hlast .o { font-size: 15px; line-height: 1.55; }
.hlast .de { font-size: 15px; color: #D6D0DC; line-height: 1.55; }
.hlast .fa { display: flex; flex-direction: column; align-items: flex-end; }
.hlast .f { display: flex; align-items: center; gap: 3px; font-size: 17px; font-weight: 600; white-space: nowrap; color: var(--fc, #F5F1F6); }
.hlast .n { font-size: 13px; color: #D6D0DC; white-space: nowrap; }
.hfoot { display: flex; justify-content: space-between; margin-top: 8px; padding-left: 48px; font-size: 13px; line-height: 1.5; }
.hfoot .st { font-weight: 700; }
.hfoot span:last-child { color: #D6D0DC; }
.hwd { display: flex; flex-direction: column; gap: 8px; }
.hwd .wtop { font-size: 17px; font-weight: 600; line-height: 1.45; }
.hwd .net { display: flex; justify-content: space-between; align-items: baseline; }
.hwd .net .g { color: #66BB6A; font-size: 15px; white-space: nowrap; }
.hwd .net .g b { font-size: 22px; font-weight: 700; }
.hwd .net .c { font-size: 22px; font-weight: 700; }
.hwd .hwage { font-size: 15px; color: #D6D0DC; line-height: 1.5; }
.hwd .pct { text-align: right; font-size: 13px; font-weight: 600; color: #D6D0DC; line-height: 1.3; }
.abar { height: 8px; border-radius: 4px; background: #49454F; overflow: hidden; }
.abar i { display: block; height: 100%; border-radius: 4px; background: #D6D0DC; }
.abar.p i { background: #FFB74D; }
.abar.gold i { background: #FFD54F; }
.btns { display: flex; gap: 8px; }
.abtn { flex: 1; min-height: 48px; border-radius: 24px; display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 17px; font-weight: 600; white-space: nowrap; }
.abtn.f { background: #FFB74D; color: #4A2800; }
.abtn.o { box-shadow: inset 0 0 0 1px #49454F; color: #FFB74D; }
.abtn.q { box-shadow: inset 0 0 0 1px #49454F; color: #F5F1F6; font-size: 15px; }
.hluck { display: flex; align-items: center; gap: 8px; min-height: 48px; font-size: 15px; line-height: 1.5; color: #D6D0DC; }
.hluck .ic-luck { color: #D6D0DC; }
.hluck b { color: #F5F1F6; font-weight: 600; }
.hluck .ch { margin-left: auto; font-size: 17px; }
.hmenu { padding: 0; overflow: hidden; }
.hmenu .mi { min-height: 56px; padding: 0 16px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #49454F; font-size: 15px; }
.hmenu .mi:first-child { border-top: 0; }
.hmenu .mi span:last-child { font-size: 17px; color: #D6D0DC; }

.lhdr { height: 56px; flex: none; display: flex; align-items: center; padding: 0 16px; gap: 10px; }
.lhdr .bk { font-size: 15px; font-weight: 600; color: #FFB74D; white-space: nowrap; }
.lhdr .dt { flex: 1; display: flex; align-items: center; justify-content: center; gap: 12px; font-size: 17px; font-weight: 700; white-space: nowrap; }
.lhdr .dt .pri { font-size: 15px; }
.lhdr .ttl { flex: 1; font-size: 22px; font-weight: 700; white-space: nowrap; }
.atabs { flex: none; display: flex; border-bottom: 1px solid #49454F; }
.atabs span { flex: 1; height: 48px; display: grid; place-items: center; font-size: 16px; font-weight: 600; color: #D6D0DC; }
.atabs span.on { color: #FFB74D; font-weight: 700; box-shadow: inset 0 -2px #FFB74D; }
.alist { padding: 16px 16px 88px; display: flex; flex-direction: column; gap: 8px; }
.alist.scrolled { margin-top: -30px; }
.apills { display: flex; gap: 8px; }
.apills span { flex: 1; min-height: 48px; border-radius: 24px; box-shadow: inset 0 0 0 1px #49454F; display: grid; place-items: center; font-size: 15px; font-weight: 600; }
.asize { display: flex; justify-content: flex-end; align-items: center; font-size: 13px; color: #D6D0DC; }
.asize button { font: inherit; font-size: 17px; line-height: 1; color: #FFB74D; background: none; border: 0; padding: 4px 10px; min-height: 40px; min-width: 40px; border-radius: 20px; cursor: pointer; }
.asize button:hover { background: rgba(255,183,77,.12); }
.asize button:disabled { color: rgba(245,241,246,.38); cursor: default; background: none; }
.asize button:focus-visible { outline: 2px solid #FFB74D; outline-offset: 1px; }
.asize .pct { width: 40px; text-align: center; font-weight: 600; color: #F5F1F6; }
.afab { position: absolute; right: 16px; bottom: 16px; width: 56px; height: 56px; border-radius: 16px; background: #FFB74D; color: #4A2800; display: grid; place-items: center; box-shadow: 0 6px 14px rgba(0,0,0,.45); }
.afab .ic-luck { width: 26px; height: 26px; }

.atot { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.atot .tt { font-size: 13px; color: #D6D0DC; }
.lines { width: 100%; display: flex; flex-direction: column; gap: 6px; padding-top: 4px; }
.lines.g8 { gap: 8px; padding-top: 0; }
.ln { display: flex; gap: 12px; font-size: 15px; line-height: 1.5; }
.ln .lb { flex: 1; color: #D6D0DC; }
.ln .v { font-weight: 600; white-space: nowrap; }
.ln.note .v { color: #D6D0DC; }
.ln.tot .v { font-weight: 700; }
.ln.exp .v { color: #EF5350; }
.ln.big { align-items: baseline; }
.ln.big .v { font-size: 26px; font-weight: 800; letter-spacing: -.5px; color: #66BB6A; line-height: 1.2; }
.atot .cnt { font-size: 13px; color: #D6D0DC; padding-top: 2px; }
.atot .cnt b { color: #F5F1F6; font-weight: 600; }
.atot .cnt .x { color: #EF5350; }
.atot .go { font-size: 13px; font-weight: 600; color: #FFB74D; }
.atot .pub { font-size: 13px; color: #D6D0DC; }

.lc { --d: calc(var(--cs, 1) * 1px); background: #2B2930; border: 1px solid #49454F; border-radius: 12px; overflow: hidden; color: #F5F1F6; }
.lc .stp { height: calc(3 * var(--d)); background: var(--badge); }
.lc .stb { height: calc(3 * var(--d)); background: var(--accent); }
.lc .inr { display: flex; }
.lc .side { flex: none; width: calc(4 * var(--d)); background: #333333; }
.lc .bd { flex: 1; padding: calc(12 * var(--d)) calc(16 * var(--d)); display: flex; flex-direction: column; gap: calc(6 * var(--d)); }
.lc .r1 { display: flex; align-items: center; }
.lc .mid { flex: 1; margin: 0 calc(4 * var(--d)) 0 calc(10 * var(--d)); }
.lc .nm { font-size: calc(15 * var(--d)); font-weight: 600; line-height: 1.4; }
.lc .sub { display: flex; align-items: center; gap: calc(5 * var(--d)); font-size: calc(13 * var(--d)); color: #D6D0DC; line-height: 1.5; white-space: nowrap; overflow: hidden; }
.lc .sub > * { flex: none; }

.lc .sub > .tags { flex: 0 1 auto; display: flex; flex-wrap: wrap; column-gap: calc(6 * var(--d)); row-gap: calc(8 * var(--d)); max-height: calc(22 * var(--d)); overflow: hidden; }
.lc .sub > .tags > * { flex: none; }
.lc .st { font-size: calc(12 * var(--d)); font-weight: 600; color: var(--fc); }
.lc .cx { background: #EF5350; color: #fff; font-size: calc(13 * var(--d)); font-weight: 700; line-height: 1.35; border-radius: calc(8 * var(--d)); padding: calc(2 * var(--d)) calc(8 * var(--d)); }
.tagc { font-size: calc(12 * var(--d)); color: #D6D0DC; line-height: 1.35; border: 1px solid #3D3A43; border-radius: calc(6 * var(--d)); padding: calc(1 * var(--d)) calc(6 * var(--d)); white-space: nowrap; }
.tagc.hot { background: #FF3333; border-color: #FF3333; color: #fff; font-weight: 700; padding: calc(2 * var(--d)) calc(8 * var(--d)); }
.tagc.hot.blue { background: #3399FF; border-color: #3399FF; }
.ofr .tagc:not(.hot) { border: 0; padding: 0; font-size: 13px; }
.lc .fa { display: flex; flex-direction: column; align-items: flex-end; gap: calc(1 * var(--d)); }
.lc .fr { display: flex; align-items: center; gap: calc(3 * var(--d)); font-size: calc(17 * var(--d)); font-weight: 800; color: var(--fc); white-space: nowrap; line-height: 1.4; }
.lc .fr.x .amt { text-decoration: line-through; opacity: .7; }
.lc .l2 { display: flex; align-items: center; gap: calc(3 * var(--d)); font-size: calc(13 * var(--d)); line-height: 1.5; white-space: nowrap; }
.lc .l2.net { font-weight: 600; color: #FFCC66; }
.lc .l2.sun { color: #D6D0DC; }
.lc .l2.via { font-weight: 600; color: #D6D0DC; }
.rt { font-size: calc(15 * var(--d)); line-height: calc(22 * var(--d)); color: #D6D0DC; }
.rt b { color: #F5F1F6; font-weight: 700; }
.rt.plain { color: #F5F1F6; }
.lc .mt { font-size: calc(13 * var(--d)); line-height: 1.5; color: #F5F1F6; }
.k { --badge: #FFCC00; --accent: #0066FF; --fc: #00CC99; }
.t { --badge: #FFFFFF; --accent: #0033CC; --fc: #FFFFFF; }
.cm { --badge: #666666; --accent: #0099FF; --fc: #0099FF; }
.si { --badge: #33CCCC; --fc: #33CCCC; }
.lc.si .stb { display: none; }

.ofr { --d: 1px; background: #2B2930; border: 1px solid #49454F; border-radius: 12px; padding: 8px 16px; display: flex; flex-direction: column; gap: 4px; }
.ofr .r1 { display: flex; align-items: center; gap: 8px; }
.ofr .lft { flex: 1; display: flex; align-items: center; gap: 8px; overflow: hidden; white-space: nowrap; }
.ofr .tm { font-size: 13px; color: #D6D0DC; }
.ofr .fr { display: flex; align-items: center; gap: 3px; font-size: 17px; font-weight: 800; white-space: nowrap; color: var(--fc); }
.ofr .sb { font-size: 13px; font-weight: 600; color: #FFB74D; white-space: nowrap; }
.ofr .r3 { display: flex; justify-content: space-between; align-items: center; gap: 8px; font-size: 13px; line-height: 1.5; }
.ofr .src { font-size: 12px; color: #D6D0DC; border: 1px solid #49454F; border-radius: 6px; padding: 1px 6px; white-space: nowrap; }

.lk-basis { font-size: 13px; color: #D6D0DC; line-height: 1.5; }
.lkh { padding: 0 4px 8px; display: flex; flex-direction: column; gap: 6px; }
.lkt { display: flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 700; line-height: 1.4; }
.lkt .ic-luck { width: 24px; height: 24px; color: #FFB74D; }
.lk-hi { font-size: 20px; font-weight: 700; line-height: 30px; }
.lk-hi b { color: #FFB74D; font-weight: 700; }
.lk-basis.pri { color: #FFB74D; }
.wdots { display: flex; padding-top: 10px; }
.wdots span { flex: 1; display: flex; flex-direction: column; align-items: center; font-size: 13px; color: #D6D0DC; line-height: 1.5; }
.wdots i { width: 14px; height: 14px; margin: 2px; border-radius: 50%; box-shadow: inset 0 0 0 1px #49454F; }
.wdots i.w { background: #F5F1F6; }
.wdots span.today { color: #FFB74D; font-weight: 700; }
.wdots span.today i { box-shadow: inset 0 0 0 2px #FFB74D; }
.gbar { width: 72px; height: 6px; border-radius: 3px; background: #49454F; overflow: hidden; }
.gbar i { display: block; height: 100%; background: #FFD54F; }
.gauge3 { display: flex; gap: 8px; }
.gauge3 > div { flex: 1; display: flex; flex-direction: column; gap: 2px; background: #2B2930; border: 1px solid #49454F; border-radius: 12px; padding: 14px 12px; }
.gauge3 span { display: block; font-size: 13px; color: #D6D0DC; line-height: 1.4; }
.gauge3 b { display: block; font-size: 17px; font-weight: 700; line-height: 1.4; white-space: nowrap; }
.gauge3 em { display: block; font-style: normal; font-size: 12px; line-height: 16px; color: #D6D0DC; }
.gauge3 em.g { color: #66BB6A; }
.cttl { font-size: 15px; font-weight: 600; line-height: 1.5; }
.cttl small { font-size: 13px; font-weight: 400; color: #D6D0DC; }
.abars { display: flex; align-items: flex-end; gap: 4px; height: 84px; margin-top: 22px; }
.abars i { flex: 1; position: relative; background: #D6D0DC; border-radius: 3px 3px 0 0; }
.abars i.hi { background: #FFB74D; }
.abars i.dash { background: transparent; box-shadow: inset 0 0 0 1px #D6D0DC; opacity: .8; }
.abars i.none { height: 2px !important; background: #49454F; }
.abars.flow { gap: 0; height: 72px; margin-top: 20px; }
.abars.flow i { margin: 0 2px; }
.aaxis.flow span { overflow: visible; font-size: 13px; }
.aaxis.flow span.on { font-weight: 700; }
.abars.year { gap: 4px; height: 80px; margin-top: 20px; }
.abars i.empty { background: transparent; }
.aaxis.year { gap: 4px; font-size: 13px; }
.hr0 { height: 1px; background: #33303A; }
.abars i s { position: absolute; top: -20px; left: 50%; transform: translateX(-50%); text-decoration: none; font-size: 12px; font-weight: 700; color: #FFB74D; white-space: nowrap; }
.aaxis { display: flex; font-size: 12px; color: #D6D0DC; margin-top: 4px; }
.aaxis span { flex: 1; text-align: center; white-space: nowrap; }
.aaxis span.on { color: #FFB74D; font-weight: 700; }
.srow { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 8px 0; border-top: 1px solid #33303A; font-size: 15px; color: #D6D0DC; line-height: 1.5; }
.srow:first-of-type { border-top: 0; }
.srow b { color: #F5F1F6; font-size: 17px; font-weight: 600; white-space: nowrap; }

.aseg { display: inline-flex; border-radius: 18px; box-shadow: inset 0 0 0 1px #49454F; overflow: hidden; font-size: 14px; font-weight: 600; flex: none; }
.aseg > * { padding: 5px 12px; line-height: 1.4; }
.aseg b { background: #FFB74D; color: #4A2800; font-weight: 700; }
.aper { text-align: center; font-size: 15px; font-weight: 600; }
.aper .pri { padding: 0 10px; }
.ctab { width: 100%; border-collapse: collapse; margin-top: 6px; font-size: 15px; }
.ctab th { font-size: 13px; font-weight: 400; color: #D6D0DC; text-align: right; padding: 0 0 4px 10px; white-space: nowrap; }
.ctab td { text-align: right; padding: 7px 0 7px 10px; border-top: 1px solid #33303A; white-space: nowrap; }
.ctab th:first-child, .ctab td:first-child { text-align: left; padding-left: 0; color: #D6D0DC; }
.ctab td.v { font-size: 17px; font-weight: 600; color: #F5F1F6; }
.ctab td.m { font-size: 13px; color: #D6D0DC; text-align: left; padding-left: 10px; }
.ctab th.l { text-align: left; }
.ctab td.hero { font-size: 22px; font-weight: 800; }
.ctab td.pri { color: #FFB74D; }
.ctab td .nt { font-size: 13px; font-weight: 400; color: #D6D0DC; }
.ctab tr.below td { border-top: 0; padding: 0 0 6px; text-align: right; font-size: 13px; font-weight: 600; color: #66BB6A; }
.wtitle { font-size: 13px; color: #D6D0DC; line-height: 1.5; margin-bottom: 2px; }
.wtitle b { font-size: 17px; color: #F5F1F6; margin-right: 6px; }
.sper { display: flex; align-items: center; font-size: 15px; color: #D6D0DC; white-space: nowrap; }
.sper .pri { width: 40px; text-align: center; }
.bdg.s20 { width: 20px; height: 20px; border-radius: 5px; font-size: 11px; }
.srow small { font-size: 13px; font-weight: 400; }

.adim { position: absolute; inset: 0; background: rgba(0,0,0,.55); }
.adlg { position: absolute; left: 20px; right: 20px; top: 26px; background: #1D1B20; border: 1px solid #49454F; border-radius: 28px; padding: 22px 22px 12px; display: flex; flex-direction: column; gap: 14px; }
.adlg h4 { margin: 0; font-size: 22px; font-weight: 700; line-height: 1.35; }
.adlg .hs { font-size: 13px; color: #D6D0DC; margin-top: 2px; }
.abox { border: 1px solid #49454F; border-radius: 12px; padding: 14px 16px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip2 { display: inline-flex; align-items: center; gap: 8px; border: 1px solid #49454F; border-radius: 8px; padding: 4px 8px; font-size: 13px; color: #D6D0DC; white-space: nowrap; }
.chip2 b { color: #F5F1F6; font-weight: 600; }
.adlg .acts { display: flex; justify-content: space-between; font-size: 15px; font-weight: 600; padding: 6px 4px 0; }

.hero32 { font-size: 32px; font-weight: 800; letter-spacing: -1px; color: #66BB6A; line-height: 1.2; white-space: nowrap; }
.hero32 small { font-size: 15px; font-weight: 600; color: #D6D0DC; letter-spacing: 0; margin-left: 2px; }
.aline { display: block; width: 100%; height: auto; margin-top: 10px; }

.chg { position: relative; box-shadow: 0 0 0 2px #FFB74D, 0 0 0 7px rgba(255,183,77,.22); border-radius: 12px; }
.chg-t { box-shadow: 0 0 0 2px #FFB74D; border-radius: 6px; padding: 0 3px; margin: 0 -3px; }

.ink { --d: 1px; background: #141218; color: #F5F1F6; border-radius: 20px; padding: 16px; font-size: 15px; line-height: 1.6;
  word-break: keep-all; overflow-wrap: break-word; font-variant-numeric: tabular-nums; border: 1px solid #2B2930; box-shadow: 0 16px 32px var(--shadow); }
.ink .cap { font-size: 13px; color: #D6D0DC; margin: 0 0 10px; }

.via-grid { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 40px; align-items: start; }
.via-pair { display: flex; align-items: center; gap: 14px; }
.via-pair .dev { --z: .74; }
.via-arrow { display: flex; flex-direction: column; align-items: center; gap: 6px; color: var(--primary); font-weight: 700; font-size: 14px; text-align: center; }
.via-arrow svg { width: 32px; height: 32px; }
.pcap { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.pcap > span { font-size: 14px; font-weight: 700; color: var(--onvar); }
.pcap > span b { color: var(--on); }
.vsteps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; counter-reset: vs; }
.vsteps li { counter-increment: vs; position: relative; padding: 14px 16px 14px 60px; background: var(--card); border: 1px solid var(--outline); border-radius: 12px; }
.vsteps li::before { content: counter(vs); position: absolute; left: 16px; top: 14px; width: 30px; height: 30px; border-radius: 50%; background: var(--cardhi); color: var(--on); font-weight: 800; display: grid; place-items: center; font-size: 15px; }
.vsteps li.key::before { background: var(--primary); color: var(--onprimary); }
.vsteps b { display: block; font-size: 17px; margin-bottom: 2px; }
.vsteps p { margin: 0; color: var(--onvar); font-size: 15px; line-height: 1.6; }
.vsteps .num { font-weight: 700; color: var(--on); white-space: nowrap; }
.via-log { display: grid; grid-template-columns: repeat(2, minmax(0, 360px)); gap: 20px; margin-top: 36px; justify-content: center; }
.fine { margin: 20px 0 0; font-size: 14px; color: var(--onvar); line-height: 1.7; }
@media (max-width: 1080px) {
  .via-grid { grid-template-columns: 1fr; }
  .via-pair { justify-content: center; }
}
@media (max-width: 720px) {
  .via-pair { flex-direction: column; }
  .via-pair .dev { --z: .8; }
  .via-arrow svg { transform: rotate(90deg); }
  .via-log { grid-template-columns: minmax(0, 360px); }
}

.cards-grid { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 48px; align-items: center; }
.cards-grid .dev { --z: .86; }
.feat-list { list-style: none; margin: 20px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.feat-list li { position: relative; padding-left: 26px; color: var(--onvar); }
.feat-list li::before { content: ''; position: absolute; left: 4px; top: .62em; width: 10px; height: 10px; border-radius: 3px; background: var(--primary); }
.feat-list b { color: var(--on); }
.sizer { display: inline-flex; align-items: center; gap: 4px; margin-top: 24px; padding: 6px; border-radius: 32px; background: var(--card); border: 1px solid var(--outline); }
.sizer span.lb { padding: 0 10px 0 14px; font-weight: 700; }
.sizer button { font: inherit; font-size: 24px; font-weight: 700; line-height: 1; width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--outline); background: var(--surface); color: var(--primary); cursor: pointer; }
.sizer button:hover:not(:disabled) { background: var(--cardhi); }
.sizer button:disabled { color: var(--outline); cursor: default; }
.sizer .pct { width: 64px; text-align: center; font-weight: 800; font-size: 19px; font-variant-numeric: tabular-nums; }
@media (max-width: 900px) { .cards-grid { grid-template-columns: 1fr; justify-items: center; } .cards-grid .txt { max-width: 560px; } }

.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 20px; justify-items: center; }
.shot { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.shot figcaption { font-size: 14px; color: var(--onvar); line-height: 1.55; width: calc(360px * .86 + 22px); max-width: 100%; }
.shot figcaption b { display: block; color: var(--on); font-size: 16px; margin-bottom: 2px; }
@media (max-width: 1100px) { .shots { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) {
  .shots { display: flex; overflow-x: auto; gap: 16px; padding: 4px 4px 12px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; justify-items: initial; }
  .shot { flex: none; scroll-snap-align: center; }
}
@media (max-width: 420px) {
  .dev, .shots .dev, .cards-grid .dev, .hero .dev, .via-pair .dev { --z: .76; }
  .shot figcaption { width: calc(360px * .76 + 22px); }
}
.phone-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.phone-cap { font-size: 13px; color: var(--onvar); }
.swipe-hint { display: none; font-size: 13px; color: var(--onvar); margin: 0 0 12px; }
@media (max-width: 760px) { .swipe-hint { display: block; } }

.cheer { background: var(--surface); border-top: 1px solid var(--outline-var); border-bottom: 1px solid var(--outline-var); padding: 28px 0; text-align: center; }
.cheer-main { margin: 0; font-size: 22px; font-weight: 700; }
.cheer-main strong { color: var(--primary); font-weight: 800; }
.cheer-sub { margin: 6px 0 0; color: var(--onvar); font-size: 17px; }
@media (max-width: 720px) { .cheer-main { font-size: 19px; } .cheer-sub { font-size: 15px; } }
section#how { border-top: 0; }

.aw-h { margin: 28px 0 0; font-size: 17px; }
.ladder { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.ladder li { width: 88px; text-align: center; font-size: 12px; color: var(--onvar); display: flex; flex-direction: column; align-items: center; gap: 2px; }
.ladder li b { font-size: 14px; color: var(--on); margin-top: 2px; }
.ladder img { width: 64px; height: 64px; object-fit: contain; }
.awards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin: 12px 0 0; padding: 0; list-style: none; }
.awards li { background: var(--card); border: 1px solid var(--outline); border-radius: 12px; padding: 16px 12px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.awards img { width: 96px; height: 96px; object-fit: contain; }
.awards b { font-size: 16px; color: var(--gold); }
.awards span { font-size: 13px; color: var(--onvar); line-height: 1.5; }
.awards.tk { grid-template-columns: repeat(3, 1fr); max-width: 660px; }
@media (max-width: 900px) { .awards { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .awards { grid-template-columns: repeat(2, 1fr); } .awards img { width: 72px; height: 72px; } .ladder li { width: 72px; } .ladder img { width: 52px; height: 52px; } }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step { position: relative; }
.step .n { width: 40px; height: 40px; border-radius: 50%; background: var(--primary); color: var(--onprimary); font-weight: 800; display: grid; place-items: center; margin-bottom: 14px; font-size: 18px; }
.step h3 { margin-bottom: 6px; }
.step p { margin: 0; color: var(--onvar); }
@media (max-width: 720px) { .steps { grid-template-columns: 1fr; } }

.feats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.feat h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.feat h3 .ic { width: 36px; height: 36px; border-radius: 10px; background: var(--cardhi); display: grid; place-items: center; font-size: 18px; }
.feat p { margin: 0 0 12px; color: var(--onvar); }
.feat ul { margin: 0; padding-left: 18px; color: var(--onvar); }
.feat li { margin: 4px 0; }
.feat .tag { margin-top: 12px; }
@media (max-width: 720px) { .feats { grid-template-columns: 1fr; } }

.apps { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; list-style: none; }
.apps li { border: 1px solid var(--outline); background: var(--card); border-radius: 12px; padding: 10px 14px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.apps li.region::after { content: '대구'; font-size: 12px; font-weight: 600; color: var(--onvar); background: var(--cardhi); padding: 2px 8px; border-radius: 10px; }
.apps li.busan::after { content: '부산·울산·경남'; font-size: 12px; font-weight: 600; color: var(--onvar); background: var(--cardhi); padding: 2px 8px; border-radius: 10px; }
.apps li.soon { border-style: dashed; color: var(--onvar); }

.promises { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.promise .big { font-size: 22px; font-weight: 800; margin: 0 0 8px; }
.promise p { margin: 0; color: var(--onvar); }
@media (max-width: 720px) { .promises { grid-template-columns: 1fr; } }
.a11y { margin-top: 24px; }
.a11y dl { display: grid; grid-template-columns: 96px 1fr; gap: 8px 16px; margin: 12px 0 0; }
.a11y dt { color: var(--primary); font-weight: 700; }
.a11y dd { margin: 0; color: var(--onvar); }
@media (max-width: 480px) { .a11y dl { grid-template-columns: 1fr; gap: 2px 0; } .a11y dd { margin-bottom: 8px; } }

.nots { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 0; padding: 0; list-style: none; }
.nots li { border: 1px dashed var(--outline); border-radius: 12px; padding: 14px 16px; color: var(--onvar); }
.nots li b { color: var(--on); display: block; margin-bottom: 2px; }
@media (max-width: 720px) { .nots { grid-template-columns: 1fr; } }

.doc { padding: 40px 0 80px; }
.doc h1 { font-size: 30px; font-weight: 800; margin-bottom: 8px; }
.doc .meta { color: var(--onvar); font-size: 14px; margin-bottom: 28px; }
.doc h2 { font-size: 21px; margin: 36px 0 10px; padding-top: 8px; }
.doc h3 { font-size: 17px; margin: 24px 0 8px; }
.doc p { margin: 0 0 12px; }
.doc ul, .doc ol { margin: 0 0 12px; padding-left: 22px; }
.doc li { margin: 4px 0; }
.doc table { border-collapse: collapse; width: 100%; margin: 8px 0 16px; font-size: 15px; }
.doc th, .doc td { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--outline-var); vertical-align: top; }
.doc th { color: var(--onvar); font-weight: 600; }
.doc .table-wrap { overflow-x: auto; }
.doc pre { background: var(--card); border: 1px solid var(--outline); border-radius: 12px; padding: 14px; font-size: 13px; overflow-x: auto; color: var(--onvar); }
.doc .toc { margin: 0 0 24px; padding: 14px 18px; }
.doc .toc ol { margin: 0; padding-left: 0; list-style: none; columns: 2; column-gap: 24px; }
.doc .toc li { margin: 2px 0; break-inside: avoid; }
@media (max-width: 600px) { .doc .toc ol { columns: 1; } }
.missing-card {
  border: 1px solid var(--error); background: color-mix(in srgb, var(--error) 14%, var(--card));
  border-radius: 12px; padding: 16px 18px; margin: 0 0 24px;
}
.missing-card b { display: block; margin-bottom: 4px; }
.missing-card p { margin: 0; font-size: 15px; }
mark.missing { background: color-mix(in srgb, var(--error) 30%, transparent); color: var(--on); border-radius: 4px; padding: 0 4px; border: 1px dashed var(--error); }
.doc .steps-list li { margin: 8px 0; }
.doc .callout { border-left: 4px solid var(--primary); padding: 12px 16px; background: var(--card); border-radius: 0 12px 12px 0; margin: 16px 0; }
.doc .callout p:last-child { margin: 0; }

footer { border-top: 1px solid var(--outline-var); padding: 40px 0 56px; color: var(--onvar); font-size: 14px; }
footer .cols { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; }
footer .links { display: flex; flex-wrap: wrap; gap: 6px 18px; margin: 0 0 12px; padding: 0; list-style: none; }
footer .links a { color: var(--on); font-weight: 600; }
footer .biz { margin: 0; line-height: 1.8; }
footer .disc { margin: 16px 0 0; }
@media (max-width: 720px) { footer .cols { grid-template-columns: 1fr; } }

.soon-row + .soon-row { margin-top: 64px; }
.soon-h { font-size: 22px; margin: 12px 0 8px; }
.soon-row .vsteps { margin-top: 20px; }
.lg { gap: 12px; }
.lg-dots { display: flex; justify-content: center; gap: 8px; padding: 8px 0; }
.lg-dots i { width: 8px; height: 8px; border-radius: 4px; background: #49454F; }
.lg-dots i.on { width: 24px; background: #FFB74D; }
.lg-t { text-align: center; font-size: 22px; font-weight: 700; line-height: 1.4; padding-top: 16px; }
.lg-s { text-align: center; font-size: 15px; color: #D6D0DC; padding-bottom: 16px; }
.lg-b { height: 52px; border-radius: 26px; display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 17px; font-weight: 700; }
.lg-b.kakao { background: #FFCC00; color: #1A1A1A; }
.lg-b.google { box-shadow: inset 0 0 0 1px #49454F; font-weight: 600; }
.lg-later { text-align: center; font-size: 15px; color: #D6D0DC; padding: 4px 0 8px; }
.lg-sub { padding: 12px 16px; }
.lg-sub .h { font-size: 15px; font-weight: 600; }
.lg-sub .p { font-size: 13px; color: #D6D0DC; line-height: 1.6; }
.lg-del { text-align: center; font-size: 13px; color: #9A94A2; }
.mp { gap: 10px; padding-top: 4px; }
.mp-hero { display: flex; flex-direction: column; gap: 4px; }
.mp-hero .s { font-size: 13px; color: #D6D0DC; }
.mp-hero .s b { color: #F5F1F6; }
.mp-hero .m { font-size: 17px; font-weight: 700; line-height: 1.5; }
.mp-dial { display: flex; border-radius: 24px; box-shadow: inset 0 0 0 1px #49454F; overflow: hidden; }
.mp-dial span { flex: 1; text-align: center; padding: 9px 0; font-size: 15px; border-left: 1px solid #49454F; white-space: nowrap; }
.mp-dial span:first-child { border-left: 0; }
.mp-dial span.w { flex: 1.2; }
.mp-dial span.on { background: #FFB74D; color: #4A2800; font-weight: 700; }
.mp-map { position: relative; height: 210px; border-radius: 12px; background: #36343B; border: 1px solid #49454F; overflow: hidden; }
.mp-map .rd { position: absolute; background: #33303A; }
.mp-map .r1 { left: -10px; right: -10px; top: 60px; height: 10px; transform: rotate(-7deg); }
.mp-map .r2 { left: -10px; right: -10px; top: 140px; height: 8px; transform: rotate(4deg); }
.mp-map .r3 { left: 150px; top: -10px; bottom: -10px; width: 8px; transform: rotate(9deg); }
.mp-map .pin { position: absolute; border-radius: 50%; display: grid; place-items: center; font-weight: 800; background: #FFB74D; color: #4A2800; box-shadow: 0 0 0 3px #141218; }
.mp-map .pin em { position: absolute; right: -2px; bottom: -2px; width: 13px; height: 13px; border-radius: 50%; border: 2px solid #141218; }
.mp-map .p1 { left: 44px; top: 76px; width: 44px; height: 44px; font-size: 17px; }
.mp-map .p2 { left: 196px; top: 40px; width: 34px; height: 34px; font-size: 15px; }
.mp-map .p3 { left: 262px; top: 112px; width: 28px; height: 28px; font-size: 13px; }
.mp-map .ob { background: transparent; color: #AEB9C4; box-shadow: none; border: 2px dashed #AEB9C4; }
.mp-map .o1 { left: 118px; top: 150px; width: 28px; height: 28px; font-size: 13px; }
.mp-map .o2 { left: 296px; top: 30px; width: 24px; height: 24px; font-size: 12px; }
.mp-map .lbl { position: absolute; font-size: 12px; font-weight: 600; color: #D6D0DC; }
.mp-map .l1 { left: 34px; top: 124px; } .mp-map .l2 { left: 184px; top: 78px; } .mp-map .l3 { left: 250px; top: 144px; }
.mp-map .leg { position: absolute; left: 10px; bottom: 8px; display: flex; gap: 10px; font-size: 12px; color: #D6D0DC; background: #141218; border: 1px solid #49454F; border-radius: 8px; padding: 2px 10px; }
.obs { color: #AEB9C4; }
.mp-rank { padding: 12px 16px; }
.mp-rank .h { font-size: 17px; font-weight: 600; }
.mp-rank .h span { font-size: 13px; font-weight: 500; color: #D6D0DC; }
.mp-rank .r { display: flex; justify-content: space-between; font-size: 15px; padding: 4px 0; border-top: 1px solid #33303A; }
.mp-rank .r i { font-style: normal; font-size: 13px; color: #9A94A2; margin-right: 6px; }
.mp-rank .r em { font-style: normal; font-size: 13px; color: #D6D0DC; margin-left: 4px; }
.mp-foot { text-align: center; font-size: 13px; color: #9A94A2; }

.share-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .8fr) minmax(0, 1.15fr); gap: 28px; align-items: start; }
.shcol { margin: 0; display: flex; flex-direction: column; gap: 14px; }
.shcol figcaption { font-size: 14px; color: var(--onvar); line-height: 1.6; }
.shcol figcaption b { display: block; color: var(--on); font-size: 16px; margin-bottom: 2px; }
.shcol figcaption strong { color: var(--on); }
.shimg { --d: 1px; background: #141218; color: #F5F1F6; border: 1px solid #2B2930; border-radius: 16px; padding: 14px 16px; display: flex; flex-direction: column; gap: 12px;
  font-size: 15px; line-height: 1.6; word-break: keep-all; font-variant-numeric: tabular-nums; box-shadow: 0 16px 32px var(--shadow); }
.shimg * { min-width: 0; }
.shimg.day { gap: 14px; }
.shwm { display: flex; align-items: center; gap: 9px; font-size: 17px; font-weight: 800; letter-spacing: -.3px; }
.shwm svg { width: 30px; height: 30px; color: #FFB74D; flex: none; }
.shhead { display: flex; justify-content: space-between; align-items: center; }
.shpf { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #D6D0DC; }
.shpf i { font-style: normal; width: 32px; height: 32px; border-radius: 50%; background: #2B2930; box-shadow: inset 0 0 0 2px #FFB74D; display: grid; place-items: center; font-size: 13px; font-weight: 700; }
.shtitle h4 { margin: 0; font-size: 20px; font-weight: 700; line-height: 1.35; }
.shtitle .hs { font-size: 13px; color: #D6D0DC; }
.shfoot { text-align: center; font-size: 13px; color: #D6D0DC; }
.shtxt { background: var(--card); border: 1px solid var(--outline); border-radius: 16px 16px 16px 4px; padding: 14px 16px; }
.shtxt pre { margin: 0; white-space: pre-wrap; word-break: keep-all; font: 15px/1.7 inherit; font-family: inherit; color: var(--on); }
.share-safe { margin-top: 32px; }
@media (max-width: 1100px) { .share-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .shcol.wide { grid-column: 1 / -1; max-width: 420px; justify-self: center; } }
@media (max-width: 720px) { .share-grid { grid-template-columns: minmax(0, 1fr); } .shcol.wide { grid-column: auto; } }

.sp { gap: 14px; }
.sp-roles { display: flex; gap: 8px; }
.sp-roles span { padding: 0 14px; min-height: 40px; border-radius: 8px; box-shadow: inset 0 0 0 1px #49454F; display: grid; place-items: center; font-size: 14px; font-weight: 600; color: #D6D0DC; white-space: nowrap; }
.sp-roles span.on { background: #FFB74D; box-shadow: none; color: #4A2800; }
.sp-f { position: relative; border: 1px solid #938F99; border-radius: 8px; padding: 14px 16px 12px; font-size: 16px; }
.sp-f label { position: absolute; top: -9px; left: 12px; padding: 0 4px; background: #141218; font-size: 12px; color: #D6D0DC; }
.sp-note { font-size: 13px; color: #D6D0DC; line-height: 1.6; }
.sp-how { display: flex; flex-direction: column; gap: 10px; padding: 14px 16px; }
.sp-how .h { font-size: 16px; font-weight: 600; }
.sp-how .s { display: flex; gap: 10px; align-items: flex-start; }
.sp-how .s i { font-style: normal; flex: none; width: 22px; height: 22px; border-radius: 50%; background: #FFB74D; color: #4A2800; font-size: 12px; font-weight: 800; display: grid; place-items: center; margin-top: 2px; }
.sp-how .s b { display: block; font-size: 14px; }
.sp-how .s span { font-size: 13px; color: #D6D0DC; line-height: 1.5; }

.lhdr .cm-reg { font-size: 15px; font-weight: 600; color: #D6D0DC; white-space: nowrap; }
.cm-list { display: flex; flex-direction: column; }
.cm-post { min-height: 64px; padding: 10px 16px; border-bottom: 1px solid #33303A; display: flex; flex-direction: column; justify-content: center; gap: 2px; }
.cm-post .t { font-size: 15px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cm-post .m { display: flex; gap: 6px; font-size: 13px; color: #D6D0DC; white-space: nowrap; }
.cm-post .nk { color: #F5F1F6; }
.cm-post .md { color: #FFD54F; }
.adim { position: absolute; inset: 0; background: rgba(0,0,0,.55); }
.cm-sheet { position: absolute; left: 0; right: 0; bottom: 0; background: #1D1B20; border: 1px solid #49454F; border-radius: 28px 28px 0 0; padding: 10px 20px 16px; display: flex; flex-direction: column; }
.cm-sheet .grab { width: 32px; height: 4px; border-radius: 2px; background: #49454F; align-self: center; margin-bottom: 10px; }
.cm-sheet .h { font-size: 17px; font-weight: 700; padding-bottom: 6px; }
.cm-sheet .r { min-height: 48px; display: flex; align-items: center; font-size: 15px; border-top: 1px solid #33303A; }
.cm-sheet .r.x { color: #EF5350; font-weight: 600; }
.cm-sheet .n { font-size: 12px; color: #9A94A2; padding-top: 8px; }
.soon-h4 { font-size: 17px; margin: 22px 0 0; }

.gt-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; align-items: start; }
.gt-col { display: flex; flex-direction: column; }
.gt-demo { gap: 8px; max-width: 400px; }
.gt-cap { font-size: 12px; font-weight: 700; color: #FFB74D; margin-top: 4px; }
.gt-dlg { background: #1D1B20; border: 1px solid #49454F; border-radius: 16px; padding: 12px 14px; display: flex; flex-direction: column; gap: 8px; }
.gt-dlg .h { font-size: 16px; font-weight: 700; }
.gt-dlg .n { font-size: 13px; color: #D6D0DC; line-height: 1.5; }
.gt-dlg .sp-f label { background: #1D1B20; }
.gt-line { background: #2B2930; border: 1px solid #49454F; border-radius: 12px; padding: 10px 14px; font-size: 16px; font-weight: 600; }
.gt-line b.g { color: #66BB6A; }
.gt-line.sm { font-size: 14px; font-weight: 500; color: #D6D0DC; }
.gt-trash-h { display: flex; align-items: baseline; gap: 12px; }
.gt-trash-h .bk { font-size: 14px; font-weight: 600; color: #FFB74D; }
.gt-trash-h b { font-size: 20px; }
.gt-note { font-size: 13px; color: #D6D0DC; }
.gt-row { display: flex; align-items: center; gap: 8px; background: #2B2930; border: 1px solid #49454F; border-radius: 12px; padding: 10px 12px; font-size: 14px; color: #D6D0DC; line-height: 1.5; }
.gt-row .mid { flex: 1; }
.gt-row .del { font-size: 12px; color: #EF5350; }
.gt-row .rs { flex: none; padding: 6px 14px; border-radius: 20px; box-shadow: inset 0 0 0 1px #49454F; color: #FFB74D; font-weight: 600; }
.gt-acts { display: flex; justify-content: flex-end; gap: 20px; font-size: 14px; font-weight: 600; color: #D6D0DC; }
.gt-acts .x { color: #EF5350; }
.gt-p { margin: 10px 0 0; }
.gt-flow { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.gt-flow .fr { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 8px; background: var(--card); border: 1px solid var(--outline); border-radius: 12px; padding: 12px 14px; }
.gt-flow .fr.me { border-color: var(--primary); }
.gt-flow .k { font-size: 12px; font-weight: 700; padding: 2px 8px; border-radius: 10px; background: var(--cardhi); color: var(--onvar); }
.gt-flow .me .k { background: var(--primary); color: var(--onprimary); }
.gt-flow .c { font-weight: 700; padding: 2px 10px; border-radius: 8px; border: 1px solid var(--outline); }
.gt-flow .c.ok { color: var(--green); border-color: currentColor; }
.gt-flow .c.cx { color: #fff; background: #E53935; border-color: #E53935; }
.gt-flow .c.tr { color: var(--primary); border-color: var(--primary); }
.gt-flow i { font-style: normal; color: var(--onvar); font-weight: 700; }
.gt-flow em { font-style: normal; flex-basis: 100%; font-size: 14px; color: var(--onvar); line-height: 1.6; }
@media (max-width: 900px) { .gt-grid { grid-template-columns: 1fr; } }

.rk { display: flex; flex-direction: column; gap: 8px; padding: 10px 16px; }
.rk-st { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #D6D0DC; }
.rk-st i { width: 8px; height: 8px; border-radius: 50%; background: #66BB6A; }
.rk-me, .rk-r { display: flex; align-items: center; gap: 10px; }
.rk-me { background: #2B2930; border: 2px solid #FFB74D; border-radius: 12px; padding: 8px 12px; }
.rk-me .n { color: #FFB74D; }
.rk .n { width: 26px; flex: none; font-size: 15px; font-weight: 800; text-align: center; }
.rk .av { flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-size: 13px; font-weight: 700; color: #fff; background: #5C7A9E; }
.rk-me .av { background: #2B2930; box-shadow: inset 0 0 0 2px #FFB74D; color: #D6D0DC; }
.rk .av.a1 { background: #8E5A3C; } .rk .av.a2 { background: #4F7A5A; } .rk .av.a3 { background: #5C6BC0; }
.rk .av.a4 { background: #7B5EA7; } .rk .av.a5 { background: #3E7C8C; } .rk .av.a6 { background: #9E6B3E; } .rk .av.a7 { background: #6D6A75; }
.rk .av.off { background: #36343B; box-shadow: inset 0 0 0 1px #49454F; }
.rk .mid { flex: 1; }
.rk .nm { font-size: 15px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rk .nm em { font-style: normal; font-size: 12px; color: #D6D0DC; margin-left: 2px; }
.rk .nm b { font-size: 12px; }
.rk .nm.off { color: #9A94A2; }
.rk .s { font-size: 12px; color: #9A94A2; line-height: 1.3; }
.rk .s.up { color: #66BB6A; } .rk .s.dn { color: #EF5350; } .rk .s.new { color: #FFB74D; font-weight: 700; }
.rk .v { flex: none; font-size: 15px; font-weight: 700; }
.rk .th { flex: none; width: 44px; text-align: right; font-size: 12px; color: #D6D0DC; }
.rk-list { background: #2B2930; border: 1px solid #49454F; border-radius: 12px; padding: 2px 12px; }
.rk-r { min-height: 50px; border-top: 1px solid #33303A; }
.rk-r:first-child { border-top: 0; }
.rk-r:not(:has(.th)) .v { margin-right: 54px; }
.rk-share { min-height: 44px; border-radius: 22px; box-shadow: inset 0 0 0 1px #49454F; color: #FFB74D; font-size: 15px; font-weight: 600; display: grid; place-items: center; }
.rk-card { margin-top: 24px; max-width: 360px; gap: 8px; }
.rk-ct { font-size: 14px; font-weight: 700; color: #D6D0DC; }
.rk-cl { display: flex; justify-content: space-between; font-size: 15px; padding: 3px 0; border-bottom: 1px solid #33303A; }
.rk-cl.dim { color: #9A94A2; font-size: 13px; }
.rk-cl.me { border: 2px solid #FFB74D; border-radius: 8px; padding: 4px 8px; color: #FFB74D; font-weight: 700; }
.rk-cl.me b { color: #F5F1F6; }
.rk .n .rk-md { width: 26px; height: 26px; object-fit: contain; display: block; margin: 0 auto; }
.rk-cn { display: flex; align-items: center; gap: 6px; }
.rk-md.sm { width: 22px; height: 22px; object-fit: contain; }
.rk-bd { width: 18px; height: 18px; object-fit: contain; vertical-align: -3px; margin-left: 4px; }
.rk-tab { width: 20px; height: 20px; object-fit: contain; vertical-align: -4px; margin-left: 2px; }
.rk .th { display: inline-flex; align-items: center; justify-content: flex-end; gap: 3px; }
.rk-th { width: 14px; height: 14px; flex: none; }
.feat-list .rk-th { width: 16px; height: 16px; vertical-align: -2px; }
.atabs span:has(.rk-tab) { display: flex; align-items: center; justify-content: center; gap: 4px; }
.rk-tab { margin-left: 0; vertical-align: middle; }
.rk .s { display: flex; align-items: center; gap: 4px; }
.rk .s .rk-bd { width: 16px; height: 16px; margin-left: 0; }
.hl-tabs { flex: none; display: flex; gap: 8px; padding: 0 16px 8px; }
.hl-tabs span { padding: 6px 14px; border-radius: 16px; font-size: 14px; font-weight: 600; color: #D6D0DC; box-shadow: inset 0 0 0 1px #49454F; }
.hl-tabs span.on { background: #FFB74D; color: #4A2800; box-shadow: none; }

.rk .s u { text-decoration: none; color: #D6D0DC; white-space: nowrap; }
.rk .s u .rk-bd { width: 14px; height: 14px; vertical-align: -2px; margin: 0 1px 0 2px; }
.pj-ttl { font-size: 19px !important; }
.pj { display: flex; flex-direction: column; gap: 8px; padding: 4px 16px; }
.pj-mon { display: flex; justify-content: center; align-items: center; gap: 18px; font-size: 16px; }
.pj-sum { background: #2B2930; border: 1px solid #49454F; border-radius: 12px; padding: 10px 14px; }
.pj-sum > div:first-child { display: flex; justify-content: space-between; align-items: baseline; font-size: 14px; color: #D6D0DC; }
.pj-sum b { font-size: 20px; color: #66BB6A; }
.pj-sum .s { font-size: 12px; color: #FFB74D; font-weight: 600; }
.pj-list { background: #2B2930; border: 1px solid #49454F; border-radius: 12px; padding: 0 12px; }
.pj-d { display: flex; align-items: center; gap: 8px; min-height: 36px; border-top: 1px solid #33303A; font-size: 14px; }
.pj-d:first-child { border-top: 0; }
.pj-d span:first-child { flex: 1; }
.pj-d span:nth-child(2) { width: 40px; text-align: right; color: #D6D0DC; }
.pj-d b { width: 72px; text-align: right; }
.pj-d i { font-style: normal; width: 10px; color: #9A94A2; }
.pj-d.off { color: #9A94A2; }
.pj-d.hot { color: #FFB74D; }
.pj-day { margin-top: 24px; max-width: 380px; gap: 6px; }
.pj-dh { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 4px; border-bottom: 1px solid #49454F; }
.pj-dh span { font-size: 13px; color: #D6D0DC; }
.pj-r { display: flex; align-items: center; gap: 6px; font-size: 13px; min-height: 28px; }
.pj-r .t { width: 38px; color: #D6D0DC; flex: none; }
.pj-r .p { flex: 1; color: #D6D0DC; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pj-r .p b { color: #F5F1F6; font-weight: 600; }
.pj-r .v { flex: none; font-weight: 700; }
.pj-more { font-size: 12px; color: #9A94A2; }
.rk .vv { flex: none; display: flex; flex-direction: column; align-items: flex-end; line-height: 1.25; }
.rk .vv u { font-size: 11px; color: #D6D0DC; text-decoration: none; white-space: nowrap; }
.rk .vv u .rk-bd { width: 13px; height: 13px; vertical-align: -2px; margin: 0 1px; }
.rk-r:not(:has(.th)) .vv { margin-right: 54px; }
.rk-r:not(:has(.th)) .vv .v { margin-right: 0; }

.cm-ic { width: 15px; height: 15px; object-fit: contain; vertical-align: -3px; margin-right: 1px; }
.rc-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; align-items: start; }
.rc-col { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.rc-col figcaption { width: 100%; max-width: 440px; }
.rc-col figcaption > b { display: block; font-size: 18px; color: var(--on); }
.rc-col .feat-list { margin-top: 10px; }
.srow b.neg { color: #EF5350; }
.lg-hero { display: flex; justify-content: space-between; align-items: baseline; padding-top: 10px; border-top: 1px solid #49454F; }
.lg-hero span { font-size: 15px; color: #D6D0DC; }
.lg-hero b { font-size: 24px; font-weight: 800; color: #66BB6A; }
.fp { gap: 8px; }
.fp-h { font-size: 22px; font-weight: 700; line-height: 1.35; padding: 4px 0 2px; }
.fp-h b { color: #FFB74D; }
.fp-tot { display: flex; padding: 12px 8px; }
.fp-tot > div { flex: 1; display: flex; flex-direction: column; align-items: center; border-left: 1px solid #49454F; }
.fp-tot > div:first-child { border-left: 0; }
.fp-tot span { font-size: 12px; color: #D6D0DC; }
.fp-tot b { font-size: 17px; font-weight: 800; white-space: nowrap; }
.fp-sub { font-size: 12px; color: #9A94A2; text-align: center; }
.fp-sec { display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 700; margin-top: 4px; }
.fp-sec img { width: 28px; height: 28px; object-fit: contain; }
.fp-rec { display: flex; flex-direction: column; align-items: center; padding: 8px 12px; line-height: 1.35; }
.fp-rec span { font-size: 12px; color: #D6D0DC; }
.fp-rec b { font-size: 19px; font-weight: 800; }
.fp-rec em { font-style: normal; font-size: 12px; color: #D6D0DC; }
.fp-fold { font-size: 13px; color: #9A94A2; text-align: center; }
.rc-import { display: flex; gap: 16px; align-items: flex-start; margin-top: 40px; }
.rc-import .ic { font-size: 30px; line-height: 1; }
.rc-import h3 { margin: 0; }
.mp2 { gap: 10px; padding-top: 4px; }
.mp2-h { display: flex; align-items: center; gap: 12px; }
.mp2-h .av { width: 52px; height: 52px; border-radius: 50%; background: #8E5A3C; color: #fff; display: grid; place-items: center; font-size: 20px; font-weight: 700; flex: none; }
.mp2-h .nm { font-size: 18px; font-weight: 700; }
.mp2-h .s { font-size: 13px; color: #D6D0DC; }
.mp2-md { display: flex; gap: 14px; font-size: 14px; font-weight: 700; }
.mp2-md span { display: inline-flex; align-items: center; gap: 3px; }
.mp2-md img { width: 24px; height: 24px; object-fit: contain; }
.mp2-cnt { display: flex; gap: 8px; }
.mp2-cnt .acard { flex: 1; padding: 10px 12px; display: flex; flex-direction: column; align-items: center; line-height: 1.35; }
.mp2-cnt b { font-size: 20px; font-weight: 800; display: inline-flex; align-items: center; gap: 4px; color: #FFB74D; }
.mp2-cnt .acard:nth-child(2) b { color: #4DB6AC; }
.mp2-cnt b .rk-th { width: 18px; height: 18px; }
.mp2-cnt span { font-size: 12px; color: #D6D0DC; }
.mp2-cnt em { font-style: normal; font-size: 11px; color: #9A94A2; }
.mp2-gb { padding: 10px 14px; display: flex; flex-direction: column; gap: 6px; }
.mp2-gb .h { font-size: 15px; font-weight: 700; }
.mp2-gb .h span { font-size: 12px; font-weight: 500; color: #D6D0DC; }
.mp2-gb .r { font-size: 13px; color: #D6D0DC; }
.mp2-gb .r b { color: #F5F1F6; margin-right: 6px; }
.mp2-gb .in { font-size: 13px; color: #9A94A2; border: 1px solid #49454F; border-radius: 18px; padding: 6px 12px; }
.mp2-rules { margin: 6px 0; padding-left: 18px; font-size: 14px; color: var(--onvar); }
.cm-reg.pri { color: #FFB74D; }
@media (max-width: 900px) { .rc-grid { grid-template-columns: 1fr; } }

.tp { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 360px); gap: 32px; align-items: center; margin: 8px 0 36px; }
.tp-ctl { display: flex; flex-direction: column; gap: 14px; }
.tp-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.tp-lb { width: 72px; font-weight: 700; }
.tp-seg { display: inline-flex; border: 1px solid var(--outline); border-radius: 24px; overflow: hidden; }
.tp-seg button { font: inherit; font-size: 15px; font-weight: 600; padding: 10px 16px; min-height: 44px; background: var(--card); color: var(--on); border: 0; border-left: 1px solid var(--outline); cursor: pointer; display: inline-flex; align-items: center; gap: 6px; }
.tp-seg button:first-child { border-left: 0; }
.tp-seg button.on { background: var(--primary); color: var(--onprimary); }
.tp-seg button:disabled { opacity: .4; cursor: default; }
.tp-seg button i { width: 14px; height: 14px; border-radius: 50%; box-shadow: 0 0 0 1px rgba(0,0,0,.2); }
.tp-prev { background: var(--tp-bg); border-radius: 24px; padding: 16px; display: flex; flex-direction: column; gap: 10px; border: 1px solid #3A3742; box-shadow: 0 16px 32px var(--shadow); font-variant-numeric: tabular-nums; }
.tp-card { background: var(--tp-card); color: var(--tp-on); border: 1px solid var(--tp-line); border-radius: 12px; padding: 14px 16px; display: flex; flex-direction: column; gap: 6px; transition: background .2s; }
.tp-top { font-size: 16px; font-weight: 600; }
.tp-pt { color: var(--tp-p); }
.tp-net { display: flex; justify-content: space-between; align-items: baseline; }
.tp-net > b { font-size: 20px; }
.tp-g { color: var(--tp-green); font-size: 14px; }
.tp-g b { font-size: 20px; }
.tp-sub { font-size: 13px; color: var(--tp-onv); }
.tp-bar { height: 8px; border-radius: 4px; background: var(--tp-line); overflow: hidden; }
.tp-bar i { display: block; width: 67%; height: 100%; background: var(--tp-onv); }
.tp-btns { display: flex; gap: 8px; margin-top: 4px; }
.tp-btns span { flex: 1; min-height: 42px; border-radius: 21px; display: grid; place-items: center; font-weight: 700; font-size: 15px; }
.tp-f { background: var(--tp-p); color: var(--tp-onp); }
.tp-o { box-shadow: inset 0 0 0 1px var(--tp-line); color: var(--tp-p); }
.tp-mini { flex-direction: row; align-items: center; gap: 10px; font-size: 15px; }
.tp-mini > div { flex: 1; }
.tp-bdg { width: 36px; height: 36px; border-radius: 9px; background: #FFCC00; color: #1A1A1A; display: grid; place-items: center; font-weight: 800; }
.tp-fare { color: var(--tp-kf); font-size: 17px; }
@media (max-width: 900px) { .tp { grid-template-columns: 1fr; } }

.hero { position: relative; overflow: hidden; }
.hero .wrap { position: relative; z-index: 1; }
.hero-mark { --hm: .08; position: absolute; z-index: 0; pointer-events: none; color: var(--primary); opacity: var(--hm);
  width: 640px; left: calc(50% + 260px); top: 50%; transform: translate(-50%, -50%); }
@media (max-width: 900px) { .hero-mark { width: 110vw; left: 50%; top: 68%; } }
.fp-logo { width: 34px; height: 34px; color: #FFB74D; display: block; }
.fp-logo.sm { width: 22px; height: 22px; }
.pj-x { font-size: 11px; color: #9A94A2; padding-left: 44px; margin-top: -6px; }
.req-steps { margin: 12px 0 0; padding-left: 20px; display: flex; flex-direction: column; gap: 6px; color: var(--onvar); }
.req-steps b { color: var(--on); }

.sr { gap: 8px; }
.sr-q { border: 1px solid #FFB74D; border-radius: 8px; padding: 10px 14px; font-size: 16px; }
.sr-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.sr-chips span { padding: 5px 11px; border-radius: 8px; box-shadow: inset 0 0 0 1px #49454F; font-size: 13px; font-weight: 600; color: #D6D0DC; }
.sr-chips span.on { background: #FFB74D; color: #4A2800; box-shadow: none; }
.sr-range { font-size: 12px; color: #9A94A2; text-align: center; }
.sr-cnt { font-size: 13px; font-weight: 600; }
.sr-cnt span { font-size: 12px; font-weight: 400; color: #9A94A2; }
.sr-row { display: flex; gap: 10px; align-items: center; background: #2B2930; border: 1px solid #49454F; border-radius: 12px; padding: 8px 12px; font-size: 14px; }
.sr-row .d { font-size: 13px; color: #D6D0DC; }
.rc-col.wide { grid-column: 1 / -1; flex-direction: row; justify-content: center; align-items: center; gap: 56px; }
.rc-col.wide figcaption { max-width: 520px; }
@media (max-width: 900px) { .rc-col.wide { flex-direction: column; gap: 16px; } }

.hc { gap: 10px; padding-top: 2px; }
.hc-sub { font-size: 13px; color: #D6D0DC; }
.hc-sum { display: flex; padding: 12px 8px; }
.hc-sum > div { flex: 1; display: flex; flex-direction: column; align-items: center; border-left: 1px solid #49454F; line-height: 1.35; }
.hc-sum > div:first-child { border-left: 0; }
.hc-sum span { font-size: 17px; font-weight: 800; white-space: nowrap; }
.hc-sum > div:nth-child(2) span { color: #66BB6A; }
.hc-sum em { font-style: normal; font-size: 12px; color: #D6D0DC; }
.hc-facts { font-size: 13px; color: #D6D0DC; line-height: 1.7; }
.hc-bub { position: relative; background: #36343B; border-radius: 16px 16px 16px 4px; padding: 12px 14px; display: flex; flex-direction: column; gap: 6px; }
.hc-who { display: flex; align-items: center; gap: 6px; font-size: 13px; }
.hc-who svg { width: 22px; height: 22px; color: #FFB74D; }
.hc-who span { margin-left: auto; font-size: 11px; color: #D6D0DC; border: 1px solid #49454F; border-radius: 10px; padding: 1px 8px; }
.hc-say { font-size: 15px; line-height: 1.65; }
.hc-note { font-size: 12px; color: #9A94A2; text-align: center; }
.soon-pair { margin-top: 64px; }
.soon-col { align-items: stretch; }
.soon-col > .dev { align-self: center; }
.soon-col > .txt { max-width: 480px; align-self: center; }

h2 { font-size: 34px; letter-spacing: -.02em; line-height: 1.25; }
.hero h1 { font-size: 54px; letter-spacing: -.025em; line-height: 1.18; }
.sec-head { margin-bottom: 36px; }
.sec-head p { font-size: 18px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; letter-spacing: .04em; }
.sec-head .eyebrow::before { content: ''; width: 18px; height: 2px; border-radius: 1px; background: var(--primary); }
section { padding: 88px 0; }
@media (max-width: 860px) { .hero h1 { font-size: 36px; } }
@media (max-width: 720px) {
  h2 { font-size: 26px; }
  .sec-head { margin-bottom: 24px; }
  .sec-head p { font-size: 17px; }
  section { padding: 56px 0; }
}

section.band { background: var(--surface); }
section.band .card { background: var(--bg); }
:root[data-theme="day"] section.band { background: var(--cardhi); }
:root[data-theme="day"] section.band .card { background: var(--surface); }

.hero::before {
  content: ''; position: absolute; z-index: 0; pointer-events: none;
  width: 900px; height: 900px; left: calc(50% + 260px); top: 50%; transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, color-mix(in srgb, var(--primary) 16%, transparent), transparent 70%);
}
.hero::after {
  content: ''; position: absolute; z-index: 0; left: 0; right: 0; bottom: 0; height: 1px; pointer-events: none;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--primary) 45%, transparent) 50%, transparent);
}
@media (max-width: 900px) { .hero::before { width: 140vw; height: 140vw; left: 50%; top: 70%; } }
.hero { padding: 72px 0 88px; }
@media (max-width: 860px) { .hero { padding: 40px 0 56px; } }

.feat h3 .ic { color: var(--primary); }
.feat h3 .ic svg { width: 20px; height: 20px; display: block; }
.feat ul { padding-left: 0; list-style: none; }
.feat li { position: relative; padding-left: 16px; margin: 6px 0; }
.feat li::before { content: ''; position: absolute; left: 2px; top: .7em; width: 5px; height: 5px; border-radius: 50%; background: var(--outline); }

.folds { display: flex; flex-direction: column; border-top: 1px solid var(--outline-var); }
.fold { border-bottom: 1px solid var(--outline-var); scroll-margin-top: 72px; }
.fold > summary {
  list-style: none; cursor: pointer; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center;
  column-gap: 16px; row-gap: 2px; padding: 20px 4px; min-height: 64px;
}
.fold > summary::-webkit-details-marker { display: none; }
.fold > summary:hover .fold-t { color: var(--primary); }
.fold > summary:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; border-radius: 8px; }
.fold-eb { grid-column: 1; font-size: 14px; font-weight: 700; color: var(--primary); letter-spacing: .02em; }
.fold-t { grid-column: 1; margin: 0; font-size: 20px; font-weight: 700; line-height: 1.4; transition: color .15s ease; }
.fold-x { grid-column: 2; grid-row: 1 / span 2; position: relative; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--outline); flex: none; }
.fold-x::before, .fold-x::after { content: ''; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; margin: -1px 0 0 -6px; border-radius: 1px; background: var(--on); transition: transform .2s ease; }
.fold-x::after { transform: rotate(90deg); }
.fold[open] > summary .fold-x::after { transform: rotate(0deg); }
.fold[open] > summary .fold-t { color: var(--primary); }
.fold-body { padding: 12px 0 48px; }
.fold-body > .wrap { max-width: none; padding: 0; }
.fold-body .sec-head { margin-bottom: 24px; }
.fold-body .sec-head p { margin-top: 0; font-size: 17px; }
.fold-body .soon-row + .soon-row, .fold-body .soon-pair { margin-top: 0; }
@media (max-width: 720px) { .fold-t { font-size: 18px; } .fold > summary { padding: 16px 0; } .fold-body { padding: 8px 0 32px; } }
.apps-more { margin-top: 28px; display: flex; flex-direction: column; gap: 20px; }
.apps-more > .fold { border: 1px solid var(--outline); border-radius: 12px; background: var(--card); padding: 0 20px; }
.apps-more > .fold .fold-t { font-size: 19px; }
.apps-more > .fold .fold-body { padding: 0 0 20px; }

.rv { opacity: 0; transform: translateY(12px); transition: opacity .5s ease, transform .5s ease; }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

.apps li.region::after, .apps li.busan::after { font-size: 13px; }
.awards span { font-size: 14px; }
.ladder li { font-size: 13px; }
.phone-cap, .hero .note { font-size: 14px; }
footer .links a { display: inline-flex; align-items: center; min-height: 44px; }
.theme-btn { min-height: 44px; }
.sec-head a, .feat a, .a11y a { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: color-mix(in srgb, var(--primary) 45%, transparent); }
.chip, .swipe-hint { font-size: 14px; }
.gt-flow .k { font-size: 13px; }
.brand { min-height: 44px; }

:root { --display: 'Hahmlet', 'Pretendard Variable', Pretendard, 'Noto Serif KR', serif; }
h1, h2 { font-family: var(--display); font-weight: 800; letter-spacing: -.015em; }
.hero h1 { letter-spacing: -.02em; }
.doc h1, .doc h2 { font-family: inherit; letter-spacing: 0; }

.fold-body .fold-say { font-family: var(--display); font-size: 24px; font-weight: 700; line-height: 1.4; letter-spacing: -.01em; color: var(--on); margin: 0 0 12px; }
@media (max-width: 720px) { .fold-body .fold-say { font-size: 21px; } }
.fold-t { font-weight: 700; }

@supports (interpolate-size: allow-keywords) {
  :root { interpolate-size: allow-keywords; }
  .fold::details-content { height: 0; overflow: clip; transition: height .32s ease, content-visibility .32s allow-discrete; }
  .fold[open]::details-content { height: auto; }
}
.fold[open] > .fold-body { animation: foldIn .32s ease both; }
@keyframes foldIn { from { opacity: 0; transform: translateY(-6px); } }
@media (prefers-reduced-motion: reduce) {
  .fold::details-content { transition: none; }
  .fold[open] > .fold-body { animation: none; }
}

.sub-h { font-size: 22px; margin: 8px 0 16px; }
.contact { margin-top: 28px; }

@media (max-width: 420px) { .hero h1 { font-size: 31px; letter-spacing: -.035em; } }

.hero, :root[data-theme="day"] .hero {
  --on: #F5F1F6; --onvar: #D6D0DC; --primary: #FFB74D; --onprimary: #4A2800; --outline: #5A5561; --cardhi: #36343B;
  color: var(--on);
  background:
    linear-gradient(90deg, rgba(11,10,13,.96) 0%, rgba(11,10,13,.90) 34%, rgba(11,10,13,.35) 58%, rgba(11,10,13,.20) 80%, rgba(11,10,13,.85) 100%),
    linear-gradient(180deg, rgba(11,10,13,.55) 0%, rgba(11,10,13,0) 22%, rgba(11,10,13,0) 82%, rgba(11,10,13,.9) 100%),
    #0B0A0D url('assets/hero-night.webp') left calc(50vw - 606px) top -90px / 1600px auto no-repeat;
}
.hero::before { display: none; }
.hero-mark { display: none; }
.hero .phone-cap { color: #D6D0DC; }

@media (max-width: 860px) {
  .hero, :root[data-theme="day"] .hero {
    background:
      radial-gradient(ellipse 42% 19% at 50% calc(100% - 85px), #0B0A0D 0%, rgba(11,10,13,.98) 62%, rgba(11,10,13,0) 100%),
      linear-gradient(180deg, rgba(11,10,13,.97) 0%, rgba(11,10,13,.92) 40%, rgba(11,10,13,.30) 70%, rgba(11,10,13,.25) 88%, rgba(11,10,13,.9) 100%),
      #0B0A0D url('assets/hero-night.webp') left calc(50vw - 773px) bottom -30px / 1344px auto no-repeat;
  }
}

html { -webkit-tap-highlight-color: transparent; }
a, button, summary { touch-action: manipulation; }
.m-only { display: none; }
.m-fold-btn { display: none; }

.to-top {
  position: fixed; right: max(16px, env(safe-area-inset-right)); bottom: max(16px, env(safe-area-inset-bottom)); z-index: 30;
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--outline); background: var(--card); color: var(--on);
  display: grid; place-items: center; cursor: pointer; box-shadow: 0 8px 24px var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top svg { width: 22px; height: 22px; }
@media (prefers-reduced-motion: reduce) { .to-top { transition: none; } }
footer { padding-bottom: max(24px, env(safe-area-inset-bottom)); }

@media (max-width: 720px) {
  .m-only { display: block; }

  .hero .phone-wrap .dev { max-height: 400px; overflow: hidden; border-bottom-left-radius: 0; border-bottom-right-radius: 0; border-bottom: 0;
    -webkit-mask-image: linear-gradient(#000 72%, transparent); mask-image: linear-gradient(#000 72%, transparent); }
  .hero .phone-cap { margin-top: 4px; }
  .hero .cta .btn { flex: 1 1 100%; }

  .step { display: grid; grid-template-columns: 40px minmax(0, 1fr); column-gap: 14px; align-items: start; padding: 16px; }
  .step .n { grid-row: 1 / span 2; margin: 2px 0 0; }
  .step h3, .step p { grid-column: 2; }

  html.js .m-fold:not(.open) { display: none; }
  html.js .m-fold-btn {
    display: inline-flex; align-items: center; gap: 6px; min-height: 44px; margin-top: 4px; padding: 0 14px;
    font: inherit; font-size: 15px; font-weight: 700; color: var(--primary); background: transparent;
    border: 1px solid var(--outline); border-radius: 22px; cursor: pointer;
  }
  .feat p { margin-bottom: 8px; }
  .feat .m-fold ul { margin-top: 4px; }
  .a11y .m-fold dl { margin-top: 12px; }
  .card { padding: 18px 16px; }
  .promise .big { font-size: 20px; }

  .ladder, .awards, .awards.tk {
    display: flex; flex-wrap: nowrap; overflow-x: auto; gap: 10px; max-width: none;
    margin-right: -20px; padding: 2px 20px 12px 0; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .ladder::-webkit-scrollbar, .awards::-webkit-scrollbar { display: none; }
  .ladder li { flex: 0 0 84px; width: auto; scroll-snap-align: start; }
  .awards li { flex: 0 0 168px; scroll-snap-align: start; }
  .awards img { width: 84px; height: 84px; }
  .ladder img { width: 60px; height: 60px; }
  .aw-h { margin-top: 24px; }

  .nots { gap: 0; border-top: 1px solid var(--outline-var); }
  .nots li { border: 0; border-bottom: 1px solid var(--outline-var); border-radius: 0; padding: 14px 0; }

  .apps li { padding: 9px 12px; }
  .cheer { padding: 22px 0; }
}
@media (min-width: 721px) { .aw-hint { display: none; } }

@media (min-width: 1100px) { .ladder { display: grid; grid-template-columns: repeat(11, 1fr); gap: 4px; } .ladder li { width: auto; } }

.shots { display: flex; flex-wrap: nowrap; overflow-x: auto; gap: 24px; padding: 4px 4px 16px; justify-items: initial;
  scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: var(--outline) transparent; }
.shots > * { flex: none; scroll-snap-align: start; }
.shots:focus-visible { outline: 2px solid var(--primary); outline-offset: 4px; border-radius: 12px; }
.shots-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 0 0 12px; min-height: 44px; }
.shots-bar .swipe-hint { display: block; font-size: 14px; }
.shots-nav { display: none; gap: 8px; }
.shots-nav button { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--outline); background: var(--card); color: var(--on);
  font: inherit; font-size: 22px; line-height: 1; cursor: pointer; }
.shots-nav button:hover { background: var(--cardhi); }
.shots-nav button:disabled { opacity: .35; cursor: default; }
@media (min-width: 761px) and (hover: hover) { .shots-nav { display: inline-flex; } }
@media (max-width: 760px) { .shots { gap: 16px; } }
#screens .m-fold-btn { margin-bottom: 20px; }

.aw-two > div { min-width: 0; }
@media (min-width: 900px) {
  .aw-two { display: grid; grid-template-columns: 2fr 3fr; column-gap: 24px; align-items: start; }
  .aw-two .awards { grid-template-columns: repeat(2, 1fr); }
  .aw-two .awards.tk { grid-template-columns: repeat(3, 1fr); max-width: none; }
}
.aw-rules { margin-top: 28px; }
.aw-rules .fold-t { font-size: 18px; }
.aw-rules .fold-body { padding-bottom: 24px; }
