/* ═══════════════════════════════════════════════════════════
   이크에크 (eㅋeㅋ) 웹사이트 — 볼드·플레이풀 (네오 브루탈리즘)
   디자인 토큰: Figma Variables 동기 (app/lib/theme/ekek_tokens.dart 미러)
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Brand */
  --ekek-brand-primary: #B9E92E;        /* lime/400 */
  --ekek-brand-primary-pressed: #A3D615;/* lime/500 */
  --ekek-text-brand: #63850D;           /* lime/700 */
  --ekek-bg-brand-subtle: #EFFCC5;      /* lime/100 */
  --ekek-brand-secondary: #8B5FF2;      /* purple/500 */
  --ekek-brand-secondary-subtle: #EDE9FE;
  --ekek-accent-coral: #F65B33;         /* coral/500 */
  --ekek-accent-coral-subtle: #FFE4DB;  /* coral/100 */
  --ekek-text-accent: #DD4420;          /* coral/600 */

  /* Background */
  --ekek-bg-default: #FFFFFF;
  --ekek-bg-subtle: #FAFAF7;
  --ekek-bg-muted: #F4F4EF;
  --ekek-bg-inverse: #262622;           /* gray/900 */
  --ekek-bg-camera: #181815;            /* gray/950 */

  /* Text */
  --ekek-text-primary: #262622;
  --ekek-text-secondary: #6B6B62;
  --ekek-text-tertiary: #8C8C83;
  --ekek-text-inverse: #FAFAF7;
  --ekek-text-on-brand: #181815;

  /* Border */
  --ekek-border-default: #E8E8E1;
  --ekek-border-strong: #D6D6CE;
  --ink: #181815;                       /* 브루탈 보더·하드 섀도 잉크 */

  /* Radius */
  --ekek-radius-sm: 8px;
  --ekek-radius-md: 12px;
  --ekek-radius-lg: 16px;
  --ekek-radius-xl: 20px;
  --ekek-radius-sheet: 28px;
  --ekek-radius-full: 999px;

  /* Type */
  --font-kr: "Noto Sans KR", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-num: "Inter", var(--font-kr);

  /* Hard shadows (neo-brutal) */
  --shadow-sm: 3px 3px 0 var(--ink);
  --shadow-md: 5px 5px 0 var(--ink);
  --shadow-lg: 9px 9px 0 var(--ink);
}

/* ── 리셋 ─────────────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-kr);
  color: var(--ekek-text-primary);
  background: var(--ekek-bg-subtle);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── 공통 타이포·장식 ─────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-num);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  background: var(--ekek-bg-default);
  border: 2px solid var(--ink);
  border-radius: var(--ekek-radius-full);
  box-shadow: var(--shadow-sm);
  padding: 6px 16px;
  transform: rotate(-2deg);
  margin-bottom: 20px;
}
.eyebrow-on-dark { background: var(--ekek-brand-primary); color: var(--ekek-text-on-brand); }
section h2 {
  font-size: clamp(30px, 4.6vw, 48px);
  font-weight: 900;
  line-height: 1.26;
  letter-spacing: -0.02em;
}
/* 라임 형광펜 하이라이트 */
.hl, .hl-sm {
  font-style: normal;
  background: var(--ekek-brand-primary);
  border-radius: 12px;
  padding: 0 12px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  color: var(--ekek-text-on-brand);
}
.hl-sm { padding: 0 8px; border-radius: 8px; }
/* 기울임 유틸 */
.tilt-l { transform: rotate(-1.2deg); }
.tilt-r { transform: rotate(1.2deg); }

/* ═══════════ 헤더 ═══════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ekek-bg-subtle);
  border-bottom: 3px solid var(--ink);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { border-radius: 10px; border: 2px solid var(--ink); }
.logo-word {
  font-family: var(--font-num);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.logo-word em { font-style: normal; font-family: var(--font-kr); font-weight: 900; }
.header-nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
  font-size: 15px;
  font-weight: 700;
}
.header-nav a { padding-bottom: 2px; border-bottom: 3px solid transparent; }
.header-nav a:hover { border-bottom-color: var(--ekek-brand-primary); }
.header-cta {
  background: var(--ekek-brand-primary);
  color: var(--ekek-text-on-brand);
  font-size: 15px;
  font-weight: 900;
  padding: 9px 22px;
  border: 2px solid var(--ink);
  border-radius: var(--ekek-radius-full);
  box-shadow: var(--shadow-sm);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.header-cta:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--ink); }
.header-cta:active { transform: translate(2px, 2px); box-shadow: 0 0 0 var(--ink); }

/* ═══════════ 히어로 ═══════════ */
.hero {
  /* 그리드(모눈) 패턴 — 제품 모티프 */
  background-image:
    linear-gradient(rgba(38, 38, 34, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 38, 34, 0.055) 1px, transparent 1px);
  background-size: 36px 36px;
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

/* 스티커 배지 */
.sticker-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.sticker {
  display: inline-block;
  font-size: 14px;
  font-weight: 900;
  padding: 7px 15px;
  border: 2px solid var(--ink);
  border-radius: var(--ekek-radius-full);
  box-shadow: var(--shadow-sm);
  background: var(--ekek-bg-default);
}
.st-lime   { background: var(--ekek-brand-primary); transform: rotate(-3deg); }
.st-purple { background: var(--ekek-brand-secondary-subtle); transform: rotate(2deg); }
.st-coral  { background: var(--ekek-accent-coral-subtle); transform: rotate(-1.5deg); }

.hero h1 {
  font-size: clamp(40px, 5.8vw, 68px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 26px;
}
.hero h1 .hl {
  display: inline-block;
  margin-top: 12px;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-md);
}
.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 500;
  color: var(--ekek-text-secondary);
  margin-bottom: 36px;
}
.hero-sub strong { color: var(--ekek-text-primary); font-weight: 900; }
.hero-note { margin-top: 18px; font-size: 13px; font-weight: 700; color: var(--ekek-text-tertiary); }

/* 스토어 버튼 — 브루탈 Primary */
.store-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--ekek-brand-primary);
  color: var(--ekek-text-on-brand);
  padding: 12px 26px;
  border: 3px solid var(--ink);
  border-radius: var(--ekek-radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  cursor: default;
}
.store-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
  background: var(--ekek-brand-primary-pressed);
}
.store-btn:active { transform: translate(3px, 3px); box-shadow: 0 0 0 var(--ink); }
.store-btn small {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: rgba(24, 24, 21, 0.55);
  line-height: 1.3;
}
.store-btn span:last-child { font-size: 17px; font-weight: 900; line-height: 1.25; }
.store-icon { font-size: 22px; }

/* 폰 목업 */
.hero-phone {
  display: flex;
  justify-content: center;
  position: relative;
}
.phone {
  width: 320px;
  background: var(--ekek-bg-camera);
  border: 3px solid var(--ink);
  border-radius: 48px;
  padding: 12px;
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 24px;
  background: var(--ekek-bg-camera);
  border-radius: var(--ekek-radius-full);
  z-index: 2;
}
.phone-screen {
  background: var(--ekek-bg-default);
  border-radius: 38px;
  padding: 58px 16px 22px;
}
.phone-sticker {
  position: absolute;
  top: -14px;
  right: 2px;
  background: var(--ekek-accent-coral);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  padding: 8px 16px;
  border: 2px solid var(--ink);
  border-radius: var(--ekek-radius-full);
  box-shadow: var(--shadow-sm);
  transform: rotate(6deg);
  z-index: 3;
}
.app-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.app-back { font-size: 22px; font-weight: 700; }
.app-title { font-size: 15px; font-weight: 900; }
.app-gear { font-size: 15px; color: var(--ekek-text-tertiary); }
.countdown-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 12px;
  color: var(--ekek-text-secondary);
  margin-bottom: 14px;
}
.countdown {
  font-family: var(--font-num);
  font-size: 18px;
  font-weight: 800;
  color: var(--ekek-text-accent);
}
.vlog-grid { display: grid; grid-template-columns: 1fr; gap: 8px; margin-bottom: 12px; }
.cell {
  position: relative;
  border-radius: var(--ekek-radius-md);
  height: 76px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.cell-mine {
  background: var(--ekek-bg-inverse);
  outline: 3px solid var(--ekek-brand-primary);
  outline-offset: -1px;
}
.cell-filled, .cell-waiting { background: var(--ekek-bg-inverse); }
.cell-time {
  font-family: var(--font-num);
  font-size: 17px;
  font-weight: 800;
  color: var(--ekek-text-inverse);
}
.cell-text { font-size: 11px; color: rgba(250, 250, 247, 0.85); }
.cam-badge {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 28px;
  height: 28px;
  background: var(--ekek-brand-primary);
  border-radius: var(--ekek-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.cell-invite {
  background: var(--ekek-bg-subtle);
  border: 2px dashed var(--ekek-border-strong);
}
.invite-plus { font-size: 20px; font-weight: 700; color: var(--ekek-text-tertiary); }
.invite-label { font-size: 11px; color: var(--ekek-text-tertiary); }
.phone-caption {
  font-size: 10.5px;
  color: var(--ekek-text-tertiary);
  text-align: center;
  margin-bottom: 12px;
}
.phone-cta {
  width: 100%;
  border: 2px solid var(--ink);
  background: var(--ekek-brand-primary);
  color: var(--ekek-text-on-brand);
  font-family: var(--font-kr);
  font-size: 15px;
  font-weight: 900;
  padding: 14px 0;
  border-radius: var(--ekek-radius-full);
  cursor: default;
}

/* ═══════════ 마키 스트립 ═══════════ */
.marquee {
  background: var(--ekek-bg-camera);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
  transform: rotate(-1.2deg) scale(1.02);
  margin: -8px 0 8px;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  padding: 14px 0;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  color: var(--ekek-brand-primary);
  font-size: 17px;
  font-weight: 900;
  white-space: nowrap;
}
.marquee-track i {
  color: var(--ekek-text-inverse);
  font-style: normal;
  font-size: 14px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ═══════════ 어떻게 되나요 ═══════════ */
.how { padding: 104px 0; text-align: center; }
.how h2 { margin-bottom: 60px; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: left;
}
.step {
  background: var(--ekek-bg-default);
  border: 3px solid var(--ink);
  border-radius: var(--ekek-radius-xl);
  box-shadow: var(--shadow-md);
  padding: 28px 24px;
  position: relative;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.step:hover { transform: rotate(0deg) translate(-2px, -2px); box-shadow: 8px 8px 0 var(--ink); }
.step-num {
  position: absolute;
  top: -14px;
  right: 18px;
  font-family: var(--font-num);
  font-size: 15px;
  font-weight: 800;
  color: var(--ekek-text-on-brand);
  background: var(--ekek-brand-primary);
  width: 34px;
  height: 34px;
  border: 2px solid var(--ink);
  border-radius: var(--ekek-radius-full);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-emoji { font-size: 36px; margin-bottom: 16px; }
.step h3 { font-size: 18px; font-weight: 900; margin-bottom: 10px; letter-spacing: -0.01em; }
.step p { font-size: 14px; color: var(--ekek-text-secondary); }

/* ═══════════ 모드 패널 ═══════════ */
.mode { padding: 28px 0; }
.mode-panel {
  border: 3px solid var(--ink);
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  padding: 72px 64px;
}
.panel-dark { background: var(--ekek-bg-camera); color: var(--ekek-text-inverse); }
.panel-light { background: var(--ekek-bg-default); }
.mode-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.mode-copy h2 { margin-bottom: 20px; }
.mode-lead { font-size: 17px; margin-bottom: 28px; color: var(--ekek-text-secondary); }
.panel-dark .mode-lead { color: rgba(250, 250, 247, 0.72); }
.check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--ekek-text-secondary);
}
.panel-dark .check-list li { color: rgba(250, 250, 247, 0.72); }
.check-list li strong { color: var(--ekek-text-primary); font-weight: 700; }
.panel-dark .check-list li strong { color: var(--ekek-text-inverse); }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  background: var(--ekek-brand-primary);
  color: var(--ekek-text-on-brand);
  border: 2px solid var(--ink);
  border-radius: var(--ekek-radius-full);
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.panel-dark .check-list li::before { border-color: var(--ekek-brand-primary-pressed); }

/* 브이로그 비주얼: 슬롯 스트립 */
.slot-strip { display: flex; flex-direction: column; gap: 10px; }
.slot {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--ekek-bg-inverse);
  border: 2px solid rgba(250, 250, 247, 0.18);
  border-radius: var(--ekek-radius-lg);
  padding: 15px 20px;
}
.slot-time {
  font-family: var(--font-num);
  font-size: 20px;
  font-weight: 800;
  min-width: 72px;
}
.slot-desc { font-size: 14px; color: rgba(250, 250, 247, 0.66); }
.slot-missed { opacity: 0.45; }
.slot-now {
  border-color: var(--ekek-brand-primary);
  outline: 2px solid var(--ekek-brand-primary);
  outline-offset: -1px;
  transform: rotate(-1deg);
}
.slot-now .slot-time { color: var(--ekek-brand-primary); }
.visual-caption {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  color: var(--ekek-text-tertiary);
}
.panel-dark .visual-caption { color: rgba(250, 250, 247, 0.5); }

/* 그리드 비주얼: 3×3 데모 */
.grid-demo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
  background: var(--ekek-bg-subtle);
  padding: 12px;
  border: 3px solid var(--ink);
  border-radius: var(--ekek-radius-xl);
  box-shadow: var(--shadow-md);
  transform: rotate(-1.5deg);
}
.gcell {
  aspect-ratio: 1;
  border: 2px solid var(--ink);
  border-radius: var(--ekek-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gcell span { font-size: 26px; font-weight: 700; color: var(--ekek-text-tertiary); }
.g1 { background: linear-gradient(135deg, #B9E92E 0%, #7FB812 100%); }
.g2 { background: linear-gradient(135deg, #8B5FF2 0%, #5B2BC4 100%); }
.g3 { background: linear-gradient(135deg, #F65B33 0%, #C93A16 100%); }
.g4 { background: linear-gradient(135deg, #262622 0%, #4A4A42 100%); }
.g5 { background: var(--ekek-bg-default); border-style: dashed; border-color: var(--ekek-border-strong); }
.g6 { background: linear-gradient(135deg, #EFFCC5 0%, #B9E92E 100%); }
.g7 { background: linear-gradient(135deg, #EDE9FE 0%, #8B5FF2 100%); }
.g8 { background: linear-gradient(135deg, #FFE4DB 0%, #F65B33 100%); }
.g9 { background: linear-gradient(135deg, #6B6B62 0%, #262622 100%); }

/* ═══════════ 저장·공유 ═══════════ */
.share { padding: 104px 0; text-align: center; }
.share h2 { margin-bottom: 20px; }
.share-lead { font-size: 17px; color: var(--ekek-text-secondary); margin-bottom: 52px; }
.ratio-chips {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}
.ratio-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--ekek-bg-default);
  border: 3px solid var(--ink);
  border-radius: var(--ekek-radius-xl);
  box-shadow: var(--shadow-md);
  padding: 24px 32px;
  min-width: 150px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.ratio-chip:hover { transform: rotate(0deg) translate(-2px, -2px); box-shadow: 8px 8px 0 var(--ink); }
.ratio-box {
  display: block;
  border: 2px solid var(--ink);
  border-radius: 5px;
  margin-bottom: 8px;
}
.r916 { width: 28px; height: 48px; background: var(--ekek-bg-camera); }
.r45  { width: 38px; height: 48px; background: var(--ekek-brand-secondary); }
.r34  { width: 36px; height: 48px; background: var(--ekek-accent-coral); }
.r11  { width: 48px; height: 48px; background: var(--ekek-brand-primary); }
.ratio-chip strong { font-family: var(--font-num); font-size: 18px; font-weight: 800; }
.ratio-chip small { font-size: 13px; font-weight: 700; color: var(--ekek-text-secondary); }

/* ═══════════ eㅋeㅋ+ ═══════════ */
.plus { padding: 28px 0 104px; }
.plus-card {
  text-align: center;
  background: var(--ekek-brand-secondary-subtle);
  border: 3px solid var(--ink);
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  padding: 64px 40px;
}
.plus-badge {
  display: inline-block;
  font-family: var(--font-num);
  font-size: 15px;
  font-weight: 800;
  background: var(--ekek-brand-secondary);
  color: #fff;
  padding: 8px 20px;
  border: 2px solid var(--ink);
  border-radius: var(--ekek-radius-full);
  box-shadow: var(--shadow-sm);
  transform: rotate(-2deg);
  margin-bottom: 24px;
}
.plus-card h2 { margin-bottom: 16px; }
.plus-card p { font-size: 17px; color: var(--ekek-text-secondary); }

/* ═══════════ FAQ ═══════════ */
.faq { padding: 0 0 104px; }
.faq h2 { margin-bottom: 40px; }
.faq-list { max-width: 780px; }
.faq-list details {
  background: var(--ekek-bg-default);
  border: 3px solid var(--ink);
  border-radius: var(--ekek-radius-xl);
  padding: 20px 26px;
  margin-bottom: 14px;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.faq-list details[open] { box-shadow: var(--shadow-md); transform: translate(-2px, -2px); }
.faq-list summary {
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 36px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background: var(--ekek-brand-primary);
  border: 2px solid var(--ink);
  border-radius: var(--ekek-radius-full);
  font-family: var(--font-num);
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p {
  margin-top: 14px;
  font-size: 15px;
  color: var(--ekek-text-secondary);
}

/* ═══════════ 마지막 CTA ═══════════ */
.final-cta { padding: 0 0 104px; }
.final-card {
  text-align: center;
  background: var(--ekek-bg-camera);
  color: var(--ekek-text-inverse);
  border: 3px solid var(--ink);
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  padding: 80px 40px;
  /* 다크 카드 위 모눈 패턴 */
  background-image:
    linear-gradient(rgba(250, 250, 247, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 250, 247, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
}
.final-grid-deco {
  display: inline-grid;
  grid-template-columns: repeat(2, 56px);
  gap: 8px;
  margin-bottom: 32px;
  transform: rotate(-3deg);
}
.final-grid-deco span {
  width: 56px;
  height: 56px;
  background: var(--ekek-brand-primary);
  color: var(--ekek-text-on-brand);
  border: 2px solid var(--ink);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-num);
  font-size: 26px;
  font-weight: 800;
}
.final-card h2 { margin-bottom: 36px; }
.final-card .store-buttons { justify-content: center; }
.final-card .store-btn { border-color: var(--ekek-brand-primary-pressed); box-shadow: 5px 5px 0 rgba(185, 233, 46, 0.35); }
.final-card .store-btn:hover { box-shadow: 7px 7px 0 rgba(185, 233, 46, 0.45); }

/* ═══════════ 푸터 ═══════════ */
.site-footer {
  background: var(--ekek-bg-camera);
  color: var(--ekek-text-inverse);
  border-top: 3px solid var(--ink);
  padding: 48px 0;
}
.footer-inner { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
}
.footer-brand img { border-radius: 7px; }
.footer-links { display: flex; gap: 20px; font-size: 14px; }
.footer-links a { color: rgba(250, 250, 247, 0.72); border-bottom: 2px solid transparent; }
.footer-links a:hover { color: var(--ekek-brand-primary); border-bottom-color: var(--ekek-brand-primary); }
.footer-copy { margin-left: auto; font-size: 13px; color: rgba(250, 250, 247, 0.45); }

/* ═══════════ 반응형 ═══════════ */
.br-desktop { display: inline; }

@media (max-width: 960px) {
  .header-nav { display: none; }
  .hero { padding: 56px 0 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-copy { text-align: center; }
  .sticker-row, .store-buttons { justify-content: center; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .mode-panel { padding: 48px 32px; }
  .mode-inner { grid-template-columns: 1fr; gap: 44px; }
  .mode-inner-reverse .mode-visual { order: 2; }
  .br-desktop { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-copy { margin-left: 0; }
}

@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .step, .ratio-chip { transform: none; }
  .phone { width: 292px; transform: rotate(1.2deg); }
  .phone-sticker { right: -4px; }
  .mode-panel { padding: 40px 22px; border-radius: 24px; }
  .ratio-chip { min-width: calc(50% - 11px); padding: 20px 12px; }
  .ratio-chips { gap: 14px; }
  .marquee-track span { font-size: 15px; }
}
