/* ===================================================================
 * /www/style/flocks-landing.css
 *
 * Page-specific styles for the public homepage at /www/index.php.
 * Layered op /www/style/flocks.css (brand tokens, reset, topbar,
 * brand-moment, canvas, sections, footer base, nav drawer).
 *
 * NOT used by the in-app shell pages (/messages/, /chat/, /agenda/,
 * /tasks/, /profile/, /beheer/, /admin/) — those load flocks-app.css
 * + their own page CSS instead. Adding a second public landing page?
 * Make sure the new section vocab here doesn't collide.
 *
 * Owned here:
 *   - Material Symbols sizing overrides for landing-only icons
 *   - .hero (full-bleed image + gradient + content)
 *   - .promise (3-card feature trio)
 *   - .preview (chat browser mock)
 *   - .usecases (4-card who's-it-for grid)
 *   - .how (3 numbered steps)
 *   - .ai (1-1 split with bullets + assistant card mock)
 *   - .trust (3-card sovereignty + cert chips, on primary blue)
 *   - .testimonial (cream quote block + author chip)
 *   - .finalcta (large primary CTA section)
 * =================================================================== */


/* ============ PAGE-SPECIFIC overrides for Material Symbols sizing ============ */
.promise-icon       .material-symbols-rounded { font-size: 32px; font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 32; }
.usecase-icon       .material-symbols-rounded { font-size: 24px; font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24; }
.ai-card-icon       .material-symbols-rounded { font-size: 20px; font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 20; }
.preview-input-send .material-symbols-rounded { font-size: 18px; font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 20; color: #FFF; }


/* ============ HERO (full-bleed at top of canvas) ============ */
.hero {
  padding: 0 !important;
  position: relative;
  min-height: 620px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  color: #FFF;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.78) 100%);
}
.hero-content {
  position: relative;
  width: 100%;
  padding: 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.hero-text { max-width: 720px; }
.hero-text h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #FFFFFF;
  margin-bottom: 18px;
}
.hero-text p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  max-width: 56ch;
  margin-bottom: 0;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-btn {
  padding: 14px 24px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.15s, opacity 0.15s;
}
.hero-btn:hover { transform: translateY(-1px); }
.hero-btn-primary { background: #FFFFFF; color: var(--ink); }
.hero-btn-ghost { background: transparent; color: #FFF; border: 1.5px solid rgba(255,255,255,0.5); }
.hero-credit {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
  align-self: flex-end;
  padding-bottom: 6px;
  white-space: nowrap;
}
@media (max-width: 760px) {
  .hero { min-height: 520px; }
  .hero-content { padding: 32px 24px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-text h1 { font-size: 44px; }
  .hero-text p { font-size: 16px; }
}


/* ============ PROMISE — feature trio ============ */
.promise { background: #FFFFFF; }
.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 980px; margin: 0 auto; }
@media (max-width: 820px) { .promise-grid { grid-template-columns: 1fr; gap: 22px; } }
.promise-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.promise-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--cream);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.promise-icon svg { width: 28px; height: 28px; }
.promise-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.promise-card p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink);
}


/* ============ PREVIEW — chat mockup ============ */
.preview { background: var(--cream); }
.preview-wrap { max-width: 1000px; margin: 0 auto; }
.browser {
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
}
.browser-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px;
  background: #F4EFE2;
  border-bottom: 1px solid var(--soft-line);
}
.browser-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(0,0,0,0.12); }
.browser-url {
  margin-left: 12px;
  flex: 1;
  background: #FFFFFF;
  border-radius: 6px;
  padding: 5px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--muted);
}
.browser-body {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 460px;
}
@media (max-width: 700px) { .browser-body { grid-template-columns: 1fr; } .preview-side { display: none; } }
.preview-side {
  background: var(--cream);
  border-right: 1px solid var(--soft-line);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.preview-side-brand {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  padding: 6px 10px 14px;
}
.preview-side-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 10px;
}
.flock-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.flock-row.active { background: #FFFFFF; }
.flock-row .av {
  width: 24px; height: 24px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11px; font-weight: 700; color: #FFF;
}
.av.bg-blue { background: var(--primary); }
.av.bg-amber { background: var(--secondary); }
.av.bg-green { background: #0E7B58; }
.av.bg-rust { background: #B23A2C; }
.flock-row .badge-num {
  margin-left: auto;
  background: var(--primary); color: #FFF;
  font-size: 10px; font-weight: 700;
  padding: 2px 6px; border-radius: 999px;
}
.flock-row.dm .av { border-radius: 50%; }
.flock-row .presence {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #0E7B58;
  margin-left: auto;
}
.flock-new {
  margin-top: 8px;
  padding: 8px 10px;
  font-family: 'Inter', sans-serif; font-size: 12px;
  color: var(--secondary); font-weight: 600;
}
.preview-side-label.mt { margin-top: 14px; }

.preview-main { display: flex; flex-direction: column; min-width: 0; }
.preview-main-head {
  padding: 16px 22px;
  border-bottom: 1px solid var(--soft-line);
  display: flex; align-items: center; gap: 12px;
}
.preview-main-head .av { width: 32px; height: 32px; border-radius: 8px; font-size: 13px; }
.preview-main-head .title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 16px; font-weight: 700; color: var(--ink); }
.preview-main-head .sub { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--muted); }
.preview-main-body {
  flex: 1;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #FFFFFF;
}
.msg { display: flex; gap: 10px; max-width: 80%; }
.msg-av {
  width: 28px; height: 28px; border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700;
  color: #FFF;
}
.msg-bubble {
  background: #F4EFE2;
  padding: 10px 14px;
  border-radius: 12px 12px 12px 4px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink);
}
.msg-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}
.msg.assistant .msg-av { background: var(--secondary); }
.msg.assistant .msg-bubble {
  background: rgba(172,124,0,0.10);
  border: 1px solid rgba(172,124,0,0.25);
}
.msg.assistant .msg-name { color: var(--secondary); display: inline-flex; align-items: center; gap: 6px; }
.msg.assistant .msg-name::after {
  content: "Assistent";
  background: var(--secondary); color: #FFF;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  padding: 1px 6px; border-radius: 999px;
}
.msg.assistant .msg-name span { display: none; }
.msg.me { align-self: flex-end; flex-direction: row-reverse; }
.msg.me .msg-av { background: var(--primary); }
.msg.me .msg-bubble {
  background: var(--primary); color: #FFF;
  border-radius: 12px 12px 4px 12px;
}
.msg.me .msg-name { text-align: right; color: rgba(0,47,167,0.7); }

.preview-input {
  padding: 14px 22px 18px;
  border-top: 1px solid var(--soft-line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.preview-input-field {
  flex: 1;
  background: var(--cream);
  border-radius: 999px;
  padding: 10px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--muted);
}
.preview-input-send {
  width: 36px; height: 36px;
  background: var(--primary); color: #FFF;
  border-radius: 50%;
  border: none;
  display: flex; align-items: center; justify-content: center;
}
.preview-input-send svg { width: 16px; height: 16px; }


/* ============ USECASES ============ */
.usecases { background: #FFFFFF; }
.usecases-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 1000px; margin: 0 auto; }
@media (max-width: 820px) { .usecases-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .usecases-grid { grid-template-columns: 1fr; } }
.usecase {
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 26px 22px;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color 0.15s, transform 0.15s;
}
.usecase:hover { border-color: var(--secondary); transform: translateY(-2px); }
.usecase-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--cream);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.usecase-icon svg { width: 22px; height: 22px; }
.usecase h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.usecase p {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 300;
  line-height: 1.55; color: var(--ink);
}


/* ============ HOW IT WORKS — numbered steps ============ */
.how { background: var(--cream); }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; max-width: 1000px; margin: 0 auto; }
@media (max-width: 760px) { .how-grid { grid-template-columns: 1fr; gap: 26px; } }
.how-step { display: flex; flex-direction: column; gap: 10px; }
.how-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 64px; font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--secondary);
  line-height: 0.85;
  margin-bottom: 6px;
}
.how-step h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.how-step p {
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 300;
  line-height: 1.6; color: var(--ink);
}


/* ============ AI CLOSE-UP ============ */
.ai { background: #FFFFFF; }
.ai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; max-width: 1080px; margin: 0 auto; }
@media (max-width: 820px) { .ai-grid { grid-template-columns: 1fr; gap: 36px; } }
.ai-text h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 38px; font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 14px;
}
.ai-text p {
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 300;
  line-height: 1.6; color: var(--ink);
  margin-bottom: 20px;
  max-width: 44ch;
}
.ai-bullets { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.ai-bullets li {
  display: flex; gap: 12px; align-items: flex-start;
  font-family: 'Inter', sans-serif;
  font-size: 15px; color: var(--ink);
  line-height: 1.5;
}
.ai-bullets li::before {
  content: "";
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--secondary);
  margin-top: 2px;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'><path fill='black' d='M14.5 5.5 7.7 12.3 4 8.5l-1 1 4.7 4.7 7.8-7.8z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'><path fill='black' d='M14.5 5.5 7.7 12.3 4 8.5l-1 1 4.7 4.7 7.8-7.8z'/></svg>") center/contain no-repeat;
}
.ai-mockup {
  background: var(--cream);
  border-radius: 16px;
  padding: 20px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
}
.ai-mockup .msg { max-width: 100%; }
.ai-mockup .msg-bubble { background: #FFFFFF; }
.ai-card {
  background: #FFFFFF;
  border: 1px solid rgba(172,124,0,0.25);
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: 6px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.ai-card-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--cream); color: var(--secondary);
  display: flex; align-items: center; justify-content: center;
}
.ai-card-icon svg { width: 20px; height: 20px; }
.ai-card-body strong {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 14px;
  color: var(--ink);
  display: block;
}
.ai-card-body span {
  font-family: 'Inter', sans-serif;
  font-size: 12px; color: var(--muted);
}


/* ============ TRUST / SOVEREIGNTY ============ */
.trust { background: var(--primary); color: #FFFFFF; }
.trust .section-head h2 { color: #FFFFFF; }
.trust .section-head p { color: rgba(255,255,255,0.85); }
.trust .eyebrow { color: var(--cream); }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto 56px;
}
@media (max-width: 820px) { .trust-grid { grid-template-columns: 1fr; gap: 16px; margin-bottom: 44px; } }
.trust-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.10);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.trust-icon .material-symbols-rounded {
  font-size: 26px;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 26;
}
.trust-card h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #FFFFFF;
}
.trust-card p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
}

.trust-certs { max-width: 880px; margin: 0 auto; text-align: center; }
.certs-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}
.certs-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.cert {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.3px;
}
.cert .material-symbols-rounded {
  font-size: 16px;
  color: var(--cream);
  font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 20;
}


/* ============ TESTIMONIAL ============ */
.testimonial { background: var(--cream); text-align: center; }
.testimonial-quote {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 720px;
  margin: 0 auto 28px;
}
@media (max-width: 600px) { .testimonial-quote { font-size: 22px; } }
.testimonial-author {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.testimonial-author .av {
  width: 44px; height: 44px; border-radius: 50%;
  overflow: hidden;
}
.testimonial-author .av img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-author .who { text-align: left; font-family: 'Inter', sans-serif; }
.testimonial-author .who strong { display: block; font-size: 14px; font-weight: 600; color: var(--ink); }
.testimonial-author .who span { font-size: 11px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }


/* ============ FINAL CTA ============ */
.finalcta {
  background: var(--primary);
  color: #FFFFFF;
  text-align: center;
}
.finalcta h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #FFFFFF;
  margin-bottom: 16px;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 600px) { .finalcta h2 { font-size: 34px; } }
.finalcta p {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  max-width: 48ch;
  margin: 0 auto 32px;
  line-height: 1.55;
}
.finalcta-actions { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.finalcta-btn {
  padding: 14px 26px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.finalcta-primary { background: var(--cream); color: var(--ink); }
.finalcta-ghost { background: transparent; color: #FFF; border: 1.5px solid rgba(255,255,255,0.4); }
.finalcta-fineprint {
  margin-top: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.3px;
}
