/* ==========================================================================
   Amora marketing site
   Theme: dark + pink, matching the mobile app
   ========================================================================== */

:root {
  --surface: #0A0A0B;
  --surface-2: #16161A;
  --surface-3: #1F1A1D;
  --on-surface: #FFFFFF;
  --on-surface-soft: #F5F5F5;
  --pink-soft: #FBCFE8;
  --brand: #EC4899;
  --brand-2: #F472B6;
  --brand-3: #BE185D;
  --border: #2A2A30;
  --muted: #A1A1AA;
  --max: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--surface);
  color: var(--on-surface);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: rgba(10, 10, 11, 0.75);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
}
.heart { font-size: 22px; }
.brand-text {
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--on-surface-soft);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--brand); }

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff !important;
  font-weight: 700;
}
.nav-cta:hover { background: var(--brand-2); color: #fff !important; }

@media (max-width: 640px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 24px 100px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--surface-3);
  border: 1px solid var(--brand);
  color: var(--pink-soft);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.eyebrow-light {
  background: rgba(236, 72, 153, 0.1);
}

.hero-title {
  font-size: clamp(40px, 6.5vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(236, 72, 153, 0.6);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -12px rgba(236, 72, 153, 0.8);
  background: var(--brand-2);
}
.btn-ghost {
  background: transparent;
  color: var(--on-surface);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.arrow { transition: transform 0.15s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}

/* hero art (chat preview) */
.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}
.phone-frame {
  position: relative;
  width: 320px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 36px;
  padding: 24px 20px;
  box-shadow: 0 30px 80px -20px rgba(236, 72, 153, 0.35), 0 0 0 6px rgba(255,255,255,0.02);
  z-index: 2;
}
.phone-screen { display: flex; flex-direction: column; gap: 12px; }
.phone-bubble {
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.4;
  max-width: 85%;
}
.bubble-coach {
  background: var(--surface-3);
  color: var(--pink-soft);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.bubble-user {
  background: var(--brand);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.bubble-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

/* decorative blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}
.blob-1 {
  width: 300px;
  height: 300px;
  background: var(--brand);
  top: -40px;
  right: -40px;
}
.blob-2 {
  width: 260px;
  height: 260px;
  background: var(--brand-3);
  bottom: -40px;
  left: -40px;
}

@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 40px 24px 60px;
    gap: 40px;
  }
  .hero-art { min-height: 420px; }
}

/* ---------- SECTIONS ---------- */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 24px;
  position: relative;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 56px;
}

/* ---------- FEATURES ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.feature-card {
  padding: 32px 28px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
}
.feature-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.feature-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
}

/* ---------- FOUNDER ---------- */
.section-founder {
  background:
    radial-gradient(ellipse at top left, rgba(236, 72, 153, 0.08), transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(244, 114, 182, 0.05), transparent 60%);
  max-width: 100%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.founder-wrap {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.founder-photo-col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.founder-photo {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
  border: 2px solid var(--brand);
  box-shadow: 0 20px 60px -10px rgba(236, 72, 153, 0.4);
}
.founder-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--brand);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 10px 30px -8px rgba(236, 72, 153, 0.6);
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.founder-name {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 8px;
}
.founder-titles {
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 24px;
}
.quote-card {
  position: relative;
  background: var(--surface-2);
  border-left: 3px solid var(--brand);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 24px;
}
.quote-mark {
  font-size: 64px;
  font-weight: 800;
  color: var(--brand);
  line-height: 0.5;
  display: block;
  margin-bottom: 8px;
}
.quote-text {
  font-size: 17px;
  line-height: 1.5;
  font-style: italic;
  color: var(--on-surface);
  margin-bottom: 10px;
}
.quote-attr {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand);
}
.founder-bio {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 880px) {
  .founder-wrap { grid-template-columns: 1fr; gap: 48px; }
}

/* ---------- DOWNLOAD ---------- */
.section-download { text-align: center; }
.store-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  background: #000;
  border: 1px solid var(--border);
  border-radius: 14px;
  color: #fff;
  transition: transform 0.15s ease, border-color 0.15s ease;
  min-width: 220px;
}
.store-btn:hover { transform: translateY(-2px); border-color: var(--brand); }
.store-btn-disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.store-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}
.store-btn-small { font-size: 11px; opacity: 0.7; }
.store-btn-big { font-size: 18px; font-weight: 700; }

.download-note {
  font-size: 15px;
  color: var(--muted);
  margin-top: 8px;
}
.download-note a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.download-note a:hover { color: var(--brand-2); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 4px 22px;
  transition: border-color 0.15s ease;
}
.faq-item[open] { border-color: var(--brand); }
.faq-item summary {
  font-size: 16px;
  font-weight: 600;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--brand);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 0 20px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

/* ---------- FOOTER ---------- */
.footer {
  border-top: 1px solid var(--border);
  background: var(--surface-2);
  padding: 48px 24px 32px;
  text-align: center;
}
.footer-wrap { max-width: var(--max); margin: 0 auto; }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}
.footer-tag {
  color: var(--muted);
  margin-bottom: 24px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.footer-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s ease;
}
.footer-links a:hover { color: var(--brand); }
.footer-copy {
  color: var(--muted);
  font-size: 13px;
}
