/* =========================================================
   GLOBAL SYSTEM — FOUNDATION CSS
   Prefix: gs
   ========================================================= */

:root {
  /* =======================================================
     COLOR TOKENS
     ======================================================= */

  --gs-green: #005f36;
  --gs-green-2: #007a48;
  --gs-green-3: #00a65e;
  --gs-green-soft: #eaf4ee;
  --gs-green-mid: #c0ddd0;
  --gs-green-dim: #6baf93;

  --gs-cream: #f4f8ff;
  --gs-cream-2: #e6ebf1;
  --gs-cream-3: #dce3ed;
  --gs-white: #ffffff;

  --gs-ink: #1a1916;
  --gs-ink-2: #2e2c29;
  --gs-ink-3: #4a4844;
  --gs-ink-4: #7a7873;
  --gs-ink-5: #a8a6a1;

  --gs-slate-deep: #0a2540;
  --gs-slate-mid: #0d3d40;
  --gs-slate-green: #0a3028;


  --color-border: rgba(0, 0, 0, 0.07);
  --color-border-mid: rgba(0, 0, 0, 0.11);
  --color-focus-ring: rgba(0, 95, 54, 0.08);

  /* =======================================================
     GRADIENT TOKENS
     ======================================================= */

  --gs-cta-grad: linear-gradient(135deg, #005f36 0%, #007a48 55%, #00a65e 100%);
  --gs-hero-grad: linear-gradient(135deg, #0a2540 0%, #0d3d40 45%, #0a3028 100%);
  --gs-metric-grad: linear-gradient(135deg, #7edbb0 0%, #ffffff 100%);
  --gs-star-metric-grad: linear-gradient(135deg, #a5f3c4 0%, #00e87a 100%);


  /* =======================================================
     RADIUS SCALE
     ======================================================= */

  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 14px;
  --radius-2xl: 16px;
  --radius-pill: 100px;

  /* =======================================================
     SHADOW SCALE
     ======================================================= */

  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.14);

  --shadow-green-sm: 0 4px 16px rgba(0, 95, 54, 0.07);
  --shadow-green-md: 0 8px 32px rgba(0, 95, 54, 0.12);

  --gs-cta-shadow: 0 2px 8px rgba(0, 95, 54, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);

  --gs-cta-shadow-lg: 0 2px 10px rgba(0, 95, 54, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);

  --gs-cta-shadow-hov: 0 4px 16px rgba(0, 95, 54, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* =========================================================
   BASE
   ========================================================= */

html {
  scroll-behavior: smooth;
}

img,
svg {
  max-width: 100%;
}

img {
  display: block;
  height: auto;
}

/* =========================================================
   SURFACE / CARD UTILITIES
   ========================================================= */

.gs-surface {
  background: var(--color-surface);
}

.gs-surface-soft {
  background: var(--color-bg-section);
}

.gs-card,
.gs-card-soft,
.gs-glass {
  border-radius: var(--radius-xl);
}

.gs-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.gs-card-soft {
  background: var(--color-bg-section);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
}

.gs-glass {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* =========================================================
   FAQ ACCORDION
   ========================================================= */

/* Open toggle icon background */
.faq-accordion
  :is(
    .faq-toggle[aria-expanded="true"],
    .faq-item[open],
    .faq-item.open,
    .faq-item.is-open
  )
  .faq-toggle-icon {
  background-color: var(--gs-green-2);
}

/* Rotate the SVG only, not the circular wrapper */
.faq-accordion
  :is(
    .faq-toggle[aria-expanded="true"],
    .faq-item[open],
    .faq-item.open,
    .faq-item.is-open
  )
  .faq-toggle-icon
  svg {
  transform: rotate(45deg);
}

/* Open toggle SVG color */
.faq-accordion
  :is(
    .faq-toggle[aria-expanded="true"],
    .faq-item[open],
    .faq-item.open,
    .faq-item.is-open
  )
  .faq-toggle-icon
  svg,
.faq-accordion
  :is(
    .faq-toggle[aria-expanded="true"],
    .faq-item[open],
    .faq-item.open,
    .faq-item.is-open
  )
  .faq-toggle-icon
  svg
  * {
  stroke: var(--gs-white);
}

/* =========================================================
   GS — REUSABLE GRADIENT TEXT UTILITIES
   ========================================================= */

/*
   Usage:
   1. Add .gs-gradient-text for full gradient text.
   2. Add .gs-gradient-mark for gradient <mark> text.
   3. Set the gradient/background using GenerateBlocks native background setting.

   Example gradient values:
   var(--gs-metric-grad)
   var(--gs-star-metric-grad)
   var(--gs-cta-grad)
   var(--gs-hero-grad)
*/

/* Whole text block gradient */
.gs-gradient-text {
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding: 0;
  overflow: visible;
}

/* Selected <mark> text gradient */
.gs-gradient-mark mark {
  background: inherit;
  background-image: inherit;
  background-color: inherit;
  background-position: inherit;
  background-size: inherit;
  background-repeat: inherit;

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;

  padding: 0;
  overflow: visible;

  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* Fallback if background-clip text is not supported */
@supports not (-webkit-background-clip: text) {
  .gs-gradient-text,
  .gs-gradient-mark mark {
    -webkit-text-fill-color: initial;
    color: inherit;
    background: none;
  }
}

/* =========================================================
   MOBILE HEADER SUB MENU WIDTH
   ========================================================= */

@media (max-width: 767px) {
  .menu-item-has-gb-mega-menu .gb-overlay--anchored {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* =========================================================
   Display Custom Font in Editor 
   ========================================================= */

@font-face {
  font-family: "Geist";
  src: url("assets/fonts/geist/Geist-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

.editor-styles-wrapper,
.editor-styles-wrapper .wp-block,
.editor-post-title__input {
  font-family: "Geist", sans-serif;
}