:root {
  --coral: #f5834e;
  --pink: #ed145b;
  --grad: linear-gradient(145deg, #f5834e 0%, #ed145b 100%);
  --bg: #fff5f7;
  --white: #ffffff;
  --ink: #111114;
  --muted: #6b6b76;
  --card-w: 280px;
  --card-h: 400px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1.25rem, 4vw, 3rem);
  max-width: 1200px;
  margin: 0 auto;
}

.brand img {
  display: block;
  height: 30px;
  width: auto;
}

.header-btn {
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(237, 20, 91, 0.28);
}

.header-btn:hover {
  filter: brightness(1.06);
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem clamp(1.25rem, 4vw, 3rem) 3rem;
}

@media (min-width: 920px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 72px);
    padding-bottom: 4rem;
  }
}

.hero-text {
  text-align: center;
}

@media (min-width: 920px) {
  .hero-text {
    text-align: left;
  }
}

.hero h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.4rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-sub {
  margin: 0 0 2rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 26rem;
}

.hero-tagline {
  margin: 0.75rem 0 0.5rem;
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (min-width: 920px) {
  .hero-sub {
    margin-left: 0;
    margin-right: auto;
  }
}

@media (max-width: 919px) {
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
}

.btn-main {
  display: inline-flex;
  padding: 1rem 2rem;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 14px 40px rgba(237, 20, 91, 0.35);
  transition: transform 0.2s ease;
}

.btn-main:hover {
  transform: scale(1.03);
}

.hero-phone {
  display: flex;
  justify-content: center;
  padding: 0.5rem 0 1rem;
}

.phone-frame {
  position: relative;
  width: calc(var(--card-w) + 48px);
  padding: 20px 16px 28px;
  background: var(--white);
  border-radius: 36px;
  box-shadow:
    0 40px 80px rgba(237, 20, 91, 0.18),
    0 0 0 1px rgba(0, 0, 0, 0.04);
}

.card-deck {
  position: relative;
  width: var(--card-w);
  height: var(--card-h);
  margin: 0 auto;
}

.swipe-card {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #e8e8ee;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  transform-origin: center bottom;
}

.card-c {
  transform: scale(0.9) rotate(-6deg) translateY(14px);
  opacity: 0.45;
  z-index: 1;
  animation: card-pulse-c 8s ease-in-out infinite;
}

.card-b {
  transform: scale(0.95) rotate(4deg) translateY(8px);
  opacity: 0.7;
  z-index: 2;
  animation: card-pulse-b 8s ease-in-out infinite;
}

.card-a {
  z-index: 3;
  animation: card-swipe 8s ease-in-out infinite;
}

@keyframes card-pulse-c {
  0%, 100% { transform: scale(0.9) rotate(-6deg) translateY(14px); }
  50% { transform: scale(0.91) rotate(-5deg) translateY(12px); }
}

@keyframes card-pulse-b {
  0%, 100% { transform: scale(0.95) rotate(4deg) translateY(8px); }
  50% { transform: scale(0.96) rotate(5deg) translateY(6px); }
}

@keyframes card-swipe {
  0%, 12%, 88%, 100% {
    transform: translateX(0) rotate(0deg);
  }
  28% {
    transform: translateX(-95px) rotate(-14deg);
  }
  42% {
    transform: translateX(-95px) rotate(-14deg);
  }
  58% {
    transform: translateX(95px) rotate(14deg);
  }
  72% {
    transform: translateX(95px) rotate(14deg);
  }
}

.swipe-card-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.swipe-card-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.swipe-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.photo-a::after {
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.55) 100%);
}

.photo-b::after,
.photo-c::after {
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
}

.swipe-card-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1.1rem 1.1rem;
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.swipe-card-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.swipe-card-badge {
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  background: rgba(76, 217, 100, 0.9);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.swipe-stamp {
  position: absolute;
  top: 2rem;
  padding: 0.35rem 0.65rem;
  border: 4px solid;
  border-radius: 8px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  opacity: 0;
  pointer-events: none;
}

.stamp-yes {
  left: 1.25rem;
  color: #22c55e;
  border-color: #22c55e;
  transform: rotate(-18deg);
  animation: stamp-yes 8s ease-in-out infinite;
}

.stamp-no {
  right: 1.25rem;
  color: #ef4444;
  border-color: #ef4444;
  transform: rotate(18deg);
  animation: stamp-no 8s ease-in-out infinite;
}

@keyframes stamp-no {
  0%, 20%, 48%, 100% { opacity: 0; transform: rotate(18deg) scale(0.8); }
  30%, 40% { opacity: 1; transform: rotate(18deg) scale(1); }
}

@keyframes stamp-yes {
  0%, 52%, 80%, 100% { opacity: 0; transform: rotate(-18deg) scale(0.8); }
  62%, 72% { opacity: 1; transform: rotate(-18deg) scale(1); }
}

.swipe-controls {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 1.35rem;
}

.ctrl {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.ctrl-no {
  background: var(--white);
  border: 2px solid #e5e5ea;
  position: relative;
}

.ctrl-no::after {
  content: '';
  position: absolute;
  inset: 50% auto auto 50%;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff4458' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E") center/contain no-repeat;
}

.ctrl-yes {
  background: var(--grad);
  position: relative;
  box-shadow: 0 10px 28px rgba(237, 20, 91, 0.4);
}

.ctrl-yes::after {
  content: '';
  position: absolute;
  inset: 50% auto auto 50%;
  width: 26px;
  height: 26px;
  margin: -13px 0 0 -13px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.ctrl-no {
  animation: btn-nope 8s ease-in-out infinite;
}

.ctrl-yes {
  animation: btn-like 8s ease-in-out infinite;
}

@keyframes btn-nope {
  0%, 20%, 48%, 100% { transform: scale(1); }
  32% { transform: scale(1.12); }
}

@keyframes btn-like {
  0%, 52%, 80%, 100% { transform: scale(1); }
  64% { transform: scale(1.12); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.journey {
  padding: 4rem clamp(1.25rem, 4vw, 3rem) 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.journey-head {
  text-align: center;
  margin-bottom: 3rem;
}

.journey-tag {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
}

.journey-head h2 {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.journey-track {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .journey-track {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.step {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.step-screen {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 320px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(237, 20, 91, 0.1);
  overflow: hidden;
}

.step-copy {
  padding: 0 0.25rem;
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.65rem;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
}

.step-copy h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  font-weight: 800;
}

.step-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.step-screen-feed {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1.25rem;
  background: linear-gradient(180deg, #fff0f4 0%, #fff 60%);
}

.mini-card {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 4.5rem;
  border-radius: 16px;
  overflow: hidden;
  animation: mini-card-float 4s ease-in-out infinite;
}

.mini-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.mini-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
}

@keyframes mini-card-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(1deg); }
}

.mini-actions {
  display: flex;
  gap: 1.5rem;
  z-index: 1;
}

.mini-x,
.mini-heart {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.mini-x {
  background: #fff;
  border: 2px solid #eee;
  position: relative;
}

.mini-x::after {
  content: '';
  position: absolute;
  inset: 50% auto auto 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff4458' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E") center/contain no-repeat;
}

.mini-heart {
  background: var(--grad);
  position: relative;
}

.mini-heart::after {
  content: '';
  position: absolute;
  inset: 50% auto auto 50%;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.step-screen-match {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--grad);
  color: #fff;
}

.match-burst {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  animation: burst 2.5s ease-out infinite;
}

@keyframes burst {
  0% { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

.match-title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  z-index: 1;
  animation: match-pop 2.5s ease-in-out infinite;
}

@keyframes match-pop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.match-avatars {
  display: flex;
  gap: 0.5rem;
  z-index: 1;
}

.av {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  object-position: center top;
}

.av-them {
  margin-left: -1.25rem;
}

.step-screen-chat {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  justify-content: flex-end;
  background: linear-gradient(180deg, #f8f8fa 0%, #fff 100%);
}

.chat-bubble {
  max-width: 85%;
  padding: 0.65rem 0.9rem;
  border-radius: 18px;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  animation: bubble-in 0.6s ease backwards;
}

.chat-in {
  align-self: flex-start;
  background: #ececf0;
  color: var(--ink);
  animation-delay: 0.2s;
}

.chat-out {
  align-self: flex-end;
  background: var(--grad);
  color: #fff;
  animation-delay: 0.5s;
}

@keyframes bubble-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-typing {
  align-self: flex-start;
  display: flex;
  gap: 4px;
  padding: 0.75rem 1rem;
  background: #ececf0;
  border-radius: 18px;
}

.chat-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #aaa;
  animation: typing 1.2s ease-in-out infinite;
}

.chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes typing {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
  40% { transform: translateY(-4px); opacity: 1; }
}

.extras {
  display: grid;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem clamp(1.25rem, 4vw, 3rem) 2rem;
}

@media (min-width: 700px) {
  .extras {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .extras {
    grid-template-columns: repeat(3, 1fr);
  }
}

.extra-card {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.5rem 1.35rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 14px 40px rgba(237, 20, 91, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.extra-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(237, 20, 91, 0.12);
}

.extra-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--grad);
}

.extra-icon {
  position: relative;
}

.extra-icon-radar::after {
  content: '';
  position: absolute;
  inset: 50% auto auto 50%;
  width: 26px;
  height: 26px;
  margin: -13px 0 0 -13px;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.35);
}

.extra-icon-auth::after {
  content: '';
  position: absolute;
  inset: 50% auto auto 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.extra-icon-anon {
  background: linear-gradient(145deg, #534ab7, #7f77dd);
}

.extra-icon-anon::after {
  content: '🕵️';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.extra-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 800;
}

.extra-body p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.download {
  position: relative;
  margin: 2rem clamp(1rem, 3vw, 2rem) 3rem;
  border-radius: 32px;
  overflow: hidden;
}

.download-glow {
  position: absolute;
  inset: 0;
  background: var(--grad);
}

.download-glow::before {
  content: '';
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.35), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 200, 150, 0.25), transparent 45%);
  animation: glow-shift 8s ease-in-out infinite;
}

@keyframes glow-shift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(3%, -2%); }
}

.download-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3.5rem clamp(1.5rem, 4vw, 3rem);
  color: #fff;
}

.download h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.download-sub {
  margin: 0 0 2.25rem;
  font-size: 1.05rem;
  opacity: 0.92;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.store-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .store-row {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.store-badge {
  display: inline-flex;
  pointer-events: none;
  user-select: none;
}

.store-badge img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 140px;
}

.footer {
  background: linear-gradient(160deg, #1a1a1f 0%, #2d1520 100%);
  padding: 2.5rem clamp(1.25rem, 4vw, 3rem) 3rem;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-brand img {
  display: block;
  height: 28px;
  width: auto;
  opacity: 0.95;
}

.footer-copy {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-mail {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.15s;
}

.footer-mail:hover {
  color: #ffc9a8;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.25rem;
}

.footer-legal a {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.15s;
}

.footer-legal a:hover {
  color: #ffc9a8;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-link {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--muted);
  transition: color 0.15s, background 0.15s;
}

.header-link:hover {
  color: var(--pink);
  background: rgba(237, 20, 91, 0.08);
}

.legal-hero {
  position: relative;
  margin: 0 clamp(1rem, 3vw, 2rem) 2rem;
  border-radius: 28px;
  overflow: hidden;
  background: var(--grad);
  color: #fff;
}

.legal-hero::before {
  content: '';
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.32), transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(255, 200, 150, 0.22), transparent 40%);
  pointer-events: none;
}

.legal-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}

.legal-hero-tag {
  display: inline-block;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.legal-hero p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
  opacity: 0.94;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.legal-updated {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.82rem;
  font-weight: 700;
}

.legal-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem) 4rem;
  display: grid;
  gap: 2rem;
}

@media (min-width: 960px) {
  .legal-wrap {
    grid-template-columns: 240px minmax(0, 1fr);
    align-items: start;
    padding-right: clamp(1.25rem, 4vw, 4.5rem);
  }
}

.legal-toc {
  position: sticky;
  top: 1.25rem;
  padding: 1.35rem 1.25rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 14px 40px rgba(237, 20, 91, 0.08);
}

.legal-toc h2 {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
}

.legal-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.legal-toc a {
  display: block;
  padding: 0.45rem 0.55rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.15s, background 0.15s;
}

.legal-toc a:hover {
  color: var(--pink);
  background: rgba(237, 20, 91, 0.06);
}

.legal-main-col {
  position: relative;
  min-width: 0;
}

.legal-lang-rail {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 0.75rem;
}

@media (min-width: 960px) {
  .legal-lang-rail {
    position: absolute;
    top: 0;
    right: -4.25rem;
    margin-bottom: 0;
    z-index: 2;
  }
}

.legal-lang-bar {
  aspect-ratio: 16 / 9;
  width: 3.25rem;
  padding: 0;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 800;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--pink);
  background: rgba(237, 20, 91, 0.1);
  box-shadow: 0 4px 14px rgba(237, 20, 91, 0.12);
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.legal-lang-bar:hover {
  transform: translateY(-1px);
  background: rgba(237, 20, 91, 0.16);
}

.legal-lang-bar.is-active {
  color: #fff;
  background: var(--grad);
  box-shadow: 0 6px 18px rgba(237, 20, 91, 0.32);
}

.legal-main {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.legal-section {
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 14px 40px rgba(237, 20, 91, 0.07);
  scroll-margin-top: 1.5rem;
}

.legal-section h2 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.legal-section h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1.02rem;
  font-weight: 800;
}

.legal-section p,
.legal-section li {
  margin: 0 0 0.85rem;
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--muted);
}

.legal-section p:last-child,
.legal-section ul:last-child,
.legal-section ol:last-child {
  margin-bottom: 0;
}

.legal-section ul,
.legal-section ol {
  margin: 0 0 0.85rem;
  padding-left: 1.35rem;
}

.legal-section li {
  margin-bottom: 0.4rem;
}

.legal-section a {
  color: var(--pink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-section a:hover {
  color: var(--coral);
}

.legal-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.legal-contact a {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(237, 20, 91, 0.25);
}

.legal-contact a:hover {
  filter: brightness(1.05);
  color: #fff;
}

.legal-back-cta {
  text-align: center;
  padding: 0 1.25rem 3rem;
}

.legal-back-cta .btn-main {
  margin-top: 0.5rem;
}

@media (max-width: 959px) {
  .legal-toc {
    position: static;
  }

  .legal-toc ol {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .card-a,
  .card-b,
  .card-c,
  .stamp-yes,
  .stamp-no,
  .ctrl-no,
  .ctrl-yes,
  .mini-card,
  .match-burst,
  .match-title,
  .download-glow::before,
  .reveal {
    animation: none;
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-lead {
  max-width: 34rem;
  margin: 0.75rem auto 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.info-block {
  padding: 3.5rem clamp(1.25rem, 4vw, 3rem) 3rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(237, 20, 91, 0.07), transparent 70%),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.info-block-head {
  max-width: 640px;
  margin: 0 auto 2rem;
  text-align: center;
}

.info-block-head h2 {
  margin: 0.35rem 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.info-block-sub {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.info-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 920px) {
  .info-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.faq-panel {
  background: var(--white);
  border-radius: 24px;
  padding: 1.25rem;
  box-shadow: 0 16px 48px rgba(237, 20, 91, 0.08);
  border: 1px solid rgba(237, 20, 91, 0.06);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 16px;
  background: #fafafa;
  border: 1px solid rgba(17, 17, 20, 0.06);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
  background: #fff;
  border-color: rgba(237, 20, 91, 0.18);
  box-shadow: 0 8px 24px rgba(237, 20, 91, 0.08);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  padding: 1rem 1.1rem;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-q {
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.35;
  color: var(--ink);
}

.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--grad);
  position: relative;
  transition: transform 0.25s ease;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transform: translate(-50%, -50%);
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq-item[open] .faq-toggle {
  transform: rotate(180deg);
}

.faq-item[open] .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.faq-item p {
  margin: 0;
  padding: 0 1.1rem 1.1rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.about-panel {
  height: 100%;
}

.about-panel-inner {
  height: 100%;
  background: var(--grad);
  border-radius: 24px;
  padding: clamp(1.5rem, 4vw, 2rem);
  color: #fff;
  box-shadow: 0 20px 56px rgba(237, 20, 91, 0.28);
}

.about-panel-inner h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.about-panel-inner p {
  margin: 0 0 1rem;
  font-size: 0.94rem;
  line-height: 1.65;
  opacity: 0.95;
}

.about-panel-inner p:last-of-type {
  margin-bottom: 1.25rem;
}

.city-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.city-pills span {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
}
