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

:root {
  --teal:    #14b8a6;
  --teal-d:  #0d9488;
  --orange:  #ea6c0a;
  --bg:      #080a0c;
  --bg2:     #0f1214;
  --bg3:     #161a1d;
  --text:    #ffffff;
  --muted:   #94a3b8;
  --border:  rgba(255,255,255,0.08);
  --glass:   rgba(255,255,255,0.04);
  --radius:  16px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: rgba(8,10,12,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #fff;
}

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

.nav-links a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: #fff; }

.nav-cta {
  background: var(--teal-d);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 14px !important;
  font-weight: 600;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--teal) !important; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.orb-teal {
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,148,136,0.18) 0%, transparent 65%);
  top: -300px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.orb-orange {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234,108,10,0.12) 0%, transparent 65%);
  bottom: -150px; right: -150px;
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20,184,166,0.12);
  border: 1px solid rgba(20,184,166,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.3px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(48px, 9vw, 96px);
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1.0;
  margin-bottom: 24px;
  color: #fff;
  text-transform: uppercase;
}

.hero h1 span {
  background: linear-gradient(120deg, var(--teal), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--teal), var(--teal-d));
  color: #fff;
  padding: 16px 32px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.2px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 40px rgba(20,184,166,0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 50px rgba(20,184,166,0.55);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 16px 28px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.15);
  color: #fff;
}

.hero-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
  opacity: 0.6;
}

/* ── Phone mockups ── */
.phones {
  position: relative;
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  height: 420px;
}

.phone {
  width: 200px;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.phone-center {
  height: 420px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(20,184,166,0.25), 0 0 60px rgba(20,184,166,0.1);
}

/* ── Section layout ── */
section {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.0;
  margin-bottom: 16px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 64px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ── Features ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.feature-card {
  background: var(--bg2);
  padding: 36px 32px;
  transition: background 0.3s;
}

.feature-card:hover { background: var(--bg3); }

.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.feature-icon.teal   { background: rgba(20,184,166,0.15); }
.feature-icon.orange { background: rgba(249,115,22,0.15); }
.feature-icon.blue   { background: rgba(59,130,246,0.15); }
.feature-icon.purple { background: rgba(168,85,247,0.15); }
.feature-icon.yellow { background: rgba(234,179,8,0.15); }
.feature-icon.green  { background: rgba(34,197,94,0.15); }

.feature-card h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
  text-transform: uppercase;
  color: #fff;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Screenshots ── */
.screenshots-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 24px;
}

.screenshots-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.appstore-strip {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  margin-top: 60px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.appstore-strip::-webkit-scrollbar { display: none; }

.appstore-img {
  flex-shrink: 0;
  width: 220px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

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

.appstore-img.featured {
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(20,184,166,0.25), 0 0 40px rgba(20,184,166,0.1);
}

/* ── Pricing ── */
.pricing-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  text-align: center;
}

.pricing-card.featured {
  border-color: var(--teal-d);
  background: linear-gradient(160deg, rgba(13,148,136,0.1), var(--bg2));
  box-shadow: 0 0 60px rgba(13,148,136,0.12);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(120deg, var(--teal), var(--teal-d));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-name {
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.pricing-price {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 6px;
  color: #fff;
}

.pricing-price .currency { font-size: 26px; vertical-align: top; margin-top: 12px; display: inline-block; }
.pricing-price .period { font-size: 16px; font-weight: 400; color: var(--muted); letter-spacing: 0; }

.pricing-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.pricing-list {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}

.pricing-list li::before {
  content: "✓";
  color: var(--teal);
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}

.pricing-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-btn.primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-d));
  color: #fff;
  box-shadow: 0 4px 24px rgba(20,184,166,0.35);
}

.pricing-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(20,184,166,0.5);
}

.pricing-btn.ghost {
  border: 1px solid var(--border);
  color: var(--muted);
}

.pricing-btn.ghost:hover {
  border-color: rgba(255,255,255,0.15);
  color: #fff;
}

/* ── Privacy strip ── */
.privacy-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 24px;
}

.privacy-strip-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.privacy-strip-inner h2 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: #fff;
}

.privacy-strip-inner p {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.privacy-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.privacy-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.privacy-pill span.icon { font-size: 16px; }

/* ── Privacy page ── */
.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 24px 120px;
}

.page-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.last-updated {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 60px;
}

.summary {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 60px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.section {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.section:last-child {
  border-bottom: 1px solid var(--border);
}

/* Privacy page typography — scoped to .page so it doesn't bleed into index */
.page h1 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.0;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}

.page h2 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.page p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 16px;
}

.page p:last-child { margin-bottom: 0; }

.page a { color: var(--teal); }
.page a:hover { text-decoration: underline; }

.page ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.page ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--muted);
}

.page ul li::before {
  content: "✓";
  color: var(--teal);
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 24px;
  text-align: center;
}

.footer-logo {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: #fff;
}

.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-links a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

.footer-copy {
  font-size: 12px;
  color: rgba(148,163,184,0.35);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .hero { overflow: visible; }

  .phones {
    overflow-x: auto;
    overflow-y: visible;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 40px 40px;
    gap: 16px;
    height: auto;
    width: 100vw;
    margin-left: -24px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .phones::-webkit-scrollbar { display: none; }

  .phone {
    width: 170px;
    height: 360px;
    flex-shrink: 0;
    scroll-snap-align: center;
  }

  .phone-center { width: 170px; height: 360px; }

  .appstore-strip {
    justify-content: flex-start;
    padding: 20px 24px 32px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .appstore-img {
    width: 180px;
    scroll-snap-align: center;
  }

  .pricing-wrap { grid-template-columns: 1fr; max-width: 380px; }
  .features-grid { grid-template-columns: 1fr; }
  .page { padding: 48px 20px 80px; }
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero > * { animation: fadeUp 0.7s ease both; }
.hero > *:nth-child(1) { animation-delay: 0.05s; }
.hero > *:nth-child(2) { animation-delay: 0.15s; }
.hero > *:nth-child(3) { animation-delay: 0.25s; }
.hero > *:nth-child(4) { animation-delay: 0.35s; }
.hero > *:nth-child(5) { animation-delay: 0.45s; }
.hero > *:nth-child(6) { animation-delay: 0.55s; }
