/* CSS Design System for CSU Alumni Hub website - Premium Dark Mode with Green & Gold Accents */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-base: #0a0f18;
  --bg-surface: rgba(18, 26, 42, 0.65);
  --bg-surface-solid: #121a2a;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);
  
  /* CSU Colors: Forest Green & Golden Oak */
  --color-primary: #1e4d2b;       /* CSU Green */
  --color-primary-light: #2d7743;
  --color-accent: #c8c372;        /* CSU Gold */
  --color-accent-light: #e0db8d;
  
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 25px rgba(45, 119, 67, 0.25);
  --shadow-glow-gold: 0 0 25px rgba(200, 195, 114, 0.15);

  --font-sans: 'Outfit', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-base);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(30, 77, 43, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(200, 195, 114, 0.08) 0%, transparent 40%);
  background-attachment: fixed;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header Navbar */
.navbar {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: rgba(10, 15, 24, 0.7);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  transition: var(--transition-smooth);
}

.navbar .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #ffffff 40%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  -webkit-text-fill-color: #ffffff;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition-smooth);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary-light), var(--color-accent));
  transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-btn {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-light));
}

.nav-btn-outline {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

.nav-btn-outline:hover {
  background: rgba(200, 195, 114, 0.1);
  box-shadow: var(--shadow-glow-gold);
}

/* Cards & Glassmorphism */
.glass-card {
  background: var(--bg-surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md), var(--shadow-glow-gold);
}

/* Typography & Headers */
h1, h2, h3, h4 {
  font-weight: 700;
  margin-bottom: 12px;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 30%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Forms */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background-color: rgba(10, 15, 24, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 15px;
  transition: var(--transition-smooth);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-primary-light);
  box-shadow: 0 0 10px rgba(45, 119, 67, 0.3);
}

.editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.editor-tool {
  min-width: 38px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 10px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: rgba(10, 15, 24, 0.72);
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.editor-tool:hover {
  border-color: var(--color-accent);
  color: var(--color-accent-light);
  background: rgba(200, 195, 114, 0.1);
}

.password-field {
  position: relative;
}

.password-field .form-input {
  padding-right: 76px;
}

.password-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  min-width: 52px;
  height: 30px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-accent-light);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.password-toggle:hover {
  border-color: var(--color-accent);
  background: rgba(200, 195, 114, 0.12);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-main);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-hover);
}

.btn-accent {
  background: linear-gradient(135deg, var(--color-accent), #a39f58);
  color: #0c0f14;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-gold);
}

/* Notifications / Badges */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-pending {
  background-color: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-approved {
  background-color: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-rejected {
  background-color: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Global Alert Notifications */
.alert {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  display: none;
  animation: slideIn 0.3s ease;
}

.alert-success {
  background-color: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: block;
}

.alert-error {
  background-color: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
  display: block;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer */
footer {
  border-top: 1px solid var(--border-color);
  padding: 40px 0;
  text-align: center;
  color: var(--text-dim);
  font-size: 14px;
  margin-top: 60px;
  background-color: rgba(10, 15, 24, 0.5);
}

/* Launch homepage */
.nav-public {
  gap: 16px;
}

.launch-hero {
  padding: 72px 0 48px;
}

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

.launch-copy h1 {
  max-width: 780px;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
  margin: 14px 0 22px;
}

.launch-copy p {
  max-width: 720px;
  color: var(--text-muted);
  font-size: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  color: var(--color-accent-light);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn-fit {
  width: auto;
  padding-left: 22px;
  padding-right: 22px;
  text-decoration: none;
}

.launch-panel {
  min-height: 460px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(18, 26, 42, 0.86), rgba(10, 15, 24, 0.9)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 80px);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.network-map {
  position: relative;
  height: 340px;
}

.network-map::before,
.network-map::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 1px;
  background: rgba(200, 195, 114, 0.32);
}

.network-map::after {
  transform: rotate(90deg);
}

.network-node {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(200, 195, 114, 0.34);
  background: rgba(10, 15, 24, 0.9);
  color: var(--text-main);
  font-weight: 800;
  box-shadow: 0 0 32px rgba(45, 119, 67, 0.24);
}

.node-main {
  width: 112px;
  height: 112px;
  left: calc(50% - 56px);
  top: calc(50% - 56px);
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  border-color: var(--color-accent);
}

.node-a { left: 10%; top: 16%; }
.node-b { right: 12%; top: 12%; }
.node-c { left: 16%; bottom: 12%; }
.node-d { right: 10%; bottom: 16%; }
.node-e { left: calc(50% - 36px); top: 4%; }

.launch-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border-color);
}

.launch-metrics div {
  padding: 18px 16px;
  border-right: 1px solid var(--border-color);
}

.launch-metrics div:last-child {
  border-right: 0;
}

.launch-metrics strong {
  display: block;
  color: var(--color-accent-light);
  font-size: 28px;
  line-height: 1;
}

.launch-metrics span {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 8px;
}

.section-block {
  padding: 48px 24px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2,
.operating-grid h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.section-heading p,
.operating-grid p {
  color: var(--text-muted);
  font-size: 17px;
}

.section-heading-row {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

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

.module-card {
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: rgba(18, 26, 42, 0.72);
  box-shadow: var(--shadow-sm);
}

.module-card-wide {
  grid-column: span 2;
}

.module-card h3 {
  font-size: 22px;
  line-height: 1.2;
  margin-top: 12px;
}

.module-card p {
  color: var(--text-muted);
  margin-bottom: 18px;
}

.module-card ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  color: var(--text-dim);
  font-size: 14px;
}

.module-index {
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 800;
}

.operating-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 40px;
  align-items: start;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: rgba(10, 15, 24, 0.44);
  padding: 30px;
}

.stage-list {
  display: grid;
  gap: 12px;
}

.stage-item {
  padding: 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.stage-item strong {
  display: block;
  color: var(--color-accent-light);
  margin-bottom: 4px;
}

.stage-item span {
  color: var(--text-muted);
  font-size: 14px;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
}

.post-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--bg-surface);
  box-shadow: var(--shadow-sm);
}

.post-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
  background: rgba(0, 0, 0, 0.24);
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-image.image-error {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-image.image-error::after {
  content: "Image unavailable";
  color: var(--text-muted);
  font-size: 14px;
}

.post-body {
  padding: 22px;
}

.post-body h3 {
  margin-top: 12px;
  font-size: 21px;
  line-height: 1.28;
}

.post-body p,
.formatted-content {
  color: var(--text-muted);
  display: block;
  overflow: visible;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.formatted-content h2 {
  color: var(--text-main);
  font-size: 22px;
  line-height: 1.25;
  margin: 18px 0 10px;
}

.formatted-content blockquote {
  margin: 14px 0;
  padding: 12px 14px;
  border-left: 3px solid var(--color-accent);
  background: rgba(200, 195, 114, 0.07);
  color: var(--text-main);
}

.formatted-content ul,
.formatted-content ol {
  margin: 10px 0 10px 22px;
  white-space: normal;
}

.formatted-content li {
  margin: 6px 0;
}

.formatted-content a {
  color: var(--color-accent-light);
  font-weight: 700;
}

.formatted-content hr {
  border: 0;
  border-top: 1px solid var(--border-color);
  margin: 18px 0;
}

.post-meta {
  margin-top: auto;
  padding: 16px 22px;
  border-top: 1px solid var(--border-color);
}

.post-meta strong,
.post-meta span {
  display: block;
}

.post-meta span {
  color: var(--text-dim);
  font-size: 12px;
}

.post-reactions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 22px 18px;
}

.reaction-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.reaction-btn:hover,
.reaction-btn.active {
  transform: translateY(-1px);
  border-color: rgba(200, 195, 114, 0.45);
  color: var(--text-main);
  background: rgba(200, 195, 114, 0.1);
}

.reaction-btn:disabled {
  cursor: default;
  transform: none;
  color: var(--color-accent-light);
  opacity: 0.85;
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  padding: 42px 20px;
}

.empty-state h3 {
  color: var(--text-main);
}

.empty-state p {
  max-width: 520px;
  margin: 0 auto 20px;
  color: var(--text-muted);
}

.error-state {
  color: #ef4444;
}

@media (max-width: 1100px) {
  .nav-public {
    display: none;
  }

  .module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .launch-hero {
    padding-top: 44px;
  }

  .launch-hero-grid,
  .operating-grid {
    grid-template-columns: 1fr;
  }

  .launch-panel {
    min-height: 390px;
  }

  .network-map {
    height: 270px;
  }

  .module-grid {
    grid-template-columns: 1fr;
  }

  .module-card-wide {
    grid-column: auto;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .navbar .nav-container {
    align-items: flex-start;
    gap: 14px;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* Executive alumni platform direction */
.executive-home {
  background-color: #07100d;
  background-image: none;
}

.executive-nav {
  position: fixed;
  left: 0;
  right: 0;
  background: rgba(5, 12, 10, 0.72);
}

.executive-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 144px 0 54px;
}

.executive-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.executive-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 12, 8, 0.96) 0%, rgba(4, 12, 8, 0.84) 33%, rgba(4, 12, 8, 0.38) 62%, rgba(4, 12, 8, 0.18) 100%),
    linear-gradient(180deg, rgba(4, 12, 8, 0.38) 0%, rgba(4, 12, 8, 0.12) 45%, rgba(4, 12, 8, 0.9) 100%);
}

.executive-hero-content {
  position: relative;
  z-index: 2;
}

.executive-hero-content h1 {
  max-width: 860px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
  margin: 16px 0 22px;
}

.executive-hero-content p {
  max-width: 720px;
  color: rgba(243, 244, 246, 0.82);
  font-size: 19px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 170px));
  gap: 1px;
  max-width: 560px;
  margin-top: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.1);
}

.hero-proof div {
  padding: 18px;
  background: rgba(3, 10, 8, 0.58);
  backdrop-filter: blur(16px);
}

.hero-proof strong {
  display: block;
  color: var(--color-accent-light);
  font-size: 29px;
  line-height: 1;
}

.hero-proof span {
  display: block;
  margin-top: 7px;
  color: rgba(243, 244, 246, 0.66);
  font-size: 12px;
}

.experience-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: -32px;
  position: relative;
  z-index: 3;
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.08);
}

.experience-strip article {
  min-height: 136px;
  padding: 24px;
  background: rgba(12, 20, 18, 0.92);
}

.experience-strip span {
  display: block;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.experience-strip strong {
  display: block;
  margin-top: 12px;
  font-size: 20px;
  line-height: 1.22;
}

.platform-console {
  padding-top: 76px;
}

.executive-module-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, minmax(0, 0.9fr));
  gap: 14px;
}

.executive-module {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(19, 31, 28, 0.92), rgba(9, 17, 15, 0.94));
  box-shadow: var(--shadow-sm);
}

.executive-module.module-primary {
  grid-row: span 2;
  min-height: 574px;
  background:
    linear-gradient(160deg, rgba(30, 77, 43, 0.9), rgba(8, 16, 13, 0.96));
}

.executive-module h3 {
  max-width: 440px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
  margin-top: 14px;
}

.executive-module:not(.module-primary) h3 {
  font-size: 24px;
  line-height: 1.16;
}

.executive-module p {
  color: var(--text-muted);
  margin-top: 4px;
}

.module-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
}

.module-tags span {
  display: inline-flex;
  border: 1px solid rgba(200, 195, 114, 0.22);
  border-radius: 999px;
  color: var(--color-accent-light);
  background: rgba(200, 195, 114, 0.08);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
}

.journey-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: start;
}

.journey-copy h2,
.trust-card h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
}

.journey-copy p,
.trust-card p {
  color: var(--text-muted);
  font-size: 17px;
}

.journey-board {
  display: grid;
  gap: 12px;
}

.journey-step {
  display: grid;
  grid-template-columns: 58px minmax(0, 0.55fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: rgba(13, 24, 21, 0.78);
}

.journey-step span {
  color: var(--color-accent);
  font-weight: 800;
}

.journey-step strong {
  font-size: 20px;
  line-height: 1.15;
}

.journey-step p {
  color: var(--text-muted);
  margin: 0;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: 16px;
}

.trust-card,
.trust-grid article {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: rgba(12, 22, 19, 0.82);
}

.trust-card {
  padding: 30px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.trust-grid article {
  min-height: 160px;
  padding: 22px;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  font-size: 20px;
  line-height: 1.18;
}

.trust-grid span {
  color: var(--text-muted);
  margin-top: 10px;
}

@media (max-width: 980px) {
  .executive-module-grid,
  .journey-section,
  .trust-section {
    grid-template-columns: 1fr;
  }

  .executive-module.module-primary {
    grid-row: auto;
    min-height: 320px;
  }
}

@media (max-width: 760px) {
  .executive-hero {
    min-height: 92svh;
    padding-top: 128px;
    padding-bottom: 28px;
  }

  .executive-hero-content h1 {
    font-size: 36px;
    line-height: 1.04;
  }

  .executive-hero-content p {
    font-size: 16px;
  }

  .executive-hero-shade {
    background:
      linear-gradient(180deg, rgba(4, 12, 8, 0.72) 0%, rgba(4, 12, 8, 0.58) 34%, rgba(4, 12, 8, 0.96) 100%),
      linear-gradient(90deg, rgba(4, 12, 8, 0.96), rgba(4, 12, 8, 0.38));
  }

  .executive-hero-image {
    object-position: 64% center;
  }

  .experience-strip,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 22px;
  }

  .hero-proof div {
    padding: 10px 8px;
  }

  .hero-proof strong {
    font-size: 20px;
  }

  .hero-proof span {
    font-size: 10px;
  }

  .journey-step {
    grid-template-columns: 1fr;
  }
}

/* User-friendly refresh for desktop and mobile */
.executive-home {
  --bg-base: #08110f;
  --bg-surface: rgba(14, 25, 22, 0.84);
  background:
    linear-gradient(180deg, #06100d 0%, #0b1512 48%, #0e1714 100%);
}

.executive-nav {
  background: rgba(6, 16, 13, 0.86);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.executive-nav .nav-container {
  min-height: 48px;
}

.executive-nav .nav-link,
.executive-nav .nav-btn {
  white-space: nowrap;
}

.executive-hero {
  min-height: 760px;
  padding: 128px 0 42px;
}

.executive-hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 12, 8, 0.95) 0%, rgba(4, 12, 8, 0.82) 32%, rgba(4, 12, 8, 0.36) 66%, rgba(4, 12, 8, 0.1) 100%),
    linear-gradient(180deg, rgba(4, 12, 8, 0.14) 0%, rgba(4, 12, 8, 0.56) 100%);
}

.executive-hero-content h1 {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
}

.executive-hero-content p {
  max-width: 620px;
}

.quick-actions {
  width: min(920px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.quick-actions a {
  min-height: 94px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(8, 18, 15, 0.72);
  color: var(--text-main);
  text-decoration: none;
  backdrop-filter: blur(14px);
  transition: var(--transition-smooth);
}

.quick-actions a:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 195, 114, 0.5);
  background: rgba(24, 42, 33, 0.82);
}

.quick-actions span {
  color: var(--color-accent-light);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-actions strong {
  font-size: 16px;
  line-height: 1.2;
}

.experience-strip {
  margin-top: 22px;
  border-radius: 8px;
  overflow: hidden;
}

.experience-strip article {
  min-height: 118px;
}

.platform-console {
  padding-top: 64px;
}

.executive-module-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}

.executive-module,
.executive-module.module-primary {
  min-height: 280px;
  grid-row: auto;
}

.executive-module {
  padding: 22px;
}

.executive-module h3,
.executive-module:not(.module-primary) h3 {
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.12;
}

.module-action {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  color: var(--color-accent-light);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.module-action:hover {
  color: #ffffff;
}

.journey-section,
.trust-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.journey-step {
  grid-template-columns: 48px minmax(160px, 0.45fr) minmax(0, 1fr);
}

@media (max-width: 1180px) {
  .executive-module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .quick-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .executive-nav {
    position: sticky;
  }

  .executive-nav .nav-container {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .executive-nav #nav-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .executive-nav .logo {
    font-size: 18px;
  }

  .executive-hero {
    min-height: auto;
    padding: 30px 0 20px;
  }

  .executive-hero-content h1 {
    font-size: 32px;
    line-height: 1.06;
    margin-top: 12px;
  }

  .executive-hero-content p {
    font-size: 15.5px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-actions .btn-fit {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 16px;
  }

  .hero-proof div {
    padding: 9px 7px;
  }

  .hero-proof strong {
    font-size: 19px;
  }

  .hero-proof span {
    font-size: 9.5px;
  }

  .quick-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 14px;
    gap: 8px;
  }

  .quick-actions a {
    min-height: 60px;
    padding: 10px;
  }

  .quick-actions span {
    font-size: 10px;
  }

  .quick-actions strong {
    font-size: 13px;
  }

  .experience-strip {
    margin-top: 0;
  }

  .experience-strip article {
    min-height: 0;
    padding: 18px;
  }

  .section-block {
    padding: 38px 20px;
  }

  .section-heading h2,
  .journey-copy h2,
  .trust-card h2 {
    font-size: 30px;
  }

  .executive-module-grid {
    grid-template-columns: 1fr;
  }

  .executive-module,
  .executive-module.module-primary {
    min-height: 0;
  }

  .posts-grid {
    grid-template-columns: 1fr;
  }
}
