/* ── Choozas Landing Page – Light Theme (matching app) ── */
:root {
  --bg: #f1f8f7;
  --bg-gradient-start: #f8fcfb;
  --foreground: #10363b;
  --muted: #64748b;
  --muted-light: #94a3b8;
  --surface: #ffffff;
  --border: #e2e8f0;
  --border-soft: #deece8;
  --accent: #2f9f8f;
  --accent-strong: #1f5f66;
  --accent-bg: rgba(47, 159, 143, 0.08);
  --accent-bg-strong: rgba(47, 159, 143, 0.14);
  --focus-ring: #2f9f8f;
  --card-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background:
    radial-gradient(circle at 14% 8%, rgba(47, 159, 143, 0.15), transparent 40%),
    radial-gradient(circle at 86% 14%, rgba(129, 201, 183, 0.2), transparent 34%),
    linear-gradient(180deg, var(--bg-gradient-start) 0%, var(--bg) 100%);
  color: var(--foreground);
  font-family: "Avenir Next", "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(1080px, 92vw);
  margin: 0 auto;
}

/* ── HERO ── */
.hero {
  padding: 3rem 0 2.5rem;
  text-align: center;
}

.hero-logo img {
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.pill {
  display: inline-block;
  border: 1px solid var(--accent);
  background: var(--accent-bg);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  color: var(--accent-strong);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

h1 {
  font-size: clamp(1.8rem, 4.2vw, 3rem);
  line-height: 1.15;
  margin: 0.8rem 0;
  letter-spacing: -0.01em;
  color: var(--foreground);
}

h2 {
  margin-top: 0;
  line-height: 1.25;
  color: var(--foreground);
}

h3 {
  margin-top: 0;
  line-height: 1.3;
  color: var(--foreground);
}

.lead {
  color: var(--muted);
  max-width: 54ch;
  font-size: 1.05rem;
  margin: 0 auto 1.4rem;
  line-height: 1.6;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-icon,
.btn-icon-right {
  flex-shrink: 0;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
}

.btn-primary:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  box-shadow: 0 4px 16px rgba(47, 159, 143, 0.3);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent-bg);
}

.btn-large {
  padding: 0.75rem 2rem;
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: 1.5rem;
}

.hero-hint {
  color: var(--muted-light);
  font-size: 0.82rem;
  margin-top: 0.5rem;
}

/* ── STATUS BANNER ── */
.status-banner {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin: 0 0 2.5rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--card-shadow);
}

.status-icon-svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.status-text {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.status-text strong {
  color: var(--foreground);
}

/* ── SECTIONS ── */
.section {
  margin: 2.5rem 0;
}

.section-title {
  font-size: 1.45rem;
  text-align: center;
  margin-bottom: 0.3rem;
  letter-spacing: -0.005em;
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  max-width: 52ch;
  margin: 0 auto 1.6rem;
  font-size: 0.95rem;
}

/* ── GRID ── */
.grid {
  display: grid;
  gap: 1rem;
}

.cards-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.cards-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* ── CARDS ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.3rem;
  box-shadow: var(--card-shadow);
}

.card-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-bg);
  margin-bottom: 0.8rem;
}

/* ── FEATURE CARDS ── */
.feature-card {
  display: flex;
  flex-direction: column;
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.feature-card > p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0 0 0.8rem;
  line-height: 1.55;
}

/* ── APP MOCKUPS (matching Choozas app style) ── */
.app-mockup {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.6rem 0.7rem;
  font-size: 0.78rem;
  line-height: 1.5;
  margin-top: auto;
}

.mockup-bar {
  font-weight: 700;
  color: var(--accent);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-bottom: 0.3rem;
  margin-bottom: 0.3rem;
  border-bottom: 1px solid var(--border);
}

.mockup-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0;
  color: var(--foreground);
}

.dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-green { background: var(--accent); }
.dot-red { background: #ef4444; }

/* Chips for feed mockup */
.chip {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 700;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}

.chip-indigo { background: #e0e7ff; color: #4338ca; }
.chip-teal { background: #ccfbf1; color: #0f766e; }
.chip-amber { background: #fef3c7; color: #92400e; }

/* Family mockup avatars */
.mockup-person-row {
  gap: 0.5rem;
}

.avatar-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #cbd5e1;
  color: #334155;
  font-size: 0.55rem;
  font-weight: 700;
  flex-shrink: 0;
}

.avatar-child {
  background: #bfdbfe;
  color: #1e40af;
}

/* ── PRODUCT PREVIEW GRID (mimicking app cards) ── */
.product-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.preview-card {
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform 0.15s;
}

.preview-card:hover {
  transform: scale(1.03);
}

.preview-img {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f3f4f6;
}

.preview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.preview-cat {
  position: absolute;
  top: 6px;
  left: 6px;
  background: rgba(255, 255, 255, 0.92);
  padding: 1px 7px;
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--muted);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.preview-actions {
  position: absolute;
  top: 6px;
  right: 6px;
  display: flex;
  gap: 3px;
}

.preview-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  color: var(--muted-light);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.preview-btn.active {
  background: #334155;
  border-color: #334155;
  color: #fff;
}

.preview-avatars {
  position: absolute;
  bottom: 6px;
  left: 6px;
  display: flex;
}

.preview-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #cbd5e1;
  color: #334155;
  font-size: 0.55rem;
  font-weight: 700;
  border: 1.5px solid #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.preview-avatar-img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  display: block;
}

.preview-avatar.avatar-women {
  background: #f9a8d4;
  color: #831843;
}

.preview-avatar.avatar-men {
  background: #93c5fd;
  color: #1e3a5f;
}

.preview-avatar.avatar-child {
  background: #a5f3c4;
  color: #14532d;
}

.avatar-child-sm {
  background: #bfdbfe;
  color: #1e40af;
}

.preview-body {
  padding: 0.5rem 0.6rem 0.6rem;
}

.preview-title {
  font-size: 0.75rem;
  font-weight: 500;
  color: #111827;
  line-height: 1.3;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.preview-sizes {
  font-size: 0.6rem;
  color: var(--muted-light);
  margin: 0.2rem 0 0;
}

.preview-footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 0.4rem;
}

.preview-price {
  font-size: 0.8rem;
  font-weight: 700;
  color: #111827;
}

.preview-shop {
  font-size: 0.6rem;
  color: #9ca3af;
}

/* ── DEMO CTA ── */
.demo-cta {
  margin: 2.5rem 0;
  padding: 2rem;
  border: 2px solid var(--accent);
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-bg-strong), var(--accent-bg));
  text-align: center;
}

.demo-cta-icon {
  margin-bottom: 0.4rem;
}

.demo-cta h2 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.demo-cta > div > p {
  color: var(--muted);
  max-width: 50ch;
  margin: 0 auto 1.1rem;
  font-size: 0.92rem;
  line-height: 1.55;
}

.demo-note {
  font-size: 0.75rem;
  color: var(--muted-light);
  margin-top: 0.6rem;
}

/* ── PARTNER SECTION ── */
.partner-section {
  margin-top: 2.5rem;
}

.partner-card {
  text-align: center;
  padding: 1.2rem 1rem;
}

.partner-card .card-icon-wrap {
  margin: 0 auto 0.6rem;
}

.partner-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.partner-card p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.partner-cta {
  text-align: center;
  margin-top: 1.4rem;
  padding: 1.2rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--card-shadow);
}

.partner-cta p {
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.partner-cta strong {
  color: var(--foreground);
}

/* ── ROADMAP ── */
.roadmap {
  margin: 2.5rem 0;
}

.roadmap h2 {
  margin-bottom: 0.8rem;
  font-size: 1.15rem;
}

.roadmap-items {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.roadmap-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.roadmap-marker {
  flex-shrink: 0;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.roadmap-item strong {
  display: block;
  font-size: 0.9rem;
}

.roadmap-desc {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.roadmap-item.current strong {
  color: var(--accent);
}

.roadmap-item.upcoming {
  opacity: 0.5;
}

/* ── LINKS & FOOTER ── */
a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.footer {
  border-top: 1px solid var(--border);
  margin-top: 2.5rem;
  padding: 1rem 0 1.6rem;
}

.footer-inner {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--muted);
}

.footer nav {
  display: flex;
  gap: 1rem;
}

.footer a {
  color: var(--muted);
}

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

/* ── LEGAL PAGES ── */
.legal {
  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
  padding: 1.4rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--card-shadow);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .product-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 2rem;
  }

  .hero-logo img {
    width: 56px;
    height: 56px;
  }

  h1 {
    font-size: 1.6rem;
  }

  .btn-large {
    padding: 0.7rem 1.4rem;
    font-size: 0.95rem;
    justify-content: center;
    width: 100%;
  }

  .status-banner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .cards-3 {
    grid-template-columns: 1fr;
  }

  .cards-4 {
    grid-template-columns: 1fr 1fr;
  }

  .product-preview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

  .demo-cta {
    padding: 1.2rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 400px) {
  .cards-4 {
    grid-template-columns: 1fr;
  }
}
