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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1f2421;
  background: #ffffff;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Top nav ---------- */
.topnav {
  position: sticky;
  top: 0;
  background: linear-gradient(180deg, #f7f7f4 0%, #ebebe5 100%);
  border-bottom: 1px solid #d9d9d2;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 48px;
}
.brand     { justify-self: start; }
.nav-links { justify-self: center; }
.nav-cta   { justify-self: end; }
.nav-links { gap: 12px; }

.brand {
  display: inline-flex;
  flex-direction: row;
  align-items: baseline;
  gap: 10px;
  line-height: 1.1;
  white-space: nowrap;
}
.brand-name {
  font-weight: 900;
  font-size: 28px;
  letter-spacing: 2.5px;
  color: #2d8a3e;
}
.brand-koala {
  color: #0a0a0a;
  font-weight: 900;
}

.nav-links {
  display: flex;
  gap: 4px;
}
.nav-links a {
  position: relative;
  font-size: 17px;
  font-weight: 900;
  color: #0a0a0a;
  padding: 10px 18px;
  border-radius: 8px;
  letter-spacing: 0.4px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: linear-gradient(90deg, #2f7a3d, #6dbf6a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(.6,.2,.2,1);
  border-radius: 2px;
}
.nav-links a:hover {
  color: #2f7a3d;
  background: rgba(47, 122, 61, 0.06);
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ---------- Login button (solid green, bold) ---------- */
.btn-login {
  background: #2d8a3e;
  color: #ffffff;
  border: none;
  padding: 10px 26px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.btn-login:hover { background: #246e31; }
.btn-login span  { display: inline-block; }

/* ---------- Signed-in profile chip ---------- */
.profile-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 10px 5px 6px;
  background: #ffffff;
  border: 1px solid #d9d9d2;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.profile-avatar {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2d8a3e;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
}
.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}
.profile-name {
  font-weight: 800;
  font-size: 14px;
  color: #0a0a0a;
  white-space: nowrap;
}
.profile-email {
  font-size: 12px;
  color: #6a7370;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}
.profile-signout {
  margin-left: 4px;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #6a7370;
  font-size: 17px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.profile-signout:hover { background: rgba(45, 138, 62, 0.12); color: #2d8a3e; }

/* ---------- "Please sign in" note for gated tools ---------- */
.tools-auth-note {
  display: none; /* shown only via .is-visible (added on a blocked click) */
  margin: 0 auto 18px;
  padding: 10px 18px;
  background: #fff4d6;
  border: 1px solid #e3c766;
  border-radius: 8px;
  color: #7a5a12;
  font-size: 14.5px;
  font-weight: 600;
}
.tools-auth-note.is-visible { display: inline-block; }
.btn-login-attn {
  animation: btnLoginPulse 0.6s ease 0s 3;
}
@keyframes btnLoginPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(45, 138, 62, 0.0); }
  50%      { box-shadow: 0 0 0 6px rgba(45, 138, 62, 0.35); }
}

/* ---------- Status popover (toast) ---------- */
.status-popover {
  position: fixed;
  top: 92px;
  right: 24px;
  width: 320px;
  background: #ffffff;
  border-radius: 12px;
  padding: 18px 20px 16px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transform: translateY(-10px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 200;
  text-align: left;
}
.status-popover.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.status-popover-close {
  position: absolute;
  top: 6px;
  right: 8px;
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  font-size: 18px;
  color: #8a958a;
  cursor: pointer;
  line-height: 1;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.status-popover-close:hover {
  background: #f1f1ec;
  color: #1f2421;
}
.status-popover-title {
  font-size: 14px;
  font-weight: 800;
  color: #1f2421;
  margin-bottom: 6px;
  padding-right: 22px;
}
.status-popover-body {
  font-size: 13px;
  color: #4a504c;
  line-height: 1.5;
}
.status-popover-body em {
  font-style: italic;
  color: #2f7a3d;
}

/* Variant tints by state */
.status-popover.popover-fail {
  border-top: 3px solid #e89a1a;
}
.status-popover.popover-fail .status-popover-title { color: #a16a0a; }
.status-popover.popover-down {
  border-top: 3px solid #d93a3f;
}
.status-popover.popover-down .status-popover-title { color: #9a262a; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 86vh;
  background-color: #1f3320;
  background-image:
    linear-gradient(90deg,
      #1f3320 0%,
      #1f3320 20%,
      rgba(31, 51, 32, 0.92) 32%,
      rgba(31, 51, 32, 0.65) 44%,
      rgba(31, 51, 32, 0.25) 56%,
      rgba(31, 51, 32, 0) 68%),
    url("Logos_Images/koala2.jpeg");
  background-size: 100% 100%, auto 100%;
  background-position: 0 0, right center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 80px 64px;
  color: #ffffff;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero h1 {
  font-size: clamp(38px, 5.6vw, 64px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -1px;
  margin-bottom: 22px;
  max-width: 720px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  animation: heroDropIn 1.2s cubic-bezier(.2,.6,.2,1) 0.2s both;
}
.hero-tagline {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 560px;
  opacity: 0.95;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
  animation: heroDropIn 1.2s cubic-bezier(.2,.6,.2,1) 0.75s both;
}
.hero-actions {
  animation: heroDropIn 1.2s cubic-bezier(.2,.6,.2,1) 1.3s both;
}

@keyframes heroDropIn {
  from { opacity: 0; transform: translateY(-32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero h1,
  .hero-tagline,
  .hero-actions { animation: none; }
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.btn-cta-primary {
  background: #2d8a3e;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(45, 138, 62, 0.32);
}
.btn-cta-primary:hover {
  background: #246e31;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(45, 138, 62, 0.45);
}
.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

/* ---------- Hero: scroll cue ---------- */
.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  transition: color 0.25s ease;
  animation: heroDropIn 1.2s cubic-bezier(.2,.6,.2,1) 1.55s both;
}
.hero-scroll:hover {
  color: #ffffff;
}

/* ---------- Hero: partner names ---------- */
.hero-partners {
  margin-top: 8px;
  animation: heroDropIn 1.2s cubic-bezier(.2,.6,.2,1) 1.85s both;
}
.hero-partners-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 18px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.hero-partners-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* ---------- Hero: stat callout (clickable) ---------- */
.hero-stat {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #8b6f47;
  color: #ffffff;
  padding: 10px 22px 10px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  position: relative;
  overflow: hidden;
}
.hero-stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
  background: #9a7d52;
}
.hero-stat-num {
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.5px;
  color: #ffffff;
  min-width: 1.6em;
  display: inline-block;
  text-align: right;
  font-variant-numeric: tabular-nums;
  transition: transform 0.35s cubic-bezier(.2,.6,.2,1);
}
.hero-stat-num.count-done {
  animation: numPop 0.45s cubic-bezier(.2,.6,.2,1);
}
@keyframes numPop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.18); }
  100% { transform: scale(1); }
}
.hero-stat-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.hero-stat-line {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.hero-stat-sub {
  font-size: 11.5px;
  font-weight: 500;
  opacity: 0.88;
  margin-top: 2px;
}
.hero-stat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 0.7s ease;
  pointer-events: none;
}
.hero-stat:hover::after { transform: translateX(110%); }

@media (prefers-reduced-motion: reduce) {
  .hero-scroll,
  .hero-partners { animation: none; }
}

/* ---------- About ---------- */
.about {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  overflow: visible;
}

/* Decorative floating leaf */
.about-leaf {
  position: absolute;
  width: 110px;
  height: 110px;
  pointer-events: none;
  transform-origin: 50% 0%;
  z-index: 1;
  animation: leafSway 6.5s ease-in-out infinite;
}
.about-leaf svg { width: 100%; height: 100%; display: block; }
.about-leaf-tl { top: -28px; left: -32px; transform: rotate(-25deg); }
@keyframes leafSway {
  0%, 100% { transform: rotate(-25deg) translateY(0); }
  50%      { transform: rotate(-12deg) translateY(4px); }
}

/* Image with organic curved shape */
.about-image {
  position: relative;
  opacity: 0;
  transform: translateX(-28px) scale(0.96);
  transition: opacity 1s cubic-bezier(.2,.6,.2,1), transform 1s cubic-bezier(.2,.6,.2,1);
}
.about-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  border-radius: 62% 38% 45% 55% / 50% 60% 40% 50%;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  transition: border-radius 1s ease;
}
.about-image:hover img {
  border-radius: 40% 60% 55% 45% / 60% 40% 60% 40%;
}

/* Text column */
.about-text {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 1s cubic-bezier(.2,.6,.2,1) 0.18s, transform 1s cubic-bezier(.2,.6,.2,1) 0.18s;
}
.about-text h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.18;
  letter-spacing: -0.3px;
}
.about-divider {
  display: block;
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, #2d8a3e 0%, #6a8568 60%, transparent 100%);
  margin-bottom: 22px;
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.9s cubic-bezier(.2,.6,.2,1) 0.55s;
}
.about-text > p {
  color: #4a504c;
  margin-bottom: 28px;
  font-size: 15.5px;
  line-height: 1.7;
}
.features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature {
  padding: 14px 18px;
  background: rgba(106, 133, 104, 0.07);
  border-left: 3px solid #2d8a3e;
  border-radius: 0 10px 10px 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.65s ease, transform 0.65s ease, background 0.25s;
}
.feature:hover { background: rgba(106, 133, 104, 0.14); }
.feature h4 {
  font-size: 15px;
  font-weight: 700;
  color: #2d8a3e;
  margin-bottom: 4px;
}
.feature p {
  font-size: 14px;
  color: #6a7370;
  line-height: 1.55;
}
.about-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 11px 22px;
  background: #2d8a3e;
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 24px;
  box-shadow: 0 4px 14px rgba(45, 138, 62, 0.25);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.65s ease, transform 0.65s ease, background 0.25s, box-shadow 0.25s;
}
.about-more:hover {
  background: #247033;
  box-shadow: 0 6px 18px rgba(45, 138, 62, 0.35);
}
.about-more-arrow {
  transition: transform 0.25s ease;
}
.about-more:hover .about-more-arrow {
  transform: translateX(4px);
}

/* Entrance state, triggered by JS when scrolled into view */
.about.in-view .about-image,
.about.in-view .about-text {
  opacity: 1;
  transform: translateX(0) scale(1);
}
.about.in-view .about-divider             { transform: scaleX(1); }
.about.in-view .feature                   { opacity: 1; transform: translateY(0); }
.about.in-view .feature:nth-child(1)      { transition-delay: 0.72s; }
.about.in-view .feature:nth-child(2)      { transition-delay: 0.88s; }
.about.in-view .about-more                { opacity: 1; transform: translateY(0); transition-delay: 1.0s; }

@media (prefers-reduced-motion: reduce) {
  .about-image, .about-text, .about-divider, .feature {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .about-leaf { animation: none; }
}

/* ---------- Tools ---------- */
.tools {
  background: #f5f5f2;
  padding: 104px 32px 112px;
}
.tools-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}
.tools h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.4px;
}
.tools-sub {
  color: #6a7370;
  margin-bottom: 56px;
  font-size: 16px;
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  text-align: left;
}
.tool-card {
  position: relative;
  background: #ffffff;
  padding: 32px 28px 26px;
  border-radius: 14px;
  border: 1px solid #e9e9e3;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  min-height: 240px;
}
.tool-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.tool-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #1f2421;
  letter-spacing: -0.2px;
}
.tool-card p {
  font-size: 14.5px;
  color: #5a605c;
  line-height: 1.6;
  margin-bottom: 18px;
}
.tool-card-link {
  margin-top: auto;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #2d8a3e;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tool-card:hover {
  transform: translateY(-4px);
  border-color: #2d8a3e;
  box-shadow: 0 18px 40px rgba(45, 138, 62, 0.12);
}

/* ---------- Team ---------- */
.team {
  padding: 96px 32px;
  background: #ffffff;
}
.team-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.team h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}
.team-sub {
  text-align: center;
  color: #6a7370;
  margin-bottom: 48px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
/* ---------- Contact section ---------- */
.contact-section {
  padding: 80px 32px;
  background: linear-gradient(180deg, #f3f7f1 0%, #e9f0e7 100%);
  text-align: center;
}
.contact-inner {
  max-width: 620px;
  margin: 0 auto;
}
.contact-section h2 {
  font-size: 30px;
  font-weight: 800;
  color: #1f2a1e;
  margin-bottom: 14px;
}
.contact-sub {
  color: #6a7370;
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.contact-btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 32px;
  background: #2d8a3e;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(45, 138, 62, 0.25);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.contact-btn:hover {
  background: #246e31;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(45, 138, 62, 0.3);
}
.team-card {
  background: #f8f8f5;
  border: 1px solid #e9e9e3;
  border-radius: 14px;
  padding: 26px 18px 22px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  border-color: #2d8a3e;
  background: #ffffff;
}
.team-photo {
  width: 124px;
  height: 124px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 0.5s ease;
}
.team-card:hover .team-photo img {
  transform: scale(1.06);
}
.team-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: #1f2421;
  margin-bottom: 2px;
  letter-spacing: 0.1px;
}
.team-role {
  font-size: 12px;
  font-weight: 700;
  color: #2d8a3e;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.team-desc {
  font-size: 13px;
  color: #5a605c;
  line-height: 1.5;
  margin-top: 10px;
}

/* ---------- Footer ---------- */
.footer {
  background: #2d3a2c;
  color: #b8c2b6;
  padding: 64px 32px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.footer-col a {
  color: #9fd6a0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: #ffffff; text-decoration: underline; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}
.footer-bottom {
  max-width: 1100px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid #4a594a;
  font-size: 13px;
  color: #8a958a;
  text-align: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-inner { padding: 12px 20px; gap: 16px; }
  .hero { padding: 64px 24px; min-height: 70vh; }
  .about {
    grid-template-columns: 1fr;
    padding: 64px 24px;
    gap: 40px;
  }
  .tools { padding: 64px 24px; }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .team { padding: 64px 24px; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .tools-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-photo { width: 100px; height: 100px; }
  .status-pill .status-text { display: none; }
  .status-pill { padding: 8px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-cta { width: 100%; text-align: center; }
}
