/**
 * About Page Styles
 * 
 * Matches explore/browse/leaderboard page styling patterns.
 * Uses glassmorphism effects, blue accents, and consistent section headers.
 */

/* ============================================================================
   Page Layout
   ============================================================================ */

.about-page {
  min-height: 100vh;
  padding-bottom: 4rem;
}

/* ============================================================================
   Page Header (matches analytics/leaderboard style)
   ============================================================================ */

.about-header {
  text-align: center;
  padding: 2rem 1.5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-title {
  font-size: 1.75rem;
  font-weight: 700;
  font-style: italic;
  color: var(--color-text-primary);
  margin: 0 0 0.5rem;
}

.about-title-highlight {
  font-style: normal;
  color: var(--color-primary);
}

.about-subtitle {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================================
   Hero Section with Logo and Bullet Points
   ============================================================================ */

.about-hero-section {
  padding: 2rem 1rem 2.5rem;
}

.about-hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

/* Logo Wrapper with Pulsing Glow */
.about-hero-logo-wrapper {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-logo-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(0, 168, 255, 0.4) 0%, rgba(0, 168, 255, 0.15) 40%, transparent 70%);
  border-radius: 50%;
  animation: logoGlowPulse 3s ease-in-out infinite;
  z-index: 0;
}

@keyframes logoGlowPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

.about-hero-logo {
  width: 200px;
  height: 200px;
  position: relative;
  z-index: 1;
  border-radius: 24px;
  box-shadow:
    0 0 50px rgba(0, 168, 255, 0.4),
    0 0 100px rgba(0, 168, 255, 0.2);
}

/* Bullet Points List */
.about-hero-bullets {
  flex: 1;
  max-width: 500px;
}

.about-bullet-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.bullet-icon {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 0.5rem;
  background: #fff;
  border-radius: 50%;
  box-shadow: none;
}

.bullet-text {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* Responsive for Hero Section */
@media (max-width: 768px) {
  .about-hero-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .about-hero-logo-glow {
    width: 240px;
    height: 240px;
  }

  .about-hero-logo {
    width: 200px;
    height: 200px;
  }

  .about-bullet-list {
    gap: 0.75rem;
  }

  .about-bullet-item {
    justify-content: flex-start;
    text-align: left;
  }

  .bullet-text {
    font-size: 0.9rem;
  }
}

/* ============================================================================
   Section Header - Hero Style (matches main Sports Index title)
   ============================================================================ */

.about-section {
  padding-top: 1rem;
  border-top: none;
  margin-top: 0;
}

.about-header-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.25rem;
}

.about-section .section-header {
  border-bottom: none;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-section .section-title {
  margin: 0;
  display: flex;
  align-items: center;
  border-bottom: none !important;
  font-size: 2.5rem;
  font-weight: 700;
}

.about-section .section-emoji {
  margin-right: 0.5rem;
  font-size: 1.5rem;
}

.about-section .section-title-text {
  position: relative;
  display: inline-block;
  padding-bottom: 0;
  color: var(--color-primary);
  text-shadow: 0 0 20px rgba(0, 168, 255, 0.35);
  transition: text-shadow 0.3s ease;
}

/* Remove the underline effect */
.about-section .section-title-text::after {
  display: none;
}

/* Responsive sizing to match explore-hero-title */
@media (max-width: 768px) {
  .about-section .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .about-section .section-title {
    font-size: 1.75rem;
  }
}

/* ============================================================================
   Platform Introduction
   ============================================================================ */

.about-intro {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 1rem;
  padding: 0 1rem;
}

/* Search bar positioned below subtitle */
.about-search-section {
  margin-bottom: 1.5rem;
}

.intro-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin: 0;
  text-align: center;
  max-width: 600px;
  min-height: 1.5em; /* Prevent layout shift */
  display: inline-block;
}

#intro-typewriter {
  display: inline;
}

.intro-cursor {
  display: inline;
  color: var(--color-primary, #00a8ff);
  font-weight: 300;
  animation: introCursorBlink 1s infinite;
  margin-left: 2px;
}

@keyframes introCursorBlink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}

/* ============================================================================
   Post Types Showcase Section
   ============================================================================ */

.post-types-section {
  padding: 0 1rem 2rem;
}

.post-types-section .section-container {
  max-width: none;
  margin: 0;
  padding: 0 1.5rem;
}

.post-types-container {
  display: flex;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

/* Left: Post Types List */
.post-types-list {
  flex-shrink: 0;
  width: 200px;
}

.post-types-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 1rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.post-type-items {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.post-type-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
  width: 100%;
}

.post-type-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text-primary);
}

.post-type-item.active {
  background: rgba(0, 168, 255, 0.15);
  border-color: rgba(0, 168, 255, 0.4);
  color: #fff;
}

.post-type-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.post-type-name {
  white-space: nowrap;
}

/* Right: Post Type Details */
.post-type-details {
  flex: 1;
  position: relative;
  min-height: 200px;
}

.post-type-detail {
  display: none;
  animation: detailFadeIn 0.3s ease-out;
}

.post-type-detail.active {
  display: block;
}

@keyframes detailFadeIn {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.detail-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.75rem 0;
}

.detail-description {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0 0 1.25rem 0;
}

.detail-image-placeholder {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-icon {
  font-size: 2.5rem;
  opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
  .post-types-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .post-types-list {
    width: 100%;
  }

  .post-type-items {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .post-type-item {
    flex: 0 0 auto;
    padding: 0.625rem 0.875rem;
  }

  .post-type-details {
    min-height: auto;
  }

  .detail-image-placeholder {
    height: 100px;
  }
}

/* Light Mode */
:root.light-mode .post-types-container {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.03);
}

:root.light-mode .post-types-title {
  color: #888;
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

:root.light-mode .post-type-item {
  color: #666;
}

:root.light-mode .post-type-item:hover {
  background: rgba(0, 0, 0, 0.04);
  color: #333;
}

:root.light-mode .post-type-item.active {
  background: rgba(31, 111, 235, 0.15);
  border-color: rgba(31, 111, 235, 0.4);
  color: #1F6FEB;
}

:root.light-mode .detail-title {
  color: #1a1a2e;
}

:root.light-mode .detail-description {
  color: #666;
}

:root.light-mode .detail-image-placeholder {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.1);
}

/* ============================================================================
   User Type Tabs
   ============================================================================ */

/* Row container for heading + tabs */
.about-tabs-row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 1.5rem;
  margin-bottom: 2rem;
  gap: 2rem;
}

.about-tabs-heading {
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  color: #fff;
  margin: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.about-tabs-container {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 0.75rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.about-section .section-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: none;
  padding: 0;
}

.about-tabs {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.about-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-tab:hover {
  color: var(--color-text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.about-tab.active {
  background: linear-gradient(135deg, rgba(0, 168, 255, 0.2), rgba(0, 168, 255, 0.1));
  border-color: rgba(0, 168, 255, 0.4);
  color: #fff;
  box-shadow: 
    0 0 20px rgba(0, 168, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.tab-icon {
  font-size: 1.25rem;
}

.tab-label {
  white-space: nowrap;
}

/* ============================================================================
   Columns Layout
   ============================================================================ */

.about-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 1.5rem;
}

.about-column {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.about-column:hover {
  background: rgba(0, 168, 255, 0.08);
  border-color: rgba(0, 168, 255, 0.4);
  transform: translateY(-8px) scale(1.02);
  z-index: 10;
  box-shadow:
    0 0 40px rgba(0, 168, 255, 0.25),
    0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.about-column.highlighted {
  background: rgba(0, 168, 255, 0.12);
  border-color: rgba(0, 168, 255, 0.5);
  transform: translateY(-8px) scale(1.02);
  z-index: 10;
  box-shadow:
    0 0 50px rgba(0, 168, 255, 0.35),
    0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.column-header {
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1rem;
}

.column-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  transition: color 0.3s ease;
}

.about-column:hover .column-title {
  color: var(--color-primary, #00a8ff);
}

.column-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.column-tagline {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--color-text-secondary);
  margin: 0 0 1.25rem 0;
  line-height: 1.5;
}

.column-tagline .topic-highlight {
  color: var(--color-primary, #00a8ff);
  font-style: normal;
  font-weight: 500;
}

.column-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}

.column-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.column-feature-bullet {
  width: 8px;
  height: 8px;
  margin-top: 0.5rem;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}

.column-feature-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.column-feature-text strong {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}

.column-feature-text span {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  line-height: 1.4;
}

.column-cta {
  margin-top: auto;
  padding-top: 1rem;
}

.column-cta .btn-cta-primary {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
}

/* ============================================================================
   Pricing Row (below columns)
   ============================================================================ */

.pricing-section-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin: 2rem 0 1rem 1.5rem;
  text-align: left;
  align-self: flex-start;
}

.about-pricing-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
  padding: 0 1.5rem;
  margin-top: 1.5rem;
}

.pricing-column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-tier {
  padding: 0.875rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  text-align: center;
}

.pricing-tier-name {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.pricing-tier-features {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.pricing-tier-features p {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.4;
}

.pricing-contact-link {
  font-size: 0.75rem;
  color: var(--color-primary, #00a8ff);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.pricing-contact-link:hover {
  opacity: 0.8;
}

/* ============================================================================
   Tab Content Panels (legacy, kept for reference)
   ============================================================================ */

.about-content {
  position: relative;
  display: none;
}

.about-panel {
  display: none;
  animation: panelFadeIn 0.4s ease-out;
}

.about-panel.active {
  display: block;
}

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

/* Panel Hero */
.panel-hero {
  text-align: left;
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background: transparent;
  border: none;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.panel-icon-large {
  font-size: 4rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 20px rgba(0, 168, 255, 0.3));
}

.panel-title {
  font-size: 1.5rem;
  font-weight: 600;
  font-style: italic;
  color: #fff;
  margin: 0;
  letter-spacing: -0.02em;
  max-width: 700px;
  line-height: 1.4;
}

.panel-title .topic-highlight {
  color: var(--color-primary, #00a8ff);
  font-style: normal;
  font-weight: 600;
}

.panel-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  margin: 0;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================================================
   Features Grid
   ============================================================================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.feature-card:hover {
  background: rgba(0, 168, 255, 0.05);
  border-color: rgba(0, 168, 255, 0.25);
  transform: translateY(-4px);
  box-shadow:
    0 0 30px rgba(0, 168, 255, 0.1),
    0 10px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 0 10px rgba(0, 168, 255, 0.2));
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.5rem 0;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* ============================================================================
   Panel CTA Buttons
   ============================================================================ */

.panel-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 0;
  flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 160px;
}

.btn-cta-primary {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  box-shadow: none;
}

.btn-cta-primary:hover {
  background: rgba(0, 168, 255, 0.1);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 168, 255, 0.3);
}

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

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}


/* ============================================================================
   Responsive Design
   ============================================================================ */

/* Columns responsive - 2 columns on tablet */
@media (max-width: 1100px) {
  .about-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .about-pricing-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/* Columns responsive - 1 column on mobile */
@media (max-width: 640px) {
  .about-columns {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-column:hover {
    transform: translateY(-4px) scale(1.01);
  }

  .about-pricing-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .about-tabs-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .about-tabs-heading {
    font-size: 1rem;
  }

  .about-tabs {
    gap: 0.375rem;
  }

  .about-tab {
    padding: 0.625rem 1rem;
    font-size: 0.85rem;
  }

  .tab-icon {
    font-size: 1rem;
  }

  .panel-hero {
    padding: 1.5rem 1rem;
  }

  .panel-icon-large {
    font-size: 3rem;
  }

  .panel-title {
    font-size: 1.25rem;
  }

  .panel-subtitle {
    font-size: 0.95rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-card {
    padding: 1.25rem;
  }

  .panel-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    max-width: 280px;
  }

}

@media (max-width: 480px) {
  .about-tabs {
    flex-direction: column;
    gap: 0.25rem;
  }

  .about-tab {
    width: 100%;
    justify-content: center;
  }

  .feature-icon {
    font-size: 1.75rem;
  }

  .feature-title {
    font-size: 1rem;
  }
}

/* ============================================================================
   Light Mode Overrides
   ============================================================================ */

:root.light-mode .about-section .section-title-text {
  color: #1F6FEB;
  text-shadow: none;
}

:root.light-mode .intro-text {
  color: #666666;
}

:root.light-mode .about-tabs-heading {
  color: #1a1a2e;
}

:root.light-mode .about-tabs-container {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.03);
}

:root.light-mode .about-tab.active {
  background: linear-gradient(135deg, rgba(31, 111, 235, 0.2), rgba(31, 111, 235, 0.1));
  border-color: rgba(31, 111, 235, 0.4);
  color: #1F6FEB;
}

:root.light-mode .panel-hero {
  background: rgba(31, 111, 235, 0.05);
  border-color: rgba(31, 111, 235, 0.15);
}

:root.light-mode .panel-title {
  color: #1a1a2e;
  text-shadow: none;
}

:root.light-mode .panel-title .topic-highlight {
  color: #1F6FEB;
}

:root.light-mode .feature-card {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.06);
}

:root.light-mode .feature-card:hover {
  background: rgba(31, 111, 235, 0.05);
  border-color: rgba(31, 111, 235, 0.2);
}

:root.light-mode .feature-title {
  color: #1a1a2e;
}

:root.light-mode .btn-cta-primary {
  background: transparent;
  color: #1F6FEB;
  border: 1px solid rgba(31, 111, 235, 0.5);
}

:root.light-mode .btn-cta-primary:hover {
  background: rgba(31, 111, 235, 0.1);
  border-color: #1F6FEB;
  box-shadow: 0 0 15px rgba(31, 111, 235, 0.25);
}

:root.light-mode .btn-cta-secondary {
  background: rgba(0, 0, 0, 0.03);
  color: #1a1a2e;
  border-color: rgba(0, 0, 0, 0.1);
}

/* Light Mode Hero Section */
:root.light-mode .about-hero-logo-glow {
  background: radial-gradient(circle, rgba(31, 111, 235, 0.35) 0%, rgba(31, 111, 235, 0.12) 40%, transparent 70%);
}

:root.light-mode .about-hero-logo {
  box-shadow:
    0 0 30px rgba(31, 111, 235, 0.25),
    0 0 60px rgba(31, 111, 235, 0.1);
}

:root.light-mode .bullet-icon {
  background: #1a1a2e;
  box-shadow: none;
}

:root.light-mode .bullet-text {
  color: #555;
}

/* Light Mode Columns */
:root.light-mode .about-column {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.06);
}

:root.light-mode .about-column:hover {
  background: rgba(31, 111, 235, 0.08);
  border-color: rgba(31, 111, 235, 0.35);
  box-shadow:
    0 0 40px rgba(31, 111, 235, 0.15),
    0 20px 60px rgba(0, 0, 0, 0.1);
}

:root.light-mode .about-column.highlighted {
  background: rgba(31, 111, 235, 0.12);
  border-color: rgba(31, 111, 235, 0.4);
  box-shadow:
    0 0 50px rgba(31, 111, 235, 0.2),
    0 20px 60px rgba(0, 0, 0, 0.12);
}

:root.light-mode .column-header {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

:root.light-mode .column-title {
  color: #1a1a2e;
}

:root.light-mode .about-column:hover .column-title {
  color: #1F6FEB;
}

:root.light-mode .column-tagline {
  color: #666;
}

:root.light-mode .column-tagline .topic-highlight {
  color: #1F6FEB;
}

:root.light-mode .column-feature-text strong {
  color: #1a1a2e;
}

:root.light-mode .column-feature-text span {
  color: #666;
}

:root.light-mode .column-feature-bullet {
  background: #1a1a2e;
}

/* Light Mode Pricing */
:root.light-mode .column-pricing {
  border-top-color: rgba(0, 0, 0, 0.06);
}

:root.light-mode .pricing-tier {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.06);
}

:root.light-mode .pricing-tier-name {
  color: #1a1a2e;
}

:root.light-mode .pricing-tier-price {
  color: #1F6FEB;
}

:root.light-mode .pricing-section-title {
  color: #888;
}

:root.light-mode .pricing-tier-features p {
  color: #666;
}

:root.light-mode .pricing-contact-link {
  color: #1F6FEB;
}

