/* MOTIVE landing + guide pages — dark theme, mint→purple gradient brand */
:root {
  --bg: #0c0d10;
  --bg-card: #16181d;
  --bg-soft: #1d2026;
  --ink: #f4f5f7;
  --ink-soft: #9aa0ab;
  --mint: #2ee6d6;
  --purple: #7b61ff;
  --grad: linear-gradient(90deg, #2ee6d6, #7b61ff);
  --radius: 20px;
  --radius-lg: 30px;
  --shadow: 0 12px 34px rgba(0, 0, 0, 0.45);
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Noto Sans KR', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--mint); }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ---------- Nav ---------- */
.mv-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(12, 13, 16, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.mv-nav .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; padding-bottom: 12px; }
.mv-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-weight: 700; font-size: 1.08rem; letter-spacing: 0.04em; }
.mv-brand img { width: 36px; height: 36px; border-radius: 9px; }
.mv-nav-links { display: flex; align-items: center; gap: 22px; }
.mv-nav-links a { text-decoration: none; color: var(--ink-soft); font-weight: 600; font-size: 0.92rem; }
.mv-nav-links a:hover { color: var(--ink); }
.btn {
  display: inline-block; text-decoration: none; text-align: center;
  background: var(--grad); color: #0c0d10 !important;
  font-weight: 700; font-size: 1rem;
  padding: 13px 30px; border-radius: 999px;
  box-shadow: 0 6px 22px rgba(46, 230, 214, 0.28);
  transition: transform 0.15s ease, filter 0.15s ease;
}
.btn:hover { filter: brightness(1.1); transform: translateY(-2px); }
.btn.small { padding: 9px 20px; font-size: 0.88rem; }
.btn.ghost { background: transparent; color: var(--ink) !important; box-shadow: none; border: 2px solid rgba(255, 255, 255, 0.22); }
.btn.ghost:hover { border-color: var(--mint); color: var(--mint) !important; }

/* ---------- Hero ---------- */
.hero { padding: 76px 0 44px; overflow: hidden; position: relative; }
.hero::before {
  content: ""; position: absolute; inset: -40% -20% auto;  height: 120%;
  background: radial-gradient(ellipse at 20% 0%, rgba(123, 97, 255, 0.22), transparent 55%),
              radial-gradient(ellipse at 85% 10%, rgba(46, 230, 214, 0.16), transparent 50%);
  pointer-events: none;
}
.hero .wrap { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; position: relative; }
.hero-icon { width: 84px; height: 84px; border-radius: 20px; box-shadow: var(--shadow); margin-bottom: 24px; }
.hero h1 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); line-height: 1.14; font-weight: 800; letter-spacing: -0.02em; }
.hero h1 em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lede { font-size: 1.15rem; color: var(--ink-soft); margin: 20px 0 28px; max-width: 34em; }
.hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.store-badge { height: 54px; width: auto; }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 26px; padding: 0; list-style: none; }
.hero-trust li { font-size: 0.9rem; font-weight: 600; color: var(--ink-soft); display: flex; align-items: center; gap: 7px; }
.hero-trust li::before { content: "✓"; color: var(--mint); font-weight: 800; }
.hero-shot { border-radius: var(--radius-lg); box-shadow: 0 28px 70px rgba(0, 0, 0, 0.6); max-width: 340px; margin: 0 auto; }
.stars { color: #ffd166; letter-spacing: 2px; }

/* ---------- Sections ---------- */
section { padding: 64px 0; }
.section-kicker { text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.78rem; font-weight: 700; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 10px; }
h2.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -0.01em; margin-bottom: 14px; }
.section-sub { color: var(--ink-soft); max-width: 44em; margin-bottom: 36px; font-size: 1.03rem; }
.center { text-align: center; }
.center .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- Screenshots ---------- */
.shots { display: flex; gap: 22px; overflow-x: auto; padding: 10px 4px 26px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.shots figure { flex: 0 0 240px; scroll-snap-align: center; }
.shots img { border-radius: 26px; box-shadow: var(--shadow); border: 1px solid rgba(255, 255, 255, 0.08); }
.shots figcaption { font-size: 0.86rem; font-weight: 600; color: var(--ink-soft); text-align: center; margin-top: 12px; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { background: var(--bg-card); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: var(--radius); padding: 28px 22px; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--grad); color: #0c0d10;
  font-weight: 800; font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.step h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 6px; }
.step p { font-size: 0.9rem; color: var(--ink-soft); }

/* ---------- Feature split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.feature-card { background: var(--bg-card); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: var(--radius-lg); padding: 36px; }
.feature-card h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 10px; }
.feature-card p { color: var(--ink-soft); }
.feature-tag { display: inline-block; background: rgba(46, 230, 214, 0.12); color: var(--mint); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 999px; padding: 5px 14px; margin-bottom: 14px; }

/* ---------- Guides ---------- */
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.guide-card {
  background: var(--bg-card); border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius); padding: 26px;
  text-decoration: none; color: var(--ink);
  display: flex; flex-direction: column; gap: 8px;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.guide-card:hover { transform: translateY(-4px); border-color: rgba(46, 230, 214, 0.4); }
.guide-card .g-emoji { font-size: 1.7rem; }
.guide-card h3 { font-size: 1rem; font-weight: 700; line-height: 1.35; }
.guide-card p { font-size: 0.87rem; color: var(--ink-soft); flex: 1; }
.guide-card .g-more { color: var(--mint); font-weight: 700; font-size: 0.88rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq details { background: var(--bg-card); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: var(--radius); margin-bottom: 14px; padding: 6px 26px; }
.faq summary { cursor: pointer; font-weight: 700; font-size: 1rem; padding: 16px 0; list-style: none; position: relative; padding-right: 34px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 2px; top: 50%; transform: translateY(-50%); color: var(--mint); font-size: 1.5rem; font-weight: 600; }
.faq details[open] summary::after { content: "–"; }
.faq .faq-a { padding: 0 0 20px; color: var(--ink-soft); }
.faq .faq-a a { font-weight: 700; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--grad);
  border-radius: var(--radius-lg); padding: 60px 40px; text-align: center; color: #0c0d10;
}
.cta-band h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 800; margin-bottom: 12px; }
.cta-band p { color: rgba(12, 13, 16, 0.72); max-width: 38em; margin: 0 auto 28px; font-weight: 500; }
.cta-badges { display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.mv-footer { padding: 56px 0 40px; color: var(--ink-soft); font-size: 0.9rem; }
.mv-footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
.mv-footer h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink); margin-bottom: 12px; }
.mv-footer ul { list-style: none; }
.mv-footer li { margin-bottom: 8px; }
.mv-footer a { color: var(--ink-soft); text-decoration: none; }
.mv-footer a:hover { color: var(--mint); }
.mv-footer .legal { border-top: 1px solid rgba(255, 255, 255, 0.08); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ---------- Guide article pages ---------- */
.article { max-width: 760px; margin: 0 auto; padding: 56px 24px 20px; }
.article .crumbs { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 22px; }
.article .crumbs a { text-decoration: none; font-weight: 600; }
.article h1 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); line-height: 1.18; font-weight: 800; letter-spacing: -0.015em; margin-bottom: 18px; }
.article .byline { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 30px; }
.article h2 { font-size: 1.42rem; font-weight: 800; margin: 40px 0 14px; }
.article h3 { font-size: 1.1rem; font-weight: 700; margin: 26px 0 10px; }
.article p, .article li { color: #c7ccd4; }
.article p { margin-bottom: 16px; }
.article ul, .article ol { margin: 0 0 18px 22px; }
.article li { margin-bottom: 8px; }
.article blockquote {
  border-left: 3px solid var(--mint); background: var(--bg-card);
  border-radius: 0 14px 14px 0; padding: 16px 22px; margin: 20px 0;
  font-style: italic; color: var(--ink);
}
.article blockquote cite { display: block; margin-top: 8px; font-style: normal; font-size: 0.85rem; color: var(--ink-soft); }
.article .shot-inline { border-radius: 26px; box-shadow: var(--shadow); border: 1px solid rgba(255, 255, 255, 0.08); max-width: 300px; margin: 28px auto; }
.article .tip { background: rgba(46, 230, 214, 0.09); border-left: 4px solid var(--mint); border-radius: 12px; padding: 16px 20px; margin: 22px 0; font-size: 0.95rem; color: #c7ccd4; }
.article-cta { background: var(--grad); color: #0c0d10; border-radius: var(--radius-lg); padding: 40px 32px; text-align: center; margin: 44px 0; }
.article-cta h2 { color: #0c0d10; margin: 0 0 8px; font-size: 1.5rem; }
.article-cta p { color: rgba(12, 13, 16, 0.72); margin-bottom: 22px; font-weight: 500; }
.related { max-width: 760px; margin: 0 auto; padding: 0 24px 56px; }
.related h2 { font-size: 1.2rem; font-weight: 800; margin-bottom: 16px; }
.related ul { list-style: none; }
.related li { margin-bottom: 10px; }
.related a { font-weight: 600; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding-top: 44px; }
  .hero-shot { max-width: 280px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .guide-grid { grid-template-columns: 1fr; }
  .mv-footer .cols { grid-template-columns: 1fr; }
  .mv-nav-links a.nav-plain { display: none; }
}
