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

:root {
  --orange: #f47820;
  --orange-dim: rgba(244,120,32,0.15);
  --bg: #0d0d0d;
  --bg2: #141414;
  --bg3: #1a1a1a;
  --text: #f0f0f0;
  --muted: #888;
  --border: rgba(255,255,255,0.08);
  --radius: 16px;
}

html { scroll-behavior: smooth; }

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

a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

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

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
}

.nav-logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

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

.nav-links a:hover { color: var(--text); text-decoration: none; }

.nav-cta {
  background: var(--orange);
  color: #000 !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: opacity 0.2s;
}

.nav-cta:hover { opacity: 0.85; text-decoration: none !important; }

/* ── Hero ── */
.hero {
  text-align: center;
  padding: 100px 24px 80px;
  background: radial-gradient(ellipse at 50% 0%, rgba(244,120,32,0.12) 0%, transparent 70%);
}

.hero-badge {
  display: inline-block;
  background: var(--orange-dim);
  color: var(--orange);
  border: 1px solid rgba(244,120,32,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 span { color: var(--orange); }

.hero p {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 36px;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 50px;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); text-decoration: none; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.btn-secondary:hover { border-color: var(--orange); text-decoration: none; }

.app-store-badge {
  height: 52px;
  width: auto;
}

/* ── App Preview ── */
.preview {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 60px 24px;
  overflow: hidden;
}

.phone-mock {
  width: 200px;
  aspect-ratio: 9/19.5;
  background: var(--bg3);
  border-radius: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
  padding: 12px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.phone-mock::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 28px;
  background: var(--bg);
  border-radius: 0 0 16px 16px;
}

.phone-mock.center {
  transform: translateY(-20px);
  border-color: var(--orange);
  box-shadow: 0 0 40px rgba(244,120,32,0.2);
}

.phone-mock img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 34px;
}

/* ── Section shared ── */
section { padding: 80px 24px; }

.section-label {
  display: inline-block;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 520px;
}

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

/* ── Features ── */
.features { background: var(--bg2); }

.features-header { text-align: center; margin-bottom: 60px; }
.features-header .section-sub { margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: rgba(244,120,32,0.4);
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ── Pricing ── */
.pricing { text-align: center; }

.pricing-card {
  display: inline-block;
  background: var(--bg3);
  border: 1px solid var(--orange);
  border-radius: 24px;
  padding: 48px 56px;
  margin-top: 48px;
  position: relative;
  box-shadow: 0 0 60px rgba(244,120,32,0.12);
  max-width: 420px;
  width: 100%;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.pricing-price sup { font-size: 1.5rem; vertical-align: super; }
.pricing-price sub { font-size: 1rem; color: var(--muted); font-weight: 400; }

.pricing-desc {
  color: var(--muted);
  margin: 12px 0 32px;
  font-size: 0.95rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 36px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.pricing-features li:last-child { border-bottom: none; }

.check { color: var(--orange); font-weight: 700; }

.pricing-legal {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 20px;
  line-height: 1.5;
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, rgba(244,120,32,0.15), rgba(244,120,32,0.05));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 80px 24px;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-banner p {
  color: var(--muted);
  margin-bottom: 36px;
  font-size: 1.05rem;
}

/* ── Footer ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 48px 40px 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}

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

.footer-brand img {
  width: 32px;
  border-radius: 7px;
}

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a { color: var(--muted); font-size: 0.9rem; }
.footer-links a:hover { color: var(--text); text-decoration: none; }

.footer-copy {
  width: 100%;
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* ── Privacy / Support pages ── */
.page-hero {
  text-align: center;
  padding: 80px 24px 48px;
  background: radial-gradient(ellipse at 50% 0%, rgba(244,120,32,0.08) 0%, transparent 60%);
}

.page-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.page-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 36px 0 12px;
  color: var(--orange);
}

.page-content p, .page-content li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.page-content ul { padding-left: 20px; margin-top: 8px; }
.page-content li { margin-bottom: 6px; }

.support-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.support-icon { font-size: 2rem; flex-shrink: 0; }

.support-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.support-card p { color: var(--muted); font-size: 0.9rem; margin-bottom: 12px; }

/* ── Responsive ── */
@media (max-width: 640px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .preview { gap: 12px; }
  .phone-mock { width: 140px; }
  .pricing-card { padding: 36px 28px; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
}
