/* ── Blind Text — shared styles ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --flame: #ff4d2e;
  --ember: #ff8c42;
  --glow: #ffb347;
  --dark: #0d0d0d;
  --surface: #141414;
  --card: #1c1c1c;
  --text: #f5f5f5;
  --muted: #888;
  --radius: 16px;
}

html { scroll-behavior: smooth; }

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

a { color: inherit; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.logo img { width: 36px; height: 36px; border-radius: 8px; }
.logo .brand-block {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}
.logo .brand {
  font-size: 1.35rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--flame), var(--glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  line-height: 1;
}
.logo .brand-sub {
  font-size: 0.62rem;
  color: var(--muted);
  letter-spacing: 0.5px;
  font-weight: 500;
  text-transform: uppercase;
}

.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.15s, opacity 0.15s;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-1px); opacity: 0.9; }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--flame), var(--ember));
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,77,46,0.4);
}

/* Oversized primary CTA — used in the hero and download section.
   Uses Android brand green so it visually reads as "official Android
   download" against the dark/flame palette. */
.btn-mega {
  --android: #3DDC84;
  --android-dark: #00A86B;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--android), var(--android-dark));
  color: #06121a;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.3px;
  padding: 20px 44px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 10px 36px rgba(61,220,132,0.45),
              0 0 0 1px rgba(255,255,255,0.06) inset;
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative;
  z-index: 1;
}
.btn-mega::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--android), #5BE69A);
  opacity: 0;
  z-index: -1;
  filter: blur(10px);
  transition: opacity 0.2s;
}
.btn-mega:hover { transform: translateY(-2px); }
.btn-mega:hover::after { opacity: 0.7; }
.btn-mega .arrow { font-size: 1.3rem; }
.btn-mega-sub {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  opacity: 0.85;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.btn-mega-main { font-size: 1.15rem; line-height: 1.1; }

/* Small disclaimer that sits under every "Download the App" button. */
.btn-mega-note {
  display: block;
  margin-top: 28px;
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.6;
}
.btn-mega-note strong { color: var(--text); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.5); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* Tight horizontal padding so phone mockups can take more width. */
  padding: 120px 8px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(255,77,46,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,77,46,0.12);
  border: 1px solid rgba(255,77,46,0.3);
  color: var(--ember);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  max-width: 900px;
  margin-bottom: 24px;
}

h1 span {
  background: linear-gradient(135deg, var(--flame), var(--glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Phone mockups ──
   Home/search screen sits in front (highlighted, glowing),
   Chat screen peeks out from behind. */
.phone-mockup {
  margin-top: 70px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
}

.phone {
  width: 280px;
  background: var(--card);
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
}
/* First phone in markup = home/search screen — sits on top. */
.phone:nth-child(1) {
  z-index: 2;
  box-shadow: 0 50px 110px rgba(0,0,0,0.75),
              0 0 0 1px rgba(255,255,255,0.06),
              0 0 80px rgba(255,77,46,0.2);
}
/* Second phone = chat screen — peeks out from behind, slightly lower. */
.phone:nth-child(2) {
  margin-top: 40px;
  margin-left: -90px;
  z-index: 1;
  opacity: 0.92;
  transform: rotate(2deg);
}

.phone-notch {
  width: 90px; height: 24px;
  background: var(--dark);
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
}

.phone-screen { padding: 14px; min-height: 380px; }

.phone-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 8px 10px;
  background: rgba(255,77,46,0.08);
  border-radius: 12px;
}
.avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--flame), var(--ember));
}
.chat-name { font-size: 0.85rem; font-weight: 600; }
.chat-status { font-size: 0.7rem; color: #4caf50; }

.bubble {
  padding: 9px 13px;
  border-radius: 18px;
  font-size: 0.8rem;
  max-width: 80%;
  margin-bottom: 8px;
  line-height: 1.4;
}
.bubble-in {
  background: rgba(255,255,255,0.08);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.bubble-out {
  background: linear-gradient(135deg, var(--flame), var(--ember));
  color: #fff;
  border-bottom-right-radius: 4px;
  margin-left: auto;
}
.bubbles { display: flex; flex-direction: column; }

/* home-screen mockup */
.home-screen {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-top: 6px;
  gap: 12px;
}
.greet {
  background: linear-gradient(135deg, var(--flame), var(--ember));
  border-radius: 12px;
  padding: 12px;
  color: #fff;
}
.greet-hi { font-size: 0.9rem; font-weight: 700; }
.greet-sub { font-size: 0.7rem; opacity: 0.85; }

.filter-row {
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: var(--muted);
}
.filter-value { color: var(--text); font-weight: 600; }

.start-btn {
  padding: 12px;
  background: linear-gradient(135deg, var(--flame), var(--ember));
  border-radius: 12px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,77,46,0.35);
}

/* ── SECTIONS ── */
section { padding: 90px 24px; }

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

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--flame);
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}

h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }

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

/* ── HOW IT WORKS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 56px;
}
.step {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
}
.step-number {
  position: absolute;
  top: 16px; right: 24px;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
}
.step-icon { font-size: 1.8rem; margin-bottom: 14px; }
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: var(--muted); }

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 56px;
}
.feature-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 26px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-color: rgba(255,77,46,0.25);
  transform: translateY(-2px);
}
.feature-icon {
  width: 44px; height: 44px;
  background: rgba(255,77,46,0.1);
  border: 1px solid rgba(255,77,46,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.feature-card p { font-size: 0.86rem; color: var(--muted); }

/* ── PRIVACY ── */
.privacy-section {
  background: var(--surface);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.privacy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.privacy-points {
  margin-top: 32px;
  display: flex; flex-direction: column;
  gap: 18px;
}
.privacy-point { display: flex; gap: 14px; align-items: flex-start; }
.check {
  width: 24px; height: 24px; flex-shrink: 0;
  background: rgba(255,77,46,0.12);
  border: 1px solid rgba(255,77,46,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  color: var(--flame);
  margin-top: 2px;
}
.privacy-point h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.privacy-point p { font-size: 0.85rem; color: var(--muted); }

.shield-graphic { display: flex; align-items: center; justify-content: center; }
.shield {
  width: 220px; height: 260px;
  background: linear-gradient(160deg, rgba(255,77,46,0.1), rgba(255,140,66,0.05));
  border: 1px solid rgba(255,77,46,0.2);
  border-radius: 50% 50% 60% 60% / 40% 40% 60% 60%;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  box-shadow: 0 0 80px rgba(255,77,46,0.1);
}

/* ── FREE-FOREVER BANNER ── */
.free-banner {
  text-align: center;
  background: linear-gradient(135deg, rgba(255,77,46,0.08), rgba(255,140,66,0.04));
  border-top: 1px solid rgba(255,77,46,0.2);
  border-bottom: 1px solid rgba(255,77,46,0.2);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.free-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,77,46,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.free-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--flame), var(--ember));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  box-shadow: 0 4px 18px rgba(255,77,46,0.4);
}
.free-headline {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 20px;
}
.free-headline span {
  background: linear-gradient(135deg, var(--flame), var(--glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.free-sub {
  font-size: 1.1rem;
  color: var(--text);
  max-width: 620px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.free-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  max-width: 720px;
  margin: 32px auto 0;
}
.free-pill {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,77,46,0.25);
  border-radius: 100px;
  padding: 12px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.free-pill .check-mini {
  color: var(--flame);
  margin-right: 6px;
  font-weight: 800;
}

/* ── DOWNLOAD ── */
.download-section { text-align: center; }
.download-section .section-sub { margin: 0 auto; }
.download-cta {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.apk-meta {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 6px;
}
.apk-meta strong { color: var(--text); font-weight: 600; }

.region-note {
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.region-note strong { color: var(--text); }

/* ── HOW TO INSTALL ── */
.install-section {
  background: var(--surface);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.install-callout {
  background: rgba(255,77,46,0.08);
  border: 1px solid rgba(255,77,46,0.25);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 24px 0 40px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.92rem;
}
.install-callout .icon-info {
  font-size: 1.3rem;
  flex-shrink: 0;
}
.install-callout strong { color: var(--ember); }

.install-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 36px;
}
.install-step {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
}
.install-step .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--flame), var(--ember));
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.install-step h3 {
  font-size: 1.02rem;
  margin-bottom: 6px;
}
.install-step p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

/* mini phone-shaped illustrations inside install steps */
.mini-screen {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px 10px;
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 14px;
  text-align: center;
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.mini-screen .toggle {
  display: inline-block;
  background: linear-gradient(135deg, var(--flame), var(--ember));
  width: 30px;
  height: 16px;
  border-radius: 16px;
  position: relative;
  margin: 4px auto;
}
.mini-screen .toggle::after {
  content: '';
  position: absolute;
  right: 2px; top: 2px;
  width: 12px; height: 12px;
  background: #fff;
  border-radius: 50%;
}
.mini-screen .download-icon {
  font-size: 1.6rem;
  color: var(--flame);
}
.mini-screen .file-name {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 0.7rem;
  color: var(--text);
}
.mini-screen .install-button {
  background: linear-gradient(135deg, var(--flame), var(--ember));
  color: #fff;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.7rem;
  display: inline-block;
  margin: 4px auto;
}
.mini-screen .home-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  margin: 0 auto 4px;
  background-image: url('logo.png');
  background-size: cover;
  background-position: center;
}

/* ── FAQ ── */
.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 0;
  transition: border-color 0.2s;
}
.faq:hover { border-color: rgba(255,77,46,0.25); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--flame);
  transition: transform 0.2s;
}
.faq[open] summary::after {
  content: '−';
}
.faq-body {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}
.faq-body p { margin-bottom: 10px; }
.faq-body strong { color: var(--text); }

/* ── LEGAL / CONTACT pages ── */
.page {
  padding: 120px 24px 60px;
  min-height: 100vh;
}
.page .container { max-width: 760px; }
.page h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 16px;
}
.page .meta {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 36px;
}
.page h2 {
  font-size: 1.4rem;
  margin: 32px 0 12px;
}
.page p, .page li {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.page ul { padding-left: 22px; margin-bottom: 16px; }

.contact-card {
  background: var(--card);
  border: 1px solid rgba(255,77,46,0.18);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 28px;
}
.contact-card .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ember);
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-card a {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  word-break: break-all;
}
.contact-card a:hover { color: var(--flame); }
.contact-card .hint {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ── FOOTER ── */
footer {
  padding: 44px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
footer p { font-size: 0.8rem; color: #555; }

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,77,46,0.2), transparent);
  margin: 0 24px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 12px 18px; }
  .nav-links { display: none; }
  .privacy-inner { grid-template-columns: 1fr; gap: 36px; }
  .shield-graphic { display: none; }

  /* Show BOTH phone mockups; home in front, chat peeking from behind. */
  .phone-mockup {
    gap: 0;
    transform: scale(0.95);
    transform-origin: top center;
    margin-top: 40px;
  }
  .phone { width: 200px; }
  .phone:nth-child(2) {
    margin-top: 30px;
    margin-left: -70px;
    transform: rotate(2deg);
  }
  .phone-screen { padding: 10px; min-height: 360px; }
  .bubble { font-size: 0.72rem; padding: 7px 10px; }
  .greet-hi { font-size: 0.85rem; }
  .greet-sub { font-size: 0.66rem; }
  .filter-row { padding: 8px 10px; font-size: 0.7rem; }
  .start-btn { padding: 10px; font-size: 0.82rem; }

  .btn-mega { padding: 16px 30px; font-size: 1rem; }
}

@media (max-width: 380px) {
  .phone-mockup { transform: scale(0.78); }
}
