﻿/* custom.css - Nyad AI Water Quality Management
   Color overrides: green/forest → navy/water theme
   NO var() references. Hardcoded hex only.
*/

/* =============================================
   FIX 1: Hero — reduce excessive top space
   (hero padding-top 100px was nav-only; hero-visual
    is 600px tall; net effect pushed text down)
   ============================================= */
.hero {
  min-height: 100vh;
  padding: 80px 40px 60px;
  align-items: center;
}

/* =============================================
   FIX 2: Hide template decorative leaf shapes
   (green/teal half-circles from Eco Lume template)
   ============================================= */
.organic-shapes {
  display: none !important;
}

/* =============================================
   FIX 3: Blog card thumb placeholder — prevent
   overflow (fixes blue slider on card 3)
   ============================================= */
.blog-card-thumb-placeholder {
  overflow: hidden;
  position: relative;
}
.blog-card { overflow: hidden; position: relative; }
.blog-grid { overflow: hidden; }

/* =============================================
   CSS VARIABLE OVERRIDES
   ============================================= */
:root {
  --primary-green: #0EA5E9;
  --secondary-green: #0369A1;
  --accent-blue: #06B6D4;
  --warm-yellow: #F59E0B;
  --deep-forest: #050E1A;
  --light-mint: #E0F2FE;
  --glow-green: rgba(14, 165, 233, 0.25);
  --glow-blue: rgba(6, 182, 212, 0.2);
}

/* =============================================
   BODY & BACKGROUND
   ============================================= */
body {
  background: linear-gradient(135deg, #050E1A 0%, #0A1929 50%, #061525 100%);
}

/* =============================================
   BIO BACKGROUND
   ============================================= */
.bio-bg {
  background:
    radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 40% 60%, rgba(14, 165, 233, 0.05) 0%, transparent 30%);
}

/* =============================================
   LEAF SHAPES — water drop feel
   ============================================= */
.leaf-1 { background: linear-gradient(45deg, #0EA5E9, #06B6D4); }
.leaf-2 { background: linear-gradient(45deg, #06B6D4, #0369A1); }
.leaf-3 { background: linear-gradient(45deg, #0369A1, #0EA5E9); }

/* =============================================
   LOGO
   ============================================= */
.logo-text { color: #F0F9FF; font-weight: 700; letter-spacing: -0.02em; }

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #0EA5E9, #06B6D4);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  flex-shrink: 0;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  background: #0EA5E9;
  color: #FFFFFF;
  border: none;
  font-weight: 600;
}
.btn-primary:hover {
  background: #0284C7;
  color: #FFFFFF;
}

.btn-secondary {
  border: 1.5px solid #0EA5E9;
  color: #0EA5E9;
  background: transparent;
}
.btn-secondary:hover {
  background: rgba(14, 165, 233, 0.1);
  color: #0EA5E9;
}

/* =============================================
   SECTION TITLES
   ============================================= */
.section-title { color: #F0F9FF; }

/* =============================================
   STATS
   ============================================= */
.stat-item h3 { color: #0EA5E9; }
.stat-item .stat-icon { color: #0EA5E9; }

/* =============================================
   FEATURES
   ============================================= */
.nav-item.active {
  border-left-color: #0EA5E9;
  background: rgba(14, 165, 233, 0.08);
}
.nav-item.active .nav-item-icon { color: #0EA5E9; }
.nav-item:hover { border-left-color: rgba(14, 165, 233, 0.4); }

.feature-cta { color: #0EA5E9; }
.feature-cta:hover { color: #06B6D4; }

.benefit-item h5 { color: #06B6D4; }

/* =============================================
   BIO SPHERE / ROTATING TEXT
   ============================================= */
.bio-sphere {
  border-color: rgba(14, 165, 233, 0.3);
}
.text-circle.active { color: #0EA5E9; }

/* =============================================
   ABOUT / ECO VISUALIZATION
   ============================================= */
.ring { border-color: rgba(14, 165, 233, 0.4); }
.network-node { background: #0EA5E9; box-shadow: 0 0 12px rgba(14, 165, 233, 0.6); }
.network-connection { background: linear-gradient(90deg, #0EA5E9, #06B6D4); }

/* =============================================
   CONTACT
   ============================================= */
.contact-icon { color: #0EA5E9; }
.submit-btn {
  background: #0EA5E9;
  color: #050E1A;
  font-weight: 600;
}
.submit-btn:hover { background: #0284C7; }

/* =============================================
   FOOTER
   ============================================= */
footer { border-top: 1px solid rgba(14, 165, 233, 0.15); }
.footer-brand h3 { color: #0EA5E9; }
footer a:hover { color: #0EA5E9; }
.social-link { color: #0EA5E9 !important; }

/* =============================================
   COOKIE BANNER
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(5, 14, 26, 0.97);
  border-top: 1px solid rgba(14, 165, 233, 0.3);
  padding: 16px 24px;
  z-index: 9999;
  backdrop-filter: blur(8px);
}
.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-content p {
  color: #94A3B8;
  font-size: 0.875rem;
  margin: 0;
}
.cookie-content a { color: #0EA5E9; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; border-radius: 6px; cursor: pointer; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  padding: 140px 40px 80px;
  text-align: center;
  position: relative;
}
.page-hero .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #0EA5E9;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 20px;
}
.page-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #F0F9FF;
  line-height: 1.15;
  max-width: 800px;
  margin: 0 auto 20px;
}
.page-hero p {
  font-size: 1.1rem;
  color: #94A3B8;
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* =============================================
   SECTION WRAPPER
   ============================================= */
.section-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}

/* =============================================
   GRID CARDS
   ============================================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.card {
  background: #0A1929;
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s;
}
.card:hover {
  border-color: rgba(14, 165, 233, 0.4);
  transform: translateY(-4px);
}
.card-icon {
  font-size: 2rem;
  color: #0EA5E9;
  margin-bottom: 16px;
}
.card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #F0F9FF;
  margin-bottom: 12px;
}
.card p { color: #94A3B8; line-height: 1.7; font-size: 0.95rem; }

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
  background: linear-gradient(135deg, #0A1929, #0F2540);
  border-top: 1px solid rgba(14, 165, 233, 0.15);
  border-bottom: 1px solid rgba(14, 165, 233, 0.15);
  padding: 80px 40px;
  text-align: center;
}
.cta-band h2 { font-size: 2.2rem; font-weight: 600; color: #F0F9FF; margin-bottom: 16px; }
.cta-band p { color: #94A3B8; font-size: 1rem; max-width: 540px; margin: 0 auto 32px; }

/* =============================================
   BLOG CARDS
   ============================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.blog-card {
  background: #0A1929;
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.blog-card:hover {
  border-color: rgba(14, 165, 233, 0.4);
  transform: translateY(-4px);
}
.blog-card-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #0F2540;
  display: block;
}
.blog-card-thumb-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #0F2540, #0A1929);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(14, 165, 233, 0.3);
}
.blog-card-body { padding: 24px; }
.blog-card-category {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #0EA5E9;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
}
.blog-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #F0F9FF;
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card-meta {
  font-size: 0.8rem;
  color: #94A3B8;
  margin-bottom: 10px;
}
.blog-card p { font-size: 0.9rem; color: #94A3B8; line-height: 1.6; margin-bottom: 16px; }
.blog-card-link {
  font-size: 0.9rem;
  color: #0EA5E9;
  text-decoration: none;
  font-weight: 500;
}
.blog-card-link:hover { color: #06B6D4; }
.blog-card-link i { margin-left: 6px; }

/* Featured blog card */
.blog-featured {
  background: #0A1929;
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 48px;
}
.blog-featured-thumb {
  background: linear-gradient(135deg, #0F2540, #0A1929);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(14, 165, 233, 0.2);
}
.blog-featured-body { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.blog-featured-body h2 { font-size: 1.6rem; font-weight: 600; color: #F0F9FF; margin-bottom: 16px; line-height: 1.35; }
.blog-featured-body p { color: #94A3B8; line-height: 1.7; margin-bottom: 24px; }
.featured-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #0EA5E9;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

/* =============================================
   TEAM CARDS
   ============================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.team-card {
  background: #0A1929;
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}
.team-card-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(14, 165, 233, 0.3);
  margin: 0 auto 20px;
  display: block;
  background: #0F2540;
}
.team-card-photo-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid rgba(14, 165, 233, 0.3);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(135deg, #0F2540, #0A1929);
  color: rgba(14, 165, 233, 0.4);
}
.team-card h3 { font-size: 1.15rem; font-weight: 600; color: #F0F9FF; margin-bottom: 6px; }
.team-card-role {
  font-size: 0.85rem;
  color: #0EA5E9;
  font-weight: 500;
  margin-bottom: 14px;
}
.team-card p { font-size: 0.9rem; color: #94A3B8; line-height: 1.6; }

.ceo-card {
  max-width: 480px;
  margin: 0 auto;
}
.ceo-card .team-card-photo-placeholder {
  width: 120px;
  height: 120px;
  font-size: 3rem;
}

/* =============================================
   VALUES
   ============================================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.value-card {
  background: #0F2540;
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
}
.value-icon { font-size: 2.2rem; color: #0EA5E9; margin-bottom: 16px; }
.value-card h3 { font-size: 1.2rem; font-weight: 600; color: #F0F9FF; margin-bottom: 12px; }
.value-card p { color: #94A3B8; font-size: 0.95rem; line-height: 1.65; }

/* =============================================
   BACKED BY / INVESTOR
   ============================================= */
.backed-section {
  background: #0F2540;
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  max-width: 600px;
  margin: 48px auto 0;
}
.backed-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94A3B8;
  margin-bottom: 16px;
}
.backed-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0EA5E9;
  margin-bottom: 12px;
}
.backed-section p { color: #94A3B8; font-size: 0.95rem; }

/* =============================================
   HOW IT WORKS — STEPS
   ============================================= */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}
.step-item {
  text-align: center;
  padding: 28px 20px;
  background: #0A1929;
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: 16px;
  position: relative;
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0EA5E9;
  color: #050E1A;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step-item h3 { font-size: 1rem; font-weight: 600; color: #F0F9FF; margin-bottom: 10px; }
.step-item p { font-size: 0.875rem; color: #94A3B8; line-height: 1.6; }

/* =============================================
   SPECS TABLE
   ============================================= */
.spec-table {
  width: 100%;
  border-collapse: collapse;
}
.spec-table tr { border-bottom: 1px solid rgba(14, 165, 233, 0.1); }
.spec-table td { padding: 14px 12px; font-size: 0.9rem; }
.spec-table td:first-child { color: #94A3B8; width: 40%; }
.spec-table td:last-child { color: #F0F9FF; font-weight: 500; }

/* =============================================
   INTEGRATIONS STRIP
   ============================================= */
.integrations-strip {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}
.integration-badge {
  background: #0F2540;
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 10px;
  padding: 12px 24px;
  font-size: 0.9rem;
  color: #94A3B8;
  font-weight: 500;
}

/* =============================================
   PAGINATION
   ============================================= */
.pagination {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 48px;
}
.pagination a, .pagination span {
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #94A3B8;
  border: 1px solid rgba(14, 165, 233, 0.2);
  text-decoration: none;
}
.pagination .active, .pagination a:hover {
  background: #0EA5E9;
  color: #050E1A;
  border-color: #0EA5E9;
}

/* =============================================
   CONTACT FORM (override)
   ============================================= */
.form-group label { color: #94A3B8; }
.form-group input,
.form-group textarea,
.form-group select {
  background: #0F2540;
  border: 1px solid rgba(14, 165, 233, 0.2);
  color: #F0F9FF;
  border-radius: 8px;
  padding: 12px 16px;
  width: 100%;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0EA5E9;
  background: #0A1929;
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* =============================================
   MAP PLACEHOLDER
   ============================================= */
.map-placeholder {
  background: #0F2540;
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: 16px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: #94A3B8;
  font-size: 0.95rem;
  margin-top: 48px;
}
.map-placeholder i { font-size: 2.5rem; color: #0EA5E9; }

/* =============================================
   TWO-COL LAYOUT
   ============================================= */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col-text h2 { font-size: 2rem; font-weight: 600; color: #F0F9FF; margin-bottom: 20px; }
.two-col-text p { color: #94A3B8; line-height: 1.7; margin-bottom: 16px; font-size: 0.975rem; }

/* =============================================
   HIRING CTA
   ============================================= */
.hiring-cta {
  background: linear-gradient(135deg, #0F2540, #0A1929);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 16px;
  padding: 56px 40px;
  text-align: center;
  margin-top: 48px;
}
.hiring-cta h2 { font-size: 1.8rem; font-weight: 600; color: #F0F9FF; margin-bottom: 14px; }
.hiring-cta p { color: #94A3B8; margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 40px 80px;
}
.legal-content h2 { font-size: 1.4rem; color: #F0F9FF; margin: 40px 0 14px; }
.legal-content p, .legal-content li { color: #94A3B8; line-height: 1.8; font-size: 0.975rem; }
.legal-content ul { padding-left: 20px; margin-bottom: 16px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .cards-grid, .values-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-featured { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .page-hero h1 { font-size: 2.2rem; }
}
@media (max-width: 600px) {
  .cards-grid, .values-grid, .team-grid, .blog-grid, .steps-row, .cards-grid-2 { grid-template-columns: 1fr; }
  .section-wrapper { padding: 60px 20px; }
  .page-hero { padding: 120px 20px 60px; }
  .cookie-content { flex-direction: column; align-items: flex-start; }
}
/* Fix 1: Article page max-width */
.article-layout, .article-container, .article-content, .blog-article, .post-content { max-width: 800px; margin: 0 auto; padding: 40px 20px 60px; }

/* Fix 2: Article text color */
.article-body p, .article-content p, .post-content p, .blog-article p { color: #c0c0c0; font-size: 16px; line-height: 1.8; margin-bottom: 20px; }
.article-body h2, .article-content h2, .post-content h2 { color: #fff; font-size: 24px; margin-top: 36px; margin-bottom: 16px; }
.article-body h3, .article-content h3, .post-content h3 { color: #ddd; font-size: 20px; margin-top: 28px; margin-bottom: 12px; }
.article-body ul, .article-body ol, .article-content ul, .article-content ol { color: #c0c0c0; margin-bottom: 20px; padding-left: 24px; }
.article-body li, .article-content li { margin-bottom: 8px; line-height: 1.7; }

/* =============================================
   FIX 4: Advisory team — circular avatars
   ============================================= */
.nyad-avatar-zone {
  width: 100%;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
  background: transparent;
}
.nyad-avatar-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border: 3px solid rgba(14, 165, 233, 0.3);
  flex-shrink: 0;
}

/* =============================================
   FIX 5: CEO card avatar
   ============================================= */
.nyad-ceo-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border: 3px solid rgba(14, 165, 233, 0.4);
  margin-bottom: 20px;
}

/* =============================================
   FIX 6: Blog thumb images (real <img> tags)
   ============================================= */
.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.blog-featured-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

/* ===== CEO FEATURED CARD (nyad) ===== */
.nyad-ceo-card {
  background: rgba(14, 165, 233, 0.06);
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-radius: 16px;
  padding: 40px;
  max-width: 720px;
  width: 100%;
}
.nyad-ceo-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: #F8FAFC;
  margin-bottom: 4px;
}
.nyad-ceo-title {
  font-size: 1rem;
  font-weight: 600;
  color: #0EA5E9;
  margin-bottom: 20px;
}
.nyad-ceo-bio p {
  color: #94A3B8;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.nyad-ceo-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.nyad-ceo-meta span {
  color: #64748B;
  font-size: 14px;
}
.nyad-ceo-meta span i { margin-right: 6px; color: #0EA5E9; }
.nyad-linkedin-link {
  color: #0EA5E9;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.nyad-linkedin-link:hover { color: #38BDF8; }

/* ===== TEAM GRID (nyad) ===== */
.nyad-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.nyad-team-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.nyad-team-card:hover {
  box-shadow: 0 8px 32px rgba(14,165,233,0.15);
  transform: translateY(-4px);
}
.nyad-avatar-zone {
  width: 100%;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
  background: transparent;
}
.nyad-avatar-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border: 3px solid rgba(14, 165, 233, 0.3);
  flex-shrink: 0;
}
.nyad-name-zone {
  padding: 16px 16px 4px;
  font-size: 1rem;
  font-weight: 700;
  color: #F8FAFC;
  height: 44px;
  overflow: hidden;
}
.nyad-title-zone {
  padding: 0 16px 8px;
  font-size: 0.8125rem;
  color: #0EA5E9;
  height: 36px;
  overflow: hidden;
}
.nyad-card-bio {
  padding: 0 16px 12px;
  font-size: 0.8125rem;
  color: #94A3B8;
  line-height: 1.6;
  flex-grow: 1;
}
.nyad-footer-zone {
  padding: 0 16px 16px;
  margin-top: auto;
}
.nyad-footer-zone a {
  color: #0EA5E9;
  font-size: 1rem;
  text-decoration: none;
}
.nyad-footer-zone a:hover { color: #38BDF8; }

@media (max-width: 768px) {
  .nyad-team-grid { grid-template-columns: 1fr; }
}


/* Disable spinning logo animation */
.logo-icon, .navbar-brand i, nav .logo i { animation: none !important; }

/* Hide decorative rings */
.growth-rings, .text-circle { display: none !important; }

/* Fix feature visual - no spinning */
.feature-visual, .feature-visual i, .feature-visual img { animation: none !important; }
.feature-visual img { width: 80px; height: 80px; object-fit: cover; border-radius: 50%; }

/* Fix feature CTA button text visible */
.feature-cta { display: inline-block; padding: 12px 24px; background: #0EA5E9; color: #FFFFFF !important; border-radius: 6px; font-weight: 600; text-decoration: none; }
.feature-cta:hover { background: #0284C7; color: #FFFFFF !important; }

.feature-visual { display: none !important; }

/* Fix active nav-item icon display */
.nav-item.active .nav-item-icon { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; overflow: visible; }
.nav-item.active .nav-item-icon i { font-size: 1.5rem !important; display: inline-block; width: auto; height: auto; }

/* Constrain about-visual images */
.about-visual img { max-height: 400px; width: auto; max-width: 100%; object-fit: contain; }
