/* ===================================================================
   GlanceType landing — styles
   Premium dark, Korean-first, responsive, accessible.
   =================================================================== */

:root {
  --bg: #0b0c0f;
  --bg-2: #0e1015;
  --surface: #14161d;
  --surface-2: #1a1d26;
  --surface-3: #20232e;
  --border: #262a35;
  --border-strong: #333949;
  --text: #e8eaf0;
  --text-dim: #c2c7d2;
  --muted: #9197a4;
  --accent: #6e8bff;
  --accent-2: #6fe3c4;
  --accent-press: #5774f4;
  --danger: #ff6b6b;
  --warn: #ffcf6b;
  --ok: #6fe3a0;

  --maxw: 1120px;
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --shadow: 0 20px 60px -25px rgba(0, 0, 0, 0.7);
  --shadow-soft: 0 8px 30px -12px rgba(0, 0, 0, 0.5);

  --font: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
    "Apple SD Gothic Neo", "Segoe UI", Roboto, "Noto Sans KR", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  letter-spacing: -0.01em;
  /* Korean: break at word boundaries, never mid-word (fixes "듭니 / 다" splits). */
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ambient background glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(720px 400px at 78% -8%, rgba(110, 139, 255, 0.16), transparent 60%),
    radial-gradient(640px 420px at 8% 6%, rgba(111, 227, 196, 0.08), transparent 55%);
}
main, .site-header, .site-footer { position: relative; z-index: 1; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3 { margin: 0; line-height: 1.2; letter-spacing: -0.03em; font-weight: 700; }
p { margin: 0; }
strong { font-weight: 700; color: var(--text); }
em { font-style: normal; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 16px; top: -48px; z-index: 100;
  background: var(--accent); color: #0b0c0f; padding: 10px 16px; border-radius: 8px;
  font-weight: 600; transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

/* ───────────────── Buttons ───────────────── */
.btn {
  --bg-btn: var(--surface-2);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 600; font-size: 0.96rem; letter-spacing: -0.01em;
  padding: 12px 20px; border-radius: 999px; border: 1px solid var(--border-strong);
  background: var(--bg-btn); color: var(--text); cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(180deg, var(--accent), var(--accent-press));
  border-color: transparent; color: #fff;
  box-shadow: 0 8px 24px -8px rgba(110, 139, 255, 0.55);
}
.btn-primary:hover { box-shadow: 0 12px 30px -8px rgba(110, 139, 255, 0.7); }
.btn-ghost { background: transparent; border-color: var(--border-strong); color: var(--text-dim); }
.btn-ghost:hover { border-color: var(--accent); color: var(--text); }
.btn-sm { padding: 9px 16px; font-size: 0.9rem; }
.btn-lg { padding: 15px 28px; font-size: 1.05rem; }

/* ───────────────── Header ───────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(160%) blur(14px);
  background: rgba(11, 12, 15, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.site-header.scrolled { border-color: var(--border); }
.header-inner { display: flex; align-items: center; gap: 24px; height: 64px; }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 1.12rem; letter-spacing: -0.02em; }
.brand img { border-radius: 7px; }
.nav { display: flex; gap: 28px; margin-left: 12px; }
.nav a { color: var(--muted); font-size: 0.94rem; font-weight: 500; transition: color 0.15s; }
.nav a:hover { color: var(--text); }
.header-cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.2s; }

.mobile-nav { display: none; flex-direction: column; gap: 4px; padding: 12px 24px 20px; border-bottom: 1px solid var(--border); background: var(--bg-2); }
.mobile-nav a { padding: 12px 6px; color: var(--text-dim); border-bottom: 1px solid var(--border); }
.mobile-nav a:last-child { border: 0; margin-top: 8px; text-align: center; }

/* ───────────────── Hero ───────────────── */
.hero { padding: clamp(48px, 8vw, 96px) 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.86rem; font-weight: 600; color: var(--accent-2);
  background: rgba(111, 227, 196, 0.08); border: 1px solid rgba(111, 227, 196, 0.2);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 22px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 0 0 rgba(111,227,196,.6); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(111,227,196,.5); } 70% { box-shadow: 0 0 0 8px rgba(111,227,196,0); } 100% { box-shadow: 0 0 0 0 rgba(111,227,196,0); } }

.hero h1 { font-size: clamp(2.3rem, 5.6vw, 4rem); font-weight: 800; letter-spacing: -0.045em; }
.hero .lede { margin-top: 22px; font-size: clamp(1.05rem, 1.7vw, 1.22rem); color: var(--text-dim); max-width: 30ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-sub { margin-top: 14px; font-size: 0.9rem; color: var(--muted); }
.hero-badges { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 18px; }
.hero-badges li { font-size: 0.88rem; color: var(--text-dim); }
.hero-foot { text-align: center; color: var(--muted); font-size: 0.86rem; margin-top: 48px; opacity: 0.8; }

/* Product mock */
.hero-demo { position: relative; }
.demo-window {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow); overflow: hidden;
}
.demo-chrome {
  display: flex; align-items: center; gap: 7px; padding: 13px 16px;
  background: var(--surface-2); border-bottom: 1px solid var(--border);
}
.demo-chrome span:nth-child(-n+3) { width: 11px; height: 11px; border-radius: 50%; }
.dotred { background: #ff5f57; } .dotyellow { background: #febc2e; } .dotgreen { background: #28c840; }
.demo-title { margin-left: 10px; font-size: 0.82rem; color: var(--muted); }
.demo-body { padding: 24px 24px 30px; min-height: 230px; }
.demo-line { font-size: 0.96rem; }
.demo-meta { color: var(--muted); }
.demo-divider { height: 1px; background: var(--border); margin: 16px 0 18px; }
.demo-typed { font-size: 1.04rem; color: var(--text); min-height: 3.4em; }
.demo-caret { display: inline-block; width: 2px; height: 1.1em; background: var(--accent); vertical-align: text-bottom; margin-left: 1px; animation: blink 1.05s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }

.rec-pill {
  position: absolute; left: 50%; bottom: -26px; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(20, 22, 29, 0.92); backdrop-filter: blur(10px);
  border: 1px solid var(--border-strong); border-radius: 999px;
  padding: 11px 20px; box-shadow: var(--shadow-soft);
}
.rec-led { width: 9px; height: 9px; border-radius: 50%; background: var(--danger); animation: pulse-red 1.4s infinite; }
@keyframes pulse-red { 50% { opacity: 0.35; } }
.rec-label { font-size: 0.86rem; color: var(--text-dim); font-weight: 500; }
.wave { display: inline-flex; align-items: center; gap: 3px; height: 22px; }
.wave i { width: 3px; height: 6px; background: linear-gradient(var(--accent-2), var(--accent)); border-radius: 2px; animation: wave 1s ease-in-out infinite; }
.wave i:nth-child(odd) { animation-duration: 0.85s; }
.wave i:nth-child(2) { animation-delay: .1s; } .wave i:nth-child(3) { animation-delay: .2s; }
.wave i:nth-child(4) { animation-delay: .05s; } .wave i:nth-child(5) { animation-delay: .25s; }
.wave i:nth-child(6) { animation-delay: .15s; } .wave i:nth-child(7) { animation-delay: .3s; }
.wave i:nth-child(8) { animation-delay: .08s; } .wave i:nth-child(9) { animation-delay: .22s; }
.wave i:nth-child(10) { animation-delay: .12s; } .wave i:nth-child(11) { animation-delay: .28s; }
.wave i:nth-child(12) { animation-delay: .18s; }
@keyframes wave { 0%, 100% { height: 5px; } 50% { height: 20px; } }

.hotkey-chip {
  position: absolute; top: -18px; right: -10px;
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--surface-2); border: 1px solid var(--border-strong);
  border-radius: 12px; padding: 8px 12px; font-size: 0.8rem; color: var(--text-dim);
  box-shadow: var(--shadow-soft);
}
.hotkey-chip kbd, .hk kbd {
  font-family: var(--font); font-size: 0.78rem; font-weight: 600;
  background: var(--bg); border: 1px solid var(--border-strong); border-bottom-width: 2px;
  border-radius: 6px; padding: 2px 7px; color: var(--text);
}

/* ───────────────── Bands / sections ───────────────── */
.band { padding: clamp(56px, 8vw, 104px) 0; }
.band.tint { background: linear-gradient(180deg, var(--bg-2), var(--bg)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.kicker { font-size: 0.84rem; font-weight: 700; color: var(--accent); letter-spacing: 0.02em; margin-bottom: 14px; }
.section-h { font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight: 800; letter-spacing: -0.035em; max-width: 22ch; }
.section-h em { color: var(--accent); }
.section-lede { margin-top: 16px; font-size: 1.06rem; color: var(--text-dim); max-width: 60ch; }

/* Competitive comparison */
.cmp { margin-top: 36px; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; background: var(--surface); }
.cmp-row { display: grid; grid-template-columns: 0.85fr 1.25fr 1.55fr; border-top: 1px solid var(--border); }
.cmp-row:first-child { border-top: 0; }
.cmp-row > span { padding: 16px 18px; }
.cmp-head { background: var(--surface-2); }
.cmp-head > span { padding-top: 13px; padding-bottom: 13px; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.02em; color: var(--muted); }
.cmp-head .cmp-gt { color: var(--accent); }
.cmp-axis { font-weight: 600; color: var(--text); border-right: 1px solid var(--border); display: flex; align-items: center; }
.cmp-other { color: var(--muted); border-right: 1px solid var(--border); }
.cmp-gt { color: var(--text-dim); background: linear-gradient(180deg, rgba(110,139,255,.05), transparent); }
.cmp-gt strong { color: var(--text); }
.cmp-note { margin-top: 14px; font-size: 0.82rem; color: var(--muted); }

/* Steps */
.steps { margin: 44px 0 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: s; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 30px 26px; position: relative; }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 11px; background: rgba(110,139,255,.12); color: var(--accent); font-weight: 800; font-size: 1.1rem; margin-bottom: 18px; }
.step h3 { font-size: 1.18rem; margin-bottom: 9px; }
.step p { color: var(--text-dim); font-size: 0.98rem; }

/* Modes */
.mode-grid { margin-top: 42px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.mode-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 30px 28px; transition: transform .18s, border-color .18s; }
.mode-card:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.mode-card.featured { border-color: rgba(110,139,255,.45); background: linear-gradient(180deg, rgba(110,139,255,.07), var(--surface)); }
.mode-icon { font-size: 1.8rem; margin-bottom: 14px; }
.mode-card h3 { font-size: 1.3rem; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.pill-mini { font-size: 0.72rem; font-weight: 700; color: var(--accent); background: rgba(110,139,255,.12); padding: 3px 10px; border-radius: 999px; letter-spacing: 0; }
.hk { margin: 12px 0 14px; display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: 0.86rem; }
.mode-card > p:last-child { color: var(--text-dim); }

/* Why */
.why-grid { margin-top: 42px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 40px; }
.why-item h3 { font-size: 1.22rem; margin-bottom: 10px; }
.why-item p { color: var(--text-dim); }

/* Privacy */
.privacy { background:
  radial-gradient(900px 300px at 50% 0%, rgba(111,227,196,.06), transparent 70%), var(--bg); }
.privacy .kicker { color: var(--accent-2); }
.trust-list { margin: 36px 0 0; padding: 0; list-style: none; display: grid; gap: 14px; max-width: 760px; }
.trust-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 1.04rem; color: var(--text-dim); background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 16px 20px; }
.trust-list .ck { color: var(--accent-2); font-weight: 800; flex-shrink: 0; }
.privacy-note { margin-top: 22px; color: var(--muted); font-size: 0.98rem; }

/* Setup */
.setup-grid { margin-top: 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.setup-step { padding: 26px; border: 1px dashed var(--border-strong); border-radius: var(--r); background: var(--surface); }
.setup-n { font-size: 0.86rem; font-weight: 800; color: var(--accent); letter-spacing: 0.08em; }
.setup-step h3 { font-size: 1.12rem; margin: 12px 0 8px; }
.setup-step p { color: var(--text-dim); font-size: 0.96rem; }

/* Download */
.download { background: linear-gradient(180deg, var(--bg-2), var(--bg)); border-top: 1px solid var(--border); }
.dl-wrap { text-align: center; }
.dl-wrap .section-h, .dl-wrap .section-lede { margin-left: auto; margin-right: auto; }
.dl-cards { margin: 38px auto 0; display: grid; grid-template-columns: repeat(2, minmax(0, 300px)); gap: 18px; justify-content: center; }
.dl-card { display: flex; align-items: center; gap: 16px; text-align: left; background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--r); padding: 22px 24px; transition: transform .16s, border-color .16s, box-shadow .16s; }
.dl-card:hover { transform: translateY(-2px); border-color: var(--accent); box-shadow: var(--shadow-soft); }
.dl-card.is-current { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent) inset; }
.dl-os { width: 44px; height: 44px; border-radius: 12px; background: var(--surface-3) center/24px no-repeat; flex-shrink: 0; }
.js-dl-mac .dl-os { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e8eaf0'%3E%3Cpath d='M16.365 1.43c0 1.14-.42 2.2-1.12 3-.78.9-2.06 1.6-3.12 1.51-.13-1.1.42-2.27 1.1-3.02.77-.85 2.13-1.5 3.14-1.49zM20.9 17.2c-.55 1.27-.82 1.83-1.53 2.95-.99 1.56-2.4 3.5-4.13 3.51-1.54.02-1.94-1.01-4.03-1-2.09.01-2.53 1.02-4.07 1-1.73-.01-3.06-1.76-4.06-3.32C-1.6 16.83-1.93 11-0.07 7.93 1.24 5.75 3.32 4.4 5.27 4.4c1.98 0 3.23 1.09 4.87 1.09 1.59 0 2.56-1.09 4.85-1.09 1.73 0 3.57.94 4.88 2.57-4.29 2.35-3.59 8.47.13 8.23z'/%3E%3C/svg%3E"); }
.js-dl-win .dl-os { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e8eaf0'%3E%3Cpath d='M3 5.1 10.4 4v7.3H3V5.1zM10.4 12.7V20L3 18.9v-6.2h7.4zM11.3 3.85 21 2.5v8.8h-9.7V3.85zM21 12.7v8.8l-9.7-1.35V12.7H21z'/%3E%3C/svg%3E"); }
.dl-text { display: flex; flex-direction: column; }
.dl-text strong { font-size: 1.1rem; }
.dl-detail { font-size: 0.82rem; color: var(--muted); }
.dl-go { margin-left: auto; color: var(--accent); font-weight: 600; font-size: 0.92rem; }
.dl-meta { margin-top: 24px; color: var(--muted); font-size: 0.88rem; }
.dl-fine { margin-top: 10px; color: var(--muted); font-size: 0.82rem; opacity: 0.85; max-width: 56ch; margin-left: auto; margin-right: auto; }

/* Founder */
.founder-wrap { max-width: 760px; }
.founder-wrap .section-h { margin-bottom: 22px; }
.founder-wrap p { color: var(--text-dim); font-size: 1.06rem; margin-bottom: 16px; }
.founder-wrap .btn { margin-top: 8px; }

/* Pricing */
.price-grid { margin-top: 42px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.price-grid.two { grid-template-columns: repeat(2, minmax(0, 360px)); justify-content: center; }
.price-card { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 32px 28px; }
.price-card.highlight { border-color: var(--accent); background: linear-gradient(180deg, rgba(110,139,255,.08), var(--surface)); box-shadow: var(--shadow-soft); }
.price-flag { position: absolute; top: 18px; right: 18px; font-size: 0.72rem; font-weight: 700; color: var(--accent); background: rgba(110,139,255,.14); padding: 4px 11px; border-radius: 999px; }
.price-card h3 { font-size: 1.3rem; }
.price { margin: 14px 0 8px; }
.price .num { font-size: 2.2rem; font-weight: 800; letter-spacing: -0.04em; }
.price .per { color: var(--muted); font-size: 0.92rem; margin-left: 4px; }
.price-desc { color: var(--text-dim); font-size: 0.95rem; min-height: 2.8em; }
.price-card ul { list-style: none; margin: 18px 0 24px; padding: 0; display: grid; gap: 10px; }
.price-card li { color: var(--text-dim); font-size: 0.94rem; padding-left: 24px; position: relative; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-2); font-weight: 800; }
.price-card .btn { width: 100%; }

/* Notify */
.notify { text-align: center; }
.notify-wrap { max-width: 620px; margin: 0 auto; }
.notify-wrap .section-h { margin: 0 auto; }
.notify-form { margin: 28px auto 0; display: flex; gap: 10px; max-width: 480px; }
.notify-form input {
  flex: 1; font-family: inherit; font-size: 1rem; color: var(--text);
  background: var(--surface); border: 1px solid var(--border-strong); border-radius: 999px;
  padding: 13px 20px;
}
.notify-form input::placeholder { color: var(--muted); }
.notify-form input:focus { outline: none; border-color: var(--accent); }
.notify-status { margin-top: 14px; font-size: 0.92rem; color: var(--accent-2); min-height: 1.4em; }

/* FAQ */
.faq-wrap { max-width: 820px; }
.faq-wrap details {
  border: 1px solid var(--border); border-radius: var(--r-sm); background: var(--surface);
  margin-top: 12px; padding: 4px 22px; transition: border-color .15s;
}
.faq-wrap details[open] { border-color: var(--border-strong); }
.faq-wrap summary {
  cursor: pointer; list-style: none; padding: 18px 0; font-weight: 600; font-size: 1.04rem;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-wrap summary::-webkit-details-marker { display: none; }
.faq-wrap summary::after { content: "+"; color: var(--accent); font-size: 1.4rem; font-weight: 400; transition: transform .2s; }
.faq-wrap details[open] summary::after { transform: rotate(45deg); }
.faq-wrap details p { color: var(--text-dim); padding: 0 0 20px; font-size: 0.98rem; }

/* Final CTA */
.final-cta { text-align: center; background: linear-gradient(180deg, var(--bg), #07080b); }
.final-wrap h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -0.04em; }
.final-wrap p { color: var(--text-dim); margin: 16px 0 30px; font-size: 1.1rem; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 40px 0; background: #07080b; }
.footer-inner { display: flex; align-items: center; gap: 20px 32px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 8px; font-weight: 700; }
.footer-brand img { border-radius: 6px; }
.footer-nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-nav a { color: var(--muted); font-size: 0.9rem; }
.footer-nav a:hover { color: var(--text); }
.footer-fine { margin-left: auto; color: var(--muted); font-size: 0.84rem; }

/* ───────────────── Responsive ───────────────── */
@media (max-width: 920px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .header-cta .btn-sm { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-demo { margin-top: 30px; max-width: 480px; }
  .hero .lede { max-width: 46ch; }
  .cmp-head { display: none; }
  .cmp-row { grid-template-columns: 1fr; }
  .cmp-axis { border-right: 0; border-bottom: 1px solid var(--border); background: var(--surface-2); }
  .cmp-other { border-right: 0; }
  .cmp-other::before { content: "다른 앱 · "; color: var(--muted); font-weight: 700; }
  .cmp-gt::before { content: "GlanceType · "; color: var(--accent); font-weight: 700; }
  .steps, .setup-grid, .price-grid { grid-template-columns: 1fr; }
  .mode-grid, .why-grid { grid-template-columns: 1fr; }
  .footer-fine { margin-left: 0; width: 100%; }
}
@media (max-width: 520px) {
  .wrap { padding: 0 18px; }
  .dl-cards { grid-template-columns: 1fr; }
  .notify-form { flex-direction: column; }
  .notify-form .btn { width: 100%; }
  .hotkey-chip { display: none; }
}
