/* ==========================================================
   HITCHHIKER landing — v2 (fresh, post-cache-bust)
   Based on hitchhiker-app.vercel.app brand tokens:
   soft pink→lavender bg, indigo+pink accents, fluffy rabbit,
   sparkle stars, poster-style screens.
   ========================================================== */

:root {
  --bg-a: #fce9f2;
  --bg-b: #e5dcfb;
  --ink: #232329;
  --sub: #5b566c;
  --card: #ffffff;
  --accent: #4b57fa;
  --accent-soft: rgba(75,87,250,0.12);
  --pink: #ff5d9f;
  --pink-soft: rgba(255,93,159,0.15);
  --line: rgba(35,35,41,0.08);
  --maxw: 1200px;
  --pretendard: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --primary-400: var(--accent);
  --secondary-500: var(--pink);
  --secondary-tinted: var(--pink-soft);
  --txt-secondary: var(--pink);
  --txt06: var(--ink);
  --txt05: var(--sub);
  --txt04: rgba(91,86,108,0.7);
  --white: #fff;
}

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

body {
  font-family: var(--pretendard);
  color: var(--ink);
  background:
    radial-gradient(1200px 800px at 15% 10%, var(--bg-a) 0%, transparent 60%),
    radial-gradient(1100px 900px at 90% 40%, var(--bg-b) 0%, transparent 55%),
    linear-gradient(180deg, #fbf4f8 0%, #f5eefc 50%, #f9f3fb 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.015em;
  line-height: 1.5;
}

img { max-width: 100%; }

/* Global type */
.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.035em;
  margin: 12px 0 14px;
  color: var(--ink);
}
.section-title .grad {
  background: linear-gradient(135deg, var(--accent), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-sub-c {
  color: var(--sub);
  font-size: 17px;
  line-height: 1.6;
  text-align: center;
  margin: 0 auto;
  max-width: 640px;
}
.eyebrow-tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

/* Stars */
.stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.stars .st {
  position: absolute;
  opacity: 0;
  filter: brightness(1.3);
  animation: twinkle 5s ease-in-out infinite;
}
.stars .s1 { top: 12%; left: 8%;  width: 80px;  animation-delay: 0s; }
.stars .s2 { top: 22%; right: 12%; width: 140px; animation-delay: 1.2s; }
.stars .s3 { top: 48%; left: 5%;   width: 100px; animation-delay: 2.5s; }
.stars .s4 { top: 62%; right: 8%;  width: 120px; animation-delay: 0.6s; }
.stars .s5 { top: 78%; left: 22%;  width: 90px;  animation-delay: 3.2s; }
.stars .s6 { top: 88%; right: 25%; width: 110px; animation-delay: 1.8s; }
.stars .s7 { top: 35%; left: 45%;  width: 60px;  animation-delay: 4.0s; }
.stars .s8 { top: 72%; right: 45%; width: 70px;  animation-delay: 2.0s; }

@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.7) rotate(0deg); }
  50% { opacity: 0.85; transform: scale(1) rotate(15deg); }
}
body.no-stars .stars { display: none; }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(20px, 4vw, 48px);
  background: rgba(255, 252, 253, 0.72);
  backdrop-filter: saturate(1.4) blur(18px);
  -webkit-backdrop-filter: saturate(1.4) blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 16px;
}
.nav-logo .logo-mark { width: 32px; height: 32px; border-radius: 8px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.lang-switch {
  position: relative;
}
.nav-links .lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--sub);
  background: white;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.15s, color 0.15s;
}
.nav-links .lang:hover { border-color: var(--ink); color: var(--ink); }
.nav-links .lang .lang-caret { transition: transform 0.2s; opacity: 0.6; }
.lang-switch.open .lang { border-color: var(--ink); color: var(--ink); }
.lang-switch.open .lang .lang-caret { transform: rotate(180deg); }
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(35,35,41,0.10);
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 0.15s, transform 0.15s;
  z-index: 60;
}
.lang-switch.open .lang-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.lang-menu li {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.12s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lang-menu li:hover { background: var(--accent-soft); }
.lang-menu li[aria-selected="true"] {
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
}
.lang-menu li[aria-selected="true"]::after {
  content: "✓";
  font-size: 12px;
}
.nav-cta {
  padding: 10px 18px;
  background: var(--ink);
  color: white;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); }

/* HERO */
.hero {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 60px clamp(20px, 4vw, 48px) 80px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  min-height: 82vh;
  overflow: visible;
}
.hero-rabbits {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero-rabbits .hr {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(75,87,250,0.18));
}
.hero-rabbits .hr1 {
  top: 50%;
  left: 50%;
  width: clamp(360px, 48vw, 620px);
  height: auto;
  transform: translate(-50%, -50%);
  opacity: 1;
  animation: heroBigBob 9s ease-in-out infinite;
}
@keyframes heroBigBob {
  0%, 100% { transform: translate(-50%, -50%) rotate(-3deg); }
  50%      { transform: translate(-50%, calc(-50% - 18px)) rotate(3deg); }
}
body.no-float .hero-rabbits .hr { animation: none !important; }
.hero-copy, .hero-mascot { position: relative; z-index: 2; }
.phone-bare {
  width: 100%;
  display: flex;
  justify-content: center;
}
.phone-bare img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(35,35,41,0.18));
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  color: var(--sub);
  box-shadow: 0 4px 16px rgba(35,35,41,0.04);
  margin-bottom: 20px;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-soft); }
  50% { box-shadow: 0 0 0 8px transparent; }
}
.hero-title {
  font-size: clamp(42px, 5.6vw, 76px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.04;
  margin: 0 0 20px;
}
.hero-title .grad {
  background: linear-gradient(135deg, var(--accent), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--sub);
  margin: 0 0 32px;
  max-width: 480px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* Store buttons */
.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 11px;
  min-width: 178px;
  min-height: 56px;
  padding: 9px 18px;
  border-radius: 13px;
  background: #19191f;
  color: white;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  box-shadow: 0 8px 22px rgba(35,35,41,0.18);
}
.store-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(35,35,41,0.2); }
.store-btn.ghost {
  background: white;
  color: var(--ink);
  border: 1px solid var(--line);
}
.store-icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
}
.store-btn.app-store .store-icon {
  width: 24px;
  height: 29px;
}
.store-btn.play-store .store-icon {
  width: 25px;
  height: 25px;
}
.store-btn .label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}
.store-btn .label .small {
  margin-bottom: 2px;
  font-size: 10px;
  font-weight: 600;
  opacity: 0.72;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.store-btn.app-store .label .small {
  text-transform: none;
  letter-spacing: 0;
}
.store-btn.big {
  min-width: 196px;
  min-height: 62px;
  padding: 10px 20px;
  border-radius: 15px;
}
.store-btn.big .store-icon { width: 28px; height: 28px; }
.store-btn.big.app-store .store-icon { width: 28px; height: 34px; }
.store-btn.big .label { font-size: 18px; }
.store-btn.big .label .small { font-size: 11px; }

/* Hero image */
.hero-mascot {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 580px;
}
.hero-uzu {
  position: relative;
  width: min(100%, 320px);
  margin: 0 auto;
  filter: drop-shadow(0 30px 50px rgba(75, 87, 250, 0.2))
          drop-shadow(0 10px 20px rgba(255,93,159,0.12));
  animation: heroFloat 6s ease-in-out infinite;
}
.hero-phone-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  background: #0e0e14;
  border-radius: 48px;
  padding: 12px;
  box-shadow:
    0 0 0 2px #1c1c26 inset,
    0 30px 60px rgba(75, 87, 250, 0.25);
}
.hero-phone-frame::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 28px;
  background: #0e0e14;
  border-radius: 999px;
  z-index: 3;
}
.hero-phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  background: #fff;
}
.hero-phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.hero-uzu .rabbit-peek {
  position: absolute;
  left: 50%;
  top: -90px;
  transform: translateX(-50%);
  width: 220px;
  height: 220px;
  object-fit: contain;
  animation: rabbitBob 4.5s ease-in-out infinite;
  filter: drop-shadow(0 18px 30px rgba(75,87,250,0.25))
          drop-shadow(0 6px 14px rgba(255,93,159,0.18));
  z-index: 4;
  pointer-events: none;
}
@keyframes rabbitBob {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(-3deg); }
  50%      { transform: translateX(-50%) translateY(-14px) rotate(3deg); }
}

/* Live hero phone */
.hp-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  background: #0e0e14;
  border-radius: 48px;
  padding: 11px;
  box-shadow:
    0 0 0 2px #1c1c26 inset;
}
.hp-screen {
  position: relative;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #fff 0%, #fdf6fb 100%);
  border-radius: 38px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hp-notch {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 92px; height: 24px;
  background: #0e0e14;
  border-radius: 999px;
  z-index: 30;
}
.hp-statusbar {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding: 14px 22px 4px;
  font-size: 12px; font-weight: 700;
  color: var(--ink);
  height: 40px;
  flex-shrink: 0;
}
.hp-sb-right { display: flex; gap: 4px; align-items: center; }
.hp-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 16px 10px;
  font-size: 13px; font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.hp-back, .hp-menu { font-size: 16px; color: var(--sub); cursor: pointer; }
.hp-title {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hp-rabbit {
  display: inline-grid; place-items: center;
  width: 18px; height: 18px;
  background: var(--pink-soft);
  border-radius: 5px;
  font-size: 11px;
}
.hp-chat {
  flex: 1;
  overflow-y: auto;
  padding: 14px 14px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  scrollbar-width: none;
}
.hp-chat::-webkit-scrollbar { display: none; }
.hp-msg {
  display: flex;
  animation: hpIn 0.4s cubic-bezier(.2,.8,.2,1) both;
}
.hp-msg.me { justify-content: flex-end; }
.hp-msg.bot { justify-content: flex-start; align-items: flex-end; gap: 6px; }
.hp-ava {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, #fce9f2, #e5dcfb);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.04);
}
.hp-card-emoji {
  width: 100%; aspect-ratio: 1/1;
  background: linear-gradient(135deg, #fce9f2, #e5dcfb);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 38px;
}
@keyframes hpIn {
  from { opacity: 0; transform: translateY(8px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.hp-bubble {
  max-width: 78%;
  padding: 9px 13px;
  border-radius: 16px;
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  overflow-wrap: anywhere;
  word-break: normal;
}
.hp-msg.me .hp-bubble {
  background: var(--pink-soft);
  color: var(--ink);
  border-radius: 16px 16px 4px 16px;
}
.hp-msg.bot .hp-bubble {
  background: #f3f3fa;
  color: var(--ink);
  border-radius: 16px 16px 16px 4px;
}
.hp-typing {
  display: flex; gap: 4px; align-items: center;
  padding: 11px 14px;
}
.hp-typing span {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--sub); opacity: 0.5;
  animation: dotBounce 1.2s ease-in-out infinite;
}
.hp-typing span:nth-child(2) { animation-delay: 0.18s; }
.hp-typing span:nth-child(3) { animation-delay: 0.36s; }

.hp-cards-row { display: flex; flex-direction: column; gap: 6px; animation: hpIn 0.5s ease both; }
.hp-time { font-size: 10px; color: var(--sub); margin: 4px 2px 0; }
.hp-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.hp-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 8px;
  display: flex; flex-direction: column;
  gap: 5px;
  animation: hpCardIn 0.5s cubic-bezier(.2,.8,.2,1) both;
  box-shadow: 0 4px 12px rgba(75,87,250,0.06);
}
@keyframes hpCardIn {
  from { opacity: 0; transform: translateY(10px) scale(0.94); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.hp-card img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  border-radius: 10px;
  display: block;
}
.hp-card-name {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}
.hp-card-chips {
  display: flex; flex-wrap: wrap; gap: 3px;
}
.hp-card-chips span {
  padding: 2px 6px;
  background: #f3f3fa;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 600;
  color: var(--sub);
  overflow-wrap: anywhere;
}
.hp-card-btn {
  margin-top: 2px;
  padding: 6px 8px;
  border: none;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 8px;
  font-family: var(--pretendard);
  font-size: 10px; font-weight: 700;
  cursor: pointer;
}
.hp-input {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 10px 8px 14px;
  margin: 8px 12px 14px;
  background: #f3f3fa;
  border-radius: 999px;
  font-size: 11px;
  color: var(--sub);
  flex-shrink: 0;
}
.hp-input span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hp-send {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--accent); color: white;
  display: grid; place-items: center;
  flex-shrink: 0;
}
body.no-float .hero-uzu,
body.no-float .hero-uzu .rabbit-peek,
body.no-float .cta-rabbit { animation: none !important; }

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes rabbitBob {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-16px) rotate(5deg); }
}
.mascot-glow {
  display: none;
}

/* COMING SOON — refined, centered */
.coming-soon {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto 96px;
  padding: clamp(40px, 6vw, 64px) clamp(24px, 5vw, 72px);
  background:
    radial-gradient(140% 90% at 50% 0%, rgba(255,93,159,0.05) 0%, transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.42), rgba(255,255,255,0.18));
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 32px;
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 24px 60px -24px rgba(75, 87, 250, 0.14),
    0 8px 24px -10px rgba(255, 93, 159, 0.08);
}
.cs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(255, 93, 159, 0.12);
  color: var(--pink);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0;
}
.cs-title {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--ink);
  text-wrap: balance;
  max-width: 560px;
}
.cs-sub {
  margin: 0;
  max-width: 480px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--sub);
  text-wrap: pretty;
}
.cs-form {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  max-width: 560px;
  padding: 6px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    0 1px 0 rgba(255,255,255,1) inset,
    0 8px 24px -10px rgba(35,35,41,0.08);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.cs-form:focus-within {
  background: rgba(255,255,255,0.85);
  border-color: rgba(75,87,250,0.35);
  box-shadow:
    0 0 0 4px var(--accent-soft),
    0 8px 24px -10px rgba(75,87,250,0.18);
}
.cs-form input {
  flex: 1;
  min-width: 0;
  padding: 13px 18px;
  border-radius: 999px;
  border: none;
  background: transparent;
  font-family: var(--pretendard);
  font-size: 14px;
  color: var(--ink);
  outline: none;
}
.cs-form input::placeholder { color: rgba(91,86,108,0.55); }
.cs-form button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 22px;
  border-radius: 999px;
  border: none;
  background: var(--ink);
  color: white;
  font-family: var(--pretendard);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
  box-shadow: 0 4px 14px -4px rgba(35,35,41,0.35);
  white-space: nowrap;
}
.cs-form button:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -6px rgba(75,87,250,0.5);
}
.cs-form button:hover .cs-btn-arrow { transform: translateX(2px); }
.cs-form .cs-btn-arrow { transition: transform 0.2s; opacity: 0.9; }
.cs-form.done button {
  background: linear-gradient(135deg, var(--accent), var(--pink));
  pointer-events: none;
}
.cs-form.done .cs-btn-arrow { display: none; }
[dir="rtl"] .cs-form .cs-btn-arrow { transform: scaleX(-1); }
[dir="rtl"] .cs-form button:hover .cs-btn-arrow { transform: scaleX(-1) translateX(2px); }

@media (max-width: 640px) {
  .coming-soon {
    margin: 0 16px 64px;
    padding: 32px 22px;
    gap: 14px;
    border-radius: 24px;
  }
  .cs-title { font-size: 20px; }
  .cs-sub { font-size: 13.5px; }
  .cs-form {
    flex-direction: column;
    padding: 10px;
    border-radius: 20px;
    gap: 8px;
  }
  .cs-form input {
    width: 100%;
    padding: 12px 16px;
    text-align: center;
    border-radius: 14px;
    background: rgba(255,255,255,0.7);
  }
  .cs-form button {
    width: 100%;
    justify-content: center;
    padding: 13px 18px;
    border-radius: 14px;
    font-size: 14px;
  }
  .cs-form button .cs-btn-arrow { display: inline; }
}

/* BLOCK */
.block {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 80px clamp(20px, 4vw, 48px);
}

/* SCREENS GRID */
.screens-section { padding-top: 0; }
.screens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.screen-card {
  position: relative;
  margin: 0;
  background: white;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 12px 40px rgba(75, 87, 250, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  align-self: start;
}
.screen-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(75, 87, 250, 0.14);
}
.screen-card img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 563/985;
  object-fit: cover;
  object-position: top center;
}
.screen-card.tall img { aspect-ratio: 563/985; }
.screen-card figcaption {
  padding: 20px 22px 24px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, white, #fbf6fb);
}
.screen-card figcaption h4 {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.screen-card figcaption p {
  margin: 0;
  font-size: 14px;
  color: var(--sub);
  line-height: 1.5;
}

/* DEMO SECTION */
.demo-section {
  position: relative;
  background:
    radial-gradient(800px 500px at 80% 30%, var(--accent-soft) 0%, transparent 65%),
    radial-gradient(700px 500px at 20% 80%, var(--pink-soft) 0%, transparent 65%);
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 80px clamp(24px, 4vw, 64px);
  max-width: calc(var(--maxw) - 40px);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.demo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.demo-steps { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 18px; }
.demo-steps li { display: flex; gap: 16px; align-items: flex-start; }
.demo-steps .n {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
}
.demo-steps b { display: block; margin-bottom: 2px; font-weight: 700; color: var(--ink); }
.demo-steps p { margin: 0; font-size: 14px; color: var(--sub); }
.demo-phone { display: grid; place-items: center; }

/* INTERACTIVE PHONE DEMO (PhoneDemo) */
.phone-stage {
  position: relative;
  width: 320px;
  max-width: 100%;
}
.phone-stage .sparkle {
  position: absolute;
  pointer-events: none;
  animation: twinkle 3.5s ease-in-out infinite;
  z-index: 5;
}
.localized-motion-stage {
  display: grid;
  place-items: center;
}
.localized-motion-shell {
  width: 100%;
  aspect-ratio: 940 / 1941;
  filter:
    drop-shadow(0 30px 60px rgba(75,87,250,0.22))
    drop-shadow(0 6px 16px rgba(35,35,41,0.14));
  animation: localizedPhoneIn 0.5s cubic-bezier(.2,.7,.3,1) both;
}
.localized-motion-shell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  user-select: none;
}
@keyframes localizedPhoneIn {
  from { opacity: 0; transform: translateY(10px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.phone {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  background: #0e0e14;
  border-radius: 48px;
  padding: 12px;
  box-shadow:
    0 0 0 2px #1c1c26 inset,
    0 30px 60px rgba(75,87,250,0.22),
    0 6px 16px rgba(35,35,41,0.14);
}
.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 36px;
  overflow: hidden;
  isolation: isolate;
}
.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 26px;
  background: #0e0e14;
  border-radius: 999px;
  z-index: 30;
}
.phone-statusbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 44px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 22px 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  z-index: 20;
}
.phone-statusbar .right { display: flex; gap: 4px; align-items: center; }

.screen {
  position: absolute;
  inset: 0;
  padding: 52px 18px 18px;
  background: linear-gradient(180deg, #fff 0%, #fdf6fb 100%);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.screen.active { opacity: 1; pointer-events: auto; }

.screen.figma-screen {
  padding: 0;
  background: #fff;
  overflow: hidden;
  container-type: size;
}
.figma-canvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 402px;
  height: 874px;
  transform: scale(calc(100cqw / 402px));
  transform-origin: 0 0;
  background: #fff;
  color: #232329;
  font-family: var(--pretendard);
  letter-spacing: 0;
}
.figma-status {
  width: 402px;
  height: 50px;
  padding: 21px 16px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: #000;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", var(--pretendard);
  font-size: 17px;
  line-height: 22px;
  font-weight: 700;
}
.figma-status.dark { color: #fff; }
.figma-levels { display: flex; align-items: center; gap: 7px; height: 13px; margin-top: 1px; }
.figma-menu {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  gap: 4px;
  color: #585866;
}
.figma-menu i {
  display: block;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.figma-menu.light { color: #fff; }
.figma-star { color: #cecee0; flex: 0 0 auto; }
.feed-canvas { overflow: hidden; }
.feed-dark {
  width: 402px;
  height: 196px;
  background: linear-gradient(180deg, #35353D 50.48%, #585866 100%);
  border-radius: 0 0 40px 0;
  color: #fff;
}
.feed-appbar {
  width: 402px;
  height: 58px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.feed-logo {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
}
.feed-search {
  width: 370px;
  height: 56px;
  margin: 0 16px;
  padding: 16px;
  border-radius: 30px;
  background: #fff;
  color: #232329;
  display: flex;
  align-items: center;
  gap: 12px;
}
.feed-search span {
  flex: 1;
  color: #c1c1d6;
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
}
.feed-search .filter { color: #585866; }
.feed-body {
  width: 402px;
  height: 580px;
  padding: 32px 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: #fff;
}
.feed-main-section {
  width: 370px;
  height: 394px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feed-main-section h3,
.feed-keyword-section h3 {
  margin: 0;
  color: #232329;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
}
.feed-carousel {
  width: 370px;
  height: 360px;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: visible;
  transform: translateX(-226px);
}
.feed-person {
  flex: 0 0 272px;
  width: 272px;
  height: 352px;
  padding: 16px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-radius: 32px;
  background: #fff;
  color: #232329;
  opacity: .5;
  animation: feedIn .48s ease both;
}
.feed-person:nth-child(2) { animation-delay: .08s; }
.feed-person:nth-child(3) { animation-delay: .16s; }
.feed-person.main {
  opacity: 1;
  box-shadow: 0 0 28px rgba(132,132,153,.15);
}
.feed-person.selected { transform: translateY(-4px); }
@keyframes feedIn {
  from { transform: translateY(14px); opacity: 0; }
}
.feed-person img {
  width: 240px;
  height: 240px;
  border-radius: 32px;
  object-fit: cover;
  object-position: center 28%;
}
.feed-person-row {
  width: 240px;
  height: 26px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.feed-person-row strong {
  flex: 1;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
}
.feed-person-tags {
  width: 240px;
  height: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  overflow: hidden;
}
.feed-person-tags em {
  height: 26px;
  padding: 6px 10px;
  border-radius: 12px;
  background: #ebebf5;
  color: #232329;
  font-size: 12px;
  line-height: 14px;
  font-style: normal;
  font-weight: 500;
}
.feed-person-tags em:nth-child(2) {
  color: #2934cc;
  background: rgba(71,82,247,.15);
}
.feed-banner {
  width: 370px;
  height: 60px;
  border: 0;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(242,242,250,.92), rgba(242,242,250,.72)),
    url("assets/star-optimized.png") center/cover;
}
.feed-keyword-section {
  width: 370px;
  height: 234px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.popular-keywords {
  width: 370px;
  height: 36px;
  display: flex;
  gap: 8px;
}
.popular-keywords span {
  height: 36px;
  padding: 7px 16px;
  border-radius: 16px;
  background: #f2f2fa;
  color: #232329;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
}
.popular-keywords .active {
  color: #fff;
  background: #35353d;
  font-weight: 600;
}
.feed-preview-card {
  width: 370px;
  height: 144px;
  padding: 16px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 20px rgba(132,132,153,.15);
  display: flex;
  gap: 16px;
}
.feed-preview-card > img {
  width: 110px;
  height: 110px;
  border-radius: 24px;
  object-fit: cover;
}
.feed-preview-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feed-preview-copy > div {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 26px;
}
.feed-preview-copy strong {
  flex: 1;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
}
.feed-preview-copy p {
  margin: 0;
  display: flex;
  gap: 6px;
}
.feed-preview-copy em {
  height: 26px;
  padding: 6px 10px;
  border-radius: 12px;
  background: #ebebf5;
  font-size: 12px;
  line-height: 14px;
  font-style: normal;
}
.feed-preview-copy em:nth-child(2) {
  color: #2934cc;
  background: rgba(71,82,247,.15);
}
.feed-preview-copy span {
  color: #232329;
  font-size: 14px;
  line-height: 22px;
}
.figma-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 402px;
  height: 98px;
  background: #fff;
}
.figma-bottom nav {
  width: 402px;
  height: 64px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  background: #fff;
  box-shadow: 0 -8px 16px rgba(46,46,93,.06);
}
.figma-nav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  padding-bottom: 10px;
  color: #a2a2bd;
}
.figma-nav-item b {
  font-size: 11px;
  line-height: 14px;
  font-weight: 500;
}
.figma-nav-item.active { color: #232329; }
.nav-icon {
  width: 24px;
  height: 24px;
  display: block;
  color: currentColor;
}
.nav-icon::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin: 3px;
  border-radius: 6px;
  background: currentColor;
  opacity: .9;
}
.nav-icon.scope::before { border-radius: 50% 50% 8px 8px; }
.nav-icon.mail::before { border-radius: 4px; }
.nav-icon.chat::before { border-radius: 50% 50% 50% 8px; }
.nav-icon.my::before { border-radius: 50%; }
.figma-nav-item.center {
  justify-content: flex-start;
  padding-bottom: 0;
}
.nav-rabbit {
  width: 60px;
  height: 60px;
  border-radius: 100px;
  background: #35353d;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 20px rgba(71,82,247,.15);
}
.figma-home-indicator {
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 144px;
  height: 5px;
  border-radius: 100px;
  background: #000;
  transform: translateX(-50%);
}

.screen.onboard-complete {
  padding: 78px 18px 22px;
  background: #fff;
  justify-content: space-between;
}
.ob-progress.complete {
  margin-bottom: 0;
}
.complete-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ink);
}
.complete-center h2 {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 800;
  letter-spacing: 0;
}
.complete-actions {
  display: grid;
  gap: 8px;
  padding: 0 8px;
}
.complete-actions button {
  width: 100%;
  height: 46px;
  border: 0;
  border-radius: 13px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}
.complete-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #6a5cff);
  box-shadow: 0 10px 24px rgba(75,87,250,0.34);
}
.complete-secondary {
  color: var(--ink);
  background: var(--line-2);
}

.screen.match-success-screen {
  padding: 0;
  background: transparent;
  overflow: hidden;
}
.match-success-screen .phone-statusbar {
  position: relative;
  color: var(--ink);
  height: 44px;
}
.match-success-screen .home-indicator {
  width: 118px;
  height: 4px;
  border-radius: 999px;
  background: #0e0e14;
  margin: 6px auto 8px;
}

/* Sign-in */
.screen.signin {
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: linear-gradient(180deg, #fce9f2 0%, #e5dcfb 100%);
}
.signin-logo-spark {
  position: relative;
  display: grid;
  place-items: center;
  color: var(--pink);
}
.signin-title { font-size: 20px; font-weight: 800; letter-spacing: -0.03em; margin: 0 0 6px; }
.signin-title .brand { color: var(--accent); }
.signin-sub { font-size: 13px; color: var(--sub); margin: 0; }
.sns-buttons { width: 100%; display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.sns-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: white;
  font-family: var(--pretendard);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  color: var(--ink);
}
.sns-btn.apple { background: #000; color: white; border-color: #000; }
.sns-btn.phone { background: var(--accent); color: white; border-color: var(--accent); }

/* Onboarding */
.screen.ob {
  padding: 78px 18px 18px;
  background: #fff;
}
.ob-progress {
  width: 156px;
  height: 9px;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  margin: 0 auto 28px;
  position: relative;
}
.ob-progress::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 3px;
  height: 4px;
  border-radius: 999px;
  background:
    linear-gradient(90deg,
      #4d5cff 0 19%,
      transparent 19% 25%,
      #7162f6 25% 44%,
      transparent 44% 50%,
      #a65fe7 50% 68%,
      transparent 68% 74%,
      #e85aa8 74% 93%,
      transparent 93% 100%);
}
.ob-progress::after {
  content: "✦ ✦ ✦ ✦";
  position: absolute;
  inset: -5px -3px auto;
  display: flex;
  justify-content: space-between;
  color: #b863ee;
  font-size: 9px;
  line-height: 1;
}
.ob-progress-fill {
  position: absolute;
  inset: 3px auto auto 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #4d5cff, #8e61ee, #e85aa8, #ff5d9f);
  opacity: 0;
  transition: width 0.6s ease;
}
.ob-header {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--ink);
  margin-bottom: 12px;
}
.mini-rabbit {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--pink-soft); color: var(--pink);
  display: grid; place-items: center;
}
.chat-area {
  flex: 1;
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 8px;
  padding: 0 2px 8px;
  scrollbar-width: none;
}
.chat-area::-webkit-scrollbar { display: none; }
.screen.ob .chat-area {
  gap: 10px;
  padding-bottom: 14px;
}
.chat-date { text-align: center; font-size: 10px; color: rgba(91,86,108,0.58); margin: 0 0 8px; }
.bubble-row { display: flex; align-items: flex-end; gap: 8px; }
.bubble-row.me { flex-direction: row-reverse; }
.screen.ob .bubble-row.me::after {
  content: "♥";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #ff7ab4, #ff4f97);
  font-size: 15px;
  transform: translateY(-22px);
}
.bubble-avatar {
  width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
  background: #f0f0f4; color: #a9a9b2;
  display: grid; place-items: center; overflow: hidden;
}
.bubble-avatar.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(1.25);
  opacity: .72;
}
.bubble {
  max-width: 76%;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.55;
  background: #f1f1f7;
  color: var(--ink);
}
.bubble.bot { background: #f1f1f7; }
.bubble.me {
  border-radius: 10px;
  background: #ffe4ef;
  color: #ff3f87;
}
.bubble.me.indigo { background: var(--accent); }
.bubble .b-name { color: var(--accent); }
.bubble .highlight { display: inline-block; }
.typing {
  background: #f1f1f7;
  border-radius: 14px;
  padding: 10px 14px;
  display: flex; gap: 4px; align-items: center;
}
.typing span {
  width: 5px; height: 5px; border-radius: 50%; background: var(--sub); opacity: 0.5;
  animation: dotBounce 1.2s ease-in-out infinite;
}
.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }

.input-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  background: #f1f1f7;
  border-radius: 10px;
  font-size: 12px;
  color: var(--sub);
  margin-top: 10px;
  position: relative;
  min-height: 44px;
}
.input-bar.typed { color: var(--ink); }
.input-bar .caret {
  display: inline-block; width: 1.5px; height: 14px; background: var(--accent);
  margin-left: 1px; vertical-align: middle;
  animation: caret 0.9s steps(1) infinite;
}
@keyframes caret { 50% { opacity: 0; } }
.input-bar .send {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--pink); color: white;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.input-bar .send.indigo { background: var(--accent); }
.onboarding-start-btn {
  width: 100%;
  height: 58px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), #6a5cff);
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(75,87,250,0.34);
}

/* Matching */
.screen.match-screen {
  align-items: center;
  text-align: center;
  padding-top: 60px;
}
.match-title { font-size: 16px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 4px; }
.match-title .hl { color: var(--accent); }
.match-sub { font-size: 12px; color: var(--sub); margin: 0 0 20px; }
.match-stage {
  position: relative;
  width: 220px; height: 220px;
  margin: 8px auto;
}
.match-orbit {
  position: absolute;
  border: 1.5px dashed var(--accent-soft);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}
.match-orbit.o1 { inset: 20px; }
.match-orbit.o2 { inset: 0; animation-direction: reverse; animation-duration: 22s; }
@keyframes spin { to { transform: rotate(360deg); } }
.match-center {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: var(--pink);
}
.rabbit-big { width: 38px; height: auto; }
.orbit-avatar {
  position: absolute;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--accent-soft);
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700; color: var(--accent);
  box-shadow: 0 4px 12px rgba(75,87,250,0.15);
}
.orbit-avatar.a1 { top: 0; left: 50%; transform: translateX(-50%); }
.orbit-avatar.a2 { right: 0; top: 50%; transform: translateY(-50%); }
.orbit-avatar.a3 { bottom: 0; left: 50%; transform: translateX(-50%); }
.orbit-avatar.a4 { left: 0; top: 50%; transform: translateY(-50%); }
.orbit-avatar.a5 { top: 18%; right: 18%; background: var(--pink); color: white; border-color: white; }
.match-keywords {
  display: flex; flex-wrap: wrap; gap: 6px; justify-content: center;
  margin-top: 14px;
}
.kw-chip {
  padding: 5px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 600;
  background: white; border: 1px solid var(--line); color: var(--ink);
}
.kw-chip.pink   { background: var(--pink-soft); color: var(--pink); border-color: transparent; }
.kw-chip.indigo { background: var(--accent-soft); color: var(--accent); border-color: transparent; }

/* Figma profile detail */
.profile-canvas {
  overflow: hidden;
  isolation: isolate;
}
.profile-head {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4;
  width: 402px;
  height: 104px;
  background: #fff;
}
.profile-appbar {
  width: 402px;
  height: 54px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.profile-back {
  width: 24px;
  height: 24px;
  position: relative;
}
.profile-back::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-left: 2px solid #585866;
  border-bottom: 2px solid #585866;
  transform: rotate(45deg);
}
.profile-title {
  flex: 1;
  height: 32px;
  padding-right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.profile-title strong {
  color: #232329;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
}
.ufo-icon {
  width: 32px;
  height: 32px;
  position: relative;
  display: block;
}
.ufo-icon::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(88,88,102,.5);
}
.ufo-icon::after {
  content: "";
  position: absolute;
  left: 1px;
  top: 15px;
  width: 30px;
  height: 12px;
  border-radius: 50%;
  background: #585866;
}
.profile-scroll {
  position: absolute;
  left: 0;
  top: 104px;
  width: 402px;
  height: 736px;
  padding: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: #fff;
}
.profile-hero-content {
  width: 370px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.profile-detail-photo {
  width: 370px;
  height: 490px;
  border-radius: 24px;
  object-fit: cover;
  object-position: center 24%;
}
.profile-badges {
  width: 370px;
  min-height: 72px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.profile-badge {
  height: 32px;
  padding: 4px 12px;
  border-radius: 12px;
  background: #ebebf5;
  color: #232329;
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
}
.profile-badge.accent {
  color: #2934cc;
  background: rgba(71,82,247,.15);
}
.profile-section {
  width: 370px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.profile-section h3 {
  margin: 0;
  color: #232329;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
}
.profile-section p {
  margin: 0;
  min-height: 112px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #f9f9ff;
  color: #232329;
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
}
.profile-photo-stack {
  width: 370px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.profile-photo-stack img {
  width: 370px;
  height: 490px;
  border-radius: 24px;
  object-fit: cover;
}
.profile-like-button {
  position: absolute;
  left: 134px;
  bottom: 34px;
  z-index: 5;
  width: 134px;
  height: 60px;
  padding: 13px;
  border: 0;
  border-radius: 100px;
  background: #35353d;
  color: #fff;
  box-shadow: 0 4px 20px rgba(71,82,247,.15);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  cursor: pointer;
}
.profile-like-button .figma-star {
  width: 34px;
  height: 34px;
  color: #fff;
}
.profile-like-button span {
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
}
.profile-like-button.pulse { animation: likePulse .7s ease; }
.profile-indicator {
  z-index: 6;
}
@keyframes likePulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.18); }
  100% { transform: scale(1); }
}
.match-flash {
  position: absolute; inset: 44px 0 0 0;
  background: linear-gradient(135deg, var(--accent), var(--pink));
  display: grid; place-items: center;
  color: white;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
  z-index: 10;
}
.match-flash.show { opacity: 1; }
.match-flash-inner { text-align: center; padding: 24px; }
.match-flash h2 { font-size: 22px; font-weight: 800; margin: 0 0 4px; }
.match-flash p { font-size: 12px; opacity: 0.9; margin: 0 0 18px; }
.hearts { display: flex; justify-content: center; gap: -8px; }
.heart-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: white; color: var(--accent);
  display: grid; place-items: center;
  font-size: 18px; font-weight: 800;
  border: 3px solid white;
  overflow: hidden;
}
.heart-avatar + .heart-avatar { margin-left: -10px; }
.heart-avatar.photo img { width: 100%; height: 100%; object-fit: cover; }

/* Chat */
.screen.chat-screen {
  padding: 44px 14px 12px;
  background: #fff;
}
.chat-header {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 2px 10px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 4px;
  font-size: 13px;
  color: var(--ink);
}
.chat-header .back {
  width: 18px;
  color: var(--sub);
  font-size: 16px;
  cursor: pointer;
}
.chat-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fce9f2, #e5dcfb);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.04);
}
.chat-avatar.photo img { width: 100%; height: 100%; object-fit: cover; }
.chat-header .name { font-weight: 700; flex: 1; }
.chat-header .online { width: 7px; height: 7px; border-radius: 50%; background: #00e676; }
.chat-screen .chat-area {
  gap: 6px;
  padding: 10px 0 8px !important;
}
.chat-screen .chat-date {
  color: var(--sub);
  font-size: 10px;
  margin: 2px 0 8px;
}
.chat-screen .bubble-row {
  gap: 6px;
  animation: hpIn .4s cubic-bezier(.2,.8,.2,1) both;
}
.chat-screen .bubble-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fce9f2, #e5dcfb);
}
.chat-screen .bubble {
  max-width: 78%;
  padding: 9px 13px;
  border-radius: 16px;
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0;
  word-break: keep-all;
}
.chat-screen .bubble.me,
.chat-screen .bubble.me.indigo {
  border-radius: 16px 16px 4px 16px;
  background: var(--pink-soft);
  color: var(--ink);
}
.chat-screen .bubble.bot {
  border-radius: 16px 16px 16px 4px;
  background: #f3f3fa !important;
  color: var(--ink);
}
.chat-screen .typing {
  border-radius: 16px 16px 16px 4px;
  padding: 11px 14px;
  background: #f3f3fa;
}
.chat-screen .input-bar {
  min-height: 44px;
  margin-top: 6px;
  padding: 9px 10px 9px 14px;
  border-radius: 18px;
  background: #f3f3fa;
  color: var(--sub);
  font-size: 11px;
}
.chat-screen .input-bar .send {
  width: 28px;
  height: 28px;
  background: var(--accent);
}
.phones-row-section { padding-top: 40px; }
.phones-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 48px);
  align-items: start;
}
.phone-block {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
}
.phone-block.lifted { transform: translateY(-28px); }
.phone-block:hover { transform: translateY(-10px); }
.phone-block.lifted:hover { transform: translateY(-38px); }
.phone-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  background: var(--accent-soft);
  color: var(--accent);
}
.phone-pill.pink { background: var(--pink-soft); color: var(--pink); }
.phone-pill.ink  { background: var(--ink); color: white; }

/* Phone frame wrapping a screenshot */
.phone-frame {
  position: relative;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 9 / 19.5;
  background: #0e0e14;
  border-radius: 42px;
  padding: 10px;
  box-shadow:
    0 0 0 2px #1c1c26 inset,
    0 24px 50px rgba(75, 87, 250, 0.22),
    0 4px 12px rgba(35,35,41,0.12);
}
.phone-frame::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 26px;
  background: #0e0e14;
  border-radius: 999px;
  z-index: 3;
}
.phone-frame .phone-frame-screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #fff;
  position: relative;
}
.phone-frame .phone-frame-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.phone-block figcaption { margin-top: 28px; max-width: 280px; }
.phone-block figcaption h4 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.phone-block figcaption p {
  margin: 0;
  font-size: 14px;
  color: var(--sub);
  line-height: 1.55;
}

/* KW UNIVERSE */
.kw-universe {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  justify-content: center;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}
.kw-universe .kw {
  display: inline-block;
  padding: 10px 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  box-shadow: 0 6px 20px rgba(75,87,250,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: default;
}
.kw-universe .kw:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(75,87,250,0.14);
}
.kw-universe .k1  { font-size: 22px; background: var(--accent); color: white; border-color: transparent; }
.kw-universe .k2  { font-size: 15px; }
.kw-universe .k3  { font-size: 26px; background: var(--pink); color: white; border-color: transparent; }
.kw-universe .k4  { font-size: 17px; }
.kw-universe .k5  { font-size: 20px; background: var(--accent-soft); color: var(--accent); border-color: transparent; }
.kw-universe .k6  { font-size: 14px; }
.kw-universe .k7  { font-size: 19px; }
.kw-universe .k8  { font-size: 24px; background: var(--ink); color: white; border-color: transparent; }
.kw-universe .k9  { font-size: 16px; }
.kw-universe .k10 { font-size: 18px; background: var(--pink-soft); color: var(--pink); border-color: transparent; }
.kw-universe .k11 { font-size: 15px; }
.kw-universe .k12 { font-size: 21px; }
.kw-universe .k13 { font-size: 17px; background: var(--accent); color: white; border-color: transparent; }
.kw-universe .k14 { font-size: 19px; }
.kw-universe .k15 { font-size: 16px; }
.kw-universe .k16 { font-size: 22px; background: var(--pink-soft); color: var(--pink); border-color: transparent; }

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq-list .qa {
  border-bottom: 1px solid var(--line);
  background: transparent;
}
.faq-list .qa-q {
  margin: 0;
  padding: 22px 4px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
}
.faq-list .qa-q::-webkit-details-marker { display: none; }
.faq-list .qa-q:hover { color: var(--accent); }
.faq-list .qa-q .chev {
  font-size: 22px;
  font-weight: 300;
  color: var(--sub);
  transition: transform 0.25s ease;
  line-height: 1;
}
.faq-list .qa[open] .qa-q .chev { transform: rotate(45deg); }
.faq-list .qa-a {
  margin: 0;
  padding: 0 4px 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--sub);
  animation: faqFade 0.3s ease both;
}
@keyframes faqFade {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* FINAL CTA */
#download {
  position: relative;
  z-index: 2;
  padding: 40px clamp(20px, 4vw, 48px) 80px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.final-cta {
  position: relative;
  background: linear-gradient(135deg, var(--accent) 0%, #6d7afa 50%, var(--pink) 130%);
  border-radius: 36px;
  padding: 72px clamp(32px, 5vw, 72px);
  text-align: center;
  color: white;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(75, 87, 250, 0.3);
}
.final-cta h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 0 0 12px;
  position: relative;
  z-index: 2;
}
.final-cta p {
  font-size: 17px;
  opacity: 0.9;
  margin: 0 0 36px;
  position: relative;
  z-index: 2;
}
.cta-row {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.qr-card {
  background: white;
  padding: 16px 16px 12px;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  color: var(--ink);
}
.qr-inner { border-radius: 12px; overflow: hidden; }
.qr-brand {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--sub);
}
.qr-brand img { width: 16px; height: 16px; border-radius: 4px; }
.cta-stack { display: flex; flex-direction: column; gap: 10px; }
.cta-stack .store-btn {
  background: white;
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.cta-stack .store-btn.app-store {
  background: #19191f;
  color: white;
}
.cta-stack .store-btn.ghost {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(10px);
}
.cta-stack .store-btn.ghost:hover { background: rgba(255,255,255,0.22); }

.cta-rabbit {
  position: absolute;
  top: -40px;
  right: -30px;
  width: 220px;
  height: 220px;
  object-fit: contain;
  animation: rabbitBob 4.5s ease-in-out infinite;
  opacity: 0.9;
  z-index: 1;
}
.cta-stars { position: absolute; inset: 0; z-index: 1; }
.cta-stars .cs { position: absolute; filter: brightness(1.5); opacity: 0.9; }
.cta-stars .cs1 { top: 20%; left: 8%;  width: 70px; animation: twinkle 4s ease-in-out infinite; }
.cta-stars .cs2 { bottom: 20%; left: 25%; width: 50px; animation: twinkle 5s ease-in-out infinite 1s; }
.cta-stars .cs3 { top: 40%; left: 45%;  width: 40px; animation: twinkle 3s ease-in-out infinite 2s; }

/* FOOTER */
footer {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 32px clamp(20px, 4vw, 48px) 64px;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  align-items: end;
  gap: 24px;
  border-top: 1px solid var(--line);
}
.foot-main {
  display: grid;
  gap: 10px;
}
.foot-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.foot-brand img { width: 24px; height: 24px; border-radius: 6px; }
.foot-meta { color: var(--sub); font-size: 13px; }
.foot-connect {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  color: #6f695f;
}
.foot-connect a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  min-height: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, color .2s ease, opacity .2s ease;
}
.foot-connect svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}
.foot-connect .foot-about {
  min-width: auto;
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
}
.foot-connect a:hover {
  transform: translateY(-2px);
  color: var(--ink);
}

/* REVEAL */
html.js-reveal .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(.2,.8,.2,1), transform 0.8s cubic-bezier(.2,.8,.2,1);
}
html.js-reveal .reveal.visible { opacity: 1; transform: translateY(0); }

/* TWEAKS PANEL */
.tweaks-panel {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 280px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 20px 50px rgba(35,35,41,0.15);
  z-index: 100;
  display: none;
  font-family: var(--pretendard);
}
.tweaks-panel.open { display: block; }
.tweaks-panel h4 {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.tweaks-panel .muted { color: var(--sub); font-weight: 400; font-size: 12px; }
.tweaks-row { margin-bottom: 14px; }
.tweaks-row label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--sub);
  margin-bottom: 8px;
}
.swatches { display: flex; gap: 8px; }
.sw {
  width: 32px; height: 32px; border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s;
}
.sw:hover { transform: scale(1.08); }
.sw.active { border-color: var(--ink); }

/* UZU AI SECTION */
.uzu-section {
  padding: 80px clamp(20px, 4vw, 48px);
}
.uzu-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.uzu-copy .section-sub-c {
  text-align: left;
  max-width: 500px;
  margin: 0 0 28px;
}
.uzu-chat-preview {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 40px rgba(75,87,250,0.07);
  max-width: 400px;
}
.ucp-msg {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.ucp-msg.user { flex-direction: row-reverse; }
.ucp-ava {
  font-size: 20px;
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--pink-soft);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.ucp-bubble {
  background: #f3f3fa;
  border-radius: 16px 16px 16px 4px;
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink);
  max-width: 280px;
}
.ucp-bubble.user {
  background: var(--accent);
  color: white;
  border-radius: 16px 16px 4px 16px;
}
.ucp-msg.user .ucp-bubble { background: var(--accent); color: white; border-radius: 16px 16px 4px 16px; }
.ucp-typing {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ucp-dots {
  background: #f3f3fa;
  border-radius: 16px;
  padding: 10px 16px;
  display: flex;
  gap: 4px;
  align-items: center;
}
.ucp-dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sub);
  opacity: 0.5;
  animation: dotBounce 1.2s ease-in-out infinite;
}
.ucp-dots span:nth-child(2) { animation-delay: 0.2s; }
.ucp-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotBounce {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(-4px); opacity: 1; }
}
.uzu-phone {
  display: grid;
  place-items: center;
}
.uzu-phone > div {
  width: min(100%, 320px);
}
.uzu-screen-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 32px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(75,87,250,0.15);
  display: block;
}

/* PROFILE CARDS */
.profile-showcase-section { padding-top: 0; }
.profile-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pcard {
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(75,87,250,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.pcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(75,87,250,0.14);
}
.pcard.featured {
  transform: translateY(-16px);
  box-shadow: 0 24px 60px rgba(75,87,250,0.16);
  border-color: var(--accent);
}
.pcard.featured:hover { transform: translateY(-22px); }
.pcard-photos {
  position: relative;
}
.pcard-main {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.pcard-thumbs {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  background: white;
  border-bottom: 1px solid var(--line);
}
.pcard-thumbs img {
  width: 44px; height: 44px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--line);
}
.pcard-thumb-more {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent-soft);
}
.pcard-info {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pcard-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.pcard-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pchip {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: #f3f3fa;
  color: var(--sub);
  border: 1px solid var(--line);
}
.pchip.accent { background: var(--accent-soft); color: var(--accent); border-color: transparent; }
.pchip.pink   { background: var(--pink-soft);   color: var(--pink);   border-color: transparent; }
.pcard-bio {
  font-size: 13px;
  color: var(--sub);
  line-height: 1.5;
}
.pcard-btn {
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: white;
  font-family: var(--pretendard);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.pcard-btn:hover { background: var(--accent-soft); border-color: var(--accent); color: var(--accent); }
.pcard-btn.active { background: var(--accent); color: white; border-color: var(--accent); }
.pcard-match-badge {
  position: absolute;
  top: 12px; right: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(75,87,250,0.3);
}

@media (max-width: 900px) {
  .uzu-inner { grid-template-columns: 1fr; }
  .uzu-copy .section-sub-c { max-width: 100%; }
  .uzu-chat-preview { max-width: 100%; }
  .profile-cards { grid-template-columns: 1fr; }
  .pcard.featured { transform: none; }
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
    min-height: auto;
  }
  .hero-copy { order: 1; }
  .hero-mascot { order: 0; min-height: 360px; }
  .hero-uzu { width: 280px; }
  .hero-uzu .rabbit-peek { right: -30px; bottom: -20px; width: 120px; height: 120px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-badge { margin-inline: auto; }

  .screens-grid { grid-template-columns: repeat(2, 1fr); }
  .demo-inner { grid-template-columns: 1fr; text-align: center; }
  .demo-steps li { text-align: left; }
  .phones-row { grid-template-columns: 1fr; gap: 32px; }
  .phone-block.lifted { transform: none; }
  .phone-block.lifted:hover { transform: translateY(-10px); }
  .nav-links { display: none; }
  .cta-rabbit { width: 140px; top: -20px; right: -10px; }
}
@media (max-width: 560px) {
  .screens-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 40px; }
  footer {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .foot-connect {
    justify-content: flex-start;
    gap: 22px;
  }
}
