/* ScanLog Master Platform — 공통 스타일 */
:root {
  --color-primary: #0a1628;
  --color-secondary: #1a3a5c;
  --color-accent: #00c8ff;
  --color-accent-hover: #00a8d8;
  --color-success: #00c87a;
  --color-warning: #ffb300;
  --color-danger: #ff4757;
  --color-bg: #f0f4f8;
  --color-card: #ffffff;
  --color-border: #dde3ea;
  --color-text: #1a2332;
  --color-text-sub: #5a6a7e;
  --color-text-light: #8a9ab0;
  --shadow-sm: 0 1px 4px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
  --radius: 12px;
  --radius-sm: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 15px; }
body {
  font-family: 'Pretendard', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  min-height: 100vh;
}

/* 타이포그래피 */
h1 { font-size: 1.8rem; font-weight: 700; }
h2 { font-size: 1.3rem; font-weight: 600; }
h3 { font-size: 1.1rem; font-weight: 600; }
p  { line-height: 1.6; color: var(--color-text-sub); }

/* 링크 */
a { color: var(--color-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* 버튼 */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px; border-radius: var(--radius-sm);
  font-size: .9rem; font-weight: 600; cursor: pointer;
  border: none; transition: all .2s;
}
.btn-primary {
  background: var(--color-accent); color: #fff;
}
.btn-primary:hover { background: var(--color-accent-hover); }
.btn-secondary {
  background: transparent; color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
}
.btn-secondary:hover { background: rgba(0,200,255,.08); }
.btn-danger { background: var(--color-danger); color: #fff; }
.btn-danger:hover { background: #e03040; }
.btn-success { background: var(--color-success); color: #fff; }
.btn-sm { padding: 6px 14px; font-size: .82rem; }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn-full { width: 100%; justify-content: center; }

/* 카드 */
.card {
  background: var(--color-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  border: 1px solid var(--color-border);
}
.card-title {
  font-size: 1rem; font-weight: 700;
  color: var(--color-text); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}

/* 폼 */
.form-group { margin-bottom: 16px; }
.form-label {
  display: block; font-size: .85rem; font-weight: 600;
  color: var(--color-text-sub); margin-bottom: 6px;
}
.form-control {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: .9rem; color: var(--color-text);
  background: #fff; transition: border-color .2s;
}
.form-control:focus {
  outline: none; border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(0,200,255,.12);
}
.form-hint { font-size: .8rem; color: var(--color-text-light); margin-top: 4px; }

/* 배지 */
.badge {
  display: inline-flex; align-items: center;
  padding: 3px 10px; border-radius: 20px;
  font-size: .78rem; font-weight: 600;
}
.badge-pending  { background: #fff3cd; color: #856404; }
.badge-approved { background: #d1f7e8; color: #0a7a4a; }
.badge-rejected { background: #fde8e8; color: #8a1010; }
.badge-suspended{ background: #e8edf3; color: #4a5568; }

/* 알림 */
.alert {
  padding: 12px 16px; border-radius: var(--radius-sm);
  font-size: .88rem; margin-bottom: 16px; border-left: 4px solid;
}
.alert-error   { background: #fff0f0; border-color: var(--color-danger); color: #8a1010; }
.alert-success { background: #f0fff6; border-color: var(--color-success); color: #0a5a30; }
.alert-info    { background: #f0faff; border-color: var(--color-accent); color: #0a3a5a; }

/* 네비게이션 */
.topbar {
  background: var(--color-primary);
  color: #fff; height: 60px;
  display: flex; align-items: center;
  padding: 0 28px; gap: 16px;
  box-shadow: var(--shadow-md); position: sticky; top: 0; z-index: 100;
}
.topbar-logo {
  font-size: 1.3rem; font-weight: 800;
  letter-spacing: -0.5px; color: #fff;
}
.topbar-logo span { color: var(--color-accent); }
.topbar-spacer { flex: 1; }
.topbar-user {
  font-size: .85rem; color: rgba(255,255,255,.7);
}

/* 사이드바 */
.layout { display: flex; min-height: calc(100vh - 60px); }
.sidebar {
  width: 220px; background: var(--color-card);
  border-right: 1px solid var(--color-border);
  padding: 20px 0; flex-shrink: 0;
}
.sidebar-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 20px; cursor: pointer;
  font-size: .9rem; font-weight: 500;
  color: var(--color-text-sub); transition: all .15s;
}
.sidebar-item:hover { background: rgba(0,200,255,.06); color: var(--color-accent); }
.sidebar-item.active {
  background: rgba(0,200,255,.1); color: var(--color-accent);
  font-weight: 700; border-right: 3px solid var(--color-accent);
}
.main-content { flex: 1; padding: 28px; overflow-y: auto; }

/* 그리드 */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* 통계 카드 */
.stat-card {
  background: var(--color-card);
  border-radius: var(--radius); padding: 20px;
  border: 1px solid var(--color-border);
  display: flex; flex-direction: column; gap: 8px;
}
.stat-value { font-size: 2rem; font-weight: 800; color: var(--color-text); }
.stat-label { font-size: .82rem; color: var(--color-text-light); font-weight: 500; }

/* 서비스 블록 카드 */
.service-card {
  background: var(--color-card);
  border-radius: var(--radius);
  border: 2px solid var(--color-border);
  padding: 20px; cursor: pointer; transition: all .2s;
  display: flex; flex-direction: column; gap: 10px;
}
.service-card:hover { border-color: var(--color-accent); box-shadow: var(--shadow-md); }
.service-card.selected { border-color: var(--color-accent); background: rgba(0,200,255,.04); }
.service-card.approved { border-color: var(--color-success); }
.service-icon { font-size: 2rem; }
.service-name { font-weight: 700; font-size: .95rem; }
.service-desc { font-size: .82rem; color: var(--color-text-sub); line-height: 1.5; }

/* 테이블 */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: .88rem; }
th { background: #f8fafc; padding: 10px 14px; text-align: left; font-weight: 600;
     color: var(--color-text-sub); border-bottom: 1.5px solid var(--color-border); }
td { padding: 11px 14px; border-bottom: 1px solid var(--color-border); color: var(--color-text); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: #fafbfc; }

/* 모달 */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  display: flex; align-items: center; justify-content: center; z-index: 999;
}
.modal {
  background: #fff; border-radius: var(--radius);
  padding: 28px; width: 480px; max-width: 95vw;
  box-shadow: var(--shadow-lg);
}
.modal-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; }
.modal-footer { display: flex; justify-content: flex-end; gap: 10px; margin-top: 20px; }

/* 로그인 페이지 */
.auth-page {
  min-height: 100vh; background: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
}
.auth-card {
  background: #fff; border-radius: 16px;
  padding: 40px; width: 420px; max-width: 95vw;
  box-shadow: var(--shadow-lg);
}
.auth-logo {
  text-align: center; margin-bottom: 28px;
}
.auth-logo h1 { font-size: 2rem; font-weight: 800; color: var(--color-primary); }
.auth-logo h1 span { color: var(--color-accent); }
.auth-logo p { font-size: .85rem; color: var(--color-text-sub); margin-top: 4px; }

/* 반응형 */
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .main-content { padding: 16px; }
}

/* 유틸 */
.text-right { text-align: right; }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.flex  { display: flex; }
.flex-center { display: flex; align-items: center; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.hidden { display: none !important; }
.loading { opacity: .6; pointer-events: none; }

/* Phase 3: 레이아웃 타입 */
body.layout-compact .sidebar { width: 180px; }
body.layout-compact .sidebar-item { padding: 9px 16px; font-size: .85rem; }
body.layout-compact .main-content { padding: 18px; }
body.layout-compact .card { padding: 16px; }
body.layout-compact .topbar { height: 52px; }

body.layout-enterprise .sidebar { width: 260px; }
body.layout-enterprise .sidebar-item { padding: 13px 24px; }
body.layout-enterprise .main-content { padding: 36px 40px; }
body.layout-enterprise .topbar { height: 72px; }
body.layout-enterprise .topbar-logo { font-size: 1.45rem; }

.brand-logo-img { height: 32px; max-width: 160px; object-fit: contain; vertical-align: middle; }
.topbar-brand-wrap { display: flex; align-items: center; gap: 10px; }

/* Phase 3: 브랜드 설정 UI */
.theme-preset-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 10px;
}
.theme-preset {
  border: 2px solid var(--color-border); border-radius: var(--radius-sm);
  padding: 10px; cursor: pointer; text-align: center; transition: all .15s;
  font-size: .78rem; font-weight: 600;
}
.theme-preset:hover { border-color: var(--color-accent); }
.theme-preset.active { border-color: var(--color-accent); box-shadow: 0 0 0 2px rgba(0,200,255,.2); }
.theme-preset-colors { display: flex; gap: 3px; justify-content: center; margin-bottom: 6px; }
.theme-preset-colors span { width: 18px; height: 18px; border-radius: 4px; }

.theme-preview-bar {
  height: 48px; border-radius: var(--radius-sm); margin-bottom: 16px;
  display: flex; align-items: center; padding: 0 16px; color: #fff; font-weight: 700;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}
.theme-preview-bar .accent-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--color-accent); margin-left: auto;
}

.color-input-row { display: flex; align-items: center; gap: 10px; }
.color-input-row input[type="color"] {
  width: 44px; height: 36px; border: none; padding: 0; cursor: pointer; background: none;
}
.color-input-row input[type="text"] { flex: 1; }

/* ── Landing Page (홈 · 이동의 기록) ── */
.landing-page {
  background: #060d18;
  color: #e8edf4;
  font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
}
.landing-page h1, .landing-page h2, .landing-page h3, .landing-page h4 {
  color: #f4f7fb;
  letter-spacing: -0.02em;
}
.landing-page p { color: #9aa8bc; }

.landing-nav {
  background: rgba(6, 13, 24, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: sticky; top: 0; z-index: 100;
}
.landing-nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px; height: 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.landing-logo {
  font-size: 1.15rem; font-weight: 700; letter-spacing: .12em;
  color: #fff; text-decoration: none;
}
.landing-logo span { color: #4db8d9; font-weight: 600; }
.landing-logo--footer { font-size: 1rem; }

.landing-nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.landing-nav-toggle span {
  display: block; width: 22px; height: 2px; background: #fff; border-radius: 1px;
}

.landing-nav-links {
  display: flex; align-items: center; gap: 28px;
}
.landing-nav-links a {
  color: #b8c4d4; text-decoration: none; font-size: .875rem; font-weight: 500;
  transition: color .2s;
}
.landing-nav-links a:hover { color: #fff; }
.landing-nav-links .btn-primary { color: #fff; }

.landing-admin-link { opacity: .45; font-size: .8rem !important; }
.landing-admin-link:hover { opacity: .75; }

/* Hero — cinematic media backdrop */
.home-hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}
.home-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.home-hero-video,
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-hero-video {
  opacity: 0;
  transition: opacity .6s ease;
  pointer-events: none;
}
.home-hero-video.is-active { opacity: 1; z-index: 2; }
#hero-canvas { z-index: 1; }
#hero-canvas.is-hidden { opacity: 0; pointer-events: none; }

.home-hero-media-shade {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(105deg, rgba(6, 13, 24, 0.94) 0%, rgba(6, 13, 24, 0.78) 42%, rgba(6, 13, 24, 0.35) 100%),
    linear-gradient(180deg, rgba(6, 13, 24, 0.3) 0%, rgba(6, 13, 24, 0.85) 100%);
  pointer-events: none;
}

.home-hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 100px 24px 80px;
}
.home-hero-copy { max-width: 560px; }

.home-eyebrow {
  font-size: .75rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: #4db8d9; margin-bottom: 20px;
}
.home-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; line-height: 1.25;
  margin-bottom: 20px; color: #f8fafc;
}
.home-hero h1 em {
  font-style: normal; color: #4db8d9;
}
.home-lead {
  font-size: 1.05rem; line-height: 1.75; color: #94a3b8; margin-bottom: 32px; max-width: 520px;
}
.home-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.btn-ghost {
  background: transparent; color: #e2e8f0;
  border: 1px solid rgba(255,255,255,.2); padding: 10px 20px;
  border-radius: var(--radius-sm); font-size: .9rem; font-weight: 600;
  text-decoration: none; transition: all .2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.04); text-decoration: none; }
.home-trust {
  list-style: none; display: flex; flex-wrap: wrap; gap: 20px;
  font-size: .8rem; color: #64748b; letter-spacing: .02em;
}
.home-trust li::before { content: '— '; color: #334155; }

/* (legacy journey-ring removed — see hero-motion.js) */

/* Sections */
.home-container { max-width: 1180px; margin: 0 auto; }
.home-section { padding: 88px 24px; }
.home-section--dark { background: #0a1628; }
.home-section--muted { background: #0f1a2e; }
.home-section-head { max-width: 640px; margin-bottom: 48px; }
.home-section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.home-section-head--center .home-section-desc { margin-left: auto; margin-right: auto; }
.home-section-eyebrow {
  font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: #4db8d9; margin-bottom: 12px;
}
.home-section-head h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 16px; }
.home-section-desc { font-size: .95rem; line-height: 1.75; color: #94a3b8; }

/* Lifecycle */
.lifecycle-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.lifecycle-card {
  padding: 28px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  transition: border-color .2s;
}
.lifecycle-card:hover { border-color: rgba(77, 184, 217, .3); }
.lifecycle-card--accent {
  border-color: rgba(77, 184, 217, .35);
  background: rgba(77, 184, 217, .06);
}
.lifecycle-phase {
  font-size: .72rem; font-weight: 600; letter-spacing: .1em; color: #4db8d9; margin-bottom: 12px;
}
.lifecycle-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.lifecycle-card p { font-size: .88rem; line-height: 1.65; margin-bottom: 16px; }
.lifecycle-tags {
  list-style: none; display: flex; flex-wrap: wrap; gap: 8px;
}
.lifecycle-tags li {
  font-size: .72rem; padding: 4px 10px; border-radius: 4px;
  background: rgba(255,255,255,.06); color: #94a3b8;
}

/* Connect diagram */
.connect-diagram {
  position: relative; max-width: 560px; margin: 0 auto 56px;
  min-height: 320px;
}
.connect-hub {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 140px; height: 140px; border-radius: 50%;
  border: 2px solid rgba(77, 184, 217, .5);
  background: rgba(6, 13, 24, .95);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; z-index: 2;
}
.connect-hub-title { font-weight: 700; font-size: 1rem; color: #f1f5f9; letter-spacing: .08em; }
.connect-hub-sub { font-size: .65rem; color: #64748b; margin-top: 4px; line-height: 1.4; }
.connect-spoke {
  position: absolute; width: 42%; padding: 16px 18px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.03);
}
.connect-spoke h4 { font-size: .9rem; margin-bottom: 6px; color: #e2e8f0; }
.connect-spoke p { font-size: .78rem; line-height: 1.5; margin: 0; }
.connect-spoke--vehicle { top: 0; left: 50%; transform: translateX(-50%); }
.connect-spoke--infra { bottom: 0; left: 0; }
.connect-spoke--people { bottom: 0; right: 0; }
.connect-spoke--device { top: 50%; right: 0; transform: translateY(-50%); width: 38%; }

.value-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 48px;
}
.value-item h4 { font-size: .95rem; margin-bottom: 10px; color: #e2e8f0; }
.value-item p { font-size: .85rem; line-height: 1.65; }

/* Blocks (home) */
.blocks-grid { display: flex; flex-direction: column; gap: 36px; }
.block-category-title {
  font-size: .85rem; font-weight: 600; letter-spacing: .06em;
  color: #64748b; margin-bottom: 16px; text-transform: uppercase;
}
.block-category-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px;
}
.block-card {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; padding: 20px; transition: border-color .2s, background .2s;
}
.block-card:hover {
  border-color: rgba(77, 184, 217, .35); background: rgba(77, 184, 217, .04);
}
.block-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.block-card-icon { font-size: 1.25rem; opacity: .85; }
.block-card-name { font-weight: 600; font-size: .92rem; color: #f1f5f9; }
.block-card-desc { font-size: .82rem; line-height: 1.6; margin-bottom: 12px; color: #94a3b8; }
.block-card-code {
  font-size: .7rem; color: #64748b; background: rgba(0,0,0,.25);
  padding: 3px 8px; border-radius: 4px;
}

.home-dashboard-cta {
  margin-top: 48px; padding: 28px 32px; border-radius: 12px;
  border: 1px solid rgba(77, 184, 217, .25);
  background: linear-gradient(135deg, rgba(77,184,217,.08), rgba(10,22,40,.6));
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.home-dashboard-cta h3 { font-size: 1.05rem; margin-bottom: 6px; }
.home-dashboard-cta p { font-size: .85rem; margin: 0; }

/* Onboarding */
.onboard-steps { list-style: none; display: grid; gap: 0; max-width: 640px; }
.onboard-steps li {
  display: flex; gap: 24px; padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.onboard-steps li:last-child { border-bottom: none; }
.onboard-num {
  font-size: .85rem; font-weight: 700; color: #4db8d9; letter-spacing: .05em; flex-shrink: 0;
  width: 32px;
}
.onboard-steps h4 { font-size: .95rem; margin-bottom: 6px; color: #e2e8f0; }
.onboard-steps p { font-size: .85rem; margin: 0; }

/* Footer */
.landing-footer {
  background: #060d18; border-top: 1px solid rgba(255,255,255,.06);
  padding: 48px 24px 32px;
}
.landing-footer-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: start;
}
.landing-footer-brand p { font-size: .8rem; margin-top: 8px; color: #64748b; }
.landing-footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.landing-footer-links a { color: #94a3b8; text-decoration: none; font-size: .85rem; }
.landing-footer-links a:hover { color: #fff; }
.landing-footer-copy {
  grid-column: 1 / -1; font-size: .75rem; color: #475569; margin-top: 16px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.05);
}

.hide-mobile { display: inline; }

@media (max-width: 960px) {
  .home-hero { min-height: 78vh; }
  .home-hero-content { padding: 88px 20px 64px; }
  .lifecycle-grid, .value-grid { grid-template-columns: 1fr; }
  .connect-diagram { min-height: 480px; max-width: 100%; }
  .connect-spoke { width: 46% !important; transform: none !important; }
  .connect-spoke--vehicle { top: 0; left: 27%; }
  .connect-spoke--device { top: auto; bottom: 42%; right: 4%; }
  .connect-spoke--infra { bottom: 0; left: 4%; }
  .connect-spoke--people { bottom: 0; right: 4%; }
}

@media (max-width: 768px) {
  .hide-mobile { display: none; }
  .landing-nav-toggle { display: flex; }
  .landing-nav-links {
    position: fixed; top: 64px; left: 0; right: 0;
    background: rgba(6, 13, 24, .98); flex-direction: column;
    padding: 24px; gap: 16px; border-bottom: 1px solid rgba(255,255,255,.08);
    transform: translateY(-120%); opacity: 0; pointer-events: none;
    transition: transform .25s, opacity .25s;
  }
  .landing-nav-links.open {
    transform: translateY(0); opacity: 1; pointer-events: auto;
  }
  .landing-nav-links a { width: 100%; text-align: center; padding: 8px 0; }
  .home-section { padding: 64px 20px; }
  .landing-footer-inner { grid-template-columns: 1fr; }
}

/* Legacy landing aliases (auth pages unaffected) */
.landing-hero, .landing-section, .landing-section-inner, .landing-badge, .landing-sub,
.landing-cta, .steps-grid, .step-card, .step-num { /* kept for compat if referenced */ }
