/* ═══════════════════════════════════════════════
   Team Colliderrs — Main Stylesheet
   css/style.css
═══════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --cream:  #F2EAD0;
  --cream2: #EDE0C4;
  --cream3: #E5D6B8;
  --dark:   #2C1A0E;
  --mid:    #8B5E2A;
  --gold:   #C9941A;
  --gold2:  #D4A853;
  --white:  #fff;
  --fh: 'Playfair Display', serif;
  --fb: 'Inter', sans-serif;
  --tr: all .3s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--fb); background: var(--cream); color: var(--dark); overflow-x: hidden; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--mid); border-radius: 4px; }

/* ════════════════════════════
   NAVBAR
════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--cream); border-bottom: 2.5px solid var(--dark);
  padding: 0 6%; display: flex; align-items: center; height: 72px; transition: var(--tr);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(44,26,14,.14); }

.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--dark); }
.nav-brand-text { font-family: var(--fh); font-size: 1.2rem; font-weight: 700; letter-spacing: .3px; }

.nav-links { display: flex; list-style: none; gap: 2rem; margin: 0 auto; }
.nav-links a {
  text-decoration: none; color: var(--dark); font-weight: 500;
  font-size: .93rem; position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--gold); transition: width .3s;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }

.btn-cta {
  background: var(--dark); color: var(--white); padding: 10px 22px;
  border-radius: 7px; text-decoration: none; font-weight: 600; font-size: .88rem;
  display: flex; align-items: center; gap: 7px; transition: var(--tr); white-space: nowrap;
}
.btn-cta:hover { background: var(--mid); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(44,26,14,.25); }

.hamburger { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--dark); margin-left: 1rem; }

/* Mobile menu — slide down animation */
.mobile-menu {
  position: fixed; top: 72px; left: 0; right: 0;
  background: var(--cream); border-bottom: 1px solid rgba(44,26,14,.15);
  padding: 0 6%; z-index: 999;
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.mobile-menu.open {
  max-height: 420px;
  padding: .5rem 6% 1.2rem;
}
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { padding: .85rem 0; border-bottom: 1px solid rgba(44,26,14,.07); }
.mobile-menu ul li:last-child { border-bottom: none; padding-bottom: .4rem; }
.mobile-menu ul li a {
  text-decoration: none; color: var(--dark); font-weight: 500;
  font-size: 1rem; display: block;
  /* bigger tap target */
  min-height: 44px; display: flex; align-items: center;
}
/* Hamburger → X transition */
.hamburger.open i::before { content: '\f00d'; }

/* ── ATOM LOGO ── */
.atom-wrap { width: 42px; height: 42px; flex-shrink: 0; }
.atom-svg  { width: 42px; height: 42px; }

/* ════════════════════════════
   HERO SECTION
════════════════════════════ */
#home {
  min-height: 100vh; display: flex; align-items: center;
  padding: 72px 6% 0;
  background: linear-gradient(135deg, var(--cream) 60%, var(--cream2) 100%);
  position: relative; overflow: hidden;
}
.hero-deco { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  width: 100%; max-width: 1200px; margin: 0 auto; padding: 5rem 0; position: relative; z-index: 1;
}
.hero-tag   { font-size: 1.05rem; color: var(--gold); font-style: italic; margin-bottom: 1rem; font-weight: 400; line-height: 1.5; }
.hero-h1    { font-family: var(--fh); font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: 800; line-height: 1.08; color: var(--dark); margin-bottom: 1.5rem; }
.hero-desc  { font-size: 1rem; color: #5c4033; line-height: 1.75; margin-bottom: 2.5rem; max-width: 490px; }
.hero-btns  { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Buttons */
.btn-pri {
  background: var(--dark); color: var(--white); padding: 14px 28px; border-radius: 8px;
  text-decoration: none; font-weight: 600; font-size: .95rem;
  display: inline-flex; align-items: center; gap: 8px; transition: var(--tr);
}
.btn-pri:hover { background: #1a0f08; transform: translateY(-3px); box-shadow: 0 10px 28px rgba(44,26,14,.3); }

.btn-sec {
  background: var(--cream2); color: var(--dark); padding: 14px 28px; border-radius: 8px;
  text-decoration: none; font-weight: 600; font-size: .95rem;
  display: inline-flex; align-items: center; gap: 8px; transition: var(--tr);
  border: 1.5px solid rgba(44,26,14,.15);
}
.btn-sec:hover { background: var(--cream3); transform: translateY(-3px); }

/* CEO Visual */
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.ceo-wrapper { position: relative; width: 320px; animation: floatCEO 4s ease-in-out infinite; }

@keyframes floatCEO {
  0%,  100% { transform: translateY(0); }
  50%        { transform: translateY(-22px); }
}

.ceo-badge-top {
  position: absolute; top: -24px; left: 24px; z-index: 10;
  width: 52px; height: 52px; background: var(--dark); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 3px solid var(--cream); box-shadow: 0 4px 16px rgba(0,0,0,.3);
}
.ceo-arch {
  width: 320px; height: 400px;
  background: linear-gradient(170deg, #C29060 0%, #8B6040 100%);
  border-radius: 160px 160px 22px 22px; overflow: hidden; position: relative;
  border: 3px solid rgba(212,168,83,.45); box-shadow: 0 24px 60px rgba(44,26,14,.28);
}
.ceo-arch img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.ceo-arch .img-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  background: linear-gradient(170deg, #C29060, #8B6040);
}
.ceo-arch .img-placeholder i { font-size: 3rem; color: rgba(255,255,255,.5); }
.ceo-arch .img-placeholder p { color: rgba(255,255,255,.6); font-size: .85rem; text-align: center; padding: 0 20px; }

.ceo-name-badge {
  position: absolute; bottom: 18px; left: 12px; right: 12px;
  background: rgba(15,8,3,.88); backdrop-filter: blur(10px);
  border-radius: 12px; padding: 13px 16px; border: 1px solid rgba(212,168,83,.2);
}
.ceo-nm { color: var(--white); font-weight: 700; font-size: 1.03rem; line-height: 1.2; }
.ceo-tl { color: var(--gold2); font-size: .82rem; margin-top: 3px; font-weight: 400; }

/* Dot grids */
.dot-grid { position: absolute; pointer-events: none; }
.dot-grid::before {
  content: ''; display: block; width: 80px; height: 80px;
  background-image: radial-gradient(circle, rgba(44,26,14,.22) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
}
.dg-tl { top: 20%;  left: -30px; }
.dg-br { bottom: 15%; right: -30px; }

/* ════════════════════════════
   SHARED SECTION STYLES
════════════════════════════ */
.sec-inner { max-width: 1200px; margin: 0 auto; }
.sec-tag   { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--gold); margin-bottom: .7rem; display: block; }
.sec-h     { font-family: var(--fh); font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 700; color: var(--dark); margin-bottom: 1.5rem; line-height: 1.15; }
.perspective-wrap { perspective: 1200px; }

/* ════════════════════════════
   WHY COLLIDERRS
════════════════════════════ */
#why { padding: 100px 6%; background: var(--cream); }
.collision-p  { font-size: 1.1rem; line-height: 1.85; color: #5c4033; max-width: 760px; margin-bottom: 1.2rem; }
.collision-p strong { color: var(--dark); font-weight: 700; }
.collision-by { font-family: var(--fh); font-size: 1.4rem; font-weight: 700; color: var(--dark); font-style: italic; margin-bottom: 3.5rem; }

.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.why-card {
  border-radius: 18px; overflow: hidden; aspect-ratio: 4/3; position: relative; cursor: pointer;
  box-shadow: 0 6px 24px rgba(44,26,14,.1); transform-style: preserve-3d; transition: transform .2s, box-shadow .2s;
}
.why-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.why-card:hover img { transform: scale(1.07); }
.why-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(44,26,14,.35) 0%, transparent 55%); }

/* ════════════════════════════
   PROJECTS
════════════════════════════ */
#projects-section { padding: 100px 6%; background: var(--cream2); }
.proj-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.8rem; margin-top: 3rem;
}
.proj-card { background: var(--cream); border-radius: 18px; overflow: hidden; transition: var(--tr); transform-style: preserve-3d; }
.proj-card:hover { transform: translateY(-8px); box-shadow: 0 22px 46px rgba(44,26,14,.13); }
.proj-img  { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.proj-info { padding: 1.5rem; }
.proj-title { font-family: var(--fh); font-weight: 700; font-size: 1.15rem; margin-bottom: .5rem; }
.proj-desc  { font-size: .9rem; color: #5c4033; line-height: 1.6; }
.proj-tags  { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .9rem; }
.proj-tag   { background: var(--cream2); border-radius: 20px; padding: 3px 11px; font-size: .75rem; font-weight: 500; color: var(--mid); }
.empty-msg  {
  grid-column: 1 / -1; text-align: center; padding: 3.5rem 2rem;
  background: var(--cream); border-radius: 18px; border: 2px dashed rgba(44,26,14,.18);
  color: var(--mid); font-size: 1rem;
}

/* ════════════════════════════
   ABOUT
════════════════════════════ */
#about-section { padding: 100px 6%; background: var(--dark); color: var(--cream); }
.about-inner   { max-width: 900px; margin: 0 auto; text-align: center; }
.about-inner .sec-tag { color: var(--gold2); }
.about-inner .sec-h   { color: var(--cream); }
.about-p { font-size: 1.07rem; line-height: 1.9; color: rgba(242,234,208,.82); margin-bottom: 1.4rem; }

/* ════════════════════════════
   VIDEO
════════════════════════════ */
#video-section { padding: 80px 6%; background: var(--cream2); }
.vid-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.vid-wrap {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  border-radius: 22px; box-shadow: 0 22px 60px rgba(44,26,14,.2); margin-top: 2.5rem;
}
.vid-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; border-radius: 22px; }

/* ════════════════════════════
   SOCIAL MEDIA
════════════════════════════ */
#social { padding: 80px 6%; background: var(--cream); }
.social-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.soc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; margin-top: 3rem; }
.soc-card {
  background: var(--cream2); border-radius: 18px; padding: 2rem 1.4rem;
  text-decoration: none; color: var(--dark); transition: var(--tr);
  border: 1.5px solid rgba(44,26,14,.06); transform-style: preserve-3d; display: block;
}
.soc-card:hover { transform: translateY(-10px) perspective(600px) rotateX(6deg); box-shadow: 0 22px 44px rgba(44,26,14,.14); }
.soc-icon   { font-size: 2.2rem; margin-bottom: .8rem; }
.soc-name   { font-weight: 700; font-size: .95rem; }
.soc-handle { font-size: .78rem; color: var(--mid); margin-top: 4px; }
.soc-card.ig .soc-icon { color: #E1306C; }
.soc-card.fb .soc-icon { color: #1877F2; }
.soc-card.tt .soc-icon { color: #010101; }
.soc-card.yt .soc-icon { color: #FF0000; }

/* ════════════════════════════
   STATS / MOTION GRAPHS
════════════════════════════ */
#stats { padding: 100px 6%; background: var(--dark); }
.stats-inner { max-width: 1200px; margin: 0 auto; }
.stats-inner .sec-tag { display: block; text-align: center; color: var(--gold2); }
.stats-inner .sec-h   { color: var(--cream); text-align: center; margin-bottom: .8rem; }
.stats-sub { text-align: center; color: rgba(242,234,208,.65); font-size: .97rem; margin-bottom: 4rem; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.8rem; margin-bottom: 4rem; }
.stat-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(212,168,83,.18);
  border-radius: 22px; padding: 2.5rem 1.5rem; text-align: center;
  transform-style: preserve-3d; transition: var(--tr);
}
.stat-card:hover { transform: translateY(-6px) perspective(600px) rotateX(4deg); border-color: rgba(212,168,83,.4); }

.ring-wrap { width: 120px; height: 120px; margin: 0 auto 1.4rem; position: relative; }
.ring-wrap svg { transform: rotate(-90deg); display: block; }
.ring-bg   { fill: none; stroke: rgba(255,255,255,.07); stroke-width: 8; }
.ring-fill {
  fill: none; stroke: var(--gold); stroke-width: 8; stroke-linecap: round;
  stroke-dasharray: 282.74; stroke-dashoffset: 282.74; transition: stroke-dashoffset 2.2s ease;
}
.ring-num {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--fh); font-size: 1.75rem; font-weight: 800; color: var(--cream);
}
.stat-lbl { color: rgba(242,234,208,.75); font-size: .88rem; line-height: 1.45; }

/* Bar comparison chart */
.bar-section { margin-top: 2rem; }
.bar-title   { color: var(--cream); font-family: var(--fh); font-size: 1.5rem; font-weight: 700; text-align: center; margin-bottom: 2.5rem; }
.bar-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; max-width: 800px; margin: 0 auto; }
.bar-col h4  { color: var(--gold2); font-size: .85rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.2rem; text-align: center; }
.bar-item    { margin-bottom: 1rem; }
.bar-label   { color: rgba(242,234,208,.75); font-size: .85rem; margin-bottom: .4rem; display: flex; justify-content: space-between; }
.bar-track   { background: rgba(255,255,255,.07); border-radius: 20px; height: 10px; overflow: hidden; }
.bar-fill    { height: 100%; border-radius: 20px; transition: width 2s ease; width: 0; }
.bar-fill.good { background: linear-gradient(90deg, var(--gold), #f0c040); }
.bar-fill.bad  { background: linear-gradient(90deg, #6b3a2a, #8b4a3a); }

/* ════════════════════════════
   CONTACT
════════════════════════════ */
#contact-section { padding: 80px 6%; background: var(--cream2); }
.contact-inner   { max-width: 700px; margin: 0 auto; text-align: center; }

/* ════════════════════════════
   FOOTER
════════════════════════════ */
footer { background: #150a04; color: var(--cream); padding: 60px 6% 28px; }
.ft-inner { max-width: 1200px; margin: 0 auto; }
.ft-top   { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }

.ft-brand-name { font-family: var(--fh); font-size: 1.35rem; font-weight: 700; display: flex; align-items: center; gap: 10px; margin-bottom: .8rem; }
.ft-desc  { font-size: .88rem; color: rgba(242,234,208,.55); line-height: 1.7; max-width: 300px; }
.ft-col h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gold2); margin-bottom: 1rem; }
.ft-links  { list-style: none; }
.ft-links li { margin-bottom: .45rem; }
.ft-links a  { color: rgba(242,234,208,.55); text-decoration: none; font-size: .88rem; transition: color .2s; }
.ft-links a:hover { color: var(--cream); }

.ft-bot  { border-top: 1px solid rgba(242,234,208,.08); padding-top: 1.4rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.ft-copy { font-size: .82rem; color: rgba(242,234,208,.4); }
.ft-soc  { display: flex; gap: 1.1rem; }
.ft-soc a { color: rgba(242,234,208,.5); font-size: 1.1rem; transition: color .2s; text-decoration: none; }
.ft-soc a:hover { color: var(--gold2); }

/* ════════════════════════════
   SCROLL REVEAL ANIMATIONS
════════════════════════════ */
.reveal       { opacity: 0; transform: translateY(28px);  transition: opacity .75s ease, transform .75s ease; }
.reveal.in    { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-30px); transition: opacity .75s ease, transform .75s ease; }
.reveal-left.in  { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px);  transition: opacity .75s ease, transform .75s ease; }
.reveal-right.in { opacity: 1; transform: translateX(0); }

/* ════════════════════════════
   RESPONSIVE — TABLET LANDSCAPE  ≤ 1024px
════════════════════════════ */
@media (max-width: 1024px) {
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .soc-grid    { grid-template-columns: repeat(2, 1fr); }
  .bar-grid    { grid-template-columns: 1fr; }
  .hero-inner  { gap: 3rem; }
  .ft-top      { grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; }
}

/* ════════════════════════════
   RESPONSIVE — TABLET PORTRAIT / LARGE PHONE  ≤ 768px
════════════════════════════ */
@media (max-width: 768px) {

  /* ── Navbar ── */
  .nav-links, .btn-cta { display: none; }
  .hamburger { display: block; }

  /* ── Mobile menu — bigger touch targets ── */
  .mobile-menu { padding: .5rem 5% 1rem; }
  .mobile-menu ul li { padding: .9rem 0; }
  .mobile-menu ul li a { font-size: 1rem; display: block; }

  /* ── Hero ── */
  #home {
    padding: 80px 5% 3rem;
    min-height: auto;
    align-items: flex-start;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2rem 0 1rem;
    text-align: center;
  }
  .hero-visual  { order: -1; justify-content: center; }
  .hero-tag     { text-align: center; }
  .hero-desc    { margin: 0 auto 2rem; max-width: 100%; }
  .hero-btns    { justify-content: center; flex-wrap: wrap; gap: .8rem; }
  .dot-grid     { display: none; }

  /* ── CEO arch — smaller on tablet ── */
  .ceo-wrapper  { width: 250px; animation-duration: 5s; }
  .ceo-arch     { width: 250px; height: 320px; border-radius: 125px 125px 18px 18px; }
  .ceo-badge-top { width: 44px; height: 44px; top: -18px; left: 20px; }
  .ceo-name-badge { padding: 10px 14px; bottom: 14px; }
  .ceo-nm       { font-size: .95rem; }
  .ceo-tl       { font-size: .78rem; }

  /* ── Sections ── */
  #why, #projects-section, #about-section,
  #video-section, #social, #stats,
  #contact-section { padding: 70px 5%; }

  /* ── Why Colliderrs ── */
  .why-grid       { grid-template-columns: 1fr; }
  .collision-by   { font-size: 1.1rem; }

  /* ── Stats ── */
  .stats-grid     { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .stats-sub      { font-size: .88rem; }
  .bar-grid       { grid-template-columns: 1fr; }
  .bar-title      { font-size: 1.25rem; }

  /* ── Social ── */
  .soc-grid       { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* ── Footer ── */
  .ft-top { grid-template-columns: 1fr; gap: 2rem; }
  .ft-bot { flex-direction: column; align-items: flex-start; gap: .8rem; }
}

/* ════════════════════════════
   RESPONSIVE — PHONE  ≤ 600px
════════════════════════════ */
@media (max-width: 600px) {

  /* ── Navbar ── */
  .nav-brand-text { font-size: 1.05rem; }

  /* ── Hero ── */
  #home { padding: 76px 4% 2.5rem; }
  .hero-h1  { font-size: clamp(2rem, 8vw, 2.8rem); line-height: 1.1; }
  .hero-tag { font-size: .95rem; }
  .hero-desc { font-size: .95rem; }

  /* ── CEO arch ── */
  .ceo-wrapper  { width: 220px; }
  .ceo-arch     { width: 220px; height: 280px; border-radius: 110px 110px 16px 16px; }

  /* ── Buttons — full width on phone ── */
  .btn-pri, .btn-sec {
    width: 100%; max-width: 300px;
    justify-content: center; padding: 13px 20px;
  }

  /* ── Sections ── */
  #why, #projects-section, #about-section,
  #video-section, #social, #stats,
  #contact-section { padding: 60px 4%; }

  /* ── Why images height ── */
  .why-card { aspect-ratio: 3/2; }

  /* ── Stats rings — smaller on phones ── */
  .stats-grid   { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-card    { padding: 1.6rem 1rem; border-radius: 16px; }
  .ring-wrap    { width: 100px; height: 100px; margin-bottom: 1rem; }
  .ring-wrap svg { width: 100px !important; height: 100px !important; }
  .ring-num     { font-size: 1.5rem; }
  .stat-lbl     { font-size: .8rem; }

  /* ── Social cards ── */
  .soc-grid     { grid-template-columns: repeat(2, 1fr); gap: .9rem; }
  .soc-card     { padding: 1.5rem 1rem; border-radius: 14px; }
  .soc-icon     { font-size: 1.8rem; margin-bottom: .5rem; }
  .soc-name     { font-size: .88rem; }
  .soc-handle   { font-size: .72rem; }

  /* ── Projects ── */
  .proj-grid    { grid-template-columns: 1fr; }

  /* ── Video ── */
  .vid-wrap     { border-radius: 14px; }

  /* ── About ── */
  .about-p { font-size: 1rem; }

  /* ── Section headings ── */
  .sec-h { font-size: clamp(1.7rem, 7vw, 2.5rem); }
  .collision-p  { font-size: 1rem; }
  .collision-by { font-size: 1.05rem; }

  /* ── Footer ── */
  footer { padding: 50px 4% 24px; }
  .ft-brand-name { font-size: 1.2rem; }
}

/* ════════════════════════════
   RESPONSIVE — SMALL PHONE  ≤ 400px
════════════════════════════ */
@media (max-width: 400px) {
  .hero-h1      { font-size: clamp(1.8rem, 9vw, 2.4rem); }
  .ceo-wrapper  { width: 195px; }
  .ceo-arch     { width: 195px; height: 250px; border-radius: 98px 98px 14px 14px; }
  .ceo-badge-top { width: 38px; height: 38px; }

  .stats-grid   { grid-template-columns: 1fr 1fr; gap: .8rem; }
  .ring-wrap    { width: 88px; height: 88px; }
  .ring-wrap svg { width: 88px !important; height: 88px !important; }
  .ring-num     { font-size: 1.25rem; }

  .soc-grid     { grid-template-columns: 1fr 1fr; gap: .7rem; }
  .soc-card     { padding: 1.2rem .8rem; }

  .btn-pri, .btn-sec { max-width: 100%; font-size: .9rem; padding: 12px 18px; }
  .bar-section  { display: none; } /* hide bar chart on very small screens, rings are enough */
}
