:root {
  --bg-0: #060812;
  --bg-1: #0e1430;
  --bg-2: #1b2452;
  --text: #eef2ff;
  --text-soft: #b7bfd8;
  --card: rgba(255, 255, 255, 0.08);
  --card-border: rgba(255, 255, 255, 0.18);
  --primary: #7c8cff;
  --primary-strong: #6576ff;
  --mint: #62e2c6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
}

.landing-body {
  min-height: 100vh;
  background: radial-gradient(circle at 20% 20%, #263777 0%, transparent 45%),
    radial-gradient(circle at 80% 10%, #3a206d 0%, transparent 35%),
    linear-gradient(130deg, var(--bg-0), var(--bg-1) 50%, var(--bg-2));
  overflow-x: hidden;
  position: relative;
}

.bg-orb {
  position: fixed;
  filter: blur(56px);
  border-radius: 999px;
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
  animation: drift 14s ease-in-out infinite alternate;
}

.orb-one {
  width: 320px;
  height: 320px;
  background: #4b7bff;
  top: -90px;
  left: -60px;
}

.orb-two {
  width: 280px;
  height: 280px;
  background: #6a47e9;
  bottom: -80px;
  right: -40px;
  animation-duration: 11s;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
}

.container {
  width: min(1040px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.landing-main {
  padding: 64px 0 22px;
}

.hero {
  padding: 34px;
  border-radius: 26px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--card-border);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(5, 8, 20, 0.45);
}

.hero-badge {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(98, 226, 198, 0.15);
  border: 1px solid rgba(98, 226, 198, 0.45);
  color: var(--mint);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.title {
  margin: 14px 0 0;
  font-size: clamp(38px, 7vw, 78px);
  line-height: 1.02;
  letter-spacing: -1.2px;
}

.title-fancy {
  background: linear-gradient(92deg, #ffffff, #b8e4ff 45%, #b1b8ff 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle {
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.75;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--primary), var(--primary-strong));
  box-shadow: 0 8px 20px rgba(101, 118, 255, 0.45);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(101, 118, 255, 0.5);
}

.btn-ghost {
  color: #e6ebff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
}

.trip-section {
  margin-top: 26px;
}

.section-title {
  margin: 0 0 14px;
  font-size: 20px;
  color: #d6defb;
}

.trips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.trip-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 20px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.trip-card-fancy {
  background: var(--card);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(8px);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.trip-card-fancy:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 140, 255, 0.7);
  box-shadow: 0 16px 36px rgba(7, 10, 26, 0.5);
}

.trip-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  right: -44px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 140, 255, 0.45), transparent 70%);
  pointer-events: none;
}

.trip-location {
  font-size: 12px;
  letter-spacing: 0.4px;
  color: #9cc8ff;
  font-weight: 700;
  text-transform: uppercase;
}

.trip-name {
  margin-top: 10px;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.trip-meta {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}

.trip-cta {
  margin-top: 16px;
  display: inline-block;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  border-radius: 999px;
  padding: 8px 12px;
  background: linear-gradient(120deg, #27d1b4, #5b74ff);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: 26px;
  padding: 20px 0 30px;
  color: #9aa6cf;
  font-size: 13px;
}

.trip-nav {
  width: min(1040px, 92vw);
  margin: 14px auto;
}

.back-link {
  color: #2b4be8;
  text-decoration: none;
  font-weight: 700;
}

.back-link:hover {
  text-decoration: underline;
}

@keyframes drift {
  from {
    transform: translateY(0px) scale(1);
  }
  to {
    transform: translateY(18px) scale(1.06);
  }
}

@media (max-width: 720px) {
  .landing-main {
    padding-top: 44px;
  }

  .hero {
    padding: 24px;
    border-radius: 18px;
  }

  .subtitle {
    font-size: 16px;
  }

  .trip-name {
    font-size: 24px;
  }
}
