/* ==========================================================================
   PORT2040.AI — Executive Corporate Portal & Commercial Gateway (portal_home.css)
   Clean, Futuristic Dark-Glassmorphism Design System
   ========================================================================== */

:root {
  --portal-bg: #040914;
  --portal-bg-elevated: #0a1326;
  --portal-surface: rgba(15, 23, 42, 0.75);
  --portal-surface-hover: rgba(30, 41, 59, 0.85);
  --portal-border: rgba(255, 255, 255, 0.1);
  --portal-border-hover: rgba(56, 189, 248, 0.4);

  --accent-cyan: #00e5ff;
  --accent-blue: #38bdf8;
  --accent-emerald: #00e676;
  --accent-amber: #f59e0b;
  --accent-purple: #c084fc;

  --text-main: #ffffff;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
}

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

body.portal-home-body {
  background: radial-gradient(circle at 50% 0%, #0c1e3d 0%, #040914 65%);
  color: var(--text-main);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  padding-top: 60px; /* Space for fixed global nav */
}

/* Container */
.portal-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 30px 20px 60px;
}

/* Real-Time Telemetry Bar */
.telemetry-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.25);
  border-radius: 12px;
  padding: 10px 18px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.telemetry-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #00e676;
  text-transform: uppercase;
}

.telemetry-pulse {
  width: 8px;
  height: 8px;
  background-color: #00e676;
  border-radius: 50%;
  box-shadow: 0 0 10px #00e676;
  animation: pulseLive 2s infinite ease-in-out;
}

@keyframes pulseLive {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

.telemetry-metrics {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  color: #cbd5e1;
}

.metric-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.06);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-tag strong {
  color: #38bdf8;
}

/* Hero Section (Split-Screen High-Conversion Layout) */
.portal-hero {
  padding: 10px 0 45px;
}

.hero-split-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: stretch;
}

.hero-brand-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.portal-logo-wrap {
  display: inline-block;
  margin-bottom: 16px;
}

.portal-logo-img {
  max-width: 330px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 25px rgba(56, 189, 248, 0.3));
  transition: transform 0.3s ease;
}

.portal-logo-img:hover {
  transform: scale(1.02);
}

.portal-tagline {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--accent-cyan);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.portal-tagline::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--accent-cyan);
}

.portal-title {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 30%, #93c5fd 80%, #00e5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.portal-lead {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Proven ROI metrics banner in hero */
.hero-kpis-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.hero-kpi-item {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.hero-kpi-item:hover {
  border-color: rgba(56, 189, 248, 0.35);
  background: rgba(30, 41, 59, 0.7);
}

.hero-kpi-val {
  font-size: 18px;
  font-weight: 900;
  color: #38bdf8;
  letter-spacing: -0.01em;
}

.hero-kpi-val.emerald { color: #00e676; }
.hero-kpi-val.amber { color: #fbbf24; }
.hero-kpi-val.cyan { color: #00e5ff; }

.hero-kpi-lbl {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #fff;
  border: 1px solid #38bdf8;
  box-shadow: 0 4px 20px rgba(2, 132, 199, 0.35);
}

.hero-btn-primary:hover {
  background: linear-gradient(135deg, #0369a1 0%, #0284c7 100%);
  box-shadow: 0 6px 25px rgba(56, 189, 248, 0.5);
  transform: translateY(-2px);
}

.hero-btn-secondary {
  background: rgba(15, 23, 42, 0.8);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.hero-btn-secondary:hover {
  background: rgba(30, 41, 59, 0.95);
  border-color: rgba(56, 189, 248, 0.5);
  color: #fff;
  transform: translateY(-2px);
}

.hero-btn-accent {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #040914;
  border: 1px solid #fbbf24;
  font-weight: 800;
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.3);
}

.hero-btn-accent:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  box-shadow: 0 6px 22px rgba(245, 158, 11, 0.5);
  transform: translateY(-2px);
}

/* ==========================================================================
   Platform Access Gateway Card (Hero Right Column)
   ========================================================================== */
.hero-gateway-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.platform-access-card {
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.95) 0%, rgba(6, 12, 26, 0.98) 100%);
  border: 1px solid rgba(0, 229, 255, 0.35);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(0, 229, 255, 0.12);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  text-align: left;
}

.platform-access-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00e5ff, #38bdf8, #00e676);
}

.card-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: #00e5ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.card-title {
  font-size: 19px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 18px;
}

.gateway-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.form-label {
  font-size: 11px;
  font-weight: 700;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-input {
  width: 100%;
  padding: 11px 13px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #ffffff;
  font-size: 13px;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.form-input:focus {
  border-color: #00e5ff;
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.3);
  background: rgba(0, 0, 0, 0.75);
}

.form-input::placeholder {
  color: #64748b;
}

.form-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text-muted);
}

.form-meta-row label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.form-meta-row a {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 600;
}

.form-meta-row a:hover {
  text-decoration: underline;
}

.btn-access-submit {
  background: linear-gradient(90deg, #00e5ff 0%, #0284c7 100%);
  color: #040914;
  border: none;
  font-weight: 900;
  font-size: 13px;
  padding: 13px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  box-shadow: 0 4px 18px rgba(0, 229, 255, 0.4);
  transition: all 0.25s ease;
}

.btn-access-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0, 229, 255, 0.6);
  filter: brightness(1.05);
}

.gateway-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0 12px;
  color: #475569;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gateway-divider::before,
.gateway-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.btn-vip-demo {
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid #00e676;
  color: #00e676;
  font-weight: 800;
  font-size: 11px;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn-vip-demo:hover {
  background: rgba(0, 230, 118, 0.2);
  box-shadow: 0 0 16px rgba(0, 230, 118, 0.25);
  transform: translateY(-1px);
}

/* Active session card */
.active-session-box {
  display: none;
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.3);
  border-radius: 8px;
  padding: 10px 12px;
  margin-top: 14px;
  font-size: 11px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.active-session-info {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #cbd5e1;
}

.active-session-info strong {
  color: #00e676;
}

.active-session-link {
  color: #00e5ff;
  font-weight: 800;
  text-decoration: none;
  font-size: 11px;
  white-space: nowrap;
}

.active-session-link:hover {
  text-decoration: underline;
}

.gateway-trust-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 10px;
  color: var(--text-dim);
}

/* ==========================================================================
   Value Pillars Section (Por que os Líderes Assinam)
   ========================================================================== */
.pillars-section {
  margin-bottom: 50px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.pillar-card {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 22px;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pillar-card:hover {
  border-color: rgba(56, 189, 248, 0.35);
  background: rgba(22, 33, 56, 0.85);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.pillar-icon {
  font-size: 26px;
  margin-bottom: 4px;
}

.pillar-title {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
}

.pillar-desc {
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-muted);
}

.pillar-stat {
  margin-top: auto;
  padding-top: 8px;
  font-size: 11px;
  font-weight: 800;
  color: #38bdf8;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================================================
   Pricing & SaaS Subscription Tiers Section
   ========================================================================== */
.pricing-section {
  margin-bottom: 50px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 28px;
}

.pricing-tagline {
  font-size: 11px;
  font-weight: 800;
  color: #00e5ff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-title {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  margin: 6px 0;
}

.pricing-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.5;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  align-items: stretch;
}

.pricing-card {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  border-color: rgba(56, 189, 248, 0.4);
}

.pricing-card.featured {
  background: linear-gradient(180deg, rgba(14, 116, 144, 0.28) 0%, rgba(15, 23, 42, 0.9) 100%);
  border: 2px solid #00e5ff;
  box-shadow: 0 8px 30px rgba(0, 229, 255, 0.18);
}

.pricing-badge {
  position: absolute;
  top: -11px;
  right: 20px;
  background: #00e5ff;
  color: #040914;
  font-size: 10px;
  font-weight: 900;
  padding: 3px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-tier-name {
  font-size: 19px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 4px;
}

.pricing-tier-target {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.pricing-price-box {
  font-size: 32px;
  font-weight: 900;
  color: #00e5ff;
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-price-box.blue { color: #38bdf8; }
.pricing-price-box.amber { color: #ffab00; }

.pricing-price-box span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.pricing-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
  color: #cbd5e1;
  line-height: 1.5;
}

.pricing-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pricing-features-list li::before {
  content: '✓';
  color: #00e676;
  font-weight: 800;
}

.pricing-btn {
  margin-top: auto;
  width: 100%;
  padding: 13px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 13px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  display: block;
  box-sizing: border-box;
}

.pricing-btn-primary {
  background: #00e5ff;
  color: #040914;
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.35);
}

.pricing-btn-primary:hover {
  background: #38bdf8;
  transform: translateY(-2px);
}

.pricing-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
}

.pricing-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #38bdf8;
  color: #fff;
  transform: translateY(-2px);
}

/* ==========================================================================
   Lead Capture / Demo Request Modal
   ========================================================================== */
.lead-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(4, 9, 20, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lead-modal-overlay.open {
  display: flex;
}

.lead-modal-box {
  background: linear-gradient(160deg, #0f172a 0%, #060c1a 100%);
  border: 1px solid rgba(0, 229, 255, 0.4);
  border-radius: 18px;
  width: 100%;
  max-width: 500px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 229, 255, 0.2);
  position: relative;
  animation: modalIn 0.25s ease-out;
  box-sizing: border-box;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 18px;
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 22px;
  cursor: pointer;
  padding: 4px;
}

.modal-close-btn:hover {
  color: #fff;
}

/* Section Titles */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 12px;
}

.section-title {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-subtitle {
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Spotlight Cards (Case #01, NCM, Palm Oil) */
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
  margin-bottom: 45px;
}

.spotlight-card {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.85) 0%, rgba(10, 16, 31, 0.95) 100%);
  border: 1px solid var(--portal-border);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
}

.spotlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.spotlight-case::before { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.spotlight-ncm::before { background: linear-gradient(90deg, #00e5ff, #38bdf8); }
.spotlight-oil::before { background: linear-gradient(90deg, #00e676, #10b981); }

.spotlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  border-color: rgba(56, 189, 248, 0.4);
}

.spotlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
  width: fit-content;
}

.badge-case { background: rgba(245, 158, 11, 0.15); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.3); }
.badge-ncm { background: rgba(0, 229, 255, 0.15); color: #00e5ff; border: 1px solid rgba(0, 229, 255, 0.3); }
.badge-oil { background: rgba(0, 230, 118, 0.15); color: #00e676; border: 1px solid rgba(0, 230, 118, 0.3); }

.spotlight-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.spotlight-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.spotlight-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.spotlight-meta-item {
  font-size: 11px;
  background: rgba(255, 255, 255, 0.05);
  padding: 3px 8px;
  border-radius: 4px;
  color: #94a3b8;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.spotlight-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #38bdf8;
  margin-top: auto;
}

/* 8 Client Suites Grid */
.suites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 45px;
}

.suite-card {
  background: var(--portal-surface);
  border: 1px solid var(--portal-border);
  border-radius: 14px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.suite-card:hover {
  background: var(--portal-surface-hover);
  border-color: var(--portal-border-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.suite-card-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
}

.suite-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.suite-title {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 4px;
}

.suite-num {
  font-size: 10px;
  font-weight: 800;
  color: #38bdf8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.suite-desc {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.suite-features-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.suite-pill {
  font-size: 10px;
  background: rgba(255, 255, 255, 0.04);
  padding: 3px 7px;
  border-radius: 4px;
  color: #cbd5e1;
}

.suite-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  color: #38bdf8;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 10px;
}

/* Tools & Telemetry Cockpit Grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 50px;
}

.tool-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tool-card:hover {
  background: rgba(30, 41, 59, 0.85);
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateX(3px);
}

.tool-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.tool-info {
  display: flex;
  flex-direction: column;
}

.tool-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.tool-desc {
  font-size: 11px;
  color: var(--text-dim);
}

/* Portal Footer */
.portal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-links-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: #38bdf8;
  transform: translateY(-1px);
}

.footer-copy {
  font-size: 11px;
  color: var(--text-dim);
}

/* Responsive adjustments */
@media (max-width: 960px) {
  .hero-split-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-brand-col {
    text-align: center;
    align-items: center;
  }
  .portal-tagline {
    justify-content: center;
  }
  .hero-cta-group {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .portal-title {
    font-size: 28px;
  }
  .portal-lead {
    font-size: 14px;
  }
  .hero-kpis-grid {
    grid-template-columns: 1fr 1fr;
  }
  .telemetry-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .spotlight-grid {
    grid-template-columns: 1fr;
  }
  .suites-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

