/* Extracted public styles from public/index.html */

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

    :root {
      --primary: #2563eb;
      --primary-dark: #1d4ed8;
      --secondary: #10b981;
      --accent: #f59e0b;
      --text: #111827;
      --text-light: #5b6472;
      --bg: #ffffff;
      --bg-light: #f8fafc;
      --bg-dark: #0f172a;
      --border: #e5e7eb;
      --panel: #ffffff;
      --shadow: 0 18px 45px rgba(15, 23, 42, 0.09);
    }

    body {
      font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
      color: var(--text);
      line-height: 1.6;
      background: var(--bg);
    }

    a {
      color: inherit;
    }

    .container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .site-header {
      background: rgba(255, 255, 255, 0.96);
      border-bottom: 1px solid var(--border);
      padding: 16px 0;
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(10px);
    }

    .site-header .container {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      align-items: center;
    }

    .logo {
      font-size: 24px;
      font-weight: 800;
      color: var(--primary);
      text-decoration: none;
      letter-spacing: -0.03em;
    }

    .site-nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      align-items: center;
      gap: 20px;
    }

    .site-nav a {
      color: var(--text);
      text-decoration: none;
      font-weight: 600;
      transition: color 0.2s;
    }

    .site-nav a:hover {
      color: var(--primary);
    }

    .site-nav .nav-cta {
      background: var(--primary);
      color: white;
      padding: 10px 16px;
      border-radius: 999px;
    }

    .site-nav .nav-cta:hover {
      background: var(--primary-dark);
      color: white;
    }

    .hero-section {
      background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.22), transparent 35%),
        linear-gradient(135deg, #0f172a 0%, #1e3a8a 58%, #2563eb 100%);
      color: white;
      padding: 92px 0 76px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
      gap: 48px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #bfdbfe;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.18);
      padding: 8px 12px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 24px;
    }

    .hero-section h1 {
      font-size: clamp(42px, 6vw, 72px);
      font-weight: 850;
      margin-bottom: 24px;
      line-height: 1.03;
      letter-spacing: -0.055em;
    }

    .hero-lede {
      font-size: 20px;
      color: rgba(255, 255, 255, 0.88);
      max-width: 720px;
      margin-bottom: 32px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
      margin-bottom: 28px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: 10px;
      font-weight: 750;
      font-size: 16px;
      text-decoration: none;
      border: 0;
      cursor: pointer;
      min-height: 48px;
      padding: 13px 22px;
      transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn.primary {
      background: white;
      color: var(--primary);
      box-shadow: 0 10px 25px rgba(15, 23, 42, 0.18);
    }

    .btn.secondary {
      color: white;
      border: 1px solid rgba(255, 255, 255, 0.45);
      background: rgba(255, 255, 255, 0.1);
    }

    .btn.dark {
      background: var(--primary);
      color: white;
    }

    .btn.dark:hover {
      background: var(--primary-dark);
    }

    .hero-proof-list {
      display: grid;
      gap: 10px;
      color: rgba(255, 255, 255, 0.86);
      list-style: none;
      max-width: 720px;
    }

    .hero-proof-list li::before {
      content: "✓";
      color: #86efac;
      font-weight: 800;
      margin-right: 10px;
    }

    .request-card {
      background: var(--panel);
      color: var(--text);
      border-radius: 22px;
      padding: 28px;
      box-shadow: var(--shadow);
    }

    .request-card h2 {
      font-size: 26px;
      line-height: 1.15;
      margin-bottom: 10px;
      letter-spacing: -0.03em;
    }

    .request-card p {
      color: var(--text-light);
      margin-bottom: 20px;
    }

    .report-request-form {
      display: grid;
      gap: 14px;
    }

    .form-field label {
      display: block;
      font-size: 14px;
      font-weight: 750;
      margin-bottom: 6px;
      color: var(--text);
    }

    .form-field input {
      width: 100%;
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 13px 14px;
      font: inherit;
      color: var(--text);
      background: white;
    }

    .form-field input:focus {
      outline: 3px solid rgba(37, 99, 235, 0.16);
      border-color: var(--primary);
    }

    .checkbox-field {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: var(--text-light);
      font-size: 14px;
    }

    .checkbox-field input {
      margin-top: 4px;
    }

    .form-help {
      color: var(--text-light);
      font-size: 13px;
    }

    .form-status {
      display: none;
      border-radius: 10px;
      padding: 12px 14px;
      font-size: 14px;
      font-weight: 650;
    }

    .form-status.visible {
      display: block;
    }

    .form-status.success {
      color: #065f46;
      background: #ecfdf5;
      border: 1px solid #a7f3d0;
    }

    .form-status.warning {
      color: #92400e;
      background: #fffbeb;
      border: 1px solid #fde68a;
    }

    .form-status.error {
      color: #991b1b;
      background: #fef2f2;
      border: 1px solid #fecaca;
    }

    .section {
      padding: 82px 0;
    }

    .section.alt {
      background: var(--bg-light);
    }

    .section-header {
      text-align: center;
      max-width: 780px;
      margin: 0 auto 50px;
    }

    .section-header h2 {
      font-size: clamp(31px, 4vw, 44px);
      font-weight: 820;
      margin-bottom: 14px;
      letter-spacing: -0.04em;
      color: var(--text);
    }

    .section-header p {
      color: var(--text-light);
      font-size: 18px;
    }

    .story-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
      gap: 34px;
      align-items: stretch;
    }

    .story-card,
    .offer-card,
    .process-step,
    .validation-card,
    .hub-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 28px;
      box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
    }

    .story-card.dark {
      background: var(--bg-dark);
      color: white;
      border-color: rgba(255, 255, 255, 0.12);
    }

    .story-card.dark p {
      color: rgba(255, 255, 255, 0.78);
    }

    .story-card h3,
    .offer-card h3,
    .process-step h3,
    .validation-card h3,
    .hub-card h3 {
      font-size: 22px;
      margin-bottom: 10px;
      letter-spacing: -0.02em;
    }

    .story-card p,
    .offer-card p,
    .process-step p,
    .validation-card p,
    .hub-card p {
      color: var(--text-light);
    }

    .story-points {
      display: grid;
      gap: 12px;
      margin-top: 22px;
      list-style: none;
    }

    .story-points li {
      background: rgba(37, 99, 235, 0.08);
      border: 1px solid rgba(37, 99, 235, 0.12);
      border-radius: 12px;
      padding: 14px;
      font-weight: 650;
    }

    .offer-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .offer-icon {
      display: inline-flex;
      width: 46px;
      height: 46px;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      background: rgba(37, 99, 235, 0.1);
      margin-bottom: 18px;
      font-size: 24px;
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .process-step {
      position: relative;
      padding-top: 58px;
    }

    .pillar-grid,
    .proof-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: 28px;
    }

    .pillar-card,
    .proof-card,
    .signature-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 26px;
      box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
    }

    .pillar-card.featured,
    .proof-card.featured {
      grid-column: span 2;
    }

    .pillar-card h3,
    .proof-card h3,
    .signature-card h3 {
      font-size: 21px;
      line-height: 1.2;
      margin-bottom: 10px;
      letter-spacing: -0.02em;
    }

    .pillar-card p,
    .proof-card p,
    .signature-card p {
      color: var(--text-light);
      margin-bottom: 12px;
    }

    .pillar-card strong {
      color: var(--text);
    }

    .signature-strip {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-top: 28px;
      padding: 20px 24px;
      border: 1px solid rgba(37, 99, 235, 0.16);
      border-radius: 18px;
      background: rgba(37, 99, 235, 0.06);
    }

    .signature-mark {
      color: var(--primary);
      font-weight: 850;
      letter-spacing: -0.03em;
    }

    .proof-visual {
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 58, 138, 0.92));
      color: white;
      padding: 20px;
      margin-top: 12px;
    }

    .proof-visual p {
      color: rgba(255, 255, 255, 0.78);
      margin: 6px 0 0;
    }

    .benchmark-bars {
      display: grid;
      gap: 8px;
      margin-top: 14px;
      filter: blur(0.4px);
      opacity: 0.86;
    }

    .benchmark-bar {
      height: 10px;
      border-radius: 999px;
      background: rgba(255,255,255,0.2);
      overflow: hidden;
    }

    .benchmark-bar span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: #93c5fd;
    }

    .benchmark-bar .leader { width: 88%; }
    .benchmark-bar .challenger { width: 74%; }
    .benchmark-bar .current-site { width: 42%; }

    .step-number {
      position: absolute;
      top: 20px;
      left: 24px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--primary);
      color: white;
      font-size: 14px;
      font-weight: 800;
    }

    .cta-section {
      background: var(--bg-dark);
      color: white;
      padding: 76px 0;
    }

    .cta-panel {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
      gap: 34px;
      align-items: center;
    }

    .cta-copy h2 {
      font-size: clamp(32px, 4vw, 48px);
      line-height: 1.08;
      margin-bottom: 16px;
      letter-spacing: -0.04em;
    }

    .cta-copy p {
      color: rgba(255, 255, 255, 0.78);
      font-size: 18px;
      margin-bottom: 20px;
    }

    .cta-list {
      color: rgba(255, 255, 255, 0.82);
      list-style: none;
      display: grid;
      gap: 8px;
    }

    .cta-list li::before {
      content: "•";
      color: #93c5fd;
      font-weight: 800;
      margin-right: 10px;
    }

    .validation-grid,
    .hub-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .validation-label {
      display: inline-block;
      color: #92400e;
      background: #fffbeb;
      border: 1px solid #fde68a;
      padding: 6px 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.02em;
      margin-bottom: 16px;
      text-transform: uppercase;
    }

    .hub-card a {
      display: inline-block;
      margin-top: 18px;
      color: var(--primary);
      font-weight: 800;
      text-decoration: none;
    }

    .footer-cta {
      text-align: center;
      max-width: 760px;
      margin: 0 auto;
    }

    .footer-cta h2 {
      font-size: clamp(30px, 4vw, 44px);
      margin-bottom: 14px;
      letter-spacing: -0.04em;
    }

    .footer-cta p {
      color: var(--text-light);
      font-size: 18px;
      margin-bottom: 24px;
    }

    .site-footer {
      background: var(--text);
      color: white;
      padding: 42px 0 24px;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 34px;
      margin-bottom: 30px;
    }

    .footer-section h3 {
      font-size: 18px;
      margin-bottom: 14px;
      color: white;
    }

    .footer-section p,
    .footer-section a {
      color: rgba(255, 255, 255, 0.72);
    }

    .footer-section a {
      display: block;
      text-decoration: none;
      margin-bottom: 8px;
      transition: color 0.2s;
    }

    .footer-section a:hover {
      color: white;
    }

    .footer-bottom {
      text-align: center;
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      color: rgba(255, 255, 255, 0.62);
      font-size: 14px;
    }

    @media (max-width: 980px) {
      .hero-grid,
      .story-grid,
      .cta-panel {
        grid-template-columns: 1fr;
      }

      .offer-grid,
      .process-grid,
      .pillar-grid,
      .proof-grid,
      .validation-grid,
      .hub-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .pillar-card.featured,
      .proof-card.featured {
        grid-column: span 1;
      }
    }

    @media (max-width: 720px) {
      .site-header .container {
        align-items: flex-start;
        flex-direction: column;
      }

      .site-nav {
        justify-content: flex-start;
        gap: 12px 16px;
      }

      .site-nav a {
        font-size: 14px;
      }

      .hero-section {
        padding: 64px 0;
      }

      .offer-grid,
      .process-grid,
      .pillar-grid,
      .proof-grid,
      .validation-grid,
      .hub-grid {
        grid-template-columns: 1fr;
      }

      .request-card {
        padding: 22px;
      }
    }

/* Extracted public styles from views/public/content-list.ejs */

    * { box-sizing: border-box; }
    body { margin: 0; font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: #102033; background: #f8fafc; line-height: 1.6; }
    a { color: #2563eb; }
    .content-shell { max-width: 1120px; margin: 0 auto; padding: 28px 20px 64px; }
    .content-nav { display: flex; justify-content: space-between; gap: 18px; align-items: center; margin-bottom: 48px; flex-wrap: wrap; }
    .content-brand { font-weight: 800; font-size: 20px; color: #0f172a; text-decoration: none; }
    .content-nav-links { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
    .content-nav-links a { color: #475569; text-decoration: none; font-weight: 650; }
    .content-nav-links a.active { color: #2563eb; }
    .content-hero { background: #0f172a; color: #f8fafc; border-radius: 28px; padding: 48px; margin-bottom: 32px; }
    .content-eyebrow { color: #93c5fd; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; font-weight: 800; }
    .content-hero h1 { font-size: clamp(36px, 6vw, 64px); line-height: 1; margin: 12px 0 18px; }
    .content-hero p { max-width: 720px; color: #cbd5e1; font-size: 18px; }
    .content-tabs { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
    .content-tab { border: 1px solid #cbd5e1; border-radius: 999px; padding: 10px 16px; text-decoration: none; color: #334155; background: #fff; font-weight: 700; }
    .content-tab.active { background: #2563eb; color: #fff; border-color: #2563eb; }
    .content-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
    .content-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 22px; padding: 24px; box-shadow: 0 18px 50px rgba(15, 23, 42, .08); }
    .content-card-label { display: inline-block; margin-bottom: 14px; border-radius: 999px; background: #dbeafe; color: #1d4ed8; padding: 5px 10px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
    .content-card-label.placeholder { background: #fef3c7; color: #92400e; }
    .content-card h2 { margin: 0 0 12px; font-size: 22px; line-height: 1.2; color: #0f172a; }
    .content-card p { color: #475569; margin: 0 0 18px; }
    .content-card-link { font-weight: 800; text-decoration: none; }
    .content-cta { margin-top: 36px; padding: 28px; border-radius: 22px; background: #e0f2fe; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; align-items: center; }
    .content-cta h2 { margin: 0 0 6px; }
    .content-cta p { margin: 0; color: #475569; }
    .content-button { display: inline-block; background: #0f172a; color: #fff; border-radius: 999px; padding: 12px 18px; text-decoration: none; font-weight: 800; }
    @media (max-width: 820px) { .content-hero { padding: 32px 24px; } .content-grid { grid-template-columns: 1fr; } }

/* Extracted public styles from views/public/content-detail.ejs */

    * { box-sizing: border-box; }
    body { margin: 0; font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: #102033; background: #f8fafc; line-height: 1.7; }
    a { color: #2563eb; }
    .article-shell { max-width: 880px; margin: 0 auto; padding: 28px 20px 64px; }
    .article-nav { display: flex; justify-content: space-between; gap: 18px; align-items: center; margin-bottom: 48px; flex-wrap: wrap; }
    .article-brand { font-weight: 800; font-size: 20px; color: #0f172a; text-decoration: none; }
    .article-nav-links { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
    .article-nav-links a { color: #475569; text-decoration: none; font-weight: 650; }
    .article-header { background: #fff; border: 1px solid #e2e8f0; border-radius: 28px; padding: 42px; box-shadow: 0 18px 50px rgba(15, 23, 42, .08); }
    .article-label { display: inline-block; margin-bottom: 14px; border-radius: 999px; background: #dbeafe; color: #1d4ed8; padding: 5px 10px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
    .article-label.placeholder { background: #fef3c7; color: #92400e; }
    .article-header h1 { font-size: clamp(34px, 6vw, 58px); line-height: 1.04; margin: 0 0 18px; color: #0f172a; }
    .article-excerpt { font-size: 19px; color: #475569; margin: 0; }
    .article-body { margin: 34px 0; background: #fff; border: 1px solid #e2e8f0; border-radius: 24px; padding: 34px; }
    .article-body p { margin: 0 0 20px; color: #334155; font-size: 18px; }
    .article-body p:last-child { margin-bottom: 0; }
    .article-cta { padding: 28px; border-radius: 22px; background: #0f172a; color: #fff; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; align-items: center; }
    .article-cta h2 { margin: 0 0 6px; }
    .article-cta p { margin: 0; color: #cbd5e1; }
    .article-button { display: inline-block; background: #fff; color: #0f172a; border-radius: 999px; padding: 12px 18px; text-decoration: none; font-weight: 800; }
    @media (max-width: 720px) { .article-header, .article-body { padding: 26px; } }

/* Extracted public inline style utilities for #1107. */
.hero-actions-centered { justify-content: center; margin-bottom: 0; }
