/* ============================================================
   온길 랜딩 페이지 — style.css
   디자인 시스템: Anthropic Claude Design Language
   ============================================================ */

/* ─── Design Tokens ─────────────────────────────────────── */
:root {
  /* Brand */
  --primary:              #cc785c;
  --primary-active:       #a9583e;
  --primary-disabled:     #e6dfd8;

  /* Text */
  --ink:                  #141413;
  --body:                 #3d3d3a;
  --body-strong:          #252523;
  --muted:                #6c6a64;
  --muted-soft:           #8e8b82;

  /* Borders */
  --hairline:             #e6dfd8;
  --hairline-soft:        #ebe6df;

  /* Surfaces */
  --canvas:               #faf9f5;
  --surface-soft:         #f5f0e8;
  --surface-card:         #efe9de;
  --surface-cream-strong: #e8e0d2;
  --surface-dark:         #181715;
  --surface-dark-el:      #252320;
  --surface-dark-soft:    #1f1e1b;

  /* On Colors */
  --on-primary:           #ffffff;
  --on-dark:              #faf9f5;
  --on-dark-soft:         #a09d96;

  /* Accents */
  --accent-teal:          #5db8a6;
  --accent-amber:         #e8a55a;
  --success:              #5db872;

  /* Border Radius */
  --r-xs:   4px;
  --r-sm:   6px;
  --r-md:   8px;
  --r-lg:   12px;
  --r-xl:   16px;
  --r-pill: 9999px;

  /* Spacing */
  --sp-xxs:     4px;
  --sp-xs:      8px;
  --sp-sm:      12px;
  --sp-md:      16px;
  --sp-lg:      24px;
  --sp-xl:      32px;
  --sp-xxl:     48px;
  --sp-section: 96px;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Noto Serif KR', serif;
  --font-body:    'Noto Sans KR', sans-serif;
}


/* ─── Reset ─────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--canvas);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }


/* ─── Layout Helpers ─────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-xl);
}

.section {
  padding: var(--sp-section) 0;
}


/* ─── Utilities ──────────────────────────────────────────── */
.badge-coral {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  background: var(--primary);
  color: var(--on-primary);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--r-pill);
}

.badge-pill {
  display: inline-block;
  background: var(--surface-card);
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: var(--r-pill);
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-md);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: var(--sp-lg);
}

.section-title em {
  font-style: italic;
  color: var(--primary);
}

.section-sub {
  font-size: 18px;
  color: var(--body);
  max-width: 560px;
  margin-bottom: var(--sp-xxl);
}

/* Section title/sub overrides for dark bg */
.section-title--on-dark { color: var(--on-dark); }
.section-sub--on-dark   { color: var(--on-dark-soft); }

/* Section eyebrow labels */
.section-eyebrow-label          { font-size: 13px; font-weight: 500; color: var(--muted); }
.section-eyebrow-label--on-dark { font-size: 13px; font-weight: 500; color: var(--on-dark-soft); }

/* Section spacing overrides */
.section-title--spacing-xxl { margin-bottom: var(--sp-xxl); }
.section-sub--compact       { margin-bottom: var(--sp-xxl); }


/* ─── Buttons ────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  background: var(--primary);
  color: var(--on-primary);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  height: 44px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  transition: background 0.18s;
  white-space: nowrap;
}

.btn-primary:hover { background: var(--primary-active); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  height: 44px;
  border-radius: var(--r-md);
  border: 1px solid var(--hairline);
  cursor: pointer;
  transition: background 0.18s;
  white-space: nowrap;
}

.btn-secondary:hover { background: var(--surface-card); }

.btn-canvas {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  transition: background 0.18s;
}

.btn-canvas:hover { background: var(--surface-card); }


/* ─── TOP NAV ────────────────────────────────────────────── */
.top-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline-soft);
  height: 64px;
}

.top-nav .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
}

.spike-mark {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--ink); }

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

.nav-signin {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.15s;
}

.nav-signin:hover { color: var(--primary); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--r-sm);
  flex-shrink: 0;
}

.nav-hamburger:hover { background: var(--surface-card); }

.hamburger-bar {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-hamburger.is-open .hamburger-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open .hamburger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open .hamburger-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(250, 249, 245, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline-soft);
  padding: var(--sp-md) var(--sp-xl) var(--sp-xl);
  z-index: 99;
  transform: translateY(-6px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.mobile-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--sp-lg);
}

.mobile-nav-links a {
  display: block;
  padding: var(--sp-md) 0;
  font-size: 18px;
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  border-bottom: 1px solid var(--hairline-soft);
  transition: color 0.15s;
}

.mobile-nav-links a:hover { color: var(--primary); }

.mobile-nav-actions { display: flex; flex-direction: column; gap: var(--sp-sm); }
.mobile-nav-actions .btn-primary,
.mobile-nav-actions .btn-secondary { justify-content: center; }

@media (min-width: 769px) {
  .mobile-nav { display: none !important; }
}


/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  padding: var(--sp-section) 0;
  background: var(--canvas);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-lg);
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin-bottom: var(--sp-lg);
}

.hero-h1 em {
  font-style: italic;
  color: var(--primary);
}

.hero-sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--body);
  line-height: 1.6;
  margin-bottom: var(--sp-xl);
  max-width: 460px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: var(--sp-lg);
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: 13px;
  color: var(--muted);
}

.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
}

.trust-divider {
  color: var(--hairline);
}


/* ─── Hero Phone Mockup ───────────────────────────────────── */
.hero-visual {
  position: relative;
}

.hero-phone-wrap {
  background: var(--surface-dark);
  border-radius: 32px;
  padding: 28px 20px 36px;
  box-shadow:
    0 32px 80px rgba(20, 20, 19, 0.22),
    0 4px 12px rgba(20, 20, 19, 0.1);
  max-width: 320px;
  margin: 0 auto;
  position: relative;
}

.hero-phone-wrap::before {
  content: '';
  display: block;
  width: 80px;
  height: 5px;
  background: var(--surface-dark-el);
  border-radius: var(--r-pill);
  margin: 0 auto var(--sp-lg);
}

.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-md);
  font-size: 11px;
  color: var(--on-dark-soft);
}

.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-lg);
}

.phone-greeting {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--on-dark);
  line-height: 1.2;
}

.phone-sub {
  font-size: 11px;
  color: var(--on-dark-soft);
  margin-bottom: 2px;
}

.phone-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* Alert Card (복약 부족 알림) */
.alert-card {
  background: rgba(204, 120, 92, 0.15);
  border: 1px solid rgba(204, 120, 92, 0.3);
  border-radius: var(--r-lg);
  padding: var(--sp-md);
  margin-bottom: var(--sp-md);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
}

.alert-icon  { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.alert-label { font-size: 11px; font-weight: 500; color: var(--primary); letter-spacing: 0.5px; margin-bottom: 2px; }
.alert-text  { font-size: 13px; color: var(--on-dark); font-weight: 500; }
.alert-sub   { font-size: 11px; color: var(--on-dark-soft); margin-top: 2px; }

.alert-day-count { color: var(--primary); }

/* Med Section */
.med-section-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--on-dark-soft);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--sp-xs);
}

.med-section-label + .med-section-label,
.med-card + .med-section-label {
  margin-top: var(--sp-sm);
}

.med-card {
  background: var(--surface-dark-el);
  border-radius: var(--r-md);
  padding: var(--sp-sm) var(--sp-md);
  margin-bottom: var(--sp-xs);
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

.med-card--done { opacity: 0.45; }

.med-pill-dot {
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.med-pill-dot--done    { background: rgba(93, 184, 114, 0.15); }
.med-pill-dot--pending { background: rgba(204, 120, 92, 0.15); }
.med-pill-dot--green   { background: rgba(93, 184, 114, 0.15); }

.med-name { font-size: 13px; font-weight: 500; color: var(--on-dark); }
.med-info { font-size: 11px; color: var(--on-dark-soft); }

.med-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: var(--r-pill);
  background: rgba(93, 184, 114, 0.15);
  color: var(--success);
  flex-shrink: 0;
  white-space: nowrap;
}

.med-badge--pending {
  background: rgba(204, 120, 92, 0.15);
  color: var(--primary);
}

/* Floating Badge */
.hero-float-badge {
  position: absolute;
  top: -20px;
  right: -24px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: var(--sp-sm) var(--sp-md);
  box-shadow: 0 4px 16px rgba(20, 20, 19, 0.1);
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

.float-icon { font-size: 20px; }
.float-text { font-size: 12px; font-weight: 500; color: var(--ink); }
.float-sub  { font-size: 11px; color: var(--muted); }


/* ─── PROOF BAND ─────────────────────────────────────────── */
.proof-band {
  background: var(--surface-soft);
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
  padding: var(--sp-xxl) 0;
}

.proof-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.proof-pillar {
  padding: 0 var(--sp-xxl);
  border-right: 1px solid var(--hairline);
}

.proof-pillar:first-child { padding-left: 0; }
.proof-pillar:last-child  { border-right: none; padding-right: 0; }

.proof-pillar-head {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  letter-spacing: -0.5px;
  margin-bottom: var(--sp-xs);
}

.proof-pillar-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .proof-pillars {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }
  .proof-pillar {
    padding: 0;
    border-right: none;
    border-bottom: 1px solid var(--hairline);
    padding-bottom: var(--sp-xl);
  }
  .proof-pillar:last-child { border-bottom: none; padding-bottom: 0; }
}


/* ─── FEATURES ───────────────────────────────────────────── */
.features { background: var(--canvas); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}

.feature-card {
  background: var(--surface-card);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}

.feature-card:hover { transform: translateY(-2px); }

.feature-card--dark {
  background: var(--surface-dark);
  color: var(--on-dark);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--canvas);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: var(--sp-lg);
  box-shadow: 0 1px 3px rgba(20, 20, 19, 0.08);
}

.feature-card--dark .feature-icon { background: var(--surface-dark-el); }

.feature-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--sp-sm);
}

.feature-card--dark .feature-title { color: var(--on-dark); }

.feature-desc {
  font-size: 15px;
  color: var(--body);
  line-height: 1.6;
}

.feature-card--dark .feature-desc { color: var(--on-dark-soft); }

/* Phone Call Visual */
.call-visual {
  margin-top: var(--sp-lg);
  background: var(--surface-dark-el);
  border-radius: var(--r-md);
  padding: var(--sp-md);
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

.call-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0   rgba(204, 120, 92, 0.4); }
  70%  { box-shadow: 0 0 0 12px rgba(204, 120, 92, 0);   }
  100% { box-shadow: 0 0 0 0   rgba(204, 120, 92, 0);   }
}

.call-text        { flex: 1; }
.call-name        { font-size: 14px; font-weight: 500; color: var(--on-dark); }
.call-sub         { font-size: 12px; color: var(--on-dark-soft); }
.call-retry-label { font-size: 12px; color: var(--primary); font-weight: 500; flex-shrink: 0; }

/* OCR Visual */
.ocr-visual { margin-top: var(--sp-lg); }

.ocr-img-mock {
  background: var(--surface-dark-el);
  border-radius: var(--r-md);
  padding: var(--sp-md);
  font-size: 12px;
  color: var(--on-dark-soft);
  font-family: monospace;
  line-height: 1.8;
}

.ocr-highlight { color: var(--accent-amber); }

.ocr-arrow {
  text-align: center;
  padding: var(--sp-sm) 0;
  font-size: 18px;
  color: var(--primary);
}

.ocr-result {
  background: var(--canvas);
  border-radius: var(--r-md);
  padding: var(--sp-md);
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}

.ocr-row {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

.ocr-label {
  font-size: 11px;
  color: var(--muted);
  width: 70px;
  flex-shrink: 0;
}

.ocr-val         { font-size: 13px; font-weight: 500; color: var(--ink); }
.ocr-val--accent { color: var(--primary); }

/* Drug Conflict Visual */
.conflict-visual {
  margin-top: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.conflict-item {
  background: var(--surface-dark-el);
  border-radius: var(--r-md);
  padding: var(--sp-sm) var(--sp-md);
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

.conflict-item--warn { background: rgba(232, 165, 90, 0.12); }
.conflict-item--safe { background: rgba(93, 184, 114, 0.10); }

.conflict-dot      { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot--warn         { background: var(--accent-amber); }
.dot--safe         { background: var(--success); }

.conflict-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--on-dark);
  flex: 1;
}

.conflict-badge {
  font-size: 10px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: var(--r-pill);
  flex-shrink: 0;
}

.badge--warn { background: rgba(232, 165, 90, 0.15); color: var(--accent-amber); }
.badge--safe { background: rgba(93, 184, 114, 0.15); color: var(--success); }


/* PDF Visual */
.pdf-visual {
  margin-top: var(--sp-lg);
  background: var(--surface-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--hairline);
}

.pdf-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-xs) var(--sp-md);
  background: var(--surface-dark);
}

.pdf-logo { font-size: 11px; font-weight: 500; color: var(--on-dark); font-family: var(--font-display); }
.pdf-date { font-size: 10px; color: var(--on-dark-soft); }

.pdf-section-title {
  font-size: 11px;
  font-weight: 500;
  color: var(--body-strong);
  padding: var(--sp-xs) var(--sp-md);
  border-bottom: 1px solid var(--hairline);
}

.pdf-table { padding: 0 var(--sp-md); }

.pdf-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: var(--sp-xs);
  padding: 6px 0;
  font-size: 11px;
  color: var(--body);
  border-bottom: 1px solid var(--hairline-soft);
}

.pdf-row:last-child { border-bottom: none; }

.pdf-row--head {
  font-size: 10px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pdf-footer {
  display: flex;
  gap: var(--sp-xs);
  padding: var(--sp-xs) var(--sp-md);
  border-top: 1px solid var(--hairline);
}

.pdf-chip {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 12px;
  border-radius: var(--r-pill);
  background: var(--primary);
  color: var(--on-primary);
}

/* Note Visual */
.note-visual {
  margin-top: var(--sp-lg);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-sm);
}

.note-rx-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}

.note-rx {
  padding: var(--sp-xs) var(--sp-sm);
  border-radius: var(--r-sm);
  background: var(--surface-soft);
  border: 1px solid var(--hairline);
}

.note-rx--active {
  background: var(--primary);
  border-color: var(--primary);
}

.note-rx-date {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 2px;
}

.note-rx--active .note-rx-date { color: rgba(255, 255, 255, 0.65); }

.note-rx-name {
  font-size: 11px;
  font-weight: 500;
  color: var(--body-strong);
}

.note-rx--active .note-rx-name { color: var(--on-primary); }

.note-detail {
  background: var(--surface-soft);
  border-radius: var(--r-sm);
  border: 1px solid var(--hairline);
  padding: var(--sp-sm);
}

.note-detail-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--body-strong);
  padding-bottom: var(--sp-xs);
  margin-bottom: var(--sp-xs);
  border-bottom: 1px solid var(--hairline);
}

.note-detail-row { display: flex; flex-direction: column; gap: 2px; margin-top: var(--sp-xs); }
.note-detail-key { font-size: 10px; font-weight: 500; color: var(--muted); letter-spacing: 0.5px; text-transform: uppercase; }
.note-detail-val { font-size: 11px; color: var(--body); }
.note-detail-warn { color: var(--accent-amber); }

/* Multi-Profile Visual */
.multi-visual {
  margin-top: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.multi-profile {
  background: var(--surface-dark-el);
  border-radius: var(--r-md);
  padding: var(--sp-sm) var(--sp-md);
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

.multi-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.multi-name    { font-size: 13px; font-weight: 500; color: var(--on-dark); margin-bottom: 2px; }
.multi-status  { display: flex; align-items: center; gap: 4px; font-size: 11px; color: var(--on-dark-soft); }
.multi-dot     { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.multi-dot--done    { background: var(--success); }
.multi-dot--pending { background: var(--accent-amber); }

.multi-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: var(--r-pill);
  background: rgba(93, 184, 114, 0.15);
  color: var(--success);
  flex-shrink: 0;
}

.multi-badge--pending {
  background: rgba(232, 165, 90, 0.15);
  color: var(--accent-amber);
}


/* ─── HOW IT WORKS ───────────────────────────────────────── */
.how { background: var(--surface-dark); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-lg);
}

.step-card { padding: var(--sp-xl) var(--sp-md) var(--sp-xl) 0; }
.step-card:last-child { padding-right: 0; }

.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  color: rgba(250, 249, 245, 0.12);
  line-height: 1;
  margin-bottom: var(--sp-md);
}

.step-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--on-dark);
  margin-bottom: var(--sp-sm);
}

.step-desc {
  font-size: 14px;
  color: var(--on-dark-soft);
  line-height: 1.6;
}


/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonials { background: var(--canvas); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}

.testi-card {
  background: var(--surface-card);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
}

.testi-card--dark {
  background: var(--surface-dark);
}

.testi-stars {
  color: var(--primary);
  font-size: 14px;
  margin-bottom: var(--sp-md);
}

.testi-stars--amber { color: var(--accent-amber); }

.testi-quote {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: var(--sp-lg);
}

.testi-card--dark .testi-quote { color: var(--on-dark); }

.testi-author {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: var(--primary-disabled);
  flex-shrink: 0;
}

.testi-name { font-size: 14px; font-weight: 500; color: var(--ink); }
.testi-card--dark .testi-name { color: var(--on-dark); }

.testi-role { font-size: 12px; color: var(--muted); }
.testi-card--dark .testi-role { color: var(--on-dark-soft); }


/* ─── CTA CORAL ──────────────────────────────────────────── */
.cta-section { padding-top: 0; padding-bottom: var(--sp-section); }

.cta-coral {
  background: var(--primary);
  border-radius: var(--r-lg);
  padding: 64px;
  text-align: center;
  margin: 0 var(--sp-xl);
}

.cta-coral-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  font-style: italic;
  color: var(--on-primary);
  margin-bottom: var(--sp-md);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.cta-coral-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--sp-xl);
}


/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--surface-dark);
  padding: 64px 0 var(--sp-xl);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--sp-xl);
  margin-bottom: 64px;
}

.footer-brand .nav-wordmark { color: var(--on-dark); margin-bottom: var(--sp-md); }

.footer-tagline {
  font-size: 14px;
  color: var(--on-dark-soft);
  line-height: 1.6;
  max-width: 240px;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--on-dark);
  margin-bottom: var(--sp-md);
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.footer-links a {
  font-size: 13px;
  color: var(--on-dark-soft);
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--on-dark); }
.footer-links a[data-placeholder] { opacity: 0.35; pointer-events: none; cursor: default; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: var(--sp-xl);
  font-size: 12px;
  color: var(--on-dark-soft);
}


/* ─── Animations ─────────────────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0);    }
}

.anim-fade-up {
  opacity: 0;
  animation: fade-up 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .anim-fade-up   { animation: none; opacity: 1; }
  .call-icon-wrap { animation: none; }
}


/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero .container     { gap: var(--sp-xl); }
  .features-grid       { grid-template-columns: repeat(2, 1fr); }
  .steps-grid          { grid-template-columns: repeat(2, 1fr); }
  .footer-top          { grid-template-columns: 1fr 1fr; gap: var(--sp-xl); }
}

@media (max-width: 768px) {
  .hero .container     { grid-template-columns: 1fr; gap: var(--sp-xxl); }
  .hero-float-badge    { display: none; }
  .features-grid       { grid-template-columns: 1fr; }
  .steps-grid          { grid-template-columns: 1fr; }
  .testi-grid          { grid-template-columns: 1fr; }
  .nav-links           { display: none; }
  .nav-hamburger       { display: flex; }
  .nav-right .btn-primary { display: none; }
  .cta-coral           { margin: 0 var(--sp-md); padding: var(--sp-xxl) var(--sp-xl); }
  .footer-top          { grid-template-columns: 1fr; }
  .footer-bottom       { flex-direction: column; gap: var(--sp-md); text-align: center; }
}
