@import url("https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,700,900&display=swap");

/* ==========================================================================
   ROOTED Design System — Pure CSS
   ========================================================================== */

/* WordPress theme: CF7 form wrappers, ACF dynamic backgrounds, uploaded icons. */

:root {
  --radius: 0.75rem;
  /* Header: matches React SiteNav h-16 / md:h-20 (+ 1px border on .site-header) */
  --header-bar-h: 4rem;
  --header-h: calc(var(--header-bar-h) + 1px);
  --font-sans: "Satoshi", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Satoshi", ui-sans-serif, system-ui, sans-serif;

  --background: oklch(0.985 0.005 95);
  --foreground: oklch(0.2 0.015 240);
  --cream: oklch(0.97 0.012 90);
  --ink: oklch(0.18 0.015 240);
  --card: oklch(1 0 0);
  --primary: oklch(0.38 0.045 165);
  --primary-foreground: oklch(0.98 0.005 95);
  --muted-foreground: oklch(0.45 0.02 240);
  --border: oklch(0.9 0.01 240);
  --input: oklch(0.9 0.01 240);
  --ring: oklch(0.38 0.045 165);
  --moss: oklch(0.66 0.1 115);
  --green: #315241;
  --teal-deep: oklch(0.3 0.04 180);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft:
    0 1px 2px oklch(0.18 0.015 240 / 0.04),
    0 8px 24px oklch(0.18 0.015 240 / 0.06);
  --shadow-lift:
    0 2px 4px oklch(0.18 0.015 240 / 0.05),
    0 20px 40px -12px oklch(0.18 0.015 240 / 0.12);
}

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

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

@media (min-width: 768px) {
  :root {
    --header-bar-h: 5rem;
  }
}

body {
  margin: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "ss02";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html:has(body.nav-open),
body.nav-open {
  overflow: hidden;
  overscroll-behavior: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  font-weight: 500;
}

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

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

.site-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1;
}

/* Layout */
.section-x {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.section-y {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.container-rooted {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.inset-0 {
  inset: 0;
}
.overflow-hidden {
  overflow: hidden;
}
.pointer-events-none {
  pointer-events: none;
}
.w-full {
  width: 100%;
}
.h-full {
  height: 100%;
}
.object-cover {
  object-fit: cover;
}
.object-contain {
  object-fit: contain;
}
.min-h-screen {
  min-height: 100vh;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.text-center {
  text-align: center;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Typography */
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  font-weight: 500;
}
.display-xl {
  font-size: clamp(2.75rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 500;
}
.display-lg {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 500;
}
.display-md {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.italic-accent {
  font-style: italic;
  font-weight: 400;
  color: var(--moss);
}
.text-muted {
  color: var(--muted-foreground);
}
.text-foreground-75 {
  color: color-mix(in oklch, var(--foreground) 75%, transparent);
}
.text-foreground-80 {
  color: color-mix(in oklch, var(--foreground) 80%, transparent);
}
.leading-relaxed {
  line-height: 1.625;
}
.text-xl {
  font-size: 1.25rem;
}
.text-lg {
  font-size: 1.125rem;
}
.text-sm {
  font-size: 0.875rem;
}
.text-xs {
  font-size: 0.75rem;
}
.font-medium {
  font-weight: 500;
}
.font-mono {
  font-family: ui-monospace, monospace;
}
.underline {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Surfaces */
.surface-ink {
  background: #151b20;
  color: #fff;
}
.surface-teal {
  background: #315241;
  color: #fff;
}
.surface-ivory {
  background: oklch(0.975 0.012 88);
  color: var(--ink);
}
.bg-cream {
  background: var(--cream);
}
.border-t {
  border-top: 1px solid var(--border);
}
.border-y {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.divide-y > * + * {
  border-top: 1px solid var(--border);
}

/* Cards */
.card-rooted {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: all 0.4s var(--ease-soft);
}
.card-rooted:hover {
  border-color: oklch(0.66 0.1 115 / 0.4);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}
.card-dark {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: all 0.4s var(--ease-soft);
  color: #fff;
}
.card-dark:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.card-dark .icon,
.card-dark .icon-sm {
  color: rgba(255, 255, 255, 0.85);
}

.surface-teal .card-dark .icon {
  color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease-soft);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  font-family: inherit;
  max-width: 100%;
  line-height: 1.5;
}

/* @media (max-width: 479px) {
  .btn-row .btn {
    flex: 1 1 100%;
    width: 100%;
    white-space: normal;
    text-align: center;
  }
} */
.btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}
.btn-primary:hover {
  background: var(--teal-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lift);
}
.btn-ghost {
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: var(--foreground);
  color: var(--background);
}
.btn-on-dark {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.btn-on-dark:hover {
  background: #fff;
  color: var(--ink);
}
.btn-light {
  background: #fff;
  color: var(--ink);
}
.btn-light:hover {
  background: oklch(0.95 0.01 95);
  transform: translateY(-1px);
}
.btn-block {
  width: 100%;
  justify-content: center;
}

/* Header (fixed — sticky breaks when ancestors use overflow-x) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  transition:
    background 0.3s,
    border-color 0.3s;
  background: rgba(21, 27, 32, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 1051px) {
  .site-header.is-menu-open {
    overflow: visible;
  }
}

.site-header.is-scrolled,
.site-header.is-inner {
  background: rgba(21, 27, 32, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

/* Mobile menu open: solid bar + panel (no gray blur band) */
.site-header.is-menu-open {
  background: #151b20;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: "logo actions";
  align-items: center;
  gap: 0.75rem 1rem;
  box-sizing: border-box;
  height: var(--header-bar-h);
  min-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  color: #fff;
}

@media (min-width: 1052px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "logo nav actions";
    gap: 1rem 1.5rem;
  }
}

.logo {
  grid-area: logo;
  flex-shrink: 0;
  min-width: 0;
}

.logo img {
  height: 1.75rem;
  width: auto;
  max-width: min(140px, 42vw);
}

@media (min-width: 768px) {
  .logo img {
    height: 2.25rem;
    max-width: none;
  }
}

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

.nav-desktop {
  display: none;
  grid-area: nav;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  flex-wrap: wrap;
  min-width: 0;
}

@media (min-width: 1052px) {
  .nav-desktop {
    display: flex;
  }
}
.nav-desktop a,
.nav-dropdown-btn {
  border-radius: 999px;
  padding: 0.375rem 0.875rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  background: none;
  border: none;
  cursor: default;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  user-select: none;
  transition:
    color 0.2s,
    background 0.2s;
}
.nav-desktop a:hover,
.nav-dropdown-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.nav-desktop a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.header-cta {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 1052px) {
  .header-cta {
    display: flex;
  }
}

/* .header-cta a:first-child {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

.header-cta a:first-child:hover {
  color: #fff;
} */

.header-cta .btn {
  font-size: 0.875rem;
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  margin-right: -8px;
}

@media (min-width: 1052px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}

.nav-mobile {
  display: none;
  background: #151b20;
  color: #fff;
}

@media (max-width: 1051px) {
  /* absolute (not fixed): header transform/backdrop-filter create a containing block */
  .nav-mobile.is-open {
    display: block;
    position: fixed;
    top: var(--header-h, 4rem);
    left: 0;
    right: 0;
    z-index: 99;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header-inner {
    position: relative;
    z-index: 101;
  }

  .header-actions {
    gap: 0.375rem;
  }
}

@media (min-width: 1052px) {
  .nav-mobile {
    display: none !important;
  }
}

.nav-mobile.is-open .nav-mobile-inner {
  display: flex;
  flex-direction: column;
  min-height: unset;
  padding-top: 1rem;
  padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
  gap: 1rem;
}

.nav-mobile-inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
}

.nav-mobile a {
  display: flex;
  align-items: center;
  padding: 0;
  font-size: 16px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.8);
}

.nav-mobile a:hover {
  color: #fff;
}

.nav-mobile-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 8px;
}

.nav-mobile-group:first-of-type {
  margin-top: 0.5rem;
}

.nav-mobile .eyebrow {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 0.25rem;
  padding: 0;
}

.nav-mobile-group a {
  font-size: 14px;
  padding: 0;
  color: rgba(255, 255, 255, 0.8);
}

.nav-mobile-footer {
  margin-top: 8px;
  padding-top: 0.875rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-mobile-footer > a:first-child {
  font-size: 14px;
  /* color: rgba(255, 255, 255, 0.8); */
}

.nav-mobile-footer .btn-light {
  width: 100%;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  color: var(--ink);
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown-panel {
  position: absolute;
  left: 0;
  top: 100%;
  padding-top: 0.75rem;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition:
    opacity 0.25s var(--ease-soft),
    transform 0.25s var(--ease-soft),
    visibility 0.25s;
}
.nav-dropdown.is-open .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-dropdown-menu {
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1b2126;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  padding: 0.5rem;
  transform-origin: top left;
}
.nav-dropdown-menu a {
  display: block;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
}
.nav-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .nav-dropdown-panel {
    transition: none;
    transform: none;
  }
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  background: #1a2620;
  color: #fff;
}
.footer-gradient-top {
  position: absolute;
  inset: 0 0 auto 0;
  height: 8rem;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent);
}
.footer-motif {
  position: absolute;
  inset: 0 0 auto 0;
  width: 100%;
  opacity: 0.04;
  mix-blend-mode: screen;
  pointer-events: none;
}
.footer-prefooter {
  padding-top: 6rem;
  padding-bottom: 4rem;
}
.footer-logo {
  height: 1.75rem;
  width: auto;
  margin-bottom: 2rem;
  opacity: 0.95;
}
.text-green {
  color: #315241;
}
@media (min-width: 768px) {
  .footer-prefooter {
    padding-top: 8rem;
  }
  .footer-logo {
    height: 2rem;
  }
}
.footer-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
  }
  .footer-cta-col {
    padding-left: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.footer-columns {
  display: grid;
  gap: 3rem;
  padding: 3rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.text-lg.footer-description,
.text-lg.footer-tagline {
  font-size: 1rem;
}
.text-lg.footer-tagline {
  color: rgba(255, 255, 255, 0.85);
}
@media (min-width: 640px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .footer-columns {
    grid-template-columns: repeat(3, 1fr);
    padding: 3rem 0;
  }
  .text-lg.footer-description,
  .text-lg.footer-tagline {
    font-size: 1.125rem;
  }
}
.footer-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-columns li {
  margin-bottom: 0.75rem;
}
.footer-columns a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}
.footer-columns a:hover {
  color: #fff;
}
.footer-brand-mark {
  padding-top: 4rem;
  text-align: center;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  font-family: Satoshi, sans-serif;
  font-weight: 900;
  letter-spacing: -0.05em;
  font-size: clamp(6rem, 22vw, 22rem);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.02)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer-main-logo {
  padding-top: 2rem;
}
.footer-main-logo-img {
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
}
.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}
@media (min-width: 768px) {
  .footer-legal {
    flex-direction: row;
  }
}

/* Page hero */
.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid color-mix(in oklch, var(--border) 60%, transparent);
}
.page-hero--soft {
}
.page-hero--soft .page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  pointer-events: none;
}
.page-hero--soft .page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    color-mix(in oklch, var(--background) 40%, transparent),
    color-mix(in oklch, var(--background) 30%, transparent),
    var(--background)
  );
}
.page-hero--ink {
  background: #151b20;
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.page-hero--ink::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.6;
  pointer-events: none;
  background:
    radial-gradient(
      80% 60% at 80% 10%,
      rgba(49, 82, 65, 0.55),
      transparent 60%
    ),
    radial-gradient(
      70% 60% at 10% 90%,
      rgba(101, 109, 35, 0.3),
      transparent 60%
    );
}
.page-hero--ivory {
  background: oklch(0.975 0.012 88);
  color: var(--ink);
}
.page-hero-content {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .page-hero-content {
    padding-top: 8rem;
    padding-bottom: 6rem;
  }
}
.page-hero .eyebrow--on-dark {
  color: rgba(255, 255, 255, 0.6);
}

/* CTA panel */
.cta-panel-wrap {
  padding: 5rem 0;
}
@media (min-width: 768px) {
  .cta-panel-wrap {
    padding: 7rem 0;
  }
}
.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  padding: 2.5rem;
}
@media (min-width: 768px) {
  .cta-panel {
    padding: 4rem;
  }
}
.cta-panel .cta-motif {
  position: absolute;
  right: -5rem;
  bottom: -5rem;
  width: 520px;
  opacity: 0.08;
  mix-blend-mode: screen;
  pointer-events: none;
}
@media (max-width: 767px) {
  .cta-panel .cta-motif {
    display: none;
  }
}

/* Grids — mobile-first: single column by default */
.grid-2,
.grid-3,
.grid-4,
.grid-5,
.recognition-grid,
.privacy-grid,
.science-grid,
.founders-grid,
.audience-grid,
.features-grid {
  display: grid;
  width: 100%;
  min-width: 0;
}

.grid-2,
.grid-3,
.grid-4,
.grid-5,
.recognition-grid,
.privacy-grid {
  grid-template-columns: 1fr;
  gap: 1rem;
}

/* Recognition cards (6 items) */
.recognition-grid {
  gap: 1rem;
}
.science-grid h3 {
  font-size: 1rem;
}
.audience-grid h3 {
  font-size: 1rem;
}
.audience-grid svg.size-5.text-white\/80,
.audience-grid .audience-icon--svg {
  width: 20px;
  height: 20px;
  opacity: 0.8;
  color: rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
}

/* Who section — dynamic icon images (match original white line-art) */
#who .card-dark .audience-icon {
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
  opacity: 0.8;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

#who .card-dark .audience-icon--svg {
  filter: none;
}

/* How It Works — step icons (match original Lucide strokes) */
#how-it-works .step-icon--svg {
  width: 16px;
  height: 16px;
  color: var(--moss);
  opacity: 0.7;
  flex-shrink: 0;
}

#how-it-works .card-rooted img.step-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .recognition-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .recognition-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Privacy ethics cards (6 items) */
.privacy-grid {
  gap: 1rem;
}

@media (min-width: 640px) {
  .privacy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .privacy-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Two-column section layouts (text + media) */
.layout-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  width: 100%;
}

@media (min-width: 1024px) {
  .layout-split--2-1 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  }

  .layout-split--11-1 {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }

  .layout-split--15-1 {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  }

  .layout-split--1-105 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  }

  .layout-split--1-14 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  }

  .layout-split--plan {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.5fr);
    align-items: start;
  }
}

/* Steps: 1 → 2 → 4 columns */
ol.steps.grid-4 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  ol.steps.md-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  ol.steps.md-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-5 {
  gap: 1.25rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-10 {
  gap: 2.5rem;
}
.gap-12 {
  gap: 3rem;
}
.gap-14 {
  gap: 3.5rem;
}

.grid-auto-fit {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
}

.grid-auto-fit-sm {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr));
}

@media (min-width: 1024px) {
  .grid-auto-fit-sm.lg-grid-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 640px) {
  .sm-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .lg-grid-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .lg-grid-2-1 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  }
  .lg-grid-1-1 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg-grid-1-105 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  }
  .lg-grid-11-1 {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
  .lg-grid-1-14 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  }
}

/* Section header: stack until desktop */
.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
}

.section-head.mb-12 {
  margin-bottom: 2.5rem;
}
.section-head.mb-14 {
  margin-bottom: 2.5rem;
}

.section-head-link {
  display: inline-block;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .section-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
  }

  .section-head.mb-12 {
    margin-bottom: 3rem;
  }
  .section-head.mb-14 {
    margin-bottom: 3.5rem;
  }

  .section-head-link {
    margin-left: auto;
    text-align: right;
  }
}

/* Legacy alias */
.md-flex-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
}

@media (min-width: 1024px) {
  .md-flex-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
  }
}

/* Who Rooted is for — audience cards */
@media (min-width: 640px) {
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .audience-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

#who .card-dark {
  height: 100%;
  display: flex;
  flex-direction: column;
}

#who .card-dark h3 {
  line-height: 1.3;
}

#who .card-dark p {
  flex: 1;
}

/* The Science — 1 col mobile, 3 col tablet+ */
@media (min-width: 768px) {
  .science-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

#science .card-dark p,
.privacy-grid .card-dark p {
  flex: 1;
}

#science .card-dark,
.privacy-grid .card-dark {
  height: 100%;
  display: flex;
  flex-direction: column;
}

#science .eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 768px) {
  .founders-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

#founders .card-rooted {
  height: 100%;
  display: flex;
  flex-direction: column;
}

#founders .founder-portrait {
  flex-shrink: 0;
}

@media (max-width: 479px) {
  #founders .founder-portrait {
    max-height: 22rem;
    aspect-ratio: 4/5;
  }
}

.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}

@media (min-width: 1024px) {
  .lg-grid-1-105.items-center,
  .lg-grid-2-1.items-center {
    align-items: center;
  }
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-2 {
  gap: 0.5rem;
}

/* Hero home */
.hero-home {
  margin-top: 0;
  min-height: min(88vh, 900px);
  min-height: min(88dvh, 900px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 10rem;
  padding-bottom: 8rem;
}

@media (min-width: 768px) {
  .hero-home {
    padding-top: 14rem;
    padding-bottom: 11rem;
  }
  .hero-home.hero-waitlist {
    padding-top: 10rem;
    padding-bottom: 6.5rem;
  }
  .section-x {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .section-y {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
  .footer-brand-mark {
    padding-top: 6rem;
  }
}
.hero-home .hero-bg {
  filter: saturate(0.85) contrast(1.02);
  opacity: 0.8;
  animation: rooted-hero-drift 1.4s var(--ease-soft) both;
}
.hero-overlay-1 {
  background: linear-gradient(
    180deg,
    rgba(21, 27, 32, 0.55) 0%,
    rgba(21, 27, 32, 0.35) 35%,
    rgba(21, 27, 32, 0.85) 85%,
    rgba(21, 27, 32, 0.96) 100%
  );
}
.hero-overlay-2 {
  background: radial-gradient(
    60% 50% at 50% 35%,
    rgba(0, 0, 0, 0) 0%,
    rgba(21, 27, 32, 0.45) 100%
  );
}
.text-white {
  color: #fff;
}
.text-white-55 {
  color: rgba(255, 255, 255, 0.55);
}
.text-white-60 {
  color: rgba(255, 255, 255, 0.6);
}
.text-white-65 {
  color: rgba(255, 255, 255, 0.65);
}
.text-white-70 {
  color: rgba(255, 255, 255, 0.7);
}
.text-white-75 {
  color: rgba(255, 255, 255, 0.75);
}
.text-white-80 {
  color: rgba(255, 255, 255, 0.8);
}
.text-white-85 {
  color: rgba(255, 255, 255, 0.85);
}
.text-white-90 {
  color: rgba(255, 255, 255, 0.9);
}
.text-moss {
  color: var(--moss);
}
.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.features-grid--rooted svg.size-5.text-\[var\(--moss\)\] {
  color: var(--moss);
  width: 20px;
  height: 20px;
}
.steps--how-it-works svg.size-4.text-\[var\(--moss\)\]\/70 {
  width: 16px;
  height: 16px;
  color: var(--moss);
  opacity: 0.7;
}
.report-list--rooted svg.size-4.mt-1.text-\[var\(--moss\)\] {
  width: 16px;
  height: 16px;
  color: var(--moss);
}
.report-link--rooted svg.lucide {
  width: 16px;
  height: 16px;
}
.privacy-grid h3 {
  font-size: 1rem;
}
/* Dark surface eyebrow override */

.hero-home.surface-ink .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.surface-ink .eyebrow,
.surface-teal .eyebrow,
.section-head--dark .eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.surface-ink .italic-accent--light,
.surface-ink .hero-accent {
  color: rgba(183, 210, 224, 0.95);
  font-style: italic;
  font-weight: 400;
}
.max-w-xl {
  max-width: min(36rem, 100%);
}
.max-w-2xl {
  max-width: min(42rem, 100%);
}
.max-w-3xl {
  max-width: min(48rem, 100%);
}
.max-w-4xl {
  max-width: min(56rem, 100%);
}
.max-w-5xl {
  max-width: min(64rem, 100%);
}

/* .display-xl,
.display-lg,
.display-md {
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
} */
.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-7 {
  margin-top: 1.75rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-14 {
  margin-top: 3.5rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-14 {
  margin-bottom: 3.5rem;
}
.space-y-3 > * + * {
  margin-top: 0.75rem;
}
.space-y-4 > * + * {
  margin-top: 1rem;
}
.space-y-5 > * + * {
  margin-top: 1.25rem;
}
.space-y-12 > * + * {
  margin-top: 3rem;
}
.space-y-14 > * + * {
  margin-top: 3.5rem;
}
.list-none {
  list-style: none;
  padding: 0;
}
ol.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

/* Image sections */
.img-banner {
  width: 100%;
  height: 44vh;
  object-fit: cover;
  filter: saturate(0.85);
}
@media (min-width: 768px) {
  .img-banner {
    height: 58vh;
  }
}
.img-banner-caption {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
@media (min-width: 768px) {
  .img-banner-caption {
    bottom: 2rem;
    left: 2rem;
  }
}

.aspect-5-4 {
  aspect-ratio: 5/4;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}
.aspect-4-5 {
  aspect-ratio: 4/5;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  background: var(--cream);
}
.rounded-xl {
  border-radius: 0.75rem;
}
.ring-1 {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

/* Motifs */
.motif {
  pointer-events: none;
  position: absolute;
}
.motif--hide-mobile {
  display: none;
}
@media (min-width: 768px) {
  .motif--hide-mobile {
    display: block;
  }
}

/* Section backgrounds, overlays, and positioned motifs */
.border-t-white-5 {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.recognition-bg-img {
  opacity: 0.18;
  filter: saturate(0.7);
}
.recognition-overlay {
  background: linear-gradient(
    180deg,
    rgba(21, 27, 32, 0.92),
    rgba(21, 27, 32, 0.86)
  );
}
.recognition-section .card-dark {
  background: linear-gradient(
    155deg,
    rgba(72, 98, 82, 0.36) 0%,
    rgba(88, 115, 98, 0.22) 48%,
    rgba(49, 82, 65, 0.14) 100%
  );
  border-color: rgba(173, 200, 178, 0.22);
}
.recognition-section .card-dark:hover {
  background: linear-gradient(
    155deg,
    rgba(82, 110, 92, 0.42) 0%,
    rgba(96, 125, 106, 0.28) 48%,
    rgba(58, 92, 74, 0.18) 100%
  );
  border-color: rgba(188, 214, 193, 0.32);
}
.motif--recognition-rings {
  right: -10rem;
  bottom: -8rem;
  width: 640px;
  opacity: 0.05;
}

#understanding .understanding-overlay {
  opacity: 0.6;
  background: linear-gradient(
    135deg,
    rgba(183, 210, 224, 0.3),
    rgba(255, 255, 255, 0) 55%
  );
}
.motif--understanding-wave {
  inset: auto 0 0 0;
  width: 100%;
  opacity: 0.2;
}
.motif--founders-wave {
  inset: auto 0 0 0;
  width: 100%;
  opacity: 0.65;
}
.motif--understanding-loops {
  left: -6rem;
  bottom: -6rem;
  width: 420px;
  opacity: 0.06;
}
.understanding-photo {
  filter: saturate(0.85);
}
.understanding-photo-overlay {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0.1)
  );
}

.steps--how-it-works .card-rooted h3 {
  line-height: 1.375;
}
.motif--how-wave {
  inset: 0 0 auto 0;
  width: 100%;
  opacity: 0.4;
}

#privacy .privacy-bg-img {
  opacity: 0.22;
  filter: saturate(0.6) contrast(1.05);
  mix-blend-mode: screen;
}
.motif--privacy-rings {
  left: -10rem;
  top: 50%;
  transform: translateY(-50%);
  width: 620px;
  opacity: 0.07;
  mix-blend-mode: screen;
}
.privacy-overlay {
  background:
    radial-gradient(
      80% 60% at 90% 10%,
      rgba(21, 27, 32, 0.55),
      transparent 60%
    ),
    linear-gradient(180deg, rgba(49, 82, 65, 0.55), rgba(49, 82, 65, 0.85));
}

.motif--method-rings {
  right: -4rem;
  top: 2.5rem;
  width: 360px;
  opacity: 0.18;
}

.motif--science-dot {
  left: -4rem;
  bottom: 2rem;
  width: 280px;
  opacity: 0.08;
  mix-blend-mode: screen;
}

#who .who-bg-img {
  opacity: 0.5;
  filter: saturate(0.8);
}
#who .who-overlay {
  background: linear-gradient(
    180deg,
    rgba(21, 27, 32, 0.85),
    rgba(21, 27, 32, 0.78) 50%,
    rgba(21, 27, 32, 0.92)
  );
}

#waitlist .waitlist-bg-img {
  opacity: 0.7;
  filter: saturate(0.85);
}
#waitlist .waitlist-overlay {
  background: linear-gradient(
    180deg,
    rgba(21, 27, 32, 0.75) 0%,
    rgba(21, 27, 32, 0.55) 40%,
    rgba(21, 27, 32, 0.92) 100%
  );
}
.hiw-cta .waitlist-overlay {
  background: linear-gradient(180deg, rgba(31, 51, 40, 0.5) 0%, #1f3328 100%);
}
.hiw-cta.hiw-cta--dark .waitlist-overlay {
  background: linear-gradient(
    180deg,
    rgba(21, 27, 32, 0.75) 0%,
    rgba(21, 27, 32, 0.55) 40%,
    rgba(21, 27, 32, 0.92) 100%
  );
}
.report-cta .waitlist-overlay {
  background: linear-gradient(180deg, rgba(31, 51, 40, 0.5) 0%, #1f3328 100%);
}
.surface-ink.report-cta .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}
/* Founder portrait */
.founder-portrait {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}
.founder-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-portrait--ink {
  background: linear-gradient(160deg, #1f2a2d 0%, #2c3a3e 55%, #455d56 100%);
}
.founder-portrait--teal {
  background: linear-gradient(160deg, #1d3138 0%, #2a4a55 55%, #3e6b72 100%);
}
.founder-portrait--moss {
  background: linear-gradient(160deg, #232a23 0%, #34402f 55%, #4c5a3a 100%);
}

/* FAQ details */
details.faq {
  padding: 1.25rem 0;
}
details.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  cursor: pointer;
  list-style: none;
}
details.faq summary::-webkit-details-marker {
  display: none;
}
details.faq .faq-toggle {
  color: var(--moss);
  transition: transform 0.2s;
  flex-shrink: 0;
}
details.faq[open] .faq-toggle {
  transform: rotate(45deg);
}

/* Forms */
.form-field {
  margin-bottom: 0;
}
.form-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--input);
  background: var(--background);
  padding: 0.875rem;
  font-size: 0.875rem;
  font-family: inherit;
}
.form-field textarea {
  min-height: 6.5rem;
  resize: vertical;
  line-height: 1.5;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--ring);
}
.form-grid-2 {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .form-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* Icons inline */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}
.icon-sm {
  width: 1rem;
  height: 1rem;
}
.icon-inline {
  display: inline-flex;
  vertical-align: middle;
  margin-top: 0.125rem;
}

/* Report figure */
.report-figure {
  position: relative;
  margin-top: 0;
}

@media (max-width: 1023px) {
  .report-figure {
    margin-top: 2rem;
  }
}

.report-glow {
  position: absolute;
  inset: -2.5rem;
  border-radius: 2.5rem;
  opacity: 0.7;
  pointer-events: none;
  background:
    radial-gradient(
      60% 55% at 50% 45%,
      rgba(183, 210, 224, 0.35),
      transparent 70%
    ),
    radial-gradient(
      50% 50% at 70% 80%,
      rgba(101, 109, 35, 0.2),
      transparent 70%
    );
}

.report-img {
  position: relative;
  width: 100%;
  filter: drop-shadow(0 40px 60px rgba(21, 27, 32, 0.25));
}
.report-caption {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
.dot-moss {
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--moss);
}

/* Category pills */
.pill {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  font-size: 0.875rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.6);
}
.pill-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

/* Article gradient placeholder */
.article-thumb {
  aspect-ratio: 4/3;
  border-radius: 0.75rem;
  margin-bottom: 1.25rem;
  background: linear-gradient(
    135deg,
    rgba(183, 210, 224, 0.55),
    rgba(101, 109, 35, 0.35)
  );
}

/* Animations */
@keyframes rooted-hero-drift {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}

@keyframes rooted-motif-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes rooted-header-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header {
  animation: rooted-header-in 0.7s var(--ease-soft) forwards;
}

.motif-drift {
  animation: rooted-motif-drift 14s ease-in-out infinite;
}

/* Utility */
.hidden {
  display: none !important;
}
.border-white-5 {
  border-color: rgba(255, 255, 255, 0.05);
}
.border-white-10 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.py-32 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media (min-width: 768px) {
  .py-48 {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
}
.h-px {
  height: 1px;
  width: 4rem;
  background: rgba(255, 255, 255, 0.25);
  margin: 0 auto 2.5rem;
}
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.continue-links {
  color: color-mix(in oklch, var(--foreground) 75%, transparent);
}
.continue-links a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* 404 */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
}
.error-page h1 {
  font-size: 4.5rem;
  font-weight: 700;
}

/* ==========================================================================
   Responsive polish
   ========================================================================== */

.site-wrap {
  overflow-x: clip;
}

html,
body {
  overflow-x: clip;
}

main > section {
  min-width: 0;
}

main > section > .absolute.inset-0.w-full.h-full.object-cover,
.hero-home .hero-bg {
  width: 100%;
  height: 100%;
  object-position: center;
}

/* Motifs: keep off-screen bleed contained */
.motif {
  max-width: none;
}

@media (max-width: 767px) {
  .motif--recognition-rings,
  .motif--privacy-rings,
  .cta-panel .cta-motif {
    display: none !important;
  }
}

/* Feature grid: 1 col mobile, 2 col tablet+ */
@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Final CTA */
#waitlist .container-rooted {
  padding-left: clamp(1rem, 4vw, 2.5rem);
  padding-right: clamp(1rem, 4vw, 2.5rem);
}

#waitlist .py-32 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

@media (min-width: 768px) {
  #waitlist .py-32 {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
}

/* FAQ: full-width summary text */
details.faq summary span:first-child {
  flex: 1;
  min-width: 0;
  padding-right: 0.5rem;
}

/* Footer CTA column border only on desktop */
@media (max-width: 1023px) {
  .footer-cta-col {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0.5rem;
  }
}

.footer-brand-mark {
  overflow: hidden;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

/* Touch targets */
@media (hover: none) and (pointer: coarse) {
  /* .nav-mobile a,
  .menu-toggle,
  .nav-dropdown-btn,
  .btn {
    min-height: 44px;
  } */

  .card-rooted:hover,
  .card-dark:hover {
    transform: none;
  }
}

/* ==========================================================================
   How It Works page
   ========================================================================== */

.hiw-section-head--center {
  justify-content: center;
}

.hiw-journey {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

.hiw-journey-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--card);
  border-radius: 1.25rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid color-mix(in oklch, var(--border) 55%, transparent);
}

.hiw-journey-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.hiw-step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 600;
  color: oklch(0.62 0.04 130);
  letter-spacing: -0.04em;
}

.hiw-step-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  color: oklch(0.58 0.05 130);
  stroke-width: 1.5;
}

.hiw-step-title {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.25;
  color: #315241;
  letter-spacing: -0.02em;
}

.hiw-step-desc {
  margin-top: 0.875rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted-foreground);
  max-width: 40rem;
}

.hiw-check-list {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
  display: grid;
  gap: 0.875rem;
}

.hiw-check-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.375rem;
  height: 1.375rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgb(209 220 199 / 38%);
  color: #fff;
}

.hiw-check-mark svg {
  width: 13px;
  height: 15px;
  stroke: var(--moss);
}
img.hiw-intro-bg-img {
  display: none;
  width: auto;
  left: -8%;
  top: -20%;
  right: auto;
  height: 80%;
  z-index: 100;
}
section.section-y.hiw-intro {
  overflow: hidden;
}
@media (min-width: 640px) {
  .hiw-check-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1.25rem;
  }
}

.hiw-check-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1rem;
  color: oklch(0.42 0.02 240);
  line-height: 1.4;
}

@media (min-width: 768px) {
  .hiw-journey-card {
    grid-template-columns: minmax(6.5rem, 8.5rem) minmax(0, 1fr);
    align-items: start;
    gap: 2.5rem 4rem;
    padding: 3rem 3.5rem;
  }

  .hiw-journey-card--trail {
    grid-template-columns: minmax(0, 1fr) minmax(6.5rem, 7.5rem);
    gap: 2.5rem 3rem;
  }

  .hiw-journey-card--trail .hiw-journey-aside {
    order: 2;
    align-items: flex-end;
  }

  .hiw-journey-card--trail .hiw-journey-body {
    order: 1;
  }
}
.hiw-lenses {
  background-image: url(../images/gradient-rooted.webp);
  background-size: cover;
  background-position: center;
}

.hiw-lenses-head {
  text-align: left;
  max-width: 40rem;
}

.hiw-lenses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  img.hiw-intro-bg-img {
    display: block;
  }
}
@media (min-width: 768px) {
  .hiw-lenses-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .hiw-step-num {
    font-size: 3.5rem;
  }
  .hiw-step-icon {
    width: 2rem;
    height: 2rem;
  }
}

.hiw-lenses-card {
  height: 100%;
  border-radius: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-soft);
  border: 1px solid color-mix(in oklch, var(--border) 50%, transparent);
}

.hiw-lenses-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  color: #315241;
  letter-spacing: -0.01em;
}

.hiw-lenses-card-desc {
  margin-top: 0.875rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted-foreground);
}

.hiw-plan-lead {
  margin-top: 1.5rem;
  font-size: 1.125rem;
}

.hiw-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  min-width: 0;
}
section.section-y.hiw-plan.surface-teal {
  background-image: url(../images/plan-bg.webp);
  background-size: 90%;
  background-position: bottom center;
  background-repeat: no-repeat;
  backdrop-filter: saturate(0.5);
}
.report-list--rooted.accuracy-care-list svg.size-4.mt-1.text-\[var\(--moss\)\] {
  width: 20px;
  height: 20px;
  color: #fff;
  background: var(--moss);
  border-radius: 50%;
  padding: 3px;
  margin-top: 0 !important;
}
@media (max-width: 479px) {
  .hiw-plan-grid {
    grid-template-columns: 1fr;
  }
}

.hiw-plan-card {
  height: 100%;
  border-radius: 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: var(--shadow-soft);
  border: 1px solid color-mix(in oklch, var(--border) 50%, transparent);
}

.hiw-plan-icon {
  width: 1.375rem;
  height: 1.375rem;
  color: oklch(0.58 0.06 130);
  flex-shrink: 0;
}

.hiw-plan-card-title {
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--green);
  letter-spacing: -0.01em;
}

.hiw-plan-card-desc {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
}

.nav-mobile a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  padding: 3px 5px;
  border-radius: 4px;
}

/* ==========================================================================
   Your Report page
   ========================================================================== */

.yr-hero {
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
}

@media (min-width: 768px) {
  .yr-hero {
    padding-top: calc(var(--header-h) + 4.5rem);
    padding-bottom: 6rem;
  }
}

.yr-preview-steps {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.yr-preview-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.yr-preview-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 500;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.yr-preview-step-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--green);
  line-height: 1.3;
}

.yr-preview-step-desc {
  margin-top: 0.5rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.yr-shows-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
  min-width: 0;
}

.yr-shows-card {
  min-width: 0;
}

@media (min-width: 640px) {
  .yr-shows-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1052px) {
  .yr-shows-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

h3.yr-shows-title {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
p.yr-shows-desc {
  margin-top: 1.75rem;
  line-height: 1.5;
}
.yr-shows-text {
  font-size: 0.9375rem;
  font-weight: 400;
  opacity: 0.8;
}

.yr-pill-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-inline: auto;
}
.yr-pill p.eyebrow {
  color: var(--moss);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
h3.yr-pill-step-title {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  font-weight: 500;
  color: var(--green);
  text-align: center;
}
section.section-y.yr-choice {
  background-image: url(../images/bg-img.webp);
  background-size: 125px;
  background-position: top right;
  background-repeat: no-repeat;
  overflow-x: clip;
}
@media (min-width: 640px) {
  .yr-pill-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.yr-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 5rem;
  padding: 1.25rem 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
}

.yr-pill:hover {
  border-color: oklch(0.66 0.1 115 / 0.4);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}
.yr-travel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .yr-travel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .yr-travel-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.yr-boundaries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-inline: auto;
}
.hero-overlay-travel-2 {
  background: radial-gradient(
    60% 50% at 50% 35%,
    rgba(0, 0, 0, 0) 0%,
    rgb(49 82 65 / 45%) 100%
  );
}
@media (min-width: 768px) {
  .yr-boundaries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
  section.section-y.yr-choice {
    background-size: auto;
  }
}

.yr-boundary-card {
  padding: 2rem;
}

.yr-boundary-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--moss);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.yr-boundary-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.yr-boundary-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--foreground-80);
}

.yr-boundary-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
}

.yr-boundary-mark--yes {
  background: var(--moss);
}

.yr-boundary-mark--yes svg {
  width: 13px;
  height: 13px;
  stroke: #fff;
}

.yr-boundary-mark--no {
  background: var(--moss);
  color: #fff;
}

.yr-boundary-mark--no svg {
  width: 13px;
  height: 13px;
  color: #fff;
}

.yr-philosophy {
  padding: clamp(4rem, 10vw, 6rem) 0;
}

.yr-philosophy-quote {
  max-width: 40rem;
  margin-inline: auto;
  line-height: 1.25;
}

.yr-philosophy-quote strong {
  font-weight: 600;
}

.yr-philosophy-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 2rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
}

.yr-philosophy-link:hover {
  color: #fff;
}

.yr-cta {
  min-height: min(70vh, 640px);
  display: flex;
  align-items: center;
}

.yr-cta .waitlist-bg-img {
  opacity: 0.7;
  filter: saturate(0.85);
}

.yr-cta .waitlist-overlay {
  background: linear-gradient(
    180deg,
    rgba(21, 27, 32, 0.75) 0%,
    rgba(21, 27, 32, 0.55) 40%,
    rgba(21, 27, 32, 0.92) 100%
  );
}
.hero-report-overlay-1 {
  background: rgb(0 0 0 / 60%);
}

/* ==========================================================================
   Begin Your Journey page
   ========================================================================== */

.byj-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.byj-prep-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  width: 100%;
}

@media (min-width: 640px) {
  .byj-prep-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.byj-prep-card {
  position: relative;
  overflow: hidden;
  background: var(--card);
  border-radius: 1.25rem;
  box-shadow: var(--shadow-soft);
  list-style: none;
}

.byj-prep-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 3rem 1rem 4rem;
  text-align: center;
}

.byj-prep-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.625rem;
  background: oklch(0.94 0.018 88);
  color: var(--ink);
  flex-shrink: 0;
}
.byj-prep-card-icon img {
  width: 22px;
  height: auto;
}

.byj-prep-card p {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--green);
}

.byj-prep-card-deco {
  position: absolute;
  inset: auto 0 0;
  height: 5rem;
  background: url(../images/card-blur-bg.webp) center bottom / cover no-repeat;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to top, #000 25%, transparent 100%);
  mask-image: linear-gradient(to top, #000 25%, transparent 100%);
}

.byj-signup-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: start;
}

@media (min-width: 1024px) {
  .byj-signup-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 4rem;
  }
  .byj-prep-card-body {
    padding: 5rem 1.5rem;
  }
}

.byj-signup-copy {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.byj-expect-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.byj-expect-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--foreground-80);
}

.byj-expect-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: #eeebdd;
  color: var(--green);
}

.byj-expect-icon svg {
  width: 1rem;
  height: 1rem;
  color: #000;
}

.byj-fit-block {
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in oklch, var(--border) 70%, transparent);
}

.byj-fit-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.byj-fit-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--foreground-80);
}

.byj-fit-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.375rem;
  height: 1.375rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgb(209 220 199 / 38%);
}

.byj-fit-mark svg {
  width: 13px;
  height: 13px;
  stroke: #fff;
}

.byj-form-card {
  box-shadow: var(--shadow-lift);
}
.byj-form-card.card-rooted p.eyebrow {
  color: var(--green);
  font-size: 1rem;
  font-weight: 600;
}
.byj-form,
.byj-form-card .byj-form-wrap form.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.byj-form-card .byj-form-wrap .form-field,
.byj-form > .form-field,
.byj-form-card .byj-form-wrap form.wpcf7-form > .form-field {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.byj-form-card .byj-form-wrap .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.byj-form-card .byj-form-wrap .form-field textarea {
  min-height: 6.5rem;
  resize: vertical;
  line-height: 1.5;
}

.byj-form-card .form-field label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
  margin-bottom: 0.375rem;
}

.byj-form-note {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--muted-foreground);
}

.byj-trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-inline: auto;
  text-align: center;
}

@media (min-width: 768px) {
  .byj-trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
  }
}

.byj-trust-grid li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.byj-trust {
  position: relative;
  overflow: hidden;
  padding-bottom: 14rem;
}

.byj-trust::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6rem;
  width: 11rem;
  height: 15rem;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  background-image: var(--byj-trust-deco-image, url(../images/journey-bg.webp));
  pointer-events: none;
}

.byj-trust::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 14rem;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top center;
  background-image: var(--byj-trust-bg-image, url(../images/main-section-bg.webp));
  pointer-events: none;
}

.byj-trust-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  min-height: 8.5rem;
  padding: 1.5rem 1.25rem;
  box-shadow: 0 1px 1px rgb(0 0 0 / 0.02);
}

.byj-trust-icon img {
  width: 24px;
  height: auto;
}
.byj-trust-icon {
  width: 1.75rem;
  height: 1.7rem;
  color: #262e2a;
  background: #e9e7dc;
  border-radius: 0.75rem;
  padding: 0.35rem;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.byj-trust-grid p {
  font-size: 1.125rem;
  line-height: 1.5;
  color: #2f4a3e;
  text-align: center;
  font-weight: 500;
}

.byj-trust-link.btn {
  min-width: 11rem;
  padding-inline: 1.6rem;
  position: relative;
  z-index: 1;
}
.byj-explore {
  background-image: url(../images/motif-rings-vector.webp);
  background-repeat: no-repeat;
  background-size: 20% auto;
  background-position: -10% -100px;
}

@media (max-width: 991px) {
  .byj-trust::after {
    background-position: bottom center;
  }
  .byj-explore {
    background-position: -10% -50px;
  }
}

@media (max-width: 767px) {
  .byj-trust::after,
  .byj-trust::before {
    display: none;
  }
  .byj-trust {
    padding-bottom: 5rem;
  }
  .byj-trust-card {
    min-height: auto;
  }
  .byj-trust-grid p {
    max-width: none;
  }
  .byj-form-card {
    padding: 1.5rem;
  }
}

.byj-explore-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

.byj-explore-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--green);
  transition: all 0.3s var(--ease-soft);
  height: 100%;
}

.byj-explore-card svg {
  width: 1.65rem;
  height: 1.65rem;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-soft);
  background: var(--moss);
  color: #fff;
  border-radius: 7px;
  padding: 4px;
}
@media (min-width: 1024px) {
  .byj-explore-card {
    padding: 2rem;
    font-size: 1.125rem;
  }
  .byj-explore-card svg {
    width: 1.75rem;
    height: 1.75rem;
    padding: 5px;
  }
}

.byj-explore-card:hover svg {
  transform: translateX(3px);
}

.byj-explore-tagline {
  max-width: 28rem;
  margin-inline: auto;
}

/* ==========================================================================
   Join the Waitlist page
   ========================================================================== */
.hero-app-card img {
  max-width: 260px;
  height: auto;
}
.hero-app-card {
  display: flex;
  justify-content: center;
  width: 100%;
}

.wl-hero-grid {
  width: 100%;
}

.wl-hero h1 strong {
  font-weight: 600;
}
.wl-status {
  background-color: #e5e1cc;
  background-image: url(../images/status-bg.webp);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: auto 85%;
}
.wl-app-card {
  background: var(--green);
  border-radius: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  box-shadow: var(--shadow-lift);
  max-width: 22rem;
  margin-inline: auto;
  width: 100%;
}

.wl-app-card-brand {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 1rem;
}

.wl-app-card-title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.wl-app-card-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 0.5rem;
}

.wl-app-card-field {
  position: relative;
  margin-bottom: 1rem;
}

.wl-app-card-field input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.625rem;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.75rem 2.5rem 0.75rem 0.875rem;
  font-size: 0.875rem;
  color: #fff;
  font-family: inherit;
}

.wl-app-card-field input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.wl-app-card-field svg {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  opacity: 0.6;
  pointer-events: none;
}

.wl-btn-continue {
  width: 100%;
  justify-content: center;
  background: oklch(0.58 0.09 115);
  color: #fff;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-size: 0.9375rem;
  cursor: not-allowed;
  opacity: 0.85;
}

.wl-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 56rem;
  margin-inline: auto;
}
.wl-steps {
  padding-bottom: 9rem;
}
@media (min-width: 640px) {
  .wl-steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.wl-steps-grid .card-dark {
  background: linear-gradient(
    155deg,
    rgba(72, 98, 82, 0.14) 0%,
    rgba(88, 115, 98, 0.14) 48%,
    rgba(49, 82, 65, 0.14) 100%
  );
  border: 1.5px solid #ffffff;
}
.wl-steps-grid .card-dark:hover {
  background: linear-gradient(
    155deg,
    rgba(82, 110, 92, 0.42) 0%,
    rgba(96, 125, 106, 0.28) 48%,
    rgba(58, 92, 74, 0.18) 100%
  );
  border: 1.5px solid #ffffff;
}

.wl-step-card p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
  color: #fff;
}

.wl-signup {
  background: oklch(0.93 0.02 85);
}

.wl-signup-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.wl-steps-grid .card-dark {
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .layout-split--15-1.wl-hero-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  }
}
@media (min-width: 1024px) {
  .wl-signup-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
  .hero-app-card {
    justify-content: flex-end;
  }
  .wl-steps-grid .card-dark {
    padding: 2rem;
  }
  .wl-step-card p {
    font-size: 1.125rem;
  }
  .wl-steps {
    padding-bottom: 12rem;
  }
}

.wl-form-card {
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-lift);
}

.wl-form,
.wl-form-card .wl-form-wrap form.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.wl-form-card .wl-form-wrap .form-field,
.wl-form > .form-field,
.wl-form-card .wl-form-wrap form.wpcf7-form > .form-field {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.wl-form-card .wl-form-wrap .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.wl-form-card .form-field label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
  margin-bottom: 0.375rem;
}

.wl-meantime-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 56rem;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .wl-meantime-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.wl-meantime-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.75rem 1.25rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: var(--green);
  min-height: 6.5rem;
  transition: all 0.3s var(--ease-soft);
}

.wl-meantime-card svg {
  width: 1rem;
  height: 1rem;
  color: var(--moss);
  transform: rotate(90deg);
}

.wl-meantime-card:hover svg {
  transform: rotate(90deg) translateY(2px);
}

.wl-cta {
  display: flex;
  align-items: center;
}

.wl-cta .waitlist-overlay {
  background: linear-gradient(
    180deg,
    rgba(21, 27, 32, 0.75) 0%,
    rgba(21, 27, 32, 0.55) 40%,
    rgba(21, 27, 32, 0.92) 100%
  );
}

.header-cta .btn.is-active {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
}

/* ==========================================================================
   FAQ page
   ========================================================================== */

   .hero-home.surface-ink.faq-hero .eyebrow {
    color: rgba(255, 255, 255, 0.85);
  }
  
  .faq-tabs {
    display: flex;
    flex-direction: row;
    margin-bottom: 3.5rem;
    background: var(--green);
    padding: 12px;
    border-radius: 10px;
    gap: 0.5rem;
    width: auto;
    flex-shrink: 0;
    width: 100%;
  }
  
  .faq-tab {
    padding: 0.5rem 0.875rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    cursor: pointer;
    transition:
      background 0.2s,
      color 0.2s,
      border-color 0.2s;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    width: auto;
    height: auto;
    background: var(--green);
    color: var(--primary-foreground);
    border-color: var(--green);
    min-height: unset;
    text-align: center;
  }
  
  .faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  @media (min-width: 768px) {
    .faq-tabs {
      flex-direction: column;
      width: 250px;
      border-radius: 1rem;
    }
    .faq-container {
      flex-direction: row;
      gap: 1.5rem;
    }
    .faq-tab {
      width: 100%;
      text-align: left;
      padding: 0.75rem 1.25rem;
      font-size: 14px;
    }
  }
  
  @media (min-width: 992px) {
    .faq-tabs {
      width: 300px;
      padding: 1.5rem;
    }
  }
  .motif--faq-wave {
    inset: 0 0 auto 0;
    width: 100%;
    opacity: 0.25;
    top: auto;
    bottom: 0;
  }
  
  .faq-tab:hover {
    background: #fff;
    color: var(--muted-foreground);
  }
  
  .faq-tab.is-active {
    border-color: var(--green);
    background: #fff;
    color: var(--muted-foreground);
  }
  
  .faq-panels {
    flex: 1;
    min-width: 0;
    width: 100%;
    align-self: stretch;
  }
  
  .faq-panel {
    display: none;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  
  .faq-panel.is-active {
    display: flex;
  }
  
  .faq-page details.faq {
    display: block;
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    border-radius: 1.5rem;
    padding: 0;
    box-shadow:
      0 1px 2px oklch(0.18 0.015 240 / 0.04),
      0 6px 20px oklch(0.18 0.015 240 / 0.06);
    transition: box-shadow 0.35s var(--ease-soft);
    border: 1px solid var(--border);
    overflow: hidden;
  }
  
  .faq-page details.faq[open] {
    box-shadow:
      0 2px 4px oklch(0.18 0.015 240 / 0.05),
      0 10px 28px oklch(0.18 0.015 240 / 0.08);
  }
  
  .faq-page details.faq summary {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem;
    transition: padding-bottom 0.35s var(--ease-soft);
  }
  .faq-page details.faq[open] summary {
    padding-bottom: 0;
  }
  .faq-page details.faq summary .font-medium {
    flex: 1;
    min-width: 0;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--green);
    text-align: left;
  }
  
  .faq-chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    transition: transform 0.35s var(--ease-soft);
  }

  .faq-chevron svg,
  .faq-chevron img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .faq-page details.faq[open] .faq-chevron {
    transform: rotate(180deg);
  }

  .faq-page details.faq .faq-chevron--img {
    transform: rotate(180deg);
  }

  .faq-page details.faq[open] .faq-chevron--img {
    transform: rotate(0deg);
  }
  
  .faq-page details.faq .faq-toggle {
    display: none;
  }
  
  .faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    width: 100%;
    box-sizing: border-box;
    margin-top: 0;
    padding: 0 1.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--muted-foreground);
    transition:
      grid-template-rows 0.35s var(--ease-soft),
      margin-top 0.35s var(--ease-soft),
      padding 0.35s var(--ease-soft);
  }

  .faq-page details.faq[open] .faq-answer {
    grid-template-rows: 1fr;
    margin-top: 0.85rem;
    padding: 0 1.75rem 1.75rem;
  }

  .faq-answer-inner {
    overflow: hidden;
    min-height: 0;
  }

  @media (prefers-reduced-motion: reduce) {
    .faq-page details.faq,
    .faq-page details.faq summary,
    .faq-chevron,
    .faq-answer {
      transition: none;
    }
  }
  
  .faq-still.wl-status {
    background-color: transparent;
  }
  .faq-still.wl-status .btn-ghost:not(:hover) {
    background-color: #fff;
  }
  .faq-still .italic-accent {
    color: var(--moss);
  }
  .science-section {
    background-image: url(../images/motif-loops-green.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .faq-home.wl-status {
    background-color: transparent;
    background-size: 33% auto;
  }
  @media (max-width: 767px) {
    .faq-tabs {
      flex-wrap: nowrap;
      justify-content: flex-start;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      margin-bottom: 1rem;
    }
    .faq-chevron {
      width: 1.15rem;
      height: 1.15rem;
      margin-top: 0.15rem;
    }
    .faq-tabs::-webkit-scrollbar {
      display: none;
    }
  
    .faq-tab {
      flex-shrink: 0;
    }
    .faq-page details.faq summary {
      align-items: flex-start;
      gap: 1rem;
      padding: 1.25rem;
    }
    .faq-answer {
      padding: 0 1.25rem;
    }
    .faq-page details.faq[open] .faq-answer {
      padding: 0 1.25rem 1.25rem;
    }
    .faq-page details.faq[open] summary {
      padding-bottom: 0;
    }
    .faq-page details.faq summary .font-medium {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 479px) {
    .wl-form-card {
      padding: 1.25rem;
    }
    .wl-form-card button.btn.btn-primary {
      white-space: normal;
      padding: 0.85rem 1rem;
      font-size: 0.875rem;
    }
  }
  
/* ==========================================================================
   Understanding Patterns page
   ========================================================================== */

.und-look-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-inline: auto;
}
.und-look-card p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--green);
}
@media (min-width: 640px) {
  .und-look-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
  .und-look-card p {
    font-size: 1.125rem;
  }
}

.und-learned {
  min-height: min(52vh, 520px);
  display: flex;
  align-items: center;
}

.und-learned-bg {
  object-position: center 40%;
}

.und-learned-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(21, 27, 32, 0.55) 0%,
    rgba(21, 27, 32, 0.72) 100%
  );
}

.und-attachment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .und-attachment-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.und-topic-icon {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}
span.icon-container {
  width: 2.5rem;
  height: 2.5rem;
  background: #eeebdd;
  display: inline-block;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.und-topic-title {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--green);
}

.und-topic-text {
  margin-top: 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.und-healing-figure {
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 3 / 3.5;
}
.und-healing .understanding-photo {
  object-position: bottom;
}
.und-healing-quote {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 1.5rem;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(21, 27, 32, 0.82) 45%,
    rgba(21, 27, 32, 0.92) 100%
  );
}

.und-healing-quote p {
  font-size: 1.125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.und-cta .waitlist-overlay {
  background: linear-gradient(
    180deg,
    rgb(21 27 32 / 90%) 100%,
    rgb(21 27 32 / 70%) 90%,
    rgb(21 27 32 / 90%) 100%
  );
}
section.und-healing {
  background-blend-mode: luminosity;
  background-image: url(../images/motif-hills-green.webp);
  background-size: 100% auto;
  background-position: bottom center;
}
/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .site-header,
  .hero-home .hero-bg,
  .motif-drift {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .btn-primary:hover,
  .btn-light:hover,
  .card-rooted:hover,
  .card-dark:hover {
    transform: none;
  }
}

/* ==========================================================================
   The Science page
   ========================================================================== */

   .sci-questions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-inline: auto;
    margin-bottom: 2rem;
  }
  
  @media (min-width: 640px) {
    .sci-questions-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.25rem;
    }
  }
  
  @media (min-width: 1024px) {
    .sci-questions-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }
  
  .sci-narrative-bg {
    object-position: center;
  }
  
  .sci-narrative-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(21, 27, 32, 0.72) 0%,
      rgba(21, 27, 32, 0.85) 100%
    );
  }
  
  .sci-research-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-inline: auto;
  }
  
  @media (min-width: 640px) {
    .sci-research-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.25rem;
    }
  }
  
  @media (min-width: 1024px) {
    .sci-research-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }
  .sci-research-title {
    margin-top: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0;
  }
  li.sci-research-card {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    gap: 1rem;
    background: linear-gradient(
      155deg,
      rgba(72, 98, 82, 0.36) 0%,
      rgba(88, 115, 98, 0.22) 48%,
      rgba(49, 82, 65, 0.14) 100%
    );
    border-color: rgba(173, 200, 178, 0.22);
  }
  li.sci-research-card:hover {
    background: linear-gradient(
      155deg,
      rgba(82, 110, 92, 0.42) 0%,
      rgba(96, 125, 106, 0.28) 48%,
      rgba(58, 92, 74, 0.18) 100%
    );
    border-color: rgba(188, 214, 193, 0.32);
  }
  
  section.sci-research {
    background-blend-mode: screen;
  }
  .sci-research-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--primary-foreground);
    opacity: 0.8;
    margin-top: auto;
  }
  
  .sci-method-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-inline: auto;
  }
  
  @media (min-width: 768px) {
    .sci-method-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.25rem;
    }
  }
  
  .sci-method-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--foreground-80);
  }
  
  .sci-rigor-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-inline: auto;
  }
  li.sci-rigor-card span.icon-container img {
    width: 24px;
    height: auto;
    filter: invert(1);
  }
  li.sci-rigor-card span.icon-container {
    background: oklch(1 0 0 / 0.12);
  }
  @media (min-width: 640px) {
    .sci-rigor-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
  @media (min-width: 1024px) {
    .sci-rigor-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }
  
  .sci-rigor-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.875rem;
    min-height: 100%;
  }
  
  .sci-rigor-label {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--primary-foreground);
  }
  
  .sci-boundaries-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  
  .sci-boundaries-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    font-size: 1rem;
    line-height: 1.55;
    color: var(--foreground-80);
  }
  
  .sci-boundary-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.6rem;
    height: 1.6rem;
    flex-shrink: 0;
    border-radius: 50%;
    background: #e5e1cc;
  }
  
  .sci-boundary-mark img {
    width: 1.1rem;
    height: 1.1rem;
    object-fit: contain;
  }
  
  .sci-cta-overlay {
    background: linear-gradient(
      180deg,
      rgba(21, 27, 32, 0.75) 0%,
      rgba(21, 27, 32, 0.6) 45%,
      rgba(21, 27, 32, 0.9) 100%
    );
  }
  
  /* ==========================================================================
     What is CAAP© (Method) page
     ========================================================================== */
  
  .caap-overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 5vw, 4rem);
  }
  
  @media (min-width: 1024px) {
    .caap-overview-grid {
      grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
      gap: clamp(2.5rem, 6vw, 5rem);
      align-items: start;
    }
  }
  
  .caap-overview-intro {
    max-width: 100%;
  }
  
  @media (min-width: 1024px) {
    .caap-overview-intro {
      max-width: 22rem;
      padding-top: 0.25rem;
    }
  }
  
  .caap-intro-title {
    font-size: clamp(2.75rem, 6vw, 4rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #fff;
  }
  
  .caap-mark,
  .caap-mark-inline {
    font-size: 0.55em;
    vertical-align: super;
    font-weight: 500;
    position: relative;
    top: -6px;
  }
  .caap-intro-subtitle {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
  }
  
  .caap-intro-text {
    margin-top: 1.25rem;
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
  }
  
  .caap-feature-list {
    display: flex;
    flex-direction: column;
  }
  
  .caap-feature-item {
    padding: clamp(1.25rem, 3vw, 1.75rem) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }
  
  .caap-feature-item:first-child {
    padding-top: 0;
  }
  
  .caap-feature-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  
  .caap-feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.35;
    color: #fff;
  }
  
  .caap-feature-text {
    margin-top: 0.75rem;
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
  }
  
  .caap-questions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-inline: auto;
  }
  
  @media (min-width: 768px) {
    .caap-questions-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.25rem;
    }
  }
  
  .caap-question-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--green);
  }
  
  .caap-question-text {
    margin-top: 0.75rem;
    font-size: 1rem;
    line-height: 1.55;
    color: var(--muted-foreground);
  }
  
  .caap-ai-list {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
  }
  
  .caap-ai-list li {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--foreground);
  }
  
  .caap-ai-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    border-radius: 50%;
    background: #eeebdd;
  }
  
  .caap-ai-mark img {
    width: 1.125rem;
    height: 1.125rem;
    object-fit: contain;
  }
  
  .caap-limits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-inline: auto;
  }
  section.caap-limits::after {
    transform-style: preserve-3d;
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background-image: var(--caap-limits-motif-2, url(../images/bg-img.webp));
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom right;
    transform: rotateX(180deg);
    pointer-events: none;
  }
  section.caap-limits.byj-explore {
    background-size: 19% auto;
  }
  @media (min-width: 768px) {
    .caap-limits-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.25rem;
    }
    section.caap-limits::after {
      width: 150px;
      height: 150px;
    }
  }
  @media (min-width: 1024px) {
    section.caap-limits::after {
      width: 210px;
      height: 210px;
    }
  }
  .caap-limit-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--green);
    line-height: 1.35;
    text-align: center;
  }
  
  .caap-cta-overlay {
    background: linear-gradient(
      180deg,
      rgba(21, 27, 32, 0.75) 0%,
      rgba(21, 27, 32, 0.55) 45%,
      rgba(21, 27, 32, 0.92) 100%
    );
  }



/* ==========================================================================
   Privacy & Ethics page
   ========================================================================== */
   section.priv-band {
    background-image: url(../images/privacy-core-bg.webp);
    background-size: 100% auto;
    background-position: bottom center;
    background-repeat: no-repeat;
    padding-bottom: 6.5rem;
  }
  section.priv-data {
    background-image: url(../images/privacy-design-bg.webp);
    background-size: auto 80%;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .priv-hero-overlay {
    background: linear-gradient(
      105deg,
      rgb(14 17 17 / 80%) 0%,
      rgb(14 17 17 / 35%) 35%,
      rgb(14 17 17 / 35%) 100%
    );
  }
  
  .priv-cta-overlay {
    background: linear-gradient(
      180deg,
      rgba(14, 17, 17, 0.7) 0%,
      rgba(14, 17, 17, 0.5) 50%,
      rgba(14, 17, 17, 0.88) 100%
    );
  }
  
  .priv-cta {
    min-height: min(55vh, 480px);
    display: flex;
    align-items: center;
  }
  
  .priv-icon {
    width: 1.375rem;
    height: 1.375rem;
    flex-shrink: 0;
    color: var(--priv-gold);
    stroke: var(--priv-gold);
  }
  
  .priv-data-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .priv-data-grid li.card-rooted:hover {
    background: oklch(0.975 0.012 88);
  }
  @media (min-width: 640px) {
    .priv-data-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.25rem;
    }
  }
  
  @media (min-width: 768px) {
    section.priv-band {
      background-size: 100% auto;
      padding-bottom: 10rem;
    }
  }
  @media (min-width: 1024px) {
    .priv-data-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    section.priv-band {
      background-size: 100% 13rem;
      padding-bottom: 13rem;
    }
  }
  
  .priv-card {
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
  }
  
  .priv-card:hover {
    background: rgba(0, 0, 0, 0.42);
    border-color: rgba(255, 255, 255, 0.12);
  }
  .priv-data-grid span.icon-container img {
    width: 22px;
    height: 22px;
    object-fit: contain;
  }
  .priv-card-title {
    margin-top: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--green);
    line-height: 1.45;
  }
  
  .priv-card-text {
    margin-top: 0.75rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--muted-foreground);
  }
  
  .priv-control-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }
  
  @media (min-width: 640px) {
    .priv-control-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
  @media (min-width: 1024px) {
    .priv-control-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1rem;
    }
  }
  
  .priv-control-card {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.875rem;
    padding: 1.125rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    min-height: 100%;
    flex-direction: column;
    text-align: center;
  }
  .priv-control-card:hover {
    background: rgba(0, 0, 0, 0.42);
    border-color: rgba(255, 255, 255, 0.12);
  }
  
  .priv-control-card .priv-icon,
  .priv-commit-card .priv-icon {
    width: 24px;
    height: 24px;
  }
  .priv-transparency-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 5vw, 4rem);
  }
  
  @media (min-width: 768px) {
    .priv-transparency-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 3rem;
    }
  }
  
  .priv-check-list {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
  }
  
  .priv-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
  }
  
  .priv-check-mark {
    display: inline-flex;
    flex-shrink: 0;
    width: 1.375rem;
    height: 1.375rem;
    color: var(--priv-gold);
  }
  
  .priv-check-mark svg {
    width: 100%;
    height: 100%;
  }
  
  .priv-commit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-inline: auto;
  }
  
  @media (min-width: 640px) {
    .priv-commit-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
  @media (min-width: 1024px) {
    .priv-commit-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }
  
  .priv-commit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.875rem;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: clamp(1.5rem, 3vw, 2rem);
    min-height: 100%;
  }
  
  .priv-commit-card:hover {
    background: rgba(0, 0, 0, 0.42);
    border-color: rgba(255, 255, 255, 0.12);
  }
  .priv-commit-title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.35;
    text-align: center;
  }
  
  /* ==========================================================================
     Who Rooted is for page
     ========================================================================== */
  
  .who-audience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  @media (min-width: 1024px) {
    .who-audience-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.5rem;
      align-items: stretch;
    }
  }
  
  .who-audience-card {
    display: flex;
    flex-direction: column;
  }
  
  .who-audience-card .icon-container svg {
    color: var(--green);
    stroke: var(--green);
  }
  
  .who-audience-label {
    margin-top: 1.5rem;
    margin-bottom: 0;
    color: var(--moss) !important;
    font-size: 0.875rem;
    font-weight: 500;
  }
  
  .who-audience-title {
    margin-top: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--green);
  }
  
  .who-audience-list {
    margin-top: 1rem;
    flex: 1;
  }
  
  .who-audience-list li {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--muted-foreground);
    list-style: none;
  }
  
  .who-audience-list li + li {
    margin-top: 0.5rem;
  }
  
  .who-audience-text {
    margin-top: 1rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--muted-foreground);
    flex: 1;
  }
  
  .who-audience-link {
    margin-top: 2rem;
  }
  
  .who-cta-overlay {
    background: linear-gradient(
      180deg,
      rgb(21 27 32 / 60%) 35%,
      rgb(21 27 32 / 55%) 45%,
      rgb(21 27 32 / 45%) 70%
    );
  }
  .who-audience-card .btn.btn-primary {
    text-align: center;
  }
  @media (max-width: 479px) {
    .who-audience-card {
      padding: 1.25rem;
    }
    .who-audience-card .btn.btn-primary {
      white-space: normal;
      padding: 0.85rem 1rem;
      font-size: 0.875rem;
    }
  }
  
  /* ==========================================================================
     About Rooted page
     ========================================================================== */
  
  .abt-research-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  @media (min-width: 640px) {
    .abt-research-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.25rem;
    }
  }
  
  @media (min-width: 1024px) {
    .abt-research-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }
  .abt-research-card {
    background: linear-gradient(
      155deg,
      rgba(72, 98, 82, 0.14) 0%,
      rgba(88, 115, 98, 0.14) 48%,
      rgba(49, 82, 65, 0.14) 100%
    );
    border: 1.5px solid #ffffff;
  }
  .abt-research-card:hover {
    background: linear-gradient(
      155deg,
      rgba(72, 98, 82, 0.28) 0%,
      rgba(88, 115, 98, 0.28) 48%,
      rgba(49, 82, 65, 0.28) 100%
    );
    border: 1.5px solid #ffffff;
  }
  .abt-research-card p {
    font-size: 1rem;
    line-height: 1.55;
    color: #fff;
    font-weight: 500;
  }
  
  .abt-mv-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-inline: auto;
  }
  
  @media (min-width: 768px) {
    .abt-mv-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.5rem;
    }
  }
  
  .abt-mv-card {
    padding: clamp(1.5rem, 4vw, 2.5rem);
    min-height: 100%;
    min-width: 0;
  }
  
  .abt-mv-statement {
    font-size: clamp(1.275rem, 2.3vw, 1.75rem);
    font-weight: 600;
    line-height: 1.35;
    color: var(--green);
  }
  .abt-founders {
    background-color: #e5e1cc;
    background-image: url(../images/about-founder-bg.webp);
    background-size: 35% auto;
    background-position: bottom left;
    background-repeat: no-repeat;
  }
  
  .abt-founder-role {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  
  .abt-founder-role-dot {
    width: 0.175rem;
    height: 0.175rem;
    border-radius: 50%;
    background-color: currentColor;
    opacity: 0.45;
    flex-shrink: 0;
  }
  .abt-core-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    justify-content: center;
    gap: 1rem;
    margin-inline: auto;
  }
  .abt-core-grid li .icon-container {
    margin: 0 auto;
  }
  
  .abt-core-grid li .icon-container svg {
    color: var(--green);
    stroke: var(--green);
    width: 22px;
    height: 22px;
    object-fit: contain;
  }
  section.abt-approach {
    background-image: url(../images/gradient-3.webp);
    background-size: cover;
    background-position: center;
  }
  .abt-core-grid p {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.35;
    color: var(--green);
    font-weight: 600;
    text-align: center;
  }
  .abt-values-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
    margin-inline: auto;
  }
  @media (min-width: 480px) {
    .abt-core-grid,
    .abt-values-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  @media (min-width: 640px) {
    .abt-values-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  
  @media (min-width: 1024px) {
    .abt-core-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .abt-values-grid {
      grid-template-columns: repeat(5, minmax(0, 1fr));
    }
  }
  
  .abt-value-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem;
    min-height: 100%;
    text-align: center;
  }
  
  .abt-value-card .icon-container svg {
    width: 22px;
    height: 22px;
    color: var(--green);
    stroke: var(--green);
  }
  
  .abt-value-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--green);
    line-height: 1.35;
  }
  
  .abt-cta-overlay {
    background: linear-gradient(
      180deg,
      rgba(21, 27, 32, 0.75) 30%,
      rgba(21, 27, 32, 0.75) 45%,
      rgb(21 27 32 / 65%) 100%
    );
  }
  
  /* ==========================================================================
     Articles page
     ========================================================================== */
  main > section.art-cta-dark > .absolute.inset-0.w-full.h-full.object-cover {
    object-position: bottom center;
  }
  .art-grid-wrap {
    background-image: url(../images/journey-bg.webp);
    background-size: 350px;
    background-position: right bottom;
    background-repeat: no-repeat;
  }
  
.faq-tabs-art {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3.5rem;
}
.motif--faq-wave {
  inset: 0 0 auto 0;
  width: 100%;
  opacity: 0.25;
  top: auto;
  bottom: 0;
}
.faq-tab-art {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--muted-foreground);
  font-family: inherit;
  font-size: 0.815rem;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.faq-tab-art:hover {
  background: oklch(0.92 0.012 90);
}

.faq-tab-art.is-active {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
  .art-hero .faq-tabs-art {
    margin-top: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0;
  }
  
  .art-featured {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0;
    overflow: hidden;
  }
  
  .art-featured-media {
    min-height: 14rem;
  }
  
  .art-featured-media img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    display: block;
  }
  
  .art-featured-body {
    padding: clamp(1.5rem, 4vw, 2.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .art-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .art-card {
    padding: 0;
    overflow: hidden;
  }
  
  .art-card.is-hidden {
    display: none;
  }
  
  .art-card-link {
    display: block;
    padding: clamp(1rem, 2.5vw, 1.25rem);
    color: inherit;
    text-decoration: none;
    height: 100%;
  }
  
  .art-card-link:hover .art-card-title {
    color: var(--moss);
  }
  
  .art-card-thumb {
    aspect-ratio: 4 / 3;
    border-radius: 0.875rem;
    overflow: hidden;
    margin-bottom: 1.25rem;
  }
  
  .art-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s var(--ease-soft);
  }
  
  .art-card-link:hover .art-card-thumb img {
    transform: scale(1.03);
  }
  
  .art-card-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.725rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--moss);
    margin-bottom: 0.75rem;
  }
  
  .art-meta-dot {
    width: 0.25rem;
    height: 0.25rem;
    border-radius: 50%;
    background-color: currentColor;
    opacity: 0.45;
    flex-shrink: 0;
  }
  
  .art-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--green);
    margin-bottom: 0.625rem;
    transition: color 0.2s;
  }
  
  .art-card-excerpt {
    font-size: 1rem;
    line-height: 1.55;
    color: var(--muted-foreground);
  }
  .art-featured-body p.eyebrow {
    color: var(--moss);
    font-weight: 500;
  }
  .art-empty {
    margin-top: 2rem;
    font-size: 1rem;
    font-weight: 500;
  }
  
  .art-load-more {
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
  }
  
  .art-load-more .btn-ghost {
    min-width: 10rem;
    border-radius: 999px;
    padding: 0.625rem 1.75rem;
  }
  
  .art-cta-dark .hero-bg {
    object-position: center 40%;
  }
  span.art-meta-icon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  @media (min-width: 768px) {
    .art-featured {
      grid-template-columns: 1.05fr 1fr;
    }
  
    .art-featured-media {
      min-height: 100%;
    }
  
    .art-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.5rem;
    }
  }
  
  @media (min-width: 1024px) {
    .art-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.75rem;
    }
  }



  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }
    .site-header,
    .hero-home .hero-bg,
    .motif-drift {
      animation: none;
      opacity: 1;
      transform: none;
    }
    .btn-primary:hover,
    .btn-light:hover,
    .card-rooted:hover,
    .card-dark:hover {
      transform: none;
    }
  }
  



/* ----------------------------------------------------------------------
 * WYSIWYG italic accent (auto)
 *
 * Hit Ctrl/Cmd+I in any heading WYSIWYG to italicize a word — it ships
 * with a sensible moss-green by default. To use any other color (hero
 * accent blue, white, anything), select the word in the editor and use
 * the toolbar's Color/A button — that wins over the default.
 *
 *   Default            →  moss green (matches .italic-accent)
 *   Inline color       →  always wins (on <em> itself or wrapping span)
 * --------------------------------------------------------------------*/
h1 em, h1 i,
h2 em, h2 i,
h3 em, h3 i,
.display-xl em, .display-xl i,
.display-lg em, .display-lg i,
.display-md em, .display-md i,
.display-sm em, .display-sm i {
  font-style: italic;
  font-weight: 400;
  color: var(--moss);
}

/* When the editor's color picker wraps the em in a styled span,
 * let that color win. */
span[style*="color"] em,
span[style*="color"] i {
  color: inherit;
}

/* ==========================================================================
   Contact Form 7 — theme UX
   ========================================================================== */

.wpcf7 .wpcf7-spinner {
  display: none !important;
}

.rooted-submit-wrap {
  position: relative;
  display: block;
  width: 100%;
}

.rooted-submit-wrap .wpcf7-submit {
  width: 100%;
}

.rooted-submit-wrap.is-loading .wpcf7-submit,
.wpcf7-submit.is-loading {
  cursor: wait;
  opacity: 0.92;
  transform: none;
  pointer-events: none;
}

.rooted-submit-wrap.is-loading .wpcf7-submit:hover,
.wpcf7-submit.is-loading:hover {
  transform: none;
  box-shadow: none;
}

.rooted-submit-wrap.is-loading .wpcf7-submit {
  padding-left: 2.75rem;
}

.rooted-submit-wrap .btn-spinner {
  position: absolute;
  left: 1.25rem;
  top: calc(50% - 0.5rem);
  z-index: 1;
  pointer-events: none;
}

.wpcf7-submit.is-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.wpcf7-submit:disabled:not(.is-loading) {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.wpcf7-submit:disabled:not(.is-loading):hover {
  transform: none;
  box-shadow: none;
  background: var(--primary);
}

.wpcf7-submit .btn-spinner,
.rooted-submit-wrap .btn-spinner {
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: #fff;
}

.wpcf7-submit .btn-spinner svg,
.rooted-submit-wrap .btn-spinner svg {
  width: 100%;
  height: 100%;
  display: block;
  color: #fff;
  stroke: #fff;
  transform-origin: center;
  animation: rooted-btn-spin 0.8s linear infinite;
}

@keyframes rooted-btn-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wpcf7-submit .btn-spinner svg,
  .rooted-submit-wrap .btn-spinner svg {
    animation: none;
    opacity: 0.75;
  }

  .wpcf7 form .wpcf7-response-output {
    transition: none;
    transform: none;
  }
}

.wpcf7 form .wpcf7-response-output {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.rooted-toast-host {
  position: fixed;
  top: calc(var(--header-h) + 1rem);
  left: 50%;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: min(22rem, calc(100vw - 2rem));
  transform: translateX(-50%);
  pointer-events: none;
}

.rooted-toast {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
  padding: 0.9rem 1rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--foreground);
  box-shadow: var(--shadow-lift);
  opacity: 0;
  transform: translateY(-1rem) scale(0.96);
  transition:
    opacity 0.35s var(--ease-soft),
    transform 0.35s var(--ease-soft);
  pointer-events: auto;
  overflow: hidden;
}

.rooted-toast.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.rooted-toast.is-leaving {
  opacity: 0;
  transform: translateY(-0.75rem) scale(0.96);
}

.rooted-toast--success {
  border-color: color-mix(in oklch, var(--green) 24%, transparent);
  background: #eeebdd;
  color: var(--green);
}

.rooted-toast--error {
  border-color: color-mix(in oklch, oklch(0.48 0.1 35) 28%, transparent);
  background: oklch(0.96 0.02 75);
  color: oklch(0.38 0.08 35);
}

.rooted-toast__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.rooted-toast__icon svg {
  width: 100%;
  height: 100%;
}

.rooted-toast__message {
  flex: 1;
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
}

.rooted-toast__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  margin: -0.15rem -0.15rem 0 0;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  opacity: 0.65;
  cursor: pointer;
  transition: opacity 0.2s var(--ease-soft);
}

.rooted-toast__close:hover {
  opacity: 1;
}

.rooted-toast__close svg {
  width: 0.9rem;
  height: 0.9rem;
}

.rooted-toast__progress {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: currentColor;
  opacity: 0.35;
  transform-origin: left center;
  animation-name: rooted-toast-progress;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

@keyframes rooted-toast-progress {
  from {
    transform: scaleX(1);
  }

  to {
    transform: scaleX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rooted-toast,
  .rooted-toast.is-leaving {
    transition: none;
    transform: none;
  }

  .rooted-toast__progress {
    display: none;
  }
}

.wpcf7 .wpcf7-not-valid-tip {
  margin-top: 0.375rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.45;
  color: oklch(0.38 0.08 35);
  background: oklch(0.96 0.02 75);
  border: 1px solid color-mix(in oklch, oklch(0.48 0.1 35) 24%, transparent);
}

.wpcf7 .wpcf7-form-control.wpcf7-not-valid,
.wpcf7 .wpcf7-form-control.wpcf7-not-valid:focus {
  border-color: color-mix(in oklch, oklch(0.48 0.1 35) 55%, transparent);
  box-shadow: 0 0 0 2px color-mix(in oklch, oklch(0.48 0.1 35) 18%, transparent);
}

.wpcf7 .use-floating-validation-tip .wpcf7-not-valid-tip {
  position: static;
  top: auto;
  left: auto;
  z-index: auto;
  width: auto;
}

