/* ============================================================
   CRICKET UNIVERSE — style.css (Improved)
   Changes marked with  ✅ CHANGED  or  ✅ NEW
   ============================================================ */

/* ✅ CHANGED: CSS custom properties for easy theming */
:root {
  --clr-bg:        #071428;
  --clr-surface:   #0d2244;
  --clr-surface2:  #132f55;
  --clr-accent:    #f97316;
  --clr-accent-lt: #fb923c;
  --clr-sky:       #38bdf8;
  --clr-text:      #e2eaf8;
  --clr-muted:     #94a3b8;
  --clr-glass:     rgba(255, 255, 255, 0.06);
  --clr-glass-border: rgba(255, 255, 255, 0.12);
  --radius-card:   16px;
  --shadow-card:   0 8px 32px rgba(0, 0, 0, 0.45);
  --transition:    0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ─── BODY ─── */
/* ✅ CHANGED: Darker, richer base + slightly more readable line-height */
body {
  font-family: 'Poppins', sans-serif;
  background: var(--clr-bg);
  color: var(--clr-text);
  background-image:
    linear-gradient(rgba(7, 20, 40, 0.82), rgba(7, 20, 40, 0.82)),
    url("images-all/back-std.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  line-height: 1.7;
}

/* ─── NAVBAR ─── */
/* ✅ CHANGED: Glassmorphism navbar — blurred, semi-transparent */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7, 20, 40, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-glass-border);
  padding: 14px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
  flex-wrap: wrap;
  transition: box-shadow var(--transition);
}

/* ✅ NEW: Shadow appears when user scrolls down */
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.55);
}

/* ✅ CHANGED: Larger, bolder logo */
.logo {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
}

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: var(--transition);
}

/* ─── NAV LINKS ─── */
nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* ✅ CHANGED: Pill-style links with hover background */
nav a {
  text-decoration: none;
  color: #b0c4de;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 30px;
  transition: var(--transition);
}

nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* ✅ NEW: Active page highlight */
nav a.nav-active {
  color: var(--clr-sky);
  background: rgba(56, 189, 248, 0.12);
}

/* ─── HERO ─── */
/* ✅ CHANGED: Richer gradient + more padding + staggered animation */
.hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #071428 0%, #0f2a5c 50%, #071428 100%);
  padding: 80px 20px 60px;
  position: relative;
  overflow: hidden;
}

/* ✅ NEW: Subtle radial glow behind hero content */
.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(56,189,248,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ✅ NEW: Hero badge pill */
.hero-badge {
  display: inline-block;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.4);
  color: var(--clr-accent-lt);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 22px;
  letter-spacing: 0.4px;
  animation: fadeSlideDown 0.7s ease both;
}

/* ✅ CHANGED: Bigger, bolder headline */
.hero h1 {
  font-size: clamp(28px, 5.5vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  animation: fadeSlideDown 0.8s 0.1s ease both;
}

/* ✅ NEW: Accent color for second line of heading */
.hero-accent {
  color: var(--clr-sky);
}

/* ✅ CHANGED: Slightly bigger, more readable subtitle */
.hero p {
  max-width: 560px;
  margin-bottom: 32px;
  font-size: clamp(14px, 2.5vw, 18px);
  color: var(--clr-muted);
  animation: fadeSlideDown 0.8s 0.2s ease both;
}

/* ✅ NEW: Two-button CTA group */
.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeSlideDown 0.8s 0.3s ease both;
}

/* ─── BUTTONS ─── */
/* ✅ CHANGED: Split into primary + ghost variants */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  letter-spacing: 0.2px;
}

.btn-primary {
  background: var(--clr-accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover {
  background: var(--clr-accent-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249, 115, 22, 0.5);
}

/* ✅ NEW: Ghost / outline button style */
.btn-ghost {
  background: rgba(255,255,255,0.07);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-2px);
}

/* ─── HERO IMAGES ─── */
.hero-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 50px;
  animation: fadeSlideDown 0.8s 0.45s ease both;
}

/* ✅ CHANGED: Rounded images with glow + scale on hover */
.hero-img {
  width: clamp(130px, 22vw, 210px);
  aspect-ratio: 3/4;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.6);
  transition: var(--transition);
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.08);
}

.hero-img:hover {
  transform: scale(1.06) translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.7), 0 0 0 2px var(--clr-sky);
}

/* ✅ NEW: Center image slightly larger */
.hero-img--center {
  width: clamp(150px, 26vw, 240px);
  transform: translateY(-10px);
}

.hero-img--center:hover {
  transform: scale(1.06) translateY(-14px);
}

/* ─── FEATURES ─── */
/* ✅ CHANGED: Added section-label + more generous padding */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  padding: 80px 40px;
  position: relative;
}

/* ✅ NEW: Section label (floating pill above section) */
.section-label {
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--clr-sky);
  opacity: 0.7;
}

/* ✅ CHANGED: Glassmorphism cards */
.feature-card {
  background: var(--clr-glass);
  border: 1px solid var(--clr-glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 36px 28px;
  border-radius: var(--radius-card);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* ✅ NEW: Subtle glow streak at top of card */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-sky), transparent);
  opacity: 0;
  transition: var(--transition);
}

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

/* ✅ NEW: Card icon */
.card-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 19px;
  font-weight: 700;
  color: var(--clr-sky);
}

.feature-card p {
  font-size: 14px;
  color: var(--clr-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ✅ CHANGED: Animated underline on card link */
.card-link {
  color: var(--clr-accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  position: relative;
  padding-bottom: 2px;
}

.card-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-accent);
  transition: var(--transition);
}

.card-link:hover::after {
  width: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
  border-color: rgba(56, 189, 248, 0.25);
}

/* ─── STATS ─── */
/* ✅ CHANGED: Added section header + stats now in sub-grid */
.stats {
  padding: 20px 40px 80px;
  text-align: center;
}

/* ✅ NEW: Stats section heading */
.stats-header {
  margin-bottom: 40px;
}

.stats-title {
  font-size: clamp(20px, 3.5vw, 30px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.stats-subtitle {
  color: var(--clr-muted);
  font-size: 14px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

/* ✅ CHANGED: Glass stat cards with top accent line */
.stat {
  background: var(--clr-glass);
  border: 1px solid var(--clr-glass-border);
  backdrop-filter: blur(10px);
  padding: 36px 20px;
  border-radius: var(--radius-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-sky));
  transform: scaleX(0);
  transition: var(--transition);
}

.stat:hover::after {
  transform: scaleX(1);
}

.stat h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: var(--clr-accent);
  letter-spacing: -0.5px;
}

.stat p {
  font-size: 13px;
  color: var(--clr-muted);
  margin-top: 8px;
  font-weight: 500;
}

.stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(249, 115, 22, 0.3);
}

/* ─── LIVE SECTION ─── */
.live-indicator {
  text-align: center;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: bold;
}

/* ✅ CHANGED: Dot now pulses with a ring */
.dot {
  height: 10px;
  width: 10px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
  position: relative;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.live-box {
  background: var(--clr-glass);
  border: 1px solid var(--clr-glass-border);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-card);
  padding: 20px 30px;
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
}

/* ─── PROFILE ─── */
.profile {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

.profile h1 {
  font-size: clamp(22px, 4vw, 36px);
  margin-bottom: 15px;
  color: var(--clr-sky);
}

.profile h2 {
  font-size: clamp(18px, 3vw, 24px);
  margin: 30px 0 15px;
  color: var(--clr-accent);
}

.profile p {
  margin-bottom: 20px;
  font-size: 15px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  color: var(--clr-muted);
}

/* ─── GALLERY ─── */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 30px 0;
}

/* ✅ CHANGED: Gallery images with zoom + vignette overlay */
.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-card);
  transition: var(--transition);
  border: 1px solid var(--clr-glass-border);
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(0,0,0,0.6);
  border-color: var(--clr-sky);
}

/* ─── LIST ─── */
ul {
  list-style: none;
  padding: 0;
  max-width: 500px;
  margin: 20px auto;
}

ul li {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  margin: 10px 0;
  padding: 12px 18px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  transition: var(--transition);
  text-align: left;
  font-size: 15px;
}

ul li:hover {
  background: rgba(255,255,255,0.12);
  transform: translateX(6px);
  border-color: rgba(56,189,248,0.25);
}

/* ─── TABLE ─── */
.table-wrapper {
  overflow-x: auto;
  margin-top: 20px;
  border-radius: var(--radius-card);
  border: 1px solid var(--clr-glass-border);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 300px;
}

table th, table td {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 13px 16px;
  font-size: 14px;
  text-align: center;
}

table th {
  background: #0f2a5c;
  color: var(--clr-sky);
  font-weight: 600;
  letter-spacing: 0.3px;
}

table tr:nth-child(even) {
  background: rgba(255,255,255,0.04);
}

table tr:hover {
  background: rgba(56,189,248,0.06);
}

/* ─── TWO COLUMN ─── */
.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.two-column img {
  width: min(400px, 100%);
  border-radius: 14px;
  border: 1px solid var(--clr-glass-border);
}

/* ─── FOOTER ─── */
/* ✅ CHANGED: Subtle top border + improved brand block */
.footer {
  background: rgba(2, 6, 23, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--clr-glass-border);
  color: var(--clr-text);
  padding-top: 50px;
  margin-top: 80px;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 20px 40px;
  gap: 40px;
}

.footer-section {
  min-width: 160px;
  max-width: 260px;
  flex: 1;
}

/* ✅ NEW: Brand block in footer */
.footer-logo {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.footer-section h3 {
  margin-bottom: 16px;
  color: var(--clr-sky);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-section p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--clr-muted);
}

.footer-section a {
  display: block;
  color: var(--clr-muted);
  text-decoration: none;
  margin: 7px 0;
  font-size: 13px;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--clr-sky);
  padding-left: 4px;
}

/* ✅ CHANGED: Footer bottom with subtle divider */
.footer-bottom {
  text-align: center;
  padding: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  color: var(--clr-muted);
  margin-top: 20px;
}

/* ─── GLOBAL ─── */
img {
  max-width: 100%;
  height: auto;
}

/* ─── SCROLL-REVEAL ANIMATION ─── */
/* ✅ NEW: Elements start invisible and slide up */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease var(--delay, 0s),
              transform 0.6s ease var(--delay, 0s);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─── HERO ENTRY ANIMATIONS ─── */
/* ✅ NEW */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

.fade-in {
  animation: fadeIn 1s ease;
}

/* ─── TABLET (max 900px) ─── */
@media (max-width: 900px) {
  .features { padding: 60px 20px 40px; }
  .stats    { padding: 20px 20px 50px; }
  .profile  { padding: 30px 15px; }
  .footer-container { padding: 20px 24px; }
}

/* ─── MOBILE (max 768px) ─── */
@media (max-width: 768px) {

  .hamburger { display: flex; }

  nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding-top: 10px;
  }

  nav.open { display: flex; }

  nav a {
    padding: 10px 8px;
    border-top: 1px solid rgba(255,255,255,0.07);
    font-size: 15px;
    border-radius: 0;
  }

  .hero {
    min-height: auto;
    padding: 50px 15px 40px;
  }

  .hero-images { gap: 10px; margin-top: 36px; }

  .hero-img--center {
    transform: translateY(-6px);
  }

  .features {
    grid-template-columns: 1fr;
    padding: 60px 15px 30px;
    gap: 18px;
  }

  .stats { padding: 20px 15px 40px; }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .profile { padding: 25px 15px; }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 15px;
  }

  .footer-section { max-width: 100%; }
  .footer-section a:hover { padding-left: 0; }

  body { background-attachment: scroll; }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery img { height: 150px; }

  table th, table td {
    padding: 8px 10px;
    font-size: 13px;
  }

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

/* ─── SMALL MOBILE (max 480px) ─── */
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .logo { font-size: 16px; }

  .btn {
    padding: 11px 22px;
    font-size: 14px;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .gallery img { height: 120px; }
}

/* ============================================================
   INNER PAGES — Additional styles for rohit, mumbai, stadium,
   jamia, live, about-project pages
   ============================================================ */

/* ─── PAGE HERO (replaces plain profile h1 on inner pages) ─── */
.page-hero {
  min-height: 42vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #071428 0%, #0f2a5c 50%, #071428 100%);
  padding: 80px 20px 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(56,189,248,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 115, 22, 0.13);
  border: 1px solid rgba(249, 115, 22, 0.38);
  color: var(--clr-accent-lt);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 22px;
  letter-spacing: 0.4px;
  animation: fadeSlideDown 0.7s ease both;
}

.page-hero h1 {
  font-size: clamp(26px, 5vw, 50px);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 16px;
  animation: fadeSlideDown 0.8s 0.1s ease both;
}

.page-hero p {
  max-width: 540px;
  font-size: clamp(14px, 2.2vw, 17px);
  color: var(--clr-muted);
  animation: fadeSlideDown 0.8s 0.2s ease both;
}

/* ─── PROFILE (page content wrapper) ─── */
.profile {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 30px 20px;
}

/* ─── SECTION BLOCK (card-like content block on inner pages) ─── */
.section-block {
  background: var(--clr-glass);
  border: 1px solid var(--clr-glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  margin-bottom: 28px;
}

.section-block h2 {
  font-size: clamp(17px, 2.5vw, 22px);
  font-weight: 700;
  color: var(--clr-accent);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.section-block p {
  font-size: 15px;
  color: var(--clr-muted);
  line-height: 1.75;
}

.section-block ul {
  margin: 12px 0 0 0;
  max-width: 100%;
}

.section-block ul li {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  font-size: 14px;
}

/* ─── PROFILE INTRO (image + text side by side on rohit.html) ─── */
.profile-intro {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  background: var(--clr-glass);
  border: 1px solid var(--clr-glass-border);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.profile-hero-img {
  width: 260px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 12px 36px rgba(0,0,0,0.55);
  border: 2px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
  transition: var(--transition);
}

.profile-hero-img:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 48px rgba(0,0,0,0.65), 0 0 0 2px var(--clr-sky);
}

.profile-intro-text {
  flex: 1;
  min-width: 220px;
}

.profile-intro-text h2 {
  font-size: clamp(17px, 2.5vw, 22px);
  font-weight: 700;
  color: var(--clr-accent);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.profile-intro-text p {
  font-size: 15px;
  color: var(--clr-muted);
  line-height: 1.75;
}

/* ─── ARCHITECTURE FLOW (about-project.html) ─── */
.about-arch {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  background: var(--clr-glass);
  border: 1px solid var(--clr-glass-border);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  margin-bottom: 28px;
  text-align: center;
}

.arch-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 28px;
  min-width: 70px;
}

.arch-step span {
  font-size: 11px;
  font-weight: 600;
  color: var(--clr-sky);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.arch-arrow {
  font-size: 20px;
  color: var(--clr-accent);
  font-weight: 700;
  padding: 0 4px;
  margin-bottom: 16px;
}

/* ─── MOBILE ADJUSTMENTS FOR INNER PAGES ─── */
@media (max-width: 768px) {
  .profile { padding: 40px 15px 20px; }
  .section-block { padding: 24px 18px; }
  .profile-intro { flex-direction: column; padding: 24px 18px; gap: 22px; }
  .profile-hero-img { width: 100%; max-width: 320px; margin: 0 auto; display: block; }
  .about-arch { gap: 4px; padding: 24px 12px; }
  .arch-step { min-width: 52px; font-size: 22px; }
  .arch-arrow { font-size: 16px; margin-bottom: 12px; }
  .page-hero { min-height: auto; padding: 60px 15px 40px; }
}
