/* ============================================
   REFOLD-INSPIRED DESIGN SYSTEM FOR GSE
   Based on .design-system/gse-refold-style.html
   ============================================ */

/* ============================================
   DESIGN TOKENS / CSS VARIABLES
   ============================================ */
:root {
  /* Primary Colors */
  --color-black: #191716;
  --color-white: #FFFFFF;
  --color-charcoal: #2F333C;

  /* GSE Brand Accent - Sports Energy Gradient */
  --color-gse-lime: #C4FF00;
  --color-gse-cyan: #00E5FF;
  --color-gse-blue: #3D52D5;
  --color-gse-red: #e0552e;

  /* Neutral Grays */
  --color-base-100: #2F333C;
  --color-base-200: #8F9CBD;
  --color-base-300: #6B7280;
  --color-base-400: #9CA3AF;
  --color-border-light: #EAEAEA;
  --color-border-dark: #3A3E49;
  --color-off-white: #FAFAFA;
  --color-light-gray: #F7F7F9;

  /* Typography */
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;

  /* Spacing Scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* Transitions */
  --transition-fast: 200ms ease;
  --transition-base: 300ms ease;
}

/* ============================================
   BUTTONS
   ============================================ */
.rf-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.rf-btn-primary {
  background: var(--color-black);
  color: var(--color-white);
  border: none;
  padding: 0;
  overflow: hidden;
  position: relative;
  height: 48px;
}

.rf-btn-primary .rf-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--color-gse-lime);
  color: var(--color-black);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.rf-btn-primary .rf-btn-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-gse-cyan);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.rf-btn-primary .rf-btn-icon svg {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.rf-btn-primary .rf-btn-text {
  padding: var(--space-3) var(--space-6);
  transition: color 0.4s ease;
  position: relative;
  z-index: 1;
}

.rf-btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 48px;
  right: 0;
  bottom: 0;
  background: var(--color-gse-lime);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.rf-btn-primary:hover::after {
  transform: translateX(0);
}

.rf-btn-primary:hover .rf-btn-icon::before {
  transform: translateX(0);
}

.rf-btn-primary:hover .rf-btn-icon svg {
  transform: translateX(3px);
}

.rf-btn-primary:hover .rf-btn-text {
  color: var(--color-black);
}

.rf-btn-secondary {
  background: var(--color-white);
  color: var(--color-black);
  border: 1px solid var(--color-border-light);
  padding: var(--space-3) var(--space-6);
  height: 48px;
}

.rf-btn-secondary:hover {
  background: var(--color-off-white);
  border-color: var(--color-base-300);
}

/* Focus States - Accessibility */
.rf-btn:focus-visible {
  outline: 2px solid var(--color-gse-lime);
  outline-offset: 2px;
}

.rf-btn-secondary:focus-visible {
  outline-color: var(--color-gse-blue);
}

/* ============================================
   LOGO
   ============================================ */
.rf-nav-logo {
  font-family: 'DM Serif Display', var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-black);
  display: flex;
  align-items: baseline;
  gap: 6px;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.rf-logo-word {
  position: relative;
  display: inline-block;
  padding: 0 2px;
  z-index: 1;
}

.rf-logo-word::after {
  content: '';
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 2px;
  height: 6px;
  z-index: -1;
  transition: height 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  clip-path: polygon(3px 0%, 100% 2px, calc(100% - 2px) 100%, 0% calc(100% - 1px));
}

/* Color variants */
.rf-logo-word[data-color="lime"]::after {
  background: var(--color-gse-lime);
}

.rf-logo-word[data-color="cyan"]::after {
  background: var(--color-gse-cyan);
}

.rf-logo-word[data-color="blue"]::after {
  background: var(--color-gse-blue);
}

/* Hover animation - staggered delay */
.rf-nav-logo:hover .rf-logo-word::after {
  height: 100%;
  bottom: 0;
}

.rf-nav-logo:hover .rf-logo-word[data-color="lime"]::after {
  transition-delay: 0s;
}

.rf-nav-logo:hover .rf-logo-word[data-color="cyan"]::after {
  transition-delay: 0.05s;
}

.rf-nav-logo:hover .rf-logo-word[data-color="blue"]::after {
  transition-delay: 0.1s;
}

/* Text color transitions on hover */
.rf-logo-word {
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.rf-logo-word[data-color="lime"] {
  transition-delay: 0s;
}

.rf-logo-word[data-color="cyan"] {
  transition-delay: 0.05s;
}

.rf-logo-word[data-color="blue"] {
  transition-delay: 0.1s;
}

.rf-nav-logo:hover .rf-logo-word[data-color="lime"],
.rf-nav-logo:hover .rf-logo-word[data-color="cyan"] {
  color: var(--color-black);
}

.rf-nav-logo:hover .rf-logo-word[data-color="blue"] {
  color: var(--color-white);
}

/* ============================================
   BUTTON VARIANTS
   ============================================ */
.rf-btn-full {
  width: 100%;
  justify-content: center;
}

.rf-btn-lime {
  background: var(--color-gse-lime);
  color: var(--color-black);
  border: none;
  padding: var(--space-3) var(--space-6);
  height: 48px;
  overflow: hidden;
  position: relative;
  font-weight: 600;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.rf-btn-lime:hover {
  background: var(--color-gse-cyan);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(196, 255, 0, 0.3);
}

.rf-btn-lime .rf-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--color-gse-lime);
  color: var(--color-black);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.rf-btn-lime .rf-btn-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-gse-cyan);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.rf-btn-lime .rf-btn-icon svg {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.rf-btn-lime .rf-btn-text {
  padding: 0 var(--space-6);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.4s ease;
  position: relative;
  z-index: 1;
}

.rf-btn-lime::after {
  content: '';
  position: absolute;
  top: 0;
  left: 48px;
  right: 0;
  bottom: 0;
  background: var(--color-gse-lime);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.rf-btn-lime:hover::after {
  transform: translateX(0);
}

.rf-btn-lime:hover .rf-btn-icon::before {
  transform: translateX(0);
}

.rf-btn-lime:hover .rf-btn-icon svg {
  transform: translateX(3px);
}

.rf-btn-lime:hover .rf-btn-text {
  color: var(--color-black);
}

.rf-btn-ghost {
  background: transparent;
  color: var(--color-base-100);
  border: 1px solid var(--color-base-300);
  padding: var(--space-3) var(--space-5);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.rf-btn-ghost:hover {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

/* Outline Light Button (for dark backgrounds) */
.rf-btn-outline-light {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: var(--space-3) var(--space-6);
  height: 48px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rf-btn-outline-light:hover {
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.rf-btn-secondary-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--color-white);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
}

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

.rf-btn-block {
  width: 100%;
  justify-content: center;
  margin-bottom: var(--space-2);
}

.rf-btn-block .rf-btn-icon {
  flex-shrink: 0;
  width: 48px;
  min-width: 48px;
  max-width: 48px;
  height: 48px;
  min-height: 48px;
  max-height: 48px;
}

.rf-btn-block:last-child {
  margin-bottom: 0;
}

/* ============================================
   GSE BENTO GRID - Pricing Page
   ============================================ */
.gse-bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: var(--space-4);
}

.gse-bento-large {
  grid-column: span 8;
  grid-row: span 2;
}

.gse-bento-small {
  grid-column: span 4;
}

.gse-bento-medium {
  grid-column: span 6;
}

.gse-bento-full {
  grid-column: span 12;
}

@media (max-width: 1024px) {
  .gse-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }

  .gse-bento-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gse-bento-small {
    grid-column: span 1;
  }

  .gse-bento-medium {
    grid-column: span 2;
  }

  .gse-bento-full {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .gse-bento-grid {
    grid-template-columns: 1fr;
  }

  .gse-bento-large,
  .gse-bento-small,
  .gse-bento-medium,
  .gse-bento-full {
    grid-column: span 1;
  }
}

/* ========================================
   Coming Soon Page - GSE Design System
   ======================================== */

.coming-soon-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-black);
}

.coming-soon-content {
  text-align: center;
  padding: var(--space-8);
  max-width: 600px;
  width: 100%;
}

/* Coming Soon Logo - White, centered, bigger */
.coming-soon-logo.rf-nav-logo {
  justify-content: center;
  font-size: 3rem;
  margin-bottom: var(--space-10);
  color: var(--color-white);
  position: relative;
  z-index: 10;
}

.coming-soon-logo .rf-logo-word {
  color: var(--color-white);
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Sweep animation — same as main site (::after grows behind text) */
/* Text turns dark on lime/cyan sweep, white on blue sweep */
.coming-soon-logo:hover .rf-logo-word[data-color="lime"],
.coming-soon-logo:hover .rf-logo-word[data-color="cyan"] {
  color: var(--color-black);
}

.coming-soon-logo:hover .rf-logo-word[data-color="blue"] {
  color: var(--color-white);
}

/* Vertical Logo - Stacked Words */
.logo-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  margin-bottom: var(--space-12);
}

.logo-word {
  font-family: var(--font-serif);
  font-size: clamp(48px, 12vw, 80px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
  padding: 0 var(--space-2);
  z-index: 1;
  color: var(--color-white);
  transition: color var(--transition-fast);
}

.logo-word::after {
  content: '';
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 8px;
  height: 12px;
  z-index: -1;
  transition: height var(--transition-base);
  clip-path: polygon(4px 0%, 100% 2px, calc(100% - 3px) 100%, 0% calc(100% - 2px));
}

.logo-word[data-color="lime"]::after {
  background: var(--color-gse-lime);
}

.logo-word[data-color="cyan"]::after {
  background: var(--color-gse-cyan);
}

.logo-word[data-color="blue"]::after {
  background: var(--color-gse-blue);
}

/* Hover animation for vertical logo */
.logo-vertical:hover .logo-word::after {
  height: 90%;
  bottom: 4px;
}

.logo-vertical:hover .logo-word[data-color="lime"]::after {
  transition-delay: 0s;
}

.logo-vertical:hover .logo-word[data-color="cyan"]::after {
  transition-delay: 0.1s;
}

.logo-vertical:hover .logo-word[data-color="blue"]::after {
  transition-delay: 0.2s;
}

/* Text color on hover */
.logo-vertical:hover .logo-word[data-color="lime"],
.logo-vertical:hover .logo-word[data-color="cyan"] {
  color: var(--color-black);
}

/* Newsletter Form */
.newsletter-form {
  max-width: 480px;
  margin: 0 auto var(--space-12);
}

.newsletter-input-group {
  display: flex;
  gap: 0;
  align-items: stretch;
}

/* Dark variant of form input */
.form-input-dark {
  width: 100%;
  height: 48px;
  padding: 0 var(--space-4);
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--color-white);
  background: var(--color-charcoal);
  border: 1px solid var(--color-border-dark);
  border-radius: 0;
  transition: all var(--transition-fast);
}

.form-input-dark:focus {
  outline: none;
  border-color: var(--color-gse-lime);
  box-shadow: 0 0 0 3px rgba(196, 255, 0, 0.2);
}

.form-input-dark::placeholder {
  color: var(--color-base-300);
}

/* Newsletter Success State */
.newsletter-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  background: transparent;
  border: 1px solid var(--color-gse-lime);
  padding: var(--space-4) var(--space-6);
  color: var(--color-gse-lime);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
}

.newsletter-success svg {
  flex-shrink: 0;
}

/* Spinner Animation */
.spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Social Links */
.coming-soon-social {
  margin-top: var(--space-12);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--color-border-dark);
  color: var(--color-base-300);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--color-gse-lime);
  border-color: var(--color-gse-lime);
  color: var(--color-black);
}

/* Mobile Adjustments */
@media (max-width: 640px) {
  .coming-soon-content {
    padding: var(--space-6);
  }

  .logo-word {
    font-size: clamp(40px, 14vw, 64px);
  }

  .logo-word::after {
    height: 10px;
    bottom: 4px;
  }

  .newsletter-input-group {
    flex-direction: column;
  }

  .newsletter-input-group .rf-btn {
    width: 100%;
  }
}

/* ============================================
   STATUS PAGE STYLES
   status.gamesetengage.com
   ============================================ */

.status-page {
  min-height: 100vh;
  background: var(--color-black);
  padding: var(--space-16) var(--space-4);
}

.status-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.status-logo {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.status-logo .logo-word {
  font-family: var(--font-serif);
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 500;
  display: inline-block;
  position: relative;
  line-height: 1.2;
}

.status-logo .logo-word::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 6px;
  z-index: -1;
  transition: height var(--transition-fast);
}

.status-logo .logo-word[data-color="lime"] {
  color: var(--color-gse-lime);
}
.status-logo .logo-word[data-color="lime"]::after {
  background: var(--color-gse-lime);
  opacity: 0.3;
}

.status-logo .logo-word[data-color="cyan"] {
  color: var(--color-gse-cyan);
}
.status-logo .logo-word[data-color="cyan"]::after {
  background: var(--color-gse-cyan);
  opacity: 0.3;
}

.status-logo .logo-word[data-color="blue"] {
  color: var(--color-gse-blue);
}
.status-logo .logo-word[data-color="blue"]::after {
  background: var(--color-gse-blue);
  opacity: 0.3;
}

/* Status Banner */
.status-banner {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  margin-bottom: var(--space-8);
  border: 1px solid;
}

.status-banner-operational {
  background: rgba(196, 255, 0, 0.1);
  border-color: var(--color-gse-lime);
}

.status-banner-operational .status-banner-icon {
  color: var(--color-gse-lime);
}

.status-banner-degraded {
  background: rgba(255, 193, 7, 0.1);
  border-color: #FFC107;
}

.status-banner-degraded .status-banner-icon {
  color: #FFC107;
}

.status-banner-partial_outage {
  background: rgba(255, 152, 0, 0.1);
  border-color: #FF9800;
}

.status-banner-partial_outage .status-banner-icon {
  color: #FF9800;
}

.status-banner-major_outage {
  background: rgba(244, 67, 54, 0.1);
  border-color: #F44336;
}

.status-banner-major_outage .status-banner-icon {
  color: #F44336;
}

.status-banner-icon {
  flex-shrink: 0;
}

.status-banner-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.status-banner-text strong {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
}

.status-banner-text span {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--color-base-300);
}

/* Services List */
.status-services {
  margin-bottom: var(--space-12);
}

.status-services-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.status-service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-5);
  background: var(--color-charcoal);
  border: 1px solid var(--color-border-dark);
}

.status-service-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.status-service-name {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white);
}

.status-service-description {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--color-base-300);
}

.status-service-indicator {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.status-text {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Status colors */
.status-operational .status-dot {
  background: var(--color-gse-lime);
  box-shadow: 0 0 8px var(--color-gse-lime);
}

.status-operational .status-text {
  color: var(--color-gse-lime);
}

.status-degraded .status-dot {
  background: #FFC107;
  box-shadow: 0 0 8px #FFC107;
}

.status-degraded .status-text {
  color: #FFC107;
}

.status-partial_outage .status-dot {
  background: #FF9800;
  box-shadow: 0 0 8px #FF9800;
}

.status-partial_outage .status-text {
  color: #FF9800;
}

.status-major_outage .status-dot {
  background: #F44336;
  box-shadow: 0 0 8px #F44336;
}

.status-major_outage .status-text {
  color: #F44336;
}

/* Incidents Section */
.status-incidents {
  margin-bottom: var(--space-12);
}

.status-no-incidents {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-5);
  background: rgba(196, 255, 0, 0.05);
  border: 1px solid var(--color-border-dark);
  color: var(--color-gse-lime);
  font-family: var(--font-sans);
  font-size: 14px;
}

.status-incident {
  padding: var(--space-5);
  background: var(--color-charcoal);
  border: 1px solid var(--color-border-dark);
  margin-bottom: var(--space-3);
}

.status-incident-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-2);
}

.status-incident-title {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white);
}

.status-incident-date {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-base-300);
}

.status-incident-description {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--color-base-300);
  line-height: 1.5;
  margin: 0;
}

/* Footer */
.status-footer {
  text-align: center;
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-border-dark);
}

/* Mobile Adjustments for Status Page */
@media (max-width: 640px) {
  .status-page {
    padding: var(--space-8) var(--space-4);
  }

  .status-logo {
    gap: var(--space-2);
  }

  .status-logo .logo-word {
    font-size: clamp(18px, 6vw, 24px);
  }

  .status-banner {
    flex-direction: column;
    text-align: center;
    padding: var(--space-4);
  }

  .status-service {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }

  .status-incident-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-1);
  }
}

/* ============================================
   FEATURE PAGES - Unprefixed Classes
   Following design-system light theme
   ============================================ */

.feature-page {
  background: var(--color-white);
  color: var(--color-base-100);
}

/* Feature Hero Section */
.feature-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-20) var(--space-6);
  background: var(--color-off-white);
}

/* Venues Hero with Background Image */
.feature-hero-venues {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.feature-hero-venues .feature-hero-label {
  color: var(--color-gse-lime);
}

.feature-hero-venues .feature-hero-title {
  color: var(--color-white);
}

.feature-hero-venues .feature-hero-description {
  color: var(--color-base-400);
}

.feature-hero-venues .feature-hero-note {
  color: var(--color-base-400);
}

.feature-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.feature-hero-label {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gse-blue);
  margin-bottom: var(--space-4);
}

.feature-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-6);
  color: var(--color-black);
}

.feature-hero-title span {
  background: linear-gradient(135deg, var(--color-gse-lime) 0%, var(--color-gse-cyan) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-hero-description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-base-200);
  max-width: 700px;
  margin: 0 auto var(--space-8);
}

.feature-hero-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-4);
}

.feature-hero-note {
  font-size: 14px;
  color: var(--color-base-300);
}

/* Stats Banner */
.stats-banner {
  background: linear-gradient(135deg, var(--color-gse-lime) 0%, var(--color-gse-cyan) 100%);
  padding: var(--space-8) var(--space-6);
}

.stats-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  text-align: center;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 500;
  color: var(--color-black);
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-black);
  opacity: 0.7;
}

/* Feature Sections */
.feature-section {
  padding: var(--space-20) var(--space-6);
  background: var(--color-white);
}

.feature-section-dark {
  background: var(--color-off-white);
}

.feature-section-light {
  background: var(--color-light-gray);
}

.feature-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.feature-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-12);
}

.feature-section-label {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gse-blue);
  margin-bottom: var(--space-3);
}

.feature-section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  margin-bottom: var(--space-4);
  color: var(--color-black);
}

.feature-section-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-base-200);
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-4);
}

@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 640px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
}

.bento-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  padding: var(--space-6);
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.bento-card-large {
  grid-column: span 8;
  grid-row: span 2;
}

.bento-card-medium {
  grid-column: span 4;
}

.bento-card-wide {
  grid-column: span 8;
  flex-direction: row;
  align-items: center;
}

@media (max-width: 1024px) {
  .bento-card,
  .bento-card-large,
  .bento-card-medium,
  .bento-card-wide {
    grid-column: span 6;
  }

  .bento-card-wide {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .bento-card,
  .bento-card-large,
  .bento-card-medium,
  .bento-card-wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.bento-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--color-gse-lime) 0%, var(--color-gse-cyan) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-black);
}

.bento-card-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-black);
}

.bento-card-description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-base-200);
}

.bento-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: auto;
}

.bento-tag {
  font-size: 12px;
  font-weight: 500;
  padding: var(--space-1) var(--space-2);
  background: var(--color-off-white);
  border: 1px solid var(--color-border-light);
  border-radius: 4px;
  color: var(--color-base-200);
}

.bento-card-metric {
  margin-top: auto;
  display: flex;
  flex-direction: column;
}

.bento-metric-value {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--color-gse-blue);
}

.bento-metric-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-base-300);
}

.bento-wide-stat {
  margin-left: auto;
  text-align: right;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.step-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  padding: var(--space-6);
  position: relative;
}

.step-number {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-gse-lime) 0%, var(--color-gse-cyan) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.5;
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
}

.step-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: var(--space-3);
}

.step-description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-base-200);
}

/* Feature Split Layout */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (max-width: 768px) {
  .feature-split {
    grid-template-columns: 1fr;
  }
}

.feature-split-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.feature-split-label {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gse-blue);
}

.feature-split-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 400;
  color: var(--color-black);
}

.feature-split-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-base-200);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 15px;
  color: var(--color-base-100);
}

.feature-list li svg {
  width: 20px;
  height: 20px;
  color: var(--color-gse-blue);
  flex-shrink: 0;
}

.feature-split-visual {
  background: var(--color-off-white);
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  padding: var(--space-8);
}

/* AI Chat Device */
.ai-chat-device {
  background: var(--color-black);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  max-width: 380px;
  margin: 0 auto;
}

.ai-chat-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: var(--color-charcoal);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-chat-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-gse-lime), var(--color-gse-cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-chat-avatar svg {
  width: 22px;
  height: 22px;
  color: var(--color-black);
}

.ai-chat-title {
  display: flex;
  flex-direction: column;
}

.ai-chat-name {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-white);
}

.ai-chat-status {
  font-size: 12px;
  color: var(--color-gse-lime);
}

.ai-chat-body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  min-height: 280px;
}

.ai-chat-bubble {
  max-width: 85%;
  padding: var(--space-3) var(--space-4);
  border-radius: 16px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: chatBubbleFadeIn 0.5s ease forwards;
}

.ai-chat-bubble:nth-child(1) { animation-delay: 0.2s; }
.ai-chat-bubble:nth-child(2) { animation-delay: 0.8s; }
.ai-chat-bubble:nth-child(3) { animation-delay: 1.4s; }
.ai-chat-bubble:nth-child(4) { animation-delay: 2.0s; }

@keyframes chatBubbleFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ai-chat-bubble .ai-chat-time {
  display: block;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: var(--space-2);
  text-align: right;
}

.ai-chat-user {
  background: var(--color-gse-blue);
  color: var(--color-white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.ai-chat-user p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.ai-chat-naim {
  background: var(--color-charcoal);
  color: var(--color-white);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.ai-chat-naim-header {
  margin-bottom: var(--space-3);
}

.ai-chat-typing {
  font-size: 12px;
  color: var(--color-gse-lime);
  font-family: var(--font-mono);
}

.ai-campaign-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.ai-campaign-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3);
  background: rgba(196, 255, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-gse-lime);
}

.ai-campaign-card-header svg {
  color: var(--color-gse-lime);
}

.ai-campaign-card-body {
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.ai-campaign-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

.ai-campaign-label {
  color: rgba(255, 255, 255, 0.5);
}

.ai-campaign-value {
  color: var(--color-white);
  font-weight: 500;
}

.ai-campaign-card-footer {
  padding: var(--space-2) var(--space-3);
  background: rgba(196, 255, 0, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-campaign-ready {
  font-size: 11px;
  color: var(--color-gse-lime);
  font-weight: 500;
}

/* Pricing Teaser */
.pricing-teaser {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-12);
  align-items: center;
}

@media (max-width: 1024px) {
  .pricing-teaser {
    grid-template-columns: 1fr;
  }
}

.pricing-teaser-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.pricing-teaser-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pricing-card-header {
  background: linear-gradient(135deg, var(--color-gse-lime) 0%, var(--color-gse-cyan) 100%);
  padding: var(--space-6);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.pricing-card-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-black);
}

.pricing-card-price {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 500;
  color: var(--color-black);
}

.pricing-card-term {
  font-size: 14px;
  color: var(--color-black);
  opacity: 0.7;
}

.pricing-card-body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.pricing-card-body p {
  font-size: 14px;
  color: var(--color-base-200);
  text-align: center;
}

/* CTA Section */
.cta-section {
  padding: var(--space-20) var(--space-6);
  background: linear-gradient(135deg, var(--color-gse-blue) 0%, #1a2a6c 100%);
  text-align: center;
}

.cta-section-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: var(--color-white);
}

.cta-description {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.cta-buttons {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
}

.cta-benefits {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
}

.cta-benefit {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 14px;
  color: var(--color-white);
}

.cta-benefit::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-gse-lime);
  border-radius: 50%;
}

.cta-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   VENUE ADVANTAGES GRID
   ============================================ */
.venue-advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}

@media (max-width: 1024px) {
  .venue-advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .venue-advantages-grid {
    grid-template-columns: 1fr;
  }
}

.venue-advantage-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: 16px;
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.venue-advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.venue-advantage-card.accent-lime {
  border-top: 4px solid var(--color-gse-lime);
}

.venue-advantage-card.accent-dark {
  background: var(--color-black);
  border-color: var(--color-border-dark);
  border-top: 4px solid var(--color-base-300);
}

.venue-advantage-card.accent-dark .venue-advantage-title,
.venue-advantage-card.accent-dark .venue-advantage-description {
  color: var(--color-white);
}

.venue-advantage-card.accent-dark .venue-advantage-list li {
  color: var(--color-base-400);
}

.venue-advantage-card.accent-cyan {
  border-top: 4px solid var(--color-gse-cyan);
}

.venue-advantage-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-off-white);
  border-radius: 12px;
}

.venue-advantage-card.accent-dark .venue-advantage-icon {
  background: var(--color-charcoal);
}

.venue-advantage-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-base-100);
}

.venue-advantage-card.accent-lime .venue-advantage-icon svg {
  stroke: var(--color-gse-lime);
}

.venue-advantage-card.accent-cyan .venue-advantage-icon svg {
  stroke: var(--color-gse-cyan);
}

.venue-advantage-card.accent-dark .venue-advantage-icon svg {
  stroke: var(--color-gse-lime);
}

.venue-advantage-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-black);
}

.venue-advantage-description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-base-300);
}

.venue-advantage-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.venue-advantage-list li {
  font-size: 14px;
  color: var(--color-base-300);
  padding-left: var(--space-5);
  position: relative;
}

.venue-advantage-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--color-gse-lime);
  border-radius: 50%;
}

/* ============================================
   REVENUE CALCULATOR
   ============================================ */
.revenue-calculator {
  background: var(--color-charcoal);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-border-dark);
}

.revenue-calculator-header {
  background: var(--color-black);
  padding: var(--space-4) var(--space-6);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gse-lime);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.revenue-calculator-body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.revenue-row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border-dark);
  font-size: 14px;
}

.revenue-row span:first-child {
  color: var(--color-base-400);
}

.revenue-row span:last-child {
  color: var(--color-white);
  font-weight: 500;
}

.revenue-total {
  display: flex;
  justify-content: space-between;
  padding: var(--space-4) 0;
  margin-top: var(--space-2);
  border-top: 2px solid var(--color-gse-lime);
}

.revenue-total span:first-child {
  color: var(--color-white);
  font-weight: 500;
}

.revenue-amount {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-gse-lime);
}

.revenue-note {
  font-size: 12px;
  color: var(--color-base-400);
  text-align: center;
  padding: var(--space-4) var(--space-6);
  border-top: 1px solid var(--color-border-dark);
}

/* ============================================
   STATS GRID LIGHT VARIANT
   ============================================ */
.stats-grid-light {
  background: var(--color-off-white);
  border-radius: 16px;
  padding: var(--space-8);
  margin-bottom: var(--space-12);
}

.stats-grid-light .stat-item {
  text-align: center;
}

.stats-grid-light .stat-number {
  color: var(--color-black);
}

.stats-grid-light .stat-label {
  color: var(--color-base-300);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: var(--color-off-white);
  border-radius: 16px;
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-base-100);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-gse-lime);
  color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-weight: 600;
  color: var(--color-black);
}

.testimonial-role {
  font-size: 14px;
  color: var(--color-base-300);
}

/* ============================================
   VENUE TYPES LIST
   ============================================ */
.venue-types-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.venue-type-item {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--color-white);
  border-radius: 12px;
  border: 1px solid var(--color-border-light);
}

.venue-type-indicator {
  width: 4px;
  border-radius: 2px;
  flex-shrink: 0;
}

.venue-type-indicator.red {
  background: var(--color-gse-red);
}

.venue-type-indicator.blue {
  background: var(--color-gse-blue);
}

.venue-type-indicator.lime {
  background: var(--color-gse-lime);
}

.venue-type-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: var(--space-1);
}

.venue-type-content p {
  font-size: 14px;
  color: var(--color-base-300);
  line-height: 1.5;
}

/* ============================================
   COMING SOON CARD (Feature Card)
   ============================================ */
.coming-soon-card {
  background: var(--color-black);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-border-dark);
}

.coming-soon-card .coming-soon-header {
  background: linear-gradient(135deg, var(--color-gse-lime) 0%, var(--color-gse-cyan) 100%);
  padding: var(--space-4) var(--space-6);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-black);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.coming-soon-card .coming-soon-body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.coming-soon-card .coming-soon-item {
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border-dark);
}

.coming-soon-card .coming-soon-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.coming-soon-card .coming-soon-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gse-lime);
  margin-bottom: var(--space-1);
}

.coming-soon-card .coming-soon-item p {
  font-size: 14px;
  color: var(--color-base-400);
  line-height: 1.5;
}

.coming-soon-card .coming-soon-footer {
  background: var(--color-charcoal);
  padding: var(--space-4) var(--space-6);
  border-top: 1px solid var(--color-border-dark);
}

.coming-soon-card .coming-soon-footer p {
  font-size: 13px;
  color: var(--color-base-400);
  text-align: center;
}

/* ============================================
   FANS HERO WITH BACKGROUND
   ============================================ */
.feature-hero-fans {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.feature-hero-fans .feature-hero-label {
  color: var(--color-gse-lime);
}

.feature-hero-fans .feature-hero-title {
  color: var(--color-white);
}

.feature-hero-fans .feature-hero-description {
  color: var(--color-base-400);
}

/* ============================================
   FAN BENEFITS GRID
   ============================================ */
.fan-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}

@media (max-width: 1024px) {
  .fan-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .fan-benefits-grid {
    grid-template-columns: 1fr;
  }
}

.fan-benefit-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: 16px;
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fan-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.fan-benefit-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-gse-lime) 0%, var(--color-gse-cyan) 100%);
  border-radius: 14px;
}

.fan-benefit-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-black);
}

.fan-benefit-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-black);
}

.fan-benefit-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-base-300);
}

/* ============================================
   FEATURE CARDS GRID
   ============================================ */
.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}

@media (max-width: 1024px) {
  .feature-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .feature-cards-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: 16px;
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-off-white);
  border-radius: 12px;
}

.feature-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-gse-blue);
}

.feature-card-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-black);
}

.feature-card-description {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-base-300);
}

/* ============================================
   POINTS DISPLAY (Fans Page)
   ============================================ */
.points-display {
  background: var(--color-charcoal);
  border-radius: 16px;
  padding: var(--space-8);
  border: 1px solid var(--color-border-dark);
  text-align: center;
}

.points-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-base-400);
  margin-bottom: var(--space-2);
}

.points-value {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-gse-lime);
  margin-bottom: var(--space-6);
}

.points-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  border-top: 1px solid var(--color-border-dark);
  padding-top: var(--space-6);
}

.points-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) var(--space-4);
  background: var(--color-black);
  border-radius: 8px;
}

.points-action-name {
  font-size: 14px;
  color: var(--color-white);
}

.points-action-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gse-lime);
}

/* ============================================
   CLUBS HERO WITH BACKGROUND
   ============================================ */
.feature-hero-clubs {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.feature-hero-clubs .feature-hero-label {
  color: var(--color-gse-lime);
}

.feature-hero-clubs .feature-hero-title {
  color: var(--color-white);
}

.feature-hero-clubs .feature-hero-description {
  color: var(--color-base-400);
}

.feature-hero-clubs .feature-hero-note {
  color: var(--color-base-400);
}

/* ============================================
   BENTO CARDS WITH BACKGROUND IMAGES
   ============================================ */
.bento-with-bg {
  border: none;
}

.bento-with-bg::before {
  display: none;
}

/* ============================================
   NAIM AI PAGE
   ============================================ */

/* Hero for Naim */
.feature-hero-naim {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.feature-hero-naim .feature-hero-label {
  color: var(--color-gse-lime);
}

.feature-hero-naim .feature-hero-title {
  color: var(--color-white);
}

.feature-hero-naim .feature-hero-description {
  color: var(--color-base-400);
}

/* Gradient Section */
.feature-section-gradient {
  background: linear-gradient(135deg, var(--color-gse-lime) 0%, var(--color-gse-cyan) 100%);
  padding: var(--space-20) var(--space-6);
}

/* Naim Traits Grid */
.naim-traits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .naim-traits-grid {
    grid-template-columns: 1fr;
  }
}

.naim-trait-card {
  text-align: center;
  padding: var(--space-8);
  border: 1px solid var(--color-border-light);
  transition: border-color var(--transition-fast);
}

.naim-trait-card:hover {
  border-color: var(--color-gse-lime);
}

.naim-trait-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.naim-trait-icon svg {
  width: 24px;
  height: 24px;
}

.naim-trait-icon.accent-lime {
  background: var(--color-gse-lime);
  color: var(--color-black);
}

.naim-trait-icon.accent-cyan {
  background: var(--color-gse-cyan);
  color: var(--color-black);
}

.naim-trait-icon.accent-blue {
  background: var(--color-gse-blue);
  color: var(--color-white);
}

.naim-trait-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: var(--space-2);
}

.naim-trait-card p {
  font-size: 14px;
  color: var(--color-base-200);
  line-height: 1.6;
}

/* Naim Traits Grid V2 - With Gradient Backgrounds and Large Icons */
.naim-traits-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .naim-traits-grid-v2 {
    grid-template-columns: 1fr;
  }
}

.naim-trait-card-v2 {
  position: relative;
  padding: var(--space-10) var(--space-8);
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
}

.naim-trait-card-v2.trait-lime {
  background: linear-gradient(135deg, rgba(196, 255, 0, 0.15) 0%, rgba(196, 255, 0, 0.05) 100%);
  border: 1px solid rgba(196, 255, 0, 0.3);
}

.naim-trait-card-v2.trait-cyan {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.15) 0%, rgba(0, 229, 255, 0.05) 100%);
  border: 1px solid rgba(0, 229, 255, 0.3);
}

.naim-trait-card-v2.trait-blue {
  background: linear-gradient(135deg, rgba(61, 82, 213, 0.15) 0%, rgba(61, 82, 213, 0.05) 100%);
  border: 1px solid rgba(61, 82, 213, 0.3);
}

.naim-trait-bg-icon {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 180px;
  height: 180px;
  opacity: 0.1;
  pointer-events: none;
}

.naim-trait-card-v2.trait-lime .naim-trait-bg-icon {
  color: var(--color-gse-lime);
}

.naim-trait-card-v2.trait-cyan .naim-trait-bg-icon {
  color: var(--color-gse-cyan);
}

.naim-trait-card-v2.trait-blue .naim-trait-bg-icon {
  color: var(--color-gse-blue);
}

.naim-trait-bg-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 0.5;
}

.naim-trait-content {
  position: relative;
  z-index: 1;
}

.naim-trait-card-v2 h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: var(--space-2);
}

.naim-trait-card-v2 p {
  font-size: 15px;
  color: var(--color-base-200);
  line-height: 1.6;
  margin: 0;
}

/* Naim Capabilities Grid */
.naim-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .naim-capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .naim-capabilities-grid {
    grid-template-columns: 1fr;
  }
}

.naim-capability-card {
  background: var(--color-black);
  padding: var(--space-8);
  transition: transform var(--transition-fast);
}

.naim-capability-card:hover {
  transform: scale(1.02);
}

.naim-capability-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.naim-capability-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.naim-capability-icon svg {
  width: 20px;
  height: 20px;
}

.naim-capability-icon.lime {
  background: var(--color-gse-lime);
  color: var(--color-black);
}

.naim-capability-icon.cyan {
  background: var(--color-gse-cyan);
  color: var(--color-black);
}

.naim-capability-icon.blue {
  background: var(--color-gse-blue);
  color: var(--color-white);
}

.naim-capability-number {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gse-lime);
}

.naim-capability-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: var(--space-3);
}

.naim-capability-card > p {
  font-size: 14px;
  color: var(--color-base-300);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.naim-capability-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.naim-capability-list li {
  font-size: 13px;
  color: var(--color-base-300);
  padding-left: 20px;
  position: relative;
  margin-bottom: var(--space-2);
}

.naim-capability-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background: var(--color-gse-lime);
  border-radius: 50%;
}

/* Steps Dark Variant */
.steps-grid-dark {
  max-width: 1000px;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
  .steps-grid-dark {
    grid-template-columns: 1fr;
  }
}

.step-card-dark {
  background: var(--color-charcoal);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.step-card-dark .step-number {
  color: var(--color-gse-lime);
  background: var(--color-black);
}

.step-card-dark .step-title {
  color: var(--color-white);
}

.step-card-dark .step-description {
  color: var(--color-base-400);
}

/* Naim Conversation */
.naim-conversation {
  display: flex;
  justify-content: center;
}

/* Chat insights inside Naim response */
.ai-chat-insights {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  background: rgba(196, 255, 0, 0.1);
  border-radius: 8px;
  padding: var(--space-3);
  margin: var(--space-3) 0;
}

.ai-chat-insight {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
}

.ai-chat-insight-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-gse-lime);
}

.ai-chat-insight-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

/* Naim Roles Grid */
.naim-roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .naim-roles-grid {
    grid-template-columns: 1fr;
  }
}

.naim-role-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  padding: var(--space-8);
  transition: all var(--transition-fast);
}

.naim-role-card:hover {
  border-color: var(--color-gse-lime);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.naim-role-icon {
  width: 56px;
  height: 56px;
  background: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
}

.naim-role-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-gse-lime);
}

.naim-role-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: var(--space-3);
}

.naim-role-card > p {
  font-size: 14px;
  color: var(--color-base-200);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.naim-role-examples {
  list-style: none;
  padding: 0;
  margin: 0;
}

.naim-role-examples li {
  font-size: 13px;
  color: var(--color-base-300);
  font-style: italic;
  margin-bottom: var(--space-2);
}

/* Naim Roles Columns - Clean 3-Column Layout */
.naim-roles-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-12);
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .naim-roles-columns {
    gap: var(--space-8);
  }
}

@media (max-width: 768px) {
  .naim-roles-columns {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
}

.naim-role-column {
  text-align: center;
}

.naim-role-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.naim-role-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.naim-role-icon-circle.lime {
  background: linear-gradient(135deg, var(--color-gse-lime) 0%, rgba(196, 255, 0, 0.7) 100%);
  box-shadow: 0 8px 32px rgba(196, 255, 0, 0.3);
}

.naim-role-icon-circle.cyan {
  background: linear-gradient(135deg, var(--color-gse-cyan) 0%, rgba(0, 229, 255, 0.7) 100%);
  box-shadow: 0 8px 32px rgba(0, 229, 255, 0.3);
}

.naim-role-icon-circle.blue {
  background: linear-gradient(135deg, var(--color-gse-blue) 0%, rgba(61, 82, 213, 0.7) 100%);
  box-shadow: 0 8px 32px rgba(61, 82, 213, 0.3);
}

.naim-role-icon-circle svg {
  width: 32px;
  height: 32px;
  color: var(--color-black);
}

.naim-role-icon-circle.blue svg {
  color: var(--color-white);
}

.naim-role-header h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--color-black);
  margin: 0;
}

.naim-role-description {
  font-size: 15px;
  color: var(--color-base-200);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.naim-role-prompts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.naim-prompt {
  position: relative;
  display: inline-block;
  font-size: 13px;
  line-height: 1.4;
  color: #fff;
  background: #191716;
  border: none;
  padding: 10px 14px;
  border-radius: 18px 18px 4px 18px;
  max-width: 92%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.naim-prompt:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: #2F333C;
}

.naim-prompt-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-base-300);
  margin-bottom: 2px;
  align-self: flex-end;
}

/* Naim FAQ */
.naim-faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.naim-faq-item {
  border: 1px solid var(--color-border-light);
  transition: border-color var(--transition-fast);
}

.naim-faq-item:hover {
  border-color: var(--color-base-300);
}

.naim-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.naim-faq-trigger span {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-black);
}

.naim-faq-trigger svg {
  width: 20px;
  height: 20px;
  color: var(--color-base-300);
  transition: transform var(--transition-fast);
}

.naim-faq-trigger.active svg {
  transform: rotate(180deg);
}

.naim-faq-content {
  padding: 0 var(--space-5) var(--space-5);
}

.naim-faq-content p {
  font-size: 14px;
  color: var(--color-base-200);
  line-height: 1.7;
}

/* ============================================
   LEGAL PAGES (Privacy, Terms, GDPR, Cookies)
   ============================================ */

.legal-page {
  background: var(--color-white);
}

/* Legal Hero */
.legal-hero {
  background: var(--color-black);
  padding: var(--space-20) var(--space-6);
  text-align: center;
}

.legal-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.legal-hero-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gse-lime);
  margin-bottom: var(--space-4);
}

.legal-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-6);
}

.legal-hero-title span {
  color: var(--color-gse-lime);
}

.legal-hero-description {
  font-size: 18px;
  color: var(--color-base-300);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.legal-hero-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-base-300);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Legal Navigation - Horizontal Strip */
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  padding: 0;
  margin: 0 0 48px;
  border-bottom: 1px solid #EAEAEA;
}

.legal-nav-link {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #9CA3AF;
  text-decoration: none;
  padding: 12px 16px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.15s ease;
}

.legal-nav-link:hover {
  color: #2F333C;
}

.legal-nav-link.active {
  color: #191716;
  border-bottom-color: #C4FF00;
  font-weight: 600;
}

/* Legal Content */
.legal-content {
  padding: 64px 24px;
}

.legal-content-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* Legal Main Content */
.legal-main {
  min-width: 0;
}

.legal-article h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--color-black);
  margin-top: var(--space-12);
  margin-bottom: var(--space-4);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-border-light);
}

.legal-article h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-article h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-black);
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
}

.legal-article p {
  font-size: 15px;
  color: var(--color-base-100);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

.legal-article ul {
  margin-bottom: var(--space-4);
  padding-left: var(--space-6);
  list-style-type: disc;
}

.legal-article ol {
  margin-bottom: var(--space-4);
  padding-left: var(--space-6);
  list-style-type: decimal;
}

.legal-article li {
  font-size: 15px;
  color: var(--color-base-100);
  line-height: 1.8;
  margin-bottom: var(--space-2);
}

.legal-article a {
  color: var(--color-gse-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-article a:hover {
  color: var(--color-black);
}

.legal-article strong {
  color: var(--color-black);
  font-weight: 600;
}

.legal-article blockquote {
  border-left: 3px solid var(--color-gse-lime);
  padding-left: var(--space-5);
  margin: var(--space-6) 0;
  font-style: italic;
  color: var(--color-base-300);
}

.legal-article table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-6) 0;
}

.legal-article th,
.legal-article td {
  padding: var(--space-3) var(--space-4);
  text-align: left;
  border: 1px solid var(--color-border-light);
  font-size: 14px;
}

.legal-article th {
  background: var(--color-off-white);
  font-weight: 600;
  color: var(--color-black);
}

.legal-article td {
  color: var(--color-base-100);
}

/* (Legacy sidebar styles removed - now using horizontal nav)
  stroke-width: 2;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-page {
  background: var(--color-white);
}

.feature-hero-about {
  background: linear-gradient(135deg, var(--color-black) 0%, var(--color-charcoal) 100%);
}

.feature-hero-about .feature-hero-label {
  color: var(--color-gse-lime);
}

.feature-hero-about .feature-hero-title {
  color: var(--color-white);
}

.feature-hero-about .feature-hero-title span {
  color: var(--color-gse-lime);
}

.feature-hero-about .feature-hero-description {
  color: var(--color-base-400);
}

/* About Values Grid */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .about-values-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

.about-value-card {
  text-align: center;
  padding: var(--space-8);
  background: var(--color-off-white);
  border: 1px solid var(--color-border-light);
}

.about-value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  color: var(--color-black);
}

.about-value-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: var(--space-3);
}

.about-value-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-base-200);
}

/* About Story Content */
.about-story-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about-story-content p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-base-200);
  margin-bottom: var(--space-6);
}

.about-story-content p:last-child {
  margin-bottom: 0;
}

/* ============================================
   FEATURE CTA SECTION
   ============================================ */

.feature-cta {
  padding: var(--space-20) var(--space-6);
  background: linear-gradient(135deg, var(--color-gse-blue) 0%, #0044cc 100%);
  text-align: center;
}

.feature-cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.feature-cta-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gse-lime);
  margin-bottom: var(--space-4);
}

.feature-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.feature-cta-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-8);
}

.feature-cta-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   BLOG STYLES
   ============================================ */

/* Blog Index Hero */
.blog-index-hero {
  background-color: var(--color-black);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: var(--space-20) 0 var(--space-16);
  min-height: 400px;
  display: flex;
  align-items: flex-end;
}

@media (min-width: 768px) {
  .blog-index-hero {
    min-height: 450px;
  }
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Blog Card */
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.blog-card:hover {
  border-color: var(--color-gse-lime);
}

.blog-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--color-base-300);
  line-height: 1.6;
  margin-bottom: var(--space-4);
  flex: 1;
}

.blog-card-meta {
  display: flex;
  gap: var(--space-4);
  font-size: 12px;
  color: var(--color-base-400);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Blog Category Badge */
.blog-category {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gse-cyan);
  margin-bottom: var(--space-3);
}

/* Featured Post Card */
.blog-featured-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  text-decoration: none;
  transition: all var(--transition-fast);
}

@media (min-width: 768px) {
  .blog-featured-card {
    grid-template-columns: 1fr 1fr;
  }
}

.blog-featured-card:hover {
  border-color: var(--color-gse-lime);
}

.blog-featured-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

@media (min-width: 768px) {
  .blog-featured-image {
    aspect-ratio: auto;
    height: 100%;
  }
}

.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured-content {
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  background: var(--color-gse-lime);
  color: var(--color-black);
  padding: var(--space-1) var(--space-3);
  margin-bottom: var(--space-4);
  width: fit-content;
}

.blog-featured-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: var(--space-3);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .blog-featured-title {
    font-size: 32px;
  }
}

.blog-featured-subtitle {
  font-size: 18px;
  color: var(--color-base-200);
  margin-bottom: var(--space-4);
}

.blog-featured-excerpt {
  font-size: 16px;
  color: var(--color-base-300);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.blog-featured-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: 13px;
  color: var(--color-base-400);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Blog Post Page */
.blog-post-hero {
  background-color: var(--color-black);
  padding: var(--space-16) 0 var(--space-12);
  min-height: 300px;
  display: flex;
  align-items: flex-end;
}

.blog-post-hero-with-cover {
  min-height: 450px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .blog-post-hero-with-cover {
    min-height: 500px;
  }
}

.blog-post-hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-6);
}

.blog-post-badges {
  display: flex;
  gap: var(--space-3);
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-6);
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border-dark);
}

.blog-post-author {
  display: flex;
  flex-direction: column;
}

.blog-author-name {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white);
}

.blog-author-title {
  font-size: 13px;
  color: var(--color-base-400);
}

.blog-post-info {
  display: flex;
  gap: var(--space-4);
  font-size: 13px;
  color: var(--color-base-400);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Blog Cover Image - Now used as hero background */

/* Blog Post Layout */
.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}

@media (min-width: 1024px) {
  .blog-post-layout {
    grid-template-columns: 1fr 320px;
  }
}

/* Blog Post Content (Prose) */
.blog-post-content.prose {
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-base-100);
}

.blog-post-content.prose h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--color-black);
  margin-top: var(--space-12);
  margin-bottom: var(--space-6);
}

.blog-post-content.prose h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-black);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
}

.blog-post-content.prose p {
  margin-bottom: var(--space-6);
}

.blog-post-content.prose ul,
.blog-post-content.prose ol {
  margin-bottom: var(--space-6);
  padding-left: var(--space-6);
}

.blog-post-content.prose li {
  margin-bottom: var(--space-2);
}

.blog-post-content.prose blockquote {
  border-left: 3px solid var(--color-gse-lime);
  background: var(--color-off-white);
  padding: var(--space-4) var(--space-6);
  margin: var(--space-8) 0;
  font-style: italic;
  color: var(--color-base-400);
  line-height: 1.4;
}

.blog-post-content.prose img {
  display: block;
  max-width: 100%;
  max-height: 600px; /* cap height so long full-page shots don't dominate; click to zoom for full */
  width: auto;
  height: auto;      /* natural aspect ratio — never distorted or letterboxed */
  margin: var(--space-8) auto;
  border: 1px solid var(--color-border-light);
  border-radius: 8px;
  cursor: zoom-in;
}

/* Click-to-zoom lightbox for guide screenshots */
.guide-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 12, 16, 0.93);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: var(--space-8);
  overflow: auto;
  cursor: zoom-out;
  animation: guide-lightbox-in 0.15s ease;
}

@keyframes guide-lightbox-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.guide-lightbox img {
  max-width: 1500px;
  width: 100%;
  height: auto;
  margin: auto;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

/* Reserved screenshot slot — shown until a real capture is dropped into the
   guide's pub/ directory. Same authoring syntax as blog images; the Guide
   model swaps a missing image for this labelled placeholder. */
.blog-post-content.prose .guide-shot--reserved {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin: var(--space-8) 0;
}

.blog-post-content.prose .guide-shot__frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  aspect-ratio: 16 / 9;
  width: 100%;
  border: 2px dashed #cbd5e1;
  border-radius: 12px;
  background:
    repeating-linear-gradient(
      45deg,
      #f8fafc,
      #f8fafc 12px,
      #f1f5f9 12px,
      #f1f5f9 24px
    );
  color: #94a3b8;
}

.blog-post-content.prose .guide-shot__frame svg {
  width: 40px;
  height: 40px;
  margin: 0;
  background: none;
  aspect-ratio: auto;
}

.blog-post-content.prose .guide-shot__tag {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-post-content.prose .guide-shot__caption {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 12px;
  line-height: 1.5;
  color: #8f9cbd;
  text-align: center;
}

/* ============================================
   GUIDES INDEX — category groups + cards
   (design-system .card aesthetic: hover gradient
   bar, mono label, serif title, clamped summary)
   ============================================ */
.guides-tabs {
  display: inline-flex;
  border: 1px solid var(--color-border-light);
  background: var(--color-white);
  margin-bottom: var(--space-12);
}

.guides-tab {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-base-300);
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.guides-tab + .guides-tab {
  border-left: 1px solid var(--color-border-light);
}

.guides-tab:hover {
  color: #191716;
}

.guides-tab.is-active {
  background: #191716;
  color: var(--color-white);
}

.guides-tab svg {
  width: 16px;
  height: 16px;
}

.guides-cat + .guides-cat {
  margin-top: var(--space-20);
}

.guides-cat-head {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding-bottom: var(--space-5);
  margin-bottom: var(--space-8);
  border-bottom: 1px solid var(--color-border-light);
}

.guides-cat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: #191716;
  color: var(--color-gse-lime);
}

.guides-cat-icon svg {
  width: 24px;
  height: 24px;
}

.guides-cat-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
  color: #191716;
}

.guides-cat-count {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--color-base-300);
  margin-top: 4px;
}

.guides-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .guides-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .guides-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.guide-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: var(--space-6);
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  text-decoration: none;
  transition: border-color var(--transition-base),
    transform var(--transition-base), box-shadow var(--transition-base);
}

.guide-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-gse-lime) 0%, var(--color-gse-cyan) 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.guide-card:hover {
  border-color: var(--color-base-300);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -16px rgba(25, 23, 22, 0.25);
}

.guide-card:hover::before {
  opacity: 1;
}

.guide-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--color-off-white);
  color: var(--color-gse-blue);
  margin-bottom: var(--space-4);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.guide-card:hover .guide-card__icon {
  background: var(--color-gse-blue);
  color: var(--color-white);
}

.guide-card__icon svg {
  width: 22px;
  height: 22px;
}

.guide-card__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gse-blue);
  margin-bottom: var(--space-2);
}

.guide-card__title {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
  color: #191716;
  margin-bottom: var(--space-3);
}

.guide-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-base-300);
  margin-bottom: var(--space-5);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.guide-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-top: auto;
  padding-top: var(--space-2);
}

.guide-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-gse-blue);
}

.guide-card__link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.guide-card:hover .guide-card__link svg {
  transform: translateX(3px);
}

.guide-card__time {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--color-base-300);
  white-space: nowrap;
}

.blog-post-content.prose a {
  color: #5354cc;
  text-decoration: underline;
  transition: background 0.2s ease;
  padding: 1px 2px;
  margin: -1px -2px;
  border-radius: 2px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.blog-post-content.prose a:hover {
  text-decoration: none;
  background: var(--color-gse-lime);
}

.blog-post-content.prose code {
  font-family: var(--font-mono);
  font-size: 14px;
  background: var(--color-off-white);
  padding: 2px 6px;
  border-radius: 3px;
}

.blog-post-content.prose pre {
  background: var(--color-black);
  color: var(--color-white);
  padding: var(--space-6);
  overflow-x: auto;
  margin: var(--space-8) 0;
}

.blog-post-content.prose pre code {
  background: none;
  padding: 0;
}

.blog-post-content.prose table {
  display: block;
  width: 100%;
  overflow-x: auto;
  margin: var(--space-6) 0;
}
.blog-post-content.prose table thead th {
  font-family: var(--font-mono);
  font-size: 14px;
  text-transform: uppercase;
  background: var(--color-black);
  color: var(--color-white);
  padding: 4px 6px;
}
.blog-post-content.prose table tbody td {
  padding: var(--space-2) var(--space-2);
}
.blog-post-content.prose table tbody tr:nth-child(even) td {
  background: var(--color-off-white);
}


/* Blog Sidebar */
.blog-post-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.blog-sidebar-card {
  background: var(--color-off-white);
  padding: var(--space-6);
}

.blog-sidebar-title {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-base-300);
  margin-bottom: var(--space-4);
}

.blog-sidebar-cta {
  background: var(--color-black);
}

.blog-sidebar-cta .blog-sidebar-title {
  color: var(--color-gse-lime);
}

.blog-sidebar-cta p {
  color: var(--color-base-400);
  font-size: 14px;
  margin-bottom: var(--space-4);
}

/* Blog Tags */
.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.blog-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-base-300);
  background: var(--color-white);
  padding: var(--space-1) var(--space-3);
  border: 1px solid var(--color-border-light);
}

/* Blog Share Buttons */
.blog-share-buttons {
  display: flex;
  gap: var(--space-3);
}

.blog-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  color: var(--color-base-300);
  transition: all var(--transition-fast);
}

.blog-share-btn:hover {
  border-color: var(--color-gse-lime);
  color: var(--color-black);
}

.blog-share-btn.twitter:hover {
  background: #1DA1F2;
  border-color: #1DA1F2;
  color: var(--color-white);
}

.blog-share-btn.linkedin:hover {
  background: #0077B5;
  border-color: #0077B5;
  color: var(--color-white);
}

/* Blog Empty State */
.blog-empty {
  text-align: center;
  padding: var(--space-16) var(--space-8);
  color: var(--color-base-400);
}

/* ============================================
   3D EBOOK COVER
   ============================================ */
.ebook-3d {
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ebook-3d-book {
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(-18deg);
  transition: transform 0.5s ease;
  width: 100%;
  max-width: 320px;
}

.ebook-3d:hover .ebook-3d-book {
  transform: rotateY(-8deg);
}

/* Front cover (the image) */
.ebook-3d-front {
  position: relative;
  display: block;
  border-radius: 4px 12px 12px 4px;
  overflow: hidden;
  box-shadow:
    6px 6px 18px rgba(0, 0, 0, 0.35),
    2px 2px 6px rgba(0, 0, 0, 0.2);
}

.ebook-3d-front img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px 12px 12px 4px;
}

/* Book spine */
.ebook-3d-spine {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 100%;
  transform: rotateY(90deg) translateX(-20px);
  transform-origin: left center;
  background: linear-gradient(
    to right,
    #1a1a1a 0%,
    #2a2a2a 30%,
    #222 50%,
    #1a1a1a 100%
  );
  border-radius: 2px 0 0 2px;
}

/* Page edges (visible on the right side) */
.ebook-3d-pages {
  position: absolute;
  top: 4px;
  right: -2px;
  width: 40px;
  height: calc(100% - 8px);
  transform: rotateY(90deg) translateX(18px);
  transform-origin: right center;
  background: repeating-linear-gradient(
    to right,
    #f5f5f0 0px,
    #e8e8e3 1px,
    #f5f5f0 2px
  );
  border-radius: 0 2px 2px 0;
  box-shadow: inset -2px 0 4px rgba(0, 0, 0, 0.1);
}

/* Back cover (creates depth) */
.ebook-3d-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateZ(-40px);
  background: #1a1a1a;
  border-radius: 4px 12px 12px 4px;
  box-shadow: -4px 4px 12px rgba(0, 0, 0, 0.3);
}

/* Subtle reflection underneath */
.ebook-3d-shadow {
  position: absolute;
  bottom: -30px;
  left: 10%;
  right: 10%;
  height: 30px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, transparent 70%);
  filter: blur(4px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #191716;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.footer-gradient-bar {
  height: 4px;
  background: linear-gradient(90deg, #C4FF00 0%, #00E5FF 50%, #0066FF 100%);
}

.footer-watermark {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans, Inter, sans-serif);
  font-size: clamp(120px, 18vw, 280px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.footer-content {
  position: relative;
  z-index: 1;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 0;
}

.footer-brand {
  padding-right: 48px;
}

.footer-brand-name {
  font-family: var(--font-sans, Inter, sans-serif);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand p {

}

.footer-column {
  padding: 0 32px;
  border-left: 1px solid #3A3E49;
}

.footer-column h4 {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9CA3AF;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.footer-links a {
  font-size: 14px;
  color: #9CA3AF;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 48px 0;
  margin-top: 48px;
  border-top: 1px solid #3A3E49;
}

.footer-badges-label {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9CA3AF;
  line-height: 1.4;
}

.footer-badges-icons {
  display: flex;
  gap: 12px;
}

.footer-badge {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #191716;
}

.footer-bottom {
  padding: 16px 0;
  border-top: 1px solid #3A3E49;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #9CA3AF;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: #9CA3AF;
  transition: color 0.15s ease;
}

.footer-social a:hover {
  color: #fff;
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-column:nth-child(2) {
    border-left: none;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-column {
    border-left: none;
    padding: 0;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer-badges {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   Feature card
   Ported from .design-system/index.html §Cards, which publishes this exact
   markup as the canonical snippet but was never shipped as a real class —
   nothing in the app could use it. Tokens match the showcase verbatim.

   ONE DELIBERATE DEVIATION: the showcase sets .card-description to
   --color-base-200 (#8F9CBD), which measures 2.74:1 on white and fails AA for
   body text. Shipped at #5A6472 (6.00:1) instead — same blue-grey family.
   The showcase should be updated to match.
   ========================================================================== */

.card {
  position: relative;
  padding: var(--space-8);
  border: 1px solid var(--color-border-light);
  background: var(--color-white);
  transition: all var(--transition-base);
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-gse-lime) 0%, var(--color-gse-cyan) 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.card:hover {
  border-color: var(--color-base-300);
  background: var(--color-off-white);
}

.card:hover::before {
  opacity: 1;
}

.card-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gse-blue);
  margin-bottom: var(--space-3);
}

.card-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: var(--space-4);
}

.card-description {
  font-size: 15px;
  line-height: 1.6;
  color: #5A6472;
  margin-bottom: var(--space-6);
}

.card-description:last-child {
  margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  .card,
  .card::before {
    transition: none;
  }
}

/* ---------------------------------------------------------------------------
   naim module — white ground with an abstract wash across the top.

   The module used to sit on flat gse-blue, where .naim-card lost its identity:
   the card fills white and is defined by a cyan/blue/lime gradient ring, and a
   white block on saturated blue reads as a white block, ring and all. On white
   the ring does the work it was drawn to do.

   Literal colour values on purpose — gse.css is served as a plain stylesheet
   (layouts/application.html.erb), so the @theme tokens at the top of this file
   are not resolvable here.
   --------------------------------------------------------------------------- */
.naim-module {
  position: relative;
  background: #FFFFFF;
}

/* Warm at the right, cooling leftward, and falling away down the page. Four
   overlapping radials rather than a linear sweep so the edge stays organic —
   a straight band across the top reads as a header bar, not a wash. */
.naim-module-wash {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 72%;
  pointer-events: none;
  background:
    radial-gradient(52% 44% at 97% 2%, rgba(224, 85, 46, 0.26), transparent 62%),
    radial-gradient(62% 50% at 78% -2%, rgba(255, 253, 119, 0.85), transparent 64%),
    radial-gradient(50% 42% at 60% 4%, rgba(0, 229, 255, 0.28), transparent 66%),
    radial-gradient(84% 66% at 34% -10%, rgba(61, 82, 213, 0.30), transparent 72%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 26%, rgba(0, 0, 0, 0.45) 62%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 0%, #000 26%, rgba(0, 0, 0, 0.45) 62%, transparent 100%);
}

/* Marketing treatment for naim's cards, opted into with .naim-cards-marketing
   on the container — used by the homepage module and the /naim insight grid.
   Deliberately NOT on .naim-card itself: the dashboard renders one card per
   insight and must stay still and shadowless.

   The dashboard sits these on grey, so the gradient ring alone separates them.
   On a white ground the cards outside the wash need a resting lift. */
.naim-cards-marketing .naim-card {
  box-shadow: 0 2px 12px rgba(25, 23, 22, 0.06);
}

/* Animated ring.

   A gradient is not an interpolatable value, so the angle is animated instead
   of the background: registering --naim-ring-angle as an <angle> is what makes
   it tween rather than flip between keyframes. .naim-card (application.tailwind.css)
   reads it as linear-gradient(var(--naim-ring-angle, 135deg), …), so this rotates
   the existing cyan→blue→lime ring in place without redeclaring the three
   background layers here — the component stays the single source of the colours.

   Marketing only, and slow on purpose: four cards drifting at 9s reads as the
   ring being alive. The same thing at dashboard density, or much faster, reads
   as a page that will not sit still. */
@property --naim-ring-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 135deg;
}

@keyframes naim-ring-turn {
  from { --naim-ring-angle: 135deg; }
  to   { --naim-ring-angle: 495deg; }
}

.naim-cards-marketing .naim-card {
  animation: naim-ring-turn 9s linear infinite;
}

/* Offset so the rings are not locked in step — in phase they read as one object
   blinking, out of phase as separate cards each doing their own thing. Runs to
   six because /naim grids six insight types where the homepage stacks four. */
.naim-cards-marketing .naim-card:nth-child(2) { animation-delay: -1.5s; }
.naim-cards-marketing .naim-card:nth-child(3) { animation-delay: -3s; }
.naim-cards-marketing .naim-card:nth-child(4) { animation-delay: -4.5s; }
.naim-cards-marketing .naim-card:nth-child(5) { animation-delay: -6s; }
.naim-cards-marketing .naim-card:nth-child(6) { animation-delay: -7.5s; }

@media (prefers-reduced-motion: reduce) {
  .naim-cards-marketing .naim-card {
    animation: none;
  }
}

/* Ask naim demo (/naim). Prompts are real buttons that swap the exchange in the
   card beside them — see naim_demo_controller.js. */
.naim-prompt {
  font-size: 13px;
  line-height: 1.4;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(25, 23, 22, 0.15);
  background: rgba(255, 255, 255, 0.75);
  color: rgba(25, 23, 22, 0.85);
  text-align: left;
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease, color 150ms ease, box-shadow 150ms ease;
}

.naim-prompt:hover {
  border-color: rgba(61, 82, 213, 0.45);
  background: #FFFFFF;
}

.naim-prompt.is-active {
  border-color: #3D52D5;
  background: #FFFFFF;
  color: #191716;
  box-shadow: 0 0 0 1px #3D52D5;
  cursor: default;
}

.naim-exchange,
.naim-answer {
  transition: opacity 220ms ease, transform 220ms ease;
}

.naim-exchange.is-swapping,
.naim-answer.is-swapping {
  opacity: 0;
  transform: translateY(6px);
}

/* naim "reading…" state — the answer bubble before the answer lands. */
.naim-answer.is-thinking {
  font-style: italic;
  color: #6B7280;
}

@media (prefers-reduced-motion: reduce) {
  .naim-exchange,
  .naim-answer {
    transition: none;
  }
}

/* Highlighter behind "ai" — as text it was #FFFD77, invisible the moment the
   ground turned white. Sits at 58% so it reads as a marker stroke. */
.naim-ai {
  background: linear-gradient(transparent 58%, rgba(255, 253, 119, 0.9) 58%);
  padding: 0 2px;
}

/* Editorial blog layout (2026-08): narrow centered measure, justified prose,
   sidebar removed (tags/share/CTA live in a post footer), tables and images
   break out of the measure up to a wide band centered on the viewport. */
.blog-editorial {
  max-width: 720px;
  margin-inline: auto;
}

.blog-editorial .blog-post-content.prose p {
  text-align: justify;
  hyphens: auto;
}

/* Breakout band: images and tables escape the measure, centered via
   symmetric negative margins (a transform would leave layout overflow behind
   and hand the page a horizontal scrollbar). */
.blog-editorial .blog-post-content.prose img,
.blog-editorial .blog-post-content.prose table {
  --breakout: min(1100px, calc(100vw - 48px));
  width: var(--breakout);
  max-width: var(--breakout);
  margin-left: calc((100% - var(--breakout)) / 2);
  margin-right: calc((100% - var(--breakout)) / 2);
}

.blog-editorial .blog-post-content.prose img {
  height: auto;
  max-height: none; /* wide editorial photos: the ratio decides the height */
}

/* Real table layout so the forced width reaches the columns (the base style's
   display:block would leave a narrow table floating left inside the band) */
.blog-editorial .blog-post-content.prose table {
  display: table;
  overflow-x: visible;
}

/* Small screens: back to the scrollable block tables of the base style */
@media (max-width: 767px) {
  .blog-editorial .blog-post-content.prose table {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    overflow-x: auto;
  }

  .blog-editorial .blog-post-content.prose img {
    width: auto;
    max-width: 100%;
    max-height: 600px;
    margin-inline: auto;
  }

  .blog-editorial .blog-post-content.prose p {
    text-align: left; /* justify at phone widths opens rivers; keep it for the wide measure */
    hyphens: none;
  }
}

.blog-post-footer {
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.blog-post-footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.blog-post-footer .blog-sidebar-cta {
  max-width: 480px;
  width: 100%;
  margin-inline: auto;
  text-align: center;
}

/* Guides: keep media inside the measure — portrait app screenshots must not be
   stretched to the breakout band; the lightbox already serves the full size. */
.blog-editorial--keep-media .blog-post-content.prose img {
  width: auto;
  max-width: 100%;
  max-height: 600px;
  margin-left: auto;
  margin-right: auto;
}
