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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #0B0B0D;
  color: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── Layout ───────────────────────────────────────────────── */
.wrapper {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  padding: 20px 0;
  border-bottom: 1px solid #232328;
}

.site-header .wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

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

.site-header .brand {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.site-header .brand:hover { color: #E63E62; }

.site-header nav {
  margin-left: auto;
  display: flex;
  gap: 20px;
}

.site-header nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #A0A0A8;
  text-decoration: none;
  transition: color 0.2s;
}

.site-header nav a:hover,
.site-header nav a[aria-current="page"] {
  color: #E63E62;
}

/* Focus states */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #E63E62;
  outline-offset: 2px;
  border-radius: 4px;
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  padding: 32px 0;
  margin-top: 64px;
  border-top: 1px solid #232328;
  text-align: center;
  font-size: 0.8125rem;
  color: #A0A0A8;
  line-height: 1.8;
}

/* ── Typography ───────────────────────────────────────────── */
h1 { font-size: 2rem; font-weight: 800; line-height: 1.2; }
h2 { font-size: 1.375rem; font-weight: 700; line-height: 1.3; }
h3 { font-size: 1.1rem; font-weight: 600; line-height: 1.4; }

a { color: #E63E62; text-decoration: none; }
a:hover { text-decoration: underline; }

.secondary { color: #A0A0A8; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  text-align: center;
  padding: 64px 0 48px;
}

.hero img {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  margin-bottom: 20px;
}

.hero h1 { margin-bottom: 10px; }

.hero .tagline {
  font-size: 1.1rem;
  color: #A0A0A8;
  margin-bottom: 28px;
}

.app-store-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #E63E62;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.app-store-btn:hover {
  background: #d1345a;
  text-decoration: none;
  transform: translateY(-1px);
}

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: #131316;
  border: 1px solid #232328;
  border-radius: 18px;
  padding: 28px;
  margin-bottom: 16px;
}

/* ── Arrivals Ticker ──────────────────────────────────────── */
.ticker {
  overflow: hidden;
  background: #0C0C0F;
  border: 1px solid #222227;
  border-radius: 14px;
  padding: 14px 0;
  margin-bottom: 32px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 34s linear infinite;
}

.ticker-set {
  display: flex;
  gap: 28px;
  padding-right: 28px;
}

.ticker-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.ticker-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  color: #fff;
  padding: 3px 7px;
  border-radius: 5px;
  line-height: 1;
}

.ticker-text {
  font-size: 13px;
  font-weight: 700;
  color: #6E6E77;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ── Features Grid ────────────────────────────────────────── */
.section-label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #E63E62;
  margin-bottom: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 48px;
}

.feature-card {
  background: #131316;
  border: 1px solid #222227;
  border-radius: 20px;
  padding: 26px;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: #2C2C33;
  transform: translateY(-3px);
}

@media (hover: none) {
  .feature-card:hover { transform: none; }
}

.feature-num {
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.6px;
  color: #6E6E77;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #A0A0A8;
}

@media (max-width: 520px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ── Screenshot Strip ─────────────────────────────────────── */
.screenshots {
  margin-bottom: 48px;
}

.screenshot-strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

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

.screenshot-strip img {
  width: 200px;
  height: auto;
  border-radius: 16px;
  border: 1px solid #232328;
  flex-shrink: 0;
}

/* ── Contact / Requirements ───────────────────────────────── */
.info-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.info-row .card { flex: 1; min-width: 260px; margin-bottom: 0; }

/* ── FAQ ──────────────────────────────────────────────────── */
.page-title {
  padding: 48px 0 32px;
}

.faq-item {
  margin-bottom: 12px;
}

.faq-item summary {
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  padding: 18px 24px;
  background: #131316;
  border: 1px solid #232328;
  border-radius: 16px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: border-color 0.2s;
}

.faq-item summary:hover {
  border-color: #E63E62;
}

.faq-item summary::after {
  content: "▸";
  font-size: 0.875rem;
  color: #A0A0A8;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(90deg);
}

.faq-item[open] summary {
  border-radius: 16px 16px 0 0;
  border-bottom-color: transparent;
}

.faq-item .faq-body {
  padding: 16px 24px 20px;
  background: #131316;
  border: 1px solid #232328;
  border-top: none;
  border-radius: 0 0 16px 16px;
  font-size: 0.9375rem;
  color: #A0A0A8;
  line-height: 1.7;
}

/* Remove default marker in WebKit */
.faq-item summary::-webkit-details-marker { display: none; }

/* ── Privacy ──────────────────────────────────────────────── */
.policy-section { margin-bottom: 32px; }
.policy-section h3 { margin-bottom: 8px; }
.policy-section p,
.policy-section ul { color: #A0A0A8; }
.policy-section ul { padding-left: 20px; margin-top: 8px; }
.policy-section li { margin-bottom: 4px; }

.effective-date {
  font-size: 0.875rem;
  color: #A0A0A8;
  margin-bottom: 32px;
}

/* ── Utility ──────────────────────────────────────────────── */
.mt-0 { margin-top: 0; }
