/* =============================================
   FORK YEAH — Main Stylesheet
   Colors: Sapphire #2B50AA | Bleu #318CE7
============================================= */

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

:root {
  --sapphire: #2B50AA;
  --sapphire-dark: #1f3d85;
  --bleu: #318CE7;
  --bleu-dark: #2070c8;
  --white: #ffffff;
  --off-white: #F8F9FC;
  --light-blue: #EEF4FF;
  --ink: #0D1B3E;
  --muted: #6B7B9A;
  --border: #D8E2F3;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 4rem;
  background: rgba(43,80,170,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-logo img { height: 36px; display: block; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  text-decoration: none; color: rgba(255,255,255,0.75);
  font-size: 0.9rem; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: var(--bleu) !important; color: #fff !important;
  padding: 0.55rem 1.4rem; border-radius: 100px;
  font-weight: 600 !important; transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--bleu-dark) !important; }

/* ── HERO ─────────────────────────────────── */
.hero-wrapper {
  background: var(--sapphire);
  background-image:
    radial-gradient(ellipse at 80% 20%, rgba(49,140,231,0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(15,30,80,0.5) 0%, transparent 60%);
}
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 3rem;
  padding: 9rem 4rem 5rem;
  max-width: 1300px; margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem; font-weight: 600;
  padding: 0.35rem 1rem; border-radius: 100px;
  margin-bottom: 1.75rem;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 400; line-height: 1.05;
  color: #fff; letter-spacing: -0.02em; margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: #93C5FD; }
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.7);
  line-height: 1.75; max-width: 460px;
  margin-bottom: 2.5rem; font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; margin-bottom: 3rem; }

.btn-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #fff; color: var(--sapphire);
  padding: 0.9rem 2rem; border-radius: 100px;
  text-decoration: none; font-weight: 600; font-size: 1rem;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.25); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-weight: 500; font-size: 0.95rem;
  padding: 0.9rem 1.5rem; border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); }

.hero-social-proof {
  display: flex; align-items: center; gap: 1rem;
  color: rgba(255,255,255,0.55); font-size: 0.85rem;
}
.proof-avatars { display: flex; }
.proof-avatars span {
  width: 2.2rem; height: 2.2rem; border-radius: 50%;
  border: 2px solid var(--sapphire);
  background: var(--bleu);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; margin-left: -0.6rem;
}
.proof-avatars span:first-child { margin-left: 0; }
.proof-text strong { color: rgba(255,255,255,0.85); }

/* Hero Visual */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-logo-wrap {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 32px; padding: 3rem;
  backdrop-filter: blur(10px);
  animation: float 5s ease-in-out infinite;
  max-width: 420px; width: 100%; text-align: center;
}
.hero-logo-wrap img { width: 100%; max-width: 340px; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.hero-pill {
  position: absolute;
  background: #fff; border-radius: 100px;
  padding: 0.6rem 1.1rem;
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600; color: var(--ink);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  white-space: nowrap;
}
.hero-pill-1 { bottom: 15%; left: -5%; animation: float 4s ease-in-out infinite 0.5s; }
.hero-pill-2 { top: 15%; right: -5%; animation: float 4.5s ease-in-out infinite 1s; }
.pill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--bleu); flex-shrink: 0; }
.pill-dot.gold { background: #F59E0B; }

/* ── HOOK STRIP ──────────────────────────── */
.hook-strip {
  background: var(--bleu);
  padding: 2rem 4rem;
  display: flex; justify-content: center; gap: 5rem; flex-wrap: wrap;
}
.hook-item { text-align: center; color: #fff; }
.hook-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.8rem; font-weight: 400; line-height: 1; color: #fff;
}
.hook-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-top: 0.3rem; }

/* ── SECTIONS SHARED ─────────────────────── */
.section { padding: 7rem 4rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.eyebrow {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--bleu); margin-bottom: 0.75rem;
}
.section-h {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400; color: var(--ink);
  letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 1rem;
}
.section-h em { font-style: italic; color: var(--bleu); }
.section-p { color: var(--muted); font-size: 1rem; line-height: 1.75; font-weight: 300; max-width: 540px; }

/* ── PROBLEM ─────────────────────────────── */
.problem { background: var(--off-white); }
.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center; margin-top: 4rem;
}
.problem-img {
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(43,80,170,0.15);
  aspect-ratio: 4/3;
}
.problem-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.problem-points { display: flex; flex-direction: column; gap: 1.5rem; }
.problem-point {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem; background: #fff;
  border: 1px solid var(--border); border-radius: 16px;
}
.problem-icon {
  width: 2.5rem; height: 2.5rem; flex-shrink: 0;
  background: var(--light-blue); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.problem-point h4 { font-weight: 600; font-size: 0.95rem; color: var(--ink); margin-bottom: 0.25rem; }
.problem-point p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; font-weight: 300; }

/* ── FEATURES ────────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem; margin-top: 4rem;
}
.feat-card {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 20px; padding: 2.25rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(43,80,170,0.1);
  border-color: var(--bleu);
}
.feat-card.accent {
  background: var(--sapphire); border-color: var(--sapphire);
}
.feat-card.accent .feat-title { color: #fff; }
.feat-card.accent .feat-desc { color: rgba(255,255,255,0.7); }
.feat-card.accent .feat-icon { background: rgba(255,255,255,0.15); }
.feat-icon {
  width: 3rem; height: 3rem; border-radius: 12px;
  background: var(--light-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.25rem;
}
.feat-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem; font-weight: 400; color: var(--ink);
  margin-bottom: 0.6rem; letter-spacing: -0.01em;
}
.feat-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.7; font-weight: 300; }
.feat-soon {
  display: inline-flex; align-items: center; gap: 0.3rem;
  margin-top: 1rem; background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.8);
  font-size: 0.7rem; font-weight: 600;
  padding: 0.25rem 0.75rem; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.06em;
}

/* ── HOW IT WORKS ────────────────────────── */
.how { background: var(--sapphire); }
.how .eyebrow { color: #93C5FD; }
.how .section-h { color: #fff; }
.how .section-h em { color: #93C5FD; }

.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 4rem;
}
.step {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px; padding: 2rem; position: relative;
}
.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 4rem; font-weight: 400;
  color: rgba(255,255,255,0.1); line-height: 1;
  position: absolute; top: 1rem; right: 1.5rem;
}
.step-icon { font-size: 2rem; margin-bottom: 1rem; }
.step h3 { font-weight: 600; font-size: 1.05rem; color: #fff; margin-bottom: 0.5rem; }
.step p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.7; font-weight: 300; }

/* ── GALLERY ─────────────────────────────── */
.gallery { background: var(--off-white); overflow: hidden; }
.gallery-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1rem; margin-top: 3rem;
  border-radius: 20px; overflow: hidden;
}
.gallery-img { overflow: hidden; }
.gallery-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s;
}
.gallery-img:hover img { transform: scale(1.04); }
.gallery-img.tall { aspect-ratio: 3/2; }
.gallery-img.sq { aspect-ratio: 1; }

/* ── TESTIMONIALS ────────────────────────── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 4rem;
}
.tcard {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 20px; padding: 1.75rem;
}
.tcard-stars { color: #F59E0B; font-size: 0.85rem; margin-bottom: 1rem; }
.tcard-quote {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: 1rem; line-height: 1.65; color: var(--ink); margin-bottom: 1.25rem;
}
.tcard-author { display: flex; align-items: center; gap: 0.75rem; }
.tcard-av {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: var(--bleu);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.tcard-name { font-weight: 600; font-size: 0.85rem; color: var(--ink); }
.tcard-handle { font-size: 0.75rem; color: var(--muted); }

/* ── CTA / DOWNLOAD ──────────────────────── */
.cta-section {
  background: var(--bleu);
  background-image: radial-gradient(ellipse at 30% 50%, rgba(43,80,170,0.4) 0%, transparent 70%);
  padding: 7rem 4rem; text-align: center;
}
.cta-logo { margin: 0 auto 2rem; max-width: 320px; }
.cta-logo img { width: 100%; }
.cta-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400; color: #fff;
  letter-spacing: -0.02em; margin-bottom: 1rem;
}
.cta-section h2 em { font-style: italic; color: rgba(255,255,255,0.7); }
.cta-section p {
  color: rgba(255,255,255,0.7); font-size: 1rem; line-height: 1.75;
  max-width: 500px; margin: 0 auto 2.5rem; font-weight: 300;
}
.email-row {
  display: flex; gap: 0.75rem;
  max-width: 480px; margin: 0 auto 1.5rem;
}
.email-row input {
  flex: 1; padding: 0.9rem 1.25rem;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 100px; background: rgba(255,255,255,0.1);
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  color: #fff; outline: none; transition: border-color 0.2s;
}
.email-row input::placeholder { color: rgba(255,255,255,0.5); }
.email-row input:focus { border-color: rgba(255,255,255,0.7); }
.email-row button {
  background: #fff; color: var(--bleu);
  border: none; padding: 0.9rem 1.75rem;
  border-radius: 100px; font-family: 'DM Sans', sans-serif;
  font-weight: 700; font-size: 0.95rem; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.email-row button:hover { transform: translateY(-1px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }

.store-row { display: flex; justify-content: center; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }
.store-btn {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: #fff; padding: 0.75rem 1.5rem;
  border-radius: 12px; text-decoration: none;
  font-size: 0.85rem; transition: background 0.2s;
}
.store-btn:hover { background: rgba(255,255,255,0.2); }
.store-btn-icon { font-size: 1.4rem; }
.store-sub { font-size: 0.65rem; color: rgba(255,255,255,0.6); display: block; }
.store-name { font-weight: 600; font-size: 0.9rem; }

/* ── FOOTER ──────────────────────────────── */
footer {
  background: var(--ink);
  padding: 3rem 4rem;
  display: flex; justify-content: space-between;
  align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.footer-logo img { height: 32px; display: block; }
.footer-links { display: flex; gap: 1.75rem; flex-wrap: wrap; }
.footer-links a {
  text-decoration: none; color: rgba(255,255,255,0.45);
  font-size: 0.85rem; transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.85); }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* ── ANIMATIONS ──────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  animation: fadeUp 0.8s ease forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: none; } }
.d1 { animation-delay: 0.1s; } .d2 { animation-delay: 0.2s; }
.d3 { animation-delay: 0.3s; } .d4 { animation-delay: 0.45s; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding: 7rem 1.5rem 4rem; }
  .hero-visual { order: -1; }
  .hero-pill-1, .hero-pill-2 { display: none; }
  .hook-strip { padding: 2rem 1.5rem; gap: 2rem; }
  .section { padding: 5rem 1.5rem; }
  .problem-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 5rem 1.5rem; }
  .email-row { flex-direction: column; }
  footer { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
}
