/* ══ RESET ════════════════════════════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ══ TOKENS ══════════════════════════════════════════════════════════════ */
:root {
  --orange:      #FFA403;
  --orange-dark: #E8920A;
  --orange-lo:   rgba(255,164,3,0.1);
  --orange-md:   rgba(255,164,3,0.18);
  --dark:        #09090F;
  --dark2:       #111118;
  --text-dark:   #0A0A12;
  --text-light:  #F2F2F6;
  --muted-dark:  rgba(10,10,18,0.55);
  --muted-light: rgba(242,242,246,0.55);
  --border-dark: rgba(10,10,18,0.1);
  --border-lite: rgba(255,255,255,0.1);
  --font:        'Inter', system-ui, sans-serif;
  --nav:         64px;
  --max:         1140px;
  --r:           20px;
}

/* ══ BASE ════════════════════════════════════════════════════════════════ */
body {
  font-family: var(--font);
  background: #fff;
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
em  { font-style: italic; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

/* ══ REVEAL ══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1) var(--d,0s),
              transform .65s cubic-bezier(.22,1,.36,1) var(--d,0s);
}
.reveal.in { opacity: 1; transform: none; }

/* ══ SECTION SHARED ══════════════════════════════════════════════════════ */
.eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 14px;
}
.sec-head { margin-bottom: 60px; }
.sec-title {
  font-size: clamp(1.9rem, 5.5vw, 3rem);
  font-weight: 900; letter-spacing: -.03em; line-height: 1.1;
  color: var(--text-dark);
}
.sec-title em { color: var(--orange); font-style: normal; }

/* ══ NAVBAR ═════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav); z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dark);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 2px 32px rgba(0,0,0,.07); }

.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.nav-logo {
  display: flex; align-items: center; gap: 9px;
  font-size: 17px; font-weight: 900; letter-spacing: -.02em; color: var(--text-dark);
  flex-shrink: 0;
}
.nav-logo img { width: 30px; height: 30px; object-fit: contain; }

.nav-links { display: none; gap: 28px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--muted-dark); transition: color .2s;
}
.nav-links a:hover { color: var(--text-dark); }
@media (min-width: 640px) { .nav-links { display: flex; } }

.btn-nav-cta {
  font-size: 13px; font-weight: 700;
  background: var(--dark); color: #fff;
  border-radius: 100px; padding: 9px 20px;
  transition: background .2s, transform .18s;
  white-space: nowrap; flex-shrink: 0;
}
.btn-nav-cta:hover { background: #222; transform: translateY(-1px); }

/* ══ HERO ════════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100svh; padding-top: var(--nav);
  background: linear-gradient(160deg, #FFFBF4 0%, #FFF8EE 30%, #FFFCF8 60%, #FFFFFF 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}

/* animated gradient mesh */
.hero-mesh {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(255,164,3,.14) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255,164,3,.07) 0%, transparent 70%);
}

.hero-inner {
  position: relative; z-index: 1;
  width: 100%; max-width: var(--max); margin: 0 auto;
  padding: 60px 24px 80px;
  display: flex; flex-direction: column;
  align-items: center; gap: 60px;
}
@media (min-width: 900px) {
  .hero-inner { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ── Hero left ──────────────────────────────────────────────────────── */
.hero-left { max-width: 560px; display: flex; flex-direction: column; align-items: flex-start; }

.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  background: #fff; border: 1.5px solid rgba(255,164,3,.35);
  color: #8a5a00; border-radius: 100px; padding: 7px 16px;
  margin-bottom: 28px;
  box-shadow: 0 2px 12px rgba(255,164,3,.12);
}
.pill-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 6px rgba(255,164,3,.6);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero-title {
  font-size: clamp(2.8rem, 10vw, 5.5rem);
  font-weight: 900; line-height: .98; letter-spacing: -.04em;
  color: var(--text-dark); margin-bottom: 24px;
}
.title-highlight {
  color: var(--orange);
  position: relative;
}
.title-highlight::after {
  content: '';
  position: absolute; left: 0; bottom: 4px; right: 0;
  height: 6px; border-radius: 3px;
  background: rgba(255,164,3,.2);
}

.hero-desc {
  font-size: clamp(15px, 2.5vw, 18px);
  color: var(--muted-dark); line-height: 1.65; margin-bottom: 40px;
}

/* ── Download button ────────────────────────────────────────────────── */
.btn-download {
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  background: var(--orange); color: #000;
  border-radius: 20px; padding: 22px 40px;
  font-size: 20px; font-weight: 900; letter-spacing: -.02em;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 32px rgba(255,164,3,.4), 0 2px 8px rgba(0,0,0,.1);
  width: 100%;
}
.btn-download:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 48px rgba(255,164,3,.5);
}
.btn-download:active { transform: translateY(0) scale(.98); }

.btn-download-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(0,0,0,.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.btn-download-icon svg { fill: #000; }
.btn-download-text { display: flex; flex-direction: column; gap: 1px; text-align: left; }
.btn-small { font-size: 11px; font-weight: 600; opacity: .6; letter-spacing: .06em; text-transform: uppercase; }
.btn-big   { font-size: 20px; font-weight: 900; letter-spacing: -.02em; line-height: 1; }

.btn-download-light {
  background: #fff; color: var(--text-dark);
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
}
.btn-download-light .btn-download-icon { background: var(--orange); }
.btn-download-light .btn-download-icon svg { fill: #000; }
.btn-download-light:hover { box-shadow: 0 16px 48px rgba(0,0,0,.2); }

.hero-cta-block { margin-bottom: 32px; width: 100%; }
.hero-ios { font-size: 12px; color: var(--muted-dark); margin-top: 12px; padding-left: 2px; }

/* ── Social proof ───────────────────────────────────────────────────── */
.hero-social {
  display: flex; flex-direction: column; gap: 10px;
  border-top: 1px solid var(--border-dark); padding-top: 20px; width: 100%;
}
@media (min-width: 480px) { .hero-social { flex-direction: row; align-items: center; gap: 20px; } }

.stars { display: flex; flex-direction: column; gap: 3px; }
.stars > span:first-child { font-size: 15px; color: var(--orange); letter-spacing: 2px; }
.stars-label { font-size: 12px; color: var(--muted-dark); font-weight: 500; }

.avatars { display: flex; align-items: center; gap: 6px; }
.av {
  width: 30px; height: 30px; border-radius: 50%;
  background: #f0e8d8; border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; margin-left: -8px;
}
.av:first-child { margin-left: 0; }
.avatars p { font-size: 12px; color: var(--muted-dark); font-weight: 500; margin-left: 4px; }

/* ══ PHONE MOCKUP ════════════════════════════════════════════════════════ */
.hero-right { position: relative; flex-shrink: 0; }

.phone-wrap {
  position: relative;
  cursor: default;
}

.phone {
  width: 260px; background: var(--dark);
  border-radius: 44px;
  border: 2px solid rgba(255,255,255,.12);
  box-shadow:
    0 40px 80px rgba(0,0,0,.3),
    0 0 0 1px rgba(255,255,255,.05),
    inset 0 1px 0 rgba(255,255,255,.08);
  overflow: hidden;
  position: relative; z-index: 1;
  transition: transform .1s linear;
}
@media (min-width: 900px) { .phone { width: 290px; } }

.phone-notch {
  width: 90px; height: 26px;
  background: var(--dark);
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  border-bottom: 2px solid rgba(255,255,255,.06);
}

.phone-screen {
  background: #0d0d14;
  padding: 0 0 8px;
}

.app-ui { padding: 12px 14px; }

.app-header {
  display: flex; align-items: center; gap: 7px; margin-bottom: 14px;
}
.app-logo { width: 20px; height: 20px; object-fit: contain; }
.app-name  { font-size: 13px; font-weight: 800; color: #fff; letter-spacing: -.01em; flex: 1; }
.app-timer-pill {
  font-size: 10px; font-weight: 700;
  background: rgba(255,164,3,.15); color: var(--orange);
  border-radius: 100px; padding: 4px 9px;
}

.app-section-label {
  font-size: 9px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.3);
  margin-bottom: 6px;
}

.app-habits { display: flex; flex-direction: column; gap: 5px; margin-bottom: 4px; }
.app-habit {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; color: rgba(255,255,255,.6);
}
.app-habit.done { color: rgba(255,255,255,.9); }
.habit-check {
  width: 16px; height: 16px; border-radius: 5px;
  background: rgba(255,164,3,.9);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; color: #000; font-weight: 900; flex-shrink: 0;
}
.habit-check.empty {
  background: transparent; border: 1.5px solid rgba(255,255,255,.2);
}

.app-tasks { display: flex; flex-direction: column; gap: 5px; }
.app-task {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: rgba(255,255,255,.6);
}
.app-task.done-task { color: rgba(255,255,255,.35); text-decoration: line-through; }
.app-task.active-task { color: #fff; font-weight: 600; }
.task-check {
  width: 16px; height: 16px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.2);
  flex-shrink: 0;
}
.task-check.checked {
  background: rgba(255,164,3,.9); border-color: transparent;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; color: #000; font-weight: 900;
}
.task-check.active {
  border-color: var(--orange);
  background: rgba(255,164,3,.1);
}
.task-focus {
  margin-left: auto; font-size: 9px; font-weight: 700;
  color: var(--orange); background: rgba(255,164,3,.12);
  border-radius: 100px; padding: 2px 7px; flex-shrink: 0;
}

.app-bar-chart { margin-top: 12px; }
.chart-label {
  font-size: 9px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 8px;
}
.chart-bars {
  display: flex; align-items: flex-end; gap: 5px; height: 44px;
}
.bar {
  flex: 1; background: rgba(255,164,3,.15); border-radius: 4px 4px 0 0;
  height: var(--h); position: relative;
  display: flex; align-items: flex-end; justify-content: center; padding-bottom: 2px;
  transition: background .3s;
}
.bar.hi { background: rgba(255,164,3,.8); }
.bar span { font-size: 7px; color: rgba(255,255,255,.3); font-weight: 600; position: absolute; bottom: -12px; }

.phone-home-bar {
  height: 28px; display: flex; align-items: center; justify-content: center;
  background: var(--dark);
}
.phone-home-bar::after {
  content: ''; width: 80px; height: 4px;
  background: rgba(255,255,255,.2); border-radius: 2px;
}

/* phone glow */
.phone-glow {
  position: absolute; inset: -20%; z-index: 0; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,164,3,.2) 0%, transparent 65%);
  filter: blur(30px); pointer-events: none;
  animation: glow-pulse 4s ease-in-out infinite;
}
@keyframes glow-pulse { 0%,100%{opacity:.7;transform:scale(1)} 50%{opacity:1;transform:scale(1.1)} }

/* floating badges */
.phone-badge {
  position: absolute; z-index: 2;
  font-size: 11px; font-weight: 700;
  background: #fff; color: var(--text-dark);
  border-radius: 100px; padding: 8px 14px;
  box-shadow: 0 8px 28px rgba(0,0,0,.14), 0 0 0 1px rgba(0,0,0,.05);
  white-space: nowrap;
}
.pb-1 { bottom: 15%; left: -40%; animation: badge-float 6s ease-in-out infinite; }
.pb-2 { top: 8%;    right: -35%; animation: badge-float 6s ease-in-out infinite .7s; }
.pb-3 { top: 44%;   left: -42%; animation: badge-float 6s ease-in-out infinite 1.4s; }
@keyframes badge-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

@media (max-width: 520px) {
  .pb-1 { left: 0; }
  .pb-2 { right: 0; }
  .pb-3 { left: 0; }
}

/* ══ STATS STRIP ═════════════════════════════════════════════════════════ */
.stats-strip {
  background: var(--dark);
  padding: 28px 24px;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.stats-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 24px;
}
.sstat { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.snum  { font-size: 26px; font-weight: 900; color: var(--orange); letter-spacing: -.03em; }
.slabel { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .1em; }
.sdiv  { width: 1px; height: 32px; background: rgba(255,255,255,.08); }
@media (max-width: 480px) { .sdiv { display: none; } }

/* ══ PAIN ════════════════════════════════════════════════════════════════ */
.pain {
  padding: 110px 0;
  background: linear-gradient(180deg, #fff 0%, #FAFAFA 100%);
}
.pain-cards {
  display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 64px;
}
@media (min-width: 640px) { .pain-cards { grid-template-columns: repeat(3, 1fr); } }

.pain-card {
  background: #fff; border: 1.5px solid #EBEBEB; border-radius: var(--r);
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,.04);
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.pain-card:hover {
  border-color: rgba(255,164,3,.3);
  box-shadow: 0 8px 32px rgba(255,164,3,.08);
  transform: translateY(-4px);
}
.pain-emoji { font-size: 36px; margin-bottom: 16px; }
.pain-card h3 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.pain-card p  { font-size: 14px; color: var(--muted-dark); line-height: 1.65; }

.pain-foky {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  text-align: center;
}
@media (min-width: 600px) { .pain-foky { flex-direction: row; text-align: left; justify-content: center; } }
.pain-foky img { width: 90px; flex-shrink: 0; }
.foky-bubble {
  background: var(--dark2); border-radius: var(--r); padding: 20px 24px;
  max-width: 360px;
}
.foky-bubble p    { font-size: 15px; font-style: italic; color: rgba(255,255,255,.75); line-height: 1.6; margin-bottom: 10px; }
.foky-bubble cite { font-size: 12px; color: rgba(255,255,255,.3); font-style: normal; }

/* ══ FEATURES ═════════════════════════════════════════════════════════════ */
.features { padding: 110px 0; background: #F7F7FA; }

.feat-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 640px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .feat-grid { grid-template-columns: repeat(4, 1fr); } }

.feat-card {
  background: #fff; border: 1.5px solid #EBEBEB; border-radius: var(--r);
  padding: 28px 22px;
  box-shadow: 0 2px 16px rgba(0,0,0,.04);
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.feat-card:hover {
  border-color: rgba(255,164,3,.3);
  box-shadow: 0 8px 32px rgba(255,164,3,.08);
  transform: translateY(-4px);
}
.feat-top {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px;
}
.feat-icon { font-size: 28px; }
.feat-num  { font-size: 12px; font-weight: 800; color: rgba(0,0,0,.15); letter-spacing: .06em; }
.feat-card h3 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.feat-card p  { font-size: 13px; color: var(--muted-dark); line-height: 1.65; margin-bottom: 16px; }

/* feature demos */
.feat-demo { border-radius: 12px; overflow: hidden; }

/* timer demo */
.timer-demo { display: flex; justify-content: center; padding: 8px 0; }
.timer-ring { position: relative; width: 80px; height: 80px; }
.timer-ring svg { transform: rotate(-90deg); width: 80px; height: 80px; }
.timer-track { fill: none; stroke: #F0F0F0; stroke-width: 6; }
.timer-prog  {
  fill: none; stroke: var(--orange); stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 213.6;
  stroke-dashoffset: 53;
  animation: timer-anim 25s linear infinite;
}
@keyframes timer-anim {
  from { stroke-dashoffset: 53; }
  to   { stroke-dashoffset: 213.6; }
}
.timer-num {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-size: 14px; font-weight: 800; color: var(--text-dark); letter-spacing: -.02em;
}

/* tasks demo */
.tasks-demo { display: flex; flex-direction: column; gap: 7px; }
.demo-task {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; color: var(--muted-dark);
  padding: 6px 8px; border-radius: 8px; background: #F7F7FA;
}
.demo-task.done-d { color: rgba(0,0,0,.25); text-decoration: line-through; }
.demo-task.active-d { color: var(--text-dark); font-weight: 700; background: #FFF8EE; }
.dcheck {
  width: 16px; height: 16px; border-radius: 50%; border: 1.5px solid #DDD; flex-shrink: 0;
}
.dcheck.c { background: var(--orange); border-color: transparent; display:flex;align-items:center;justify-content:center;font-size:9px;color:#000;font-weight:900; }
.dcheck.a { border-color: var(--orange); background: rgba(255,164,3,.1); }
.dtag { margin-left: auto; font-size: 10px; font-weight: 700; color: var(--orange); flex-shrink: 0; }

/* habits demo */
.habits-demo { display: flex; flex-direction: column; gap: 8px; }
.habit-row { display: flex; align-items: center; gap: 8px; }
.habit-name { font-size: 11px; font-weight: 600; color: var(--muted-dark); width: 54px; flex-shrink: 0; }
.habit-dots { display: flex; gap: 4px; }
.hdot {
  width: 14px; height: 14px; border-radius: 4px;
  background: #F0F0F0; border: 1px solid #E8E8E8;
  transition: background .3s;
}
.hdot.on { background: var(--orange); border-color: var(--orange-dark); }

/* notif demo */
.notif-demo { display: flex; flex-direction: column; gap: 8px; }
.notif-card {
  display: flex; align-items: flex-start; gap: 10px;
  background: #F7F7FA; border-radius: 12px; padding: 10px 12px;
  border: 1px solid #EBEBEB;
}
.notif-card.notif-night { background: var(--dark2); border-color: rgba(255,255,255,.08); }
.notif-night .notif-title { color: rgba(255,255,255,.9); }
.notif-night .notif-body  { color: rgba(255,255,255,.4); }
.notif-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.notif-title { font-size: 12px; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.notif-body  { font-size: 11px; color: var(--muted-dark); line-height: 1.4; }

/* ══ QUOTE ═══════════════════════════════════════════════════════════════ */
.quote-sec { padding: 80px 0; background: var(--dark); }
.qwrap {
  display: flex; flex-direction: column; align-items: center;
  gap: 28px; text-align: center; max-width: 680px; margin: 0 auto;
}
@media (min-width: 600px) { .qwrap { flex-direction: row; text-align: left; } }
.q-img { width: 88px; flex-shrink: 0; filter: drop-shadow(0 8px 20px rgba(0,0,0,.5)); }
blockquote p {
  font-size: clamp(17px, 3vw, 22px); font-style: italic;
  color: var(--text-light); line-height: 1.5; margin-bottom: 14px;
}
blockquote cite { font-size: 13px; color: var(--muted-light); font-style: normal; }

/* ══ CTA ═════════════════════════════════════════════════════════════════ */
.cta-sec {
  position: relative; overflow: hidden; padding: 110px 0;
}
.cta-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #FF9500 0%, #FFA403 40%, #FFB830 100%);
}
.cta-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 90% 50%, rgba(255,255,255,.15) 0%, transparent 70%);
}
/* subtle pattern */
.cta-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

.cta-wrap {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: flex-start; gap: 48px;
}
@media (min-width: 768px) {
  .cta-wrap { flex-direction: row; align-items: center; justify-content: space-between; }
}

.cta-title {
  font-size: clamp(2.5rem, 10vw, 5rem);
  font-weight: 900; letter-spacing: -.04em; line-height: .97;
  color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,.1);
  margin-bottom: 16px;
}
.cta-sub  { font-size: 16px; color: rgba(255,255,255,.8); line-height: 1.6; margin-bottom: 36px; }
.cta-btn-wrap { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.cta-ios { font-size: 12px; color: rgba(255,255,255,.65); padding-left: 2px; }

.cta-foky {
  width: clamp(140px, 28vw, 220px); flex-shrink: 0;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.15));
  animation: float-foky 5s ease-in-out infinite;
}
@keyframes float-foky {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* ══ FOOTER ═══════════════════════════════════════════════════════════════ */
.footer { padding: 40px 0; background: var(--dark); border-top: 1px solid rgba(255,255,255,.06); }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.footer-logo { display: flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 900; color: var(--text-light); }
.footer-logo img { width: 26px; height: 26px; object-fit: contain; }
.footer-tag  { font-size: 14px; color: var(--muted-light); }
.footer-nav  { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { font-size: 13px; color: var(--muted-light); transition: color .2s; }
.footer-nav a:hover { color: var(--text-light); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.18); }
