/* Navayro marketing — light canvas so dark app screenshots read clearly. */
:root {
  --bg: #ffffff;
  --bg-subtle: #f4f7fb;
  --bg-elevated: #ffffff;
  --card: #ffffff;
  --card-hover: #f8fafc;
  --border: rgba(15, 23, 42, 0.08);
  --border-hover: rgba(15, 23, 42, 0.14);
  --text: #0f172a;
  --muted: rgba(15, 23, 42, 0.72);
  --muted2: rgba(15, 23, 42, 0.5);
  --accent1: #4b9dff;
  --accent2: #34d9be;
  --accent-gradient: linear-gradient(135deg, #4b9dff, #34d9be);
  --font-heading: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
  /* Dark phone chrome — frames dark-themed UI shots */
  --phone-frame-outer: linear-gradient(145deg, #1e293b, #0f172a);
  --phone-bg: #050a14;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 40px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 64px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  padding: 0;
  margin: 0;
  font-family: var(--font-heading);
  background: var(--bg);
  background-image: radial-gradient(1000px 520px at 8% -8%, rgba(75, 157, 255, 0.09), transparent 52%),
    radial-gradient(800px 420px at 92% 24%, rgba(52, 217, 190, 0.07), transparent 55%);
  color: var(--text);
  overflow-x: hidden;
}

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

.path-inline {
  color: #0d9488;
  font-size: 0.95em;
}

.launch-banner {
  margin: 0;
  width: 100%;
  text-align: center;
  padding: 11px 18px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: linear-gradient(105deg, #1e3a5f 0%, #2563a8 40%, #0d9488 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset;
}

.launch-banner::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  vertical-align: middle;
  margin-top: -2px;
  animation: launch-pulse 2s ease-in-out infinite;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 18px 60px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s;
}

.brand:hover {
  transform: scale(1.03);
}

.brandIcon {
  font-size: 26px;
}

.brandName {
  font-weight: 800;
  letter-spacing: 0.4px;
  font-size: 20px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav a {
  padding: 8px 14px;
  border-radius: 12px;
  color: var(--muted);
  border: 1px solid transparent;
  transition: all 0.2s;
  font-weight: 500;
  font-size: 14px;
}

.nav a:hover {
  border-color: var(--border);
  color: var(--text);
  background: var(--bg-subtle);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  margin: 32px 0 72px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  width: fit-content;
  background: rgba(75, 157, 255, 0.1);
}

.pill {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(75, 157, 255, 0.35);
  background: rgba(75, 157, 255, 0.14);
  color: #2563eb;
  font-size: 11px;
  font-weight: 700;
}

.headline {
  font-family: var(--font-heading);
  font-size: 52px;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.03em;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subhead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
  max-width: 520px;
}

.ctaRow {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.ctaRow--center {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 16px;
  padding: 14px 22px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font-weight: 700;
  font-size: 15px;
  transition: all 0.25s;
  box-shadow: var(--shadow-sm);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-hover);
}

.buttonPrimary {
  background: var(--accent-gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 24px rgba(75, 157, 255, 0.35);
}

.buttonPrimary:hover {
  box-shadow: 0 10px 36px rgba(52, 217, 190, 0.35);
}

.coming-soon {
  font-size: 11px;
  opacity: 0.85;
  font-weight: 600;
}

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

.phone-mockup {
  width: 280px;
  aspect-ratio: 9 / 19.5;
  background: var(--phone-frame-outer);
  border-radius: 32px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(15, 23, 42, 0.06);
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.phone-mockup-hero {
  box-shadow: 0 32px 90px rgba(75, 157, 255, 0.2), var(--shadow-lg);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background: var(--phone-bg);
  border-radius: 14px;
  z-index: 2;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.35);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--phone-bg);
  border-radius: 27px;
  overflow: hidden;
  position: relative;
}

.phone-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.story-section {
  margin: 56px auto 40px;
  max-width: 760px;
  padding: 0 16px;
  text-align: center;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  color: var(--text);
}

.story-body {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.features-section {
  margin: 80px 0 40px;
}

.section-subtitle {
  text-align: center;
  color: var(--muted2);
  font-size: 17px;
  margin: 0 0 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

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

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

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

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  background: var(--card-hover);
  box-shadow: var(--shadow-md);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}

.featureTitle {
  font-weight: 800;
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--text);
}

.featureBody {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-list li {
  color: var(--muted2);
  font-size: 13px;
  padding-left: 18px;
  position: relative;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0d9488;
  font-weight: 700;
}

.showcase {
  margin: 72px 0 64px;
  padding: 48px 20px 36px;
  background: var(--bg-subtle);
  border-radius: 28px;
  border: 1px solid var(--border);
}

.showcase-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.showcase-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 17px;
  margin: 0 auto 44px;
  max-width: 560px;
  line-height: 1.55;
}

/* Single featured screen (e.g. Explore) */
.showcase-spotlight {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.showcase-spotlight .showcase-item {
  max-width: 420px;
}

.showcase-copy--wide {
  max-width: 400px;
}

.showcase-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 36px;
  max-width: 680px;
  margin: 0 auto;
  justify-items: center;
}

.showcase-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  transition: transform 0.35s ease;
}

.showcase-item:hover {
  transform: translateY(-6px);
}

.showcase-phone {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 9 / 19.5;
  background: var(--phone-frame-outer);
  border-radius: 28px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.showcase-item:hover .showcase-phone {
  box-shadow: 0 28px 64px rgba(75, 157, 255, 0.22);
  border-color: rgba(75, 157, 255, 0.35);
}

.showcase-phone .phone-notch {
  top: 10px;
  width: 80px;
  height: 20px;
  border-radius: 12px;
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 23px;
  display: block;
}

.showcase-copy {
  max-width: 320px;
}

.showcase-label {
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
  letter-spacing: 0.01em;
  display: block;
  margin-bottom: 8px;
}

.showcase-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.showcase--ai {
  border-color: rgba(13, 148, 136, 0.2);
  background: linear-gradient(180deg, #f0fdfa 0%, #f4f7fb 40%, #f4f7fb 100%);
}

.showcase-kicker {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0d9488;
  margin: 0 0 8px;
}

.showcase-ai-points {
  list-style: none;
  padding: 0 16px;
  margin: 0 auto 40px;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.showcase-ai-points li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}

.showcase-ai-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-gradient);
}

.showcase-ai-points strong {
  color: var(--text);
}

.showcase-gallery--ai {
  max-width: 1100px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px 28px;
}

@media (max-width: 1024px) {
  .showcase-gallery--ai {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
  }
}

.trust-strip {
  margin: 56px auto;
  max-width: 900px;
  padding: 32px 28px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--bg-subtle);
}

.trust-strip h2 {
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 800;
  text-align: center;
  color: var(--text);
}

.trust-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}

.cta-section {
  margin: 72px 0 48px;
}

.cta-card {
  background: var(--accent-gradient);
  border-radius: 24px;
  padding: 52px 36px;
  text-align: center;
  box-shadow: 0 24px 64px rgba(75, 157, 255, 0.25);
}

.cta-card h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 12px;
  color: #fff;
  letter-spacing: -0.02em;
}

.cta-card p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 28px;
  line-height: 1.55;
}

.cta-card .button {
  background: #fff;
  color: #0b3d7a;
  border: none;
  font-weight: 800;
}

.cta-card .button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.footer {
  margin-top: 64px;
  text-align: center;
  color: var(--muted2);
  font-size: 13px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.animate-fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

.animate-fade-in-delay {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease-out 0.15s, transform 0.55s ease-out 0.15s;
}

.animate-fade-in-delay-2 {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease-out 0.3s, transform 0.55s ease-out 0.3s;
}

.animate-slide-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-slide-up-delay {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease-out 0.18s, transform 0.7s ease-out 0.18s;
}

.animate-slide-up-delay-2 {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease-out 0.32s, transform 0.7s ease-out 0.32s;
}

.animate-fade-in.animate,
.animate-fade-in-delay.animate,
.animate-fade-in-delay-2.animate,
.animate-slide-up.animate,
.animate-slide-up-delay.animate,
.animate-slide-up-delay-2.animate {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .headline {
    font-size: 40px;
  }
  .subhead {
    max-width: 100%;
  }
  .hero-content {
    align-items: center;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .showcase-title {
    font-size: 32px;
  }
  .section-title {
    font-size: 30px;
  }
  .cta-card {
    padding: 40px 22px;
  }
  .cta-card h2 {
    font-size: 26px;
  }
}

@media (max-width: 640px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .headline {
    font-size: 34px;
  }
  .showcase-gallery {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .showcase-phone {
    max-width: 100%;
  }
  .showcase-title {
    font-size: 26px;
  }
  .showcase-subtitle {
    font-size: 15px;
    margin-bottom: 36px;
  }
}
