/* ============================================================
   Harudown Landing (marketing) styles
   Loaded only on pages with <main class="landing-page">.
   Depends on tokens defined in harudown.css (:root).
   ============================================================ */

/* ── Page baseline ─────────────────────────────────────────── */
:root {
  --nav-h: 64px;
}

/* Anchor jumps land below the sticky nav (used by .nav-links a[href^="#"]
   and any direct hash URL — no JS math required). */
html {
  /* scroll offset folds section padding under sticky nav so heading lands near nav bottom */
  scroll-padding-top: calc(var(--nav-h) - 32px);
}

.landing-page {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background: var(--surface);
  color: var(--on-surface);
  /* `clip` does not create a scroll container, so the sticky nav still
     anchors to the viewport. Older browsers fall back to `hidden`. */
  overflow-x: hidden;
  overflow-x: clip;
}

.landing-inner {
  width: 100%;
  max-width: var(--landing-max);
  margin: 0 auto;
  padding-left: var(--landing-px);
  padding-right: var(--landing-px);
}

.landing-section {
  padding: var(--space-5xl) 0;
}

.landing-section--container {
  background: var(--surface);
}

.landing-section--surface {
  background: var(--surface-container-low);
}

.landing-section--tint {
  background: linear-gradient(180deg, var(--primary-tint) 0%, var(--surface) 100%);
}

@media (max-width: 768px) {
  .landing-section { padding: var(--space-4xl) 0; }
}

/* ── Section headings ──────────────────────────────────────── */
.section-label {
  display: inline-block;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--primary-tint);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.landing-page h2 {
  margin-top: var(--space-md);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--on-surface);
}

.landing-page h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--on-surface);
}

.section-block {
  max-width: 720px;
}

.section-block .lead,
.lead {
  margin-top: var(--space-md);
  color: var(--grey-1);
  font-size: 16px;
  line-height: 1.65;
  max-width: 640px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.section-heading > div { max-width: 560px; }

.section-heading > p {
  flex: 1;
  max-width: 380px;
  color: var(--grey-1);
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
  }
  .section-heading > p { max-width: none; }
}

/* ── Top nav ───────────────────────────────────────────────── */
.landing-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(20, 20, 33, 0.06);
}

.landing-nav-inner {
  width: 100%;
  max-width: var(--landing-max);
  margin: 0 auto;
  padding: 14px var(--landing-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.landing-nav .brand { display: inline-flex; align-items: center; }
.landing-nav .brand-logo { height: 32px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links a {
  color: var(--grey-1);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.1px;
  transition: color 0.15s ease;
}

.nav-links a:hover { color: var(--on-surface); }

.nav-links .nav-download {
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  background: var(--primary);
  color: var(--on-primary);
  box-shadow: var(--shadow-sm);
}

.nav-links .nav-download:hover {
  background: var(--primary-dark);
  color: var(--on-primary);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  position: relative;
  background: var(--surface-4);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--on-surface);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span {
  top: 50%;
  transform: translate(-50%, -50%);
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  top: -6px;
}

.nav-toggle span::after { top: 6px; }

.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: translateX(-50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: translateX(-50%) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--space-md) var(--landing-px) var(--space-xl);
    background: var(--surface);
    border-bottom: 1px solid var(--divider);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .nav-links a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--divider);
    font-size: 16px;
    color: var(--on-surface);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links .nav-download {
    margin-top: var(--space-md);
    text-align: center;
    color: var(--on-primary);
  }
  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

/* ── Hero ──────────────────────────────────────────────────── */
.landing-hero {
  width: 100%;
  max-width: var(--landing-max);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) var(--landing-px) clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.hero-copy { max-width: 580px; }

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px 6px 8px;
  border-radius: var(--radius-pill);
  background: var(--primary-tint);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.1px;
}

.hero-kicker img,
.hero-kicker .hero-kicker-ico {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.landing-hero h1 {
  margin-top: var(--space-md);
  font-size: clamp(32px, 5.4vw, 56px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--on-surface);
}

.landing-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--primary) 0%, #7B5CFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin-top: var(--space-lg);
  color: var(--grey-1);
  font-size: 17px;
  line-height: 1.7;
  max-width: 520px;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-2xl);
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  background: #1C1C1E;
  color: #fff;
  border: 1px solid #1C1C1E;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.store-button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.store-button img { width: 22px; height: 22px; }

.store-button span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
}

.store-button span small {
  font-size: 10px;
  font-weight: 500;
  opacity: 0.78;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.store-button-light {
  background: #fff;
  color: #1C1C1E;
  border-color: rgba(20, 20, 33, 0.12);
}

.store-button-light:hover {
  border-color: rgba(20, 20, 33, 0.2);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--space-2xl);
}

.hero-highlights span {
  padding: 7px 13px;
  border-radius: var(--radius-pill);
  background: var(--surface-container-low);
  border: 1px solid var(--divider);
  color: var(--grey-1);
  font-size: 12.5px;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mockup-wrap {
  position: relative;
  width: min(440px, 100%);
}

.hero-mockup {
  width: 100%;
  height: auto;
  border-radius: 36px;
  filter: drop-shadow(0 30px 50px rgba(20, 20, 33, 0.16));
}

.hero-floater {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  font-weight: 600;
  color: var(--on-surface);
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.hero-floater small {
  display: block;
  margin-top: 2px;
  color: var(--grey-1);
  font-size: 11px;
  font-weight: 500;
}

.hero-floater .dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(52, 120, 246, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-floater--top { top: 8%; left: -5%; }
.hero-floater--bottom { bottom: 14%; right: -8%; }

@media (max-width: 980px) {
  .landing-hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-3xl);
  }
  .hero-copy { margin-inline: auto; }
  .hero-lead { margin-inline: auto; }
  .store-actions, .hero-highlights { justify-content: center; }
  .hero-floater--top { left: 0; }
  .hero-floater--bottom { right: 0; }
}

@media (max-width: 520px) {
  .hero-floater { font-size: 12px; padding: 8px 12px 8px 8px; }
  .hero-floater--top { top: 4%; left: -2%; }
  .hero-floater--bottom { bottom: 6%; right: -2%; }
}

/* ── Trust strip ───────────────────────────────────────────── */
.trust-strip {
  width: 100%;
  max-width: var(--landing-max);
  margin: 0 auto;
  padding: 0 var(--landing-px) var(--space-3xl);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: var(--surface-container-low);
  border: 1px solid var(--divider);
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-1);
}

.trust-pill .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--success-tint);
  color: var(--success-2);
  font-size: 11px;
  font-weight: 800;
}

/* ── Problem / Solution ────────────────────────────────────── */
.ps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
}

.ps-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  background: var(--surface-container-low);
  border: 1px solid var(--divider);
}

.ps-column h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--grey-1);
}

.ps-column--problem h3 { color: var(--error); }
.ps-column--solution {
  background: linear-gradient(180deg, #EBF2FF 0%, #FFFFFF 100%);
  border-color: rgba(52, 120, 246, 0.18);
}
.ps-column--solution h3 { color: var(--primary); }

.ps-card {
  padding: var(--space-md) var(--space-lg);
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--divider);
  box-shadow: var(--shadow-sm);
}

.ps-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 700;
  color: var(--on-surface);
}

.ps-card p {
  color: var(--grey-1);
  font-size: 13.5px;
  line-height: 1.6;
}

.ps-arrow {
  align-self: center;
  font-size: 26px;
  color: var(--primary);
  font-weight: 700;
}

@media (max-width: 860px) {
  .ps-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .ps-arrow { transform: rotate(90deg); margin: 0 auto; }
}

/* ── Features ──────────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
}

.feature-card {
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--divider);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.feature-icon img { width: 24px; height: 24px; }

.feature-icon--blue { background: rgba(52, 120, 246, 0.12); }
.feature-icon--green { background: rgba(43, 186, 112, 0.14); }
.feature-icon--pink { background: rgba(229, 53, 115, 0.12); }
.feature-icon--yellow { background: rgba(255, 159, 10, 0.16); }

.feature-card h3 { margin-bottom: 8px; }

.feature-card p {
  color: var(--grey-1);
  font-size: 14px;
  line-height: 1.65;
}

.feature-tag {
  display: inline-block;
  margin-top: var(--space-md);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--surface-container-low);
  color: var(--grey-1);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ── Phone frame — iPhone 17 Pro 톤 (titanium edge + 큰 Dynamic Island) ── */
.phone-frame {
  position: relative;
  width: 280px;
  /* Height follows the screen, which is locked to the screenshot's real
     device ratio — keeps the bezel even and avoids letterbox above the notch. */
  margin: 0 auto;
  padding: 10px;
  border-radius: 44px;
  background:
    linear-gradient(160deg, #3A3A3C 0%, #1C1C1E 55%, #0E0F12 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.10),
    inset 0 0 0 2px rgba(0, 0, 0, 0.55),
    var(--shadow-xl);
}

/* Dynamic Island — iPhone 17 세대에서 더 길고 굵어진 비율 */
.phone-frame::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 108px;
  height: 28px;
  border-radius: 999px;
  background: #0B0B0B;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  z-index: 3;
}

/* Bottom home indicator (Pro 모델 톤) */
.phone-frame::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 108px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.55);
  z-index: 3;
}

.phone-frame--sm {
  width: 220px;
  padding: 8px;
  border-radius: 36px;
}
/* Showcase screenshots already include the real iOS status bar / Dynamic
   Island / home indicator, so the frame must NOT redraw its own chrome —
   doing so created the mismatched safe-area bands at the top and bottom. */
.phone-frame--sm::before,
.phone-frame--sm::after { display: none; }

.phone-frame--lg {
  width: 320px;
  padding: 12px;
  border-radius: 50px;
}
.phone-frame--lg::before { top: 14px; width: 124px; height: 32px; }
.phone-frame--lg::after { bottom: 10px; width: 124px; height: 5px; }

.phone-screen {
  position: relative;
  width: 100%;
  /* Match the mockup screenshots' native device ratio (1206 x 2622) exactly,
     so the image fills the screen with no top/bottom letterbox. */
  aspect-ratio: 1206 / 2622;
  border-radius: 34px;
  overflow: hidden;
  background: var(--surface);
}

.phone-frame--sm .phone-screen { border-radius: 28px; }
.phone-frame--lg .phone-screen { border-radius: 38px; }

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--surface);
}

/* ── Mock screen primitives (CSS-only mockups) ─────────────── */
.mock-screen {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  height: 100%;
  padding: 32px 14px 60px;
  background: var(--surface);
}

.mock-bar {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--grey-1);
}

.mock-app-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--on-surface);
}

.mock-icon-btn {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: var(--surface-4);
}

.mock-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--divider);
  box-shadow: 0 1px 2px rgba(20, 20, 33, 0.04);
}

.mock-card .row {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Override base .badge inside mock cards — colored dot/square */
.mock-card .badge {
  display: inline-block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  padding: 0;
  border-radius: 6px;
  background: var(--surface-4);
}

.mock-card .badge.b-restaurant { background: rgba(255, 193, 7, 0.85); }
.mock-card .badge.b-cafe { background: rgba(151, 71, 255, 0.78); }
.mock-card .badge.b-shop { background: rgba(229, 53, 115, 0.78); }

.mock-card .title {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--on-surface);
  line-height: 1.3;
}

.mock-card .meta {
  font-size: 10px;
  font-weight: 500;
  color: var(--grey-1);
  line-height: 1.4;
}

.mock-line {
  height: 6px;
  border-radius: 999px;
  background: var(--surface-4);
}

.mock-line--mid { width: 70%; }
.mock-line--short { width: 40%; }

.mock-tab-bar {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 8px 10px;
  border-radius: 12px;
  background: var(--surface-container-low);
  border: 1px solid var(--divider);
}

.mock-tab-bar span {
  height: 6px;
  border-radius: 999px;
  background: var(--surface-3);
}

.mock-tab-bar span.active {
  background: var(--primary);
}

.mock-cta {
  margin-top: 4px;
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--on-primary);
  font-size: 11.5px;
  font-weight: 700;
  text-align: center;
}

.mock-grad {
  padding: 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, #3478F6 0%, #7B5CFF 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.mock-grad small {
  display: block;
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 600;
  opacity: 0.85;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Workflow ──────────────────────────────────────────────── */
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-2xl) var(--space-lg);
}

.workflow-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.workflow-phone { margin-bottom: var(--space-md); }

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--on-primary);
  font-weight: 800;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
}

.workflow-step strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--on-surface);
}

.workflow-step p {
  color: var(--grey-1);
  font-size: 13.5px;
  line-height: 1.6;
  max-width: 240px;
}

/* ── Showcase ──────────────────────────────────────────────── */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  align-items: end;
  gap: var(--space-xl) var(--space-md);
}

.showcase-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.showcase-item--lower { transform: translateY(20px); }
.showcase-item--raised { transform: translateY(-10px); }

@media (max-width: 720px) {
  .showcase-item--lower,
  .showcase-item--raised { transform: none; }
}

.showcase-caption {
  text-align: center;
}

.showcase-caption strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--on-surface);
}

.showcase-caption span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--grey-1);
}

/* ── Pricing ───────────────────────────────────────────────── */
/* Layout: Free / Monthly / Yearly on top row (3 cols), Day Pass spans full second row. */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-xl);
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--divider);
  box-shadow: var(--shadow-sm);
}

.pricing-card--pro {
  background: linear-gradient(170deg, #1B2D6E 0%, #1A1F35 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}

/* Free — muted neutral tone so the "no-charge" tier reads distinctly */
.pricing-card--free {
  background: linear-gradient(180deg, #FAFAFC 0%, #F4F5F8 100%);
  border-style: dashed;
  border-color: rgba(20, 20, 33, 0.14);
}

/* Day Pass — full-width row at the bottom, gold left rail via inset shadow
   (inset shadow respects the card's border-radius automatically — no overflow). */
.pricing-card--daypass {
  grid-column: 1 / -1;
  border-color: rgba(255, 159, 10, 0.32);
  box-shadow: inset 4px 0 0 0 #FF9F0A, var(--shadow-sm);
  padding-left: calc(var(--space-2xl) + 4px);
}

/* Day Pass — horizontal interior on desktop: left column = title/price/CTA,
   right column = feature list. Children are placed via grid-column. */
@media (min-width: 721px) {
  .pricing-card--daypass {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    grid-auto-rows: min-content;
    column-gap: var(--space-2xl);
    row-gap: 0;
    align-items: start;
  }
  .pricing-card--daypass > .pricing-list {
    grid-column: 2;
    grid-row: 1 / span 99;
    margin-top: 0;
    align-self: stretch;
  }
  .pricing-card--daypass > :not(.pricing-list) {
    grid-column: 1;
  }
  .pricing-card--daypass > .pricing-cta {
    margin-top: var(--space-lg);
  }
}

/* Monthly — subtle primary tint border to signal "standard paid plan" */
.pricing-card--monthly {
  border-color: rgba(52, 120, 246, 0.28);
  box-shadow: 0 1px 0 rgba(52, 120, 246, 0.06), var(--shadow-sm);
}

.pricing-badge {
  display: inline-block;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  background: var(--primary-tint);
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: fit-content;
}

/* Neutral badge for Free — no "paid plan" implication */
.pricing-badge--neutral {
  background: rgba(20, 20, 33, 0.08);
  color: var(--grey-1);
}

/* Day Pass badge — warm/gold "단기권" accent */
.pricing-badge--daypass {
  background: rgba(255, 159, 10, 0.16);
  color: #B7791F;
}

/* Monthly badge — primary tint, default styling already matches */
.pricing-badge--monthly {
  background: var(--primary-tint);
  color: var(--primary);
}

.pricing-card--pro .pricing-badge {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.pricing-card h3 {
  margin-top: var(--space-md);
  font-size: 22px;
  font-weight: 800;
  color: inherit;
}

.pricing-sub {
  margin-top: 6px;
  color: var(--grey-1);
  font-size: 14px;
  line-height: 1.6;
}

.pricing-card--pro .pricing-sub { color: rgba(255, 255, 255, 0.78); }

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: var(--space-lg) 0;
  flex-wrap: wrap;
}

.pricing-amount strong {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pricing-amount span {
  color: var(--grey-1);
  font-size: 13px;
  font-weight: 600;
}

.pricing-card--pro .pricing-amount span { color: rgba(255, 255, 255, 0.7); }

.pricing-amount .strike {
  text-decoration: line-through;
  opacity: 0.65;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: var(--space-md) 0 var(--space-xl);
}

.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.pricing-card--pro .pricing-list li b { color: #fff; }

.pricing-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--success-tint);
  color: var(--success-2);
  font-size: 11px;
  font-weight: 800;
  margin-top: 1px;
}

.pricing-card--pro .pricing-check {
  background: rgba(52, 199, 89, 0.22);
  color: #6FE38C;
}

.pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  background: var(--primary);
  color: var(--on-primary);
  transition: background 0.15s ease, transform 0.15s ease;
}

.pricing-cta:hover {
  background: var(--primary-dark);
  color: var(--on-primary);
}

.pricing-card--pro .pricing-cta {
  background: #fff;
  color: #1A1F35;
}

.pricing-card--pro .pricing-cta:hover {
  background: #f3f6ff;
  color: #1A1F35;
}

.pricing-note {
  margin-top: var(--space-sm);
  font-size: 12px;
  color: var(--grey-2);
  text-align: center;
}

.pricing-card--pro .pricing-note { color: rgba(255, 255, 255, 0.6); }

.pricing-disclaimer {
  margin-top: var(--space-xl);
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--grey-1);
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-disclaimer a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pricing-disclaimer a:hover { color: var(--primary-dark); }

/* ── Comparison table ──────────────────────────────────────── */
.comparison {
  margin-top: var(--space-3xl);
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--divider);
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
}

.comparison table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.comparison thead th {
  padding: 16px 20px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--grey-1);
  background: var(--surface-container-low);
  border-bottom: 1px solid var(--divider);
}

.comparison tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--divider);
  color: var(--on-surface);
}

.comparison tbody tr:last-child td { border-bottom: none; }

.comparison tbody td:first-child {
  font-weight: 600;
  color: var(--grey-1);
}

.comparison .cmp-pro-col {
  background: rgba(52, 120, 246, 0.05);
  color: var(--on-surface);
  font-weight: 600;
}

.comparison thead .cmp-pro-col {
  background: var(--primary-tint);
  color: var(--primary);
}

.cmp-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--success-tint);
  color: var(--success-2);
  font-weight: 800;
}

.cmp-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--surface-4);
  color: var(--grey-2);
  font-weight: 700;
}

/* ── Testimonials ──────────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--divider);
  box-shadow: var(--shadow-sm);
}

.testimonial-card .quote {
  color: var(--on-surface);
  font-size: 15px;
  line-height: 1.7;
}

.testimonial-card .meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testimonial-card .meta strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--on-surface);
}

.testimonial-card .meta span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--grey-1);
}

.avatar-stub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #7B5CFF 100%);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
}

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 760px;
  margin: var(--space-3xl) auto 0;
}

.faq-item {
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--divider);
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(52, 120, 246, 0.35);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 56px 18px 22px;
  position: relative;
  font-size: 15px;
  font-weight: 700;
  color: var(--on-surface);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--grey-1);
  border-bottom: 2px solid var(--grey-1);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}

.faq-item .faq-body {
  padding: 0 22px 20px;
  color: var(--grey-1);
  font-size: 14.5px;
  line-height: 1.7;
}

/* ── Final CTA ─────────────────────────────────────────────── */
.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3xl);
  padding: clamp(36px, 5vw, 64px);
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, #3478F6 0%, #1A5BC7 60%, #2C2C5C 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.final-cta-copy { max-width: 600px; }

.final-cta .cta-kicker {
  display: inline-block;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.final-cta h2 {
  margin-top: var(--space-md);
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
}

.final-cta p {
  margin-top: var(--space-md);
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.7;
}

.final-cta .store-actions { margin-top: var(--space-xl); }

.final-cta .store-button-light {
  background: #fff;
  color: #1C1C1E;
  border-color: transparent;
}

.final-cta-icon {
  width: clamp(96px, 12vw, 140px);
  height: auto;
  border-radius: 28px;
  box-shadow: var(--shadow-xl);
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .final-cta {
    flex-direction: column-reverse;
    text-align: center;
  }
  .final-cta .store-actions { justify-content: center; }
}

/* ── Marketing footer ──────────────────────────────────────── */
body footer.marketing-footer {
  width: 100%;
  margin-top: 0;
  padding: 0;
  background: #0F1421;
  border-top: none;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
}

.marketing-footer-inner {
  width: 100%;
  max-width: var(--landing-max);
  margin: 0 auto;
  padding: var(--space-3xl) var(--landing-px) var(--space-2xl);
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: var(--space-2xl);
}

.marketing-footer .brand-logo {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}

.marketing-footer-tag {
  margin-top: var(--space-md);
  color: rgba(255, 255, 255, 0.6);
  font-size: 13.5px;
  line-height: 1.7;
}

.marketing-footer h4 {
  margin-bottom: var(--space-md);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.marketing-footer ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.marketing-footer ul a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color 0.15s ease;
}

.marketing-footer ul a:hover { color: #fff; }

.marketing-footer-bottom {
  width: 100%;
  max-width: var(--landing-max);
  margin: 0 auto;
  padding: var(--space-md) var(--landing-px) var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.marketing-footer-bottom .legal-links {
  display: inline-flex;
  gap: var(--space-md);
}

.marketing-footer-bottom a:hover { color: #fff; }

@media (max-width: 720px) {
  .marketing-footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 460px) {
  .marketing-footer-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   Category ribbon
   ============================================================ */
.category-row {
  margin-top: var(--space-3xl);
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 12px;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 10px 16px;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.category-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.category-card .cat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.category-card strong {
  color: var(--on-surface);
  font-size: 14px;
  font-weight: 800;
}

.category-card span:not(.cat-icon) {
  color: var(--grey-1);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.45;
  word-break: keep-all;
}

@media (max-width: 1024px) {
  .category-row { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .category-row { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
  .category-card { padding: 14px 8px 12px; border-radius: 12px; }
  .category-card strong { font-size: 13px; }
  .category-card span:not(.cat-icon) { font-size: 10.5px; }
}

@media (max-width: 460px) {
  .category-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ============================================================
   App component blowups (PlanCard / PlaceCard / AI Plan / Record)
   ============================================================ */
.component-grid {
  margin-top: var(--space-3xl);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.comp-card {
  display: flex;
  flex-direction: column;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.comp-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 12px;
}

.comp-tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--primary-tint);
  color: var(--primary);
  font-weight: 700;
  letter-spacing: -0.1px;
}

.comp-tag--pro {
  background: linear-gradient(135deg, #2A2152 0%, #34225C 60%, #6A3FB8 100%);
  color: #fff;
}

.comp-meta {
  color: var(--grey-2);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Plan list card (실물 크기 복제) ── */
.plan-card-mock {
  display: flex;
  background: var(--surface-container-low);
  border: 1px solid var(--divider);
  border-radius: 14px;
  overflow: hidden;
}

.plan-card-strip {
  width: 5px;
  flex-shrink: 0;
}

.plan-card-body {
  flex: 1;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plan-card-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.plan-card-date {
  font-size: 13px;
  font-weight: 800;
  color: var(--on-surface);
}

.plan-card-time {
  color: var(--grey-1);
  font-size: 12px;
  font-weight: 600;
}

.plan-card-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--on-surface);
  line-height: 1.35;
  letter-spacing: -0.2px;
}

.plan-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  background: var(--surface-4);
  color: var(--grey-1);
  font-size: 11.5px;
  font-weight: 600;
}

.plan-card-foot {
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.avatar-stack-mini {
  display: inline-flex;
}

.avatar-stub-mini {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  border: 2px solid var(--surface);
}

.avatar-stub-mini + .avatar-stub-mini {
  margin-left: -8px;
}

.plan-card-dday {
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  background: var(--primary);
  color: var(--on-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* ── Place detail card ── */
.place-card-mock {
  padding: 14px;
  background: var(--surface-container-low);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.place-card-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.time-chip {
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--on-surface);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
}

.cat-badge--restaurant { background: rgba(255, 193, 7, 0.16); color: #B07A00; }
.cat-badge--cafe       { background: rgba(151, 71, 255, 0.14); color: #6A3FB8; }
.cat-badge--nature     { background: rgba(43, 186, 112, 0.14); color: #1F8A55; }
.cat-badge--culture    { background: rgba(43, 186, 112, 0.14); color: #1F8A55; }
.cat-badge--shopping   { background: rgba(229, 53, 115, 0.14); color: #B82758; }
.cat-badge--accommodation { background: rgba(214, 43, 43, 0.14); color: #A12020; }

.place-card-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--on-surface);
  letter-spacing: -0.2px;
}

.place-card-addr {
  color: var(--grey-1);
  font-size: 12.5px;
  font-weight: 500;
}

.place-card-memo {
  margin-top: 2px;
  padding: 10px 12px;
  background: var(--surface);
  border-radius: 10px;
  color: var(--on-surface);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

.place-card-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.photo-tile {
  height: 78px;
  border-radius: 10px;
}

.place-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.link-pill,
.walk-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11.5px;
  font-weight: 700;
}

.link-pill {
  background: var(--primary-tint);
  color: var(--primary);
}

.walk-pill {
  background: var(--surface-4);
  color: var(--grey-1);
}

/* ── AI plan timeline (Pro) ── */
.comp-card--ai .comp-card-head {
  margin-bottom: 14px;
}

.ai-plan-mock {
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(160deg, #182547 0%, #2A2152 60%, #34225C 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.ai-plan-mock::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70%;
  height: 140%;
  background: radial-gradient(closest-side, rgba(123, 92, 255, 0.4), transparent 70%);
  pointer-events: none;
}

.ai-plan-summary {
  position: relative;
  margin-bottom: 14px;
}

.ai-plan-summary strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.1px;
}

.ai-plan-summary span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.78;
}

.ai-plan-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ai-plan-list li {
  display: grid;
  grid-template-columns: 44px 22px 1fr;
  gap: 8px;
  align-items: center;
  position: relative;
}

.ai-plan-list li:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 64px;
  top: 28px;
  bottom: -16px;
  width: 1.5px;
  background: rgba(255, 255, 255, 0.18);
  z-index: 0;
}

.ai-time {
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.02em;
}

.ai-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  z-index: 1;
}

.ai-dot--restaurant { background: #FFC107; }
.ai-dot--cafe { background: #C49BFF; }
.ai-dot--shopping { background: #FF7AA9; }
.ai-dot--nature { background: #4FD68A; }

.ai-body strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.ai-body small {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 500;
  opacity: 0.72;
}

/* ── Record card (마스킹 테이프) ── */
.record-card-mock {
  position: relative;
  padding: 0;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--divider);
  overflow: hidden;
}

.record-card-mock .tape {
  position: absolute;
  z-index: 3;
  height: 22px;
  width: 76px;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  pointer-events: none;
}

.record-card-mock .tape-1 {
  top: -8px; left: 12px;
  background: rgba(200, 216, 240, 0.85);
  transform: rotate(-6deg);
}

.record-card-mock .tape-2 {
  top: -8px; right: 14px;
  background: rgba(208, 232, 228, 0.85);
  transform: rotate(5deg);
}

.record-photo {
  position: relative;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.record-emoji {
  font-size: 64px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.12));
}

.record-card-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.record-card-body h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--on-surface);
  letter-spacing: -0.2px;
}

.record-date {
  color: var(--grey-1);
  font-size: 12px;
  font-weight: 600;
}

.record-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 4px;
}

.record-tags .tag {
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
}

.record-tags .tag--nature  { background: rgba(43, 186, 112, 0.14); color: #1F8A55; }
.record-tags .tag--cafe    { background: rgba(151, 71, 255, 0.14); color: #6A3FB8; }
.record-tags .tag--culture { background: rgba(43, 186, 112, 0.14); color: #1F8A55; }

.record-foot {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.record-photo-count {
  color: var(--grey-2);
  font-size: 11.5px;
  font-weight: 600;
}

@media (max-width: 960px) {
  .component-grid { grid-template-columns: 1fr; }
}

/* ── Reveal animation (driven by marketing.js) ─────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   SVG icons — rendered as background-image (native fill color)
   더 안정적이고 캐싱 친화적. 아이콘은 원본 SVG 색(#1C274C 다크네이비)으로
   렌더되어 모든 라이트 톤 배경에서 충분한 대비 확보.
   ============================================================ */
.svg-ico {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}

.ico-marker      { background-image: url('/icons/marker_mini_solid.svg'); }
.ico-marker-mini { background-image: url('/icons/marker_mini.svg'); width: 12px; height: 12px; }
.ico-cal         { background-image: url('/icons/plan_calendar.svg'); }
.ico-route       { background-image: url('/icons/marker_on_map.svg'); }
.ico-gallery     { background-image: url('/icons/gallery.svg'); }
.ico-invite      { background-image: url('/icons/invite.svg'); }
.ico-meal        { background-image: url('/icons/restaurant.svg'); }
.ico-people      { background-image: url('/icons/invite.svg'); width: 12px; height: 12px; }
.ico-nature      { background-image: url('/icons/nature.svg'); width: 14px; height: 14px; }
.ico-cafe        { background-image: url('/icons/cafe.svg'); width: 14px; height: 14px; }
.ico-culture     { background-image: url('/icons/culture.svg'); width: 14px; height: 14px; }
.ico-restaurant  { background-image: url('/icons/restaurant.svg'); width: 14px; height: 14px; }
.ico-link        { background-image: url('/icons/link.svg'); width: 12px; height: 12px; }

/* ============================================================
   Hero highlights — Squircle cards with colored icons
   ============================================================ */
.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-highlights span:not(.svg-ico):not(.hl-ic) {
  /* legacy reset: any plain <span> children fall through to .hl-card text */
}

.hl-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px 9px 9px;
  border-radius: 16px; /* squircle-ish */
  background: var(--surface);
  border: 1px solid var(--divider);
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  font-weight: 700;
  color: var(--on-surface);
  letter-spacing: -0.1px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.hl-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hl-card .hl-ic {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hl-card .hl-ic .svg-ico,
.hl-card .hl-ic img { width: 18px; height: 18px; display: block; }

.hl-card--blue   .hl-ic { background: rgba(52, 120, 246, 0.16); }
.hl-card--green  .hl-ic { background: rgba(43, 186, 112, 0.16); }
.hl-card--pink   .hl-ic { background: rgba(229, 53, 115, 0.16); }
.hl-card--yellow .hl-ic { background: rgba(255, 159, 10, 0.20); }
.hl-card--purple .hl-ic { background: rgba(151, 71, 255, 0.16); }

/* ============================================================
   Features — colorize ALL feature icons consistently
   ============================================================ */
.feature-card {
  border-radius: 22px; /* squircle */
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px; /* squircle */
}

.feature-icon--blue   { background: rgba(52, 120, 246, 0.16); }
.feature-icon--green  { background: rgba(43, 186, 112, 0.16); }
.feature-icon--pink   { background: rgba(229, 53, 115, 0.16); }
.feature-icon--yellow { background: rgba(255, 159, 10, 0.20); }

.feature-icon .svg-ico,
.feature-icon img {
  width: 28px;
  height: 28px;
  display: block;
}

/* ============================================================
   Problem / Solution v2 — emoji bubbles + alokdalok cards
   ============================================================ */
.ps-grid--v2 {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: stretch;
}

.ps-grid--v2 .ps-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ps-column-tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.1px;
  margin-bottom: 4px;
}

.ps-column-tag--problem { background: rgba(255, 59, 48, 0.10); color: #C92F25; }
.ps-column-tag--solution { background: var(--primary-tint); color: var(--primary); }

.ps-grid--v2 .ps-card {
  position: relative;
  padding: 22px 22px 20px;
  border-radius: 22px; /* squircle */
  background: var(--surface);
  border: 1px solid transparent;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.ps-grid--v2 .ps-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px; /* squircle */
  font-size: 28px;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(20, 20, 33, 0.06);
}

.ps-grid--v2 .ps-card strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--on-surface);
  letter-spacing: -0.2px;
  margin-bottom: 8px;
  line-height: 1.4;
}

.ps-grid--v2 .ps-card p {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-1);
  line-height: 1.65;
  letter-spacing: -0.1px;
}

/* Problem cards — warm pastel tones */
.ps-card--c1 { background: linear-gradient(160deg, #FFF5DA 0%, #FFFAEB 100%); }
.ps-card--c1 .ps-emoji { background: #FFE08A; }
.ps-card--c2 { background: linear-gradient(160deg, #FFE5E8 0%, #FFF1F2 100%); }
.ps-card--c2 .ps-emoji { background: #FFB6BD; }
.ps-card--c3 { background: linear-gradient(160deg, #ECE7FA 0%, #F3F0FB 100%); }
.ps-card--c3 .ps-emoji { background: #C9BAF5; }

/* Solution cards — cool pastel tones */
.ps-card--s1 { background: linear-gradient(160deg, #E0EBFF 0%, #EFF4FF 100%); }
.ps-card--s1 .ps-emoji { background: #A8C5FA; }
.ps-card--s2 { background: linear-gradient(160deg, #DDF3E7 0%, #ECF8F0 100%); }
.ps-card--s2 .ps-emoji { background: #98E1B7; }
.ps-card--s3 { background: linear-gradient(160deg, #FCE2EB 0%, #FCEFF4 100%); }
.ps-card--s3 .ps-emoji { background: #F4B0C7; }

.ps-grid--v2 .ps-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ps-grid--v2 .ps-arrow-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 22px; /* squircle */
  background: linear-gradient(135deg, #FFD56B 0%, #FFA94B 100%);
  font-size: 30px;
  box-shadow: 0 10px 22px rgba(255, 169, 75, 0.35);
}

@media (max-width: 960px) {
  .ps-grid--v2 { grid-template-columns: 1fr; gap: 14px; }
  .ps-grid--v2 .ps-arrow { margin: 6px 0; }
  .ps-grid--v2 .ps-arrow-emoji { width: 52px; height: 52px; transform: rotate(90deg); }
}

/* ============================================================
   App components — 3 columns 2 rows (6 cards) + new mocks
   ============================================================ */
.component-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1024px) {
  .component-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .component-grid { grid-template-columns: 1fr; }
}

.comp-card { border-radius: 20px; /* squircle */ }

.comp-tag--map {
  background: linear-gradient(135deg, rgba(43, 186, 112, 0.16), rgba(52, 120, 246, 0.16));
  color: #1F7A55;
}

.comp-tag--meal {
  background: linear-gradient(135deg, #FFE08A, #FFB66B);
  color: #8C4A0F;
}

/* ── Map preview ── */
.map-mock {
  position: relative;
  height: 220px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 18% 80%, rgba(52, 199, 89, 0.18), transparent 45%),
    radial-gradient(circle at 75% 25%, rgba(52, 120, 246, 0.18), transparent 50%),
    linear-gradient(135deg, #F1F8F2 0%, #E8EFF7 100%);
  overflow: hidden;
}

.map-mock::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(20, 20, 33, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(20, 20, 33, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.7;
}

.map-route {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  color: var(--c, var(--primary));
  border: 2.5px solid var(--c, var(--primary));
}

.map-summary {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  background: var(--surface-container-low);
  border-radius: 14px;
}

.map-summary strong { font-weight: 800; color: var(--on-surface); font-size: 14px; }
.map-summary span { color: var(--grey-1); font-size: 12px; font-weight: 600; }

/* ── Meal recommendation ── */
.meal-mock {
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(160deg, #FFF8E8 0%, #FFFCF6 100%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.meal-input {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.m-chip {
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--on-surface);
  font-size: 11.5px;
  font-weight: 700;
  box-shadow: 0 1px 3px rgba(20, 20, 33, 0.04);
}

.meal-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.meal-thumb {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.meal-body strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--on-surface);
  letter-spacing: -0.2px;
}

.meal-body span {
  display: block;
  margin-top: 2px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--grey-1);
}

/* ============================================================
   App component blowups — match the actual Flutter widgets
   1:1 reproductions of PlanListCard, PlanPlaceCard, MapPreview,
   MealRecommendationResultCard, AiQuickActionCard, PolaroidRecordCard.
   ============================================================ */

/* Common card head tweaks */
.comp-card { padding: 18px 18px 22px; }

/* ── 1. PlanListCard (real reproduction) ─────────────────── */
.rpc {
  display: flex;
  align-items: stretch;
  gap: 16px;
  padding: 14px 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.rpc-date {
  width: 56px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding-top: 2px;
}

.rpc-ym {
  font-size: 12px;
  font-weight: 600;
  color: var(--grey-2);
  letter-spacing: -0.15px;
}

.rpc-day {
  font-size: 22px;
  font-weight: 800;
  color: var(--on-surface);
  line-height: 1.2;
  letter-spacing: -0.4px;
  margin-top: 2px;
}

.rpc-dow {
  font-size: 12px;
  font-weight: 600;
  color: var(--on-surface);
  letter-spacing: -0.15px;
}

.rpc-dday {
  margin-top: 10px;
  padding: 1px 6px;
  border-radius: 6px;
  background: var(--surface-4);
  color: var(--grey-2);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.15px;
}

.rpc-divider {
  width: 1px;
  background: var(--divider);
  flex-shrink: 0;
  margin: 4px 0;
}

.rpc-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rpc-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--on-surface);
  letter-spacing: -0.2px;
  line-height: 1.43;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rpc-places {
  font-size: 12px;
  font-weight: 400;
  color: var(--grey-1);
  letter-spacing: -0.15px;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rpc-dots {
  display: flex;
  gap: 4px;
  padding: 0 2px;
}

.rpc-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.rpc-shared {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.rpc-shared-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--grey-1);
  letter-spacing: -0.1px;
}

/* ── 2. PlanPlace card (RecordDetailPlaceCard 톤 + photos) ── */
.rpl {
  padding: 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rpl-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rpl-cat {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rpl-cat-ico {
  width: 24px !important;
  height: 24px !important;
}

.rpl-body {
  flex: 1;
  min-width: 0;
}

.rpl-body h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--on-surface);
  letter-spacing: -0.2px;
  margin: 0 0 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rpl-body p {
  font-size: 11px;
  font-weight: 400;
  color: var(--grey-2);
  letter-spacing: -0.1px;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rpl-mapbtn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--surface-4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rpl-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rpl-time {
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--on-surface);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.rpl-walk {
  font-size: 12px;
  font-weight: 600;
  color: var(--grey-1);
}

.rpl-memo {
  margin: 0;
  padding: 10px 12px;
  background: var(--surface-container);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--on-surface);
  line-height: 1.55;
  letter-spacing: -0.2px;
}

.rpl-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.rpl-photo {
  height: 76px;
  border-radius: 10px;
}

/* ── 4. MealRecommendationResultCard ─────────────────────── */
.rmc {
  padding: 14px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 4px rgba(20, 20, 33, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rmc-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rmc-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 122, 89, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rmc-head h3 {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  color: var(--on-surface);
  letter-spacing: -0.2px;
  margin: 0;
}

.rmc-status {
  padding: 2px 6px;
  border-radius: 4px;
  background: #E8F5E9;
  color: #4CAF50;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
}

.rmc-time {
  font-size: 11px;
  font-weight: 400;
  color: var(--grey-2);
  letter-spacing: -0.1px;
}

.rmc-summary {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  color: var(--grey-1);
  letter-spacing: -0.2px;
  line-height: 1.54;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rmc-cuisines {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.rmc-chip {
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(255, 122, 89, 0.10);
  color: #FF7A59;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
}

/* ── 5. AiQuickActionCard ────────────────────────────────── */
.rai {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 4px rgba(20, 20, 33, 0.06);
}

.rai-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(151, 71, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 26px;
  line-height: 1;
}

.rai-body {
  flex: 1;
  min-width: 0;
}

.rai-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rai-head h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--on-surface);
  letter-spacing: -0.2px;
  margin: 0;
}

.rai-quota {
  padding: 2px 8px;
  border-radius: 8px;
  background: var(--primary-tint);
  color: var(--primary);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: -0.1px;
}

.rai-body p {
  margin: 4px 0 0;
  font-size: 12px;
  font-weight: 400;
  color: var(--grey-2);
  letter-spacing: -0.15px;
  line-height: 1.5;
}

.rai-chevron {
  font-size: 22px;
  font-weight: 300;
  color: var(--grey-3);
  flex-shrink: 0;
  line-height: 1;
}

/* ── 6. PolaroidRecordCard ───────────────────────────────── */
.polaroid-wrap {
  display: flex;
  justify-content: center;
  padding: 16px 8px 8px;
}

.polaroid {
  position: relative;
  width: 100%;
  max-width: 280px;
  background: #fff;
  border-radius: 4px;
  padding: 12px 12px 0;
  box-shadow:
    0 12px 24px rgba(20, 20, 33, 0.10),
    0 2px 4px rgba(20, 20, 33, 0.06);
  transform: rotate(-1deg);
}

.polaroid-tape {
  position: absolute;
  width: 76px;
  height: 22px;
  top: 0;
  z-index: 3;
  border-radius: 1px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  pointer-events: none;
}

.polaroid-tape-1 {
  left: 18px;
  background: rgba(200, 216, 240, 0.85);
  transform: translateY(-50%) rotate(-15deg);
}

.polaroid-tape-2 {
  right: 16px;
  background: rgba(208, 232, 228, 0.85);
  transform: translateY(-50%) rotate(28deg);
  width: 70px;
  height: 24px;
}

.polaroid-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.polaroid-emoji {
  font-size: 56px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.10));
}

.polaroid-body {
  padding: 12px 2px 18px;
}

.polaroid-body h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--on-surface);
  letter-spacing: -0.2px;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.polaroid-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
}

.polaroid-meta span {
  font-size: 11px;
  font-weight: 400;
  color: var(--grey-2);
  letter-spacing: -0.1px;
}

.polaroid-course {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
}

.course-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 6px;
  border-radius: 4px;
  background: var(--surface-4);
  border: 1px solid var(--line-4);
  color: var(--grey-1);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
}

.course-ico {
  width: 14px !important;
  height: 14px !important;
}

.course-arrow {
  color: var(--grey-3);
  font-size: 13px;
  font-weight: 600;
}

.polaroid-divider {
  display: block;
  height: 1px;
  background: var(--divider);
  margin: 16px 0 12px;
}

.polaroid-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.polaroid-author-name {
  flex: 1;
  font-size: 11px;
  font-weight: 400;
  color: var(--grey-1);
  letter-spacing: -0.1px;
}

.polaroid-tagged {
  margin-left: auto;
}

/* ============================================================
   App components — themed gradient backgrounds + corner blobs
   "흰색 위 흰색" 문제 해결 + 그라데이션 적극 사용
   ============================================================ */

/* 섹션 자체에 부드러운 그라데이션 깔아 카드와 대비 강화 */
.landing-section--components {
  background:
    radial-gradient(ellipse at top right, rgba(151, 71, 255, 0.06), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(52, 120, 246, 0.06), transparent 50%),
    linear-gradient(180deg, #F0F2F8 0%, #F7F8FB 50%, #FBFBFD 100%);
}

/* comp-card: 공통 — relative + overflow hidden + 보더 살짝 강화 */
.comp-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 20, 33, 0.06);
  box-shadow:
    0 1px 3px rgba(20, 20, 33, 0.04),
    0 8px 24px rgba(20, 20, 33, 0.04);
}

.comp-card > * { position: relative; z-index: 1; }

/* 1. Plan — 블루 그라데이션 */
.comp-card--plan {
  background: linear-gradient(160deg, #ECF2FE 0%, #F8FBFF 55%, #FFFFFF 100%);
  border-color: rgba(52, 120, 246, 0.18);
}
.comp-card--plan::before {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  top: -90px;
  right: -90px;
  background: radial-gradient(circle, rgba(52, 120, 246, 0.22), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* 2. Place — 그린 그라데이션 */
.comp-card--place {
  background: linear-gradient(160deg, #ECF7EF 0%, #F8FCF9 55%, #FFFFFF 100%);
  border-color: rgba(43, 186, 112, 0.20);
}
.comp-card--place::before {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  top: -90px;
  right: -90px;
  background: radial-gradient(circle, rgba(43, 186, 112, 0.22), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* 3. Map — 티얼-블루 믹스 */
.comp-card--map {
  background: linear-gradient(160deg, #E8F3EF 0%, #EDF3FA 55%, #FFFFFF 100%);
  border-color: rgba(43, 186, 112, 0.18);
}
.comp-card--map::before {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  top: -100px;
  right: -100px;
  background:
    radial-gradient(circle at 60% 40%, rgba(52, 120, 246, 0.24), transparent 70%),
    radial-gradient(circle at 30% 70%, rgba(43, 186, 112, 0.18), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* 4. Meal — 코랄 오렌지 그라데이션 */
.comp-card--meal {
  background: linear-gradient(160deg, #FFEFE3 0%, #FFF9F2 55%, #FFFFFF 100%);
  border-color: rgba(255, 122, 89, 0.22);
}
.comp-card--meal::before {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  top: -90px;
  right: -90px;
  background:
    radial-gradient(circle, rgba(255, 122, 89, 0.26), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* 5. AI — 보라 풀 그라데이션 (Pro 톤 강하게) */
.comp-card--ai {
  background:
    radial-gradient(circle at 80% 0%, rgba(151, 71, 255, 0.45), transparent 60%),
    radial-gradient(circle at 10% 100%, rgba(52, 120, 246, 0.30), transparent 60%),
    linear-gradient(160deg, #1A1240 0%, #2A1B5C 50%, #4F2D8A 100%);
  border-color: rgba(151, 71, 255, 0.30);
  color: #fff;
}
.comp-card--ai::before { display: none; }
.comp-card--ai .comp-tag--pro {
  background: linear-gradient(135deg, #C49BFF, #7B5CFF);
  color: #fff;
  box-shadow: 0 4px 12px rgba(123, 92, 255, 0.35);
}
.comp-card--ai .comp-meta { color: rgba(255, 255, 255, 0.5); }
.comp-card--ai .rai {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.20);
}
.comp-card--ai .rai-icon {
  background: linear-gradient(135deg, #C49BFF 0%, #7B5CFF 100%);
  box-shadow: 0 8px 22px rgba(123, 92, 255, 0.45);
  color: #fff;
}
.comp-card--ai .rai-head h3 { color: #fff; }
.comp-card--ai .rai-quota {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.comp-card--ai .rai-body p { color: rgba(255, 255, 255, 0.70); }
.comp-card--ai .rai-chevron { color: rgba(255, 255, 255, 0.50); }

/* 6. Record — 쿨 라일락 그라데이션 */
.comp-card--record {
  background: linear-gradient(160deg, #EAEDF6 0%, #F3F5FB 55%, #FFFFFF 100%);
  border-color: rgba(123, 92, 255, 0.15);
}
.comp-card--record::before {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  top: -90px;
  right: -90px;
  background:
    radial-gradient(circle at 60% 40%, rgba(123, 92, 255, 0.20), transparent 70%),
    radial-gradient(circle at 30% 70%, rgba(229, 53, 115, 0.14), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* ── 칩/뱃지 그라데이션 강화 ──────────────────────────── */

/* comp-tag 더 다채롭게 */
.comp-tag {
  background: linear-gradient(135deg, #DCE8FF 0%, #EAF1FF 100%);
  color: var(--primary);
  font-weight: 800;
}
.comp-card--place .comp-tag {
  background: linear-gradient(135deg, #DBF0E2 0%, #EBF7EE 100%);
  color: #1F8A55;
}
.comp-tag--map {
  background: linear-gradient(135deg, #DBF0E2 0%, #DEEBFB 100%);
  color: #1F7A55;
}
.comp-tag--meal {
  background: linear-gradient(135deg, #FFD089 0%, #FFB66B 100%);
  color: #8C4A0F;
  box-shadow: 0 2px 8px rgba(255, 169, 75, 0.30);
}
.comp-card--record .comp-tag {
  background: linear-gradient(135deg, #E2DCFB 0%, #ECE7FB 100%);
  color: #6A3FB8;
}

/* Plan dots — solid → 살짝 raised */
.rpc-dots .dot {
  box-shadow: 0 1px 2px rgba(20, 20, 33, 0.10);
}

/* DDay 뱃지 — primary 그라데이션 (강조) */
.rpc-dday {
  background: linear-gradient(135deg, #5B9CF6, #3478F6);
  color: #fff;
  box-shadow: 0 2px 6px rgba(52, 120, 246, 0.30);
}

/* 시간 chip — 검정 → 그라데이션 */
.rpl-time {
  background: linear-gradient(135deg, #2C2C2E 0%, #1C1C1E 100%);
  box-shadow: 0 2px 6px rgba(20, 20, 33, 0.20);
}

/* Place 카테고리 — solid → 그라데이션 */
.rpl-cat {
  background: linear-gradient(135deg, rgba(43, 186, 112, 0.20), rgba(43, 186, 112, 0.08)) !important;
  box-shadow: inset 0 0 0 1px rgba(43, 186, 112, 0.15);
}

/* Meal 헤더 아이콘 — 그라데이션 */
.rmc-icon {
  background: linear-gradient(135deg, rgba(255, 122, 89, 0.22), rgba(255, 122, 89, 0.08)) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 122, 89, 0.18);
}

/* Meal 상태 뱃지 — 그라데이션 */
.rmc-status {
  background: linear-gradient(135deg, #C9F4D0 0%, #E8F5E9 100%);
  color: #2E7D32;
}

/* Cuisine chips — 그라데이션 */
.rmc-chip {
  background: linear-gradient(135deg, rgba(255, 122, 89, 0.18), rgba(255, 122, 89, 0.06));
  color: #C8511E;
}

/* Course chip on polaroid — 그라데이션 */
.course-chip {
  background: linear-gradient(135deg, #F2F2F7 0%, #FAFAFC 100%);
}

/* Avatar stub mini — 더 진한 그림자로 살아남게 */
.avatar-stub-mini {
  box-shadow: 0 1px 3px rgba(20, 20, 33, 0.18);
}

/* 폴라로이드 그림자 강화로 라일락 배경에서 떠오르게 */
.polaroid {
  box-shadow:
    0 14px 28px rgba(20, 20, 33, 0.12),
    0 4px 8px rgba(20, 20, 33, 0.08);
}

/* Section heading h2 — 그라데이션 텍스트 */
.landing-section--components h2 {
  background: linear-gradient(135deg, #1C1C1E 0%, #1C1C1E 60%, #4F2D8A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   Hero chip icons — 큼직한 squircle + 카드 컬러로 칠해진 mask 글리프
   ============================================================ */
.hl-card {
  padding: 10px 18px 10px 10px !important;
  gap: 12px !important;
  border-radius: 20px !important;
}

.hl-card .hl-ic {
  width: 48px !important;
  height: 48px !important;
  border-radius: 14px !important;
  position: relative;
}

.hl-card .hl-ic::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

.hl-card .hl-ic .svg-ico,
.hl-card .hl-ic img {
  width: 28px !important;
  height: 28px !important;
  display: block !important;
}

.hl-card .hl-glyph {
  width: 30px;
  height: 30px;
  display: block;
  background: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.hl-glyph--cal     { -webkit-mask-image: url('/icons/calendar.svg'); mask-image: url('/icons/calendar.svg'); }
.hl-glyph--route   { -webkit-mask-image: url('/icons/mini_map.svg'); mask-image: url('/icons/mini_map.svg'); }
.hl-glyph--gallery { -webkit-mask-image: url('/icons/gallery.svg'); mask-image: url('/icons/gallery.svg'); }
.hl-glyph--invite  { -webkit-mask-image: url('/icons/add_friend.svg'); mask-image: url('/icons/add_friend.svg'); }
.hl-glyph--meal    { -webkit-mask-image: url('/icons/utensils_crossed.svg'); mask-image: url('/icons/utensils_crossed.svg'); }

/* 카드 톤: 배경은 그라데이션, 글리프는 카드 컬러로 칠함 */
.hl-card--blue   .hl-ic { background: linear-gradient(135deg, rgba(52, 120, 246, 0.32), rgba(52, 120, 246, 0.12)) !important; color: #3478F6; }
.hl-card--green  .hl-ic { background: linear-gradient(135deg, rgba(43, 186, 112, 0.32), rgba(43, 186, 112, 0.12)) !important; color: #2BBA70; }
.hl-card--pink   .hl-ic { background: linear-gradient(135deg, rgba(229, 53, 115, 0.32), rgba(229, 53, 115, 0.12)) !important; color: #E53573; }
.hl-card--yellow .hl-ic { background: linear-gradient(135deg, rgba(255, 159, 10, 0.36), rgba(255, 159, 10, 0.14)) !important; color: #FF9F0A; }
.hl-card--purple .hl-ic { background: linear-gradient(135deg, rgba(151, 71, 255, 0.32), rgba(151, 71, 255, 0.12)) !important; color: #9747FF; }

/* ============================================================
   FIX: Features icons — gradient bg + 더 크게 + 그림자
   ============================================================ */
.feature-icon {
  width: 64px !important;
  height: 64px !important;
  border-radius: 20px !important; /* squircle */
  position: relative;
  overflow: hidden;
}

.feature-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.40);
  pointer-events: none;
}

.feature-icon--blue {
  background: linear-gradient(135deg, rgba(52, 120, 246, 0.30) 0%, rgba(123, 92, 255, 0.18) 100%) !important;
  box-shadow: 0 8px 22px rgba(52, 120, 246, 0.18);
}
.feature-icon--green {
  background: linear-gradient(135deg, rgba(52, 199, 89, 0.30) 0%, rgba(43, 186, 112, 0.18) 100%) !important;
  box-shadow: 0 8px 22px rgba(43, 186, 112, 0.18);
}
.feature-icon--pink {
  background: linear-gradient(135deg, rgba(229, 53, 115, 0.30) 0%, rgba(255, 122, 89, 0.18) 100%) !important;
  box-shadow: 0 8px 22px rgba(229, 53, 115, 0.18);
}
.feature-icon--yellow {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.36) 0%, rgba(255, 122, 89, 0.18) 100%) !important;
  box-shadow: 0 8px 22px rgba(255, 159, 10, 0.20);
}

.feature-icon .svg-ico,
.feature-icon img {
  width: 32px !important;
  height: 32px !important;
  display: block !important;
  position: relative;
  z-index: 1;
}

/* ============================================================
   Workflow — 풀 리디자인 (4 단계 카드, 풍부한 시각화)
   ============================================================ */
.workflow-grid {
  margin-top: var(--space-3xl);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.wf-step {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--divider);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(20, 20, 33, 0.05);
  transition: transform 0.20s ease, box-shadow 0.20s ease;
}

.wf-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(20, 20, 33, 0.08);
}

.wf-visual {
  height: 240px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* 각 step 그라데이션 배경 */
.wf-step--cal .wf-visual {
  background:
    radial-gradient(circle at 80% 20%, rgba(52, 120, 246, 0.16), transparent 60%),
    linear-gradient(160deg, #ECF2FE 0%, #F8FBFF 100%);
}
.wf-step--places .wf-visual {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 159, 10, 0.16), transparent 60%),
    linear-gradient(160deg, #FFF1E5 0%, #FFFAF3 100%);
}
.wf-step--friends .wf-visual {
  background:
    radial-gradient(circle at 80% 20%, rgba(43, 186, 112, 0.16), transparent 60%),
    linear-gradient(160deg, #ECF7EF 0%, #F8FCF9 100%);
}
.wf-step--record .wf-visual {
  background:
    radial-gradient(circle at 80% 20%, rgba(123, 92, 255, 0.16), transparent 60%),
    linear-gradient(160deg, #ECEFF7 0%, #F6F8FC 100%);
}

/* ── Step 1 Calendar ── */
.wf-cal {
  width: 100%;
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 4px 14px rgba(20, 20, 33, 0.06);
}
.wf-cal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--on-surface);
  margin-bottom: 10px;
}
.wf-cal-nav {
  font-size: 13px;
  color: var(--grey-2);
  letter-spacing: 4px;
}
.wf-cal-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  font-size: 9px;
  font-weight: 700;
  color: var(--grey-2);
  text-align: center;
  margin-bottom: 4px;
}
.wf-cal-week .hol { color: var(--error); }
.wf-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  font-size: 10px;
  font-weight: 600;
  color: var(--on-surface);
  text-align: center;
}
.wf-cal-grid span {
  padding: 5px 0;
  border-radius: 50%;
  position: relative;
}
.wf-cal-grid .dim { color: var(--grey-3); }
.wf-cal-grid .hol { color: var(--error); }
.wf-cal-grid .picked {
  background: linear-gradient(135deg, #5B9CF6, #3478F6);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 2px 6px rgba(52, 120, 246, 0.40);
}
.wf-cal-grid .dot::after {
  content: '';
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
}

/* ── Step 2 Places ── */
.wf-place-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wf-place-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px 9px 9px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(20, 20, 33, 0.05);
}
.wf-cat {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wf-cat img { display: block; }
.wf-place-body {
  flex: 1;
  min-width: 0;
}
.wf-place-body strong {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--on-surface);
  letter-spacing: -0.2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wf-place-body span {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: var(--grey-2);
}
.wf-time-badge {
  padding: 3px 7px;
  border-radius: 999px;
  background: var(--surface-4);
  color: var(--grey-1);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.wf-add {
  margin-top: 4px;
  padding: 9px;
  text-align: center;
  font-size: 11.5px;
  font-weight: 800;
  color: var(--primary);
  background: rgba(52, 120, 246, 0.06);
  border: 1.5px dashed rgba(52, 120, 246, 0.40);
  border-radius: 10px;
  cursor: default;
}

/* ── Step 3 Friends ── */
.wf-friend-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wf-friend {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(20, 20, 33, 0.05);
}
.wf-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.4px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(20, 20, 33, 0.15);
}
.wf-friend-body {
  flex: 1;
  min-width: 0;
}
.wf-friend-body strong {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--on-surface);
  letter-spacing: -0.2px;
}
.wf-friend-body span {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: var(--grey-2);
}
.wf-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--surface-3);
  position: relative;
  flex-shrink: 0;
  border: 1.5px solid var(--line-4);
}
.wf-check.on {
  background: linear-gradient(135deg, #5B9CF6, #3478F6);
  border-color: var(--primary);
  box-shadow: 0 2px 6px rgba(52, 120, 246, 0.30);
}
.wf-check.on::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -65%) rotate(-45deg);
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.wf-cta {
  margin-top: 6px;
  padding: 11px;
  background: linear-gradient(135deg, #3478F6 0%, #1A5BC7 100%);
  color: #fff;
  border-radius: 12px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.1px;
  border: none;
  cursor: default;
  box-shadow: 0 6px 14px rgba(52, 120, 246, 0.25);
}

/* ── Step 4 Polaroid ── */
.wf-polaroid-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.wf-polaroid {
  position: relative;
  width: 150px;
  background: #fff;
  border-radius: 4px;
  padding: 10px 10px 0;
  box-shadow:
    0 12px 24px rgba(20, 20, 33, 0.12),
    0 2px 4px rgba(20, 20, 33, 0.06);
  transform: rotate(-2deg);
  z-index: 2;
}
.wf-polaroid--back {
  position: absolute;
  width: 130px;
  top: 22px;
  right: 28%;
  padding: 8px;
  transform: rotate(8deg);
  z-index: 1;
  opacity: 0.8;
}
.wf-polaroid-tape {
  position: absolute;
  width: 64px;
  height: 18px;
  top: -8px;
  z-index: 3;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  pointer-events: none;
}
.wf-polaroid-tape-1 {
  left: 14px;
  background: rgba(200, 216, 240, 0.85);
  transform: rotate(-12deg);
}
.wf-polaroid-tape-2 {
  right: 12px;
  background: rgba(208, 232, 228, 0.85);
  transform: rotate(18deg);
  width: 56px;
  height: 18px;
}
.wf-polaroid-photo {
  aspect-ratio: 1 / 1;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.10));
  overflow: hidden;
}
.wf-polaroid-body {
  padding: 8px 2px 12px;
}
.wf-polaroid-body strong {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: var(--on-surface);
  letter-spacing: -0.2px;
  margin-bottom: 2px;
}
.wf-polaroid-body span {
  display: block;
  font-size: 9px;
  font-weight: 500;
  color: var(--grey-2);
}

/* ── Step meta (공통) ── */
.wf-meta {
  padding: 18px 22px 24px;
  position: relative;
}
.wf-meta .step-num {
  position: relative;
  display: inline-flex;
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  border-radius: 11px;
  background: linear-gradient(135deg, #5B9CF6, #3478F6);
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.2px;
  box-shadow: 0 6px 16px rgba(52, 120, 246, 0.30);
}
.wf-step--places .wf-meta .step-num { background: linear-gradient(135deg, #FFC107, #FF9F0A); box-shadow: 0 6px 16px rgba(255, 159, 10, 0.30); }
.wf-step--friends .wf-meta .step-num { background: linear-gradient(135deg, #34C759, #2BBA70); box-shadow: 0 6px 16px rgba(43, 186, 112, 0.30); }
.wf-step--record .wf-meta .step-num { background: linear-gradient(135deg, #C49BFF, #7B5CFF); box-shadow: 0 6px 16px rgba(123, 92, 255, 0.30); }

.wf-meta h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
  color: var(--on-surface);
  letter-spacing: -0.3px;
  line-height: 1.35;
}
.wf-meta p {
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-1);
  line-height: 1.65;
  letter-spacing: -0.1px;
}

@media (max-width: 1024px) {
  .workflow-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
}

@media (max-width: 640px) {
  .workflow-grid { grid-template-columns: 1fr; }
  .wf-visual { height: auto; min-height: 220px; padding: 22px 18px; }
}

/* ============================================================
   Home / Hero — modern polish (2026-05)
   배경 mesh, kicker pill, em 그라데이션, mockup·floater 깊이감,
   하이라이트 칩 hover/그림자 정돈
   ============================================================ */
.landing-hero {
  position: relative;
  isolation: isolate;
}

.landing-hero::before,
.landing-hero::after {
  content: '';
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.85;
}

.landing-hero::before {
  top: -8%;
  right: -6%;
  width: min(620px, 62%);
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(closest-side, rgba(123, 92, 255, 0.22), transparent 70%),
    radial-gradient(closest-side at 70% 70%, rgba(52, 120, 246, 0.20), transparent 70%);
}

.landing-hero::after {
  bottom: -18%;
  left: -8%;
  width: min(420px, 50%);
  aspect-ratio: 1 / 1;
  background: radial-gradient(closest-side, rgba(52, 199, 89, 0.14), transparent 70%);
}

/* Kicker — frosted gradient pill */
.hero-kicker {
  background: linear-gradient(135deg, rgba(52, 120, 246, 0.16), rgba(123, 92, 255, 0.14)) !important;
  border: 1px solid rgba(52, 120, 246, 0.22);
  box-shadow: 0 4px 14px rgba(52, 120, 246, 0.10);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 7px 14px 7px 10px !important;
}

/* Headline — 정밀 spacing + 더 풍부한 그라데이션 */
.landing-hero h1 {
  letter-spacing: -0.028em !important;
  line-height: 1.12 !important;
}

.landing-hero h1 em {
  background: linear-gradient(120deg, #3478F6 0%, #5B6CFF 45%, #9747FF 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
}

.hero-lead {
  font-size: 16.5px;
  letter-spacing: -0.1px;
}

/* Mockup — 더 깊은 그림자 (드롭+로컬) */
.hero-mockup {
  filter:
    drop-shadow(0 32px 48px rgba(20, 20, 33, 0.18))
    drop-shadow(0 8px 16px rgba(20, 20, 33, 0.08));
}

/* Hero floater — glassy 카드 */
.hero-floater {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(20, 20, 33, 0.06);
  box-shadow:
    0 12px 28px rgba(20, 20, 33, 0.10),
    0 2px 6px rgba(20, 20, 33, 0.06);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  backdrop-filter: blur(14px) saturate(120%);
}

.hero-floater .dot {
  width: 36px;
  height: 36px;
}

/* HL-card — 모던 깊이감 + hover lift */
.hl-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFD 100%) !important;
  border: 1px solid rgba(20, 20, 33, 0.06) !important;
  box-shadow:
    0 1px 2px rgba(20, 20, 33, 0.04),
    0 8px 22px rgba(20, 20, 33, 0.05) !important;
  transition:
    transform 0.22s cubic-bezier(.4, .2, .2, 1),
    box-shadow 0.22s ease,
    border-color 0.22s ease !important;
}

.hl-card:hover {
  transform: translateY(-3px) !important;
  box-shadow:
    0 2px 4px rgba(20, 20, 33, 0.05),
    0 16px 36px rgba(20, 20, 33, 0.10) !important;
  border-color: rgba(20, 20, 33, 0.10) !important;
}

@media (max-width: 980px) {
  .landing-hero::before { right: -20%; top: -10%; width: 70%; }
  .landing-hero::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hl-card { transition: none !important; }
  .hl-card:hover { transform: none !important; }
}

/* ============================================================
   Features section — modern (2026-05)
   카드별 컬러 시그니처(상단 그라데이션 라인 + 우하단 컬러 blob),
   currentColor mask 글리프, 컬러풀 태그 pill, 부드러운 깊이감
   ============================================================ */
.feature-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFD 100%) !important;
  border: 1px solid rgba(20, 20, 33, 0.06) !important;
  box-shadow:
    0 1px 2px rgba(20, 20, 33, 0.04),
    0 12px 30px rgba(20, 20, 33, 0.06) !important;
  transition:
    transform 0.22s cubic-bezier(.4, .2, .2, 1),
    box-shadow 0.22s ease,
    border-color 0.22s ease !important;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.feature-card::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  bottom: -140px;
  right: -140px;
  z-index: 0;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.feature-card > * { position: relative; z-index: 1; }

.feature-card--blue::before   { background: linear-gradient(90deg, transparent, #3478F6, transparent); }
.feature-card--green::before  { background: linear-gradient(90deg, transparent, #2BBA70, transparent); }
.feature-card--pink::before   { background: linear-gradient(90deg, transparent, #E53573, transparent); }
.feature-card--yellow::before { background: linear-gradient(90deg, transparent, #FF9F0A, transparent); }

.feature-card--blue::after   { background: radial-gradient(closest-side, rgba(52, 120, 246, 0.22), transparent 70%); }
.feature-card--green::after  { background: radial-gradient(closest-side, rgba(43, 186, 112, 0.22), transparent 70%); }
.feature-card--pink::after   { background: radial-gradient(closest-side, rgba(229, 53, 115, 0.22), transparent 70%); }
.feature-card--yellow::after { background: radial-gradient(closest-side, rgba(255, 159, 10, 0.24), transparent 70%); }

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 2px 4px rgba(20, 20, 33, 0.05),
    0 22px 44px rgba(20, 20, 33, 0.08) !important;
}

.feature-card:hover::before { opacity: 1; }

.feature-card:hover::after {
  opacity: 0.85;
  transform: translate(-14px, -14px);
}

/* 글리프 — currentColor 기반 mask로 카드 컬러 페인트 */
.feature-glyph {
  width: 32px;
  height: 32px;
  display: block;
  background: currentColor;
  position: relative;
  z-index: 1;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

/* 카드별 currentColor 지정 — feature-glyph가 background:currentColor 사용 */
.feature-icon--blue   { color: #1A5BC7; }
.feature-icon--green  { color: #1F8E51; }
.feature-icon--pink   { color: #C42664; }
.feature-icon--yellow { color: #B5740A; }

/* 헤딩·본문 정밀 조정 */
.feature-card h3 {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--on-surface);
}

.feature-card p {
  font-size: 14.5px;
  line-height: 1.7;
  letter-spacing: -0.05px;
}

/* 태그 — 카드 컬러로 tinted pill */
.feature-tag {
  font-size: 12px !important;
  font-weight: 700 !important;
  padding: 5px 12px !important;
  letter-spacing: -0.05px !important;
}

/* feature-tag 컬러 매칭은 v3 polish 레이어에서 --glyph-color 토큰으로 처리 */

@media (prefers-reduced-motion: reduce) {
  .feature-card,
  .feature-card::before,
  .feature-card::after { transition: none !important; }
  .feature-card:hover { transform: none !important; }
}

/* ============================================================
   App detail (component grid) — 여백 정리 + 카드 콘텐츠 확장
   - grid를 align-items: start로: sparse 카드가 폴라로이드 높이로
     늘어나며 비는 문제를 제거. 카드는 콘텐츠 길이에 맞게 자연 정렬.
   - 오늘 뭐먹지: rmc-results (1·2·3위 추천) 추가
   - AI 자동 일정: rai-flow (입력 단계) + rai-prompt + rai-result 추가
   - 폴라로이드 wrap 패딩 컴팩트
   ============================================================ */
.component-grid {
  align-items: start;
}

.polaroid-wrap {
  padding: 8px 4px 4px !important;
}

/* ── 오늘 뭐먹지: 결과 리스트 ── */
.rmc-results {
  list-style: none;
  margin: 4px 0 0;
  padding: 10px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(20, 20, 33, 0.05);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rmc-result {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 122, 89, 0.06), rgba(255, 122, 89, 0.02));
}

.rmc-rank {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 2px 6px rgba(20, 20, 33, 0.15);
}

.rmc-rank--1 { background: linear-gradient(135deg, #FFD089, #FF9A50); }
.rmc-rank--2 { background: linear-gradient(135deg, #C5CDD8, #98A1B0); }
.rmc-rank--3 { background: linear-gradient(135deg, #E8B89A, #C18A66); }

.rmc-result-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.rmc-result-body strong {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--on-surface);
  letter-spacing: -0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rmc-result-body span {
  font-size: 11px;
  font-weight: 500;
  color: var(--grey-2);
  letter-spacing: -0.1px;
}

.rmc-result-score {
  font-size: 11px;
  font-weight: 700;
  color: #C8511E;
  letter-spacing: 0;
  flex-shrink: 0;
}

/* ── AI 자동 일정: 입력 흐름 + 예시 + 결과 ── */
.rai-flow {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.rai-step {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.1px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.rai-step i {
  font-style: normal;
  font-size: 13px;
  line-height: 1;
}

.rai-arrow {
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  font-weight: 700;
}

.rai-prompt {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.rai-prompt-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(196, 155, 255, 0.20);
  color: #C49BFF;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rai-prompt p {
  margin: 6px 0 0;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
  letter-spacing: -0.1px;
}

.rai-result {
  list-style: none;
  margin: 12px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rai-result li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  letter-spacing: -0.1px;
}

.rai-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c, #C49BFF);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.rai-result li strong {
  flex: 1;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rai-when {
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .rai-flow { gap: 4px; }
  .rai-step { padding: 6px 10px; font-size: 11.5px; }
}

/* ============================================================
   Final CTA — modern (2026-05)
   메쉬 그라데이션 + glassy chip 데코 + halo 후광 + trust 행
   ============================================================ */
.final-cta {
  position: relative;
  isolation: isolate;
  background: #1A2C5C;
  border-radius: 28px !important;
  padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px) !important;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 80% at 12% 0%, rgba(123, 92, 255, 0.55), transparent 70%),
    radial-gradient(50% 70% at 90% 100%, rgba(43, 186, 112, 0.25), transparent 70%),
    radial-gradient(80% 60% at 75% 18%, rgba(91, 156, 246, 0.45), transparent 70%),
    linear-gradient(135deg, #1E3A8A 0%, #2A2C72 50%, #1A1240 100%);
}

.final-cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  opacity: 0.6;
}

.final-cta-copy,
.final-cta-visual {
  position: relative;
  z-index: 1;
}

.final-cta .cta-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.cta-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5EE2A5;
  box-shadow: 0 0 0 3px rgba(94, 226, 165, 0.20);
}

.final-cta h2 {
  letter-spacing: -0.025em;
}

.final-cta h2 em {
  font-style: normal;
  background: linear-gradient(120deg, #C4D9FF 0%, #E2D6FF 50%, #FFFFFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.final-cta .store-button {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.30);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.final-cta .store-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.36);
}

.final-cta .store-button-light:hover {
  border-color: rgba(255, 255, 255, 0.40);
}

.cta-trust {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.cta-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: -0.1px;
}

.cta-trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C4D9FF, #5EE2A5);
  box-shadow: 0 0 8px rgba(196, 217, 255, 0.50);
}

/* Visual side */
.final-cta-visual {
  position: relative;
  width: clamp(220px, 26vw, 320px);
  flex-shrink: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

.final-cta-halo {
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background:
    radial-gradient(closest-side, rgba(196, 155, 255, 0.40), transparent 70%),
    radial-gradient(closest-side at 70% 70%, rgba(91, 156, 246, 0.40), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}

.final-cta-icon {
  position: relative;
  z-index: 1;
  width: clamp(140px, 15vw, 180px);
  height: auto;
  border-radius: 32px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.45),
    0 8px 16px rgba(0, 0, 0, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.10);
}

.final-cta-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px 9px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.20);
  color: #fff;
  font-size: 12px;
  letter-spacing: -0.1px;
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.30);
  white-space: nowrap;
}

.final-cta-chip strong {
  display: block;
  font-weight: 800;
  font-size: 12.5px;
  color: #fff;
}

.final-cta-chip small {
  display: block;
  margin-top: 1px;
  font-size: 10.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
}

.final-cta-chip--top {
  top: 6%;
  left: -14%;
}

.final-cta-chip--bottom {
  bottom: 8%;
  right: -10%;
}

.final-cta-chip-ic {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(255, 213, 79, 0.40), rgba(255, 159, 10, 0.20));
  border: 1px solid rgba(255, 213, 79, 0.40);
  flex-shrink: 0;
  position: relative;
}

.final-cta-chip-ic::before {
  content: '🍽';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.final-cta-chip-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(94, 226, 165, 0.45), rgba(43, 186, 112, 0.25));
  border: 1px solid rgba(94, 226, 165, 0.45);
  flex-shrink: 0;
  position: relative;
}

.final-cta-chip-check::before {
  content: '';
  position: absolute;
  top: 53%;
  left: 50%;
  width: 11px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 860px) {
  .final-cta-visual { width: min(280px, 80%); margin: 0 auto; }
  .final-cta-chip--top { left: -2%; top: -4%; }
  .final-cta-chip--bottom { right: -2%; bottom: -4%; }
}

@media (max-width: 520px) {
  .final-cta-chip { padding: 7px 11px 7px 8px; font-size: 11px; }
  .final-cta-chip strong { font-size: 11.5px; }
  .final-cta-chip small { font-size: 10px; }
  .cta-trust { gap: 8px 14px; }
  .cta-trust li { font-size: 11.5px; }
}

/* ============================================================
   Marketing footer — modern (2026-05)
   다크 그라데이션 + 상단 액센트 라인 + 컬럼 정렬 + store badge
   ============================================================ */
body footer.marketing-footer {
  position: relative;
  background:
    radial-gradient(ellipse at top, rgba(91, 156, 246, 0.10), transparent 60%),
    linear-gradient(180deg, #0E1322 0%, #0A0F1B 100%);
}

body footer.marketing-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(91, 156, 246, 0.35) 25%,
    rgba(196, 155, 255, 0.45) 50%,
    rgba(91, 156, 246, 0.35) 75%,
    transparent 100%);
  pointer-events: none;
}

.marketing-footer-inner {
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
  padding-top: clamp(48px, 6vw, 72px) !important;
  padding-bottom: clamp(28px, 3vw, 40px) !important;
}

.marketing-footer-brand .brand-logo {
  height: 30px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.marketing-footer-tag {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13.5px;
  line-height: 1.7;
  letter-spacing: -0.1px;
}

.footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 9px 14px 9px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.1px;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.footer-contact:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.20);
  color: #fff;
}

.footer-contact-ic {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(91, 156, 246, 0.40), rgba(196, 155, 255, 0.25));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #fff;
}

.marketing-footer-col h4 {
  margin-bottom: 16px !important;
  color: #fff;
  font-size: 11.5px !important;
  font-weight: 800 !important;
  letter-spacing: 0.10em !important;
  text-transform: uppercase;
  opacity: 0.92;
}

.marketing-footer-col ul {
  gap: 10px !important;
}

.marketing-footer-col ul a {
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 13.5px !important;
  font-weight: 500;
  letter-spacing: -0.1px;
  transition: color 0.18s ease, transform 0.18s ease !important;
}

.marketing-footer-col ul a:hover {
  color: #fff !important;
  transform: translateX(2px);
}

.marketing-footer-col--download {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.marketing-footer-col--download h4 { margin-bottom: 14px !important; }

.footer-store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 200px;
  padding: 10px 14px;
  margin-bottom: 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #fff;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.footer-store:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.footer-store img { width: 18px; height: 18px; flex-shrink: 0; }

.footer-store span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
}

.footer-store small {
  font-size: 9px;
  font-weight: 500;
  opacity: 0.6;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.marketing-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
  color: rgba(255, 255, 255, 0.42) !important;
  font-size: 12px !important;
  letter-spacing: -0.1px;
}

.marketing-footer-bottom .legal-links {
  align-items: center;
}

.marketing-footer-bottom .legal-links a {
  color: rgba(255, 255, 255, 0.48);
  font-weight: 600;
  transition: color 0.18s ease;
}

.marketing-footer-bottom .legal-links a:hover { color: #fff; }

.marketing-footer-bottom .legal-divider {
  color: rgba(255, 255, 255, 0.22);
  margin: 0 4px;
}

@media (max-width: 720px) {
  .marketing-footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .marketing-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 460px) {
  .marketing-footer-inner { grid-template-columns: 1fr; }
  .marketing-footer-brand { grid-column: auto; }
  .footer-store { max-width: 100%; }
}

/* ============================================================
   Modernization & Responsive Polish (v3)
   - Fluid scaling, glassy nav, refined focus, text-wrap balance,
     extra breakpoints (≥1440 / ≤380), accessibility & motion polish.
   ============================================================ */

/* ── Token refinements (scoped to landing-page) ────────────── */
.landing-page {
  --landing-px: clamp(16px, 4vw, 32px);
  --section-py: clamp(56px, 9vw, 112px);
  --grad-primary: linear-gradient(135deg, #3478F6 0%, #7B5CFF 100%);
  --grad-warm: linear-gradient(135deg, #FF9F0A 0%, #E53573 100%);
  --grad-cool: linear-gradient(135deg, #34C759 0%, #2BBA70 100%);
  --grad-iris: linear-gradient(135deg, #5B9CF6 0%, #9747FF 50%, #E53573 100%);
  --ring-focus: 0 0 0 3px rgba(52, 120, 246, 0.28);
  --shadow-soft: 0 8px 24px -8px rgba(20, 20, 33, 0.10);
  --shadow-pop: 0 24px 48px -16px rgba(20, 20, 33, 0.18);
}

/* Smooth scrolling for jump links */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* Anchor target offset for all sectional ids */
/* Sections have large top padding (clamp 56–112px). Subtract from nav-h so the
   section's top padding is partially folded under sticky nav, bringing the
   actual heading right below the nav rather than 80–120px down. */
.landing-page section[id] { scroll-margin-top: calc(var(--nav-h) - 32px); }

/* Fluid container & section spacing */
.landing-page .landing-section { padding: var(--section-py) 0; }
@media (max-width: 768px) {
  .landing-page .landing-section { padding: clamp(48px, 10vw, 80px) 0; }
}

/* Wider canvas on large desktops */
@media (min-width: 1440px) {
  .landing-page { --landing-max: 1240px; }
}

/* ── Typography polish ──────────────────────────────────────── */
.landing-page h1,
.landing-page h2,
.landing-page h3 {
  text-wrap: balance;
}
.landing-page p,
.landing-page .lead,
.landing-page .hero-lead { text-wrap: pretty; }

.landing-page h2 {
  font-size: clamp(26px, 3.6vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.22;
}
.landing-page .lead {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.7;
  color: var(--grey-1);
}

/* ── Glassy nav refinement ─────────────────────────────────── */
.landing-page .landing-nav {
  background: color-mix(in srgb, #ffffff 78%, transparent);
  border-bottom: 1px solid rgba(20, 20, 33, 0.05);
  transition: padding 0.2s ease, background 0.2s ease;
}
@supports not (background: color-mix(in srgb, #fff 50%, transparent)) {
  .landing-page .landing-nav { background: rgba(255, 255, 255, 0.85); }
}

.landing-page .nav-links a:not(.nav-download) {
  position: relative;
  padding: 6px 2px;
}
.landing-page .nav-links .nav-download {
  padding: 10px 18px;
  font-weight: 700;
}
@media (min-width: 861px) {
  .landing-page .nav-links a:not(.nav-download)::after {
    content: "";
    position: absolute;
    left: 0; right: 0;
    bottom: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--grad-primary);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.22s ease;
  }
  .landing-page .nav-links a:not(.nav-download):hover::after,
  .landing-page .nav-links a:not(.nav-download):focus-visible::after {
    transform: scaleX(1);
  }
}
.landing-page .nav-links .nav-download {
  background: var(--grad-primary);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.landing-page .nav-links .nav-download:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -10px rgba(52, 120, 246, 0.55);
  filter: brightness(1.04);
}

/* Mobile drawer — softer overlay tone */
@media (max-width: 860px) {
  .landing-page .nav-links {
    padding: var(--space-md) var(--landing-px) var(--space-xl);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    box-shadow: 0 16px 32px -16px rgba(20, 20, 33, 0.18);
  }
}

/* ── Hero polish — subtle aurora background ───────────────── */
.landing-page .landing-hero { position: relative; isolation: isolate; }
.landing-page .landing-hero::before {
  content: "";
  position: absolute;
  inset: -10% -10% auto auto;
  width: clamp(360px, 50vw, 640px);
  aspect-ratio: 1;
  background: radial-gradient(closest-side, rgba(123, 92, 255, 0.18), transparent 70%);
  filter: blur(20px);
  z-index: -1;
  pointer-events: none;
}
.landing-page .landing-hero::after {
  content: "";
  position: absolute;
  inset: auto auto -15% -10%;
  width: clamp(320px, 42vw, 540px);
  aspect-ratio: 1;
  background: radial-gradient(closest-side, rgba(52, 199, 89, 0.14), transparent 70%);
  filter: blur(20px);
  z-index: -1;
  pointer-events: none;
}

.landing-page .hero-kicker {
  background: var(--primary-tint); /* fallback */
  background: color-mix(in srgb, var(--primary-tint) 70%, white);
  box-shadow: inset 0 0 0 1px rgba(52, 120, 246, 0.18);
}

/* Store buttons — refined press */
.landing-page .store-button {
  transition: transform 0.18s ease, box-shadow 0.22s ease, border-color 0.18s ease;
}
.landing-page .store-button:hover { transform: translateY(-2px); }
.landing-page .store-button:active { transform: translateY(0); }

/* Hero highlights — depth */
.landing-page .hero-highlights .hl-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.landing-page .hero-highlights .hl-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

/* ── Section heading h2 — gradient accent (only large) ───── */
@media (min-width: 768px) {
  .landing-page .section-heading h2 em,
  .landing-page #hero-title em {
    background-size: 200% 100%;
  }
}

/* ── Trust strip — center alignment + cohesive pill tone ─── */
.landing-page .trust-strip {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-container-low) 100%);
}

/* ── Cards — unify hover lift across feature/comp/pricing ── */
.landing-page .feature-card,
.landing-page .comp-card,
.landing-page .ps-card,
.landing-page .testimonial-card,
.landing-page .pricing-card,
.landing-page .category-card,
.landing-page .wf-step {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.landing-page .feature-card:hover,
.landing-page .comp-card:hover,
.landing-page .ps-card:hover,
.landing-page .testimonial-card:hover,
.landing-page .pricing-card:hover,
.landing-page .category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-pop);
}

/* Pricing — strengthen Pro emphasis on hover */
.landing-page .pricing-card--pro:hover {
  box-shadow: 0 28px 56px -20px rgba(123, 92, 255, 0.45);
}

/* Pricing CTA buttons */
.landing-page .pricing-cta {
  transition: transform 0.18s ease, box-shadow 0.22s ease, filter 0.18s ease;
}
.landing-page .pricing-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

/* ── Feature icons — gradient tile + tinted mask glyph ── */
.landing-page .feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.6),
    0 6px 16px -8px rgba(20, 20, 33, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.landing-page .feature-card:hover .feature-icon {
  transform: translateY(-2px) rotate(-2deg);
}
.landing-page .feature-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 20% 0%, rgba(255, 255, 255, 0.55), transparent 60%);
  pointer-events: none;
}

.landing-page .feature-icon--blue {
  background: linear-gradient(135deg, #DCE8FF 0%, #B7CFFB 100%);
  --glyph-color: #1A5BC7;
}
.landing-page .feature-icon--green {
  background: linear-gradient(135deg, #DDF4E5 0%, #B5E5C7 100%);
  --glyph-color: #1F8E51;
}
.landing-page .feature-icon--pink {
  background: linear-gradient(135deg, #FFE3EE 0%, #FBC4D8 100%);
  --glyph-color: #C42664;
}
.landing-page .feature-icon--yellow {
  background: linear-gradient(135deg, #FFF1D2 0%, #FBD9A0 100%);
  --glyph-color: #B5740A;
}

.landing-page .feature-glyph {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  display: block;
  background-color: var(--glyph-color, var(--on-surface));
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.landing-page .feature-icon { display: inline-flex; align-items: center; justify-content: center; }

.landing-page .feature-glyph--calendar { -webkit-mask-image: url("../icons/plan_calendar.svg"); mask-image: url("../icons/plan_calendar.svg"); }
.landing-page .feature-glyph--marker   { -webkit-mask-image: url("../icons/marker_on_map.svg"); mask-image: url("../icons/marker_on_map.svg"); }
.landing-page .feature-glyph--gallery  { -webkit-mask-image: url("../icons/gallery.svg"); mask-image: url("../icons/gallery.svg"); }
.landing-page .feature-glyph--invite   { -webkit-mask-image: url("../icons/invite.svg"); mask-image: url("../icons/invite.svg"); }

/* Heading & tag tone refinement */
.landing-page .feature-card h3 {
  font-size: 17px;
  letter-spacing: -0.01em;
  margin-top: 4px;
}
.landing-page .feature-tag {
  background: var(--surface-container-low); /* fallback */
  background: color-mix(in srgb, var(--glyph-color, var(--grey-1)) 12%, white);
  color: var(--glyph-color, var(--grey-1));
  border: 1px solid var(--divider); /* fallback */
  border-color: color-mix(in srgb, var(--glyph-color, var(--grey-1)) 22%, transparent);
}
.landing-page .feature-card:hover {
  border-color: var(--divider); /* fallback */
  border-color: color-mix(in srgb, var(--glyph-color, var(--divider)) 28%, var(--divider));
}

/* Inherit --glyph-color into card so feature-tag picks per-card color */
.landing-page .feature-card:has(.feature-icon--blue)   { --glyph-color: #1A5BC7; }
.landing-page .feature-card:has(.feature-icon--green)  { --glyph-color: #1F8E51; }
.landing-page .feature-card:has(.feature-icon--pink)   { --glyph-color: #C42664; }
.landing-page .feature-card:has(.feature-icon--yellow) { --glyph-color: #B5740A; }

@supports not (selector(:has(*))) {
  .landing-page .feature-tag { background: var(--surface-container-low); color: var(--grey-1); border-color: var(--divider); }
}

/* ── Section block — center modifier ──────────────────── */
.landing-page .section-block--center {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.landing-page .section-block--center .lead {
  margin-inline: auto;
}

/* ── FAQ — animated open + chevron ─────────────────────── */
.landing-page .faq-item {
  transition: background 0.2s ease, box-shadow 0.22s ease;
}
.landing-page .faq-item[open] {
  box-shadow: var(--shadow-soft);
}
.landing-page .faq-item summary {
  position: relative;
  cursor: pointer;
  list-style: none;
}
.landing-page .faq-item summary::-webkit-details-marker { display: none; }
.landing-page .faq-item summary::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 10px; height: 10px;
  border-right: 2px solid var(--grey-1);
  border-bottom: 2px solid var(--grey-1);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.22s ease, border-color 0.22s ease;
}
.landing-page .faq-item[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
  border-color: var(--primary);
}

/* ── Final CTA — modernize background gradient ─────────── */
.landing-page .final-cta {
  position: relative;
  overflow: hidden;
}
.landing-page .final-cta::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto auto;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(closest-side, rgba(255, 159, 10, 0.18), transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.landing-page .final-cta > * { position: relative; z-index: 1; }

/* ── Marketing footer — slight refinement ──────────────── */
.landing-page .marketing-footer a { transition: color 0.18s ease, opacity 0.18s ease; }
.landing-page .marketing-footer-bottom { gap: var(--space-md); flex-wrap: wrap; }

/* ── Focus-visible — consistent ring (a11y) ────────────── */
.landing-page a:focus-visible,
.landing-page button:focus-visible,
.landing-page summary:focus-visible,
.landing-page details:focus-visible,
.landing-page .nav-toggle:focus-visible {
  outline: none;
  box-shadow: var(--ring-focus);
  border-radius: 8px;
}
.landing-page .store-button:focus-visible,
.landing-page .nav-links .nav-download:focus-visible,
.landing-page .pricing-cta:focus-visible {
  box-shadow: var(--ring-focus), var(--shadow-md);
}

/* ── Selection color ───────────────────────────────────── */
.landing-page ::selection {
  background: rgba(52, 120, 246, 0.22);
  color: var(--on-surface);
}

/* ── Image rendering polish ────────────────────────────── */
.landing-page img { image-rendering: -webkit-optimize-contrast; }

/* ── Showcase grid — center-align on tablet too ────────── */
@media (max-width: 1024px) and (min-width: 721px) {
  .landing-page .showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-2xl);
  }
  .landing-page .showcase-item--lower,
  .landing-page .showcase-item--raised { transform: none; }
}

/* ── Workflow grid — readable on tablet ────────────────── */
@media (max-width: 1024px) and (min-width: 641px) {
  .landing-page .workflow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-2xl);
  }
}

/* ── Pricing — collapse 2-col grid to single column on narrow phones ─ */
@media (max-width: 720px) {
  .landing-page .pricing-grid { grid-template-columns: 1fr; }
}

/* ── Comparison table — horizontal scroll on small ─────── */
@media (max-width: 640px) {
  .landing-page .comparison {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-xl);
  }
  .landing-page .comparison table { min-width: 520px; }
}

/* ── Category row — wrap nicely on mobile ──────────────── */
@media (max-width: 720px) {
  .landing-page .category-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-sm);
  }
}
@media (max-width: 460px) {
  .landing-page .category-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ── Ultra-narrow safety (≤380px notch phones) ─────────── */
@media (max-width: 380px) {
  .landing-page {
    --landing-px: 14px;
  }
  .landing-page .landing-hero h1 { font-size: 30px; }
  .landing-page .hero-lead { font-size: 15.5px; }
  .landing-page .store-button { padding: 10px 14px; gap: 8px; }
  .landing-page .store-button span { font-size: 14px; }
  .landing-page .nav-links a { font-size: 15px; padding: 12px 4px; }
}

/* ── Large desktop polish (≥1440px) ────────────────────── */
@media (min-width: 1440px) {
  .landing-page .landing-hero h1 { font-size: 60px; }
  .landing-page .hero-lead { font-size: 18px; }
  .landing-page .feature-grid,
  .landing-page .pricing-grid,
  .landing-page .testimonial-grid {
    gap: var(--space-2xl);
  }
}

/* ── Reduced-motion respect for hover transforms ───────── */
@media (prefers-reduced-motion: reduce) {
  .landing-page * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .landing-page .feature-card:hover,
  .landing-page .comp-card:hover,
  .landing-page .ps-card:hover,
  .landing-page .testimonial-card:hover,
  .landing-page .pricing-card:hover,
  .landing-page .category-card:hover,
  .landing-page .store-button:hover,
  .landing-page .hl-card:hover { transform: none; }
}

/* ── Print — keep landing readable ─────────────────────── */
@media print {
  .landing-page .landing-nav,
  .landing-page .nav-toggle,
  .landing-page .final-cta,
  .landing-page .store-actions { display: none; }
  .landing-page .landing-section { padding: 24px 0; break-inside: avoid; }
  .landing-page .marketing-footer {
    background: #fff !important;
    color: #000 !important;
  }
  .landing-page .marketing-footer a,
  .landing-page .marketing-footer h4,
  .landing-page .marketing-footer-bottom { color: #000 !important; }
}

/* ── Contrast bump — small grey text → WCAG AA on white ── */
.landing-page .pricing-note { color: var(--grey-1); }
.landing-page .pricing-card--pro .pricing-note { color: rgba(255, 255, 255, 0.78); }

/* ── Skip-to-content link (a11y) ───────────────────────── */
.landing-page .skip-to-content {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 10px 16px;
  background: var(--primary);
  color: #fff;
  border-radius: 0 0 12px 0;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}
.landing-page .skip-to-content:focus,
.landing-page .skip-to-content:focus-visible {
  left: 0;
  top: 0;
  outline: none;
}

/* ============================================================
   Final CTA — Premium polish (v4)
   iris gradient + glass store buttons + frosted check pills +
   gentle floating chips + headline iris text
   ============================================================ */
.landing-page .final-cta {
  background: #1B1F4D;
  isolation: isolate;
}
.landing-page .final-cta-bg {
  background:
    radial-gradient(60% 80% at 12% 0%, rgba(140, 110, 255, 0.55), transparent 70%),
    radial-gradient(48% 70% at 88% 16%, rgba(91, 156, 246, 0.50), transparent 70%),
    radial-gradient(55% 70% at 78% 100%, rgba(229, 53, 159, 0.32), transparent 72%),
    radial-gradient(40% 60% at 18% 100%, rgba(43, 186, 200, 0.28), transparent 72%),
    linear-gradient(135deg, #1E2A78 0%, #2A1F66 45%, #1F1444 100%);
}
.landing-page .final-cta-bg::after {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(0deg,  rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at 65% 40%, #000 28%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 65% 40%, #000 28%, transparent 80%);
  opacity: 0.7;
}

/* Headline iris gradient */
.landing-page .final-cta h2 em {
  background: linear-gradient(95deg, #C8DBFF 0%, #E1CCFF 35%, #FFD4F3 70%, #FFFFFF 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
@media (prefers-reduced-motion: no-preference) {
  .landing-page .final-cta h2 em {
    animation: cta-iris-shift 9s ease-in-out infinite alternate;
  }
}
@keyframes cta-iris-shift {
  from { background-position: 0% 50%; }
  to   { background-position: 100% 50%; }
}

/* Glass store buttons (replaces black-on-navy) */
.landing-page .final-cta .store-button {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
          backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  box-shadow:
    0 12px 32px -8px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}
.landing-page .final-cta .store-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.10) 100%);
  box-shadow:
    0 18px 40px -10px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.20);
}
.landing-page .final-cta .store-button img {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}
/* Light variant becomes the primary CTA — frosted white with iris border */
.landing-page .final-cta .store-button-light {
  background: linear-gradient(180deg, #FFFFFF 0%, #F2F4FB 100%);
  color: #161A33;
  border: 1px solid transparent;
  background-clip: padding-box;
  position: relative;
}
.landing-page .final-cta .store-button-light::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, #5B9CF6 0%, #9747FF 50%, #E53573 100%);
  z-index: -1;
}
.landing-page .final-cta .store-button-light:hover {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFE 100%);
  filter: brightness(1.02);
}

/* Trust list — frosted check pills */
.landing-page .cta-trust {
  margin-top: 24px;
  gap: 8px 10px;
}
.landing-page .cta-trust li {
  padding: 8px 12px 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -0.1px;
}
.landing-page .cta-trust-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5EE2A5 0%, #2BBA70 100%);
  box-shadow: 0 0 0 2px rgba(94, 226, 165, 0.18);
  position: relative;
  flex-shrink: 0;
}
.landing-page .cta-trust-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 4px;
  border-left: 1.6px solid #fff;
  border-bottom: 1.6px solid #fff;
  transform: translate(-50%, -65%) rotate(-45deg);
}

/* Kicker — refined chip with pulsing dot */
.landing-page .final-cta .cta-kicker {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.06) 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
@media (prefers-reduced-motion: no-preference) {
  .landing-page .cta-kicker-dot {
    animation: cta-dot-pulse 2.6s ease-in-out infinite;
  }
}
@keyframes cta-dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(94, 226, 165, 0.55), 0 0 0 3px rgba(94, 226, 165, 0.20); }
  50%      { box-shadow: 0 0 0 8px rgba(94, 226, 165, 0), 0 0 0 3px rgba(94, 226, 165, 0.20); }
}

/* App icon — premium float + soft halo */
.landing-page .final-cta-icon {
  border-radius: 30px;
  box-shadow:
    0 40px 80px -20px rgba(0, 0, 0, 0.55),
    0 16px 32px -8px rgba(123, 92, 255, 0.40),
    inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
}
.landing-page .final-cta-visual:hover .final-cta-icon {
  transform: translateY(-4px) rotate(-1.5deg);
}
.landing-page .final-cta-halo {
  background:
    radial-gradient(closest-side, rgba(196, 155, 255, 0.55), transparent 70%),
    radial-gradient(closest-side at 70% 80%, rgba(91, 156, 246, 0.45), transparent 72%),
    radial-gradient(closest-side at 30% 80%, rgba(255, 122, 196, 0.30), transparent 72%);
  filter: blur(28px);
}

/* Chips — gentle infinite float */
@media (prefers-reduced-motion: no-preference) {
  .landing-page .final-cta-chip--top {
    animation: cta-chip-float-a 7s ease-in-out infinite;
  }
  .landing-page .final-cta-chip--bottom {
    animation: cta-chip-float-b 8.5s ease-in-out infinite;
  }
}
@keyframes cta-chip-float-a {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-4px, -6px); }
}
@keyframes cta-chip-float-b {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(5px, 4px); }
}
.landing-page .final-cta-chip {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    0 14px 32px -8px rgba(0, 0, 0, 0.40),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

/* ── Final CTA — compact side-by-side (v6) ───────────── */
.landing-page .final-cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: left;
  gap: clamp(28px, 4vw, 56px);
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(36px, 4.5vw, 60px) clamp(28px, 4vw, 60px) !important;
  border-radius: 24px !important;
}
.landing-page .final-cta-copy {
  max-width: 560px;
  text-align: left;
  flex: 1 1 auto;
}
.landing-page .final-cta h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-top: 14px;
  line-height: 1.25;
}
.landing-page .final-cta p {
  font-size: clamp(14.5px, 1.3vw, 16px);
  margin-top: 12px;
}
.landing-page .final-cta .store-actions {
  margin-top: 22px;
  gap: 12px;
  flex-wrap: wrap;
}
.landing-page .final-cta .cta-trust {
  margin-top: 18px;
}

/* Visual — compact app icon + floating chips */
.landing-page .final-cta-visual {
  display: flex;
  width: clamp(180px, 22vw, 240px);
  flex-shrink: 0;
}
.landing-page .final-cta-icon {
  width: clamp(120px, 14vw, 160px);
  border-radius: 26px;
}
.landing-page .final-cta-chip { font-size: 11.5px; padding: 7px 12px 7px 8px; }
.landing-page .final-cta-chip strong { font-size: 12px; }
.landing-page .final-cta-chip small { font-size: 10.5px; }
.landing-page .final-cta-chip-ic,
.landing-page .final-cta-chip-check { width: 24px; height: 24px; }

/* Tablet: stack but keep visual visible and centered */
@media (max-width: 860px) {
  .landing-page .final-cta {
    flex-direction: column-reverse;
    text-align: center;
    gap: 28px;
  }
  .landing-page .final-cta-copy { text-align: center; max-width: 600px; }
  .landing-page .final-cta .store-actions { justify-content: center; }
  .landing-page .final-cta .cta-trust { justify-content: center; }
  .landing-page .final-cta-visual {
    width: min(220px, 60%);
    margin: 0 auto;
  }
}

@media (max-width: 520px) {
  .landing-page .final-cta {
    padding: clamp(28px, 7vw, 40px) clamp(20px, 5vw, 28px) !important;
    border-radius: 20px !important;
  }
  .landing-page .final-cta h2 { font-size: 22px; }
  .landing-page .final-cta p { font-size: 14px; }
  .landing-page .final-cta .store-actions { width: 100%; }
  .landing-page .final-cta .store-button { flex: 1 1 auto; justify-content: center; }
  .landing-page .final-cta-icon { width: 110px; }
}

/* Mobile — center, larger CTA buttons */
@media (max-width: 520px) {
  .landing-page .final-cta {
    border-radius: 22px !important;
    padding: clamp(32px, 8vw, 48px) clamp(20px, 6vw, 32px) !important;
  }
  .landing-page .final-cta .store-button { padding: 14px 18px; }
  .landing-page .cta-trust { justify-content: center; }
}

/* ── Showcase 5-item — balance bottom row on tablet ────── */
@media (min-width: 721px) and (max-width: 1024px) {
  .landing-page .showcase-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    column-gap: var(--space-lg);
    row-gap: var(--space-2xl);
    justify-items: center;
  }
  .landing-page .showcase-item:nth-child(1) { grid-column: 1 / span 2; }
  .landing-page .showcase-item:nth-child(2) { grid-column: 3 / span 2; }
  .landing-page .showcase-item:nth-child(3) { grid-column: 5 / span 2; }
  .landing-page .showcase-item:nth-child(4) { grid-column: 2 / span 2; }
  .landing-page .showcase-item:nth-child(5) { grid-column: 4 / span 2; }
  .landing-page .showcase-item--lower,
  .landing-page .showcase-item--raised { transform: none; }
}

/* ============================================================
   "준비중" inline badge — for not-yet-implemented links
   ============================================================ */
.soon-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(52, 120, 246, 0.10);
  color: #3478F6;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  vertical-align: 1px;
  white-space: nowrap;
}
[data-soon] {
  cursor: pointer;
}

/* ============================================================
   Legal pages (terms, privacy) — clean readable typography
   ============================================================ */
.landing-page.legal-page { background: #fff; }
.landing-page.legal-page .nav-links a[aria-current="page"] {
  color: #3478F6;
  font-weight: 700;
}
.legal-page .legal-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--landing-px);
}
.legal-page .legal-hero {
  padding: clamp(56px, 8vw, 96px) 0 clamp(28px, 4vw, 48px);
  background: linear-gradient(180deg, #F4F8FF 0%, #FFFFFF 100%);
  border-bottom: 1px solid rgba(20, 20, 33, 0.06);
}
.legal-page .legal-version {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(52, 120, 246, 0.10);
  color: #3478F6;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.legal-page .legal-hero h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin: 18px 0 12px;
  letter-spacing: -0.025em;
  color: var(--on-surface);
  line-height: 1.25;
}
.legal-page .legal-subtitle {
  color: var(--grey-1);
  font-size: 15.5px;
  line-height: 1.75;
  max-width: 680px;
}
.legal-page .legal-content {
  padding: clamp(24px, 4vw, 48px) 0 clamp(64px, 8vw, 96px);
}
.legal-page .legal-content > .legal-inner > section {
  padding: 28px 0;
  border-bottom: 1px solid rgba(20, 20, 33, 0.06);
}
.legal-page .legal-content > .legal-inner > section:last-of-type {
  border-bottom: none;
}
.legal-page .legal-content h2 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: var(--on-surface);
}
.legal-page .legal-content p {
  font-size: 15px;
  line-height: 1.78;
  color: var(--grey-1);
  margin: 0 0 8px;
}
.legal-page .legal-content p + p { margin-top: 8px; }
.legal-page .legal-content ol,
.legal-page .legal-content ul {
  padding-left: 22px;
  margin: 8px 0 0;
}
.legal-page .legal-content li {
  font-size: 15px;
  line-height: 1.78;
  color: var(--grey-1);
  margin-bottom: 6px;
}
.legal-page .legal-content li > ul,
.legal-page .legal-content li > ol {
  margin-top: 8px;
  margin-bottom: 4px;
}
.legal-page .legal-content strong {
  color: var(--on-surface);
  font-weight: 700;
}
.legal-page .legal-content a {
  color: #3478F6;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.18s ease;
}
.legal-page .legal-content a:hover { color: #1B5BCC; }
.legal-page .legal-note {
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(52, 120, 246, 0.06);
  border-left: 3px solid rgba(52, 120, 246, 0.40);
  border-radius: 8px;
  font-size: 13.5px;
  color: var(--grey-1);
  line-height: 1.7;
}
.legal-page .legal-meta {
  margin-top: 32px;
  padding-top: 20px;
  color: var(--grey-2);
  font-size: 13px;
  text-align: center;
}
@media (max-width: 640px) {
  .legal-page .legal-content > .legal-inner > section { padding: 22px 0; }
  .legal-page .legal-content h2 { font-size: 17px; }
  .legal-page .legal-content p,
  .legal-page .legal-content li { font-size: 14.5px; line-height: 1.75; }
}

/* ============================================================
   Hero kicker — app marker_mini_solid (mask, brand-tinted)
   ============================================================ */
.landing-page .hero-kicker .hero-kicker-ico {
  width: 16px !important;
  height: 16px !important;
  display: inline-block !important;
  background: #3478F6 !important;
  -webkit-mask: url('/icons/marker_mini_solid.svg') center / contain no-repeat !important;
          mask: url('/icons/marker_mini_solid.svg') center / contain no-repeat !important;
  flex-shrink: 0 !important;
}
.landing-page .hero-kicker > span {
  background: linear-gradient(120deg, #3478F6 0%, #5B6CFF 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font-weight: 700;
}

/* ============================================================
   Hero highlight chips — pill, glassy, brand-tinted (v2)
   ============================================================ */
.landing-page .hero-highlights {
  gap: 10px;
}
.landing-page .hl-card {
  /* Pill shape, compact */
  border-radius: 999px !important;
  padding: 6px 16px 6px 6px !important;
  gap: 10px !important;
  background: rgba(255, 255, 255, 0.85) !important;
  -webkit-backdrop-filter: blur(10px) saturate(140%);
          backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid rgba(20, 20, 33, 0.06) !important;
  box-shadow:
    0 1px 2px rgba(20, 20, 33, 0.04),
    0 6px 18px rgba(20, 20, 33, 0.05) !important;
  transition:
    transform 0.22s cubic-bezier(.4, .2, .2, 1),
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease !important;
}
.landing-page .hl-card strong {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: #1C1C1E;
}

/* Round icon tile */
.landing-page .hl-card .hl-ic {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.landing-page .hl-card .hl-ic::after {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}
.landing-page .hl-card .hl-glyph,
.landing-page .hl-card .hl-ic img {
  width: 32px !important;
  height: 32px !important;
  display: block !important;
}

/* Per-color: subtle tinted border + matching glow on hover */
.landing-page .hl-card--blue   { border-color: rgba(52, 120, 246, 0.20) !important; }
.landing-page .hl-card--green  { border-color: rgba(43, 186, 112, 0.22) !important; }
.landing-page .hl-card--pink   { border-color: rgba(229, 53, 115, 0.22) !important; }
.landing-page .hl-card--yellow { border-color: rgba(255, 159, 10, 0.26) !important; }
.landing-page .hl-card--purple { border-color: rgba(151, 71, 255, 0.22) !important; }

.landing-page .hl-card:hover {
  transform: translateY(-2px) !important;
  background: #FFFFFF !important;
}
.landing-page .hl-card--blue:hover {
  border-color: rgba(52, 120, 246, 0.40) !important;
  box-shadow: 0 2px 6px rgba(52, 120, 246, 0.10), 0 14px 28px rgba(52, 120, 246, 0.18) !important;
}
.landing-page .hl-card--green:hover {
  border-color: rgba(43, 186, 112, 0.42) !important;
  box-shadow: 0 2px 6px rgba(43, 186, 112, 0.10), 0 14px 28px rgba(43, 186, 112, 0.18) !important;
}
.landing-page .hl-card--pink:hover {
  border-color: rgba(229, 53, 115, 0.42) !important;
  box-shadow: 0 2px 6px rgba(229, 53, 115, 0.10), 0 14px 28px rgba(229, 53, 115, 0.18) !important;
}
.landing-page .hl-card--yellow:hover {
  border-color: rgba(255, 159, 10, 0.46) !important;
  box-shadow: 0 2px 6px rgba(255, 159, 10, 0.12), 0 14px 28px rgba(255, 159, 10, 0.20) !important;
}
.landing-page .hl-card--purple:hover {
  border-color: rgba(151, 71, 255, 0.42) !important;
  box-shadow: 0 2px 6px rgba(151, 71, 255, 0.10), 0 14px 28px rgba(151, 71, 255, 0.18) !important;
}

@media (max-width: 520px) {
  .landing-page .hl-card { padding: 5px 14px 5px 5px !important; gap: 8px !important; }
  .landing-page .hl-card .hl-ic { width: 42px !important; height: 42px !important; }
  .landing-page .hl-card .hl-glyph,
  .landing-page .hl-card .hl-ic img { width: 26px !important; height: 26px !important; }
  .landing-page .hl-card strong { font-size: 12.5px; }
}
