/* ==========================================================
   UNFAIR GROWTH - MAIN STYLESHEET
   Purpose: Layout, colors, spacing, typography, responsiveness
   Edit safely using the comments below.
========================================================== */


/* ===============================
   DESIGN VARIABLES (EDIT HERE)
================================ */

:root {
  /* Brand Colors */
  --coffee: #220901;
  --garnet: #621708;
  --oxblood: #941B0C;
  --rust: #BC3908;
  --orange: #F6AA1C;

  /* Text Colors */
  --text-main: #ffffff;
  --text-muted: #e6dddd;

  /* Layout Sizes */
  --container-width: 1200px;
  --section-padding: 110px;
  --radius: 18px;

  /* Effects */
  --border-light: rgba(246,170,28,0.12);
  --shadow-soft: 0 12px 40px rgba(0,0,0,0.35);
}


/* ===============================
   RESET & BASE STYLES
================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--coffee);
  color: var(--text-main);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}


/* ===============================
   GLOBAL LAYOUT HELPERS (FIXED)
================================ */

/* Sections control vertical rhythm ONLY */
section {
padding-top: calc(var(--section-padding) * 0.85);
  padding-bottom: var(--section-padding);
  padding-left: 6%;
  padding-right: 6%;
  border-top: 1px solid var(--border-light);
  overflow: hidden;
  position: relative;
  margin-bottom: -0;
  margin-top: -0;
  top: -0;
  transform: translateY(-);


}

/* Content width control */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
}

/* Remove extra space at section bottom (critical) */
section > *:last-child {
  margin-bottom: 0;
}

/* ===============================
   TYPOGRAPHY (REFINED)
================================ */

h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  letter-spacing: -0.04em;
  margin-bottom: 0.4em;
  margin-top: -0.4em;
  
}


h2 {
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 0.3em;
  margin-top: -0.2em;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5em;
}

p {
  color: var(--text-muted);
  max-width: 720px;
  margin-bottom: 0.8em;
}

/* Heading → paragraph spacing */
h1 + p,
h2 + p,
h3 + p {
  margin-top: 8px;
}


ul {
  padding-left: 18px;
  margin-bottom: 0;
}

li {
  margin-bottom: 6px;
  color: var(--text-muted);
}

ul li:last-child {
  margin-bottom: 0;
}










/* ===============================
   BUTTONS
================================ */

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--rust), var(--orange));
  color: #220901;
  padding: 16px 42px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;

  /* Glow effect */
  box-shadow: 0 0 30px rgba(246,170,28,0.45);
  transition: 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(246,170,28,0.7);
}






/* ===============================
   HERO / HEADER
================================ */

.hero {
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* Cinematic layered background */
  background:
    radial-gradient(circle at 20% 30%, rgba(207, 140, 15, 0.18), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(188,57,8,0.22), transparent 45%),
    linear-gradient(180deg, #220901 0%, #4e0f03 60%, #220901 100%);
}
.hero p {
  margin-left: auto;
  margin-right: auto;
}
 
/* Gradient text for main headline */
.hero h1 {
  background: linear-gradient(135deg, #ffffff, #f6aa1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-tagline {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.hero-description {
  margin: 0 auto 30px;
}

.hero-tagline{
text-align: center;
}

.hero-subtext {
  margin-top: 14px;
  font-size: 0.9rem;
  opacity: 0.7;
}


/* ===============================
   HOW IT WORKS
================================ */


.how-it-works {
  background:
    radial-gradient(circle at 15% 20%, rgba(246,170,28,0.12), transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(148,27,12,0.18), transparent 45%),
    linear-gradient(180deg, #220901 0%, #3a0c03 55%, #220901 100%);
  text-align: center;
  padding: 120px 0;
}

.how-it-works h2 {
  color: #f6aa1c;
  margin-bottom: 40px;
  margin-top: -20px;
}

/* Grid */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* Card */
.step {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(253, 209, 64, 0.18);
  border-radius: 18px;
  padding: 36px;

  display: flex;              /* 🔑 */
  flex-direction: column;     /* 🔑 */

  text-align: left;

  box-shadow: 0 20px 40px rgba(0,0,0,0.4);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.55);
  border-color: rgba(246,170,28,0.45);
}

.step h3 {
  color: #f6aa1c;
  margin-bottom: 14px;
}

.step ul {
  padding-left: 18px;
}

.step ul li {
  margin-bottom: 10px;
  color: rgba(255,255,255,0.9);
}

/* 🔒 IMAGE LOCKED TO BOTTOM */
.step-visual {
  margin-top: auto; /* 🔥 KEY FIX */

  width: 100%;
  height: 150px;
  padding: 16px;
  margin-top: auto;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(
      145deg,
      rgba(246,170,28,0.18),
      rgba(148,27,12,0.22)
    );

  border-radius: 16px;
  border: 1px solid rgba(246,170,28,0.35);

  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.06),
    0 12px 30px rgba(0,0,0,0.45);

  overflow: hidden;
  position: relative;
}

/* Human frame */
.step-visual::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 12px;
  box-shadow: inset 0 0 18px rgba(0,0,0,0.25);
  pointer-events: none;
}

/* Image */
.step-visual img {
  max-width: 78%;
  max-height: 78%;
  object-fit: contain;

  filter:
    drop-shadow(0 6px 12px rgba(0,0,0,0.35))
    saturate(1.05)
    contrast(1.05);

  transition: transform 0.35s ease;
}

/* Image reacts WITH card hover */
.step:hover .step-visual img {
  transform: scale(1.06);
}

/* Responsive */
@media (max-width: 1100px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .steps {
    grid-template-columns: 1fr;
  }
}







/* =========================================================
   TRUSTED BY – PROFESSIONAL VERSION
   Purpose: Premium animated logo showcase
========================================================= */

.trusted-pro {
  position: relative;

  /* Stack heading ABOVE slider */
  display: flex;
  flex-direction: column;
  align-items: center;

  /* Consistent spacing */
  gap: 10px;
  padding: 120px 0;
  text-align: center;

  /* Premium background using brand palette */
  background:radial-gradient(circle at 40% 20%, rgba(148,27,12,0.45), transparent 45%),
  radial-gradient(circle at 70% 70%, rgba(228, 12, 12, 0.25), transparent 50%),
  linear-gradient(180deg, #160500, #220901);



  overflow: hidden; /* Prevent horizontal scroll */
}

/* Section heading spacing */
.trusted-pro h2 {
  margin-bottom: 10px;
  margin-top: -10px;
}

/* ================= MARQUEE CONTAINER ================= */

.logo-marquee {
  width: 100%;
  overflow: hidden; /* Hide offscreen logos */
}

/* ================= LOGO TRACK =================
   - Moves horizontally forever
   - Pauses on hover
================================================= */

.logo-track {
  display: flex;
  gap: 40px;

  animation: scroll 40s linear infinite;
  padding: 10px 0;
}

/* Pause animation when user hovers */
.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

/* ================= LOGO CARD =================
   - Fixed dimensions = consistent UI
   - Logos NEVER crop
================================================= */

.logo-card {
  flex: 0 0 260px;     /* Fixed width */
  min-width: 260px;
  min-height: 250px;

  background: rgba(255,255,255,0.04);
  border-radius: 14px;

  box-shadow: 0 28px 60px rgba(0,0,0,0.55);
  border-color: rgba(232, 0, 0, 0.45);
  

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 16px;
  cursor: pointer;
  position: relative;

  /* Premium depth */
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.06),
    0 10px 30px rgba(0,0,0,0.4);

  transition: all 0.35s ease;
}

/* .trusted-pro:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.55);
  border-color: rgba(246, 170, 28, 0.034);
} */



/* Glow border on hover */
.logo-card::after {
   content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  box-shadow: 0 0 28px rgba(246,170,28,0.22);
}

/* Hover lift */
.logo-card:hover {
  transform: translateY(-6px);
}

.logo-card:hover::after {
  opacity: 1;
}

/* ================= LOGO IMAGE =================
   - NO CROPPING
   - Always fully visible
================================================= */

.logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;

  transition: transform 0.35s ease;
}

/* Subtle zoom */
.logo-card:hover img {
  transform: scale(1.04);
}

/* ================= SCROLL ANIMATION ================= */

@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================= LIGHTBOX =================
   - Fullscreen logo preview
================================================= */

.logo-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);

  display: none; /* Hidden by default */
  align-items: center;
  justify-content: center;

  z-index: 9999;
}

.logo-lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;

  animation: zoomIn 0.35s ease;
}

.logo-lightbox .close {
  position: absolute;
  top: 30px;
  right: 40px;

  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* Lightbox entrance animation */
@keyframes zoomIn {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}















/* ===============================
   STATS SECTION
================================ */


.stats {
  background:
  radial-gradient(circle at 30% 20%, rgba(246,170,28,0.10), transparent 40%),
  radial-gradient(circle at 80% 30%, rgba(246,170,28,0.06), transparent 45%),
  radial-gradient(circle at 12% 85%, rgba(188,57,8,0.15), transparent 50%),
  linear-gradient(180deg, #160500, #220901);
  text-align: center;
}

/* Grid stays same */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 60px;
}

/* Stat card */
.stat {
  position: relative;
  padding: 46px 34px;
  border-radius: 18px;

  /* Deep base + gold energy */
  background:
    radial-gradient(circle at 50% 25%, rgba(246,170,28,0.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));

  box-shadow:
    inset 0 0 0 1px rgba(246,170,28,0.18), /* gold rim */
    0 30px 60px rgba(0,0,0,0.55);

  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.stat:hover {
  transform: translateY(-8px);
  box-shadow:
    inset 0 0 0 1px rgba(246,170,28,0.35),
    0 40px 90px rgba(0,0,0,0.7);
}

/* Featured stat (subtle priority) */
.stat-featured {
  background:
    radial-gradient(circle at 50% 20%, rgba(246,170,28,0.28), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
}

/* Numbers */
.stat h3 {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: 0.5px;

  /* Metallic gold gradient text */
  background: linear-gradient(
    180deg,
    #fff1c1,
    #f6aa1c,
    #c97b12
    );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

/* Divider under number */
.stat h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, #f6aa1c, #bc3908);
  opacity: 0.9;
}

/* Glow after completion */
.stat h3.complete {
  text-shadow:
    0 0 22px rgba(246,170,28,0.55),
    0 0 50px rgba(246,170,28,0.35);
}

/* Mobile */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}




/* ===========================
   90-DAY SPRINT SECTION
=========================== */

.sprint-section {
  padding: 120px 6%;
  text-align: center;
  position: relative;
  background:
    radial-gradient(circle at 15% 20%, rgba(246,170,28,0.12), transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(148,27,12,0.18), transparent 45%),
    linear-gradient(180deg, #220901 0%, #3a0c03 55%, #220901 100%);

}

/* Container */
.sprint-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Title */
.sprint-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 12px;
}

/* Intro text */
.sprint-intro {
  font-size: 14px;
  text-align: center;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}

.sprint-subtext {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 60px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid */
.sprint-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

/* Cards */
.sprint-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 34px;
  text-align: left;

  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.sprint-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.55);
}

.sprint-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
}

.sprint-card p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
}

/* CTA */
.sprint-cta {
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 900px) {
  .sprint-grid {
    grid-template-columns: 1fr;
  }
}






/* ===============================
   ANTI‑FAIL DESIGN SECTION
================================ */



/* ===============================
   ANTI FAIL DESIGN – CORE
================================ */

.anti-fail-section {
  padding: 96px 0 88px;
  background:
    radial-gradient(circle at 15% 20%, rgba(246,170,28,0.12), transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(148,27,12,0.22), transparent 45%),
    linear-gradient(180deg, #220901 0%, #3a0c03 55%, #220901 100%);
  overflow: hidden;
}

.anti-fail-header {
  text-align: center;
  margin-bottom: 72px;
}

.anti-fail-header h2 {
  margin-top: 0;
  margin-bottom: 14px;
}

.subtitle {
  margin: 0 auto;
  max-width: 680px;
}

/* ===============================
   LAYOUT (NO OVERLAP GUARANTEE)
================================ */

.anti-fail-layout {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.anti-fail-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px 80px;
  position: relative;
  z-index: 2;
}

/* ===============================
   SVG CONNECTING LINES
================================ */

.anti-fail-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.anti-fail-lines line {
  stroke: rgba(246,170,28,0.35);
  stroke-width: 2;
  stroke-dasharray: 6 10;
  stroke-linecap: round;
  animation: lineFlow 24s linear infinite;
}

@keyframes lineFlow {
  to {
    stroke-dashoffset: -600;
  }
}

/* ===============================
   CARD STYLING (PREMIUM)
================================ */

.af-card {
  position: relative;
  padding: 40px 38px 44px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03));
  border: 1px solid rgba(246,170,28,0.18);
  backdrop-filter: blur(18px);
  transition: transform .45s ease, box-shadow .45s ease, border-color .45s ease;
}

.af-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
  pointer-events: none;
}

.af-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 28px 60px rgba(0,0,0,0.55),
    0 0 0 1px rgba(246,170,28,0.35);
  border-color: rgba(246,170,28,0.45);
}

.af-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 18px;
  color: #220901;
  background: radial-gradient(circle at 30% 30%, #ffd36a, #f6aa1c);
  box-shadow: 0 6px 18px rgba(246,170,28,0.45);
}

.af-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(246,170,28,0.8);
  margin-bottom: 10px;
}

.af-card h3 {
  margin-bottom: 14px;
}

.af-card p {
  margin: 0;
}

/* ===============================
   MOBILE (STACKED + CLEAN)
================================ */

@media (max-width: 1024px) {

  .anti-fail-lines {
    display: none;
  }

  .anti-fail-cards {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .anti-fail-section {
    padding: 72px 0 72px;
  }
}








/* =========================
   FAQ SECTION
========================= */

.faq-section {
  background: #220901;
  padding: 100px 20px;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Header */
.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header h2 {
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
}

.faq-header p {
  margin-top: 10px;
  color: rgba(255,255,255,0.75);
}

/* FAQ Item */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

/* Question button */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* Icon */
.faq-question .icon {
  font-size: 22px;
  color: #f6aa1c;
  transition: transform 0.3s ease;
}

/* Answer wrapper */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq-answer p {
  max-width: 70ch;
  padding-bottom: 24px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

/* Active state */
.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}

/* Bottom CTA */
.faq-cta {
  text-align: center;
  margin-top: 60px;
}

.faq-cta-subheading{
  text-align: center;
  margin-left: auto;
  margin-right: auto;

}

.faq-cta p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}



/* ===============================
   CONTACT SECTION
================================ */

.contact {
  text-align: center;
}

/* ===============================
   GLOW CTA SECTION
================================ */

.cta-glow {
  position: relative;
  background: #220901; /* Coffee Bean */
  padding: 120px 20px;
  overflow: hidden;
  text-align: center;
}

/* Glow base */
.glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
}

/* Left glow */
.glow-left {
  background: #941b0c; /* Oxblood */
  top: 50%;
  left: -200px;
  transform: translateY(-50%);
}

/* Right glow */
.glow-right {
  background: #bc3908; /* Rusty Spice */
  top: 50%;
  right: -200px;
  transform: translateY(-50%);
}

/* CTA content */
.cta-content {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  z-index: 2;
}

/* Small badge */
.cta-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #f6aa1c;
  border: 1px solid rgba(246,170,28,0.4);
  border-radius: 20px;
}

/* Headline */
.cta-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

/* Description */
.cta-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.6;
}

/* CTA button */
.cta-btn {
  display: inline-block;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 700;
  color: #220901;
  background: #f6aa1c;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 15px 40px rgba(246,170,28,0.35);
}

/* Hover effect */
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 60px rgba(246,170,28,0.55);
}



/* ===============================
   TEAM SECTION
================================ */

.team {
  text-align: center;
}

/* ===============================
   TEAM SECTION - FLOATING CARDS
================================ */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 60px;
}

/* Individual team card */
.team-member {
  background: rgba(255, 255, 255, 0.04); /* subtle glass */
  backdrop-filter: blur(10px);           /* blur effect */
  -webkit-backdrop-filter: blur(10px);

  border-radius: 20px;
  padding: 30px;
  text-align: center;

  /* Floating shadow */
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255,255,255,0.05);

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover = floating up */
.team-member:hover {
  transform: translateY(-10px);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.65);
}

/* Team image styling */
.team-member img {
  width: 120px;
  height: 120px;
  object-fit: cover;

  border-radius: 50%; /* circular image */
  margin: 0 auto 20px;

  /* Image shadow */
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.6);

  border: 3px solid rgba(246,170,28,0.4);
}

/* Text tweaks */
.team-member h3 {
  margin-bottom: 6px;
}

.team-member p {
  font-size: 0.9rem;
  opacity: 0.85;
}


/* ===============================
   TEAM LINKS — PROFESSIONAL STYLE
   Looks like text, behaves like link
================================ */

.team-link {
  color: var(--text-muted);     /* same as normal text */
  text-decoration: none;       /* remove underline */
  font-weight: 500;
  cursor: pointer;

  transition: 
    color 0.3s ease,
    text-shadow 0.3s ease,
    transform 0.3s ease;
}

/* Hover effect (subtle & premium) */
.team-link:hover {
  color: var(--orange);        /* brand accent */
  text-shadow: 0 0 8px rgba(246,170,28,0.5);
  transform: translateY(-1px);
}

/* IMPORTANT: prevent color change after click */
.team-link:visited {
  color: var(--text-muted);
}

/* Remove focus outline (optional, clean look) */
.team-link:focus {
  outline: none;
}



/* ===============================
   FOOTER
================================ */

footer {
  background: #160500;
  display: flex;
  justify-content: center;   /* centers horizontally */
  align-items: center;       /* centers vertically */
  flex-direction: column;   /* stacks text line by line */
  text-align: center;

  padding: 50px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
}


/* ===============================
   RESPONSIVE DESIGN
================================ */

@media (max-width: 1024px) {
  .steps,
  .stats-grid,
  .sprint-grid,
  .anti-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  section {
    padding: 80px 6%;
  }

  h1 {
    font-size: 2.6rem;
  }

  h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .steps,
  .stats-grid,
  .sprint-grid,
  .anti-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
}
