/* ============================================================
   배달톡 (BaedalTalk) — Landing page styles
   Deep dark + neon-green system, rider night-road mood
   ============================================================ */

@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

:root {
  --bg: #0e0f10;
  --bg-2: #121212;
  --surface: #1a1c1d;
  --surface-2: #222527;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);

  --green: #00e676;
  --green-soft: #34ed90;
  --cyan: #4ad6ff;
  --mint: #69f0c8;
  --orange: #ff6d00;
  --orange-soft: #ff9233;
  --red: #ff3d00;

  --white: #ffffff;
  --text: #f1f3f2;
  --muted: #a9b0ad;
  --faint: #6f7673;

  --brand-grad: linear-gradient(120deg, #00e676 0%, #2ee6b6 45%, #4ad6ff 100%);
  --radius: 18px;
  --radius-lg: 26px;
  --maxw: 1120px;
  --shadow-green: 0 12px 40px -10px rgba(0, 230, 118, 0.5);
  --shadow-card: 0 24px 60px -28px rgba(0, 0, 0, 0.9);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
section { position: relative; }
.sec-pad { padding: clamp(72px, 11vw, 130px) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--green);
  text-transform: none;
  padding: 7px 14px;
  border: 1px solid rgba(0, 230, 118, 0.35);
  border-radius: 100px;
  background: rgba(0, 230, 118, 0.07);
  white-space: nowrap;
}
.eyebrow.orange {
  color: var(--orange-soft);
  border-color: rgba(255, 109, 0, 0.4);
  background: rgba(255, 109, 0, 0.08);
}

h1, h2, h3 { font-weight: 800; line-height: 1.15; letter-spacing: -0.025em; color: var(--white); }

.sec-title {
  font-size: clamp(28px, 5.2vw, 46px);
  margin: 18px 0 0;
  text-wrap: balance;
}
.sec-lead {
  margin-top: 18px;
  font-size: clamp(16px, 2.2vw, 19px);
  color: var(--muted);
  max-width: 620px;
  text-wrap: pretty;
}
.grad-text {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 16px 26px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.25s ease, background 0.2s ease;
  min-height: 52px;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: #05140c;
  box-shadow: var(--shadow-green);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 50px -10px rgba(0, 230, 118, 0.65); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.09); border-color: rgba(255,255,255,0.28); }
.btn svg { width: 20px; height: 20px; }
.btn-lg { font-size: 18px; padding: 19px 34px; min-height: 60px; }

.cta-note { font-size: 13.5px; color: var(--faint); margin-top: 14px; }
.cta-note b { color: var(--muted); font-weight: 600; }

/* ---------- top campaign ribbon ---------- */
.ribbon {
  position: relative;
  z-index: 30;
  background: linear-gradient(90deg, rgba(0,230,118,0.16), rgba(74,214,255,0.12));
  border-bottom: 1px solid rgba(0, 230, 118, 0.22);
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  padding: 9px 16px;
}
.ribbon b { color: var(--green-soft); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(14, 15, 16, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo { display: flex; align-items: center; gap: 11px; }
.nav-logo img.mark { width: 34px; height: 34px; border-radius: 9px; }
.nav-logo img.word { height: 24px; width: auto; }
.nav-cta { display: none; }
@media (min-width: 720px) { .nav-cta { display: inline-flex; padding: 11px 20px; font-size: 14.5px; min-height: 0; } }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; padding: clamp(48px, 8vw, 86px) 0 clamp(60px, 9vw, 100px); }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(0, 230, 118, 0.16), transparent 60%),
    radial-gradient(900px 500px at 12% 12%, rgba(74, 214, 255, 0.12), transparent 62%),
    radial-gradient(700px 500px at 50% 120%, rgba(0, 230, 118, 0.10), transparent 60%);
}
.road-lines { position: absolute; inset: 0; opacity: 0.5; }
.road-lines span {
  position: absolute; left: -10%; right: -10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10) 20%, rgba(255,255,255,0.10) 80%, transparent);
  transform: rotate(-7deg);
}

.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center;
}
@media (min-width: 940px) { .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 30px; } }

.hero h1 { font-size: clamp(33px, 7vw, 60px); letter-spacing: -0.03em; }
.hero h1 .line2 { display: block; }
.hero-sub { margin-top: 22px; font-size: clamp(16px, 2.4vw, 19px); color: var(--muted); max-width: 540px; text-wrap: pretty; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }
.trust-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; margin-top: 22px; font-size: 13.5px; color: var(--muted); }
.trust-row .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }

/* phone mockup */
.phone {
  position: relative;
  width: min(300px, 78vw);
  margin: 0 auto;
  border-radius: 40px;
  padding: 11px;
  background: linear-gradient(155deg, #2b2f31, #141617 60%);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(255,255,255,0.05) inset;
}
.phone img { width: 100%; border-radius: 30px; display: block; }
.phone.glow { box-shadow: var(--shadow-card), 0 0 60px -12px rgba(0,230,118,0.45), 0 0 0 1px rgba(255,255,255,0.05) inset; }

.hero-phone-wrap { position: relative; }
.hero-phone-wrap .float-badge {
  position: absolute; z-index: 5;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 11px 14px;
  box-shadow: var(--shadow-card);
  font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 9px;
}
.float-badge .ic { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; flex-shrink: 0; font-size: 15px; }
.float-badge.a { top: 8%; left: -6%; }
.float-badge.b { bottom: 14%; right: -8%; }
@media (max-width: 480px){ .float-badge.a{ left: -2%; } .float-badge.b{ right: -2%; } }

/* ============================================================
   PAIN
   ============================================================ */
.pain-grid {
  display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 40px;
}
@media (min-width: 620px) { .pain-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .pain-grid { grid-template-columns: repeat(4, 1fr); } }
.pain-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.pain-card .emo { font-size: 30px; line-height: 1; }
.pain-card p { margin-top: 16px; font-size: 15.5px; color: var(--text); font-weight: 500; }
.pain-solve {
  margin-top: 34px; text-align: center;
  font-size: clamp(19px, 3vw, 26px); font-weight: 800; color: var(--white);
}
.pain-solve .grad-text { font-weight: 800; }

/* ============================================================
   VALUE 3 axes
   ============================================================ */
.value-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 46px; }
@media (min-width: 820px) { .value-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card {
  background: linear-gradient(180deg, var(--surface), #141617);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative; overflow: hidden;
}
.value-card .vnum { font-size: 13px; font-weight: 700; color: var(--faint); letter-spacing: 0.1em; }
.value-card h3 { font-size: 23px; margin-top: 14px; }
.value-card .vico {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  margin-bottom: 6px; font-size: 24px;
  background: rgba(0,230,118,0.1); border: 1px solid rgba(0,230,118,0.25);
}
.value-card p { margin-top: 12px; color: var(--muted); font-size: 15.5px; }

/* ============================================================
   FEATURE rows
   ============================================================ */
.feature {
  display: grid; grid-template-columns: 1fr; gap: 42px; align-items: center;
}
@media (min-width: 940px) {
  .feature { grid-template-columns: 1fr 1fr; gap: 56px; }
  .feature.reverse .feat-media { order: 2; }
}
.feat-copy h2 { font-size: clamp(26px, 4.4vw, 40px); margin-top: 16px; }
.feat-copy .sec-lead { margin-top: 16px; }
.feat-list { list-style: none; margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.feat-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 15.5px; color: var(--text); }
.feat-list li .tick {
  flex-shrink: 0; width: 22px; height: 22px; margin-top: 2px; border-radius: 7px;
  background: rgba(0,230,118,0.14); border: 1px solid rgba(0,230,118,0.3);
  display: grid; place-items: center;
}
.feat-list li .tick svg { width: 13px; height: 13px; stroke: var(--green); }
.feat-list li b { color: var(--white); font-weight: 700; }
.feat-mini-cta { margin-top: 28px; }
.mini-link {
  display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 15px;
  color: var(--green); 
}
.mini-link.orange { color: var(--orange-soft); }
.mini-link svg { width: 16px; height: 16px; transition: transform 0.2s; }
.mini-link:hover svg { transform: translateX(4px); }

/* media: phone(s) */
.feat-media { display: flex; justify-content: center; }
.phone-duo { display: flex; gap: 18px; justify-content: center; align-items: flex-end; }
.phone-duo .phone { width: min(220px, 44vw); }
.phone-duo .phone.back { transform: translateY(18px) rotate(-4deg); opacity: 0.92; }
.phone-trio { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; width: 100%; max-width: 460px; }
.phone-trio .phone { width: 100%; padding: 7px; border-radius: 26px; }
.phone-trio .phone img { border-radius: 20px; }
.phone-trio .phone::after { display: none; }

/* ============================================================
   REAR CAMERA — full-bleed orange section
   ============================================================ */
.rear {
  background:
    radial-gradient(900px 600px at 50% -10%, rgba(255,109,0,0.18), transparent 60%),
    linear-gradient(180deg, #140d06, #100b07 70%, var(--bg));
  border-top: 1px solid rgba(255,109,0,0.18);
  border-bottom: 1px solid rgba(255,109,0,0.14);
  overflow: hidden;
}
.rear .feat-list li .tick { background: rgba(255,109,0,0.16); border-color: rgba(255,109,0,0.34); }
.rear .feat-list li .tick svg { stroke: var(--orange-soft); }
.rear h2 .grad-text {
  background: linear-gradient(100deg, #ff8a3d, #ff6d00);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.rear .phone { box-shadow: var(--shadow-card), 0 0 70px -12px rgba(255,109,0,0.5), 0 0 0 1px rgba(255,255,255,0.05) inset; }

/* radar marker over phone */
.radar-wrap { position: relative; }
.radar-tag {
  position: absolute; z-index: 6; top: 16%; right: -4%;
  background: rgba(20,13,7,0.92); border: 1px solid rgba(255,109,0,0.4);
  border-radius: 14px; padding: 12px 15px; max-width: 215px;
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.9);
  font-size: 13.5px; font-weight: 600; color: #ffd8b0;
  display: flex; gap: 10px; align-items: center;
}
.radar-tag .spk { font-size: 18px; }
.radar-ping {
  position: absolute; z-index: 5; left: 50%; top: 46%;
  width: 14px; height: 14px; transform: translate(-50%,-50%);
}
.radar-ping .core { position: absolute; inset: 0; border-radius: 50%; background: var(--orange); box-shadow: 0 0 14px var(--orange); }
.radar-ping .ring {
  position: absolute; left: 50%; top: 50%; width: 14px; height: 14px;
  border: 2px solid var(--orange); border-radius: 50%; transform: translate(-50%,-50%);
  animation: radar 2.6s ease-out infinite;
}
.radar-ping .ring:nth-child(2) { animation-delay: 0.9s; }
.radar-ping .ring:nth-child(3) { animation-delay: 1.8s; }
@keyframes radar {
  0% { width: 14px; height: 14px; opacity: 0.8; }
  100% { width: 160px; height: 160px; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .radar-ping .ring { animation: none; opacity: 0; } }

/* ============================================================
   CAMPAIGN / BETA badge FOMO
   ============================================================ */
.campaign {
  background:
    radial-gradient(700px 460px at 50% 0%, rgba(0,230,118,0.16), transparent 62%),
    linear-gradient(180deg, #0c1410, var(--bg));
  border-top: 1px solid rgba(0,230,118,0.2);
}
.campaign-inner { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; text-align: center; }
@media (min-width: 860px){ .campaign-inner { grid-template-columns: 0.85fr 1.15fr; text-align: left; } }
.badge-wrap { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.badge-art {
  position: relative; width: 210px; height: 210px; margin: 0 auto;
  display: grid; place-items: center;
}
.badge-cap {
  font-size: 14px; font-weight: 600; color: var(--muted);
  border: 1px solid rgba(0,230,118,0.3); background: rgba(0,230,118,0.06);
  padding: 9px 16px; border-radius: 100px; white-space: nowrap;
}
.badge-cap b { color: var(--green-soft); font-weight: 800; }
.badge-art .halo {
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,230,118,0.34), transparent 65%);
  animation: glowpulse 3s ease-in-out infinite;
}
@keyframes glowpulse { 0%,100%{ transform: scale(1); opacity: 0.8;} 50%{ transform: scale(1.12); opacity: 1;} }
@media (prefers-reduced-motion: reduce){ .badge-art .halo { animation: none; } }
.badge-coin {
  position: relative; z-index: 2; width: 150px; height: 150px; border-radius: 50%;
  background: conic-gradient(from 210deg, #00e676, #2ee6b6, #4ad6ff, #00e676);
  display: grid; place-items: center;
  box-shadow: 0 16px 50px -12px rgba(0,230,118,0.6), inset 0 0 0 8px rgba(255,255,255,0.08);
}
.badge-coin .inner {
  width: 122px; height: 122px; border-radius: 50%; background: #05070d;
  display: grid; place-items: center; overflow: hidden;
  border: 1px solid rgba(0,230,118,0.4);
}
.badge-coin .inner img { width: 100%; height: 100%; object-fit: cover; }
.campaign-copy h2 { font-size: clamp(26px, 4.2vw, 40px); }
.campaign-copy p { margin-top: 18px; color: var(--muted); font-size: 16.5px; max-width: 560px; }
.campaign-copy .cdates { display: inline-flex; gap: 8px; align-items: center; margin-top: 22px; font-weight: 700; color: var(--green-soft); font-size: 15px; border: 1px solid rgba(0,230,118,0.3); padding: 9px 16px; border-radius: 100px; background: rgba(0,230,118,0.06); white-space: nowrap; }
.campaign-copy .btn { margin-top: 26px; }
.campaign-perks { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 24px; }
@media (min-width: 520px){ .campaign-perks { grid-template-columns: 1fr 1fr; } }
.perk {
  display: flex; gap: 13px; align-items: center; text-align: left;
  background: var(--surface); border: 1px solid rgba(0,230,118,0.28);
  border-radius: 14px; padding: 14px 16px;
}
.perk .pico {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  font-size: 20px; background: rgba(0,230,118,0.12); border: 1px solid rgba(0,230,118,0.3);
}
.perk b { display: block; color: var(--white); font-size: 14.5px; font-weight: 800; }
.perk span { color: var(--muted); font-size: 13px; line-height: 1.45; }
.perk .hl { color: var(--green-soft); }

/* ============================================================
   STEPS
   ============================================================ */
.steps { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 46px; counter-reset: step; }
@media (min-width: 760px){ .steps { grid-template-columns: repeat(3,1fr); } }
.step {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px 26px;
}
.step .snum {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  font-weight: 800; font-size: 19px; color: #05140c; background: var(--green);
  box-shadow: 0 8px 22px -8px rgba(0,230,118,0.7);
}
.step h3 { font-size: 19px; margin-top: 18px; }
.step p { margin-top: 9px; color: var(--muted); font-size: 14.5px; }
.steps-reward { margin-top: 26px; text-align: center; font-size: 16px; color: var(--muted); }
.steps-reward b { color: var(--green-soft); }

/* ============================================================
   CHECKLIST
   ============================================================ */
.check-band { background: linear-gradient(180deg, var(--bg), #0c0d0e); }
.check-grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 38px; max-width: 760px; }
@media (min-width: 680px){ .check-grid { grid-template-columns: 1fr 1fr; } }
.check-item {
  display: flex; gap: 13px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px;
  font-size: 15.5px; color: var(--text); font-weight: 500;
}
.check-item .cb {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 7px; margin-top: 1px;
  background: var(--green); display: grid; place-items: center;
}
.check-item .cb svg { width: 14px; height: 14px; stroke: #05140c; stroke-width: 3; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { margin-top: 40px; max-width: 800px; display: flex; flex-direction: column; gap: 12px; }
.faq {
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
}
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-weight: 700; font-size: 16.5px; color: var(--white);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .q { display: flex; gap: 12px; align-items: flex-start; }
.faq summary .q .qm { color: var(--green); font-weight: 800; flex-shrink: 0; }
.faq summary .chev { flex-shrink: 0; width: 22px; height: 22px; transition: transform 0.25s; stroke: var(--muted); }
.faq[open] summary .chev { transform: rotate(180deg); }
.faq .a { padding: 0 24px 23px 24px; color: var(--muted); font-size: 15.5px; line-height: 1.7; }
.faq .a { padding-left: 50px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final {
  text-align: center; overflow: hidden;
  background:
    radial-gradient(800px 500px at 50% 120%, rgba(0,230,118,0.2), transparent 60%),
    radial-gradient(700px 480px at 50% -20%, rgba(74,214,255,0.12), transparent 60%),
    var(--bg);
  border-top: 1px solid var(--line);
}
.final h2 { font-size: clamp(28px, 5.5vw, 52px); }
.final .slogan { display: inline-block; margin-bottom: 18px; }
.final p { margin: 18px auto 0; color: var(--muted); max-width: 520px; font-size: 17px; }
.final .hero-cta { justify-content: center; margin-top: 34px; }
.slg { font-weight: 800; letter-spacing: 0.02em; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: #0a0b0c; border-top: 1px solid var(--line); padding: 54px 0 130px; }
@media (min-width: 720px){ footer { padding-bottom: 60px; } }
.foot-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
@media (min-width: 720px){ .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.foot-brand img.word { height: 26px; margin-bottom: 16px; }
.foot-brand p { color: var(--muted); font-size: 14px; max-width: 320px; }
.foot-col h4 { font-size: 13px; color: var(--faint); font-weight: 700; letter-spacing: 0.06em; margin-bottom: 14px; }
.foot-col a, .foot-col p { display: block; color: var(--muted); font-size: 14.5px; margin-bottom: 10px; }
.foot-col a:hover { color: var(--green-soft); }
.foot-bottom {
  margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 10px 18px; justify-content: space-between;
  color: var(--faint); font-size: 13px;
}

/* ============================================================
   STICKY MOBILE DOWNLOAD BAR
   ============================================================ */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: rgba(14,15,16,0.9); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  padding: 11px 16px calc(11px + env(safe-area-inset-bottom));
  display: flex; align-items: center; gap: 12px;
  transform: translateY(110%); transition: transform 0.35s ease;
}
.sticky-bar.show { transform: translateY(0); }
.sticky-bar .sb-info { display: flex; align-items: center; gap: 10px; min-width: 0; }
.sticky-bar .sb-info img { width: 38px; height: 38px; border-radius: 10px; }
.sticky-bar .sb-info b { font-size: 14px; color: var(--white); display: block; }
.sticky-bar .sb-info span { font-size: 12px; color: var(--muted); }
.sticky-bar .btn { margin-left: auto; flex-shrink: 0; padding: 13px 20px; min-height: 48px; font-size: 14.5px; }
@media (min-width: 720px){ .sticky-bar { display: none; } }

/* ============================================================
   REVEAL animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1; transform: none; transition: none; } }

/* small print divider */
.kw-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #0c0d0e; }
.kw-strip .wrap { padding-top: 20px; padding-bottom: 20px; }
.kw-strip p { color: var(--faint); font-size: 13px; text-align: center; letter-spacing: 0.02em; }
.kw-strip b { color: var(--muted); font-weight: 600; }

/* ---------- video ---------- */
.video-frame {
  position: relative; max-width: 880px; margin: 44px auto 0;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-card), 0 0 70px -22px rgba(0, 230, 118, 0.45);
  background: #000;
}
.video-frame::before { content: ""; display: block; padding-top: 56.25%; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
