:root {
  --green: #457f0e;
  --green-dark: #2d5609;
  --green-light: #6aad18;
  --green-xlight: #f0f7e6;
  --sand: #f5efe6;
  --sand-dark: #e8ddd0;
  --brown: #8b6914;
  --cream: #fdf8f2;
  --dark: #1a1209;
  --text: #3d3020;
  --muted: #7a6850;
  --white: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--green);
  padding: 0 5%;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
}

.nav-logo .fl-ring {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.nav-logo .fl-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-logo .fl-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.nav-logo .fl-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.04em;
}

.back-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ── HERO ── */
.hero {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 90px 5% 80px;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.hero-deco {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  background: linear-gradient(
    135deg,
    rgba(69, 127, 14, 0.08),
    rgba(69, 127, 14, 0.02)
  );
  border-left: 1px solid rgba(69, 127, 14, 0.2);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-line {
  position: absolute;
  left: 5%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--green),
    transparent
  );
  opacity: 0.3;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 22px;
  font-weight: 500;
}

.hero-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--green);
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 600;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero h1 em {
  color: var(--green-light);
  font-style: italic;
}

.hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.8;
  max-width: 420px;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(69, 127, 14, 0.2);
  border: 1px solid rgba(69, 127, 14, 0.2);
  border-radius: 12px;
  overflow: hidden;
}

.hs-box {
  background: rgba(255, 255, 255, 0.03);
  padding: 28px 24px;
  transition: background 0.3s;
}

.hs-box:hover {
  background: rgba(69, 127, 14, 0.1);
}

.hs-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.hs-num span {
  color: var(--green-light);
}

.hs-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden;
  padding: 12px 0;
  background: var(--green-dark);
}

.mq-track {
  display: flex;
  animation: mqScroll 28s linear infinite;
  white-space: nowrap;
}

.mq-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.05em;
}

.mq-dot {
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

@keyframes mqScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── FOUNDER SECTION ── */
.founder-section {
  padding: 100px 5%;
  background: var(--cream);
  position: relative;
}

.founder-section::before {
  content: "01";
  position: absolute;
  right: 5%;
  top: 60px;
  font-family: "Cormorant Garamond", serif;
  font-size: 140px;
  font-weight: 700;
  color: rgba(69, 127, 14, 0.05);
  line-height: 1;
  pointer-events: none;
}

.founder-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.founder-photo-area {
  position: relative;
}

.founder-photo-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.founder-photo-frame img {
  width: 100%;
  height: 630x;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.7s ease;
}

.founder-photo-area:hover img {
  transform: scale(1.04);
}

.founder-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 18, 9, 0.5) 0%, transparent 50%);
}

.founder-accent {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 80px;
  height: 80px;
  border: 2px solid var(--green);
  border-right: none;
  border-bottom: none;
  border-radius: 2px;
}

.founder-accent2 {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  border: 2px solid var(--green);
  border-left: none;
  border-top: none;
  border-radius: 2px;
}

.founder-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.founder-num {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(26, 18, 9, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(69, 127, 14, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--green-light);
}

.founder-info {
  padding-top: 8px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--green);
}

.founder-name {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.05;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.founder-role {
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.founder-quote {
  border-left: 3px solid var(--green);
  padding: 16px 20px;
  background: var(--green-xlight);
  border-radius: 0 6px 6px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 24px;
}

.founder-bio {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 28px;
}

.skill-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-xlight);
  border: 1px solid rgba(69, 127, 14, 0.25);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 2px;
  letter-spacing: 0.03em;
}

.founder-socials {
  display: flex;
  gap: 10px;
}

.soc-btn {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.soc-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ── STATS BAND ── */
.stats-band {
  background: var(--green-dark);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.sb-box {
  padding: 44px 32px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s;
}

.sb-box:last-child {
  border-right: none;
}

.sb-box:hover {
  background: rgba(255, 255, 255, 0.05);
}

.sb-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.sb-num span {
  color: var(--green-light);
}

.sb-lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* ── TEAM GRID ── */
.team-section {
  padding: 90px 5% 100px;
  background: var(--sand);
}

.section-head {
  margin-bottom: 60px;
}

.sec-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 12px;
}

.sec-title em {
  font-style: italic;
  color: var(--green);
}

.sec-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(139, 105, 20, 0.12);
  border: 1px solid rgba(139, 105, 20, 0.15);
}

.team-card {
  background: var(--cream);
  display: grid;
  grid-template-columns: 280px 1fr;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover {
  background: #fff;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.tc-img-area {
  position: relative;
  overflow: hidden;
  height: 320px;
}

.tc-img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  transition: transform 0.6s ease;
}

.team-card:hover .tc-img-area img {
  transform: scale(1.06);
}

.tc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26, 18, 9, 0.45), transparent 70%);
}

.tc-number {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  pointer-events: none;
}

.tc-wa {
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.4s;
}

.team-card:hover .tc-wa {
  transform: translateY(0);
  opacity: 1;
}

.tc-body {
  padding: 28px 28px 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tc-role {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 6px;
}

.tc-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.1;
}

.tc-bio {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.tc-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}

.tc-skill {
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 2px;
  background: var(--green-xlight);
  color: var(--green-dark);
  border: 1px solid rgba(69, 127, 14, 0.2);
  letter-spacing: 0.04em;
  transition: all 0.2s;
}

.team-card:hover .tc-skill {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.tc-langs {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.tc-langs i {
  color: var(--green);
}

.tc-divider {
  width: 28px;
  height: 2px;
  background: var(--green);
  margin-bottom: 14px;
  transition: width 0.4s;
}

.team-card:hover .tc-divider {
  width: 50px;
}

/* ── JOIN SECTION ── */
.join-section {
  padding: 90px 5%;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.join-section::before {
  content: "JOIN";
  position: absolute;
  left: 3%;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-family: "Cormorant Garamond", serif;
  font-size: 120px;
  font-weight: 700;
  color: rgba(69, 127, 14, 0.04);
  pointer-events: none;
  white-space: nowrap;
}

.join-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.join-img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.join-img-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.join-img-wrap:hover img {
  transform: scale(1.04);
}

.join-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.join-img-corner {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 60px;
  height: 60px;
  border: 2px solid var(--green);
  border-right: none;
  border-bottom: none;
  pointer-events: none;
}

.join-img-corner2 {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 60px;
  height: 60px;
  border: 2px solid var(--green);
  border-left: none;
  border-top: none;
  pointer-events: none;
}

.join-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 16px;
}

.join-title em {
  font-style: italic;
  color: var(--green);
}

.join-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 28px;
}

.join-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.join-perk {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.jp-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: var(--green-xlight);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 14px;
}

.jp-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
  padding-top: 2px;
}

.jp-text strong {
  color: var(--dark);
}

.join-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.25s;
  border: 2px solid var(--green);
}

.join-cta:hover {
  background: transparent;
  color: var(--green);
}

/* ── FOOTER (same as index.html) ── */
.ft-main {
  background: #1a2e0d;
  padding: 60px 7% 28px;
}

.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}

.ft-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 15px;
}

.fl-ring2 {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.fl-ring2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fl-name2 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.fl-sub2 {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.08em;
}

.ft-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.7;
  margin-bottom: 18px;
}

.ft-soc {
  display: flex;
  gap: 9px;
}

.fts {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  transition:
    background 0.2s,
    transform 0.25s;
}

.fts:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-3px);
  color: #fff;
}

.ft-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.ft-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin-bottom: 9px;
  transition: color 0.2s;
}

.ft-col a:hover {
  color: #fff;
}

.ft-bot {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.ft-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.28);
}

.ft-copy a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
}

.ft-links {
  display: flex;
  gap: 18px;
}

.ft-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.28);
  text-decoration: none;
  transition: color 0.2s;
}

.ft-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 860px) {
  .ft-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .ft-grid {
    grid-template-columns: 1fr;
  }
}

/* ── WA FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  text-decoration: none;
}

.wa-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  position: relative;
  z-index: 2;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s;
}

.wa-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: waPulse 2s ease-out infinite;
  z-index: -1;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}

.wa-tip {
  position: absolute;
  bottom: 50%;
  right: 66px;
  transform: translateY(50%) translateX(8px);
  background: #fff;
  color: #1a1a1a;
  padding: 7px 12px;
  border-radius: 6px;
  font-size: 13px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}

.wa-tip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #fff;
  border-right: none;
}

.wa-float:hover .wa-circle {
  transform: scale(1.1);
}

.wa-float:hover .wa-tip {
  opacity: 1;
  transform: translateY(50%) translateX(0);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.left {
  transform: translateX(-28px);
}

.reveal.right {
  transform: translateX(28px);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: 0.08s !important;
}

.d2 {
  transition-delay: 0.18s !important;
}

.d3 {
  transition-delay: 0.28s !important;
}

.d4 {
  transition-delay: 0.38s !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-inner,
  .founder-wrap,
  .join-inner {
    grid-template-columns: 1fr;
  }

  .hero-deco {
    display: none;
  }

  .stats-band,
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .team-card {
    grid-template-columns: 1fr 1fr;
  }

  .tc-img-area {
    height: 500px;
  }
}

@media (max-width: 600px) {
  .stats-band {
    grid-template-columns: 1fr 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
}
