/* ─── Willma Website — Styles ───────────────────────────────── */

:root {
  --lime:   #DBFB35;
  --purple: #6451DD;
  --cyan:   #22E6E4;
  --black:  #161620;
  --bg:     #FAFAF8;
  --bg-alt: #F2F2EE;
  --text:   #1A1A28;
  --muted:  #6B7280;
  --border: rgba(22,22,32,0.08);
  --radius-card: 24px;
  --radius-pill: 100px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ─── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 48px;
  height: 70px;
  display: flex;
  align-items: center;
  transition: background 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(250,250,248,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1200px; width: 100%; margin: 0 auto;
  display: flex; align-items: center; gap: 0;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo svg { flex-shrink: 0; }
.nav-logo-text { font-size: 17px; font-weight: 700; letter-spacing: 0.06em; color: white; transition: color 0.4s; }
.nav.scrolled .nav-logo-text { color: var(--black); }
.nav.scrolled .nav-logo svg circle,
.nav.scrolled .nav-logo svg path { stroke: var(--black); }
/* Logo image: white-full-logo on dark nav, black-full-logo on light (scrolled) nav */
.nav-logo-img { height: 30px; width: auto; display: block; }
.nav-logo-black { display: none; }
.nav.scrolled .nav-logo-white { display: none; }
.nav.scrolled .nav-logo-black { display: block; }
.nav-links { display: flex; gap: 36px; margin-left: auto; }
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: white; }
.nav.scrolled .nav-links a { color: var(--muted); }
.nav.scrolled .nav-links a:hover { color: var(--text); }
.nav-cta {
  margin-left: 36px;
  font-size: 14px; font-weight: 700;
  background: var(--lime); color: var(--black);
  padding: 10px 24px; border-radius: var(--radius-pill);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(219,251,53,0.35); }

/* ─── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  padding: 110px 48px 80px;
  gap: 80px;
  position: relative; overflow: hidden;
}
.hero-glow-a {
  position: absolute; top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(219,251,53,0.10) 0%, transparent 68%);
  pointer-events: none;
}
.hero-glow-b {
  position: absolute; bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(100,81,221,0.14) 0%, transparent 68%);
  pointer-events: none;
}
.hero-content { max-width: 560px; flex: 1; z-index: 1; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--lime);
  padding: 8px 18px; border-radius: var(--radius-pill);
  border: 1px solid rgba(219,251,53,0.22);
  margin-bottom: 28px;
}
.hero-pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--lime); }
.hero-headline {
  font-size: clamp(50px, 5.5vw, 80px);
  font-weight: 700; line-height: 1.0; letter-spacing: -0.04em;
  color: white; margin-bottom: 24px; text-wrap: pretty;
}
.hero-headline em { color: var(--lime); font-style: normal; }
.hero-sub {
  font-size: 18px; line-height: 1.72;
  color: rgba(255,255,255,0.45);
  max-width: 440px; margin-bottom: 44px; text-wrap: pretty;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-lime {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--lime); color: var(--black);
  font-size: 15px; font-weight: 700;
  padding: 16px 34px; border-radius: var(--radius-pill);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-lime:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(219,251,53,0.3); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: rgba(255,255,255,0.6);
  font-size: 15px; font-weight: 600;
  padding: 16px 28px; border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.14);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.36); color: white; }

/* Phone mockup */
.hero-visual { flex-shrink: 0; z-index: 1; position: relative; }
.phone-shell {
  width: 280px; height: 606px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 40px;
  overflow: hidden; position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
}
.phone-notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 88px; height: 26px;
  background: rgba(0,0,0,0.6); border-radius: 100px; z-index: 3;
}
.phone-img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block;
}
.phone-stripe-placeholder {
  width: 100%; height: 100%;
  background: repeating-linear-gradient(45deg,
    rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px,
    transparent 1px, transparent 14px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; color: rgba(255,255,255,0.18);
  font-family: monospace; font-size: 11px; letter-spacing: 0.05em; text-align: center;
}

/* Phone glow ring */
.hero-visual::before {
  content: '';
  position: absolute; inset: -20px; border-radius: 60px;
  background: radial-gradient(ellipse at center, rgba(219,251,53,0.07) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.25); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
  z-index: 1;
}
.scroll-hint svg { opacity: 0.5; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ─── STATS ───────────────────────────────────────────────────── */
.stats {
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 48px;
}
.stats-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.stat-item { flex: 1; min-width: 200px; text-align: center; padding: 20px 40px; }
.stat-item:not(:last-child) { border-right: 1px solid var(--border); }
.stat-num {
  font-size: 56px; font-weight: 700; letter-spacing: -0.05em; line-height: 1;
  color: var(--black); margin-bottom: 10px;
}
.stat-num .suf { color: var(--lime); }
.stat-label { font-size: 13px; font-weight: 500; color: var(--muted); letter-spacing: 0.04em; }

/* ─── SHARED SECTION HEADINGS ─────────────────────────────────── */
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 16px;
}
.section-title {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700; letter-spacing: -0.03em;
  color: var(--black); line-height: 1.05; text-wrap: pretty;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px; line-height: 1.72;
  color: var(--muted); max-width: 500px; text-wrap: pretty;
}
.section-head { max-width: 1200px; margin: 0 auto; padding: 0; }

/* ─── HOW IT WORKS ────────────────────────────────────────────── */
.how-section { padding: 120px 48px; background: var(--bg); }
.how-inner { max-width: 1200px; margin: 0 auto; }
.steps {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
  margin-top: 64px;
}
.step {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 40px 32px;
  position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.step:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(0,0,0,0.07); }
.step-num {
  position: absolute; top: 16px; right: 24px;
  font-size: 96px; font-weight: 700; letter-spacing: -0.06em;
  color: rgba(0,0,0,0.05); line-height: 1; user-select: none; pointer-events: none;
}
.step-icon {
  width: 52px; height: 52px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.step-title { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; color: var(--black); margin-bottom: 12px; }
.step-desc { font-size: 15px; line-height: 1.68; color: var(--muted); }

/* ─── FEATURES ────────────────────────────────────────────────── */
.features-section { padding: 120px 48px; background: var(--black); }
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-section .section-label { color: var(--lime); }
.features-section .section-title { color: white; }
.features-section .section-sub { color: rgba(255,255,255,0.42); }
.features-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 16px;
  margin-top: 64px;
}
.feat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-card); padding: 40px;
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.feat-card:hover { background: rgba(255,255,255,0.07); }
.feat-card.lit { background: var(--lime); border-color: transparent; }
.feat-card.lit:hover { background: #d0f030; }
.feat-card-badge {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.25); margin-bottom: 24px;
}
.feat-card.lit .feat-card-badge { color: rgba(22,22,32,0.35); }
.feat-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.feat-title { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; color: white; margin-bottom: 12px; }
.feat-card.lit .feat-title { color: var(--black); }
.feat-desc { font-size: 15px; line-height: 1.68; color: rgba(255,255,255,0.42); }
.feat-card.lit .feat-desc { color: rgba(22,22,32,0.58); }
.feat-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.feat-chip {
  font-size: 11px; font-weight: 600;
  padding: 5px 12px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.09); color: rgba(255,255,255,0.55);
}
.feat-card.lit .feat-chip { background: rgba(0,0,0,0.09); color: rgba(22,22,32,0.65); }

/* ─── PARTNER ─────────────────────────────────────────────────── */
.partner-section { padding: 120px 48px; background: var(--bg-alt); }
.partner-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.partner-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--purple); color: white;
  font-size: 15px; font-weight: 700;
  padding: 16px 32px; border-radius: var(--radius-pill);
  text-decoration: none; margin-top: 36px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.partner-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(100,81,221,0.3); }
.partner-cards { display: flex; flex-direction: column; gap: 16px; }
.partner-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 28px 28px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: transform 0.25s, box-shadow 0.25s;
}
.partner-card:hover { transform: translateX(5px); box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.partner-card-icon {
  width: 44px; height: 44px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.partner-card-title { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 5px; }
.partner-card-desc { font-size: 14px; line-height: 1.65; color: var(--muted); }

/* ─── TESTIMONIALS ────────────────────────────────────────────── */
.testimonials-section { padding: 120px 48px; background: var(--bg); }
.testimonials-inner { max-width: 1200px; margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 64px; }
.t-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 36px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.t-card:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(0,0,0,0.07); }
.t-stars { display: flex; gap: 3px; margin-bottom: 20px; }
.t-star { font-size: 15px; color: var(--lime); }
.t-quote {
  font-size: 16px; line-height: 1.72; color: var(--text);
  margin-bottom: 28px; font-style: italic;
}
.t-author { display: flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-alt); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; color: var(--purple); flex-shrink: 0;
}
.t-name { font-size: 14px; font-weight: 700; color: var(--black); }
.t-role { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ─── TEAM ────────────────────────────────────────────────────── */
.team-section { padding: 120px 48px; background: var(--bg-alt); }
.team-inner { max-width: 1200px; margin: 0 auto; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 64px; }
.team-card { text-align: center; }
.team-photo {
  width: 100%; aspect-ratio: 1; border-radius: 20px;
  background: white; border: 1px solid var(--border);
  overflow: hidden; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
}
.team-photo-inner {
  width: 100%; height: 100%;
  background: repeating-linear-gradient(135deg,
    #ededea 0, #ededea 1px, white 1px, white 14px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; color: rgba(0,0,0,0.15); font-family: monospace; font-size: 10px;
}
.team-name { font-size: 17px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.team-title-label { font-size: 13px; color: var(--muted); }

/* ─── FAQ ─────────────────────────────────────────────────────── */
.faq-section { padding: 120px 48px; background: var(--bg); }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 3px; margin-top: 64px; }
.faq-item {
  background: white; border: 1px solid var(--border);
  border-radius: 18px; overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item.open { box-shadow: 0 4px 24px rgba(0,0,0,0.04); }
.faq-q {
  width: 100%; padding: 24px 28px;
  font-size: 16px; font-weight: 600; color: var(--black);
  cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; text-align: left;
  user-select: none; font-family: inherit;
}
.faq-icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), background 0.25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--lime); }
.faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16,1,0.3,1);
}
.faq-a {
  padding: 0 28px 24px;
  font-size: 15px; line-height: 1.72; color: var(--muted);
}
.faq-item.open .faq-body { max-height: 280px; }

/* ─── DOWNLOAD CTA ────────────────────────────────────────────── */
.download-section {
  padding: 140px 48px; background: var(--black);
  text-align: center; position: relative; overflow: hidden;
}
.download-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(219,251,53,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.download-inner { max-width: 620px; margin: 0 auto; position: relative; z-index: 1; }
.download-section .section-label { color: var(--lime); }
.download-headline {
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 700; letter-spacing: -0.04em; color: white;
  margin-bottom: 20px; margin-top: 12px; text-wrap: pretty;
}
.download-headline em { color: var(--lime); font-style: normal; }
.download-sub {
  font-size: 17px; color: rgba(255,255,255,0.42); line-height: 1.68;
  margin-bottom: 52px;
}
.app-badges { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.app-badge {
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px; padding: 16px 28px;
  text-decoration: none; color: white;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.app-badge:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.22); transform: translateY(-2px); }
.badge-icon { flex-shrink: 0; }
.badge-store { font-size: 11px; color: rgba(255,255,255,0.45); margin-bottom: 3px; letter-spacing: 0.04em; }
.badge-name { font-size: 17px; font-weight: 700; }

/* ─── FOOTER ──────────────────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 44px 48px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.footer-logo-text { font-size: 16px; font-weight: 700; letter-spacing: 0.06em; color: white; }
.footer-links { display: flex; gap: 36px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.22); }

/* ─── SCROLL ANIMATIONS ───────────────────────────────────────── */
[data-anim] {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s ease;
}
[data-anim="up"]    { transform: translateY(36px); }
[data-anim="left"]  { transform: translateX(-36px); }
[data-anim="right"] { transform: translateX(36px); }
[data-anim="scale"] { transform: scale(0.92); }
[data-anim].in { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }

/* ─── APP SHOWCASE ───────────────────────────────────────────── */
.showcase-section {
  padding: 120px 48px;
  background: var(--black);
  overflow: hidden;
}
.showcase-inner { max-width: 1200px; margin: 0 auto; }
.showcase-head { text-align: center; margin-bottom: 72px; }
.showcase-section .section-label { color: var(--lime); }
.showcase-section .section-title { color: white; }
.showcase-section .section-sub { color: rgba(255,255,255,0.42); margin: 0 auto; }

.showcase-phones {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
}

.showcase-phone {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  background: #0d0d14;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  flex-shrink: 0;
}
.showcase-phone.center {
  width: 260px;
  height: 562px;
  z-index: 2;
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 48px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.1), 0 0 60px rgba(219,251,53,0.08);
}
.showcase-phone.side {
  width: 230px;
  height: 498px;
  opacity: 0.75;
}
.showcase-phone.side:hover { opacity: 0.95; transition: opacity 0.3s; }

.showcase-notch {
  position: absolute;
  top: 12px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 22px;
  background: rgba(0,0,0,0.7);
  border-radius: 100px;
  z-index: 3;
}

.showcase-phone img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

@media (max-width: 820px) {
  .showcase-phones { gap: 12px; }
  .showcase-phone.center { width: 210px; height: 454px; }
  .showcase-phone.side { width: 175px; height: 379px; }
}
@media (max-width: 560px) {
  .showcase-phone.side { display: none; }
  .showcase-phone.center { width: 260px; height: 562px; opacity: 1; }
}

/* ─── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .hero { flex-direction: column; text-align: center; gap: 56px; }
  .hero-sub { margin: 0 auto 44px; }
  .hero-ctas { justify-content: center; }
  .partner-inner { grid-template-columns: 1fr; gap: 52px; }
}
@media (max-width: 820px) {
  .steps { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .nav-links { display: none; }
  .nav-cta { margin-left: auto; }
  .stat-item:not(:last-child) { border-right: none; border-bottom: 1px solid var(--border); }
}
@media (max-width: 500px) {
  .hero { padding: 100px 24px 60px; }
  .stats, .how-section, .features-section, .partner-section,
  .testimonials-section, .team-section, .faq-section,
  .download-section, footer { padding-left: 24px; padding-right: 24px; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
}
