/* ===========================================
   FROGS — Future-Ready Operations & Growth Studios
   Frutiger Aero × Y2K desktop visual system
   =========================================== */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Inter:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

:root {
  /* Color tokens */
  --sky: #5FC9E8;
  --sky-light: #B9E8F7;
  --grass: #6FCB4D;
  --grass-dark: #4FA832;
  --frog: #1F5C3F;
  --frog-deep: #143D29;
  --pop: #FF5FA2;
  --pop-light: #FFB3D4;
  --cream: #FFFBEF;
  --chrome: #E8F4FF;
  --chrome-white: #FFFFFF;
  --gold: #FFC93C;

  /* Typography */
  --font-display: 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'Space Mono', monospace;

  /* Effects */
  --aero-shadow: 0 8px 24px rgba(31, 92, 63, 0.18), 0 2px 6px rgba(31, 92, 63, 0.12);
  --aero-shadow-lg: 0 16px 40px rgba(31, 92, 63, 0.22), 0 4px 12px rgba(31, 92, 63, 0.14);
  --radius-aero: 20px;
  --radius-pill: 999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--frog-deep);
  background: var(--cream);
  overflow-x: hidden;
  cursor: default;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Custom frog cursor on interactive elements */
a, button, .clickable {
  cursor: pointer;
}

/* ===========================================
   LAYOUT UTILITIES
   =========================================== */

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section--tight {
  padding: 64px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--frog);
  background: var(--chrome);
  border: 1.5px solid rgba(31, 92, 63, 0.15);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  color: var(--frog-deep);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(31, 92, 63, 0.78);
  max-width: 640px;
}

/* ===========================================
   AERO GLASS PANEL — the signature surface
   =========================================== */

.aero-panel {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(232,244,255,0.7) 100%);
  border: 1.5px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-aero);
  box-shadow: var(--aero-shadow);
  backdrop-filter: blur(6px);
}

.aero-panel::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  height: 40%;
  background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0) 100%);
  border-radius: 16px 16px 40px 40px;
  pointer-events: none;
}

/* ===========================================
   AERO BUTTON
   =========================================== */

.btn-aero {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--frog-deep);
  background: linear-gradient(180deg, #FFFFFF 0%, var(--chrome) 60%, var(--sky-light) 100%);
  border: 1.5px solid rgba(255,255,255,0.9);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  box-shadow: var(--aero-shadow), inset 0 1px 0 rgba(255,255,255,0.8);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-aero::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 14px;
  right: 14px;
  height: 38%;
  background: linear-gradient(180deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 100%);
  border-radius: 999px;
  pointer-events: none;
}

.btn-aero:hover {
  transform: translateY(-3px);
  box-shadow: var(--aero-shadow-lg), inset 0 1px 0 rgba(255,255,255,0.9);
}

.btn-aero--pop {
  color: #fff;
  background: linear-gradient(180deg, #FF8FBE 0%, var(--pop) 60%, #E03E84 100%);
  border-color: rgba(255,255,255,0.6);
}

/* ===========================================
   NAV
   =========================================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 251, 239, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1.5px solid rgba(31, 92, 63, 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--frog-deep);
}

.nav-logo .frog-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, var(--grass) 45%, var(--grass-dark) 100%);
  box-shadow: inset 0 -2px 4px rgba(0,0,0,0.15), 0 2px 4px rgba(0,0,0,0.15);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-links a {
  position: relative;
  padding: 6px 2px;
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: var(--pop);
}

.nav-cta {
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  padding: 10px 20px;
  background: var(--frog-deep);
  color: var(--cream);
  border-radius: var(--radius-pill);
  transition: background 0.15s ease, transform 0.15s ease;
}

.nav-cta:hover {
  background: var(--pop);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
}

/* ===========================================
   HERO — Bliss sky/grass background + desktop window
   =========================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, #4FB8E8 0%, #7FD4F0 35%, #B9E8C8 62%, #6FCB4D 100%);
  overflow: hidden;
  padding: 60px 0 80px;
}

.hero-clouds {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.9;
}

.cloud {
  position: absolute;
  background: #fff;
  border-radius: 100px;
  filter: blur(0.5px);
  opacity: 0.85;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.9);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  color: var(--frog-deep);
  margin-bottom: 28px;
  box-shadow: var(--aero-shadow);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: #fff;
  text-shadow: 0 4px 0 rgba(20, 61, 41, 0.25), 0 10px 30px rgba(20, 61, 41, 0.2);
  margin-bottom: 18px;
}

.hero-title .pop-word {
  color: var(--gold);
  -webkit-text-stroke: 2px var(--frog-deep);
}

.hero-tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 2.4vw, 26px);
  color: var(--frog-deep);
  background: rgba(255,255,255,0.55);
  display: inline-block;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.hero-desc {
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(20, 61, 41, 0.92);
  background: rgba(255,255,255,0.4);
  padding: 14px 20px;
  border-radius: 16px;
}

/* ----- Desktop disc + radiating icons ----- */

.desktop-stage {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 20px auto 0;
  aspect-ratio: 1 / 1;
  max-height: 640px;
}

.desktop-disc {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--aero-panel-bg, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.disc-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.95) 28%, transparent 29%),
    conic-gradient(from 180deg, #BFE3F2, #fff, #BFE3F2, #fff, #BFE3F2);
  box-shadow: var(--aero-shadow-lg), inset 0 0 0 6px rgba(255,255,255,0.6);
  animation: discspin 40s linear infinite;
}

@keyframes discspin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.disc-logo {
  position: relative;
  z-index: 2;
  width: 58%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.disc-logo .frog-mark {
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
}

.disc-logo .disc-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 30px);
  background: linear-gradient(180deg, var(--frog) 0%, var(--frog-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.02em;
}

.disc-logo .disc-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--frog);
  margin-top: 4px;
}

/* Pillar icons radiating around the disc */

.pillar-icon {
  position: absolute;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 96px;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pillar-icon[data-pos="tl"] { top: 2%; left: 0%; }
.pillar-icon[data-pos="tr"] { top: 2%; right: 0%; }
.pillar-icon[data-pos="bl"] { bottom: 2%; left: 0%; }
.pillar-icon[data-pos="br"] { bottom: 2%; right: 0%; }

.pillar-icon .icon-tile {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: linear-gradient(180deg, #fff 0%, var(--chrome) 100%);
  border: 1.5px solid rgba(255,255,255,0.9);
  box-shadow: var(--aero-shadow);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
}

.pillar-icon .icon-tile::after {
  content: '';
  position: absolute;
  top: 2px; left: 6px; right: 6px;
  height: 35%;
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0));
  border-radius: 10px 10px 20px 20px;
}

.pillar-icon .icon-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--frog-deep);
  background: rgba(255,255,255,0.7);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.pillar-icon:hover {
  transform: translateY(-6px) scale(1.06);
}

.pillar-icon:hover .icon-tile {
  box-shadow: var(--aero-shadow-lg);
  transform: rotate(-4deg);
}

.pillar-icon[data-pillar="leap"] .icon-tile { background: linear-gradient(180deg, #fff 0%, #FFE9F2 100%); }
.pillar-icon[data-pillar="land"] .icon-tile { background: linear-gradient(180deg, #fff 0%, #E9F7E0 100%); }
.pillar-icon[data-pillar="lilypad"] .icon-tile { background: linear-gradient(180deg, #fff 0%, #E0F6F0 100%); }
.pillar-icon[data-pillar="ripple"] .icon-tile { background: linear-gradient(180deg, #fff 0%, #FFF3D6 100%); }

/* floating sticker accents in hero */
.sticker {
  position: absolute;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #fff;
  border: 1.5px solid rgba(31,92,63,0.15);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  box-shadow: var(--aero-shadow);
  color: var(--frog-deep);
  pointer-events: none;
}

/* ===========================================
   MARQUEE TICKER
   =========================================== */

.marquee {
  overflow: hidden;
  background: var(--frog-deep);
  padding: 14px 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 40px;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===========================================
   MISSION / VISION SECTION
   =========================================== */

.mv-section {
  background: var(--cream);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}

.mv-card {
  background: #fff;
  border: 1.5px solid rgba(31, 92, 63, 0.1);
  border-radius: var(--radius-aero);
  padding: 36px;
  box-shadow: var(--aero-shadow);
  position: relative;
}

.mv-card .mv-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.mv-card--mission .mv-icon { background: var(--chrome); }
.mv-card--vision .mv-icon { background: var(--pop-light); }

.mv-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--frog-deep);
}

.mv-card p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(31, 92, 63, 0.85);
}

/* ===========================================
   VALUE PROP / STATS
   =========================================== */

.value-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--chrome) 100%);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.value-item {
  background: #fff;
  border: 1.5px solid rgba(31, 92, 63, 0.1);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--aero-shadow);
}

.value-item .check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--grass);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  box-shadow: inset 0 -2px 4px rgba(0,0,0,0.15);
}

.value-item p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--frog-deep);
}

.value-item strong {
  font-weight: 600;
}

/* ===========================================
   PILLARS / SERVICES SECTION
   =========================================== */

.pillars-section {
  background: var(--frog-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.pillars-section .section-title,
.pillars-section .eyebrow {
  color: var(--cream);
}

.pillars-section .eyebrow {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.pillars-section .section-sub {
  color: rgba(255, 251, 239, 0.7);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.pillar-card {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-aero);
  padding: 28px 22px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.pillar-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.1);
}

.pillar-card .pillar-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  font-size: 24px;
  margin-bottom: 18px;
}

.pillar-card[data-c="leap"] .pillar-tag { background: linear-gradient(135deg, var(--pop), #E03E84); }
.pillar-card[data-c="land"] .pillar-tag { background: linear-gradient(135deg, var(--grass), var(--grass-dark)); }
.pillar-card[data-c="lilypad"] .pillar-tag { background: linear-gradient(135deg, #4FE0C4, #1D9E75); }
.pillar-card[data-c="ripple"] .pillar-tag { background: linear-gradient(135deg, var(--gold), #E8A800); }

.pillar-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 4px;
}

.pillar-card .pillar-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,251,239,0.55);
  margin-bottom: 14px;
  display: block;
}

.pillar-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pillar-card li {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255,251,239,0.82);
  padding-left: 16px;
  position: relative;
}

.pillar-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
}

/* ===========================================
   SHOPIFY CALLOUT STRIP
   =========================================== */

.shopify-strip {
  background: var(--grass);
  padding: 28px 0;
  position: relative;
  overflow: hidden;
}

.shopify-strip .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}

.shopify-strip p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  text-shadow: 0 2px 0 rgba(20,61,41,0.2);
}

.shopify-strip .badge-pill {
  background: #fff;
  color: var(--grass-dark);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-weight: 700;
}

/* ===========================================
   TEAM SECTION
   =========================================== */

.team-section {
  background: var(--cream);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.team-card {
  background: #fff;
  border: 1.5px solid rgba(31, 92, 63, 0.1);
  border-radius: var(--radius-aero);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--aero-shadow);
  transition: transform 0.2s ease;
}

.team-card:hover {
  transform: translateY(-6px) rotate(-1deg);
}

.team-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: #fff;
  box-shadow: inset 0 -4px 8px rgba(0,0,0,0.15), 0 4px 10px rgba(31,92,63,0.2);
}

.team-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 4px;
  color: var(--frog-deep);
}

.team-card .team-role {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--frog);
}

/* ===========================================
   CTA / FOOTER WINDOW
   =========================================== */

.cta-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--sky-light) 100%);
}

.cta-window {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  border: 1.5px solid rgba(31,92,63,0.12);
  box-shadow: var(--aero-shadow-lg);
  overflow: hidden;
}

.cta-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, #fff 0%, var(--chrome) 100%);
  border-bottom: 1.5px solid rgba(31,92,63,0.1);
  padding: 10px 16px;
}

.cta-titlebar .tb-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.tb-dot--red { background: #FF5F57; }
.tb-dot--amber { background: #FEBC2E; }
.tb-dot--green { background: #28C840; }

.cta-titlebar .tb-label {
  margin-left: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(31,92,63,0.6);
}

.cta-body {
  padding: 48px 40px;
  text-align: center;
}

.cta-body h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 4vw, 36px);
  color: var(--frog-deep);
  margin-bottom: 12px;
}

.cta-body p {
  font-size: 16px;
  color: rgba(31,92,63,0.78);
  max-width: 440px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

/* Footer */

.footer {
  background: var(--frog-deep);
  color: rgba(255,251,239,0.7);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--cream);
}

.footer-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  gap: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--pop);
}

/* ===========================================
   RESPONSIVE
   =========================================== */

@media (max-width: 900px) {
  .mv-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .sticker { font-size: 10px; padding: 4px 10px; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .pillars-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .desktop-stage { max-width: 280px; margin-top: 36px; }
  .pillar-icon { width: 64px; }
  .pillar-icon .icon-tile { width: 48px; height: 48px; font-size: 20px; }
  .pillar-icon .icon-label { font-size: 9px; padding: 3px 8px; }
  .footer-inner { flex-direction: column; text-align: center; }

  /* Hide decorative stickers on small screens, they collide with headline text */
  .sticker { display: none; }

  .nav-links { display: none; }
  .nav-cta { font-size: 11px; padding: 8px 14px; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Visible keyboard focus */
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--pop);
  outline-offset: 3px;
  border-radius: 4px;
}
