/* =========================================================================
   EASY MOVING — styles.css
   "IEDEREEN Beweegt" — warm, kinetic, inclusive design system
   Display: Bricolage Grotesque · Body: Inter
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700;12..96,800&family=Inter:wght@400;500;600;700&display=swap');

/* -------------------------------------------------------------------------
   1. DESIGN TOKENS
   ------------------------------------------------------------------------- */
:root {
  /* Brand */
  --blue: #0170B9;
  --blue-dark: #2F5F9E;
  --blue-ink: #0B3E68;
  --blue-light: #5BC0DE;
  --magenta: #EB088A;
  --magenta-deep: #C40670;
  --green: #49AB47;

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --surface: #F4F8FB;
  --surface-2: #EEF4F9;
  --border: #E6E6E6;
  --border-soft: #E7E7E7;

  /* Text */
  --text: #1A1A1A;
  --text-soft: #333333;
  --muted: #4A4A4A;
  --muted-light: #7A7A7A;

  /* Type */
  --font-display: 'Bricolage Grotesque', 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', 'Open Sans', system-ui, -apple-system, sans-serif;

  /* Modular scale (ratio ~1.25, in rem) */
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.5rem;
  --fs-4xl: 3.5rem;
  --fs-5xl: 4.5rem;
  --fs-6xl: 6rem;

  /* 8pt spacing scale */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-5: 2.5rem;
  --s-6: 3rem;
  --s-7: 4rem;
  --s-8: 5rem;
  --s-9: 6rem;
  --s-10: 8rem;

  /* Radii */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 34px;
  --r-pill: 999px;

  /* Elevation system — layered, directional, never a single soft blur */
  --elev-1: 0 1px 0 rgba(11, 62, 104, 0.06),
            0 2px 5px -2px rgba(11, 62, 104, 0.16);
  --elev-2: 0 1px 0 rgba(11, 62, 104, 0.05),
            0 10px 20px -12px rgba(11, 62, 104, 0.30);
  --elev-3: 0 2px 0 rgba(11, 62, 104, 0.05),
            0 22px 38px -20px rgba(11, 62, 104, 0.38);
  --elev-4: 0 30px 60px -28px rgba(11, 62, 104, 0.46),
            0 4px 0 rgba(11, 62, 104, 0.05);
  --elev-magenta: 0 18px 34px -18px rgba(235, 8, 138, 0.55);

  /* Texture */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");

  /* Motion */
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --header-h: 5.25rem;
}

/* -------------------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  background-color: var(--off-white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
svg,
video {
  max-width: 100%;
  display: block;
  height: auto;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text);
  margin: 0 0 var(--s-2);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h2 { font-size: clamp(2rem, 3.5vw, 3.25rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 600; }

p { margin: 0 0 var(--s-3); }
p:last-child { margin-bottom: 0; }

a {
  color: var(--blue-dark);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
a:hover { color: var(--magenta-deep); }

ul, ol { padding-left: 0; }

:focus-visible {
  outline: 3px solid var(--blue-dark);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}

.dark :focus-visible,
.marquee :focus-visible { outline-color: var(--white); }

::selection {
  background: var(--magenta);
  color: var(--white);
}

/* -------------------------------------------------------------------------
   3. UTILITIES
   ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 78rem;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: var(--s-2);
  left: var(--s-2);
  z-index: 999;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  background: var(--blue-ink);
  color: var(--white);
  font-weight: 600;
  font-size: var(--fs-sm);
  text-decoration: none;
  border-radius: var(--r-pill);
  box-shadow: var(--elev-3);
  transform: translateY(-160%);
  transition: transform 0.28s var(--ease-out);
}
.skip-link:focus {
  transform: translateY(0);
  color: var(--white);
  outline: 3px solid var(--magenta);
  outline-offset: 3px;
}

.body-large {
  font-size: clamp(1.125rem, 1.6vw, 1.25rem);
  line-height: 1.6;
  color: var(--text-soft);
}

/* -------------------------------------------------------------------------
   4. HEADER + NAV
   ------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}
.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 35%, var(--magenta) 100%);
  opacity: 0.85;
  pointer-events: none;
}
.site-header:focus-within { box-shadow: var(--elev-1); }

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  min-height: var(--header-h);
  padding-block: var(--s-2);
}

/* Brand ------------------------------------------------------------------ */
.brand {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 0.75rem;
  row-gap: 1px;
  margin-right: auto;
  text-decoration: none;
  color: var(--text);
  flex: none;
}
.brand:hover { color: var(--text); }

.brand-logo {
  grid-row: 1 / span 2;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  object-fit: contain;
  transition: transform 0.4s var(--ease-spring), filter 0.3s ease;
}
.brand:hover .brand-logo,
.brand:focus-visible .brand-logo {
  transform: rotate(-8deg) scale(1.06);
  filter: drop-shadow(0 6px 12px rgba(1, 112, 185, 0.35));
}

.brand-name {
  grid-column: 2;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--blue-ink);
}
.brand-tagline {
  grid-column: 2;
  font-size: 0.6875rem;
  line-height: 1.2;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted-light);
}

/* Nav toggle ------------------------------------------------------------- */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  min-width: 44px;
  min-height: 44px;
  padding: 0.6rem 1rem;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--blue-dark);
  border: 2px solid transparent;
  border-radius: var(--r-pill);
  cursor: pointer;
  order: 3;
  transition: background-color 0.22s ease, color 0.22s ease, transform 0.22s var(--ease-out), box-shadow 0.22s ease;
}
.nav-toggle:hover {
  background: var(--white);
  color: var(--blue-ink);
  border-color: var(--blue-light);
  box-shadow: var(--elev-1);
}
.nav-toggle:active { transform: scale(0.97); }

.nav-toggle-bars {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: background-color 0.25s ease;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: top 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }

.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { top: 0; transform: rotate(-45deg); }

.nav-toggle-text { line-height: 1; }

/* Primary nav — mobile drawer -------------------------------------------- */
.primary-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + var(--s-5)) clamp(1.25rem, 5vw, 2.5rem) var(--s-9);
  background: linear-gradient(168deg, var(--blue-ink) 0%, var(--blue-dark) 52%, var(--magenta-deep) 145%);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1.25rem);
  transition: opacity 0.32s ease, transform 0.48s var(--ease-out), visibility 0.32s;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.primary-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: 0.3;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.primary-nav::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -18%;
  width: 22rem;
  height: 22rem;
  border: 2px dashed rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.site-header:has(.nav-toggle[aria-expanded="true"]) .primary-nav,
.nav-toggle[aria-expanded="true"] ~ .primary-nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-list {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.nav-list li { border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.nav-list li:first-child { border-top: 1px solid rgba(255, 255, 255, 0.14); }

.nav-list a {
  position: relative;
  display: block;
  padding: 0.9rem 2.25rem 0.9rem 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.375rem, 5.5vw, 1.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
  transition: transform 0.28s var(--ease-out), color 0.22s ease;
}
.nav-list a::after {
  content: "";
  position: absolute;
  right: 0.25rem;
  top: 50%;
  width: 1.5rem;
  height: 2px;
  background: var(--magenta);
  transform: translate(-0.5rem, -50%) scaleX(0.25);
  transform-origin: right center;
  transition: transform 0.32s var(--ease-out);
}
.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--white);
  transform: translateX(0.5rem);
}
.nav-list a:hover::after,
.nav-list a:focus-visible::after { transform: translate(0, -50%) scaleX(1); }

/* Site search ------------------------------------------------------------ */
.site-search {
  position: fixed;
  left: clamp(1.25rem, 5vw, 2.5rem);
  right: clamp(1.25rem, 5vw, 2.5rem);
  bottom: var(--s-5);
  z-index: 95;
  display: none;
  align-items: stretch;
  gap: 0.5rem;
}
.site-header:has(.nav-toggle[aria-expanded="true"]) .site-search,
.nav-toggle[aria-expanded="true"] ~ .site-search {
  display: flex;
}

.site-search-input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--text);
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--r-pill);
  box-shadow: var(--elev-2);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-search-input::placeholder { color: var(--muted-light); }
.site-search-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: var(--elev-2), 0 0 0 4px rgba(91, 192, 222, 0.45);
}

.site-search-button {
  flex: none;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--blue-dark);
  border: 2px solid var(--blue-dark);
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background-color 0.22s ease, border-color 0.22s ease, transform 0.22s var(--ease-out);
}
.site-search-button:hover {
  background: var(--magenta-deep);
  border-color: var(--magenta-deep);
  transform: translateY(-2px);
}

/* -------------------------------------------------------------------------
   5. HERO
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3.5rem, 7vw, 6rem);
  background:
    linear-gradient(178deg, var(--surface-2) 0%, var(--surface) 38%, var(--white) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: 0.32;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -14%;
  height: 58%;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(1, 112, 185, 0.13) 0 1px,
    transparent 1px 72px
  );
  transform: rotate(-5deg);
  transform-origin: left center;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 55%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 55%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-copy { min-width: 0; }
.hero-copy > * { animation: riseIn 0.85s var(--ease-out) both; }
.hero-copy > :nth-child(1) { animation-delay: 0.02s; }
.hero-copy > :nth-child(2) { animation-delay: 0.10s; }
.hero-copy > :nth-child(3) { animation-delay: 0.18s; }
.hero-copy > :nth-child(4) { animation-delay: 0.26s; }
.hero-copy > :nth-child(5) { animation-delay: 0.34s; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 var(--s-3);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-dark);
}
.eyebrow::before {
  content: "";
  width: 2.25rem;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--magenta), var(--blue));
}

.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7.2vw, 4.75rem);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--blue-ink);
  margin: 0 0 var(--s-3);
  max-width: 100%;
  text-wrap: balance;
  overflow-wrap: break-word;
  hyphens: auto;
}

.accent-magenta {
  position: relative;
  isolation: isolate;
  color: var(--magenta);
  white-space: normal;
  overflow-wrap: break-word;
}
.accent-magenta::after {
  content: "";
  position: absolute;
  left: -0.04em;
  right: -0.04em;
  bottom: 0.06em;
  height: 0.16em;
  background: var(--magenta);
  opacity: 0.28;
  z-index: -1;
  clip-path: polygon(0 46%, 100% 0, 100% 62%, 0 100%);
  transform: rotate(-0.6deg);
}

.lead {
  max-width: 46ch;
  margin: 0 0 var(--s-5);
  font-size: clamp(1.0625rem, 1.7vw, 1.25rem);
  line-height: 1.6;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-bottom: var(--s-6);
}

/* Buttons ---------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.875rem 1.6rem;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--r-pill);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.24s var(--ease-out),
              box-shadow 0.28s ease,
              background-color 0.24s ease,
              color 0.24s ease,
              border-color 0.24s ease;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 32%, rgba(255, 255, 255, 0.42) 50%, transparent 68%);
  transform: translateX(-130%);
  transition: transform 0.6s var(--ease-out);
  pointer-events: none;
}
.btn:hover::after { transform: translateX(130%); }

.btn-primary {
  background: var(--blue-dark);
  color: var(--white);
  box-shadow: var(--elev-2);
}
.btn-primary:hover {
  background: var(--blue-ink);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--elev-3);
}
.btn-primary:active { transform: translateY(-1px); }

.btn-secondary {
  background: var(--white);
  color: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: var(--elev-1);
}
.btn-secondary:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--elev-3);
}

/* Hero facts ------------------------------------------------------------- */
.hero-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(8.5rem, 1fr));
  gap: var(--s-3);
  margin: 0;
  padding-top: var(--s-4);
  border-top: 1px solid rgba(1, 112, 185, 0.2);
}
.hero-fact {
  position: relative;
  padding-left: 0.875rem;
}
.hero-fact::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem;
  bottom: 0.3rem;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--blue), var(--magenta));
}
.hero-fact-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--blue-ink);
}
.hero-fact-label {
  display: block;
  margin-top: 0.35rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-light);
}

/* Hero visual ------------------------------------------------------------ */
.hero-visual {
  position: relative;
  min-width: 0;
  animation: riseIn 0.9s 0.15s var(--ease-out) both;
}

.hero-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--blue-ink);
  border-radius: var(--r-xl);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 84% 100%, 0 100%);
  box-shadow: var(--elev-4);
  aspect-ratio: 4 / 4.6;
}
.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.55) contrast(1.08) saturate(1.05);
  transform: scale(1.02);
  transition: transform 0.9s var(--ease-out);
}
.hero-visual:hover .hero-figure img { transform: scale(1.07); }

/* Duotone treatment: shadows multiplied with brand navy, highlights screened with brand blue→magenta */
.hero-figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--blue-ink);
  mix-blend-mode: multiply;
  opacity: 0.42;
  pointer-events: none;
}
.hero-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(148deg, var(--blue) 0%, var(--magenta) 100%);
  mix-blend-mode: screen;
  opacity: 0.3;
  pointer-events: none;
}

.hero-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: var(--s-6) var(--s-3) var(--s-3);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--white);
  background: linear-gradient(180deg, rgba(11, 62, 104, 0) 0%, rgba(11, 62, 104, 0.88) 78%);
  text-shadow: 0 1px 6px rgba(11, 62, 104, 0.6);
}

.hero-badge {
  position: absolute;
  top: var(--s-3);
  left: var(--s-3);
  z-index: 3;
  max-width: 15rem;
  padding: 0.875rem 1.125rem 1rem;
  background: var(--magenta);
  color: var(--white);
  border-radius: var(--r-md);
  clip-path: polygon(0 0, 100% 0, 100% 78%, 84% 100%, 0 100%);
  box-shadow: var(--elev-magenta);
  transform: rotate(-2deg);
  transition: transform 0.4s var(--ease-spring);
}
.hero-badge:hover { transform: rotate(0deg) translateY(-3px); }

.hero-badge-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}
.hero-badge-text {
  display: block;
  margin: 0.25rem 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.hero-badge-link {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--white);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.hero-badge-link:hover { color: var(--white); text-decoration-color: var(--blue-ink); }

/* -------------------------------------------------------------------------
   6. MARQUEE
   ------------------------------------------------------------------------- */
.marquee {
  position: relative;
  overflow: hidden;
  padding-block: var(--s-3);
  background: linear-gradient(90deg, var(--blue-ink) 0%, #123A5C 50%, var(--blue-ink) 100%);
  color: var(--white);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}
.marquee::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: 0.22;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: var(--s-5);
  font-family: var(--font-display);
  font-size: clamp(0.9375rem, 1.5vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--white);
}

.marquee-dot {
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 0 4px rgba(235, 8, 138, 0.22);
}

/* -------------------------------------------------------------------------
   7. SECTIONS
   ------------------------------------------------------------------------- */
.section {
  position: relative;
  padding-block: clamp(3.5rem, 7vw, 6rem);
}
.section > .container { position: relative; z-index: 1; }

.section-head {
  max-width: 62ch;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.section-head h2 { margin-bottom: var(--s-2); }
.section-head p {
  font-size: var(--fs-md);
  color: var(--muted);
  max-width: 56ch;
}

/* --- Problem chapter ---------------------------------------------------- */
.section-problem {
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-problem::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: 0.22;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.split-copy h2 { margin-bottom: var(--s-3); }

.doubt-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--s-2);
}
.doubt-item {
  position: relative;
  padding: 1rem 1.25rem 1rem 2.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--magenta);
  border-radius: var(--r-md);
  color: var(--muted);
  font-size: var(--fs-md);
  font-style: italic;
  line-height: 1.5;
  box-shadow: var(--elev-1);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease, color 0.25s ease;
}
.doubt-item::before {
  content: "";
  position: absolute;
  left: 1.125rem;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--magenta);
  transform: translateY(-50%);
  transition: transform 0.3s var(--ease-spring), background-color 0.25s ease;
}
.doubt-item::after {
  content: "";
  position: absolute;
  left: 2.75rem;
  right: 1.25rem;
  top: 50%;
  height: 2px;
  border-radius: 2px;
  background: var(--magenta);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.42s var(--ease-out);
}
.doubt-item:hover {
  transform: translateX(8px);
  color: var(--text);
  box-shadow: var(--elev-2);
}
.doubt-item:hover::before { transform: translateY(-50%) scale(1.35); }
.doubt-item:hover::after { transform: scaleX(1); }

/* --- Transformation chapter --------------------------------------------- */
.section-transform { background: var(--white); }

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: var(--s-4);
  border-top: 2px solid var(--border);
}
.step::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 2.75rem;
  height: 2px;
  background: var(--magenta);
  transform-origin: left center;
  transition: width 0.4s var(--ease-out);
}
.step:hover::before { width: 100%; }

.step-number {
  display: block;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 2px var(--blue);
  text-stroke: 2px var(--blue);
  transition: color 0.35s ease, -webkit-text-stroke-color 0.35s ease;
}
.step:hover .step-number {
  color: var(--blue);
  -webkit-text-stroke-color: var(--blue);
}
.step h3 { margin-bottom: 0.5rem; font-size: var(--fs-lg); font-weight: 700; }
.step p { color: var(--muted); font-size: var(--fs-base); }

/* --- Bento -------------------------------------------------------------- */
.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
  margin-top: var(--s-6);
}

.bento-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2rem);
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--elev-1);
  transition: transform 0.36s var(--ease-out), box-shadow 0.36s ease, border-color 0.3s ease;
}
.bento-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s var(--ease-out);
}
.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--elev-3);
  border-color: rgba(1, 112, 185, 0.28);
}
.bento-card:hover::before { transform: scaleX(1); }
.bento-card > * { position: relative; z-index: 1; }

.bento-title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}
.bento-text {
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-base);
  max-width: 42ch;
}

.bento-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--s-3);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue-dark);
  text-decoration: none;
}
.bento-link::after {
  content: "";
  width: 1.125rem;
  height: 2px;
  background: currentColor;
  transform-origin: left center;
  transition: transform 0.32s var(--ease-out), width 0.32s var(--ease-out);
}
.bento-link:hover { color: var(--magenta-deep); }
.bento-link:hover::after { width: 2rem; }

/* Tall / feature card */
.bento-card--tall {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 18rem;
  color: var(--white);
  background-color: var(--blue-ink);
  background-image: linear-gradient(155deg, var(--blue-ink) 0%, #123A5C 60%, var(--blue-dark) 100%);
  border-color: transparent;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  box-shadow: var(--elev-3);
}
.bento-card--tall::before {
  height: 100%;
  background-image: var(--grain);
  opacity: 0.24;
  mix-blend-mode: overlay;
  transform: none;
}
.bento-card--tall::after {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  width: 12rem;
  height: 12rem;
  border: 2px dashed rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  z-index: 0;
  transition: transform 0.6s var(--ease-out);
}
.bento-card--tall:hover::after { transform: scale(1.12) rotate(12deg); }
.bento-card--tall .bento-title { color: var(--white); }
.bento-card--tall .bento-text { color: rgba(255, 255, 255, 0.86); }
.bento-card--tall .bento-link { color: var(--blue-light); }

/* Accent card */
.bento-card--accent {
  background-color: var(--magenta-deep);
  background-image: linear-gradient(118deg, var(--magenta) 0%, var(--magenta-deep) 52%, var(--blue-ink) 128%);
  border-color: transparent;
  color: var(--white);
  box-shadow: var(--elev-magenta);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 0);
}
.bento-card--accent::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: 0.26;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}
.bento-card--accent .bento-title { color: var(--white); }
.bento-card--accent .bento-text { color: rgba(255, 255, 255, 0.92); }
.bento-card--accent .bento-link { color: var(--white); }

/* --- Events ------------------------------------------------------------- */
.section-events {
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.event-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

.event-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--elev-2);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--elev-4);
}

.event-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--blue-ink);
}
.event-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.event-card:hover .event-figure img { transform: scale(1.06); }

.event-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 62, 104, 0.05) 0%, rgba(11, 62, 104, 0.42) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* Plain variant — no photo, choreography-note panel */
.event-figure--plain {
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--blue) 0%, var(--blue-ink) 62%, var(--magenta-deep) 138%);
}
.event-figure--plain::before {
  content: "";
  position: absolute;
  inset: -20%;
  background-image:
    repeating-linear-gradient(58deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(-58deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 34px);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 72%);
  mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 72%);
  pointer-events: none;
}
.event-figure--plain::after {
  background: none;
  mix-blend-mode: normal;
}

.event-date {
  position: absolute;
  top: var(--s-3);
  left: var(--s-3);
  z-index: 2;
  display: grid;
  justify-items: center;
  min-width: 4.25rem;
  padding: 0.6rem 0.85rem 0.7rem;
  background: var(--magenta);
  color: var(--white);
  border-radius: var(--r-md);
  clip-path: polygon(0 0, 100% 0, 100% 76%, 78% 100%, 0 100%);
  box-shadow: var(--elev-magenta);
  transform: rotate(-3deg);
  transition: transform 0.4s var(--ease-spring);
}
.event-card:hover .event-date { transform: rotate(0deg) scale(1.04); }

.event-date-day {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.event-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 0.5rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  align-self: flex-start;
  padding: 0.3rem 0.75rem;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-ink);
  background: rgba(91, 192, 222, 0.3);
  border: 1px solid rgba(1, 112, 185, 0.22);
  border-radius: var(--r-pill);
}

.tag-magenta {
  color: var(--magenta-deep);
  background: rgba(235, 8, 138, 0.1);
  border-color: rgba(235, 8, 138, 0.32);
}

.tag-green {
  color: #2C7A2B;
  background: rgba(73, 171, 71, 0.14);
  border-color: rgba(73, 171, 71, 0.4);
}

.event-title {
  margin: 0.25rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.4vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--blue-ink);
}

.event-text {
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-base);
  max-width: 48ch;
}

.event-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-3);
  margin-top: auto;
  padding-top: var(--s-3);
}

.btn-ghost {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.5rem 0;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-dark);
  text-decoration: none;
  background: none;
  border: 0;
  cursor: pointer;
}
.btn-ghost::after {
  content: "";
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  transition: width 0.32s var(--ease-out), transform 0.32s var(--ease-out);
}
.btn-ghost::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.35rem;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.36s var(--ease-out);
}
.btn-ghost:hover { color: var(--magenta-deep); }
.btn-ghost:hover::before { transform: scaleX(1); }
.btn-ghost:hover::after { width: 2rem; }

/* --- Proof -------------------------------------------------------------- */
.section-proof {
  background: var(--surface);
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.section-proof::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 34rem;
  height: 34rem;
  border: 2px dashed rgba(1, 112, 185, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: var(--s-3);
}

.stat {
  position: relative;
  padding: var(--s-4) var(--s-3) var(--s-3);
  background: var(--white);
  border-top: 4px solid var(--blue);
  border-radius: 0 0 var(--r-md) var(--r-md);
  box-shadow: var(--elev-1);
  transition: transform 0.34s var(--ease-out), box-shadow 0.34s ease, border-color 0.3s ease;
}
.stat:nth-child(3n + 1) { border-top-color: var(--magenta); }
.stat:nth-child(3n + 2) { border-top-color: var(--blue); }
.stat:nth-child(3n + 3) { border-top-color: var(--green); }

.stat:hover {
  transform: translateY(-6px);
  box-shadow: var(--elev-3);
}

.stat > :first-child {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--blue-ink);
  margin: 0 0 0.4rem;
}
.stat > :last-child:not(:first-child) {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin: 0;
}
.stat p { color: var(--muted); font-size: var(--fs-sm); }

/* Partner logo strip inside proof section */
.section-proof img {
  max-height: 3.25rem;
  width: auto;
  filter: grayscale(1) opacity(0.72);
  transition: filter 0.35s ease, transform 0.35s var(--ease-out);
}
.section-proof img:hover {
  filter: grayscale(0) opacity(1);
  transform: translateY(-3px);
}

/* -------------------------------------------------------------------------
   8. SCROLL REVEAL (progressive enhancement)
   ------------------------------------------------------------------------- */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes revealUp {
  from { opacity: 0; translate: 0 32px; }
  to { opacity: 1; translate: 0 0; }
}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .section-head,
    .doubt-item,
    .step,
    .bento-card,
    .event-card,
    .stat {
      animation: revealUp both linear;
      animation-timeline: view();
      animation-range: entry 8% cover 30%;
    }
    .doubt-item { animation-range: entry 5% cover 34%; }
    .stat:nth-child(2) { animation-range: entry 12% cover 34%; }
    .stat:nth-child(3) { animation-range: entry 16% cover 38%; }
    .stat:nth-child(4) { animation-range: entry 20% cover 42%; }
  }
}

/* -------------------------------------------------------------------------
   9. RESPONSIVE — TABLET & DESKTOP
   ------------------------------------------------------------------------- */
@media (min-width: 40rem) {
  .brand-logo { width: 3.5rem; height: 3.5rem; }
  .brand-name { font-size: 1.25rem; }
  .brand-tagline { font-size: 0.6875rem; }
  .accent-magenta { white-space: nowrap; }
}

@media (min-width: 60rem) {
  .header-inner { gap: var(--s-3); }
  .nav-toggle { display: none; }

  .primary-nav {
    position: static;
    inset: auto;
    z-index: 1;
    display: block;
    padding: 0;
    background: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    overflow: visible;
    transition: none;
  }
  .primary-nav::before,
  .primary-nav::after { display: none; }

  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
  }
  .nav-list li { border: 0; }
  .nav-list li:first-child { border: 0; }

  .nav-list a {
    position: relative;
    padding: 0.6rem 0.85rem;
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text);
    border-radius: var(--r-pill);
    transition: background-color 0.22s ease, color 0.22s ease;
  }
  .nav-list a::after {
    left: 0.85rem;
    right: 0.85rem;
    top: auto;
    bottom: 0.35rem;
    width: auto;
    height: 2px;
    background: var(--magenta);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s var(--ease-out);
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--blue-ink);
    background: rgba(91, 192, 222, 0.18);
    transform: none;
  }
  .nav-list a:hover::after,
  .nav-list a:focus-visible::after {
    transform: scaleX(1);
  }

  .site-search {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    display: flex;
    z-index: 1;
    flex: none;
    width: auto;
  }
  .site-search-input {
    width: 11rem;
    padding: 0.6rem 0.9rem;
    font-size: var(--fs-sm);
    border: 2px solid var(--border);
    box-shadow: none;
    transition: width 0.35s var(--ease-out), border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .site-search-input:focus { width: 14rem; }
  .site-search-button {
    min-height: 44px;
    padding: 0.6rem 1.1rem;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2.5rem, 5vw, 4.5rem);
  }
  .hero-figure { aspect-ratio: 4 / 4.4; }

  .split {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-4);
  }

  .bento {
    grid-template-columns: repeat(6, 1fr);
    gap: var(--s-3);
  }
  .bento-card { grid-column: span 2; }
  .bento-card--tall { grid-column: span 2; grid-row: span 2; }
  .bento-card--accent { grid-column: span 4; }

  .event-grid {
    grid-template-columns: 1.12fr 0.88fr;
    align-items: stretch;
  }
  .event-figure { aspect-ratio: 16 / 9; }
  .event-card:first-child .event-figure { aspect-ratio: 16 / 10; }
}

@media (min-width: 80rem) {
  .nav-list a { padding-inline: 1rem; }
  .site-search-input { width: 12rem; }
  .hero-figure { aspect-ratio: 4 / 4.2; }
}

/* -------------------------------------------------------------------------
   10. REDUCED MOTION & PRINT
   ------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .marquee-track { animation: none !important; }
  .hero-copy > *,
  .hero-visual { animation: none !important; opacity: 1 !important; transform: none !important; }
}

@media print {
  .site-header,
  .marquee,
  .hero-badge,
  .skip-link { display: none !important; }
  body { background: #fff; color: #000; }
  .btn,
  .event-card,
  .bento-card { box-shadow: none; border: 1px solid #ccc; }
}

/* -------------------------------------------------------------------------
   11. PRODUCTION OVERRIDES
   ------------------------------------------------------------------------- */

/* Dark bento variants must keep a solid dark background (not just a
   gradient) and readable light text at every breakpoint — mobile, tablet
   and desktop. The solid background-color guarantees WCAG-compliant
   contrast even if the gradient overlay/grain fails to paint. */
.bento-card--tall {
  background-color: var(--blue-ink);
  background-image: linear-gradient(155deg, var(--blue-ink) 0%, #123A5C 60%, var(--blue-dark) 100%);
  color: var(--white);
}
.bento-card--tall .bento-title { color: var(--white); }
.bento-card--tall .bento-text { color: rgba(255, 255, 255, 0.9); }
.bento-card--tall .bento-link { color: var(--blue-light); }

.bento-card--accent {
  background-color: var(--magenta-deep);
  background-image: linear-gradient(118deg, var(--magenta) 0%, var(--magenta-deep) 52%, var(--blue-ink) 128%);
  color: var(--white);
}
.bento-card--accent .bento-title { color: var(--white); }
.bento-card--accent .bento-text { color: rgba(255, 255, 255, 0.94); }
.bento-card--accent .bento-link { color: var(--white); }

/* Remove the site-editor "Edit" badge so it never overlaps content or
   intercepts taps in the production build. */
#edit-button,
#edit-badge,
.edit-button,
.edit-badge,
.edit-fab,
.edit-bubble,
.edit-chip,
[data-edit-button],
[data-edit-badge],
[data-edit-fab],
a[aria-label="Edit"],
button[aria-label="Edit"],
a[aria-label*="Edit" i],
button[aria-label*="Edit" i] {
  display: none !important;
}