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

:root {
  --bg: #050816;
  --card-bg: rgba(16, 23, 42, 0.92);
  --card-border: rgba(148, 163, 184, 0.25);
  --accent: #22d3ee;
  --accent-soft: rgba(56, 189, 248, 0.3);
  --accent-strong: #38bdf8;
  --text: #e5e7eb;
  --text-muted: #9ca3af;
  --pill-bg: rgba(15, 118, 110, 0.3);
  --pill-border: rgba(45, 212, 191, 0.4);
  --radius-lg: 22px;
  --radius-xl: 28px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.75);
}

html, body {
  height: 100%;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top left, #1d2440 0, #020617 40%, #000 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

.bg-orbit {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.75;
}

.orbit-1 {
  width: 380px;
  height: 380px;
  top: -80px;
  left: -40px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.6), transparent);
}

.orbit-2 {
  width: 420px;
  height: 420px;
  bottom: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.6), transparent);
}

.orbit-3 {
  width: 320px;
  height: 320px;
  top: 40%;
  right: 15%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.4), transparent);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 7vw 14px;
  backdrop-filter: blur(24px);
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0));
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.nav-logo {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f97316;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.18s ease, opacity 0.18s ease, transform 0.18s ease;
}

.nav-links a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.pill {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--accent-soft);
  background: rgba(15, 23, 42, 0.7);
}

.pill-outline {
  border-color: rgba(148, 163, 184, 0.6);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3.25rem;
  align-items: center;
  padding: 48px 7vw 36px;
}

.hero-text {
  max-width: 640px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--pill-border);
  background: var(--pill-bg);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #a5f3fc;
}

.hero-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.35);
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(2.8rem, 4vw, 3.8rem);
  line-height: 1.05;
}

.hero .accent {
  background: linear-gradient(135deg, #22d3ee, #a855f7, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.98rem;
  max-width: 460px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 22px;
}

.btn-primary,
.btn-ghost {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease,
    border-color 0.18s ease, color 0.18s ease;
}

.btn-primary {
  background: radial-gradient(circle at top left, #38bdf8, #a855f7);
  color: #0b1120;
  box-shadow: 0 15px 35px rgba(56, 189, 248, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(56, 189, 248, 0.45);
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.8);
  border-color: rgba(148, 163, 184, 0.5);
  color: var(--text-muted);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--accent-soft);
  background: rgba(15, 23, 42, 0.95);
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 26px;
  font-size: 0.8rem;
}

.hero-metrics div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.metric-number {
  font-weight: 600;
  font-size: 1.15rem;
}

.metric-label {
  color: var(--text-muted);
}

.hero-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.phone-shell {
  width: 320px;
  max-width: 100%;
  border-radius: 34px;
  padding: 10px;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.25), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.phone-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 34px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  pointer-events: none;
}

.phone-notch {
  width: 96px;
  height: 20px;
  border-radius: 0 0 14px 14px;
  background: rgba(15, 23, 42, 0.96);
  margin: 0 auto 8px;
}

.phone-screen {
  background: radial-gradient(circle at top, #020617, #020617 55%, #020617);
  border-radius: 26px;
  padding: 12px;
  position: relative;
  overflow: hidden;
}

.phone-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 0.7rem;
  margin-bottom: 12px;
}

.phone-label {
  color: var(--text-muted);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.dot-green {
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.35);
}

.dot-blue {
  background: #22d3ee;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.35);
}

.dot-pink {
  background: #ec4899;
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.35);
}

.card-stack {
  position: relative;
  padding-top: 10px;
  padding-bottom: 8px;
}

.swipe-hint {
  position: absolute;
  top: -4px;
  right: 0;
  font-size: 0.64rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.swipe-icons {
  font-size: 0.7rem;
}

.adventure-card {
  position: relative;
  border-radius: 18px;
  padding: 10px 10px 12px;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.85);
  font-size: 0.7rem;
}

.card-1 {
  z-index: 3;
}

.card-2 {
  position: absolute;
  inset: 12px 6px auto;
  transform: translateY(14px) rotate(-2deg);
  opacity: 0.75;
  z-index: 2;
}

.card-3 {
  position: absolute;
  inset: 16px 10px auto;
  transform: translateY(32px) rotate(2.5deg) scale(0.98);
  opacity: 0.45;
  z-index: 1;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.6rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  margin-bottom: 4px;
}

.chip-local {
  background: rgba(34, 197, 94, 0.16);
  border-color: rgba(34, 197, 94, 0.55);
}

.chip-event {
  background: rgba(56, 189, 248, 0.16);
  border-color: rgba(56, 189, 248, 0.55);
}

.chip-weekend {
  background: rgba(244, 63, 94, 0.16);
  border-color: rgba(244, 63, 94, 0.55);
}

.adventure-card h2 {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.adventure-card ul {
  list-style: none;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.adventure-card li {
  display: flex;
  gap: 4px;
  margin-bottom: 2px;
}

.adventure-card li::before {
  content: "•";
  color: var(--accent-strong);
}

.card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 6px;
}

.tag {
  font-size: 0.58rem;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.btn-swipe {
  flex: 1;
  padding: 6px 0;
  border-radius: 999px;
  font-size: 0.7rem;
  border: 1px solid transparent;
  cursor: pointer;
  background: transparent;
  color: var(--text-muted);
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.btn-swipe.no {
  border-color: rgba(248, 113, 113, 0.6);
}

.btn-swipe.yes {
  background: radial-gradient(circle at top left, #22c55e, #16a34a);
  color: #022c22;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

.btn-swipe.no:hover {
  background: rgba(248, 113, 113, 0.12);
  transform: translateY(-1px);
}

.btn-swipe.yes:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.5);
}

.phone-caption {
  margin-top: 12px;
  font-size: 0.76rem;
  color: var(--text-muted);
  text-align: center;
}

.section {
  padding: 30px 7vw;
}

.section-title {
  max-width: 780px;
  font-size: 1.5rem;
  margin-bottom: 26px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  padding: 16px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(18px);
}

.feature-icon {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.feature-card h3 {
  font-size: 0.98rem;
  margin-bottom: 4px;
}

.feature-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.how-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.75rem;
}

.how-list li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: flex-start;
}

.how-list span {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.86rem;
  background: radial-gradient(circle at top left, var(--accent-soft), rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.how-list h3 {
  font-size: 1rem;
}

.how-list p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.section-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pulse-card {
  width: 100%;
  max-width: 380px;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.2), rgba(15, 23, 42, 0.98));
  border-radius: var(--radius-xl);
  padding: 18px 18px 16px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: var(--shadow-soft);
}

.pulse-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  margin-bottom: 10px;
}

.pulse-list {
  list-style: none;
  font-size: 0.84rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pulse-list li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pulse-footer {
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.ai-panel {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.96));
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 18px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.ai-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  margin-bottom: 12px;
}

.ai-chip {
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.5);
  color: #a5f3fc;
}

.ai-status {
  color: #bbf7d0;
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ai-cell h3 {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.ai-cell ul {
  list-style: none;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.ai-cell ul li {
  margin-bottom: 4px;
}

.ai-cell-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-core {
  position: relative;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #e5e7eb;
  background: radial-gradient(circle at center, #0f172a, #020617);
  overflow: hidden;
}

.core-orbit {
  position: absolute;
  inset: 16px;
  border-radius: inherit;
  border: 1px dashed rgba(148, 163, 184, 0.6);
}

.core-orbit-1 {
  animation: spin 18s linear infinite;
}

.core-orbit-2 {
  inset: 32px;
  opacity: 0.7;
  animation: spinReverse 14s linear infinite;
}

.core-orbit-3 {
  inset: 48px;
  opacity: 0.5;
  animation: spin 10s linear infinite;
}

.core-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.7);
  animation: pulse 2.6s ease-in-out infinite;
}

.section-waitlist {
  padding-bottom: 40px;
}

.waitlist-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.98));
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 24px 20px 20px;
  box-shadow: var(--shadow-soft);
}

.waitlist-inner p {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.waitlist-form {
  margin-top: 16px;
}

.form-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin-bottom: 8px;
}

.waitlist-form input[type="email"] {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.95);
  color: var(--text);
  font-size: 0.9rem;
}

.waitlist-form button {
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  background: radial-gradient(circle at top left, #22d3ee, #a855f7);
  color: #020617;
  box-shadow: 0 12px 28px rgba(56, 189, 248, 0.5);
  white-space: nowrap;
}

.waitlist-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(56, 189, 248, 0.6);
}

.form-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.microcopy {
  margin-top: 8px;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.footer {
  padding: 16px 7vw 20px;
  font-size: 0.78rem;
  border-top: 1px solid rgba(30, 64, 175, 0.5);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: rgba(15, 23, 42, 0.96);
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent);
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spinReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.15); opacity: 1; }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-phone {
    order: -1;
  }

  .section-split {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-grid,
  .ai-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .nav {
    padding-inline: 18px;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .section,
  .footer {
    padding-inline: 18px;
  }

  .feature-grid,
  .ai-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-row {
    flex-direction: column;
  }
}


.pre-animate {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.pre-animate.in-view {
  opacity: 1;
  transform: translateY(0);
}


/* Planovea brand app icon in nav */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.nav-logo-img {
  height: 32px;
  width: 32px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.85);
}

.nav-logo-text {
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.nav-logo-tm {
  font-size: 0.58em;
  margin-left: 2px;
  opacity: 0.85;
}


/* HD Logo + App Icon Upgrade */
.nav .brand,
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo,
.nav .brand img,
.app-icon-top {
  height: 78px !important;
  width: 78px !important;
  border-radius: 22px;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  box-shadow: 0 14px 35px rgba(0,0,0,.45);
}

.brand-name {
  font-size: 1.05rem;
}



/* ---- USER REQUEST: MUCH LARGER LOGO + WHITE HEADER TEXT ---- */
.brand-logo,
.app-icon-top,
.nav .brand img {
  height: 110px !important;
  width: 110px !important;
  border-radius: 26px;
  box-shadow: 0 18px 42px rgba(0,0,0,.5);
}

.brand-name,
.header .brand-name,
.nav .brand-name {
  color: #ffffff !important;
}



/* ---- FORCE SUPER LARGE HEADER LOGO ---- */
header.nav .brand-logo,
header.nav img.brand-logo,
header.nav .brand img {
  height: 165px !important;
  width: 165px !important;
  max-height: 165px !important;
  max-width: 165px !important;
}

.nav {
  min-height: 190px !important;
  align-items: center !important;
}



/* --- EXTREME ZOOM ON LOGO --- */
header.nav .brand-logo {
  transform: scale(1.55) !important;
  transform-origin: left center !important;
}



/* ---- USER REQUEST: LARGER MAIN TITLE ---- */
.hero h1 {
  font-size: clamp(3.6rem, 7vw, 6rem) !important;
  line-height: 1.02 !important;
  font-weight: 800 !important;
}



/* ---- USER REQUEST: MAKE HEADER SHORTER ---- */
.nav {
  min-height: 110px !important;
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}

.brand-logo {
  margin-top: -6px !important;
}

