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

  :root {
    --bg: #f0ebe0;
    --dark-hero: #1a2e2a;
    --white: #ffffff;
    --black: #111111;
    --teal: #2d7a68;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --border: #e5dfd4;
    --card-bg: #ffffff;
    --inner-bg: #faf8f4;
  }

  body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(150deg, #e4f0ec 0%, #f2ebe0 45%, #fdeedd 100%);
    min-height: 100vh;
    color: var(--black);
    font-size: 14px;
    line-height: 1.5;
  }

  /* ── NAV ── */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(240,235,224,0.93);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: 52px;
    display: flex; align-items: center;
    padding: 0 32px;
  }
  .nav-inner {
    width: 100%; max-width: 980px; margin: 0 auto;
    display: flex; align-items: center;
  }
  .nav-logo {
    display: flex; align-items: center; gap: 8px;
    font-weight: 600; font-size: 13px;
    color: var(--black); text-decoration: none;
    flex-shrink: 0; margin-right: auto;
  }
  .nav-logo-icon {
    width: 26px; height: 26px;
    background: var(--teal); border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 12px; font-weight: 700;
  }
  .nav-links {
    display: flex; gap: 4px; list-style: none; align-items: center;
  }
  .nav-links a {
    text-decoration: none; color: var(--text-muted);
    font-size: 13px; padding: 5px 14px; border-radius: 8px;
    transition: background 0.15s, color 0.15s; font-weight: 400;
  }
  .nav-links a:hover { color: var(--black); background: rgba(0,0,0,0.05); }
  .nav-links a.active {
    color: var(--black); background: var(--white);
    font-weight: 500; box-shadow: 0 1px 3px rgba(0,0,0,0.09);
  }
  .nav-toggle {
    display: none; flex-direction: column; gap: 4px;
    background: none; border: none; cursor: pointer;
    padding: 4px; margin-left: auto;
  }
  .nav-toggle span { display: block; width: 20px; height: 2px; background: var(--black); border-radius: 2px; }
  .nav-mobile-menu {
    position: fixed; top: 52px; left: 0; right: 0;
    background: #f0ebe0; border-bottom: 1px solid var(--border);
    padding: 12px 16px; display: none; flex-direction: column; gap: 4px; z-index: 99;
  }
  .nav-mobile-menu.open { display: flex; }
  .nav-mobile-menu a {
    text-decoration: none; color: var(--black);
    font-size: 14px; padding: 10px 12px; border-radius: 8px; display: block;
  }
  .nav-mobile-menu a:hover { background: rgba(0,0,0,0.05); }

  /* ── PAGE WRAP ── */
  .page-wrap {
    max-width: 980px; margin: 0 auto;
    padding: 28px 24px 56px;
  }

  /* ── HERO BANNER ── */
  .hero-banner {
    background: var(--dark-hero);
    border-radius: 20px;
    padding: 32px 40px 36px;
    margin-bottom: 24px;
  }
  .hero-eyebrow {
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(255,255,255,0.4); margin-bottom: 14px;
  }
  .tag-row { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 18px; }
  .tag {
    font-size: 11px; font-weight: 500;
    padding: 4px 12px; border-radius: 20px; white-space: nowrap;
    border: 1px solid transparent;
  }
  .tag-outline-pink   { border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.75); background: transparent; }
  .tag-outline-gray2  { border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.75); background: transparent; }
  .tag-outline-green2 { border-color: #4ade80; color: #4ade80; background: transparent; }

  /* light tags for panels */
  .tag-light-blue   { background: #dbeafe; color: #1d4ed8; border-color: #dbeafe; }
  .tag-light-teal   { background: #ccfbf1; color: #0f766e; border-color: #ccfbf1; }
  .tag-light-gray   { background: #f3f4f6; color: #374151; border-color: #f3f4f6; }

  .hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(22px, 4vw, 40px);
    font-weight: 800; line-height: 1.12;
    color: white; margin-bottom: 14px;
    letter-spacing: -0.02em;
  }
  .hero-desc {
    font-size: 13px; color: rgba(255,255,255,0.5);
    max-width: 580px; line-height: 1.6;
  }

  /* ── TWO COL LAYOUT ── */
  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
  }
  .left-col { display: flex; flex-direction: column; gap: 18px; }
  .right-col { display: flex; flex-direction: column; gap: 18px; }

  /* ── PANEL ── */
  .panel {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 22px;
    transition: box-shadow 0.15s;
  }
  .panel:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
  .panel-eyebrow {
    font-size: 9px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--teal); margin-bottom: 16px;
  }

  /* ── AI SUMMARY PANEL ── */
  .ai-summary-header {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 16px;
  }
  .ai-avatar {
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--teal);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 13px; font-weight: 700; flex-shrink: 0;
  }
  .ai-name {
    font-size: 13px; font-weight: 600; color: var(--black);
  }
  .ai-body {
    font-size: 13px; color: var(--text-muted);
    line-height: 1.6; margin-bottom: 16px;
  }

  /* ── ACTIONS PANEL ── */
  .actions-row {
    display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
    margin-top: 4px;
  }
  .btn-help {
    background: var(--teal);
    color: white; border: none;
    border-radius: 10px;
    padding: 10px 22px;
    font-size: 13px; font-weight: 600;
    cursor: pointer; font-family: inherit;
    transition: background 0.15s;
  }
  .btn-help:hover { background: #245f51; }
  .btn-solved {
    background: transparent;
    color: var(--black);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 13px; font-weight: 500;
    cursor: pointer; font-family: inherit;
    transition: background 0.15s, border-color 0.15s;
  }
  .btn-solved:hover { background: var(--black); color: white; border-color: var(--black); }

  /* ── REQUESTER PANEL ── */
  .requester-row {
    display: flex; align-items: center; gap: 12px;
  }
  .req-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: #d1d5db;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700; color: white; flex-shrink: 0;
  }
  .req-info {}
  .req-name { font-size: 14px; font-weight: 600; color: var(--black); margin-bottom: 2px; }
  .req-location { font-size: 12px; color: var(--text-muted); }

  /* ── HELPERS PANEL ── */
  .helpers-title {
    font-family: 'Instrument Serif', serif;
    font-size: 20px; color: var(--black);
    margin-bottom: 18px; line-height: 1.2;
  }
  .helper-item {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #f0ece4;
  }
  .helper-item:last-child { border-bottom: none; padding-bottom: 0; }
  .h-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700; color: white; flex-shrink: 0;
  }
  .h-av-orange { background: #c2440a; }
  .h-av-blue   { background: #2d5a8e; }
  .h-info { flex: 1; min-width: 0; }
  .h-name { font-size: 13px; font-weight: 600; color: var(--black); margin-bottom: 3px; }
  .h-skills { font-size: 11px; color: var(--text-muted); line-height: 1.4; }
  .trust-badge {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #15803d;
    font-size: 10px; font-weight: 700;
    padding: 4px 9px; border-radius: 8px;
    white-space: nowrap; flex-shrink: 0;
    text-align: center; line-height: 1.3;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 700px) {
    nav { padding: 0 16px; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }

    .page-wrap { padding: 16px 16px 40px; }
    .hero-banner { padding: 24px 20px 28px; border-radius: 16px; }
    .two-col { grid-template-columns: 1fr; }
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-banner { animation: fadeUp 0.4s ease both; }
  .panel       { animation: fadeUp 0.4s 0.1s ease both; }