/* Page-specific styles for gateway.html — extracted from inline <style> for CSP compliance */
/* ================================================================
       CendiaGateway Page â€” Enterprise Platinum Styles
       Uses site CSS variables from styles.css
       ================================================================ */

    .gw-hero {
      max-width: 900px;
      margin: 0 auto;
      padding: 80px 24px 60px;
      text-align: center;
    }
    .gw-badge {
      display: inline-block;
      padding: 6px 18px;
      border-radius: 20px;
      background: rgba(184, 153, 80, 0.08);
      border: 1px solid rgba(184, 153, 80, 0.25);
      color: var(--color-gold);
      font-family: var(--font-mono);
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 28px;
    }
    .gw-hero h2 {
      font-family: var(--font-display);
      font-size: 2.8rem;
      font-weight: 300;
      line-height: 1.15;
      color: var(--color-text);
      margin-bottom: 20px;
      letter-spacing: -0.01em;
    }
    .gw-hero h2 em {
      font-style: normal;
      color: var(--color-gold);
    }
    .gw-hero .subtitle {
      font-size: 1rem;
      color: var(--color-text-dim);
      max-width: 620px;
      margin: 0 auto 36px;
      line-height: 1.7;
    }
    .gw-cta-row {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .gw-btn-primary {
      display: inline-block;
      padding: 14px 32px;
      background: var(--color-gold);
      color: var(--color-bg);
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 0.8rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border-radius: 4px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s ease;
    }
    .gw-btn-primary:hover { opacity: 0.88; text-decoration: none; }
    .gw-btn-secondary {
      display: inline-block;
      padding: 14px 32px;
      background: transparent;
      color: var(--color-gold);
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 0.8rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border-radius: 4px;
      border: 1px solid rgba(184, 153, 80, 0.3);
      text-decoration: none;
      transition: all 0.2s ease;
    }
    .gw-btn-secondary:hover { background: rgba(184, 153, 80, 0.06); text-decoration: none; }

    /* Problem Section */
    .gw-section {
      max-width: 900px;
      margin: 0 auto;
      padding: 60px 24px;
    }
    .gw-section-title {
      font-family: var(--font-display);
      font-size: 1.8rem;
      font-weight: 300;
      color: var(--color-text);
      margin-bottom: 12px;
      text-align: center;
    }
    .gw-section-sub {
      text-align: center;
      color: var(--color-text-dim);
      font-size: 0.9rem;
      margin-bottom: 40px;
      line-height: 1.6;
    }
    .gw-grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .gw-grid-3 {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 20px;
    }
    @media (max-width: 768px) {
      .gw-grid-2, .gw-grid-3 { grid-template-columns: 1fr; }
      .gw-hero h2 { font-size: 2rem; }
    }

    /* Cards */
    .gw-card {
      padding: 28px;
      border-radius: 6px;
      border: 1px solid var(--color-border);
      background: var(--color-card-bg);
      transition: border-color 0.2s ease;
    }
    .gw-card:hover { border-color: rgba(184, 153, 80, 0.25); }
    .gw-card-label {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #ef4444;
      margin-bottom: 10px;
      font-weight: 500;
    }
    .gw-card h3 {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 400;
      color: var(--color-text);
      margin-bottom: 8px;
    }
    .gw-card p {
      font-size: 0.82rem;
      color: var(--color-text-dim);
      line-height: 1.6;
    }

    /* Feature Cards */
    .gw-feature h4 {
      font-family: var(--font-mono);
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--color-gold);
      margin-bottom: 8px;
    }
    .gw-feature p {
      font-size: 0.82rem;
      color: var(--color-text-dim);
      line-height: 1.6;
    }

    /* Architecture Diagram */
    .gw-arch {
      background: var(--color-card-bg);
      border: 1px solid var(--color-border);
      border-radius: 6px;
      padding: 32px;
      font-family: var(--font-mono);
      font-size: 0.78rem;
      color: var(--color-text-dim);
      white-space: pre;
      overflow-x: auto;
      line-height: 1.65;
      margin-bottom: 40px;
    }
    .gw-arch .g { color: var(--color-gold); }
    .gw-arch .s { color: #22c55e; }
    .gw-arch .r { color: #ef4444; }

    /* Comparison Table */
    .gw-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.8rem;
    }
    .gw-table th {
      text-align: left;
      padding: 14px 16px;
      border-bottom: 1px solid var(--color-border);
      color: var(--color-text-muted);
      font-family: var(--font-mono);
      font-weight: 500;
      font-size: 0.65rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    .gw-table td {
      padding: 14px 16px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.03);
      color: var(--color-text-dim);
    }
    .gw-table .y { color: #22c55e; font-weight: 500; }
    .gw-table .n { color: var(--color-text-muted); }
    .gw-table .hl { background: rgba(184, 153, 80, 0.04); }
    .gw-table tr:hover td { background: rgba(255, 255, 255, 0.02); }

    /* Deploy Code Block */
    .gw-code {
      background: var(--color-card-bg);
      border: 1px solid var(--color-border);
      border-radius: 6px;
      padding: 28px;
      font-family: var(--font-mono);
      font-size: 0.82rem;
      color: var(--color-text-dim);
      text-align: left;
      max-width: 640px;
      margin: 0 auto 40px;
      line-height: 1.8;
    }
    .gw-code .cm { color: var(--color-text-muted); }
    .gw-code .k { color: var(--color-gold); }
    .gw-code .v { color: #22c55e; }

    /* AI Manifest Box */
    .gw-manifest {
      background: linear-gradient(135deg, rgba(184, 153, 80, 0.06), var(--color-card-bg));
      border: 1px solid rgba(184, 153, 80, 0.2);
      border-radius: 6px;
      padding: 36px;
    }
    .gw-manifest h3 {
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 400;
      color: var(--color-gold);
      margin-bottom: 20px;
    }
    .gw-manifest-list {
      list-style: none;
      padding: 0;
    }
    .gw-manifest-list li {
      padding: 10px 0;
      border-bottom: 1px solid rgba(184, 153, 80, 0.08);
      color: var(--color-text-dim);
      font-size: 0.85rem;
      line-height: 1.5;
    }
    .gw-manifest-list li:last-child { border: none; }
    .gw-manifest-list .ck { color: #22c55e; margin-right: 10px; font-weight: 600; }

    /* Final CTA */
    .gw-final-cta {
      max-width: 900px;
      margin: 0 auto;
      padding: 80px 24px;
      text-align: center;
    }
    .gw-final-cta h2 {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 300;
      color: var(--color-text);
      margin-bottom: 16px;
    }
    .gw-final-cta p {
      color: var(--color-text-dim);
      margin-bottom: 32px;
      font-size: 0.9rem;
      line-height: 1.6;
    }

    /* Divider */
    .gw-divider {
      max-width: 900px;
      margin: 0 auto;
      border: none;
      border-top: 1px solid var(--color-border);
    }