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


:root {
  --bg: #0b0f1a;
  --surface: rgba(18, 24, 38, 0.75);
  --surface-scrolled: rgba(18, 24, 38, 0.9);
  --surface-solid: #121826;

  --text: #e6edf6;
  --muted: #9aa4b2;
  --line: rgba(255, 255, 255, 0.08);

  --primary: #3b82f6; /* electric blue */
  --primary-soft: rgba(59, 130, 246, 0.12);

  --accent-purple: #a855f7;
  --accent-cyan: #22d3ee;

  --shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  --shadow-hover: 0 25px 60px rgba(0, 0, 0, 0.8);
  --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.35);

  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --navbar-top: 20px;
  --navbar-black: rgba(5, 8, 15, 0.88);     
  --navbar-black-scrolled: rgba(5, 8, 15, 0.96);
  --navbar-border: rgba(255, 255, 255, 0.06);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;

  background:
    radial-gradient(circle at 20% 20%, rgba(59,130,246,0.15), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(168,85,247,0.12), transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(34,211,238,0.10), transparent 40%),
    var(--bg);

  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .founder-card {
    flex-direction: column;
    align-items: center;   /* THIS centers image + text block */
    text-align: center;
  }

  .founder-image {
    width: 100%;
    display: flex;
    justify-content: center; /* forces image to center */
  }

  .founder-image img {
    width: 220px;
    height: 220px;
    margin: 0 auto;
  }

  .founder-content {
    width: 100%;
    max-width: 100%;
  }
}
.founder-image img {
  width: 300px;
  height: 300px;
  max-width: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.founder-card.spotlight {
  position: relative;
   display: flex;
  align-items: center;   /* ⭐ KEY FIX (vertical centering) */
  justify-content: center;
  gap: 2rem;
  padding: 28px;
  border-radius: 24px;
  background: rgba(18, 24, 38, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gap-section {
  position: relative;
  border-radius: 20px;
  padding: 120px 20px;
  background: #0b0f19;
  color: white;
  overflow: hidden;
}

/* glowing background layer */
.gap-section::before {
  content: "";
  position: absolute;
  inset: 0;

  background: var(--glow,
    radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.25), transparent 60%)
  );

  opacity: 1;
  transition: background 0.2s ease;
  pointer-events: none;
  z-index: 0;
}

/* keep content above glow */
.gap-container {
  position: relative;
  z-index: 1;
}

.gap-container {
  max-width: 900px;
  margin: 0 auto;
}

.gap-container h2 {
  font-size: 3rem;
  margin-bottom: 40px;
}

.reveal-text {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 20px;

  opacity: 0;
  transform: scale(0.96) translateY(18px);
  filter: blur(8px);

  transition: all 0.9s ease;
  will-change: transform, opacity, filter;
}

.reveal-text.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: blur(0px);
}

.highlight {
  font-size: 1.5rem;
  font-weight: 600;
  color: #7c3aed;
}

.founder-content {
  max-width: 600px;
  width: 100%;
}
.founder-image{
  justify-self: start;
}
.founder-card {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-top: 30px;

  text-align: left;
}

.founder-content {
  max-width: 600px;
}

.founder-image {
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .founder-image img {
    width: 220px;
    height: 220px;
  }

  .founder-card {
    gap: 20px;
  }
}
.founder-image {
  flex-shrink: 0;
  perspective: 1000px;
}

.founder-image img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.founder-card.spotlight:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}

/* Parallax tilt effect */
.founder-card.spotlight:hover .founder-image img {
  transform: scale(1.09);
}
.mission-card {
  text-align: left;
}
.card blockquote {
  margin-top: 14px;
  padding-left: 14px;
  border-left: 2px solid var(--primary);
  color: var(--muted);
  font-style: italic;
  font-size: 0.9rem;
  opacity: 0.9;
}
.mission-card .highlight {
  margin-bottom: 10px;
  display: block;
}

.mission-card blockquote {
  margin-top: 14px;
  padding-left: 14px;
  border-left: 2px solid var(--primary);
  color: var(--muted);
  font-style: italic;
  font-size: 0.9rem;
  opacity: 0.9;
}
.navbar {
  width: min(1120px, calc(100% - 32px));
  position: sticky;
  top: var(--navbar-top);
  z-index: 1000;
  margin: var(--navbar-top) auto 0;
  padding: 18px 24px;
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  align-items: center;
  border-radius: 15px;
    background: var(--navbar-black);
  border: 1px solid var(--navbar-border);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.8),        /* depth */
    inset 0 1px 0 rgba(0, 0, 0, 0.08); /* subtle top light */

  transition:
    background 260ms var(--ease-premium),
    box-shadow 260ms var(--ease-premium),
    border-color 260ms var(--ease-premium);


}

.navbar.is-scrolled {
  background: var(--navbar-black-scrolled);
  border-color: rgba(19, 6, 6, 0.678);

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.95),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.navbar ul {
  margin-left: auto;
}
.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(59,130,246,0.08),
    rgba(168,85,247,0.08),
    transparent
  );

  opacity: 0.6;
}
.card p.highlight {
  font-weight: 600;
  opacity: 0.8;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.card p {
  line-height: 1.5;
  font-size: 0.95rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}
.logo-box {
  width: 120px;
  height: 50px;
  background: transparent;
  border: none;

  will-change: transform, box-shadow;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden; 
   transition: 
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.3s ease;
}
.logo-box:hover {
  box-shadow: 0 0 25px rgba(59,130,246,0.25);
  border-color: rgba(59,130,246,0.3);
  transform: translateY(-1px); /* subtle lift */
}
.founder-content h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.founder-content h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

.founder-content p {
  color: var(--muted);
  max-width: 500px;
}
.architect-card,
.company-profile,
.bmc {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

.architect-card.spotlight {
  background: rgba(18, 24, 38, 0.6);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  text-align: left;
}

.architect-card h2 {
  font-size: 2rem;
  margin-bottom: 6px;
}

.role {
  color: var(--primary);
  margin-bottom: 18px;
}

.architect-card blockquote {
  margin-top: 20px;
  padding-left: 16px;
  border-left: 3px solid var(--primary);
  color: var(--muted);
  font-style: italic;
}

.profile-grid,
.bmc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
  text-align: left;
}

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

  .architect-card.spotlight {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .founder-card.spotlight {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .founder-image img {
    width: 220px;
    height: 220px;
    transform: none !important;
  }
}
.founder-card.spotlight {
  align-items: stretch;
}

.founder-image,
.founder-content {
  align-self: center;
}
#logo-labs{
  width: 100%;
  height: auto;
  object-fit: contain; /* better than cover for logos */
  
  display: block;
}
#Perspective{
  text-align: center;
}
#quote{
  align-content: center;
}
.logo span {
  color: var(--primary);
}

.navbar ul {
  display: flex;
  gap: 12px;
  list-style: none;
  flex-wrap: wrap;
}

.navbar a {
  position: relative;
  text-decoration: none;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  transition:
    color 240ms var(--ease-premium),
    transform 240ms var(--ease-premium),
    background 240ms var(--ease-premium);
}

.navbar a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #60a5fa, #2563eb);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 240ms var(--ease-premium);
}

.navbar a:hover {
  background: var(--primary-soft);
  color: var(--primary);
  transform: scale(1.03);
}

.navbar a:hover::after,
.navbar a:focus-visible::after {
  transform: scaleX(1);
}

section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 20px;
  text-align: center;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: 92px;
  transform: scale(0.985);
  transform-origin: top center;
  transition: transform 900ms var(--ease-premium), opacity 700ms var(--ease-premium);
}

body.page-ready .hero {
  transform: scale(1);
}

.hero > *:not(.hero-bg-glow) {
  position: relative;
  z-index: 1;
}

.hero-bg-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-glow::before {
  content: "";
  position: absolute;
  inset: 10% 6% auto;
  height: 70%;
  background:
    radial-gradient(circle at 20% 30%, rgba(96, 165, 250, 0.16), transparent 38%),
    radial-gradient(circle at 80% 35%, rgba(168, 85, 247, 0.12), transparent 34%),
    radial-gradient(circle at 50% 75%, rgba(45, 212, 191, 0.1), transparent 36%);
  filter: blur(42px);
  opacity: 0.9;
}

.hero-glow-streak {
  position: absolute;
  left: 50%;
  top: 42%;
  width: min(34vw, 340px);
  height: min(12vw, 120px);
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      rgba(56, 189, 248, 0) 0%,
      rgba(56, 189, 248, 0.26) 18%,
      rgba(96, 165, 250, 0.38) 42%,
      rgba(168, 85, 247, 0.34) 68%,
      rgba(45, 212, 191, 0.14) 88%,
      rgba(45, 212, 191, 0) 100%
    );
  box-shadow:
    0 0 50px rgba(96, 165, 250, 0.16),
    0 0 90px rgba(168, 85, 247, 0.14);
  filter: blur(54px);
  opacity: 0.4;
  transform: translate(-50%, -50%) rotate(-12deg) scale(1);
  transform-origin: center;
  will-change: transform, left, top, opacity;
  animation: heroGlowFloat 8s ease-in-out infinite alternate;
}

@keyframes heroGlowFloat {
  0% {
    transform: translate(-50%, -50%) rotate(-12deg) scale(1);
  }

  100% {
    transform: translate(-48%, -52%) rotate(-9deg) scale(1.05);
  }
}

.tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.3);
  color: #93c5fd;
  font-size: 0.95rem;
  font-weight: 600;
}

.hero h1 {
  max-width: 700px;
  margin: 0 auto;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.08;
}

.hero p,
.about p,
.cta p,
.card p,
.mini-card p {
  color: var(--muted);
}

.hero p {
  max-width: 680px;
  margin: 18px auto 0;
  font-size: 1.08rem;
}

.hero-buttons {
  margin-top: 28px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  margin: 6px;
  font-size: 0.98rem;
  transform: translateY(0) scale(1);
  transition:
    transform 220ms var(--ease-premium),
    box-shadow 240ms var(--ease-premium),
    background 240ms var(--ease-premium),
    border-color 240ms var(--ease-premium);
}

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

.btn:active {
  transform: translateY(0) scale(0.98);
}

.primary {
  background: linear-gradient(135deg, #3b82f6, #a855f7);
  color: white;
  box-shadow: 0 0 25px rgba(59,130,246,0.4);
}

.primary:hover {
  box-shadow: 0 0 40px rgba(59,130,246,0.7);
}

.secondary {
background: linear-gradient(
  135deg,
  #1e293b,
  #020617
);
border: 1px solid rgba(59,130,246,0.2);
box-shadow: 0 0 20px rgba(59,130,246,0.15);
  border-color: var(--line);
  color: var(--text);
}

.hero-highlights,
.card-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 36px;
  align-items: start;
  text-align: left;
}

.about-title h2 {
  margin-bottom: 0;
}

.about-content > p {
  max-width: 640px;
  margin: 0;
}

.about-content .card-container {
  justify-content: flex-start;
}

.mini-card,
.card {
  background: var(--surface-solid);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition:
    transform 280ms var(--ease-premium),
    box-shadow 280ms var(--ease-premium),
    border-color 280ms var(--ease-premium);
}

.mini-card {
  width: 230px;
  padding: 22px 18px;
}

.mini-card h3,
.card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.about h2,
.cta h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}

.cta p {
  max-width: 640px;
  margin: 0 auto;
}

.card {
  width: 280px;
  padding: 28px 22px;
}

.card:hover,
.mini-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(59,130,246,0.25);
  border-color: rgba(59,130,246,0.4);
}

.featured {
  border-color: #93c5fd;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.cta {
  margin-bottom: 48px;
  background: linear-gradient(
    135deg,
    rgba(59,130,246,0.15),
    rgba(168,85,247,0.15)
  );
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.cta .btn {
  margin-top: 22px;
}

.footer {
  margin-top: 80px;
  padding: 60px 20px 20px;
  background: var(--surface-solid);
  border-top: 1px solid var(--line);
}

.footer-container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h3 {
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 1.2rem;
}

.footer-col p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-col ul li a {
  text-decoration: none;
  color: var(--muted);
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.about-full {
  grid-column: span 2;
}
@media (max-width: 768px) {
  .about-full {
    grid-column: span 1;
  }
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-item .icon {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}
@media (max-width: 768px) {

  .profile-grid {
    justify-items: center;
  }

  .profile-grid .card {
    width: 100%;
    max-width: 420px;  
    margin: 0 auto;    
  }

}
.card strong {
  color: #22c55e; 
}

.card:nth-child(4) strong {
  color: #f59e0b;
}

.card:nth-child(5) strong {
  color: #3b82f6; 
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 700ms var(--ease-premium),
    transform 700ms var(--ease-premium);
}
#links  {
  text-decoration: none;
  color: #9aa4b2;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 650ms var(--ease-premium),
    transform 650ms var(--ease-premium);
  transition-delay: var(--stagger-delay, 0ms);
}

.reveal.active > * {
  opacity: 1;
  transform: translateY(0);
}
.status.active {
  color: #22c55e;
}

.status.dev {
  color: #3b82f6; 
}
.status {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Active */
.status.active {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

/* In Development */
.status.dev {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Not Started */
.status.not-started {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
}
.copyright-glass {
  width: min(1120px, calc(100% - 32px));
  margin: 40px auto 0;
  padding: 14px 20px;
  text-align: center;

  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;

  color: #9aa4b2;
  font-size: 14px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
  .copyright-glass {
    width: 100%;
    border-radius: 10px;
    margin-top: 30px;
  }
}
.programs-section {
  padding: 80px 10%;
  text-align: center;
}

.programs-section h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.program-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 30px;
  transition: 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.program-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.program-icon {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #00f5ff;
}

.program-card h3 {
  margin-bottom: 10px;
}

.program-card p {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 15px;
}

.status {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
}
@media (max-width: 768px) {
  .navbar {
    padding: 18px;
    gap: 16px;
    flex-direction: column;
    align-items: center; /* center everything */
  }

  .navbar ul {
    margin-left: 0; /* REMOVE right push */
    width: 100%;
    display: flex;
    justify-content: center; /* center links horizontally */
    align-items: center;
    gap: 10px;
  }

  .navbar li {
    text-align: center;
  }
}
.status.active {
  background: #00ff88;
  color: #000;
}

.status.upcoming {
  background: orange;
  color: #000;
}
.copyright-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(59,130,246,0.1),
    rgba(168,85,247,0.1),
    transparent
  );
  opacity: 0.5;
  pointer-events: none;
}
.copyright-glass {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Finished */
.status.finished {
  color: #a855f7;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.3);
}
.status.not-started {
  color: #f59e0b; 
}
.status.active {
  color: #000000;
  text-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}
.status.finished {
  color: #8b5cf6; 
}
.hero-line {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 700ms var(--ease-premium),
    transform 700ms var(--ease-premium);
  transition-delay: var(--stagger-delay, 0ms);
}

body.page-ready .hero-line {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal > *,
  .hero-line,
  .hero {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-glow-streak {
    animation: none !important;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 18px;
    gap: 16px;
    flex-direction: column;
  }

  .navbar ul {
    justify-content: center;
  }

  section {
    padding: 72px 16px;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-glow-streak {
    width: min(52vw, 260px);
    height: min(20vw, 96px);
    opacity: 0.34;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .about-content > p {
    margin: 0 auto;
  }

  .about-content .card-container {
    justify-content: center;
  }

  .btn {
    width: 100%;
    max-width: 260px;
  }
}
