@font-face {
  font-family: "Playfair Display";
  src: url(../fonts/PlayfairDisplay-VariableFont_wght.ttf);
  font-display: swap;
}
:root {
  --color-primary: #0b1a2e;
  --color-secondary: #132b45;
  --color-accent: #c7926a;
  --color-accent-light: #dbb07d;
  --color-text: #1e293b;
  --color-text-light: #64748b;
  --color-bg: #f5f3ef;
  --color-white: #ffffff;
  --color-border: #e2e0dc;
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-border: rgba(255, 255, 255, 0.6);
  --shadow-sm: 0 2px 8px rgba(11, 26, 46, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 26, 46, 0.09);
  --shadow-lg: 0 16px 40px rgba(11, 26, 46, 0.10);
  --shadow-xl: 0 24px 56px rgba(11, 26, 46, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --max-width: 1200px;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; width: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: linear-gradient(180deg, #faf9f7 0%, #f0ede8 100%);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main { flex: 1 0 auto; }
img { display: block; object-fit: cover; border-radius: var(--radius-sm); }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--font-heading); line-height: 1.25; margin-bottom: 0.8rem; }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p { margin-bottom: 1rem; }

.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* Glass card */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.glass-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* Store buttons */
.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(12px);
  color: #fff;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}
.btn-store i { font-size: 1.4rem; }
.btn-store-label strong { font-weight: 700; }

.btn-store-apple {
  background: linear-gradient(135deg, rgba(20,30,48,0.85), rgba(11,26,46,0.9));
}
.btn-store-google {
  background: linear-gradient(135deg, rgba(199,146,106,0.7), rgba(180,120,80,0.8));
  color: var(--color-primary);
  border: 1px solid rgba(199,146,106,0.5);
}
.btn-store:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.22);
}
.btn-store-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-store-lg i { font-size: 1.7rem; }

/* Header */
header { background: rgba(255,255,255,0.7); backdrop-filter: blur(20px); box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 100; }
nav { display: flex; align-items: center; justify-content: space-between; max-width: var(--max-width); margin: 0 auto; padding: 0.75rem 1.5rem; }
.logo a { display: flex; align-items: center; gap: 0.6rem; font-weight: 700; font-size: 1.2rem; color: var(--color-primary); }
.logo img { border-radius: 50%; }
.logo-line1 { display: block; }
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a { font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--color-accent); }
.header-notice { font-size: 0.75rem; color: var(--color-text-light); max-width: 240px; }
.hamburger { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--color-primary); }

/* Hero */
.hero { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: var(--max-width); margin: 3rem auto; padding: 0 1.5rem; }
.hero-text p { font-size: 1.15rem; color: var(--color-text-light); margin-bottom: 1.8rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image img { width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); }

/* Features */
.features { padding: 4rem 1.5rem; max-width: var(--max-width); margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.feature-card { padding: 2rem; text-align: center; }
.feature-icon { font-size: 2rem; color: var(--color-accent); margin-bottom: 1rem; }

/* Stats */
.stats { padding: 2rem 1.5rem; max-width: var(--max-width); margin: 0 auto; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; list-style: none; text-align: center; }
.stat-number { display: block; font-size: 2.4rem; font-weight: 700; background: linear-gradient(135deg, #c7926a 0%, #8b5e3c 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.9rem; color: var(--color-text-light); }

/* Article */
.article-highlight { padding: 3rem 1.5rem; max-width: var(--max-width); margin: 0 auto; }
.article-card { display: grid; grid-template-columns: 1fr 1.5fr; gap: 0; background: var(--glass-bg); backdrop-filter: blur(16px); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; border: 1px solid var(--glass-border); }
.article-image img { width: 100%; height: 100%; aspect-ratio: 4/3; }
.article-content { padding: 2.2rem; display: flex; flex-direction: column; justify-content: center; }
.article-tag { display: inline-block; background: var(--color-accent); color: #fff; padding: 0.35rem 1rem; border-radius: 20px; font-size: 0.8rem; font-weight: 600; margin-bottom: 1rem; align-self: flex-start; }
.drop-cap::first-letter { font-size: 3.8rem; font-weight: 700; float: left; line-height: 1; margin-right: 0.6rem; color: var(--color-accent); font-family: var(--font-heading); }
.article-meta { display: flex; gap: 1rem; font-size: 0.85rem; color: var(--color-text-light); margin-top: 1.2rem; }
.article-emotions { display: flex; gap: 0.5rem; margin-top: 1rem; flex-wrap: wrap; }
.emotion-btn { background: rgba(241,242,246,0.7); border: 1px solid var(--color-border); padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.85rem; cursor: pointer; transition: all 0.2s; backdrop-filter: blur(4px); }
.emotion-btn:hover { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }

/* ===== RADICAL MOMENT (Quote) ===== */
.moment {
  padding: 4rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.moment-blockquote {
  max-width: 800px;
  position: relative;
  padding: 2.5rem 0 0 0;
  border-top: 3px solid var(--color-accent);
  border-bottom: 3px solid var(--color-accent);
}
.moment-quote-mark {
  font-family: var(--font-heading);
  font-size: 8rem;
  color: var(--color-accent);
  line-height: 0.8;
  position: absolute;
  top: -1.8rem;
  left: 0;
  opacity: 0.5;
}
.moment-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1.4;
  color: var(--color-primary);
  margin: 2rem 0 1.5rem;
  font-weight: 500;
}
.moment-attribution {
  font-size: 1rem;
  color: var(--color-text-light);
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
}
.moment-attribution cite {
  font-style: normal;
  font-weight: 600;
  color: var(--color-text);
}

/* ===== RADICAL TESTIMONIALS (light, only 2) ===== */
.testimonials {
  padding: 4rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  background: transparent;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}
.testimonial-entry {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-bubble {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  position: relative;
}
.testimonial-bubble::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 28px;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid var(--color-border);
  transform: rotate(45deg);
  border-top: none;
  border-left: none;
}
.testimonial-stars {
  color: var(--color-accent);
  margin-bottom: 0.8rem;
  font-size: 1rem;
}
.testimonial-bubble p {
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 0;
  line-height: 1.6;
}
.testimonial-person {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-left: 1rem;
}
.person-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent-light);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-person cite {
  font-style: normal;
  font-weight: 600;
  display: block;
  color: var(--color-text);
}
.testimonial-location {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* How it works */
.how-it-works { padding: 3rem 1.5rem; max-width: var(--max-width); margin: 2rem auto; background: linear-gradient(135deg, #e9e4db 0%, #f5f0e9 100%); border-radius: var(--radius-lg); }
.how-it-works-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.how-it-works-text { padding: 1rem; }
.steps { list-style: none; margin-top: 1.5rem; }
.steps li { display: flex; gap: 1.2rem; align-items: flex-start; margin-bottom: 1.4rem; }
.step-number { font-size: 2rem; font-weight: 700; background: linear-gradient(135deg, #c7926a, #8b5e3c); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; min-width: 2.5rem; }
.how-it-works-images { display: flex; flex-direction: column; gap: 1rem; }
.how-it-works-images img { width: 100%; aspect-ratio: 16/9; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }

/* Download + FAQ */
.download { padding: 4rem 2rem; text-align: center; background: linear-gradient(135deg, #0b1a2e 0%, #132b45 100%); color: #fff; border-radius: var(--radius-xl); margin: 2.5rem auto; max-width: var(--max-width); box-shadow: var(--shadow-xl); }
.download-content { max-width: 700px; margin: 0 auto; }
.download-buttons { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin: 2.5rem 0; }
.faq-embed { margin-top: 3.5rem; text-align: left; max-width: 620px; margin-left: auto; margin-right: auto; }
.faq-item { background: rgba(255,255,255,0.08); backdrop-filter: blur(10px); border-radius: var(--radius-md); margin-bottom: 0.8rem; overflow: hidden; border: 1px solid rgba(255,255,255,0.12); }
.faq-item summary { padding: 1.1rem 1.5rem; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; color: #fff; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "\f078"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: 0.8rem; transition: transform 0.2s; color: rgba(255,255,255,0.7); }
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item p { padding: 0 1.5rem 1.2rem; color: rgba(255,255,255,0.85); }

/* Footer */
footer { background: var(--color-primary); color: #e2e0dc; padding: 2.5rem 1.5rem; margin-top: auto; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; max-width: var(--max-width); margin: 0 auto 1.5rem; }
.footer-brand .logo a { color: #fff; }
.footer-contact p { margin-bottom: 0.3rem; }
.footer-legal { display: flex; flex-direction: column; gap: 0.45rem; }
.footer-legal a { color: var(--color-accent-light); font-size: 0.9rem; transition: color 0.2s; }
.footer-legal a:hover { color: #fff; }
.footer-disclaimer { max-width: var(--max-width); margin: 0 auto 1.5rem; font-size: 0.8rem; color: #9ca3af; line-height: 1.5; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom { text-align: center; font-size: 0.8rem; color: #9ca3af; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; }

/* ===== LEGAL DOCUMENTS STYLING ===== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.legal-content h1 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 0.5rem;
}
.legal-content h2 {
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  color: var(--color-primary);
}
.legal-content h3 {
  font-size: 1.4rem;
  margin: 1.5rem 0 0.8rem;
  color: var(--color-text);
}
.legal-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 1.2rem;
}
.legal-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
  list-style-type: disc;
}
.legal-content li {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.legal-content a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.legal-content a:hover {
  color: var(--color-primary);
}
.legal-content em {
  font-style: italic;
  color: var(--color-text-light);
}
.legal-content strong {
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 1rem; box-shadow: var(--shadow-md); }
  .nav-links.active { display: flex; }
  .hamburger { display: block; }
  .header-notice { display: none; }
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-cta { justify-content: center; }
  .hero-image { order: -1; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .article-card { grid-template-columns: 1fr; }
  .moment-blockquote { padding: 2rem 0 0 0; }
  .moment-quote-mark { font-size: 6rem; top: -1.2rem; }
  .moment-text { font-size: 1.4rem; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 2rem; }
  .how-it-works-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  body {
    word-break: break-word;
  }
}