/*
Theme Name: EcoTech v2
Theme URI: https://altlogiq.uk
Author: EcoTech
Description: A "Grounded Futurism" block theme — warm paper, forest green, and lime accent. Full Site Editing, dark mode, and multi-brand style variations.
Version: 2.0.0
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ecotech
Tags: block-patterns, full-site-editing, dark-mode, light-mode, one-column, two-columns, three-columns, editor-style, wide-blocks
*/

/* ============================================================
   DESIGN TOKENS — Light Mode ("Daybreak")
   ============================================================ */
:root {
  --font-size: 17px;
  --background: #f1ede2;
  --foreground: #18241c;
  --card: #fbfaf4;
  --card-foreground: #18241c;
  --primary: #1c5a3a;
  --primary-foreground: #f6f7ef;
  --secondary: #2f7d57;
  --secondary-foreground: #ffffff;
  --accent: #c7f24a;
  --accent-foreground: #142a17;
  --muted: #e6e1d2;
  --muted-foreground: #6c7363;
  --border: rgba(24, 36, 28, 0.12);
  --input-background: #ece7d8;
  --ring: #1c5a3a;
  --radius: 0.9rem;

  --font-display: "Bricolage Grotesque", "Hanken Grotesk", sans-serif;
  --font-body:    "Hanken Grotesk", system-ui, sans-serif;
  --font-mono:    "Space Mono", ui-monospace, monospace;

  --text-sm:  0.875rem;
  --text-base: 1rem;
  --text-lg:  1.125rem;
  --text-xl:  1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;

  --max-width: 80rem;
  --grain-opacity: 0.5;
}

/* ============================================================
   DARK MODE ("Midnight Forest")
   ============================================================ */
[data-theme="dark"] {
  --background: #0b110c;
  --foreground: #eceadc;
  --card: #141c15;
  --card-foreground: #eceadc;
  --primary: #57bd84;
  --primary-foreground: #07140c;
  --secondary: #3f9d6b;
  --secondary-foreground: #07140c;
  --accent: #cbf24c;
  --accent-foreground: #122413;
  --muted: #17211a;
  --muted-foreground: #8d9683;
  --border: rgba(236, 234, 220, 0.12);
  --input-background: #17211a;
  --ring: #57bd84;
  --grain-opacity: 0.35;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: var(--font-size);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

/* Film grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: var(--grain-opacity);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
[data-theme="dark"] body::before { mix-blend-mode: screen; }

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

a { color: var(--primary); text-decoration: none; transition: opacity 0.2s ease, color 0.2s ease; }

::selection { background: var(--accent); color: var(--accent-foreground); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--foreground);
  text-wrap: balance;
}

h1 { font-size: clamp(2.7rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

p { line-height: 1.7; text-wrap: pretty; }

/* Eyebrow / mono label */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.eyebrow::before {
  content: "";
  width: 1.6rem;
  height: 2px;
  background: var(--accent);
}
.eyebrow.is-centered { justify-content: center; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 640px) { .container { padding-inline: 2rem; } }

.section { padding: 5rem 0; }
@media (min-width: 768px) { .section { padding: 7.5rem 0; } }

.section-muted { background-color: var(--muted); }
.section-ink {
  background-color: var(--primary);
  color: var(--primary-foreground);
}
.section-ink h1, .section-ink h2, .section-ink h3 { color: var(--primary-foreground); }

.section-head { max-width: 46rem; }
.section-head.is-centered { margin-inline: auto; text-align: center; }
.section-head h2 { margin: 1.1rem 0 0; }
.section-head .lede {
  font-size: var(--text-xl);
  color: var(--muted-foreground);
  margin-top: 1.1rem;
  line-height: 1.55;
}

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: color-mix(in srgb, var(--background) 82%, transparent);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}
.site-branding { display: flex; align-items: center; gap: 2.5rem; }

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
  color: var(--foreground);
}
.brand-mark .glyph {
  width: 1.9rem;
  height: 1.9rem;
  display: grid;
  place-items: center;
  color: var(--primary);
}
.brand-mark .glyph svg { width: 100%; height: 100%; }

.primary-navigation { display: none; }
@media (min-width: 860px) {
  .primary-navigation ul {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
  }
  .primary-navigation a {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    color: var(--muted-foreground);
  }
  .primary-navigation a:hover { color: var(--foreground); opacity: 1; }
}

.header-actions { display: flex; align-items: center; gap: 0.5rem; }

.theme-toggle {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.theme-toggle:hover { background-color: var(--muted); }
.theme-toggle svg { width: 1.2rem; height: 1.2rem; }
.theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

.mobile-menu-toggle {
  display: grid;
  place-items: center;
  width: 2.6rem; height: 2.6rem;
  border-radius: 0.6rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
}
@media (min-width: 860px) { .mobile-menu-toggle { display: none; } }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.6rem;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background-color 0.2s ease, opacity 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background-color: var(--primary); color: var(--primary-foreground); }
.btn-primary:hover { color: var(--primary-foreground); }

.btn-accent { background-color: var(--accent); color: var(--accent-foreground); }
.btn-accent:hover { color: var(--accent-foreground); }
.btn-accent .arrow { transition: transform 0.2s ease; }
.btn-accent:hover .arrow { transform: translateX(3px); }

.btn-outline { background: transparent; border-color: color-mix(in srgb, var(--foreground) 25%, transparent); color: var(--foreground); }
.btn-outline:hover { background-color: var(--foreground); color: var(--background); }

.header-cta-btn {
  display: none;
  padding: 0.6rem 1.2rem;
  background-color: var(--foreground);
  color: var(--background);
  border-radius: 9999px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  font-weight: 700;
}
.header-cta-btn:hover { color: var(--background); opacity: 0.88; }
@media (min-width: 560px) { .header-cta-btn { display: inline-flex; } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 6rem 0 5rem;
  overflow: hidden;
}
@media (min-width: 768px) { .hero { padding: 8rem 0 6.5rem; } }

.hero-glow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 120%;
  z-index: 0;
  background:
    radial-gradient(60% 55% at 75% 8%, color-mix(in srgb, var(--accent) 55%, transparent), transparent 60%),
    radial-gradient(70% 70% at 18% 0%, color-mix(in srgb, var(--secondary) 40%, transparent), transparent 55%);
  filter: blur(8px);
  opacity: 0.9;
  pointer-events: none;
}
[data-theme="dark"] .hero-glow {
  opacity: 0.6;
  inset: -30% -10% auto -10%;
  height: 80%;
  filter: blur(20px);
}

.hero .container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.5rem 0.45rem 1rem;
  border-radius: 9999px;
  background: var(--card);
  border: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}
.hero-badge .tag {
  background: var(--accent);
  color: var(--accent-foreground);
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.7rem;
}

.hero-title {
  font-size: clamp(3rem, 8.5vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  max-width: 16ch;
}
.hero-title .leaf { color: var(--primary); font-style: italic; }
[data-theme="dark"] .hero-title .leaf { color: var(--accent); }

.hero-description {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--muted-foreground);
  max-width: 38rem;
  margin: 1.8rem 0 2.5rem;
  line-height: 1.6;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }

.hero-figure {
  position: relative;
  margin-top: 4.5rem;
  border-radius: 1.6rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 92%, #000), var(--secondary));
  min-height: 22rem;
  aspect-ratio: 16 / 8;
  display: grid;
  place-items: center;
  box-shadow: 0 40px 80px -40px color-mix(in srgb, var(--primary) 60%, transparent);
}
.hero-figure .contour { position: absolute; inset: 0; opacity: 0.5; }
.hero-figure .figure-caption {
  position: absolute;
  left: 1.4rem;
  bottom: 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: color-mix(in srgb, var(--primary-foreground) 80%, transparent);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-figure .figure-caption::before {
  content: "";
  width: 0.5rem; height: 0.5rem; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 30%, transparent);
}

.hero-readout {
  position: absolute;
  right: 1.4rem;
  top: 1.4rem;
  background: color-mix(in srgb, var(--card) 88%, transparent);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: 1rem 1.2rem;
  text-align: right;
}
.hero-readout .val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.9rem;
  letter-spacing: -0.03em;
  color: var(--foreground);
  line-height: 1;
}
.hero-readout .lbl {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--muted-foreground);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}

/* ============================================================
   LOGO STRIP
   ============================================================ */
.logo-strip { padding: 2.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.logo-strip-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}
.logo-row { display: flex; justify-content: center; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.logo-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--muted-foreground);
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.logo-item:hover { opacity: 1; color: var(--foreground); }
.logo-item svg { width: 1.4rem; height: 1.4rem; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px color-mix(in srgb, var(--foreground) 15%, transparent); }

.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.feature-index {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
}
.feature-icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.75rem;
  background: var(--muted);
  display: grid;
  place-items: center;
  color: var(--primary);
}
.feature-icon svg { width: 1.4rem; height: 1.4rem; }
.card.is-accent .feature-icon { background: var(--accent); color: var(--accent-foreground); }

.card-kicker {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: 0.2rem;
}
.card h3 { font-size: var(--text-xl); margin: 0.2rem 0; }
.card-body { color: var(--muted-foreground); font-size: 0.95rem; line-height: 1.65; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--primary);
  margin-top: auto;
}
.card-link .arrow { transition: transform 0.2s ease; }
.card-link:hover .arrow { transform: translateX(3px); }

/* ============================================================
   SPLIT (two-column)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.split-media {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  min-height: 22rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: grid;
  place-items: center;
}
.split-media .contour { position: absolute; inset: 0; opacity: 0.45; }
.split-media .media-tag {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--primary-foreground) 80%, transparent);
  padding: 0.3rem 0.7rem;
  border-radius: 9999px;
  background: color-mix(in srgb, var(--background) 70%, transparent);
  backdrop-filter: blur(6px);
}

.split-body { display: flex; flex-direction: column; gap: 1.2rem; }
.split-body h2 { margin: 0.3rem 0; }
.split-body .lede { color: var(--muted-foreground); font-size: var(--text-lg); line-height: 1.6; }
.split-note { color: var(--muted-foreground); font-size: 0.95rem; line-height: 1.6; }

.split.is-reversed { direction: rtl; }
.split.is-reversed > * { direction: ltr; }
@media (min-width: 900px) { .split.is-reversed { grid-template-columns: 1fr 1fr; } }

.checklist { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; margin: 0; padding: 0; }
.checklist li { display: flex; align-items: flex-start; gap: 0.7rem; }
.checklist .tick {
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--accent);
}
.checklist .tick svg { width: 100%; height: 100%; }

/* ============================================================
   INTEGRATION GRID (pill badges)
   ============================================================ */
.integration-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px) { .integration-grid { grid-template-columns: repeat(4, 1fr); } }

.integration-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  border-radius: 0.8rem;
  background: var(--card);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--foreground);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.integration-pill:hover { transform: translateY(-2px); box-shadow: 0 8px 20px -8px color-mix(in srgb, var(--foreground) 10%, transparent); }
.integration-pill svg { width: 1.1rem; height: 1.1rem; flex-shrink: 0; }

/* ============================================================
   IMPACT CARDS (ESG)
   ============================================================ */
.impact-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .impact-grid { grid-template-columns: repeat(3, 1fr); } }

.impact-card {
  display: grid;
  grid-template-rows: 12rem auto;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
}

.impact-media {
  position: relative;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  overflow: hidden;
  display: grid;
  place-items: center;
}
.impact-media .contour { position: absolute; inset: 0; opacity: 0.4; }
.impact-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 9999px;
  background: var(--accent);
  color: var(--accent-foreground);
  font-weight: 700;
}

.impact-body { padding: 1.8rem; display: flex; flex-direction: column; gap: 0.8rem; }
.impact-body h3 { font-size: var(--text-lg); }
.impact-meta {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-top: auto;
}
.impact-meta::before {
  content: "";
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--accent);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta {
  position: relative;
  border-radius: 1.6rem;
  overflow: hidden;
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 92%, #000), var(--secondary));
  padding: 4rem 2rem;
}
.cta .contour { position: absolute; inset: 0; opacity: 0.35; pointer-events: none; }
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.cta-inner h2 { color: var(--primary-foreground); margin: 0.3rem 0; }
.cta-inner p { color: color-mix(in srgb, var(--primary-foreground) 80%, transparent); }
.cta-inner .eyebrow { color: var(--accent); }
.cta-inner .eyebrow::before { background: var(--primary-foreground); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { border-top: 1px solid var(--border); }

.footer-top { padding: 4rem 0 3rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 2fr repeat(3, 1fr); } }

.footer-brand p {
  font-size: 0.92rem;
  color: var(--muted-foreground);
  line-height: 1.65;
  margin-top: 1rem;
  max-width: 24rem;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
  font-size: 0.88rem;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--foreground); opacity: 1; }

.footer-bottom { border-top: 1px solid var(--border); padding: 1.5rem 0; }
.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-credits {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: var(--muted-foreground);
}
.footer-social { display: flex; gap: 1rem; }
.footer-social a { color: var(--muted-foreground); transition: color 0.2s ease; }
.footer-social a:hover { color: var(--foreground); }
.footer-social svg { width: 1.2rem; height: 1.2rem; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { transition: none; }
  .btn:hover, .card:hover, .integration-pill:hover { transform: none; }
}

/* Theme animation freeze (used during dark-mode switch) */
html.theme-anim-off *, html.theme-anim-off *::before, html.theme-anim-off *::after {
  transition: none !important;
}

/* WordPress block compatibility */
.wp-block-button__link {
  border-radius: 9999px;
  font-family: var(--font-body);
  font-weight: 600;
  padding: 0.9rem 1.6rem;
}
.wp-block-buttons { gap: 0.9rem; }

