/* MustTry marketing site — https://musttry.ai */
:root {
  color-scheme: dark;
  --bg: #0a0610;
  --bg-elevated: #14101c;
  --bg-card: #1a1524;
  --text: #f8f6ff;
  --muted: #a8a3b8;
  --muted-dim: #6b6578;
  --accent: #8b5cf6;
  --accent-pink: #ff4ecd;
  --accent-cyan: #22d3ee;
  --accent-amber: #fbbf24;
  --neon: #2ef2a0;
  --neon-dim: rgba(46, 242, 160, 0.15);
  --purple-dim: rgba(139, 92, 246, 0.2);
  --pink-dim: rgba(255, 78, 205, 0.18);
  --border: #2a2438;
  --gradient: linear-gradient(135deg, #8b5cf6 0%, #ff4ecd 100%);
  --gradient-wide: linear-gradient(120deg, #2ef2a0 0%, #8b5cf6 40%, #ff4ecd 80%, #fbbf24 100%);
  --radius: 16px;
  --radius-lg: 24px;
  --header-h: 72px;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--neon);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #5ff5b8;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  background: rgba(10, 6, 16, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(46, 242, 160, 0.5), rgba(139, 92, 246, 0.7), rgba(255, 78, 205, 0.5));
  pointer-events: none;
}

.site-header .brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.125rem;
}

.site-header .brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
}

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

.nav-cta {
  padding: 0.5rem 1rem !important;
  border-radius: 999px;
  background: var(--gradient) !important;
  color: #fff !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  opacity: 0.92;
  color: #fff !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gradient);
  color: #fff !important;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.35);
}

.btn-secondary {
  background: rgba(139, 92, 246, 0.12);
  color: var(--text) !important;
  text-decoration: none;
  border: 1px solid rgba(139, 92, 246, 0.45);
}

.btn-secondary:hover {
  background: rgba(139, 92, 246, 0.22);
  border-color: rgba(255, 78, 205, 0.5);
}

.btn-ghost {
  background: var(--neon-dim);
  color: var(--neon) !important;
  text-decoration: none;
  border: 1px solid rgba(46, 242, 160, 0.35);
}

/* Hero */
.hero {
  position: relative;
  padding: 4rem 0 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.7;
  animation: blob-float 14s ease-in-out infinite;
}

.blob-purple {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -80px;
  background: rgba(139, 92, 246, 0.55);
}

.blob-pink {
  width: 360px;
  height: 360px;
  top: 10%;
  right: -60px;
  background: rgba(255, 78, 205, 0.45);
  animation-delay: -4s;
}

.blob-green {
  width: 280px;
  height: 280px;
  bottom: 0;
  left: 35%;
  background: rgba(46, 242, 160, 0.35);
  animation-delay: -8s;
}

@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(24px, -16px) scale(1.05); }
  66% { transform: translate(-16px, 12px) scale(0.95); }
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neon);
  background: linear-gradient(90deg, rgba(46, 242, 160, 0.15), rgba(139, 92, 246, 0.12));
  border: 1px solid rgba(46, 242, 160, 0.35);
  border-radius: 999px;
}

.hero h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero .lead {
  margin: 0 0 2rem;
  font-size: 1.1875rem;
  color: var(--muted);
  max-width: 32rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-note {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted-dim);
}

/* Phone mock */
.phone-wrap {
  display: flex;
  justify-content: center;
}

.phone {
  width: min(100%, 300px);
  aspect-ratio: 9 / 19;
  border-radius: 36px;
  padding: 3px;
  background: linear-gradient(160deg, #2ef2a0, #8b5cf6 45%, #ff4ecd);
  box-shadow:
    0 40px 80px rgba(139, 92, 246, 0.35),
    0 0 60px rgba(255, 78, 205, 0.15);
  overflow: hidden;
  position: relative;
}

.phone::before {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 33px;
  background: var(--bg-elevated);
  z-index: 0;
}

.phone-notch,
.phone-screen {
  position: relative;
  z-index: 1;
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background: #000;
  border-radius: 20px;
  z-index: 2;
}

.phone-screen {
  padding: 0;
  height: 100%;
  overflow: hidden;
  border-radius: 33px;
}

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

.mock-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.875rem;
}

.mock-card-live {
  background: linear-gradient(145deg, rgba(46, 242, 160, 0.12), rgba(26, 21, 36, 0.95));
  border-color: rgba(46, 242, 160, 0.35);
}

.mock-card-friends {
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.18), rgba(26, 21, 36, 0.95));
  border-color: rgba(139, 92, 246, 0.4);
}

.mock-card-360 {
  background: linear-gradient(145deg, rgba(255, 78, 205, 0.14), rgba(26, 21, 36, 0.95));
  border-color: rgba(255, 78, 205, 0.35);
}

.mock-live {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon);
}

.mock-live span {
  font-size: 0.6875rem;
  font-weight: 800;
  color: var(--neon);
  letter-spacing: 0.05em;
}

.mock-card strong {
  display: block;
  font-size: 0.8125rem;
  margin-bottom: 0.25rem;
}

.mock-card p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
}

.mock-tags {
  display: flex;
  gap: 0.375rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.mock-tag {
  font-size: 0.625rem;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  background: var(--neon-dim);
  color: var(--neon);
  font-weight: 600;
}

.mock-tag:last-child {
  background: rgba(251, 191, 36, 0.2);
  color: #fcd34d;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(139, 92, 246, 0.08) 0%, transparent 30%),
    linear-gradient(0deg, rgba(255, 78, 205, 0.06) 0%, transparent 25%),
    var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.section-header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3rem;
}

.section-header h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  letter-spacing: -0.02em;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 1.0625rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s ease;
}

.feature-card:hover {
  border-color: rgba(139, 92, 246, 0.45);
}

.feature-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: step;
}

.step {
  text-align: center;
  counter-increment: step;
}

.step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--gradient);
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.step:nth-child(1)::before {
  background: linear-gradient(135deg, #2ef2a0, #22d3ee);
  box-shadow: 0 4px 20px rgba(46, 242, 160, 0.35);
  color: #0a0610;
}

.step:nth-child(2)::before {
  background: linear-gradient(135deg, #8b5cf6, #ff4ecd);
}

.step:nth-child(3)::before {
  background: linear-gradient(135deg, #fbbf24, #ff4ecd);
  color: #1a1028;
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
}

.step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
}

.trust-card {
  padding: 2rem !important;
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.2), rgba(255, 78, 205, 0.12)) !important;
  border-color: rgba(139, 92, 246, 0.45) !important;
  box-shadow: 0 16px 48px rgba(139, 92, 246, 0.15);
}

.trust-card::before {
  background: var(--gradient-wide) !important;
}

/* Trust */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.trust-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--muted);
  font-size: 0.9375rem;
}

.trust-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--neon);
  font-weight: 700;
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: 4rem 1.5rem;
  background: linear-gradient(120deg, #6d28d9 0%, #8b5cf6 25%, #ff4ecd 55%, #db2777 85%);
  margin: 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(46, 242, 160, 0.25), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(251, 191, 36, 0.2), transparent 35%);
  pointer-events: none;
}

.cta-band h2,
.cta-band p,
.cta-band .btn,
.cta-band a {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: #fff;
}

.cta-band p {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.0625rem;
}

.cta-band .btn {
  background: #fff;
  color: #1a1028 !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-band .app-store-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: min(100%, 17.5rem);
}

.app-store-cta-icon {
  width: 1.25rem;
  height: 1.25rem;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 814 1000'%3E%3Cpath d='M788.1 340.9c-5.8 4.5-108.2 62.2-108.2 190.5 0 148.4 130.3 200.9 134.2 202.2-.6 3.2-20.7 71.9-68.7 141.9-42.8 61.6-87.5 123.1-155.5 123.1s-85.5-39.5-163.3-39.5c-76 0-103.7 40.8-165.9 40.8s-105.6-57-155.5-127C46.7 790.7 0 663 0 541.8c0-194.4 126.4-297.5 250.8-297.5 66.1 0 121.2 43.4 162.7 43.4 39.5 0 101.1-46 176.3-46 28.2 0 129.8 2.6 196.3 99.2zm-234-181.5c31.1-36.9 53.1-88.1 53.1-139.3 0-7.1-.6-14.3-1.9-20.1-50.6 1.9-110.8 33.7-147.1 75.8-28.2 32.4-54.4 83.6-54.4 135.5 0 7.8 1.3 15.6 1.9 18.1 3.2.6 8.4 1.3 13.6 1.3 45.4 0 102.5-30.4 135.8-71.3z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 814 1000'%3E%3Cpath d='M788.1 340.9c-5.8 4.5-108.2 62.2-108.2 190.5 0 148.4 130.3 200.9 134.2 202.2-.6 3.2-20.7 71.9-68.7 141.9-42.8 61.6-87.5 123.1-155.5 123.1s-85.5-39.5-163.3-39.5c-76 0-103.7 40.8-165.9 40.8s-105.6-57-155.5-127C46.7 790.7 0 663 0 541.8c0-194.4 126.4-297.5 250.8-297.5 66.1 0 121.2 43.4 162.7 43.4 39.5 0 101.1-46 176.3-46 28.2 0 129.8 2.6 196.3 99.2zm-234-181.5c31.1-36.9 53.1-88.1 53.1-139.3 0-7.1-.6-14.3-1.9-20.1-50.6 1.9-110.8 33.7-147.1 75.8-28.2 32.4-54.4 83.6-54.4 135.5 0 7.8 1.3 15.6 1.9 18.1 3.2.6 8.4 1.3 13.6 1.3 45.4 0 102.5-30.4 135.8-71.3z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.cta-store-note {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.82);
}

/* Footer */
.site-footer {
  position: relative;
  padding: 2.5rem 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.875rem;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(46, 242, 160, 0.35), rgba(139, 92, 246, 0.55), rgba(255, 78, 205, 0.35));
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: var(--max);
  margin: 0 auto 1.5rem;
}

.footer-brand {
  max-width: 16rem;
}

.footer-brand .brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-brand img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-col h4 {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted-dim);
}

.footer-col a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

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

.footer-bottom {
  text-align: center;
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* Legal docs */
.doc {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.doc h1 {
  font-size: 2rem;
  margin: 0 0 0.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.updated,
.intro {
  color: var(--muted);
}

.doc section {
  margin-top: 1.75rem;
}

.doc section h2 {
  font-size: 1.05rem;
  margin: 0 0 0.75rem;
  color: #c4b5fd;
}

.doc section p {
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.doc section ul {
  color: var(--muted);
  padding-left: 1.25rem;
  margin: 0;
}

.doc section li {
  margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .phone-wrap {
    order: -1;
  }

  .features,
  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    gap: 0;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }

  .site-nav .nav-cta {
    margin-top: 0.75rem;
    text-align: center;
    border: none;
  }

  .hero {
    padding-top: 2.5rem;
  }
}
