/* ─── Aura Public Page — Bumble/Tinder Inspired ─── */

/* ── Google Fonts import ── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;600;700&display=swap');

/* ── Design Tokens ── */
:root {
  --bg: #0D0D1A;
  --bg2: #12122A;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-hover: rgba(255, 255, 255, 0.08);
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.1);
  --text: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.65);
  --text-muted: rgba(255, 255, 255, 0.4);

  /* Sunset gradient palette */
  --coral: #FF6B6B;
  --peach: #FF8E53;
  --gold: #FFC857;
  --pink: #FF5A8A;
  --purple: #A855F7;
  --gradient-primary: linear-gradient(135deg, var(--coral), var(--peach), var(--gold));
  --gradient-hot: linear-gradient(135deg, var(--pink), var(--coral), var(--peach));
  --gradient-purple: linear-gradient(135deg, var(--purple), var(--pink));

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --shadow-glow: 0 8px 32px rgba(255, 107, 107, 0.2);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

img {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
  font-family: inherit;
}

/* ── Ambient Background ── */
body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 107, 107, 0.12), transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(168, 85, 247, 0.08), transparent 35%),
    radial-gradient(circle at 50% 80%, rgba(255, 142, 83, 0.06), transparent 40%);
  z-index: 0;
  pointer-events: none;
  animation: ambientDrift 20s ease-in-out infinite alternate;
}

@keyframes ambientDrift {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  100% {
    transform: translate(-3%, 2%) rotate(2deg);
  }
}

/* ── Layout ── */
.page-wrapper {
  position: relative;
  z-index: 1;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

/* ── Header/Navbar ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.header.scrolled {
  background: rgba(13, 13, 26, 0.85);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.brand-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 10px;
}

#brandName {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: all 0.25s ease;
}

.nav a:hover {
  color: var(--text);
  background: var(--surface);
}

.nav .btn-cta {
  background: var(--gradient-primary);
  color: #000;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav .btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

.menu-btn {
  display: none;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  background: var(--glass);
  color: var(--text);
  padding: 8px 16px;
  font-weight: 700;
  font-size: 14px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #000;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 107, 107, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: var(--surface);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-dark {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
}

.btn-dark:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ── Hero Section ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  position: relative;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
  color: var(--peach);
  margin-bottom: 20px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h1 .gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#heroSubtitle {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 480px;
}

.tag-row {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.cta-row {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero media — phone mockup */
.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-phone-frame {
  position: relative;
  width: 300px;
  height: 600px;
  border-radius: 40px;
  border: 3px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(255, 107, 107, 0.15);
  background: #000;
}

.hero-phone-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #000;
  border-radius: 0 0 16px 16px;
  z-index: 5;
}

.hero-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating glow behind phone */
.hero-media::before {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.3), transparent 70%);
  filter: blur(60px);
  z-index: -1;
  animation: pulseGlow 4s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% {
    opacity: 0.6;
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Floating decorative elements */
.hero-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  animation: floatBadge 6s ease-in-out infinite;
  z-index: 3;
}

.hero-float-badge:nth-child(1) {
  top: 10%;
  right: -30px;
  animation-delay: 0s;
}

.hero-float-badge:nth-child(2) {
  bottom: 15%;
  left: -20px;
  animation-delay: 2s;
}

.hero-float-badge:nth-child(3) {
  top: 50%;
  right: -50px;
  animation-delay: 4s;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ── Value Bar / Stats ── */
.value-bar {
  padding: 60px 0;
  position: relative;
}

.value-bar .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-bar article {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  text-align: center;
}

.value-bar article:hover {
  background: var(--surface-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.value-bar strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.value-bar span {
  display: block;
  margin-top: 8px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
}

/* ── Section Common ── */
.section-head {
  max-width: 600px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 12px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ── Feature Section ── */
.feature-section {
  padding: 60px 0;
  position: relative;
}

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

.feature-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  background: var(--surface-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(255, 107, 107, 0.2);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: var(--gradient-primary);
  color: #000;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(255, 107, 107, 0.25);
}

.feature-card h3 {
  margin-top: 18px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.feature-card p {
  margin-top: 10px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 14px;
}

/* ── Plans / Pricing Section ── */
.plans-section {
  padding: 60px 0;
}

.plans-wrapper {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
}

.pricing-card.popular {
  border-color: var(--coral);
  background: rgba(255, 107, 107, 0.06);
  box-shadow: 0 8px 32px rgba(255, 107, 107, 0.15);
}

.pricing-card.popular::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  letter-spacing: 1px;
}

.pricing-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.pricing-card .price {
  margin-top: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card p {
  margin-top: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Download / CTA Section ── */
.download {
  padding: 60px 0;
}

.download-card {
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  background: var(--gradient-hot);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.download-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.15), transparent 50%),
    radial-gradient(circle at 100% 0%, rgba(0, 0, 0, 0.15), transparent 50%);
  pointer-events: none;
}

.download-card .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.download-card .eyebrow::before {
  background: rgba(255, 255, 255, 0.6);
}

.download-card h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.download-card .cta-row {
  margin-top: 0;
  position: relative;
  z-index: 2;
}

.download-card .btn-primary {
  background: #fff;
  color: #000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.download-card .btn-primary:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.download-card .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.download-card .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ── Footer ── */
.site-footer {
  padding: 60px 0;
  border-top: 1px solid var(--glass-border);
  margin-top: 80px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.2rem;
}

.footer-brand .icon {
  width: 32px;
  height: 32px;
  background: var(--gradient-primary);
  border-radius: 8px;
  color: #000;
}

#footerText {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero-copy {
    order: 1;
  }

  .hero-media {
    order: 2;
  }

  #heroSubtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .tag-row,
  .cta-row {
    justify-content: center;
  }

  .section-head {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

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

  .value-bar .container {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-float-badge:nth-child(3) {
    display: none;
  }
}

@media (max-width: 768px) {
  .menu-btn {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(13, 13, 26, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    margin: 8px 20px;
    padding: 16px;
    flex-direction: column;
    gap: 4px;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 12px 16px;
    border-radius: var(--radius-md);
  }

  .nav a:hover {
    background: var(--surface);
  }

  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero-phone-frame {
    width: 240px;
    height: 480px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .value-bar .container {
    grid-template-columns: 1fr;
  }

  .download-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
  }

  .download-card .cta-row {
    justify-content: center;
  }

  .split {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-float-badge {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-phone-frame {
    width: 200px;
    height: 400px;
  }

  .hero-phone-frame::before {
    width: 80px;
    height: 22px;
  }

  .container {
    width: calc(100% - 24px);
  }

  .plans-wrapper {
    padding: 32px 16px;
  }

  .feature-section,
  .screens-section,
  .plans-section,
  .download {
    padding: 60px 0;
  }
}