/* Tinder-inspired marketing landing */
.landing-page {
  background: linear-gradient(160deg, #ff4458 0%, #ff6b4a 42%, #ff8e53 100%);
  min-height: 100dvh;
  overflow-x: hidden;
}

.landing-main {
  min-height: 100dvh;
  padding: 0;
}

.landing {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.landing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
  width: 100%;
}

.landing-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none;
}

.landing-logo img {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.landing-header-login {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.landing-header-login:hover {
  background: rgba(255, 255, 255, 0.15);
}

.landing-hero {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem 2.5rem;
  width: 100%;
}

@media (min-width: 900px) {
  .landing-hero {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 1rem 2.5rem 3rem;
  }
}

.landing-copy {
  text-align: center;
  order: 2;
}

@media (min-width: 900px) {
  .landing-copy {
    text-align: left;
    order: 1;
  }
}

.landing-title {
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.12);
}

.landing-subtitle {
  margin-top: 1rem;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  max-width: 28rem;
}

@media (min-width: 900px) {
  .landing-subtitle {
    margin-left: 0;
    margin-right: 0;
  }
}

.landing-subtitle {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 900px) {
  .landing-subtitle {
    margin-left: 0;
  }
}

.landing-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 900px) {
  .landing-features {
    justify-content: flex-start;
  }
}

.landing-feature {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.landing-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
  max-width: 20rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 900px) {
  .landing-actions {
    flex-direction: row;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
}

.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.75rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s, opacity 0.2s;
}

.landing-btn:active {
  transform: scale(0.98);
}

.landing-btn-primary {
  background: #fff;
  color: #e63e50;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.landing-btn-primary:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.landing-btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.landing-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.landing-trust {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Phone + card stack */
.landing-visual {
  order: 1;
  display: flex;
  justify-content: center;
  padding: 0.5rem 0 1rem;
}

@media (min-width: 900px) {
  .landing-visual {
    order: 2;
    justify-content: flex-end;
    padding-right: 1rem;
  }
}

.landing-phone {
  position: relative;
  width: min(280px, 78vw);
  aspect-ratio: 9 / 18;
  border-radius: 2.25rem;
  background: linear-gradient(180deg, #1a1a2e 0%, #2d2d44 100%);
  padding: 0.65rem;
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.landing-phone-notch {
  position: absolute;
  top: 0.65rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28%;
  height: 1.1rem;
  background: #1a1a2e;
  border-radius: 0 0 0.75rem 0.75rem;
  z-index: 5;
}

.landing-phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 1.75rem;
  overflow: hidden;
  background: #0f0f1a;
}

.landing-cards {
  position: absolute;
  inset: 12% 8% 18%;
}

.landing-card {
  position: absolute;
  inset: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transform-origin: center bottom;
}

.landing-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.landing-card--1 .landing-card-bg {
  background-image: linear-gradient(145deg, #fda4af 0%, #fb7185 40%, #f43f5e 100%);
}

.landing-card--2 .landing-card-bg {
  background-image: linear-gradient(145deg, #fdba74 0%, #fb923c 50%, #ea580c 100%);
}

.landing-card--3 .landing-card-bg {
  background-image: linear-gradient(145deg, #c4b5fd 0%, #a78bfa 50%, #7c3aed 100%);
}

.landing-card-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1rem 1.1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  color: #fff;
}

.landing-card-name {
  font-size: 1.15rem;
  font-weight: 700;
}

.landing-card-meta {
  font-size: 0.8rem;
  opacity: 0.9;
  margin-top: 0.15rem;
}

.landing-card--3 {
  transform: rotate(-8deg) scale(0.92) translateY(12px);
  opacity: 0.55;
  z-index: 1;
  animation: landing-float-3 5s ease-in-out infinite;
}

.landing-card--2 {
  transform: rotate(4deg) scale(0.96) translateY(6px);
  opacity: 0.75;
  z-index: 2;
  animation: landing-float-2 4.5s ease-in-out infinite;
}

.landing-card--1 {
  z-index: 3;
  animation: landing-float-1 4s ease-in-out infinite;
}

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

@keyframes landing-float-2 {
  0%, 100% { transform: rotate(4deg) scale(0.96) translateY(6px); }
  50% { transform: rotate(3deg) scale(0.96) translateY(2px); }
}

@keyframes landing-float-3 {
  0%, 100% { transform: rotate(-8deg) scale(0.92) translateY(12px); }
  50% { transform: rotate(-7deg) scale(0.92) translateY(8px); }
}

.landing-swipe-actions {
  position: absolute;
  bottom: 6%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  z-index: 10;
  pointer-events: none;
}

.landing-swipe-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.landing-swipe-btn--pass {
  background: #fff;
  color: #fbbf24;
}

.landing-swipe-btn--like {
  background: #fff;
  color: #ff4458;
}

.landing-swipe-btn svg {
  width: 1.35rem;
  height: 1.35rem;
}

.landing-footer {
  text-align: center;
  padding: 1rem 1.5rem 1.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}
