@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,500&family=Inter:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root {
  /* GoChop's real brand orange — kept exactly, never generic */
  --accent: #EC5E1A;
  --accent-dark: #BF4510;
  --accent-soft: #FDEEE2;
  /* Spice-market secondary accents, grounded in the actual subject
     (Nigerian food/market colour) instead of a generic second brand hue */
  --spice-gold: #C98A2E;
  --spice-gold-soft: #F7ECD6;
  --leaf: #4B7A51;
  --leaf-soft: #E7F0E5;

  --ink: #231A14;
  --body-text: #3A2E26;
  --muted: #6B5E54;
  --muted-2: #8A7B6E;

  /* Primary field is warm white, not all-over cream — cream is reserved
     for cards/tags so it reads as a material choice, not a page default */
  --bg: #FFFFFE;
  --bg-alt: #FDEEE2;
  --paper: #FBF9F6;

  /* A warm near-black (cocoa, not neutral #111827) for contrast bands,
     so the dark sections still feel like this brand, not a generic dark mode */
  --dark: #2B1B12;
  --dark-2: #3A2617;
  --card-bg: #ffffff;
  --card-border: #EEE0D6;
  --error: #B3261E;
  --success: #1E7A45;
  --radius: 16px;

  /* Shadow scale — elevation is legible: sm = resting/raised, md = interactive
     hover state, lg = floating (modals, the chat panel) */
  --shadow-sm: 0 1px 2px rgba(43, 27, 18, 0.06), 0 1px 3px rgba(43, 27, 18, 0.04);
  --shadow-md: 0 6px 16px rgba(43, 27, 18, 0.09), 0 2px 4px rgba(43, 27, 18, 0.05);
  --shadow-lg: 0 20px 48px rgba(43, 27, 18, 0.16), 0 4px 12px rgba(43, 27, 18, 0.08);
  --shadow: var(--shadow-sm);

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--body-text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Fixed, soft colour washes behind the whole page — glass panels need
   something with colour/texture behind them to actually read as glass;
   without this a frosted card on a flat white page just looks like a
   plain card with lower contrast. Fixed so it stays put while scrolling,
   sits behind everything (z-index: -1), and never intercepts clicks. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(560px circle at 8% 4%, rgba(236,94,26,0.10), transparent 60%),
    radial-gradient(620px circle at 96% 18%, rgba(201,138,46,0.10), transparent 60%),
    radial-gradient(520px circle at 12% 78%, rgba(75,122,81,0.07), transparent 60%),
    radial-gradient(600px circle at 92% 92%, rgba(236,94,26,0.08), transparent 60%);
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 20px; }

a { color: var(--accent); }
h1, h2, h3, h4 { color: var(--ink); margin-top: 0; }
.muted { color: var(--muted); }
.center { text-align: center; }

.plain-list { padding-left: 20px; }
.plain-list li { margin-bottom: 10px; }

.eyebrow {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ---------- Header / Nav (glass — matches the apps' CalmGlassAppBar) ---------- */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 254, 0.62);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, var(--shadow-sm);
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.brand img { width: 34px; height: 34px; display: block; }
.brand-name { color: var(--ink); font-weight: 800; font-size: 19px; }

.nav { display: flex; align-items: center; gap: 20px; flex-wrap: nowrap; }
.nav a { color: var(--body-text); text-decoration: none; font-size: 14px; font-weight: 600; white-space: nowrap; }
.nav a:hover { color: var(--accent); }
.nav a.active { color: var(--accent); }
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 999px;
}
.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle {
    display: inline-flex;
    background: none;
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 8px 10px;
    cursor: pointer;
  }
  .nav.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--card-border);
    padding: 14px 20px 20px;
    gap: 14px;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost { background: transparent; color: var(--accent); border: 1.5px solid var(--accent); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--ink); border: 1.5px solid var(--card-border); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 16px; font-size: 13px; }

.actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Hero ---------- */
/* Signature moment: GoChop's real hand-drawn steaming pot, with a slow,
   calm looping steam-drift — matches the "calm, classic, mature, more
   gentle animation" direction already set for the mobile apps, so the
   website's one animated flourish is consistent with the rest of the brand. */
.hero {
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -10%;
  width: 560px;
  height: 560px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(201,138,46,0.16) 0%, rgba(236,94,26,0.10) 45%, transparent 72%);
  z-index: 0;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero h1 { font-size: 44px; line-height: 1.08; margin-bottom: 16px; font-weight: 600; }
.hero .lede { font-size: 17px; max-width: 480px; margin-bottom: 26px; font-family: var(--font-body); }
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-visual img { width: 100%; max-width: 320px; filter: drop-shadow(0 20px 40px rgba(236,94,26,0.22)); position: relative; z-index: 1; }
.hero-steam {
  position: absolute;
  left: 50%;
  top: 8%;
  width: 3px;
  height: 46px;
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.85) 45%, rgba(255,255,255,0) 100%);
  transform-origin: bottom center;
  animation: steam-drift 4.5s ease-in-out infinite;
  opacity: 0.9;
}
.hero-steam.s2 { left: calc(50% - 16px); animation-delay: -1.5s; height: 38px; }
.hero-steam.s3 { left: calc(50% + 16px); animation-delay: -3s; height: 40px; }
@keyframes steam-drift {
  0%   { transform: translateY(0) translateX(0) scaleY(1); opacity: 0; }
  15%  { opacity: 0.9; }
  70%  { opacity: 0.4; }
  100% { transform: translateY(-38px) translateX(6px) scaleY(1.35); opacity: 0; }
}

.hero-tags { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-tag {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset, var(--shadow-sm);
  transform: rotate(var(--tilt, 0deg));
}
.hero-tag:nth-child(1) { --tilt: -2deg; }
.hero-tag:nth-child(2) { --tilt: 1.5deg; }
.hero-tag:nth-child(3) { --tilt: -1deg; }
.hero-tag .num { font-family: var(--font-mono); font-size: 20px; font-weight: 600; color: var(--accent-dark); line-height: 1; }
.hero-tag .lbl { font-size: 11.5px; color: var(--muted); margin-top: 5px; max-width: 128px; line-height: 1.3; }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .hero-visual { order: -1; }
  .hero-visual img { max-width: 220px; }
}

/* ---------- Sections ---------- */
.section { padding: 56px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--dark); color: #fff; }
.section-dark h2, .section-dark h3, .section-dark p { color: #fff; }
.section-dark .muted { color: #C9B9AC; }
.section-head { max-width: 620px; margin: 0 auto 36px; text-align: center; }
.section-head.left { margin: 0 0 32px; text-align: left; }
.section h2 { font-size: 28px; }
.section p.lede { font-size: 16px; }

/* ---------- Grids / Cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 860px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset, var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.card:hover {
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(236, 94, 26, 0.35);
  background: rgba(255, 255, 255, 0.72);
}
.card-flat { box-shadow: none; }
.card-flat:hover { box-shadow: none; transform: none; }

/* Solid variant for surfaces where legibility matters more than the glass
   effect (long legal text, forms) — glass is for showcase cards, not
   paragraphs of contract text sitting on a blurred smear. */
.card-solid {
  background: var(--card-bg);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid var(--card-border);
}

/* A real quote, in the founder's actual words — human presence without a
   fabricated photo or stock testimonial. */
.founder-quote {
  background: var(--paper);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 30px;
  box-shadow: var(--shadow-sm);
}
.founder-quote p.quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 14px;
}
.founder-quote .quote-by { font-size: 13.5px; color: var(--muted); font-weight: 600; }
.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p { margin: 0; font-size: 14.5px; color: var(--body-text); }

.stat-card { text-align: center; padding: 24px 16px; }
.stat-card .num { font-family: var(--font-mono); font-size: 30px; font-weight: 600; color: var(--accent-dark); }
.stat-card .lbl { font-size: 13px; color: var(--muted); margin-top: 6px; }

.step-list { counter-reset: step; list-style: none; padding: 0; margin: 0; }
.step-list li {
  counter-increment: step;
  position: relative;
  padding: 4px 0 4px 52px;
  margin-bottom: 22px;
  min-height: 36px;
}
.step-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-list h4 { margin: 0 0 4px; font-size: 15.5px; }
.step-list p { margin: 0; font-size: 14px; color: var(--muted); }

/* Team */
.team-card { text-align: center; }
.team-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 22px;
  margin: 0 auto 14px;
}
.team-card h4 { margin: 0 0 4px; font-size: 15.5px; }
.team-card .role { font-size: 12.5px; color: var(--accent); font-weight: 700; margin-bottom: 8px; }
.team-card p { font-size: 13.5px; color: var(--muted); margin: 0; }

/* Banner / CTA strip */
.cta-strip {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  border-radius: 24px;
  padding: 44px 36px;
  text-align: center;
}
.cta-strip h2, .cta-strip p { color: #fff; }
.cta-strip .btn-light { color: var(--accent); }

/* ---------- FAQ accordion ---------- */
.faq-item {
  border: 1px solid var(--card-border);
  border-radius: 14px;
  margin-bottom: 12px;
  background: var(--card-bg);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-q .chev { transition: transform 0.2s ease; flex-shrink: 0; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 20px;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 20px 18px; }
.faq-a p { margin: 0; font-size: 14.5px; color: var(--body-text); }
.faq-category { font-size: 13px; font-weight: 800; color: var(--accent); text-transform: uppercase; letter-spacing: 0.4px; margin: 30px 0 12px; }
.faq-category:first-child { margin-top: 0; }

/* ---------- Auth panel ---------- */
.auth-card {
  max-width: 440px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset, var(--shadow-md);
}
.auth-tabs { display: flex; gap: 6px; margin-bottom: 20px; background: rgba(253, 238, 226, 0.7); border-radius: 10px; padding: 4px; }
.auth-tab { flex: 1; padding: 9px 0; border: none; background: transparent; border-radius: 8px; font-weight: 700; font-size: 14px; color: var(--muted); cursor: pointer; }
.auth-tab.active { background: #fff; color: var(--accent); box-shadow: 0 1px 3px rgba(0,0,0,0.08); }
.auth-form label { display: block; font-size: 13px; font-weight: 700; color: var(--ink); margin: 14px 0 6px; }
.auth-form input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--card-border);
  font-size: 14.5px;
  background: #fff;
  color: var(--ink);
}
.auth-form input:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.hint { font-size: 12px; color: var(--muted-2); margin: 4px 0 0; }
.auth-form .btn { margin-top: 18px; }
.hidden { display: none !important; }
.auth-message { margin-top: 16px; font-size: 13.5px; min-height: 1em; }
.auth-message.error { color: var(--error); }
.auth-message.success { color: var(--success); }
.auth-welcome p { margin: 4px 0; }
.auth-welcome .btn { margin-top: 12px; }

/* ---------- Contact form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card p { margin: 6px 0; font-size: 14.5px; }
.contact-form label { display: block; font-size: 13px; font-weight: 700; margin: 14px 0 6px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--card-border);
  font-size: 14.5px;
  font-family: inherit;
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form .btn { margin-top: 18px; }

/* ---------- Legal doc pages ---------- */
.legal-wrap { max-width: 820px; margin: 0 auto; padding: 48px 20px 90px; }
.legal-wrap header { border-bottom: 2px solid var(--accent); padding-bottom: 18px; margin-bottom: 28px; }
.legal-wrap .brand-line { color: var(--accent); font-weight: 900; font-size: 24px; }
.legal-wrap h1 { font-size: 22px; margin: 6px 0 4px; }
.legal-wrap .meta { color: var(--muted); font-size: 13.5px; }
.legal-wrap h2 { font-size: 17px; margin: 32px 0 10px; padding-top: 8px; border-top: 1px solid var(--card-border); }
.legal-wrap h3 { font-size: 14.5px; margin: 16px 0 6px; }
.legal-wrap p, .legal-wrap li { font-size: 14.5px; }
.legal-wrap ul { padding-left: 20px; }
.legal-wrap .lead { font-size: 15px; }
.legal-wrap .callout { background: var(--accent-soft); border: 1px solid #f6d8c2; border-radius: 12px; padding: 14px 16px; margin: 18px 0; font-size: 14px; }
.legal-wrap .note { color: var(--muted); font-size: 12.5px; }
.legal-wrap .sign { margin-top: 30px; display: flex; gap: 30px; flex-wrap: wrap; }
.legal-wrap .sign div { flex: 1; min-width: 200px; border-top: 1px solid var(--ink); padding-top: 6px; font-size: 12.5px; color: var(--muted); }
.legal-wrap footer { margin-top: 40px; padding-top: 16px; border-top: 1px solid var(--card-border); color: var(--muted); font-size: 12.5px; }
.legal-nav { display: flex; gap: 16px; margin-bottom: 6px; flex-wrap: wrap; }
.legal-nav a { font-size: 13px; font-weight: 700; }
.no-margin-top { margin-top: 0; }
.no-margin-bottom { margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: #C9B9AC; padding: 48px 0 28px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 32px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.footer-brand img { width: 30px; height: 30px; }
.footer-brand span { color: #fff; font-weight: 800; font-size: 17px; }
.site-footer h5 { color: #fff; font-size: 13px; letter-spacing: 0.4px; text-transform: uppercase; margin: 0 0 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: #C9B9AC; text-decoration: none; font-size: 14px; }
.site-footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #443528; padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12.5px; }

/* ---------- FAQ chat bot widget ---------- */
#gochop-bot-bubble {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  padding: 8px;
  border-radius: 18px;
  background: linear-gradient(160deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  border: none;
  box-shadow: 0 8px 24px rgba(236,94,26,0.4);
  font-size: 26px;
  cursor: pointer;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#gochop-bot-bubble:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 30px rgba(236,94,26,0.5);
}
#gochop-bot-bubble img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#gochop-bot-panel {
  position: fixed;
  right: 22px;
  bottom: 92px;
  width: 340px;
  max-width: calc(100vw - 44px);
  height: 460px;
  max-height: calc(100vh - 140px);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset, var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 900;
}
.bot-header {
  background: var(--accent);
  color: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.bot-header strong { font-size: 14.5px; }
.bot-header button { background: none; border: none; color: #fff; font-size: 18px; cursor: pointer; }
.bot-messages { flex: 1; overflow-y: auto; padding: 14px 16px; display: flex; flex-direction: column; gap: 10px; }
.bot-msg { max-width: 84%; padding: 9px 13px; border-radius: 12px; font-size: 13.5px; line-height: 1.45; }
.bot-msg.bot { background: var(--bg-alt); color: var(--ink); align-self: flex-start; border-bottom-left-radius: 3px; }
.bot-msg.user { background: var(--accent); color: #fff; align-self: flex-end; border-bottom-right-radius: 3px; }
.bot-suggestions { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 16px 12px; flex-shrink: 0; }
.bot-suggestions button {
  background: var(--bg-alt);
  border: 1px solid var(--card-border);
  color: var(--ink);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  cursor: pointer;
}
.bot-input-row { display: flex; border-top: 1px solid var(--card-border); flex-shrink: 0; }
.bot-input-row input {
  flex: 1;
  border: none;
  padding: 12px 14px;
  font-size: 13.5px;
  font-family: inherit;
}
.bot-input-row input:focus { outline: none; }
.bot-input-row button {
  border: none;
  background: var(--accent);
  color: #fff;
  width: 48px;
  font-size: 16px;
  cursor: pointer;
}

@media (max-width: 640px) {
  .nav { gap: 12px; }
  .hero h1 { font-size: 26px; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* Privacy policy page layout (kept from earlier build, still used) */
.privacy-wrap { max-width: 760px; margin: 0 auto; padding: 40px 20px 80px; }
.privacy-wrap header { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.privacy-wrap h1 { font-size: 26px; margin: 0; }
.back-link { margin: 0 0 8px; }
.back-link a { font-size: 13.5px; }
.privacy-wrap .updated { color: var(--muted); font-size: 13.5px; margin: 4px 0 28px; }
.privacy-wrap h2 { font-size: 18px; margin-top: 34px; margin-bottom: 8px; color: var(--accent); }
.privacy-wrap p, .privacy-wrap li { font-size: 15px; }
.privacy-wrap ul { padding-left: 20px; }
.privacy-wrap footer { margin-top: 48px; font-size: 13px; color: var(--muted-2); border-top: 1px solid var(--card-border); padding-top: 16px; }
