/* =========================================================================
   Obsidio Native — design system
   ========================================================================= */

:root {
  /* Brand */
  --c-brand: #5000e4;
  --c-brand-strong: #3d00b0;
  --c-brand-soft: #efe8fd;
  --c-violet-50: #f5efff;
  --c-violet-700: #4400c0;

  /* Ink / neutrals */
  --c-ink: #1a1a2e;
  --c-ink-muted: #6b6b6b;
  --c-line: #ececf3;
  --c-line-strong: #d8d6e3;
  --c-bg: #ffffff;
  --c-bg-soft: #fafafb;

  /* Dark */
  --c-bg-dark: #0d0028;
  --c-bg-dark-2: #1a0552;
  --c-on-dark: #ffffff;
  --c-on-dark-muted: #d6cef6;

  --shadow-card: 0 1px 2px rgba(20, 0, 80, 0.04), 0 6px 24px rgba(20, 0, 80, 0.05);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --radius-pill: 999px;
  --container: 1500px;
  --container-pad: clamp(24px, 4vw, 80px);

  --font-sans: "Host Grotesk", "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
  --transition: 180ms cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--c-ink);
  background: var(--c-bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--c-brand); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-brand-strong); }
p { margin: 0 0 1em; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.06;
  margin: 0 0 0.5em;
  color: inherit;
}

/* -------- Container -------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* -------- Buttons (sized to match original Framer values) -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 17px 32px;
  border-radius: var(--radius-sm);
  font-size: 14.4px;
  font-weight: 500;
  font-family: "Montserrat", "Montserrat Placeholder", sans-serif;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: #1c1923;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-primary:hover { background: #000; color: #fff; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--c-brand);
  border-color: var(--c-brand);
  font-family: "Montserrat", "Montserrat Placeholder", sans-serif;
}
.btn-outline:hover { background: var(--c-brand); color: #fff; }
.btn-outline-light {
  background: transparent;
  color: rgba(248, 248, 248, 0.95);
  border-color: rgba(248, 248, 248, 0.95);
  position: relative;
  overflow: hidden;
}
.btn-outline-light:hover { background: rgba(248, 248, 248, 0.95); color: #5000e4; }
.btn-brand { background: var(--c-brand); color: #fff; border-color: var(--c-brand); }
.btn-brand:hover { background: var(--c-brand-strong); color: #fff; }

/* -------- Eyebrow pill -------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid var(--c-brand);
  color: var(--c-brand);
  border-radius: 40px;
  font-family: "Host Grotesk", "Host Grotesk Placeholder", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  background: transparent;
  line-height: 1.5;
}
.eyebrow-light {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

/* -------- Site header (matches Framer reference: scrolls with the page) -------- */
.site-header {
  position: relative;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(80, 0, 228, 0.08);
}
.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 65px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.site-header__inner .site-logo { justify-self: start; grid-column: 1; }
.site-header__inner .site-nav { justify-self: center; grid-column: 2; }
.site-header__inner .site-header__cta { justify-self: end; grid-column: 3; }
.site-header__inner .site-nav-toggle { justify-self: end; grid-column: 3; }
.site-header__cta { display: inline-flex; align-items: center; gap: 16px; }
.lang-switcher { display: inline-flex; gap: 4px; align-items: center; font-family: "Montserrat", sans-serif; font-size: 13px; font-weight: 500; }
.lang-switcher__link { color: var(--c-ink-muted, #6b6877); padding: 4px 6px; border-radius: 4px; text-decoration: none; letter-spacing: 0.04em; transition: color var(--transition), background var(--transition); }
.lang-switcher__link:hover { color: var(--c-ink); }
.lang-switcher__link.is-current { color: var(--c-ink); font-weight: 600; }
.lang-switcher__link + .lang-switcher__link { border-left: 1px solid var(--c-line); margin-left: 2px; padding-left: 10px; }
.site-header__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  background: #1c1923;
  color: #fff;
  font-family: "Montserrat", "Montserrat Placeholder", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: normal;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.site-header__cta-btn:hover { background: #000; color: #fff; transform: translateY(-1px); }
.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  flex-shrink: 0;
}
.site-logo img { height: 30px; width: auto; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.site-nav a {
  padding: 7px 14px;
  color: rgba(26, 26, 46, 0.55);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.site-nav a:hover { color: var(--c-ink); }
.site-nav a[aria-current="page"] {
  color: var(--c-ink);
}
.site-nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.site-nav-toggle svg { width: 22px; height: 22px; stroke: var(--c-ink); }
@media (max-width: 1199px) {
  .site-header__inner { grid-template-columns: auto 1fr auto; }
  .site-header__inner .site-nav { justify-self: end; }
}
@media (max-width: 1023px) {
  /* Let .site-header__inner expand to full viewport width when needed for the
     drawer. Remove the centered max-width so left:0/right:0 children span. */
  .site-header__inner {
    max-width: none;
    grid-template-columns: 1fr auto;
    grid-template-areas: "logo toggle";
    padding: 0 20px;
    gap: 12px;
  }
  .site-header__inner .site-logo  { grid-area: logo; min-width: 0; overflow: hidden; }
  .site-header__inner .site-logo img { height: 26px; }
  .site-header__inner .site-nav-toggle  { grid-area: toggle; justify-self: end; }
  .site-nav-toggle { display: inline-flex; }
  .site-nav,
  .site-header__cta { display: none; }

  /* When open, the entire header expands to a full-screen overlay. The inner
     reflows as a flex column. No fixed-positioning gymnastics needed. */
  .site-header.is-open {
    position: fixed;
    inset: 0;
    height: 100dvh;
    background: #fff;
    z-index: 9999;
    overflow-y: auto;
  }
  .site-header.is-open .site-header__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: auto;
    max-width: none;
    padding: 0;
    gap: 0;
  }
  .site-header.is-open .site-logo,
  .site-header.is-open .site-nav-toggle {
    /* Top bar: logo on the left, toggle (now an X) on the right. Recreate the
       horizontal layout inside the flex column using order + margin. */
  }
  .site-header.is-open .site-logo {
    align-self: flex-start;
    padding: 14px 20px;
  }
  .site-header.is-open .site-nav-toggle {
    position: absolute;
    top: 12px;
    right: 12px;
  }
  .site-header.is-open .site-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px 20px;
    border-top: 1px solid var(--c-line);
    width: 100%;
  }
  .site-header.is-open .site-nav a {
    padding: 16px 16px;
    font-size: 18px;
    border-radius: 8px;
    color: rgba(26, 26, 46, 0.7);
  }
  .site-header.is-open .site-nav a:hover,
  .site-header.is-open .site-nav a[aria-current="page"] {
    background: rgba(80, 0, 228, 0.06);
    color: var(--c-ink);
  }
  .site-header.is-open .site-header__cta {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-top: 1px solid var(--c-line);
    width: 100%;
    margin-top: auto;
  }
  .site-header.is-open .site-header__cta-btn { padding: 12px 22px; font-size: 14px; }
}

/* -------- Hero (dark) — full-viewport height, like the original -------- */
.hero-dark {
  position: relative;
  overflow: hidden;
  background:
    url('img/hero-bg.webp') 0 0 / 100% 100% no-repeat,
    #5000e4;
  color: var(--c-on-dark);
  min-height: calc(100svh - 64px);
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 56px;
}
.hero-dark .container { width: 100%; display: flex; flex-direction: column; }
/* Layered depth: ::before = vertical grid (background), ::after = spotlight glow,
   .container = foreground content. Each is translated at a different rate
   by main.js to produce the parallax effect. */
/* Bg image is full-bleed; parallax shifts the section bg-position. */
.hero-dark.has-parallax { background-attachment: scroll; }
.hero-dark .container {
  position: relative;
  z-index: 1;
  will-change: transform;
  max-width: none;
  width: 100%;
  padding-left: 44px;
  padding-right: 44px;
}
.hero-dark__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
}
.hero-dark__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--c-on-dark-muted);
  text-transform: uppercase;
  margin: 0 0 20px;
  font-weight: 500;
}
.hero-dark__title {
  /* Framer breakpoints: desktop ≥1200 → 55px, tablet 810–1199 → 64px, mobile <810 → 38px */
  font-size: 55px;
  margin: 0 0 28px;
  letter-spacing: normal;
  line-height: 1.1;
  color: #fff;
  font-weight: 500;
  max-width: 720px;
}
@media (max-width: 1199px) { .hero-dark__title { font-size: 64px; max-width: none; } }
@media (max-width: 809px)  { .hero-dark__title { font-size: 38px; } }
.hero-dark__body {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  max-width: 460px;
  justify-self: end;
}
.hero-dark__cta { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-dark__cta .btn { padding: 14px 22px; font-size: 14.4px; }
.hero-dark__trust {
  text-align: center;
  margin: 36px 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  letter-spacing: 0.22em;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  font-weight: 500;
}
.hero-dark__scroll {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  z-index: 2;
  animation: heroScrollPulse 2s ease-in-out infinite;
}
.hero-dark__scroll svg { width: 14px; height: 14px; }
@keyframes heroScrollPulse {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.65; }
  50%      { transform: translate(-50%, 4px); opacity: 1; }
}
@media (max-width: 720px) {
  .hero-dark__grid { grid-template-columns: 1fr; }
  .hero-dark__body { max-width: none; }
  .hero-dark__scroll { display: none; }
}

/* Product page hero: bigger title, eyebrow above title, right column right-aligned. */
.hero-dark--product .hero-dark__label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.7);
}
.hero-dark--product .hero-dark__title { font-size: 64px; max-width: none; line-height: 1.05; }
@media (max-width: 1199px) { .hero-dark--product .hero-dark__title { font-size: 56px; } }
@media (max-width: 809px)  { .hero-dark--product .hero-dark__title { font-size: 40px; } }
.hero-dark--product .hero-dark__col-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-self: end;
  max-width: 460px;
  gap: 16px;
  text-align: left;
}
.hero-dark--product .hero-dark__col-right { gap: 24px; }
.hero-dark--product .hero-dark__col-right .hero-dark__body { max-width: 460px; padding: 4px 0 8px; }
.hero-dark--product .hero-dark__cta .btn { padding: 16px 32px; font-size: 15px; }
.hero-dark--product .hero-dark__scroll { display: none; }
.hero-dark--product {
  min-height: 80vh;
  height: auto;
  padding: 0 0 64px;
  justify-content: flex-end;
}

/* Section eyebrow pill (e.g. "Product Overview") shown above the section title. */
.hero-tab {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: transparent;
  color: var(--c-brand);
  border: 1px solid rgba(80, 0, 228, 0.35);
  font-family: "Montserrat", "Montserrat Placeholder", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.section__pill { margin: 0 0 32px; }

/* Mobile-variant hero content (matches Framer original at <810px) */
.hero-dark__video {
  width: 300px;
  max-width: 100%;
  margin: 0 0 32px;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}
.hero-dark__video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-mobile-only  { display: none; }
@media (max-width: 809px) {
  .hero-desktop-only { display: none !important; }
  .hero-mobile-only  { display: block; }
}


/* -------- Section -------- */
.section {
  padding: clamp(64px, 9vw, 120px) 0;
}
.section--soft { background: #ffffff; }
.section--dark {
  background: linear-gradient(168deg, #5000e4 0%, #210060 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section--dark .section__lead { color: rgba(255,255,255,0.82); }
.section__head {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.section__head .eyebrow { margin-bottom: 0; }
.section__head--left { text-align: left; align-items: flex-start; margin-left: 0; }
.section__head--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  text-align: left;
  align-items: start;
}
.section__head--split .section__title { margin: 0; }
.section__head--split .section__lead { margin: 0; align-self: end; }
@media (max-width: 809px) {
  .section__head--split { grid-template-columns: 1fr; gap: 24px; }
}
.section__title {
  font-family: "Host Grotesk", "Host Grotesk Placeholder", sans-serif;
  font-size: 72px;
  color: var(--c-brand);
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
  font-weight: 500;
  text-wrap: balance;
}
.section--dark .section__title { color: #fff; }
.section__title--md {
  font-size: 48px;
}
@media (max-width: 1199px) {
  .section__title--md { font-size: 40px; }
}
@media (max-width: 809px) {
  .section__title--md { font-size: 28px; }
}
.section__lead {
  font-family: "Host Grotesk", "Host Grotesk Placeholder", sans-serif;
  color: #6b6b6b;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin: 24px 0 32px;
}
@media (max-width: 1199px) {
  .section__title { font-size: 60px; }
}
@media (max-width: 809px) {
  .section__title { font-size: 36px; }
  .section { padding: 80px 0; }
}

/* Two-column section helper */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.two-col--align-end { align-items: end; }
@media (max-width: 820px) {
  .two-col { grid-template-columns: 1fr; text-align: left; }
  .two-col .btn { display: inline-flex; }
}

/* Video card (Threats section, right column) */
.video-card {
  width: 100%;
  max-width: 490px;
  aspect-ratio: 490 / 360;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  justify-self: end;
}
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 820px) {
  .video-card { max-width: 100%; justify-self: stretch; }
}

/* -------- Pill-card grid (mission/story) -------- */
.pill-card {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}
.pill-card__eyebrow {
  display: inline-flex;
  padding: 8px 16px;
  border: 1.5px solid rgba(80,0,228,0.35);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--c-brand);
}
.pill-card__title {
  font-size: 32px;
  font-weight: 500;
  color: var(--c-brand);
  margin: 24px 0 16px;
  letter-spacing: 0;
  line-height: 1.2;
}
.pill-card__body {
  color: rgb(107, 107, 107);
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  max-width: 36ch;
}
.pill-card-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 80px; }
.pill-card-grid--2col { grid-template-columns: repeat(2, 1fr); gap: 64px 80px; }
@media (max-width: 809px) { .pill-card-grid--2col { grid-template-columns: 1fr; gap: 48px; } }

/* -------- Quote-style heading -------- */
.quote-block {
  text-align: center;
  margin: 24px auto 0;
  font-size: 52px;
  font-weight: 500;
  color: rgb(107, 107, 107);
  letter-spacing: 0;
  line-height: 1;
}
.quote-block em { color: var(--c-brand); font-style: normal; font-weight: 500; }
@media (max-width: 1199px) { .quote-block { font-size: 42px; } }
@media (max-width: 809px)  { .quote-block { font-size: 30px; } }

/* -------- Feature pill row (product page) -------- */
.feature-pills {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 56px;
}
@media (max-width: 1199px) {
  .feature-pills { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 540px) {
  .feature-pills { grid-template-columns: 1fr; }
}
.feature-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.feature-pill__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(180deg, #5000e4 0%, #210060 100%);
  color: #fff;
  border: 1px solid rgba(80, 0, 228, 0.5);
}
.feature-pill__icon svg { display: block; }
.feature-pill__label {
  font-family: "Host Grotesk", "Host Grotesk Placeholder", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--c-ink-muted);
  letter-spacing: 0;
  line-height: 1.3;
}

/* -------- Product shot card (dashboard preview, etc.) -------- */
.product-shot {
  margin: 0 0 32px;
  border-radius: 18px;
  overflow: hidden;
  padding: 0;
  background: transparent;
}
.product-shot img { width: 100%; height: auto; display: block; border-radius: 18px; }

/* -------- Bullet list (Independent. Neutral. Verifiable.) -------- */
.bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.bullets li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid #e2e6ec;
  background: transparent;
}
.bullets li:last-child { border-bottom: 0; }
.bullets__check {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  border: 1px solid var(--c-brand);
  flex-shrink: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bullets__check::after {
  content: "";
  width: 8px;
  height: 14px;
  border: solid var(--c-brand);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -2px;
}
.bullets__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--c-brand);
  border-radius: 8px;
  background: transparent;
  flex-shrink: 0;
}
.bullets__icon {
  width: 22px;
  height: 22px;
  display: block;
}
.two-col--sticky-left { align-items: stretch !important; will-change: auto !important; transform: none !important; }
.two-col--sticky-left.reveal { opacity: 1 !important; }
/* Generic sticky column inside a .two-col grid — used on the product page
   so the title/lead/button stay in view while the image+bullets scroll. */
.two-col__sticky {
  position: sticky;
  top: 100px;
  align-self: start;
}
@media (max-width: 809px) { .two-col__sticky { position: static; } }
.independent-left {
  position: sticky;
  top: 100px;
  align-self: start;
}
.independent-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 809px) {
  .independent-left { position: static; }
}
.independent-preview {
  width: 100%;
  max-width: 580px;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}
.bullets__title {
  display: block;
  color: var(--c-brand);
  font-family: "Host Grotesk", "Host Grotesk Placeholder", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
}
.bullets__sub {
  display: block;
  color: var(--c-ink-muted);
  font-size: 14px;
  margin-top: 6px;
  line-height: 1.55;
}
@media (max-width: 809px) {
  .bullets__check { width: 32px; height: 32px; }
  .bullets__title { font-size: 17px; }
}

/* -------- Card grid (industries with photos) -------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 809px) {
  .card-grid { grid-template-columns: 1fr; }
}
.frosted-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  color: #fff;
  aspect-ratio: 1 / 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #2c2150;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition);
}
.frosted-card:hover { transform: translateY(-2px); }
.frosted-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.35) 100%);
  z-index: 0;
}
.frosted-card > * { position: relative; z-index: 1; }
.frosted-card h3 { font-size: clamp(22px, 2.3vw, 30px); margin: 0; color: #fff; letter-spacing: -0.02em; }
.frosted-card p { color: rgba(255,255,255,0.88); font-size: 14px; line-height: 1.6; margin: 0; max-width: 460px; }

/* wp:cover variant of .frosted-card — WP adds its own bg overlay + <img> wrapper.
   Suppress WP's defaults and reuse the existing ::before gradient overlay. */
.wp-block-cover.frosted-card {
  padding: 22px 30px;
  min-height: 0;
  height: auto;
  aspect-ratio: 1 / 1;
  align-items: stretch;
  justify-content: stretch;
  margin: 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.wp-block-cover.frosted-card .wp-block-cover__background { display: none; }
.wp-block-cover.frosted-card > img.wp-block-cover__image-background { z-index: 0; object-fit: cover; border-radius: inherit; }
/* "Card Wrapper" — fills the padding box, light blur, 12% fill.
   Gives 8px breathing room so the inner Content Wrapper sits inset,
   producing the visible double-edge halo around the content panel. */
.wp-block-cover.frosted-card .wp-block-cover__inner-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(31, 43, 56, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 8px;
  border: 0;
  color: inherit;
}
/* "Content Wrapper" — nested, slightly more opaque, smaller radius,
   subtle inset shadow. Holds the title + body. */
.wp-block-cover.frosted-card .frosted-card__content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: rgba(31, 43, 56, 0.24);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 6px;
  box-shadow: inset 0 4px 36px 0 rgba(0, 0, 0, 0.12);
}
.wp-block-cover.frosted-card .frosted-card__content > * { color: inherit; }
.wp-block-cover.frosted-card .frosted-card__title { color: #fff; }
.wp-block-cover.frosted-card .frosted-card__body { color: rgba(255,255,255,0.88); }


/* -------- FAQ accordion -------- */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border: 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-radius: 0;
  padding: 32px 0;
  background: transparent;
  box-shadow: none !important;
}
.faq-item:first-child { border-top: 0; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 32px;
  font-weight: 500;
  color: var(--c-brand);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 40px;
  line-height: 1;
  font-weight: 300;
  color: var(--c-brand);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item__body { padding-top: 18px; color: rgb(107,107,107); font-size: 18px; line-height: 1.6; max-width: 760px; }

/* -------- Diff accordion variant: 3-col (icon | title | body)
   Used on /benefits/ "What makes Obsidio different." */
.diff-accordion { display: flex; flex-direction: column; gap: 0; }
.diff-accordion .faq-item {
  display: grid;
  grid-template-columns: 60px minmax(280px, 360px) 1fr;
  column-gap: 32px;
  align-items: start;
  padding: 32px 0;
}
.diff-accordion .faq-item summary {
  display: contents;
  cursor: pointer;
}
.diff-accordion .faq-item summary::before {
  content: "+";
  grid-column: 1;
  font-size: 28px;
  font-weight: 300;
  color: var(--c-brand);
  line-height: 1;
}
.diff-accordion .faq-item[open] summary::before { content: "−"; }
.diff-accordion .faq-item summary::after { content: none; }
.diff-accordion .faq-item summary .diff-title {
  grid-column: 2;
  font-size: 28px;
  font-weight: 500;
  color: var(--c-brand);
  line-height: 1.2;
}
.diff-accordion .faq-item .faq-item__body {
  grid-column: 3;
  grid-row: 1;
  padding-top: 0;
  max-width: 640px;
  display: block;
  text-align: right;
  margin-left: auto;
}
.diff-accordion .faq-item[open] .faq-item__body { text-align: left; }
@media (max-width: 1199px) {
  .diff-accordion .faq-item { grid-template-columns: 40px 1fr; }
  .diff-accordion .faq-item summary .diff-title { font-size: 24px; }
  .diff-accordion .faq-item .faq-item__body { grid-column: 2; grid-row: auto; padding-top: 16px; }
}
@media (max-width: 809px) {
  .faq-item summary { font-size: 22px; }
  .faq-item summary::after { font-size: 32px; }
}

/* -------- CTA banner (purple) --------
   Visually continuous with .site-footer below: together they form a single
   linear-gradient from #5000e4 (top of CTA) down to #210060 (bottom of footer).
   The CTA covers the top ~613px of that gradient and the footer covers the
   rest; the seam color (#38009b) is shared so there is no visible boundary. */
.cta-banner {
  color: #fff;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  font-family: "Host Grotesk", "Host Grotesk Placeholder", sans-serif;
}
/* When the banner lives inside .site-footer it shares the footer's
   gradient — no own background here. */
.site-footer__cta { background: transparent; }
.cta-banner__decor {
  position: relative;
  width: 100%;
  height: 613px;
  overflow: hidden;
  pointer-events: none;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.41;
  mix-blend-mode: lighten;
  -webkit-mask-image: linear-gradient(#000 28.8%, transparent 100%);
          mask-image: linear-gradient(#000 28.8%, transparent 100%);
}
.cta-banner__flourish {
  position: absolute;
  top: 160px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1080px, calc(100% - 80px));
  height: 417px;
  object-fit: cover;
  object-position: center top;
  opacity: 0.3;
  -webkit-mask-image: linear-gradient(#000 0%, transparent 100%);
          mask-image: linear-gradient(#000 0%, transparent 100%);
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 0 20px 88px;
}
.cta-banner__title {
  font-size: 72px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
  margin: 0;
  color: #fff;
  width: 60%;
  text-align: center;
  font-family: "Host Grotesk", "Host Grotesk Placeholder", sans-serif;
  text-wrap: balance;
}
.cta-banner__body {
  color: #fff;
  max-width: 480px;
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
  font-family: "Host Grotesk", "Host Grotesk Placeholder", sans-serif;
}
.cta-banner__btn {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.cta-banner__btn:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
@media (max-width: 1199px) {
  .cta-banner__title { font-size: 60px; width: 80%; }
}
@media (max-width: 809px) {
  .cta-banner { height: auto; min-height: 480px; padding: 80px 20px 60px; }
  .cta-banner__inner { gap: 24px; }
  .cta-banner__title { font-size: 36px; width: 100%; }
  .cta-banner__flourish { width: 100%; }
}

/* -------- Footer --------
   Single continuous gradient spans both the CTA banner (`.site-footer__cta`)
   at the top and the link columns below it — they're now siblings in one
   element so there's no visible seam. */
.site-footer {
  background: linear-gradient(180deg, #5000e4 0%, #210060 100%);
  color: #d3e5fc;
  padding: 0;
  position: relative;
  overflow: hidden;
  font-family: "Host Grotesk", "Host Grotesk Placeholder", sans-serif;
}
.site-footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 20px 0;
  display: flex;
  flex-direction: column;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(50px, 1fr));
  gap: 20px;
  align-items: start;
}
.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  min-width: 0;
}
.site-footer__heading {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  color: #fff;
  font-family: "Host Grotesk", "Host Grotesk Placeholder", sans-serif;
  letter-spacing: 0;
  text-transform: none;
}
.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.site-footer__links a {
  color: #d3e5fc;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  font-family: "Host Grotesk", "Host Grotesk Placeholder", sans-serif;
}
.site-footer__links a:hover { color: #fff; }
.site-footer__bottom {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 36px 0 31px;
  margin-top: 36px;
}
.site-footer__logo {
  display: inline-flex;
  width: 120px;
  height: 36px;
  flex: none;
}
.site-footer__logo img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: left center; }
.site-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  flex: none;
}
.site-footer__social:hover { background: rgba(255, 255, 255, 0.06); }
.site-footer__copy {
  margin: 0 0 0 auto;
  font-size: 14px;
  line-height: 1.5;
  color: #d3e5fc;
  text-align: right;
  font-family: "Host Grotesk", "Host Grotesk Placeholder", sans-serif;
}
@media (max-width: 1199px) {
  .site-footer__grid { grid-template-columns: repeat(3, minmax(50px, 1fr)); gap: 60px 20px; }
}
@media (max-width: 809px) {
  .site-footer__inner { padding: 80px 20px 0; }
  .site-footer__grid { grid-template-columns: repeat(2, minmax(50px, 1fr)); gap: 60px 20px; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; gap: 16px; padding: 36px 0 80px; margin-top: 60px; }
  .site-footer__copy { margin: 0; text-align: left; }
}

/* -------- Legal page -------- */
.legal-doc {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-ink);
}
.legal-doc h1 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 32px; color: var(--c-brand); }
.legal-doc h2 { font-size: 22px; margin-top: 40px; }
.legal-doc h3 { font-size: 17px; margin-top: 24px; }
.legal-doc a { word-break: break-word; }

/* Centered purple gradient hero for legal pages */
.legal-hero {
  background:
    radial-gradient(60% 80% at 50% 50%, rgba(255,255,255,0.18) 0%, transparent 60%),
    linear-gradient(135deg, #6c2bff 0%, #5000e4 45%, #3c00b0 100%);
  color: #fff;
  padding: 110px 0 130px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.10) 50%, transparent 70%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.legal-hero__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 500;
  margin: 0 0 18px;
  color: rgba(255,255,255,0.85);
}
.legal-hero__title {
  font-family: "Host Grotesk", "Host Grotesk Placeholder", sans-serif;
  font-size: 72px;
  line-height: 1;
  font-weight: 500;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
}
@media (max-width: 1199px) { .legal-hero__title { font-size: 56px; } }
@media (max-width: 809px)  { .legal-hero__title { font-size: 40px; } .legal-hero { padding: 80px 0 96px; } }

/* Body */
.legal-page {
  position: relative;
  padding: 64px 0 96px;
}
.legal-page__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  color: var(--c-ink-muted);
  font-size: 15px;
  line-height: 1.7;
}
.legal-page__inner h3 {
  font-family: "Host Grotesk", "Host Grotesk Placeholder", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--c-brand);
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.legal-page__inner h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--c-brand);
  margin: 32px 0 12px;
  line-height: 1.4;
}
.legal-page__inner p { margin: 0 0 12px; }
.legal-page__inner p strong { color: var(--c-ink); font-weight: 600; }
.legal-page__inner a { color: var(--c-brand); text-decoration: none; }
.legal-page__inner a:hover { text-decoration: underline; }

.legal-page__decor {
  position: absolute;
  left: 56px;
  top: 80px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-brand);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.legal-page__decor svg { width: 18px; height: 18px; }
@media (max-width: 1199px) { .legal-page__decor { display: none; } }

/* -------- Contact -------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-field label { font-size: 13px; font-weight: 500; color: var(--c-ink); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px) { .form-grid-2 { grid-template-columns: 1fr; } }
.contact-info {
  background: var(--c-bg-soft);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid var(--c-line);
}
.contact-info h3 { font-size: 18px; margin-top: 0; }
.contact-info dl { margin: 0; display: grid; grid-template-columns: auto 1fr; column-gap: 16px; row-gap: 8px; font-size: 14px; }
.contact-info dt { font-weight: 600; color: var(--c-ink-muted); }
.contact-info dd { margin: 0; }

/* -------- Contact Form 7 overrides -------- */
.wpcf7 form .wpcf7-form-control:not(.wpcf7-submit) {
  font: inherit;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--c-line-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--c-ink);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.wpcf7 form .wpcf7-form-control:not(.wpcf7-submit):focus {
  outline: none;
  border-color: var(--c-brand);
  box-shadow: 0 0 0 3px rgba(80, 0, 228, 0.12);
}
.wpcf7 form textarea { min-height: 140px; resize: vertical; }
.wpcf7 .wpcf7-not-valid-tip { color: #b00020; font-size: 12px; margin-top: 4px; }
.wpcf7 .wpcf7-response-output {
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin: 20px 0 0;
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid transparent;
}
.wpcf7 form.sent .wpcf7-response-output       { background: #e6f7ee; border-color: #b7e3c9; color: #145a35; }
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output { background: #fdecec; border-color: #f3b5b5; color: #6e1717; }

/* -------- Brand assets -------- */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.brand-card {
  border: 1px solid var(--c-line);
  border-radius: var(--radius-xl);
  padding: 24px;
  background: #fff;
  text-align: center;
}
.brand-card__preview {
  background: var(--c-bg-soft);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 16px;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-card__preview img { max-height: 80px; width: auto; }
.brand-card__name { font-weight: 600; margin-bottom: 4px; }
.brand-card__meta { color: var(--c-ink-muted); font-size: 13px; margin-bottom: 14px; }

/* -------- Resilience mark block --------
   Centered "+", H2 and body. Matches Framer "Logos" section structure:
   72px H2 (Host Grotesk, 500), 18px body, 28px gap between elements,
   120px top / 160px bottom padding, max-width 800px on inner column. */
.resilience-mark {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 20px 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  font-family: "Host Grotesk", "Host Grotesk Placeholder", sans-serif;
}
.resilience-mark__inner {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.resilience-mark__pre {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid #5000e4;
  border-radius: 40px;
  color: #5000e4;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  font-family: "Host Grotesk", "Host Grotesk Placeholder", sans-serif;
}
.resilience-mark__title {
  font-size: 72px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
  margin: 0;
  color: #5000e4;
  text-align: center;
  text-wrap: balance;
  font-family: "Host Grotesk", "Host Grotesk Placeholder", sans-serif;
}
.resilience-mark__body {
  margin: 0;
  max-width: 480px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  color: #6b6b6b;
  text-align: center;
  font-family: "Host Grotesk", "Host Grotesk Placeholder", sans-serif;
}
@media (max-width: 1199px) {
  .resilience-mark { padding: 80px 20px 120px; }
  .resilience-mark__title { font-size: 60px; }
}
@media (max-width: 809px) {
  .resilience-mark { padding: 60px 20px; }
  .resilience-mark__inner { gap: 24px; }
  .resilience-mark__title { font-size: 36px; }
}

/* -------- Capability cards (Core Capabilities) --------
   Outer card is the colored frame (#F3F6FB, 26px radius, 6px padding).
   The image lives in an inner card with a white→transparent gradient and
   20px radius. Below the image card sit the eyebrow, title, and body. */
.capabilities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
/* Break out of the parent .container's max-width so 3 cards have room to breathe (matches Framer layout). */
.section--soft > .container:has(> .capabilities) { max-width: 1500px; }
.section--dark > .container.sim-layout { max-width: 1400px; }
.capability-card {
  background: #F3F6FB;
  border-radius: 26px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.capability-card__media {
  aspect-ratio: 428 / 349;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0) 100%);
  border-radius: 20px;
  overflow: hidden;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.capability-card__media img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; }
.capability-card__body-wrap {
  padding: 0 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.capability-card__eyebrow {
  position: absolute;
  top: 28px;
  left: 30px;
  font-family: "Sora", "Sora Placeholder", "Host Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-brand);
  font-weight: 500;
  line-height: 1.5;
  z-index: 2;
}
.capability-card__title {
  font-family: "Host Grotesk", "Host Grotesk Placeholder", sans-serif;
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
  margin: 0;
  color: var(--c-brand);
}
.capability-card__body {
  font-family: "Host Grotesk", "Host Grotesk Placeholder", sans-serif;
  color: #6b6b6b;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  margin: 0;
}
.capabilities--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
/* When a layout container (grid/flex) is built via wp:group, Gutenberg
   inserts an inner-container div between the wrapper and its children.
   Make that wrapper transparent so children participate in the parent
   grid/flex layout directly. */
.capabilities > .wp-block-group__inner-container,
.two-col > .wp-block-group__inner-container,
.sim-grid > .wp-block-group__inner-container,
.feature-pills > .wp-block-group__inner-container,
.hero-dark__grid > .wp-block-group__inner-container,
.section__head--split > .wp-block-group__inner-container { display: contents; }
@media (max-width: 980px)  { .capabilities:not(.capabilities--4) { grid-template-columns: 1fr; } }
@media (max-width: 1199px) { .capabilities--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 540px)  { .capabilities--4 { grid-template-columns: 1fr; } }

/* -------- Numbered steps -------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 56px;
}
@media (max-width: 1199px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 540px)  { .steps { grid-template-columns: 1fr; } }
.step {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.step:hover { border-color: var(--c-line-strong); box-shadow: var(--shadow-card); transform: translateY(-2px); }
.step__num {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 14px;
  border: 1px solid rgba(80, 0, 228, 0.4);
  background: var(--c-violet-50);
  border-radius: 999px;
  color: var(--c-brand);
  font-family: "Host Grotesk", "Host Grotesk Placeholder", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
}
.step__title {
  font-family: "Host Grotesk", "Host Grotesk Placeholder", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--c-brand);
  margin: 0;
  letter-spacing: 0;
  line-height: 1.1;
}
.step__body {
  color: var(--c-ink-muted);
  font-family: "Host Grotesk", "Host Grotesk Placeholder", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}
.step__media {
  aspect-ratio: 728 / 668;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f5efff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* On-dark text variants */
.section__title--on-dark { color: #fff; font-size: 60px; line-height: 1.05; }
@media (max-width: 1199px) { .section__title--on-dark { font-size: 52px; } }
@media (max-width: 809px)  { .section__title--on-dark { font-size: 38px; } }
.section__lead--on-dark { color: rgba(255, 255, 255, 0.82); }
.section__lead--on-dark-muted { color: rgba(255, 255, 255, 0.55); }

/* Sim Types overview illustration. */
.sim-diagram {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
}
.sim-diagram img { width: 100%; height: auto; display: block; border-radius: 22px; }

/* Sim Types section layout: title spans the left column on its own row;
   image (left) and text content (right) sit on the row below, so the text
   starts at the same vertical position as the image, not the title. */
.sim-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas:
    "head  ."
    "media text";
  column-gap: clamp(32px, 5vw, 80px);
  row-gap: 32px;
}
.sim-layout > .wp-block-group__inner-container { display: contents; }
.sim-layout__head  { grid-area: head; }
.sim-layout__media { grid-area: media; align-self: start; }
.sim-layout__text  { grid-area: text;  align-self: start; }
@media (max-width: 809px) {
  .sim-layout { grid-template-columns: 1fr; grid-template-areas: "head" "media" "text"; }
}

/* -------- Simulation type list (table-style rows, dark section) -------- */
.sim-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.sim-row {
  display: grid;
  grid-template-columns: 56px 160px 1fr;
  align-items: center;
  column-gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.sim-row:last-child { border-bottom: 0; }
.sim-row__icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.sim-row__icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sim-row__name {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0;
}
.sim-row__desc {
  color: rgb(239, 232, 253);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 540px) {
  .sim-row { grid-template-columns: 44px 1fr; row-gap: 4px; }
  .sim-row__name { grid-column: 2; }
  .sim-row__desc { grid-column: 2; }
}

/* -------- Legacy simulation cards (unused after Gutenberg refactor) -------- */
.sim-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 1199px) { .sim-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 540px)  { .sim-grid { grid-template-columns: 1fr; } }
.sim-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.sim-card:hover { border-color: rgba(255, 255, 255, 0.28); background: rgba(255, 255, 255, 0.06); transform: translateY(-2px); }
.sim-card__img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}
.sim-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sim-card__title {
  font-family: "Host Grotesk", "Host Grotesk Placeholder", sans-serif;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0;
  line-height: 1.1;
}
.sim-card__desc {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Host Grotesk", "Host Grotesk Placeholder", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
.sim-card__badge {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 4px;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: "Host Grotesk", "Host Grotesk Placeholder", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.sim-card__badge--high     { color: #ffd76b; border-color: rgba(255, 215, 107, 0.4); background: rgba(255, 215, 107, 0.08); }
.sim-card__badge--critical { color: #ff8a8a; border-color: rgba(255, 138, 138, 0.4); background: rgba(255, 138, 138, 0.08); }

/* -------- Reveal on scroll (added by main.js) -------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms cubic-bezier(0.2, 0.6, 0.2, 1),
              transform 700ms cubic-bezier(0.2, 0.6, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* Staggered reveal for groups */
.frosted-card.reveal:nth-child(2)        { transition-delay: 80ms; }
.frosted-card.reveal:nth-child(3)        { transition-delay: 160ms; }
.frosted-card.reveal:nth-child(4)        { transition-delay: 240ms; }
.step.reveal:nth-child(2)                 { transition-delay: 80ms; }
.step.reveal:nth-child(3)                 { transition-delay: 160ms; }
.step.reveal:nth-child(4)                 { transition-delay: 240ms; }
.bullets li.reveal:nth-child(2)           { transition-delay: 60ms; }
.bullets li.reveal:nth-child(3)           { transition-delay: 120ms; }
.bullets li.reveal:nth-child(4)           { transition-delay: 180ms; }
.bullets li.reveal:nth-child(5)           { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-dark::before, .hero-dark::after, .hero-dark .container { transform: none !important; }
  .hero-dark__scroll { animation: none; }
}

/* -------- Misc helpers -------- */
.text-center { text-align: center; }
.muted { color: var(--c-ink-muted); }
.spacer-sm { height: 16px; }
.spacer-md { height: 32px; }
.spacer-lg { height: 56px; }

/* -------- Contact page -------- */
.hero-dark--contact {
  justify-content: center;
  padding: 120px 0 96px;
  min-height: 0;
  background: url('img/contact-hero-bg.webp') center / cover no-repeat, #5000e4;
}
.hero-dark--contact::before, .hero-dark--contact::after { display: none !important; }
.hero-dark__head {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 720px;
}
.hero-dark--contact .hero-dark__title,
.hero-dark__title--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: none;
  font-size: 80px;
  line-height: 0.9;
  font-weight: 500;
}
@media (max-width: 1199px) { .hero-dark__title--center { font-size: 60px; } }
@media (max-width: 809px)  { .hero-dark__title--center { font-size: 40px; } }
.hero-dark--contact .hero-dark__label {
  text-align: center;
  margin-bottom: 12px;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: none;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
@media (max-width: 900px) { .contact-cards { grid-template-columns: 1fr; } }

.contact-card {
  position: relative;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 36px;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.contact-card--help { gap: 24px; }
.contact-card--help .contact-channels { margin-top: auto; }
.contact-card__title {
  font-family: "Host Grotesk", "Host Grotesk Placeholder", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 14px;
  color: #fff;
}
.contact-card__lead {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  line-height: 1.55;
}
.contact-card__decor {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.22);
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  margin-top: auto;
  margin-bottom: 12px;
}
.contact-card__decor svg { width: 18px; height: 18px; }

.contact-channels {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-channel {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 14px;
}
.contact-channel__icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
}
.contact-channel__icon svg { width: 20px; height: 20px; }
.contact-channel__label {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
}
.contact-channel__email {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
}
.contact-channel__email:hover { color: #fff; text-decoration: underline; }

/* Form card */
.contact-form-card { padding: 28px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form__field { display: flex; flex-direction: column; gap: 6px; }
.contact-form__label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
}
.contact-form__label span { color: #b4a3ff; margin-left: 2px; }
.contact-form__input {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  outline: none;
  transition: border-color .15s, background .15s;
  font-family: inherit;
}
.contact-form__input::placeholder { color: rgba(255,255,255,0.55); }
.contact-form__input:focus {
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.12);
}
.contact-form__textarea { min-height: 96px; resize: vertical; }
.contact-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 6px;
}
.contact-form__terms {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,0.62);
  max-width: 280px;
}
.contact-form__terms a { color: rgba(255,255,255,0.85); text-decoration: underline; }
.contact-form__submit {
  background: #fff;
  color: #1c1622;
  border: 0;
  border-radius: 10px;
  padding: 12px 24px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: transform .15s, background .15s;
}
.contact-form__submit:hover { background: #f0f0f3; transform: translateY(-1px); }

@media (max-width: 900px) {
  .contact-card { padding: 24px; }
  .contact-form__footer { flex-direction: column; align-items: stretch; }
  .contact-form__submit { width: 100%; }
}

/* -------- Inner-page hero (about, etc.) -------- */
.hero-dark--inner {
  min-height: 80vh;
  padding: 0 0 80px;
  justify-content: flex-end;
}

/* -------- Short hero (faq, legal, etc.) — eyebrow only -------- */
.hero-dark--short {
  min-height: 0;
  padding: 240px 0 36px;
  justify-content: flex-end;
}
/* -------- Legal hero (imprint / privacy / terms) — self-contained variant.
   Short, smooth purple bg, centered label + title. Does NOT inherit from
   --short / --smooth / --inner so legal styling cannot affect those. */
.hero-dark--legal {
  position: relative;
  background: url('img/legal-hero-bg.webp') center / cover no-repeat, #5000e4;
  background-attachment: scroll !important;
  min-height: 50vh;
  padding: 200px 0 80px;
  justify-content: flex-end;
  text-align: center;
  overflow: hidden;
}
.hero-dark--legal::after { display: none !important; }
/* Gradient overlay sitting at the bottom of the hero (matches framer-of30go
   on the source). Transparent at top → solid brand purple at bottom. */
.hero-dark--legal::before {
  content: "";
  display: block !important;
  position: absolute;
  inset: auto 0 0 0;
  width: 100%;
  height: 453px;
  background: linear-gradient(180deg, rgba(34, 128, 242, 0) 0%, #5000e4 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-dark--legal > .wp-block-group__inner-container,
.hero-dark--legal .container { position: relative; z-index: 2; }
.hero-dark--legal .hero-dark__label {
  margin: 0 auto 16px;
  text-align: center;
  letter-spacing: 0.22em;
}
.hero-dark--legal .hero-dark__title {
  text-align: center;
  margin: 0 auto;
  max-width: 900px;
  font-size: 80px;
  line-height: 1;
}
@media (max-width: 1199px) { .hero-dark--legal .hero-dark__title { font-size: 64px; } }
@media (max-width: 809px)  {
  .hero-dark--legal { padding: 160px 0 56px; }
  .hero-dark--legal .hero-dark__title { font-size: 44px; }
}
@media (max-width: 809px) {
  .hero-dark--short { padding: 160px 0 24px; }
}

/* -------- Smooth-bg hero variant (faq, etc.) -------- */
.hero-dark--smooth {
  background: url('img/faq-hero-bg.webp') center / cover no-repeat, #5000e4;
  background-attachment: scroll !important;
  min-height: 578px;
  padding: 84px 0 56px;
  justify-content: flex-end;
}
.hero-dark--smooth.has-parallax { background-attachment: scroll !important; }
.hero-dark--smooth::before, .hero-dark--smooth::after { display: none !important; }
.hero-dark--smooth .hero-dark__label { margin-bottom: 16px; }
.hero-dark--smooth .hero-dark__grid { align-items: end; gap: clamp(24px, 5vw, 80px); }
/* FAQ-style hero: --smooth + --inner override the tall About/Industries
   sizing so FAQ stays at the shorter smooth-bg height. */
.hero-dark--smooth.hero-dark--inner {
  min-height: 80vh;
  padding: 140px 0 64px;
  justify-content: flex-end;
}
.hero-dark--smooth.hero-dark--inner .hero-dark__title { font-size: 80px; line-height: 1; }
@media (max-width: 1199px) { .hero-dark--smooth.hero-dark--inner .hero-dark__title { font-size: 60px; } }
@media (max-width: 809px)  { .hero-dark--smooth.hero-dark--inner .hero-dark__title { font-size: 40px; } }

/* -------- FAQ two-col layout -------- */
/* wp:group wraps inner content in a div — flatten so the grid sees direct children. */
.faq-section > .wp-block-group__inner-container,
.cta-banner > .wp-block-group__inner-container,
.cta-banner__inner > .wp-block-group__inner-container,
.hero-dark > .wp-block-group__inner-container,
.hero-dark .container > .wp-block-group__inner-container,
.hero-dark__grid > .wp-block-group__inner-container,
.faq-list > .wp-block-group__inner-container,
.faq-left > .wp-block-group__inner-container,
.faq-right > .wp-block-group__inner-container,
.card-grid > .wp-block-group__inner-container,
.two-col > .wp-block-group__inner-container,
.frosted-card__content > .wp-block-group__inner-container,
.pill-card-grid > .wp-block-group__inner-container,
.resilience-mark > .wp-block-group__inner-container,
.resilience-mark__inner > .wp-block-group__inner-container,
.independent-left > .wp-block-group__inner-container,
.independent-right > .wp-block-group__inner-container,
.section__head > .wp-block-group__inner-container,
.capabilities > .wp-block-group__inner-container,
.capability-card > .wp-block-group__inner-container,
.capability-card__body-wrap > .wp-block-group__inner-container,
.brand-kit > .wp-block-group__inner-container,
.brand-panel > .wp-block-group__inner-container,
.contact-cards > .wp-block-group__inner-container { display: contents; }

/* Legal pages (imprint / privacy / terms) — typography matches framer source
   (h3 52px purple, h4 20px purple, p 18px #6b6b6b, line-height 150%). */
.legal-body {
  max-width: 720px;
  padding-top: 56px;
  padding-bottom: 96px;
  font-family: "Host Grotesk", "Host Grotesk Placeholder", sans-serif;
  color: #6b6b6b;
}
.legal-body > p,
.legal-body > ul,
.legal-body > ol { margin: 0 0 20px; font-size: 18px; line-height: 1.5; color: #6b6b6b; font-weight: 400; }
.legal-body h2 { font-size: 52px; margin: 56px 0 24px; line-height: 1; font-weight: 700; color: var(--c-brand); letter-spacing: 0; }
.legal-body h3 { font-size: 52px; margin: 0 0 24px; line-height: 1; font-weight: 700; color: var(--c-brand); letter-spacing: 0; }
.legal-body h4 { font-size: 20px; margin: 40px 0 12px; line-height: 1.4; font-weight: 700; color: var(--c-brand); }
.legal-body h2:first-child,
.legal-body h3:first-child { margin-top: 0; }
.legal-body ul { padding-left: 24px; }
.legal-body a { color: var(--c-brand); text-decoration: none; }
.legal-body a:hover { text-decoration: underline; }
.legal-body strong { color: #1f2b38; font-weight: 700; }
@media (max-width: 1199px) {
  .legal-body h2, .legal-body h3 { font-size: 48px; }
}
@media (max-width: 809px) {
  .legal-body h2, .legal-body h3 { font-size: 28px; }
}

.faq-section .faq-left .eyebrow {
  display: inline-block;
  padding: 8px 16px;
  border: 1.5px solid rgba(80,0,228,0.35);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--c-brand);
}
.faq-section .faq-right { display: flex; flex-direction: column; gap: 32px; }
.faq-section .section__title { color: var(--c-brand); margin: 0; }

/* Core wp:details block — reset wp-block-details defaults so .faq-item styling applies cleanly */
.wp-block-details.faq-item > summary { padding: 0; }
.hero-dark--inner .hero-dark__title {
  font-size: 96px;
  line-height: 0.95;
  max-width: 720px;
  margin: 0;
}
@media (max-width: 1199px) { .hero-dark--inner .hero-dark__title { font-size: 76px; } }
@media (max-width: 809px)  { .hero-dark--inner .hero-dark__title { font-size: 48px; } }
.hero-dark--inner .hero-dark__grid { align-items: end; }
.hero-dark--inner .hero-dark__grid > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  justify-self: end;
  max-width: 440px;
}
.hero-dark--inner .hero-dark__label { margin-bottom: 16px; letter-spacing: 0.22em; }
.hero-dark--inner .hero-dark__body { max-width: 440px; margin: 0; }
.hero-dark--inner .hero-dark__cta { margin: 0; justify-content: flex-start; }
.hero-dark--inner .hero-dark__cta .btn,
.hero-dark--inner .hero-dark__cta .wp-block-button__link { padding: 16px 32px; font-size: 15px; }
.hero-dark__decor {
  position: absolute;
  left: 44px;
  bottom: 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  z-index: 2;
}
.hero-dark__decor svg { width: 20px; height: 20px; }

/* -------- About: centered quote section -------- */
.quote-section { text-align: center; max-width: 980px; }
.eyebrow--center { display: inline-block; }
.quote-section .eyebrow { margin: 0 auto 18px; }
.quote-section .quote-block { margin: 0 auto; text-align: center; }

/* -------- About: values 2-col -------- */
.values-section .values-left { padding-right: 24px; }
.values-section .values-left .section__title { color: var(--c-brand); }
.values-section .values-right { display: flex; flex-direction: column; gap: 18px; }
.values-art {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  background: url('img/values-art.webp') center/cover no-repeat, #1c0658;
  margin: 8px 0 8px;
  overflow: hidden;
}
/* Same .values-art visual when rendered as a wp:image figure (any page). */
figure.wp-block-image.values-art {
  background: none;
  padding: 0;
  display: block;
}
figure.wp-block-image.values-art img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

.principles {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.principle {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--c-line);
}
.principle:last-child { border-bottom: 0; }
.principle__icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--c-line-strong);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-brand);
}
.principle__icon svg { width: 18px; height: 18px; }
.principle__title {
  display: block;
  color: var(--c-brand);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
}
.principle__sub {
  display: block;
  color: var(--c-ink-muted);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .values-section .values-left { padding-right: 0; }
}

/* -------- Brand Kit page -------- */
.brand-kit { padding: 96px 0 80px; }
.brand-kit > .container { position: relative; }
.brand-kit__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}
.brand-kit__intro { max-width: 540px; }
.brand-kit__title {
  font-family: "Host Grotesk", "Host Grotesk Placeholder", sans-serif;
  font-size: 60px;
  line-height: 1.05;
  font-weight: 500;
  color: var(--c-ink);
  margin: 12px 0 14px;
}
@media (max-width: 1199px) { .brand-kit__title { font-size: 48px; } }
@media (max-width: 809px)  { .brand-kit__title { font-size: 36px; } }
.brand-kit__lead { color: var(--c-ink-muted); font-size: 15px; line-height: 1.6; margin: 0; max-width: 480px; }

.eyebrow--dot::before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-brand);
  margin-right: 8px;
  vertical-align: middle;
}

.usage-policy {
  background: #f3effd;
  border: 1px solid #e5dafc;
  border-radius: 14px;
  padding: 18px 22px;
  max-width: 280px;
}
.usage-policy__title {
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--c-brand);
  margin: 0 0 10px;
}
.usage-policy__body { font-size: 13px; color: var(--c-ink-muted); margin: 0; line-height: 1.5; }

.brand-kit__decor {
  position: absolute;
  left: -56px;
  top: 200px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-brand);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.brand-kit__decor svg { width: 18px; height: 18px; }
@media (max-width: 1199px) { .brand-kit__decor { display: none; } }

.brand-panel {
  background: #f6f5fa;
  border-radius: 24px;
  padding: 36px;
  margin-bottom: 32px;
}
.brand-panel__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.brand-panel__num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--c-ink-muted);
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  padding: 4px 10px;
}
.brand-panel__title {
  font-family: "Host Grotesk", "Host Grotesk Placeholder", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--c-ink);
  margin: 0;
}
.brand-panel__note {
  margin: 18px 0 0;
  font-size: 13px;
  color: var(--c-ink-muted);
}

/* Logo grid */
.logo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 900px) { .logo-grid { grid-template-columns: 1fr; } }
.logo-card {
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.logo-card--light { background: #ecebf2; }
.logo-card--dark  { background: #141319; }
.logo-card__preview {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.logo-card__preview img { max-width: 70%; max-height: 100%; }
.logo-card__meta {
  background: #fff;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--c-line);
  flex: 1;
}
.logo-card__name { font-weight: 600; font-size: 14px; color: var(--c-ink); display: block; }
.logo-card__desc { font-size: 12px; color: var(--c-ink-muted); display: block; }
.logo-card__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  padding: 14px 16px;
  border-top: 1px solid var(--c-line);
}
.logo-card__bar .logo-card__meta {
  padding: 0;
  border-top: 0;
  flex: 1;
}
.logo-card__actions { display: flex; gap: 8px; }
.logo-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--c-ink);
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  padding: 6px 12px;
  text-decoration: none;
  transition: background .15s;
}
.logo-card__btn:hover { background: #f6f5fa; }
.logo-card__btn svg { width: 12px; height: 12px; }

/* Color swatches */
.color-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 900px) { .color-grid { grid-template-columns: repeat(2, 1fr); } }
.color-swatch {
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--c-line);
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform .15s;
}
.color-swatch:hover { transform: translateY(-2px); }
.color-swatch__chip {
  display: block;
  height: 90px;
  background: var(--swatch);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.color-swatch--bordered .color-swatch__chip { border: 1px solid var(--c-line); }
.color-swatch__meta { padding: 12px 14px; display: flex; flex-direction: column; gap: 2px; }
.color-swatch__label {
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--c-ink-muted);
  text-transform: uppercase;
}
.color-swatch__name { font-size: 14px; font-weight: 600; color: var(--c-ink); }
.color-swatch__hex { font-size: 12px; color: var(--c-ink-muted); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.color-swatch.is-copied { outline: 2px solid var(--c-brand); }

/* Wallpapers */
.wallpaper-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 900px) { .wallpaper-grid { grid-template-columns: 1fr; } }
.wallpaper-card {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: #ecebf2;
}
.wallpaper-card__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wallpaper-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.85);
  color: var(--c-ink);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 999px;
}
.wallpaper-card--dark .wallpaper-card__tag,
.wallpaper-card--violet .wallpaper-card__tag { background: rgba(0,0,0,0.55); color: #fff; }
.wallpaper-card__foot {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: linear-gradient(to top, rgba(255,255,255,0.95), rgba(255,255,255,0));
}
.wallpaper-card--dark .wallpaper-card__foot,
.wallpaper-card--violet .wallpaper-card__foot {
  background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0));
  color: #fff;
}
.wallpaper-card__name { font-size: 13px; font-weight: 600; }
.wallpaper-card__dl {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,0.85);
  color: var(--c-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.wallpaper-card--dark .wallpaper-card__dl,
.wallpaper-card--violet .wallpaper-card__dl { background: rgba(255,255,255,0.18); color: #fff; }
.wallpaper-card__dl svg { width: 14px; height: 14px; }

.brand-kit__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--c-ink-muted);
  padding: 16px 4px 0;
}
.brand-kit__foot a { color: var(--c-ink-muted); text-decoration: none; }
.brand-kit__foot a:hover { color: var(--c-brand); }

@media (max-width: 809px) {
  .brand-kit__head { grid-template-columns: 1fr; }
  .brand-panel { padding: 24px; }
}

/* ───────────────────────────────────────────────────────────────────────
   Native Gutenberg block adapters
   wp:image renders <figure class="wp-block-image {cls}">; reset WP's
   default figure margin/inline-block so our {cls} styling owns the box.
   wp:buttons renders <div class="wp-block-buttons"><div class="wp-block-button">…
   Flatten both wrappers via display:contents so our existing .btn styling
   on the inner .wp-block-button__link looks correct.
   ─────────────────────────────────────────────────────────────────────── */
.wp-block-image { margin: 0; max-width: none; display: block; }
.wp-block-image.product-shot,
.wp-block-image.sim-diagram,
.wp-block-image.capability-card__media { display: block; }
.wp-block-image.product-shot img,
.wp-block-image.sim-diagram img,
.wp-block-image.capability-card__media img { display: block; }

.wp-block-buttons { display: contents; }
.wp-block-buttons.text-center { display: flex; justify-content: center; margin-top: 48px; }
.wp-block-buttons.hero-dark__cta { display: flex; gap: 10px; flex-wrap: wrap; }
.wp-block-button { display: contents; }
.wp-block-button__link.wp-element-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 17px 32px;
  border-radius: var(--radius-sm);
  font-size: 14.4px;
  font-weight: 500;
  font-family: "Montserrat", "Montserrat Placeholder", sans-serif;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.wp-block-button.is-style-outline-light .wp-block-button__link {
  color: rgba(248, 248, 248, 0.95);
  border-color: rgba(248, 248, 248, 0.95);
  position: relative;
  overflow: hidden;
}
.wp-block-button.is-style-outline-light .wp-block-button__link:hover {
  background: rgba(248, 248, 248, 0.95);
  color: #5000e4;
}
.wp-block-button.is-style-outline .wp-block-button__link {
  color: var(--c-brand);
  border-color: var(--c-brand);
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: var(--c-brand);
  color: #fff;
}
.hero-dark--product .wp-block-buttons.hero-dark__cta .wp-block-button__link {
  padding: 16px 32px;
  font-size: 15px;
}

/* ---------- Keyboard focus ----------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--c-brand, #5000e4);
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.wp-block-button__link:focus-visible {
  outline: 2px solid var(--c-brand, #5000e4);
  outline-offset: 3px;
}
.faq-item > summary { outline-offset: 6px; }
.hero-dark a:focus-visible,
.site-footer a:focus-visible,
.frosted-card a:focus-visible { outline-color: #fff; }

/* ---------- CF7 inside .contact-form ------------------------------------ */
.contact-form .hidden-fields-container { display: none; }
.contact-form .wpcf7-form-control-wrap { display: contents; }
.contact-form .wpcf7-response-output {
  margin: 12px 0 0;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 13px;
}
.contact-form .wpcf7-spinner { display: none; }
.contact-form .wpcf7-not-valid-tip {
  color: #ffb4b4;
  font-size: 12px;
  margin-top: 4px;
}
.contact-form .wpcf7-form-control.wpcf7-not-valid {
  border-color: rgba(255,180,180,0.6);
}

/* CF7 inputs inherit WP block-library + browser-default backgrounds. Force
   the translucent dark look from the original placeholder form. */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="url"],
.contact-form textarea {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 100% !important;
  padding: 14px 16px !important;
  font: inherit !important;
  font-size: 15px !important;
  color: #fff !important;
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  border-radius: 10px !important;
  outline: none !important;
  box-shadow: none !important;
  transition: border-color .15s, background .15s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.55) !important;
  opacity: 1 !important;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255,255,255,0.45) !important;
  background: rgba(255,255,255,0.12) !important;
}
.contact-form textarea { min-height: 110px !important; resize: vertical; }
.contact-form input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px rgba(80,0,228,0.45) inset !important;
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff;
}
.contact-form input[type="submit"] {
  -webkit-appearance: none !important;
  appearance: none !important;
  background: #fff !important;
  color: var(--c-brand, #5000e4) !important;
  border: 0 !important;
  padding: 12px 28px !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  cursor: pointer;
  transition: background .15s, transform .15s;
  box-shadow: none !important;
  width: auto !important;
}
.contact-form input[type="submit"]:hover {
  background: #f0f0f3 !important;
  transform: translateY(-1px);
}

/* ---------- Breadcrumbs -------------------------------------------------- */
.breadcrumbs {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 32px 0;
  font-size: 13px;
}
.breadcrumbs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.6);
}
.breadcrumbs__item:not(:last-child)::after {
  content: " / ";
  margin-left: 8px;
  color: rgba(255,255,255,0.3);
}
.breadcrumbs__item a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}
.breadcrumbs__item a:hover { color: #fff; }
.breadcrumbs__item[aria-current] { color: rgba(255,255,255,0.95); }
/* Don't double-pad pages whose first block is a hero with its own top padding. */
.has-hero-dark .breadcrumbs { display: none; }

/* ---------- Cookie consent revisit button (cookie-law-info) -------------- */
/* Plugin sets background-color inline (#0056A7). Override to brand purple. */
.cky-btn-revisit-wrapper { background-color: var(--c-brand, #5000e4) !important; }
.cky-btn-revisit-wrapper:hover { background-color: #3a00b0 !important; }

/* ---------- Custom logo (Site Identity) ---------------------------------- */
/* the_custom_logo() emits .custom-logo-link > img.custom-logo. Style so it
   matches our hand-written .site-logo > img fallback. */
.site-logo .custom-logo-link { display: inline-flex; align-items: center; }
.site-logo .custom-logo { height: 30px; width: auto; max-width: 220px; }
@media (max-width: 1023px) {
  .site-logo .custom-logo { height: 26px; }
}
