:root,
.editor-styles-wrapper {
  --color-ocean-50: #f0f7fc;
  --color-ocean-100: #dcedf8;
  --color-ocean-200: #b9daf1;
  --color-ocean-300: #8ac2e7;
  --color-ocean-400: #4f9fd6;
  --color-ocean-500: #2c84c4;
  --color-ocean-600: #1b75bb;
  --color-ocean-700: #155e96;
  --color-ocean-800: #114b78;
  --color-ocean-900: #0d3a5e;
  --color-ocean-950: #082743;
  --color-teal-300: #8fdfee;
  --color-teal-400: #5ed0e6;
  --color-teal-500: #29b9d6;
  --color-teal-600: #127a92;
  --color-teal-700: #0f6174;
  --color-leaf-300: #c4e596;
  --color-leaf-400: #a5d65e;
  --color-leaf-500: #8dc63f;
  --color-leaf-600: #5d8728;
  --color-leaf-700: #496d1f;
  --color-ink-900: #1e2a36;
  --color-ink-700: #3c4a59;
  --color-ink-500: #58595b;
  --color-page: #ffffff;
  --color-panel: #ffffff;
  --color-panel-strong: #ffffff;
  --color-wash: #f0f7fc;
  --color-soft: #dcedf8;
  --color-line: #dcedf8;
  --color-line-strong: #b9daf1;
  --color-heading: #082743;
  --color-copy: #3c4a59;
  --color-muted: #58595b;
  --color-link: #155e96;
  --color-link-strong: #114b78;
  --color-teal-text: #106b80;
  --color-leaf-text: #496d1f;
  --color-logo-mat: #ffffff;
  --font-display: var(--wp--preset--font-family--display), "Manrope", system-ui, sans-serif;
  --font-body: var(--wp--preset--font-family--body), "Inter", system-ui, sans-serif;
  --font-heading: var(--font-display);
  --shadow-tile: 0 1px 2px rgb(8 39 67 / 0.06), 0 8px 24px -8px rgb(8 39 67 / 0.14);
  --shadow-tile-hover: 0 2px 4px rgb(8 39 67 / 0.08), 0 18px 44px -12px rgb(8 39 67 / 0.28);
  --shadow-glow-teal: 0 0 0 1px rgb(41 185 214 / 0.25), 0 10px 40px -8px rgb(41 185 214 / 0.45);
  --shadow-card-dark: 0 1px 0 rgb(255 255 255 / 0.06) inset, 0 16px 40px -16px rgb(0 0 0 / 0.55);
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 0.9rem;
  --radius-2xl: 1rem;
  --radius-3xl: 1.5rem;
  --radius-pill: 999px;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body,
.editor-styles-wrapper {
  background: var(--color-page);
  color: var(--color-copy);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

:where(h1, h2, h3, h4, h5, h6),
.editor-styles-wrapper :where(h1, h2, h3, h4, h5, h6) {
  color: var(--color-heading);
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

::selection {
  background: rgb(41 185 214 / 0.3);
}

:where(a) {
  color: var(--color-link);
  text-underline-offset: 0.2em;
}

:where(a:hover) {
  color: var(--color-link-strong);
}

.wp-site-blocks {
  min-height: 100vh;
  overflow-x: hidden;
}

.alignwide {
  max-width: min(80rem, calc(100vw - 2rem));
}

.alignfull {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
  width: 100vw;
}

@supports (width: 100svw) {
  .alignfull {
    margin-left: calc(50% - 50svw);
    margin-right: calc(50% - 50svw);
    max-width: 100svw;
    width: 100svw;
  }
}

.screen-reader-text,
.sr-only {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.screen-reader-text:focus,
.sr-only:focus {
  clip: auto;
  background: var(--color-ocean-600);
  border-radius: 0.5rem;
  color: #ffffff;
  height: auto;
  left: 1rem;
  padding: 0.75rem 1rem;
  top: 1rem;
  width: auto;
  z-index: 10000;
}

.btn,
.wp-block-button .wp-block-button__link,
.wp-element-button {
  align-items: center;
  border-radius: var(--radius-pill);
  display: inline-flex;
  gap: 0.5rem;
  justify-content: center;
  line-height: 1;
  padding: 0.875rem 1.75rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}

.btn:active,
.wp-block-button .wp-block-button__link:active,
.wp-element-button:active {
  transform: scale(0.97);
}

.btn:focus-visible,
.wp-block-button .wp-block-button__link:focus-visible,
.wp-element-button:focus-visible {
  outline: 2px solid var(--color-teal-500);
  outline-offset: 2px;
}

.btn-primary,
.wp-block-button.is-style-primary .wp-block-button__link,
.wp-block-button:not([class*="is-style-"]) .wp-block-button__link {
  background: var(--color-ocean-600);
  color: #ffffff;
  box-shadow: 0 1px 2px rgb(8 39 67 / 0.2), 0 8px 20px -6px rgb(27 117 187 / 0.5);
}

.btn-primary:hover,
.wp-block-button.is-style-primary .wp-block-button__link:hover,
.wp-block-button:not([class*="is-style-"]) .wp-block-button__link:hover {
  background: var(--color-ocean-700);
  color: #ffffff;
  box-shadow: 0 2px 4px rgb(8 39 67 / 0.2), 0 12px 28px -6px rgb(27 117 187 / 0.55);
}

.btn-accent,
.wp-block-button.is-style-accent .wp-block-button__link {
  background-color: var(--color-teal-400);
  background-image: linear-gradient(120deg, var(--color-teal-400), var(--color-teal-500) 55%, var(--color-leaf-500) 130%);
  color: var(--color-ocean-950);
  box-shadow: 0 1px 2px rgb(8 39 67 / 0.25), 0 10px 26px -8px rgb(41 185 214 / 0.65);
}

.btn-accent:hover,
.wp-block-button.is-style-accent .wp-block-button__link:hover {
  color: var(--color-ocean-950);
  filter: brightness(1.06);
  box-shadow: 0 2px 4px rgb(8 39 67 / 0.25), 0 14px 34px -8px rgb(41 185 214 / 0.75);
}

.btn-white,
.wp-block-button.is-style-white .wp-block-button__link {
  background: #ffffff;
  color: var(--color-ocean-800);
  box-shadow: 0 1px 2px rgb(8 39 67 / 0.18), 0 8px 22px -8px rgb(8 39 67 / 0.35);
}

.btn-white:hover,
.wp-block-button.is-style-white .wp-block-button__link:hover {
  background: var(--color-teal-300);
  color: var(--color-ocean-950);
}

.btn-ghost-dark,
.wp-block-button.is-style-ghost-dark .wp-block-button__link {
  background: rgb(255 255 255 / 0.08);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.25);
  backdrop-filter: blur(8px);
}

.btn-ghost-dark:hover,
.wp-block-button.is-style-ghost-dark .wp-block-button__link:hover {
  background: rgb(255 255 255 / 0.16);
  color: #ffffff;
}

.btn-outline,
.wp-block-button.is-style-outline .wp-block-button__link {
  background: #ffffff;
  color: var(--color-ocean-700);
  box-shadow: inset 0 0 0 1.5px var(--color-ocean-200);
}

.btn-outline:hover,
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: var(--color-ocean-50);
  color: var(--color-ocean-900);
  box-shadow: inset 0 0 0 1.5px var(--color-ocean-500);
}

.oshean-site-header {
  background: color-mix(in srgb, var(--color-panel) 94%, transparent);
  border-bottom: 1px solid var(--color-line);
  box-shadow: 0 10px 30px -28px rgb(8 39 67 / 0.65);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.oshean-site-header > * {
  margin-block-start: 0 !important;
}

.oshean-header-utility {
  background: var(--color-ocean-950);
  color: #ffffff;
  --oshean-utility-action-color: var(--color-teal-300);
  --oshean-utility-action-hover: #ffffff;
}

.oshean-header-utility__inner {
  gap: 1rem;
  min-height: 2.35rem;
}

.oshean-header-utility__support,
.oshean-header-utility .wp-block-navigation {
  font-size: 0.8125rem;
  font-weight: 600;
  margin: 0;
}

.oshean-header-utility a {
  color: var(--color-teal-300);
  text-decoration: none;
}

.oshean-header-utility a:hover,
.oshean-header-utility a:focus-visible {
  color: #ffffff;
}

.oshean-utility-actions {
  align-items: center;
  gap: clamp(1rem, 1.6vw, 1.45rem);
  margin-left: auto;
}

.oshean-utility-navigation {
  column-gap: clamp(1rem, 1.6vw, 1.45rem);
}

.oshean-utility-actions .wp-block-buttons,
.oshean-theme-control {
  margin: 0;
}

.oshean-utility-actions .oshean-command-palette-shell {
  line-height: 1;
}

.oshean-header-utility .oshean-utility-actions .wp-block-navigation-item__content,
.oshean-header-utility .oshean-utility-actions .oshean-command-trigger {
  align-items: center;
  color: var(--oshean-utility-action-color);
  display: inline-flex;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  min-height: 2rem;
}

.oshean-header-utility .oshean-utility-actions .wp-block-navigation-item__content:hover,
.oshean-header-utility .oshean-utility-actions .wp-block-navigation-item__content:focus-visible,
.oshean-header-utility .oshean-utility-actions .oshean-command-trigger:hover,
.oshean-header-utility .oshean-utility-actions .oshean-command-trigger:focus-visible {
  color: var(--oshean-utility-action-hover);
}

.oshean-header-utility .oshean-command-trigger {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: var(--oshean-utility-action-color);
  min-height: 2rem;
  min-width: 2rem;
  padding: 0;
}

.oshean-header-utility .oshean-command-trigger:hover,
.oshean-header-utility .oshean-command-trigger:focus-visible {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  color: var(--oshean-utility-action-hover);
}

.oshean-header-utility .oshean-command-trigger:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 0.2rem;
}

.oshean-header-utility .oshean-command-trigger__icon {
  height: 0.78rem;
  width: 0.78rem;
}

.oshean-header-utility .oshean-command-trigger__icon::after {
  bottom: -0.22rem;
  right: -0.31rem;
  width: 0.44rem;
}

.oshean-header-utility .oshean-command-trigger__label {
  display: none;
}

:root[data-theme="dark"] .oshean-header-utility .oshean-command-trigger,
:root:not([data-theme="light"]) .oshean-header-utility .oshean-command-trigger {
  background: transparent;
  color: var(--oshean-utility-action-color);
}

:root[data-theme="dark"] .oshean-header-utility .oshean-command-trigger:hover,
:root[data-theme="dark"] .oshean-header-utility .oshean-command-trigger:focus-visible,
:root:not([data-theme="light"]) .oshean-header-utility .oshean-command-trigger:hover,
:root:not([data-theme="light"]) .oshean-header-utility .oshean-command-trigger:focus-visible {
  background: transparent;
  color: var(--oshean-utility-action-hover);
}

.oshean-header-main {
  background: var(--color-panel);
  border-bottom: 1px solid var(--color-line);
}

.oshean-header-main__inner {
  gap: 1.25rem;
  min-height: 4.35rem;
  padding-bottom: 0.55rem;
  padding-top: 0.55rem;
}

.oshean-header-logo {
  flex: 0 0 auto;
  gap: 0;
  line-height: 0;
  margin: 0;
  margin-right: 0.4rem;
}

.oshean-header-logo .wp-block-image {
  line-height: 0;
  margin: 0;
}

.oshean-header-logo img {
  display: block;
  height: auto;
  max-width: min(100%, 14.75rem);
}

/* Keep the actions cluster compact so the menu never runs out of room and
   spills left over the logo (right-justified nowrap overflow spills left). */
.oshean-header-actions {
  flex: 0 0 auto;
}

.oshean-header-actions .wp-block-button__link,
.oshean-header-actions .oshean-command-trigger {
  font-size: 0.85rem;
  padding: 0.55rem 1.1rem;
}

/* Below the comfortable single-row width, let the actions wrap under the
   menu instead of colliding with it. */
@media (max-width: 1200px) {
  .oshean-header-main .oshean-header-main__inner {
    flex-wrap: wrap;
  }
}

.oshean-footer-logo img {
  display: block;
  height: auto;
  max-width: min(100%, 11rem);
}

.oshean-primary-navigation {
  flex: 1 1 auto;
  justify-content: flex-end;
  min-width: 0;
}

.oshean-primary-navigation .wp-block-navigation-item__content,
.oshean-utility-navigation .wp-block-navigation-item__content {
  text-decoration: none;
}

.oshean-primary-navigation .wp-block-navigation-item__content {
  border-radius: 0.65rem;
  color: var(--color-heading);
  font-size: 0.94rem;
  font-weight: 600;
  padding: 0.55rem 0.7rem;
}

.oshean-primary-navigation .wp-block-navigation-submenu__toggle {
  font-weight: 600;
}

.oshean-header-main .oshean-primary-navigation .wp-block-navigation__container > .wp-block-navigation-item > .wp-block-navigation-item__content,
.oshean-header-main .oshean-primary-navigation .wp-block-navigation__container > .wp-block-navigation-item > .wp-block-navigation-submenu__toggle {
  color: var(--color-heading) !important;
}

.oshean-header-main .oshean-primary-navigation .wp-block-navigation__container > .wp-block-navigation-item > .wp-block-navigation-submenu__toggle svg path {
  stroke: currentColor;
}

.oshean-primary-navigation .wp-block-navigation-item__content:hover,
.oshean-primary-navigation .wp-block-navigation-item__content:focus-visible,
.oshean-primary-navigation .wp-block-navigation-submenu__toggle:hover,
.oshean-primary-navigation .wp-block-navigation-submenu__toggle:focus-visible {
  background: rgb(41 185 214 / 0.12);
  color: var(--color-link-strong);
}

.oshean-primary-navigation .wp-block-navigation__submenu-container {
  background: var(--color-panel);
  background-color: var(--color-panel);
  border: 1px solid var(--color-line);
  border-radius: 0.9rem;
  box-shadow: var(--shadow-tile-hover);
  min-width: 15rem;
  overflow: hidden;
  padding: 0.45rem;
}

.oshean-primary-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
  border-radius: 0.6rem;
  color: var(--color-copy);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.55rem 0.7rem;
}

.oshean-primary-navigation.wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container {
  background-color: var(--color-panel);
  border-color: var(--color-line);
}

.oshean-header-actions {
  flex: 0 0 auto;
  gap: 0.55rem;
  justify-content: flex-end;
}

.oshean-header-actions .wp-block-buttons {
  gap: 0.55rem;
}

.oshean-header-actions .wp-block-button__link,
.oshean-command-trigger {
  min-height: 2.55rem;
  white-space: nowrap;
}

.oshean-command-palette-shell {
  position: relative;
}

.oshean-command-trigger {
  align-items: center;
  background: var(--color-panel);
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-pill);
  color: var(--color-link);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 800;
  gap: 0.45rem;
  justify-content: center;
  line-height: 1;
  padding: 0.72rem 1rem;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.oshean-command-trigger__icon {
  border: 2px solid currentColor;
  border-radius: 999px;
  display: inline-block;
  height: 0.85rem;
  position: relative;
  width: 0.85rem;
}

.oshean-command-trigger__icon::after {
  background: currentColor;
  border-radius: var(--radius-pill);
  bottom: -0.25rem;
  content: "";
  height: 2px;
  position: absolute;
  right: -0.35rem;
  transform: rotate(45deg);
  width: 0.5rem;
}

.oshean-command-trigger:hover,
.oshean-command-trigger:focus-visible {
  background: var(--color-ocean-600);
  border-color: var(--color-ocean-600);
  color: #ffffff;
  outline: none;
}

.oshean-theme-toggle .wp-block-button__link {
  align-items: center;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0;
  box-shadow: none !important;
  color: var(--color-teal-300);
  display: inline-flex;
  font-size: 0;
  height: 1.9rem;
  justify-content: center;
  min-height: 1.9rem;
  min-width: 1.9rem;
  outline: 0;
  padding: 0.12rem;
  width: 1.9rem;
}

.oshean-theme-toggle .wp-block-button__link:hover,
.oshean-theme-toggle .wp-block-button__link:focus-visible {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: #ffffff;
}

.oshean-theme-toggle .wp-block-button__link:focus-visible {
  filter: drop-shadow(0 0 0.3rem currentColor);
  outline: 0;
}

.oshean-theme-toggle .wp-block-button__link[data-next-theme="light"] {
  color: var(--color-leaf-300);
}

.oshean-header-utility .oshean-utility-actions .oshean-theme-toggle .wp-block-button__link,
.oshean-header-utility .oshean-utility-actions .oshean-theme-toggle .wp-block-button__link[data-next-theme="light"] {
  color: var(--oshean-utility-action-color);
  height: 2rem;
  min-height: 2rem;
  min-width: 2rem;
  width: 2rem;
}

.oshean-header-utility .oshean-utility-actions .oshean-theme-toggle .wp-block-button__link:hover,
.oshean-header-utility .oshean-utility-actions .oshean-theme-toggle .wp-block-button__link:focus-visible {
  color: var(--oshean-utility-action-hover);
}

.oshean-header-utility .oshean-utility-actions .oshean-theme-toggle__icon {
  height: 1rem;
  width: 1rem;
}

.oshean-theme-toggle__icon {
  display: block;
  height: 1.35rem;
  overflow: visible;
  width: 1.35rem;
}

.oshean-theme-toggle__icon :where(circle, path) {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.15;
}

.oshean-portal-link .wp-block-button__link,
.oshean-member-link .wp-block-button__link {
  font-size: 0.84rem;
  padding-left: 1.1rem;
  padding-right: 1.1rem;
}

.oshean-command-palette-shell .oshean-command-dialog {
  align-items: flex-start;
  background: rgb(6 21 34 / 0.76);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: min(10vh, 5rem) 1rem 1rem;
  position: fixed;
  z-index: 9999;
}

.oshean-command-palette-shell .oshean-command-dialog[hidden] {
  display: none;
}

.oshean-command-palette-shell .oshean-command-panel {
  background: var(--color-panel);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-2xl);
  box-shadow: 0 24px 90px rgb(0 0 0 / 0.32);
  color: var(--color-copy);
  max-width: 44rem;
  padding: 1rem;
  position: relative;
  width: min(100%, 44rem);
}

.oshean-command-palette-shell .oshean-command-close {
  align-items: center;
  background: var(--color-wash);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-pill);
  color: var(--color-heading);
  cursor: pointer;
  display: inline-flex;
  font-size: 1.35rem;
  height: 2.2rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 0.85rem;
  top: 0.85rem;
  width: 2.2rem;
}

.oshean-command-palette-shell .oshean-command-panel input {
  background: var(--color-page);
  border: 1px solid var(--color-line-strong);
  border-radius: 0.85rem;
  color: var(--color-heading);
  font: inherit;
  font-size: 1rem;
  margin-right: 3rem;
  min-height: 3.1rem;
  padding: 0.85rem 1rem;
  width: calc(100% - 3rem);
}

.oshean-command-hint,
.oshean-command-empty {
  color: var(--color-muted);
  font-size: 0.86rem;
  margin: 0.65rem 0 0;
}

.oshean-command-results {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
}

.oshean-command-results a {
  border: 1px solid transparent;
  border-radius: 0.8rem;
  color: var(--color-heading);
  display: grid;
  gap: 0.12rem;
  padding: 0.75rem 0.85rem;
  text-decoration: none;
}

.oshean-command-results a:hover,
.oshean-command-results a:focus-visible {
  background: var(--color-wash);
  border-color: var(--color-line);
  color: var(--color-link);
  outline: none;
}

.oshean-command-result-title {
  font-weight: 800;
}

.oshean-command-result-group {
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.oshean-template {
  background:
    radial-gradient(circle at 15% 12%, rgb(41 185 214 / 0.16), transparent 24rem),
    linear-gradient(180deg, var(--color-wash), var(--color-page) 32rem);
  min-height: 62vh;
  padding-bottom: clamp(4rem, 7vw, 6.5rem);
  padding-top: clamp(3rem, 6vw, 5.5rem);
}

.oshean-404-template.oshean-template {
  background:
    radial-gradient(ellipse 80% 70% at 65% 25%, rgb(21 94 150 / 0.7), transparent 62%),
    var(--color-ocean-950);
  color: #ffffff;
  min-height: 34rem;
  overflow: hidden;
  padding-bottom: clamp(4rem, 7vw, 5rem);
  padding-top: clamp(4rem, 8vw, 6.5rem);
  position: relative;
}

.oshean-404-template.oshean-template::before {
  background-image:
    linear-gradient(rgb(255 255 255 / 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
  inset: 0;
  opacity: 0.72;
  pointer-events: none;
  position: absolute;
}

.oshean-404-template.oshean-template::after {
  background: linear-gradient(90deg, var(--color-ocean-600), var(--color-teal-500) 55%, var(--color-leaf-500));
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
}

.oshean-404-template.oshean-template > * {
  position: relative;
  z-index: 1;
}

.oshean-error-hero,
.oshean-search-hero {
  text-align: center;
}

.oshean-error-visual {
  margin: 0 auto 1.5rem;
  max-width: 28rem;
  min-height: 8rem;
  position: relative;
}

.oshean-error-visual::before,
.oshean-error-visual::after {
  background: linear-gradient(90deg, transparent, var(--color-teal-500), var(--color-leaf-500), transparent);
  content: "";
  height: 3px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) rotate(var(--fiber-rotation, -8deg));
  width: min(100%, 26rem);
}

.oshean-error-visual::after {
  --fiber-rotation: 8deg;
  opacity: 0.55;
}

.oshean-error-code {
  color: var(--color-teal-300);
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 13vw, 7rem);
  font-weight: 800;
  line-height: 0.9;
  margin: 0;
  position: relative;
  text-shadow: 0 1px 0 rgb(255 255 255 / 0.5);
  z-index: 1;
}

.oshean-404-template .oshean-error-copy h1 {
  color: #ffffff;
  font-size: clamp(2.15rem, 5vw, 3rem);
  margin-top: 0;
}

.oshean-404-template .oshean-error-copy p {
  color: var(--color-ocean-100);
}

.oshean-404-template .oshean-error-actions .is-style-outline .wp-block-button__link {
  background: rgb(255 255 255 / 0.08);
  border-color: rgb(255 255 255 / 0.28);
  color: #ffffff;
}

.oshean-error-copy {
  margin-left: auto;
  margin-right: auto;
}

.oshean-template-search {
  margin: 1.75rem auto 0;
  max-width: 42rem;
}

.oshean-template-search .wp-block-search__inside-wrapper {
  background: var(--color-panel);
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-tile);
  overflow: hidden;
  padding: 0.25rem;
}

.oshean-template-search .wp-block-search__input {
  background: transparent;
  border: 0;
  color: var(--color-heading);
  min-height: 3rem;
  padding-left: 1rem;
}

.oshean-template-search .wp-block-search__button {
  background: var(--color-ocean-600);
  border: 0;
  border-radius: var(--radius-pill);
  color: #ffffff;
  font-weight: 800;
  margin: 0;
  padding-left: 1.35rem;
  padding-right: 1.35rem;
}

.oshean-error-actions {
  justify-content: center;
  margin-top: 1.75rem;
}

.oshean-search-results {
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.oshean-result-list {
  display: grid;
  gap: 1rem;
}

.oshean-result-card,
.oshean-no-results {
  background: var(--color-panel);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-tile);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.oshean-result-card h2 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.oshean-query-pagination {
  margin-top: 2rem;
}

.oshean-page-shell {
  background: var(--color-page);
}

.oshean-hero {
  background:
    radial-gradient(ellipse 95% 90% at 75% -10%, rgb(21 94 150 / 0.76), transparent 60%),
    linear-gradient(135deg, var(--color-ocean-950), var(--color-ocean-900) 58%, #0f6174);
  color: #ffffff;
  overflow: hidden;
  position: relative;
}

.oshean-hero::before {
  background-image:
    linear-gradient(rgb(255 255 255 / 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.05) 1px, transparent 1px),
    radial-gradient(rgb(255 255 255 / 0.12) 1px, transparent 1px);
  background-size: 44px 44px, 44px 44px, 26px 26px;
  content: "";
  inset: 0;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, black 35%, transparent 78%);
  opacity: 0.75;
  pointer-events: none;
  position: absolute;
}

.oshean-hero::after {
  background: linear-gradient(90deg, var(--color-ocean-600), var(--color-teal-500), var(--color-leaf-500));
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
}

.oshean-hero__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--wp--style--global--wide-size, 1180px);
  padding: clamp(2.35rem, 4.2vw, 3.4rem) var(--wp--style--root--padding-right, 1.5rem);
  position: relative;
  z-index: 1;
}

.oshean-hero__inner > :where(.oshean-hero__breadcrumb, .oshean-hero__eyebrow, .oshean-hero__title, .oshean-hero__lede, .oshean-hero__summary),
.oshean-page-hero__inner > :where(.oshean-page-hero__title, .oshean-page-hero__lede, .eyebrow) {
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left;
}

.oshean-hero__eyebrow,
.oshean-hero__eyebrow a {
  color: var(--color-teal-300);
}

.oshean-hero__title {
  color: #ffffff;
  font-size: clamp(2.35rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  margin: 0.35rem 0 0;
  max-width: 20ch;
}

.oshean-hero__lede,
.oshean-hero__summary {
  color: var(--color-ocean-100);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.58;
  margin-top: 0.8rem;
  max-width: 48rem;
}

.oshean-section {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--wp--style--global--wide-size, 1180px);
  padding: clamp(3rem, 6vw, 5rem) var(--wp--style--root--padding-right, 1.5rem);
}

.oshean-card-grid,
.oshean-team-grid,
.oshean-board-grid {
  display: grid;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.oshean-listing-template .oshean-section {
  max-width: 80rem;
}

.oshean-resource-toolbar {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 3.6rem;
  padding-bottom: 0.75rem;
  padding-top: 0.75rem;
  width: 100vw;
}

.oshean-resource-search {
  flex: 0 1 20rem;
  max-width: 20rem;
  min-width: min(100%, 18rem);
}

.oshean-resource-search .wp-block-search__inside-wrapper {
  background: var(--color-panel);
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-pill);
  box-sizing: border-box;
  box-shadow: inset 0 0 0 1px rgba(27, 117, 187, 0.04);
  min-height: 2rem;
  overflow: hidden;
  padding: 0;
}

.oshean-resource-search .wp-block-search__input {
  background: transparent;
  border: 0;
  color: var(--color-heading);
  font: inherit;
  font-size: 0.86rem;
  min-height: 2rem;
  padding: 0.38rem 0.75rem;
}

.oshean-resource-count {
  align-items: center;
  background: var(--color-panel);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-pill);
  box-sizing: border-box;
  color: var(--color-heading);
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 800;
  justify-content: center;
  line-height: 1;
  margin: 0;
  min-height: 1.75rem;
  padding: 0.32rem 0.58rem;
  white-space: nowrap;
}

.oshean-listing-template .oshean-card-grid {
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.oshean-team-grid {
  grid-template-columns: repeat(auto-fit, minmax(10.5rem, 1fr));
}

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

.oshean-card,
.oshean-team-card,
.oshean-board-card,
.oshean-info-card,
.oshean-wpforms-shell,
.oshean-detail-aside {
  background: var(--color-panel);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-tile);
}

.oshean-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

.oshean-card--linked {
  cursor: pointer;
  position: relative;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.oshean-card--linked:hover,
.oshean-card--linked:focus-within {
  border-color: var(--color-line-strong);
  box-shadow: var(--shadow-tile-hover);
  transform: translateY(-1px);
}

.oshean-card__overlay-link {
  border-radius: inherit;
  inset: 0;
  overflow: hidden;
  position: absolute;
  text-indent: -999rem;
  z-index: 3;
}

.oshean-card__overlay-link:focus-visible {
  outline: 3px solid var(--color-teal-500);
  outline-offset: -3px;
}

.oshean-card > :not(.oshean-card-media) {
  margin-left: clamp(1.25rem, 2vw, 1.55rem);
  margin-right: clamp(1.25rem, 2vw, 1.55rem);
}

.oshean-card > :last-child {
  margin-bottom: clamp(1.25rem, 2vw, 1.55rem);
}

.oshean-card-media {
  aspect-ratio: 16 / 9;
  background: var(--color-wash);
  display: block;
  margin: 0;
  overflow: hidden;
}

.oshean-card-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.oshean-card-media a {
  display: block;
  height: 100%;
}

.oshean-card-kicker {
  color: var(--color-link);
  font-size: 0.78rem;
  font-weight: 800;
  margin-top: 1.1rem;
  text-transform: uppercase;
}

.oshean-listing-template .oshean-card-kicker {
  align-self: flex-start;
  background: color-mix(in srgb, var(--color-teal-400) 14%, var(--color-panel));
  border-radius: var(--radius-pill);
  color: var(--color-link);
  display: inline-flex;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.35rem;
  padding: 0.35rem 0.55rem;
}

.oshean-listing-template .oshean-card-kicker a {
  color: inherit;
}

.oshean-card-title {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.25;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.oshean-member-services-audiences {
  background: var(--color-wash);
  max-width: none;
}

.oshean-member-services-audiences > * {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--wp--style--global--wide-size, 1180px);
}

.oshean-card-grid--audiences {
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.oshean-card-grid--audiences .oshean-card {
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-tile);
  min-height: 17rem;
  padding-top: 1.75rem;
}

.oshean-card-grid--audiences .oshean-card::before {
  align-items: center;
  background: linear-gradient(135deg, var(--color-teal-500), var(--color-ocean-600));
  border-radius: var(--radius-lg);
  color: #ffffff;
  content: "";
  display: flex;
  font-size: 1.35rem;
  font-weight: 800;
  height: 3rem;
  justify-content: center;
  margin: 0 clamp(1.25rem, 2vw, 1.55rem) 1rem;
  width: 3rem;
}

.oshean-card-grid--audiences .oshean-card:nth-child(1)::before {
  content: "H";
}

.oshean-card-grid--audiences .oshean-card:nth-child(2)::before {
  content: "K";
}

.oshean-card-grid--audiences .oshean-card:nth-child(3)::before {
  content: "+";
}

.oshean-card-grid--audiences .oshean-card:nth-child(4)::before {
  content: "L";
}

.oshean-card-grid--audiences .oshean-card:nth-child(5)::before {
  content: "G";
}

.oshean-card-grid--audiences .oshean-card:nth-child(6)::before {
  content: "C";
}

.oshean-card-grid--audiences .oshean-card-title {
  font-size: 1.25rem;
  line-height: 1.2;
  margin-top: 0;
}

.oshean-card-grid--audiences .oshean-card-excerpt {
  font-size: 0.94rem;
  line-height: 1.55;
}

.oshean-card-grid--audiences .oshean-card-link {
  margin-top: auto;
}

.oshean-audience-support-section,
.oshean-related-services-section {
  padding-bottom: 4rem;
  padding-top: 4rem;
}

.oshean-related-services-section {
  background: var(--color-wash);
  max-width: none;
}

.oshean-related-services-section > * {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--wp--style--global--wide-size, 1180px);
}

.oshean-audience-support-section .oshean-pattern-heading,
.oshean-related-services-section .oshean-pattern-heading {
  margin-bottom: 1.75rem;
}

.oshean-related-services-heading {
  align-items: end;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}

.oshean-related-services-heading__link {
  color: var(--color-link);
  font-size: 0.88rem;
  font-weight: 800;
  margin: 0;
}

.oshean-related-services-heading__link a {
  color: inherit;
  text-decoration: none;
}

.oshean-related-services-heading__link a::after {
  content: " ->";
}

.oshean-audience-support-section .oshean-pattern-heading__title,
.oshean-related-services-section .oshean-pattern-heading__title,
.oshean-related-services-heading .oshean-pattern-heading__title {
  font-size: clamp(1.85rem, 3vw, 2.15rem);
  margin: 0;
}

.oshean-card-grid--highlights {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.oshean-card-grid--highlights .oshean-card,
.oshean-card-grid--services .oshean-card {
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-tile);
  padding-top: 1.35rem;
}

.oshean-card-grid--highlights .oshean-card::before,
.oshean-card-grid--services .oshean-card::before {
  align-items: center;
  background: var(--color-ocean-600);
  border-radius: var(--radius-lg);
  color: #ffffff;
  content: "✓";
  display: flex;
  font-size: 1.25rem;
  font-weight: 800;
  height: 2.9rem;
  justify-content: center;
  margin: 0 clamp(1.25rem, 2vw, 1.55rem) 0.45rem;
  width: 2.9rem;
}

.oshean-card-grid--highlights .oshean-card::before {
  background: transparent;
  color: var(--color-leaf-600);
  display: block;
  height: auto;
  width: auto;
}

.oshean-card-grid--highlights .oshean-card-title {
  font-size: 1.1rem;
}

.oshean-card-grid--services .oshean-card-title {
  font-size: 1rem;
}

.oshean-card-grid--highlights .oshean-card-excerpt,
.oshean-card-grid--services .oshean-card-excerpt {
  font-size: 0.92rem;
  line-height: 1.55;
}

.oshean-listing-template .oshean-card-title {
  font-size: 1rem;
  line-height: 1.35;
  margin-top: 0.2rem;
}

.oshean-listing-template .oshean-card-excerpt {
  font-size: 0.9rem;
}

.oshean-listing-template .oshean-card-meta {
  color: var(--color-muted);
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  margin-top: 0;
}

.oshean-listing-template .oshean-card-author {
  color: var(--color-muted);
  font-size: 0.76rem;
  font-weight: 700;
  margin-top: auto;
}

.oshean-listing-template .oshean-card-author::before {
  content: "by ";
}

.oshean-card-title a,
.oshean-card a {
  color: var(--color-heading);
  text-decoration: none;
}

.oshean-card-title a:hover,
.oshean-card-title a:focus-visible,
.oshean-card a:hover,
.oshean-card a:focus-visible {
  color: var(--color-link);
}

.oshean-card-grid--benefits {
  align-items: stretch;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.oshean-card-grid--benefits .oshean-card {
  border-color: var(--color-line-strong);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-tile);
  min-height: 13.75rem;
  padding: 1.6rem;
  position: relative;
}

.oshean-card-grid--benefits .oshean-card > :not(.oshean-card-media) {
  margin-left: 0;
  margin-right: 0;
}

.oshean-card-grid--benefits .oshean-card > :last-child {
  margin-bottom: 0;
}

.oshean-card-grid--benefits .oshean-card::before {
  background: linear-gradient(135deg, var(--color-ocean-600), var(--color-teal-500));
  border-radius: 0.85rem;
  content: "";
  display: block;
  height: 3rem;
  margin-bottom: 1.4rem;
  width: 3rem;
}

.oshean-card-grid--benefits .oshean-card::after {
  align-items: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 0.25rem rgb(255 255 255 / 0.08),
    0 0 0 1px rgb(8 39 67 / 0.08);
  color: #ffffff;
  content: "";
  display: flex;
  font-size: 0.78rem;
  font-weight: 800;
  height: 1.15rem;
  left: 2.525rem;
  position: absolute;
  text-align: center;
  top: 2.525rem;
  width: 1.15rem;
}

.oshean-card-grid--benefits .oshean-benefit-card--featured {
  background:
    radial-gradient(ellipse 120% 100% at 80% -10%, rgb(21 94 150 / 0.8), transparent 60%),
    linear-gradient(rgb(255 255 255 / 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.045) 1px, transparent 1px),
    var(--color-ocean-950);
  background-size: auto, 1.5rem 1.5rem, 1.5rem 1.5rem, auto;
  border-color: color-mix(in srgb, var(--color-teal-400) 36%, transparent);
  box-shadow: var(--shadow-card-dark), 0 26px 58px -28px rgb(8 39 67 / 0.75);
  color: #ffffff;
  grid-column: span 2;
  grid-row: span 2;
  justify-content: space-between;
  min-height: 28rem;
  padding: clamp(2rem, 3vw, 2.75rem);
}

.oshean-card-grid--benefits .oshean-benefit-card--featured::before {
  background: rgb(255 255 255 / 0.08);
  border: 1px solid rgb(255 255 255 / 0.16);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.08);
}

.oshean-card-grid--benefits .oshean-benefit-card--featured::after {
  border-color: #ffffff;
  content: "\25CE";
  left: calc(clamp(2rem, 3vw, 2.75rem) + 0.925rem);
  top: calc(clamp(2rem, 3vw, 2.75rem) + 0.925rem);
}

.oshean-card-grid--benefits .oshean-card:nth-child(2)::after {
  content: "\2696";
}

.oshean-card-grid--benefits .oshean-card:nth-child(3)::after {
  content: "\2713";
}

.oshean-card-grid--benefits .oshean-card:nth-child(4)::after {
  content: "\21C4";
}

.oshean-card-grid--benefits .oshean-card:nth-child(5)::after {
  content: "\25CC";
}

.oshean-card-grid--benefits .oshean-card:nth-child(6)::after {
  content: "\260E";
}

.oshean-card-grid--benefits .oshean-card-title {
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  margin: 0 0 0.8rem;
}

.oshean-card-grid--benefits .oshean-benefit-card--featured .oshean-card-title {
  color: #ffffff;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  max-width: 36rem;
}

.oshean-card-grid--benefits .oshean-card-excerpt {
  font-size: 0.95rem;
  line-height: 1.58;
  margin: 0;
}

.oshean-card-grid--benefits .oshean-benefit-card--featured .oshean-card-excerpt {
  color: var(--color-ocean-100);
  font-size: 1rem;
  max-width: 38rem;
}

.oshean-card-grid--benefits .oshean-card-link {
  margin-top: auto;
  padding-top: 1.1rem;
}

.oshean-card-grid--benefits .oshean-card-link a {
  align-items: center;
  background: linear-gradient(135deg, var(--color-teal-400), var(--color-leaf-400));
  border-radius: var(--radius-pill);
  color: var(--color-ocean-950);
  display: inline-flex;
  font-weight: 800;
  gap: 0.45rem;
  padding: 0.8rem 1.15rem;
}

.oshean-card-grid--benefits .oshean-card-link a:hover,
.oshean-card-grid--benefits .oshean-card-link a:focus-visible {
  color: var(--color-ocean-950);
  filter: brightness(1.04);
}

.oshean-benefits-closing {
  background: var(--color-wash);
  box-shadow: 0 0 0 100vmax var(--color-wash);
  clip-path: inset(0 -100vmax);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}

.oshean-benefits-closing__copy {
  margin-left: auto;
  margin-right: auto;
  max-width: 48rem;
  text-align: center;
}

.oshean-benefits-closing__actions {
  justify-content: center;
}

.oshean-card-meta,
.oshean-card-excerpt,
.oshean-event-meta,
.oshean-team-title,
.oshean-team-org {
  color: var(--color-muted);
}

.oshean-card-excerpt {
  line-height: 1.65;
}

.oshean-bound-meta--oshean_date_display:empty,
.oshean-bound-meta--oshean_time_display:empty,
.oshean-bound-meta--oshean_venue:empty,
.oshean-bound-meta--oshean_location:empty,
.oshean-bound-meta--oshean_short_name:empty,
.oshean-bound-meta--oshean_role:empty,
.oshean-bound-meta--oshean_organization:empty,
.oshean-bound-meta--oshean_tagline:empty {
  display: none;
}

.oshean-event-meta {
  border-top: 1px solid var(--color-line);
  font-size: 0.9rem;
  margin-top: auto;
  padding-top: 1rem;
}

.oshean-detail-layout,
.oshean-form-layout {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.oshean-form-layout {
  align-items: start;
  margin-inline: auto;
  max-width: min(80rem, calc(100vw - 2rem));
  width: min(80rem, calc(100vw - 2rem));
}

.oshean-detail-main,
.oshean-form-main {
  min-width: 0;
}

.oshean-form-layout > *,
.oshean-form-main > *,
.oshean-form-main .wp-block-post-content,
.oshean-form-main .oshean-wpforms-shell,
.oshean-membership-template .oshean-form-layout > .wp-block-post-content,
.oshean-membership-template .oshean-wpforms-shell {
  max-width: none !important;
  min-width: 0;
  width: 100%;
}

.oshean-detail-aside,
.oshean-info-card,
.oshean-wpforms-shell {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.oshean-info-card--dark {
  background:
    radial-gradient(circle at 12% 0%, rgb(94 208 230 / 0.16), transparent 15rem),
    linear-gradient(135deg, var(--color-ocean-900), var(--color-ocean-700));
  border-color: color-mix(in srgb, var(--color-teal-400) 38%, var(--color-ocean-800));
  box-shadow: var(--shadow-card-dark);
  color: #ffffff;
}

.oshean-info-card--dark :where(h2, p, a) {
  color: inherit;
}

.oshean-info-card--dark .wp-block-buttons {
  margin-top: 1.15rem;
}

.oshean-wpforms-shell {
  --oshean-form-required: #b42318;
  color: var(--color-copy);
}

.oshean-wpforms-shell .wpforms-container,
.oshean-wpforms-shell .wpforms-form,
.oshean-wpforms-shell .wpforms-field-container,
.oshean-wpforms-shell .wpforms-field,
.oshean-wpforms-shell .wpforms-field-row,
.oshean-wpforms-shell .wpforms-field-row-block,
.oshean-wpforms-shell .wpforms-field-large,
.oshean-wpforms-shell .wpforms-field-medium,
.oshean-wpforms-shell .wpforms-field-small {
  max-width: none !important;
}

.oshean-wpforms-shell .wpforms-container {
  margin: 0 !important;
  width: 100% !important;
}

.oshean-wpforms-shell .wpforms-field {
  padding: 0 0 1.15rem !important;
}

.oshean-wpforms-shell .wpforms-form,
.oshean-wpforms-shell .wpforms-field,
.oshean-wpforms-shell .wpforms-field-label {
  color: var(--color-heading) !important;
}

.oshean-wpforms-shell .wpforms-field-label {
  font-size: 0.875rem !important;
  font-weight: 800 !important;
  margin: 0 0 0.375rem !important;
}

.oshean-wpforms-shell .wpforms-required-label {
  color: var(--oshean-form-required) !important;
}

.oshean-wpforms-shell .wpforms-field-sublabel,
.oshean-wpforms-shell .wpforms-field-description,
.oshean-wpforms-shell .wpforms-field-limit-text {
  color: var(--color-muted) !important;
}

.oshean-wpforms-shell :where(input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="number"], textarea, select) {
  background: var(--color-panel) !important;
  border: 1px solid var(--color-line-strong) !important;
  border-radius: 0.75rem !important;
  box-shadow: none !important;
  color: var(--color-heading) !important;
  font-size: 15px !important;
  min-height: 3.05rem;
  padding: 0.85rem 1rem !important;
  width: 100% !important;
}

.oshean-wpforms-shell textarea {
  min-height: 9rem;
}

.oshean-wpforms-shell .wpforms-submit {
  align-items: center !important;
  border-radius: var(--radius-pill) !important;
  display: inline-flex !important;
  font-weight: 800 !important;
  justify-content: center !important;
  min-height: 0 !important;
  padding: 0.85rem 2rem !important;
}

.oshean-service-toc h2,
.oshean-detail-aside h2,
.oshean-info-card h2 {
  font-size: 1rem;
  margin-top: 0;
}

.oshean-service-toc ul {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.oshean-service-toc li + li {
  margin-top: 0.55rem;
}

.oshean-service-toc a {
  color: var(--color-link);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.oshean-button-stack {
  align-items: stretch;
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.oshean-team-template .oshean-hero__breadcrumb {
  color: var(--color-ocean-100);
  font-size: 0.78rem;
  font-weight: 800;
  margin: 0 0 1.2rem;
}

.oshean-team-template .oshean-hero__breadcrumb a {
  color: var(--color-teal-300);
  text-decoration: none;
}

.oshean-team-tabs {
  background: var(--color-panel);
  border-bottom: 1px solid var(--color-line);
  gap: 0.6rem;
  margin: 0;
  max-width: none;
  padding: 0.85rem max(1.5rem, calc((100vw - 80rem) / 2));
}

.oshean-team-tabs .wp-block-button__link {
  background: var(--color-wash);
  border-color: transparent;
  box-shadow: none;
  color: var(--color-link);
  font-size: 0.78rem;
  padding: 0.45rem 0.85rem;
}

.oshean-team-template .oshean-team-section {
  max-width: 80rem;
  padding-bottom: clamp(2.35rem, 4.5vw, 3.8rem);
  padding-top: clamp(2.35rem, 4.5vw, 3.8rem);
}

.oshean-team-template .oshean-team-section + .oshean-team-section:not(.oshean-team-section--board) {
  padding-top: 0.35rem;
}

.oshean-team-section > .wp-block-query {
  max-width: none;
  width: 100%;
}

.oshean-team-section > .eyebrow {
  color: var(--color-teal-text);
  margin: 0 0 0.7rem;
}

.oshean-team-section > h2 {
  font-size: clamp(1.7rem, 3vw, 1.9rem);
  margin: 0 0 1.15rem;
}

.oshean-team-query .oshean-team-grid {
  align-items: stretch;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.oshean-team-grid > *,
.oshean-board-grid > * {
  display: flex;
  min-width: 0;
}

.oshean-team-card,
.oshean-board-card {
  padding: 1.1rem;
  text-align: center;
}

.oshean-team-card {
  align-items: center;
  border-color: color-mix(in srgb, var(--color-line-strong) 72%, transparent);
  border-radius: 1rem;
  box-shadow: 0 15px 30px -24px rgb(8 39 67 / 0.45);
  display: flex;
  flex-direction: column;
  height: 12.75rem;
  min-height: 12.75rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.oshean-team-card::before {
  background:
    radial-gradient(circle at 20% 0%, rgb(94 208 230 / 0.18), transparent 9rem),
    linear-gradient(135deg, var(--color-ocean-950), var(--color-ocean-600));
  content: "";
  display: block;
  flex: 0 0 auto;
  height: 5.9rem;
  margin: -1.1rem -1.1rem 0;
  width: calc(100% + 2.2rem);
}

figure.wp-block-post-featured-image.oshean-team-avatar,
.oshean-team-avatar {
  align-items: center;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--color-ocean-950), var(--color-ocean-600), var(--color-teal-500));
  border: 4px solid var(--color-panel);
  border-radius: 999px;
  display: flex;
  flex: 0 0 auto;
  height: 4.75rem;
  justify-content: center;
  margin: -5.45rem auto 1.05rem;
  max-width: 4.75rem;
  overflow: hidden;
  position: relative;
  width: 4.75rem;
}

.oshean-team-avatar img {
  height: 100%;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

.oshean-team-avatar--fallback span {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
}

.oshean-team-name {
  font-size: 1.05rem;
  line-height: 1.25;
  margin: 0;
}

.oshean-team-title,
.oshean-team-role,
.oshean-team-org {
  font-size: 0.82rem;
  line-height: 1.35;
  margin: 0.35rem 0 0;
}

.oshean-team-role {
  color: var(--color-link);
  font-weight: 800;
}

.oshean-team-title {
  min-height: 0;
}

.oshean-team-section--board {
  background: var(--color-wash);
  box-sizing: border-box;
  left: 50%;
  margin-left: 0;
  margin-right: 0;
  max-width: none !important;
  padding-left: max(1.5rem, calc((100vw - 74rem) / 2));
  padding-right: max(1.5rem, calc((100vw - 74rem) / 2));
  position: relative;
  text-align: center;
  transform: translateX(-50%);
  width: 100vw !important;
}

.oshean-team-section--board > p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
  max-width: 44rem;
}

.oshean-board-query {
  margin: 2.2rem auto 0;
  max-width: 74rem;
  width: 100%;
}

.oshean-board-query .oshean-board-grid {
  align-items: stretch;
  gap: 1.35rem;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  justify-content: center;
}

.oshean-board-card {
  border-radius: 0.85rem;
  border-top: 3px solid var(--color-teal-400);
  box-shadow: 0 16px 34px -26px rgb(8 39 67 / 0.45);
  height: 9.8rem;
  min-height: 9.8rem;
  overflow: hidden;
  padding: 1.35rem 1.5rem 1.25rem;
  position: relative;
  text-align: left;
  width: 100%;
}

.oshean-board-card .oshean-team-name {
  font-size: 1rem;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none;
  text-align: left;
  width: 100%;
}

.oshean-board-card:has(.oshean-team-role:not(:empty)) .oshean-team-name {
  margin-right: 0;
  max-width: calc(100% - 10.25rem);
  width: calc(100% - 10.25rem);
}

.oshean-board-card .oshean-team-role:not(:empty) {
  /* Tinted chip + dark leaf text is the WCAG-AA pairing (5.4:1, axe-verified
     in the v4 design system); white on leaf-500 fails at 2.04:1. */
  background: rgb(141 198 63 / 0.18);
  border-radius: var(--radius-pill);
  color: var(--color-leaf-text);
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1;
  margin: 0;
  padding: 0.42rem 0.62rem;
  position: absolute;
  right: 1rem;
  text-transform: uppercase;
  top: 1rem;
}

.oshean-board-card .oshean-team-role:not(:empty) + .oshean-team-title {
  margin-top: 0.55rem;
}

.oshean-team-cta {
  padding-top: clamp(3rem, 6vw, 5rem);
}

.oshean-form-aside {
  display: grid;
  gap: 1rem;
}

.oshean-info-card a {
  color: var(--color-link);
  font-weight: 700;
}

.oshean-membership-intro {
  background: var(--color-panel);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-tile);
  margin-bottom: 0;
  padding: clamp(1.5rem, 3vw, 2rem);
}

.oshean-membership-intro h2,
.oshean-membership-form-heading h2 {
  margin-top: 0.55rem;
}

.oshean-membership-intro h2 {
  font-size: clamp(1.5rem, 2vw, 1.65rem);
  line-height: 1.18;
}

.oshean-membership-form-heading h2 {
  font-size: clamp(1.875rem, 3vw, 2.05rem);
  line-height: 1.15;
}

.oshean-membership-intro p:not(.eyebrow),
.oshean-membership-form-heading p:not(.eyebrow) {
  color: var(--color-copy);
  font-size: 0.95rem;
  line-height: 1.7;
}

.oshean-membership-intro ul {
  columns: auto;
}

.oshean-membership-checklist {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.oshean-membership-checklist li {
  align-items: center;
  background: var(--color-wash);
  border-radius: var(--radius-xl);
  color: var(--color-heading);
  display: flex;
  font-weight: 800;
  gap: 0.75rem;
  line-height: 1.35;
  min-height: 3rem;
  padding: 0.75rem 1rem;
}

.oshean-membership-checklist li::before {
  color: var(--color-teal-text);
  content: "\2713";
  flex: 0 0 auto;
  font-size: 1rem;
  font-weight: 800;
}

.oshean-membership-next {
  background:
    radial-gradient(circle at 15% 0%, rgb(94 208 230 / 0.16), transparent 14rem),
    linear-gradient(135deg, var(--color-ocean-950), var(--color-ocean-800));
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-tile);
  color: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
}

.oshean-membership-next .eyebrow {
  color: var(--color-teal-300);
}

.oshean-membership-step {
  display: grid;
  gap: 1rem;
  grid-template-columns: auto minmax(0, 1fr);
  margin-top: 1.25rem;
}

.oshean-membership-step__number {
  align-items: center;
  background: var(--color-panel);
  border-radius: var(--radius-pill);
  color: var(--color-heading);
  display: flex;
  font-size: 0.85rem;
  font-weight: 800;
  height: 2.25rem;
  justify-content: center;
  line-height: 1;
  margin: 0;
  width: 2.25rem;
}

.oshean-membership-step h3 {
  color: #ffffff;
  font-size: 1.05rem;
  margin: 0;
}

.oshean-membership-step p:not(.oshean-membership-step__number) {
  color: var(--color-ocean-100);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0.25rem 0 0;
}

.oshean-membership-links {
  display: grid;
  gap: 0.85rem;
}

.oshean-membership-link-card {
  margin: 0;
}

.oshean-membership-link-card a {
  background: var(--color-panel);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-tile);
  color: var(--color-copy);
  display: block;
  padding: 1.25rem;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.oshean-membership-link-card a:hover,
.oshean-membership-link-card a:focus-visible {
  border-color: var(--color-line-strong);
  box-shadow: var(--shadow-tile-hover);
  transform: translateY(-2px);
}

.oshean-membership-link-card strong,
.oshean-membership-link-card span {
  display: block;
}

.oshean-membership-link-card strong {
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
}

.oshean-membership-link-card strong::before {
  color: var(--color-link);
  content: "\2713";
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  margin-right: 0.6rem;
}

.oshean-membership-link-card span {
  color: var(--color-copy);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.55;
  margin-top: 0.45rem;
}

.oshean-membership-form-panel {
  min-width: 0;
}

.oshean-membership-form-heading {
  margin-bottom: 1.25rem;
}

.oshean-membership-template .oshean-wpforms-shell .wpforms-field-container {
  display: grid;
  gap: 0 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.oshean-membership-template .oshean-wpforms-shell .wpforms-field {
  min-width: 0;
}

.oshean-membership-template .oshean-wpforms-shell .wpforms-field[id$="-field_1-container"],
.oshean-membership-template .oshean-wpforms-shell .wpforms-field[id$="-field_4-container"],
.oshean-membership-template .oshean-wpforms-shell .wpforms-field[id$="-field_7-container"],
.oshean-membership-template .oshean-wpforms-shell .wpforms-field[id$="-field_8-container"] {
  grid-column: 1 / -1;
}

.oshean-membership-template .oshean-wpforms-shell .wpforms-field[id$="-field_7-container"] textarea {
  min-height: 3.05rem;
}

.oshean-membership-template .oshean-wpforms-shell .wpforms-field[id$="-field_8-container"] textarea {
  min-height: 7.5rem;
}

.oshean-featured-media {
  margin-bottom: 2rem;
}

.oshean-post-meta {
  color: var(--color-ocean-100);
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 860px) {
  .oshean-detail-layout {
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 22rem);
  }

  .oshean-form-layout {
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 24rem);
  }

  .oshean-membership-template .oshean-form-layout {
    grid-template-columns: 1fr;
  }

  .oshean-membership-template .oshean-form-layout > .wp-block-post-content {
    align-items: start;
    display: grid;
    gap: clamp(1.5rem, 4vw, 3rem);
    grid-template-columns: minmax(18rem, 0.86fr) minmax(0, 1.14fr);
  }

  .oshean-membership-template .oshean-membership-intro {
    grid-column: 1;
    margin-bottom: 0;
  }

  .oshean-membership-template .oshean-membership-next,
  .oshean-membership-template .oshean-membership-links {
    grid-column: 1;
  }

  .oshean-membership-template .oshean-membership-form-panel {
    grid-column: 2;
    grid-row: 1 / span 3;
  }

  .oshean-membership-template .oshean-wpforms-shell {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .oshean-detail-aside {
    align-self: start;
    position: sticky;
    top: 6rem;
  }
}

@media (max-width: 640px) {
  .oshean-about-intro {
    grid-template-columns: 1fr;
  }

  .oshean-about-intro__image img {
    aspect-ratio: 1 / 0.82;
  }

  .oshean-form-layout {
    max-width: calc(100vw - 1rem);
    width: calc(100vw - 1rem);
  }

  .oshean-detail-aside,
  .oshean-info-card,
  .oshean-wpforms-shell {
    padding: 1rem;
  }

  .oshean-membership-links {
    grid-template-columns: 1fr;
  }
}

.oshean-membership-hero__actions {
  gap: 0.85rem;
  margin-top: 2rem;
}

.oshean-membership-fit {
  background: var(--color-wash);
  border-block: 1px solid var(--color-line);
  box-shadow: 0 0 0 100vmax var(--color-wash);
  clip-path: inset(0 -100vmax);
}

.oshean-membership-audience-links {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: clamp(1.75rem, 4vw, 2.5rem) 0 0;
  padding: 0;
}

.oshean-membership-audience-links li {
  margin: 0;
}

.oshean-membership-audience-links a {
  align-items: center;
  background: var(--color-panel);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-tile);
  color: var(--color-heading);
  display: flex;
  font-weight: 800;
  gap: 1rem;
  justify-content: space-between;
  min-height: 3.5rem;
  padding: 0.8rem 1rem;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.oshean-membership-audience-links a:hover,
.oshean-membership-audience-links a:focus-visible {
  border-color: var(--color-teal-500);
  box-shadow: var(--shadow-tile-hover);
  color: var(--color-link-strong);
  transform: translateY(-0.1rem);
}

.oshean-membership-audience-links a span:last-child {
  color: var(--color-teal-text);
  font-size: 1.15rem;
}

.oshean-benefits-grid-section .oshean-pattern-heading,
.oshean-membership-pathway .oshean-pattern-heading,
.oshean-membership-process .oshean-pattern-heading,
.oshean-membership-faq .oshean-pattern-heading {
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.oshean-card-grid--membership-pathway {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.oshean-card-grid--membership-pathway .oshean-card {
  min-height: 14rem;
}

.oshean-card-grid--membership-pathway .oshean-card::after {
  color: var(--color-teal-text);
  content: "\2192";
  font-size: 1.35rem;
  font-weight: 800;
  margin-top: auto;
}

.oshean-membership-process .oshean-membership-next {
  margin: 0 auto;
  max-width: 70rem;
}

@media (min-width: 860px) {
  .oshean-membership-process .oshean-membership-next {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .oshean-membership-process .oshean-membership-next > .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .oshean-membership-process .oshean-membership-step {
    align-content: start;
    background: rgb(255 255 255 / 0.06);
    border: 1px solid rgb(255 255 255 / 0.1);
    border-radius: var(--radius-xl);
    margin-top: 0;
    padding: 1rem;
  }
}

@media (max-width: 859px) {
  .oshean-membership-audience-links,
  .oshean-card-grid--membership-pathway {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .oshean-membership-audience-links,
  .oshean-card-grid--membership-pathway {
    grid-template-columns: 1fr;
  }

  .oshean-membership-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .oshean-membership-hero__actions .wp-block-button,
  .oshean-membership-hero__actions .wp-block-button__link {
    width: 100%;
  }
}

.oshean-site-footer {
  background: var(--color-ocean-950);
  color: #ffffff;
  overflow: hidden;
}

.oshean-site-footer__inner {
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
}

.oshean-site-footer .brand-rule {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.oshean-footer-grid {
  gap: clamp(1.5rem, 4vw, 3rem);
}

.oshean-site-footer h2,
.oshean-site-footer p,
.oshean-site-footer li,
.oshean-site-footer a {
  color: inherit;
}

.oshean-footer-description,
.oshean-footer-contact,
.oshean-footer-policy-row {
  color: var(--color-ocean-100);
}

.oshean-footer-contact__heading,
.oshean-footer-column-title {
  color: var(--color-teal-300);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 1.25rem 0 0.5rem;
  text-transform: uppercase;
}

.oshean-footer-contact__heading {
  font-size: 0.8125rem;
  font-weight: 600;
}

.oshean-footer-description {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.65;
}

.oshean-footer-contact {
  font-size: 0.875rem;
  line-height: 1.6;
}

.oshean-footer-links ul {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
}

.oshean-footer-links li + li {
  margin-top: 0.55rem;
}

.oshean-site-footer a {
  font-weight: inherit;
  text-decoration: none;
}

.oshean-footer-links a {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25;
}

.oshean-footer-links a[href*="portal.oshean.org"] {
  font-weight: 600;
}

.oshean-site-footer a:hover,
.oshean-site-footer a:focus-visible {
  color: var(--color-teal-300);
}

.oshean-footer-socials {
  margin-top: 1.35rem;
}

.oshean-footer-policy-row {
  border-top: 1px solid rgb(255 255 255 / 0.12);
  font-size: 0.75rem;
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 3rem);
  padding-top: 1.25rem;
}

@media (max-width: 1400px) {
  .oshean-header-main__inner {
    gap: 0.85rem;
  }

  .oshean-primary-navigation .wp-block-navigation-item__content {
    font-size: 0.88rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

}

@media (max-width: 1120px) {
  .oshean-header-utility__inner {
    justify-content: center;
    min-height: 2.2rem;
    padding-bottom: 0.35rem;
    padding-top: 0.35rem;
  }

  .oshean-header-utility__support {
    display: none;
  }

  .oshean-utility-actions {
    justify-content: center;
    margin-left: 0;
    width: 100%;
  }

  .oshean-header-main__inner {
    flex-wrap: wrap;
    min-height: auto;
  }

  .oshean-primary-navigation {
    flex: 1 1 auto;
    order: 3;
    width: 100%;
  }

  .oshean-primary-navigation .wp-block-navigation__responsive-container-open {
    border: 1px solid var(--color-line-strong);
    border-radius: var(--radius-pill);
    color: var(--color-link);
    padding: 0.65rem 0.85rem;
  }

  .oshean-primary-navigation.wp-block-navigation:not(.has-background) .wp-block-navigation__responsive-container.is-menu-open:not(.disable-default-overlay) {
    background: var(--color-panel) !important;
    background-color: var(--color-panel) !important;
    color: var(--color-copy);
    padding: 1.25rem;
  }

  .oshean-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
    align-items: stretch;
    gap: 0.85rem;
    padding-top: 3rem;
    width: 100%;
  }

  .oshean-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
    font-size: 1rem;
    margin: 0;
    width: 100%;
  }

  .oshean-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container,
  .oshean-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-page-list {
    align-items: stretch;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: flex-start;
    width: 100%;
  }

  .oshean-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item {
    align-items: stretch;
    display: flex;
    flex-direction: column;
    margin: 0;
    width: 100%;
  }

  .oshean-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container {
    background: transparent !important;
    border: 0;
    box-shadow: none;
    display: flex;
    gap: 0.2rem;
    height: auto;
    margin: 0.35rem 0 0;
    min-width: 0;
    opacity: 1;
    padding: 0 0 0 1rem;
    position: static;
    visibility: visible;
    width: 100%;
  }

  .oshean-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
    background: transparent;
    border-radius: 0.55rem;
    padding: 0.6rem 0.75rem;
  }

  .oshean-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close {
    color: var(--color-link);
  }

  .oshean-header-actions {
    margin-left: auto;
  }
}

@media (max-width: 720px) {
  .oshean-header-main__inner {
    align-items: center;
  }

  .oshean-header-logo img {
    max-width: 11.25rem;
  }

  .oshean-header-actions {
    gap: 0.35rem;
  }

  .oshean-member-link,
  .oshean-command-trigger__label {
    display: none;
  }

  .oshean-command-trigger {
    min-width: 2.75rem;
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .oshean-template-search .wp-block-search__inside-wrapper {
    border-radius: 1rem;
    display: grid;
    gap: 0.5rem;
    padding: 0.55rem;
  }

  .oshean-template-search .wp-block-search__button {
    min-height: 2.75rem;
    width: 100%;
  }

  .oshean-command-palette-shell .oshean-command-dialog {
    padding-top: 1rem;
  }

  .oshean-command-palette-shell .oshean-command-panel input {
    margin-right: 0;
    width: 100%;
  }

  .oshean-command-palette-shell .oshean-command-close {
    position: static;
    margin-bottom: 0.75rem;
  }

  .oshean-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .oshean-footer-brand {
    flex-basis: auto !important;
  }
}

@media (max-width: 520px) {
  .oshean-utility-actions {
    gap: 0.75rem;
  }

  .oshean-utility-navigation {
    column-gap: 0.75rem;
  }
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.glass {
  background: rgb(255 255 255 / 0.08);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.14);
}

.text-gradient {
  background: linear-gradient(92deg, var(--color-teal-300), var(--color-teal-400) 40%, var(--color-leaf-400));
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

.brand-rule {
  background: linear-gradient(90deg, var(--color-ocean-600), var(--color-teal-500) 55%, var(--color-leaf-500));
  border-radius: var(--radius-pill);
  height: 3px;
}

.node-field {
  background-image: radial-gradient(rgb(255 255 255 / 0.14) 1px, transparent 1px);
  background-size: 26px 26px;
}

.grid-fade {
  background-image:
    linear-gradient(rgb(255 255 255 / 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, black 35%, transparent 78%);
  mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, black 35%, transparent 78%);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rise-in {
  animation: rise-in 0.55s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s cubic-bezier(0.2, 0.7, 0.3, 1), transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

.marquee-track {
  animation: marquee 48s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes dash-flow {
  to {
    stroke-dashoffset: -240;
  }
}

.viz-flow {
  animation: dash-flow 7s linear infinite;
  stroke-dasharray: 10 110;
}

@keyframes node-pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.45);
  }
}

@keyframes oshean-beacon-pulse {
  0% {
    opacity: 0.68;
    transform: translate(-50%, -50%) scale(0.9);
  }
  70% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.85);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.85);
  }
}

@keyframes oshean-beacon-core {
  0%,
  100% {
    transform: scale(0.96);
  }
  50% {
    transform: scale(1.18);
  }
}

.viz-node {
  animation: node-pulse 3.6s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

@keyframes ring-pulse {
  0% {
    opacity: 0.7;
    transform: scale(0.6);
  }
  100% {
    opacity: 0;
    transform: scale(2.1);
  }
}

.viz-ring {
  animation: ring-pulse 3.6s ease-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

@keyframes float-slow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.float-slow {
  animation: float-slow 9s ease-in-out infinite;
}

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

.viz-spin {
  animation: viz-spin 90s linear infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.prose-oshean {
  max-width: 72ch;
}

.prose-oshean p {
  color: var(--color-copy);
  line-height: 1.75;
  margin-top: 1rem;
}

.prose-oshean h2 {
  color: var(--color-heading);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.3;
  margin-top: 2.5rem;
  scroll-margin-top: 7rem;
}

.prose-oshean h2::after {
  background: linear-gradient(90deg, var(--color-teal-500), var(--color-leaf-500));
  border-radius: var(--radius-pill);
  content: "";
  display: block;
  height: 3px;
  margin-top: 0.5rem;
  width: 2.75rem;
}

.prose-oshean h3,
.prose-oshean h4 {
  color: var(--color-heading);
  font-weight: 700;
}

.prose-oshean h3 {
  font-size: 1.2rem;
  margin-top: 1.85rem;
  scroll-margin-top: 7rem;
}

.prose-oshean h4 {
  font-size: 1.05rem;
  margin-top: 1.5rem;
}

.prose-oshean ul {
  list-style: none;
  margin-top: 1rem;
  padding-left: 1.25rem;
}

.prose-oshean li {
  color: var(--color-copy);
  line-height: 1.65;
  margin-top: 0.5rem;
  padding-left: 1.1rem;
  position: relative;
}

.prose-oshean li::before {
  background: linear-gradient(135deg, var(--color-teal-500), var(--color-leaf-500));
  border-radius: var(--radius-pill);
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  top: 0.62em;
  width: 7px;
}

.prose-oshean a {
  color: var(--color-link);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgb(27 117 187 / 0.35);
  text-underline-offset: 3px;
}

.prose-oshean a:hover {
  text-decoration-color: var(--color-ocean-600);
}

.prose-oshean blockquote {
  background: var(--color-wash);
  border-left: none;
  border-radius: var(--radius-2xl);
  color: var(--color-copy);
  font-style: italic;
  margin-top: 1.5rem;
  overflow: hidden;
  padding: 1.25rem 1.5rem 1.25rem 1.75rem;
  position: relative;
}

.prose-oshean blockquote::before {
  background: linear-gradient(180deg, var(--color-teal-500), var(--color-leaf-500));
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  width: 4px;
}

.prose-oshean img {
  background: var(--color-panel);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-tile);
  margin-top: 1.5rem;
}

.oshean-front-page {
  background: var(--color-page);
  margin-block-start: 0;
}

.oshean-front-page > * {
  margin-block-start: 0;
}

.oshean-pattern-heading {
  margin-left: auto;
  margin-right: auto;
  max-width: 46rem;
  text-align: center;
}

.oshean-pattern-heading--left {
  margin-left: 0;
  text-align: left;
}

.oshean-pattern-heading .eyebrow,
.oshean-pattern-heading__title,
.oshean-pattern-heading__intro {
  margin-bottom: 0;
  margin-top: 0;
}

.oshean-pattern-heading__title {
  font-size: 2.35rem;
}

.oshean-pattern-heading__intro {
  color: var(--color-copy);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 1rem;
}

.oshean-page-hero,
.oshean-home-hero,
.oshean-network-viz-band {
  background:
    radial-gradient(ellipse 95% 90% at 75% -10%, rgb(21 94 150 / 0.76), transparent 60%),
    linear-gradient(135deg, var(--color-ocean-950), var(--color-ocean-900) 58%, #0f6174);
  color: #ffffff;
  overflow: hidden;
  position: relative;
}

.oshean-page-hero::before,
.oshean-home-hero::before,
.oshean-network-viz-band::before {
  background-image:
    linear-gradient(rgb(255 255 255 / 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.05) 1px, transparent 1px),
    radial-gradient(rgb(255 255 255 / 0.12) 1px, transparent 1px);
  background-position: 0 0, 0 0, 0 0;
  background-size: 44px 44px, 44px 44px, 26px 26px;
  content: "";
  inset: 0;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, black 35%, transparent 78%);
  opacity: 0.75;
  pointer-events: none;
  position: absolute;
}

.oshean-page-hero::after,
.oshean-home-hero::after,
.oshean-network-viz-band::after,
.oshean-cta-band__inner::after,
.oshean-newsletter-feature-card::after {
  background: radial-gradient(circle, rgb(41 185 214 / 0.2), transparent 62%);
  content: "";
  height: 24rem;
  pointer-events: none;
  position: absolute;
  right: -8rem;
  top: -8rem;
  width: 24rem;
}

.oshean-page-hero--security::after {
  background: radial-gradient(circle, rgb(141 198 63 / 0.24), transparent 62%);
}

.oshean-page-hero--cloud::after {
  background: radial-gradient(circle, rgb(94 208 230 / 0.24), transparent 62%);
}

.oshean-home-hero {
  /* Ambient darkening behind the map: a soft edgeless vignette centered on
     the map area, with the teal bloom calmed — never a panel or box. */
  background:
    radial-gradient(ellipse 64% 92% at 80% 46%, rgb(4 16 27 / 0.6), transparent 72%),
    linear-gradient(90deg, rgb(6 21 34 / 0.38), transparent 42%, rgb(6 21 34 / 0.4)),
    radial-gradient(ellipse 90% 82% at 78% 4%, rgb(21 94 150 / 0.4), transparent 63%),
    linear-gradient(135deg, #061522 0%, #092139 58%, #09384a 100%);
}

.oshean-network-viz-band {
  background:
    radial-gradient(ellipse 86% 84% at 80% 6%, rgb(21 94 150 / 0.44), transparent 66%),
    linear-gradient(135deg, #061522 0%, #082036 58%, #0a3e50 100%);
}

.oshean-page-hero__inner,
.oshean-home-hero__inner,
.oshean-network-viz-band__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 80rem;
  position: relative;
  z-index: 1;
}

.oshean-page-hero__inner {
  padding: clamp(1.9rem, 3.3vw, 2.75rem) 1.5rem;
}

.oshean-page-hero h1,
.oshean-home-hero h1,
.oshean-network-viz-band h2,
.oshean-cta-band h2,
.oshean-bento-benefits h2,
.oshean-newsletter-feature-card h2,
.oshean-anniversary-card h2 {
  color: #ffffff;
}

.oshean-page-hero__title {
  font-size: clamp(2.05rem, 3.6vw, 2.75rem);
  margin: 0.35rem 0 0;
  max-width: 22ch;
  text-wrap: balance;
}

.oshean-page-hero__lede {
  color: var(--color-ocean-100);
  font-size: clamp(1rem, 1.3vw, 1.06rem);
  line-height: 1.5;
  margin-top: 0.7rem;
  max-width: 44rem;
}

.oshean-page-hero__rule {
  border-radius: 0;
  position: relative;
  z-index: 1;
}

.oshean-home-hero__inner {
  align-items: center;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
  padding: 5rem 1.5rem 7rem;
}

.oshean-home-hero__badge {
  align-items: center;
  background: rgb(255 255 255 / 0.1);
  border: 1px solid rgb(255 255 255 / 0.15);
  border-radius: var(--radius-pill);
  color: var(--color-teal-300);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 800;
  gap: 0.55rem;
  margin: 0;
  padding: 0.4rem 0.9rem;
  position: relative;
}

.oshean-home-hero__badge::before {
  animation: oshean-beacon-core 2.4s ease-in-out infinite;
  background: var(--color-leaf-500);
  border-radius: var(--radius-pill);
  box-shadow: 0 0 0 6px rgb(165 214 94 / 0.14);
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  height: 0.55rem;
  position: relative;
  width: 0.55rem;
  z-index: 1;
}

.oshean-home-hero__badge::after {
  animation: oshean-beacon-pulse 2.4s ease-out infinite;
  background: rgb(165 214 94 / 0.35);
  border-radius: var(--radius-pill);
  content: "";
  height: 0.55rem;
  left: 1.18rem;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.55rem;
}

.oshean-home-hero__title {
  color: #ffffff;
  font-size: 3.8rem;
  line-height: 1.06;
  margin: 1.4rem 0 0;
  max-width: 13ch;
}

.oshean-home-hero__lede {
  color: var(--color-ocean-100);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-top: 1.35rem;
  max-width: 43rem;
}

.oshean-home-hero__actions,
.oshean-cta-band__actions,
.oshean-network-viz-band__actions,
.oshean-newsletter-card__actions {
  gap: 1rem;
  margin-top: 2rem;
}

.oshean-home-hero__pills {
  margin-top: 2rem;
}

.oshean-home-hero__pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
}

.oshean-home-hero__pill-row a {
  align-items: center;
  background: rgb(255 255 255 / 0.08);
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: var(--radius-pill);
  color: #ffffff;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 800;
  gap: 0.42rem;
  padding: 0.4rem 0.85rem;
  text-decoration: none;
}

.oshean-home-hero__pill-row a::before {
  background: currentColor;
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  height: 1rem;
  width: 1rem;
  -webkit-mask: var(--oshean-pill-icon) center / contain no-repeat;
  mask: var(--oshean-pill-icon) center / contain no-repeat;
}

.oshean-home-hero__pill-row a[href*="#network"] {
  --oshean-pill-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3c2.8 2.6 4 5.6 4 9s-1.2 6.4-4 9c-2.8-2.6-4-5.6-4-9s1.2-6.4 4-9z'/%3E%3C/g%3E%3C/svg%3E");
}

.oshean-home-hero__pill-row a[href*="#security"] {
  --oshean-pill-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 5 5.8v5.4c0 4.4 2.9 7.7 7 9.8 4.1-2.1 7-5.4 7-9.8V5.8L12 3z'/%3E%3Cpath d='m9 11.6 2.2 2.2L15.4 9.6'/%3E%3C/g%3E%3C/svg%3E");
}

.oshean-home-hero__pill-row a[href*="#cloud"] {
  --oshean-pill-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 18a4.5 4.5 0 0 1-.4-9A6 6 0 0 1 18.2 9.5 4 4 0 0 1 17.5 18H7z'/%3E%3C/g%3E%3C/svg%3E");
}

.oshean-home-hero__pill-row a:hover,
.oshean-home-hero__pill-row a:focus-visible {
  background: rgb(255 255 255 / 0.18);
  color: #ffffff;
}

.oshean-home-hero__viz {
  margin: 0;
  position: relative;
  top: -0.75rem;
}

.oshean-home-hero__wave {
  background: var(--color-page);
  clip-path: polygon(0 45%, 16% 64%, 33% 42%, 50% 52%, 67% 64%, 84% 48%, 100% 36%, 100% 100%, 0 100%);
  height: 4.4rem;
  margin: -4.35rem 0 0;
  position: relative;
  z-index: 1;
}

.oshean-network-viz {
  display: block;
  margin: 0;
  width: 100%;
}

.oshean-network-viz svg {
  display: block;
  filter: drop-shadow(0 0 45px rgb(41 185 214 / 0.25));
  height: auto;
  width: 100%;
}

.oshean-network-viz-editor-preview {
  background: var(--color-ocean-950);
  border-radius: var(--radius-2xl);
  max-width: 42rem;
  padding: 1rem;
}

.oshean-stats-band {
  margin: 1rem auto 2rem;
  max-width: min(54rem, calc(100vw - 2rem));
  position: relative;
  z-index: 3;
}

.oshean-stats-band__grid {
  background: var(--color-soft);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-tile-hover);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
}

.oshean-stat-counter {
  background: var(--color-panel);
  min-height: 5.55rem;
  padding: 0.72rem 0.7rem;
  text-align: center;
}

.oshean-stat-counter::before {
  content: none;
}

.oshean-stat-counter__icon {
  align-items: center;
  background: linear-gradient(135deg, var(--color-ocean-600), var(--color-teal-500));
  border-radius: 0.8rem;
  color: #ffffff;
  display: inline-flex;
  height: 2.15rem;
  justify-content: center;
  margin: 0 auto 0.7rem;
  width: 2.15rem;
}

.oshean-stat-counter__icon .oshean-icon {
  height: 1.18rem;
  width: 1.18rem;
}

.oshean-stat-counter__value {
  color: var(--color-link);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.55rem);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  line-height: 1;
  margin: 0;
}

.oshean-stat-counter__label {
  color: var(--color-muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  margin: 0.55rem 0 0;
  text-transform: uppercase;
}

.oshean-feature-card-grid__cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 3rem;
}

.oshean-feature-card {
  background: var(--color-panel);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-tile);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  padding: 2rem;
  position: relative;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.oshean-feature-card::before {
  background: linear-gradient(90deg, var(--color-ocean-500), var(--color-ocean-700));
  content: "";
  height: 0.4rem;
  inset: 0 0 auto;
  position: absolute;
}

.oshean-feature-card--security::before {
  background: linear-gradient(90deg, var(--color-leaf-400), var(--color-leaf-600));
}

.oshean-feature-card--cloud::before {
  background: linear-gradient(90deg, var(--color-teal-400), var(--color-teal-600));
}

.oshean-feature-card:focus-within {
  box-shadow: var(--shadow-tile-hover);
}

.oshean-feature-card__icon {
  align-items: center;
  background: var(--color-ocean-600);
  border: 1px solid color-mix(in srgb, var(--color-teal-300) 30%, transparent);
  border-radius: var(--radius-xl);
  color: #ffffff;
  display: flex;
  height: 3.25rem;
  justify-content: center;
  margin: 0;
  width: 3.25rem;
}

.oshean-feature-card--security .oshean-feature-card__icon {
  background: var(--color-leaf-600);
  border-color: color-mix(in srgb, var(--color-leaf-300) 36%, transparent);
}

.oshean-feature-card--cloud .oshean-feature-card__icon {
  background: var(--color-teal-500);
  border-color: color-mix(in srgb, var(--color-teal-300) 42%, transparent);
}

.oshean-feature-card__icon .oshean-icon {
  display: block;
  height: 1.55rem;
  width: 1.55rem;
}

.oshean-feature-card__title {
  font-size: 1.55rem;
  margin: 1.2rem 0 0;
}

.oshean-feature-card__copy {
  color: var(--color-copy);
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.7;
}

.oshean-feature-card__link a {
  color: var(--color-link);
  font-weight: 800;
  text-decoration: none;
}

.oshean-feature-card-grid__actions,
.oshean-logo-marquee-section__actions {
  justify-content: center;
  margin-top: 2.5rem;
}

.oshean-logo-marquee-section,
.oshean-latest-news {
  background: var(--color-wash);
}

.oshean-home-services {
  background: var(--color-page);
  box-shadow: 0 0 0 100vmax var(--color-page);
  color: var(--color-copy);
  overflow: hidden;
}

.oshean-home-services .oshean-pattern-heading .eyebrow {
  color: var(--color-teal-text);
}

.oshean-home-services .oshean-pattern-heading__title {
  color: var(--color-heading);
}

.oshean-home-services .oshean-pattern-heading__intro {
  color: var(--color-copy);
}

.oshean-home-services .oshean-service-explorer {
  background: transparent;
  box-shadow: none;
  margin-top: 3rem;
  padding: 0;
}

.oshean-home-services .oshean-services-pillar-heading {
  display: none;
}

.oshean-home-services__actions {
  justify-content: center;
  margin-top: 2rem;
}

.oshean-logo-marquee {
  margin-top: 3rem;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  overflow: hidden;
}

.oshean-logo-marquee__track {
  display: flex;
  width: max-content;
}

.oshean-logo-marquee__row {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: 1.25rem;
  padding-right: 1.25rem;
}

.oshean-logo-marquee__logo {
  align-items: center;
  background: var(--color-logo-mat);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-tile);
  display: flex;
  height: 6rem;
  justify-content: center;
  margin: 0;
  padding: 1.25rem;
  width: 11rem;
}

.oshean-logo-marquee__logo img {
  display: block;
  filter: grayscale(1);
  max-height: 3.5rem;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.68;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.oshean-logo-marquee__logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.oshean-latest-news__header {
  align-items: end;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
}

.oshean-latest-news__all {
  font-weight: 800;
  margin: 0;
}

.oshean-latest-news__all a {
  text-decoration: none;
}

.oshean-latest-news__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
}

.oshean-cta-band__inner,
.oshean-newsletter-feature-card,
.oshean-anniversary-card {
  background:
    radial-gradient(circle at 82% 0%, rgb(41 185 214 / 0.24), transparent 22rem),
    linear-gradient(135deg, var(--color-ocean-950), var(--color-ocean-800));
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-card-dark);
  color: #ffffff;
  overflow: hidden;
  padding: 3rem;
  position: relative;
}

.oshean-cta-band__inner > *,
.oshean-newsletter-feature-card > *,
.oshean-anniversary-card > * {
  position: relative;
  z-index: 1;
}

.oshean-cta-band__title {
  font-size: 2.2rem;
  max-width: 46rem;
}

.oshean-cta-band__copy,
.oshean-network-viz-band__text,
.oshean-newsletter-card__text,
.oshean-anniversary-card__text,
.oshean-bento-benefits__copy {
  color: var(--color-ocean-100);
  max-width: 42rem;
}

.oshean-network-viz-band__rule {
  border-radius: 0;
  position: relative;
  z-index: 1;
}

/* Text-only band: a centered header composition. The four capability points
   form the balanced centerpiece as a 2x2 grid — no image needed. */
.oshean-network-viz-band__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: clamp(3.75rem, 6vw, 5.5rem) 1.5rem;
  text-align: center;
}

.oshean-network-viz-band__title {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  max-width: 22ch;
}

.oshean-network-viz-band__text {
  margin-top: 1.15rem;
}

.oshean-check-list {
  display: grid;
  gap: 1rem 3rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 2.5rem auto 0;
  max-width: 44rem;
  padding: 0;
  text-align: left;
  width: 100%;
}

.oshean-check-list li {
  color: var(--color-ocean-100);
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
  padding-left: 1.9rem;
  position: relative;
}

.oshean-check-list li::before {
  background: rgb(41 185 214 / 0.18);
  border-radius: var(--radius-pill);
  content: "";
  height: 1rem;
  left: 0;
  position: absolute;
  top: 0.2rem;
  width: 1rem;
}

.oshean-check-list li::after {
  border-bottom: 2px solid var(--color-teal-300);
  border-left: 2px solid var(--color-teal-300);
  content: "";
  height: 0.22rem;
  left: 0.27rem;
  position: absolute;
  top: 0.42rem;
  transform: rotate(-45deg);
  width: 0.46rem;
}

.oshean-network-viz-band__actions {
  justify-content: center;
}

.oshean-bento-benefits {
  background: var(--color-ocean-950);
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-card-dark);
  color: #ffffff;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  padding: 3rem;
}

.oshean-bento-benefits__title {
  font-size: 2.25rem;
}

.oshean-bento-benefits__tiles {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.oshean-bento-benefits__tile {
  background: rgb(255 255 255 / 0.08);
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: var(--radius-2xl);
  margin-block-start: 0;
  padding: 1.3rem;
}

.oshean-bento-benefits__tile-title {
  color: #ffffff;
  font-size: 1.1rem;
  margin: 0;
}

.oshean-bento-benefits__tile-copy {
  color: var(--color-ocean-100);
  font-size: 0.92rem;
}

.oshean-photo-interlude {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
}

.oshean-photo-interlude__image {
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-tile-hover);
  margin: 0;
  overflow: hidden;
}

.oshean-photo-interlude__image img {
  display: block;
  min-height: 22rem;
  object-fit: cover;
  width: 100%;
}

.oshean-photo-interlude__title {
  font-size: 2rem;
}

.oshean-about-intro {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 1fr);
}

.oshean-about-intro__copy {
  max-width: 42rem;
}

.oshean-about-intro__image {
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-tile-hover);
  margin: 0;
  overflow: hidden;
}

.oshean-about-intro__image img {
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  width: 100%;
}

.oshean-about-pillars {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.oshean-about-pillars .oshean-card {
  align-items: center;
  border-radius: 0.9rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  min-height: 0;
  padding: 0.85rem 1rem;
  position: relative;
}

.oshean-about-pillars .oshean-card::before {
  background: linear-gradient(135deg, var(--color-ocean-600), var(--color-teal-500));
  border-radius: 0.75rem;
  content: "";
  display: block;
  height: 2.5rem;
  width: 2.5rem;
}

.oshean-about-pillars .oshean-card::after {
  background: #ffffff;
  content: "";
  display: block;
  height: 1.25rem;
  left: 1.625rem;
  -webkit-mask: var(--oshean-about-card-icon) center / contain no-repeat;
  mask: var(--oshean-about-card-icon) center / contain no-repeat;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
}

.oshean-about-pillars .oshean-card:nth-child(1) {
  --oshean-about-card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3c2.8 2.6 4 5.6 4 9s-1.2 6.4-4 9c-2.8-2.6-4-5.6-4-9s1.2-6.4 4-9z'/%3E%3Ccircle cx='8.2' cy='8.6' r='1.15' fill='black' stroke='none'/%3E%3Ccircle cx='15.8' cy='14.8' r='1.15' fill='black' stroke='none'/%3E%3C/svg%3E");
}

.oshean-about-pillars .oshean-card:nth-child(2) {
  --oshean-about-card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='8.5' r='3'/%3E%3Cpath d='M3.5 19a5.5 5.5 0 0 1 11 0'/%3E%3Ccircle cx='17' cy='9.5' r='2.4'/%3E%3Cpath d='M15.6 14.4a4.6 4.6 0 0 1 5.9 4.6'/%3E%3C/svg%3E");
}

.oshean-about-pillars .oshean-card:nth-child(3) {
  --oshean-about-card-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8h13l-3-3M20 16H7l3 3'/%3E%3C/svg%3E");
}

.oshean-about-pillars .oshean-card-title {
  font-size: 0.92rem;
  line-height: 1.25;
  margin: 0;
}

.oshean-about-pillars .oshean-card > :not(.oshean-card-media) {
  margin: 0;
}

.oshean-two-column-prose {
  background: var(--color-wash);
  box-shadow: 0 0 0 100vmax var(--color-wash);
  clip-path: inset(0 -100vmax);
}

.oshean-two-column-prose .oshean-two-column-prose__aside {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.oshean-two-column-prose__aside h2 {
  font-size: 1.875rem;
}

.oshean-two-column-prose .prose-oshean {
  max-width: 66ch;
}

.oshean-about-network-interlude {
  margin-block-start: 0;
  overflow: hidden;
  position: relative;
}

.oshean-about-network-interlude::after {
  background: linear-gradient(90deg, var(--color-ocean-600), var(--color-teal-500) 55%, var(--color-leaf-500));
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
}

.oshean-about-network-interlude__image {
  margin: 0;
}

.oshean-about-network-interlude__image img {
  display: block;
  height: clamp(12rem, 20vw, 18rem);
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.oshean-card-grid--quick-links .oshean-card {
  min-height: 11rem;
  padding-top: 4.5rem;
  position: relative;
}

.oshean-card-grid--quick-links .oshean-card-title {
  font-size: 1.125rem;
}

.oshean-card-grid--quick-links .oshean-card::before {
  align-items: center;
  background: linear-gradient(135deg, var(--color-ocean-500), var(--color-teal-400));
  border-radius: var(--radius-xl);
  color: #ffffff;
  content: "";
  display: flex;
  height: 3rem;
  left: 1.5rem;
  position: absolute;
  top: 1.35rem;
  width: 3rem;
}

.oshean-card-grid--quick-links .oshean-card::after {
  background: #ffffff;
  content: "";
  display: block;
  height: 1.5rem;
  left: 2.25rem;
  -webkit-mask: var(--oshean-quick-link-icon) center / contain no-repeat;
  mask: var(--oshean-quick-link-icon) center / contain no-repeat;
  pointer-events: none;
  position: absolute;
  top: 2.1rem;
  width: 1.5rem;
}

.oshean-card-grid--quick-links .oshean-card:nth-child(1) {
  --oshean-quick-link-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='8.5' r='3'/%3E%3Cpath d='M3.5 19a5.5 5.5 0 0 1 11 0'/%3E%3Ccircle cx='17' cy='9.5' r='2.4'/%3E%3Cpath d='M15.6 14.4a4.6 4.6 0 0 1 5.9 4.6'/%3E%3C/svg%3E");
}

.oshean-card-grid--quick-links .oshean-card:nth-child(2) {
  --oshean-quick-link-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 3.5h8L19 8.5V20.5H6V3.5z'/%3E%3Cpath d='M14 3.5v5h5M9 13h6M9 16.5h6'/%3E%3C/svg%3E");
}

.oshean-card-grid--quick-links .oshean-card:nth-child(3) {
  --oshean-quick-link-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 13a7.5 7.5 0 0 1 15 0'/%3E%3Crect x='3' y='13' width='4' height='6' rx='1.6'/%3E%3Crect x='17' y='13' width='4' height='6' rx='1.6'/%3E%3Cpath d='M19.5 19v1a2.5 2.5 0 0 1-2.5 2.5h-3'/%3E%3C/svg%3E");
}

.oshean-timeline__list {
  border-left: 2px solid rgb(255 255 255 / 0.16);
  display: grid;
  gap: 2.2rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.5rem;
  max-width: 48rem;
  padding-left: 2rem;
}

.oshean-timeline__item {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: block;
  padding: 0;
  position: relative;
}

.oshean-timeline__item::before {
  background: var(--color-teal-400);
  border: 4px solid var(--color-ocean-950);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--color-teal-400);
  content: "";
  height: 0.9rem;
  left: calc(-2rem - 0.5rem);
  position: absolute;
  top: 0.3rem;
  width: 0.9rem;
}

.oshean-timeline__year {
  color: var(--color-teal-300);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0;
  text-transform: uppercase;
}

.oshean-timeline .oshean-pattern-heading {
  margin-left: auto;
  margin-right: auto;
  max-width: 46rem;
  text-align: center;
}

.oshean-timeline .oshean-pattern-heading__eyebrow {
  color: var(--color-teal-300);
}

.oshean-timeline .oshean-pattern-heading__title,
.oshean-timeline__item-title {
  color: #ffffff;
}

.oshean-timeline__item-title {
  font-size: 1.25rem;
  margin: 0.25rem 0 0;
}

.oshean-timeline__copy {
  color: var(--color-ocean-100);
  margin: 0;
  max-width: 42rem;
}

.oshean-timeline.oshean-section {
  background:
    radial-gradient(ellipse 100% 100% at 50% -20%, rgb(21 94 150 / 0.7), transparent 60%),
    var(--color-ocean-950);
  color: #ffffff;
  margin-block-start: 0;
  max-width: none;
  overflow: hidden;
  position: relative;
  width: 100%;
}

@media (max-width: 700px) {
  .oshean-about-intro {
    grid-template-columns: 1fr;
  }

  .oshean-check-list {
    gap: 0.85rem;
    grid-template-columns: minmax(0, 1fr);
    max-width: 24rem;
  }

  .oshean-about-intro__copy,
  .oshean-about-intro__image {
    max-width: none;
    width: 100%;
  }

  .oshean-about-intro__image img {
    aspect-ratio: 1 / 0.82;
  }
}

.oshean-faq-list__items {
  display: grid;
  gap: 1rem;
  margin: 0 auto;
  max-width: 49rem;
}

.oshean-faq-list__item {
  background: var(--color-panel);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-tile);
  padding: 0;
}

.oshean-faq-list__item summary {
  align-items: center;
  color: var(--color-heading);
  cursor: pointer;
  display: flex;
  font-weight: 800;
  justify-content: space-between;
  list-style: none;
  min-height: 3.9rem;
  padding: 1rem 1.15rem 1rem 1.35rem;
}

.oshean-faq-list__item summary::-webkit-details-marker {
  display: none;
}

.oshean-faq-list__item summary::after {
  align-items: center;
  background: var(--color-wash);
  border-radius: var(--radius-pill);
  color: var(--color-link);
  content: "+";
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 1.15rem;
  height: 1.85rem;
  justify-content: center;
  line-height: 1;
  margin-left: 1rem;
  width: 1.85rem;
}

.oshean-faq-list__item[open] summary::after {
  content: "-";
}

.oshean-faq-list__item p {
  color: var(--color-copy);
  line-height: 1.6;
  margin: 0;
  padding: 0 1.35rem 1.25rem;
}

.oshean-contact-sidebar-cards,
.oshean-two-column-prose__aside {
  display: grid;
  gap: 1rem;
}

.oshean-contact-card,
.oshean-two-column-prose__aside {
  background: var(--color-panel);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-tile);
  padding: 1.4rem;
}

.oshean-contact-card__title {
  font-size: 1rem;
  margin: 0 0 0.8rem;
}

.oshean-contact-card__line {
  margin: 0.35rem 0 0;
}

.oshean-policy-section {
  max-width: 46rem;
}

.oshean-policy-section h2 {
  font-size: 1.55rem;
  margin-top: 2.25rem;
  position: relative;
}

.oshean-policy-section h2::after {
  background: linear-gradient(90deg, var(--color-teal-500), var(--color-leaf-500));
  border-radius: var(--radius-pill);
  content: "";
  display: block;
  height: 0.15rem;
  margin-top: 0.55rem;
  width: 2.2rem;
}

.oshean-policy-list {
  counter-reset: oshean-policy;
  display: grid;
  gap: 0.75rem;
  list-style: none;
  margin: 1.25rem 0 2rem;
  padding: 0;
}

.oshean-policy-list li {
  background: var(--color-panel);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-tile);
  counter-increment: oshean-policy;
  line-height: 1.55;
  margin: 0;
  padding: 1rem 1.2rem 1rem 3.35rem;
  position: relative;
}

.oshean-policy-list li::before {
  align-items: center;
  background: var(--color-ocean-600);
  border-radius: var(--radius-pill);
  color: #ffffff;
  content: counter(oshean-policy);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 800;
  height: 1.7rem;
  justify-content: center;
  left: 1.1rem;
  line-height: 1;
  margin-top: 0.08rem;
  position: absolute;
  top: 1rem;
  width: 1.7rem;
}

.oshean-two-column-prose {
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(14rem, 18rem) minmax(0, 1fr);
}

.oshean-event-card-row__cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 2.25rem 0 0;
  padding: 0;
}

.oshean-event-card-row__card {
  background: var(--color-panel);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-tile);
  padding: 1.4rem;
}

.oshean-event-card-row__title {
  font-size: 1.2rem;
}

.oshean-newsletter-archive-section {
  background: var(--color-wash);
  max-width: none;
}

.oshean-newsletter-archive-section > * {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--wp--style--global--wide-size, 1180px);
}

.oshean-newsletter-archive-section .oshean-card-grid {
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.oshean-newsletter-card {
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-tile);
  overflow: hidden;
}

.oshean-newsletter-card .oshean-card-media {
  aspect-ratio: 1 / 1.12;
  background: var(--color-soft);
}

.oshean-newsletter-card .oshean-card-title {
  font-size: 1.25rem;
  margin-bottom: 1.45rem;
  margin-top: 1.3rem;
  max-width: calc(100% - 4.5rem);
}

.oshean-newsletter-card__buttons {
  bottom: 1.55rem;
  justify-content: flex-end;
  margin: 0;
  position: absolute;
  right: 1.45rem;
}

.oshean-newsletter-card .oshean-meta-pdf-button .wp-block-button__link {
  align-items: center;
  background: var(--color-wash);
  border: 1px solid var(--color-line);
  border-radius: 50%;
  box-shadow: none;
  color: transparent;
  display: inline-flex;
  font-size: 0;
  height: 2.25rem;
  justify-content: center;
  min-width: 0;
  padding: 0;
  position: relative;
  width: 2.25rem;
}

.oshean-newsletter-card .oshean-meta-pdf-button .wp-block-button__link::before {
  background: var(--color-link);
  content: "";
  height: 0.85rem;
  left: 50%;
  position: absolute;
  top: 0.55rem;
  transform: translateX(-50%);
  width: 0.12rem;
}

.oshean-newsletter-card .oshean-meta-pdf-button .wp-block-button__link::after {
  border-bottom: 0.12rem solid var(--color-link);
  border-right: 0.12rem solid var(--color-link);
  content: "";
  height: 0.45rem;
  left: 50%;
  position: absolute;
  top: 0.95rem;
  transform: translateX(-50%) rotate(45deg);
  width: 0.45rem;
}

.oshean-newsletter-archive-note {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin: 2rem auto 0;
  max-width: 45rem;
}

.oshean-newsletter-archive-note a {
  color: var(--color-link);
  font-weight: 800;
}

.oshean-newsletter-duo {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.oshean-newsletter-feature-card,
.oshean-anniversary-card {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 21rem;
}

.oshean-anniversary-card {
  background:
    radial-gradient(circle at 18% 0%, rgb(255 255 255 / 0.2), transparent 18rem),
    linear-gradient(135deg, var(--color-leaf-500), var(--color-teal-500) 52%, var(--color-ocean-600));
}

.oshean-anniversary-card__eyebrow,
.oshean-anniversary-card__text {
  color: rgb(255 255 255 / 0.9);
}

.oshean-anniversary-card__title {
  color: #ffffff;
  font-size: 1.9rem;
  max-width: 24rem;
}

.oshean-member-innovation {
  align-items: center;
  background: var(--color-panel);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-tile);
  display: grid;
  gap: 2.5rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1.1fr);
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
}

.oshean-member-innovation__rule {
  border-radius: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.oshean-member-innovation__title {
  font-size: clamp(1.75rem, 3vw, 2rem);
}

.oshean-member-innovation__text {
  color: var(--color-copy);
  line-height: 1.7;
}

.oshean-member-innovation__image {
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-tile);
  margin: 0;
  overflow: hidden;
}

.oshean-member-innovation__image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.oshean-newsletter-card__image {
  border-radius: var(--radius-2xl);
  margin: 0;
  overflow: hidden;
}

.oshean-newsletter-card__image img {
  display: block;
  width: 100%;
}

@media (max-width: 980px) {
  .oshean-home-hero__inner,
  .oshean-network-viz-band__inner,
  .oshean-bento-benefits,
  .oshean-photo-interlude,
  .oshean-two-column-prose,
  .oshean-newsletter-duo,
  .oshean-member-innovation {
    grid-template-columns: 1fr;
  }

  .oshean-home-hero__inner {
    padding-bottom: 6rem;
    padding-top: 4rem;
  }

  .oshean-home-hero__viz {
    margin-left: auto;
    margin-right: auto;
    max-width: 34rem;
  }

  .oshean-feature-card-grid__cards,
  .oshean-latest-news__grid,
  .oshean-event-card-row__cards,
  .oshean-newsletter-archive-section .oshean-card-grid,
  .oshean-card-grid--benefits,
  .oshean-listing-template .oshean-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .oshean-team-query .oshean-team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .oshean-board-query .oshean-board-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .oshean-card-grid--benefits .oshean-benefit-card--featured {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .oshean-pattern-heading__title,
  .oshean-network-viz-band__title,
  .oshean-cta-band__title,
  .oshean-bento-benefits__title {
    font-size: 1.9rem;
  }

  .oshean-page-hero__title,
  .oshean-home-hero__title {
    font-size: 2.15rem;
  }

  .oshean-home-hero__title {
    font-size: 2.45rem;
  }

  .oshean-home-hero__inner,
  .oshean-page-hero__inner,
  .oshean-network-viz-band__inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .oshean-listing-template .oshean-card-grid {
    grid-template-columns: 1fr;
  }

  .oshean-newsletter-archive-section .oshean-card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .oshean-home-hero__viz {
    display: none;
  }

  .oshean-stats-band {
    margin-top: 1.5rem;
  }

  .oshean-stats-band__grid,
  .oshean-bento-benefits__tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .oshean-stat-counter {
    min-height: 5.35rem;
    padding: 0.7rem 0.6rem;
  }

  .oshean-stat-counter__value {
    font-size: 1.42rem;
  }

  .oshean-logo-marquee__logo {
    height: 5.25rem;
    width: 9.5rem;
  }

  .oshean-latest-news__header {
    align-items: start;
    flex-direction: column;
  }

  .oshean-cta-band__inner,
  .oshean-newsletter-feature-card,
  .oshean-anniversary-card,
  .oshean-bento-benefits {
    border-radius: var(--radius-2xl);
    padding: 2rem 1.25rem;
  }

  .oshean-timeline__item {
    grid-template-columns: 1fr;
  }

  .oshean-card-grid--benefits .oshean-card {
    min-height: 0;
    padding: 1.25rem;
  }

  .oshean-card-grid--benefits {
    grid-template-columns: minmax(0, 1fr);
  }

  .oshean-card-grid--benefits .oshean-benefit-card--featured {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    padding: 1.65rem;
  }

  .oshean-card-grid--benefits .oshean-benefit-card--featured::after {
    left: calc(1.65rem + 0.925rem);
    top: calc(1.65rem + 0.925rem);
  }

  .oshean-team-tabs {
    overflow-x: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .oshean-team-template .oshean-team-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .oshean-team-query .oshean-team-grid,
  .oshean-board-query .oshean-board-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .oshean-board-card {
    text-align: center;
  }

  .oshean-board-card .oshean-team-name {
    max-width: none;
  }

  .oshean-board-card .oshean-team-role:not(:empty) {
    margin-bottom: 0.45rem;
    position: static;
  }
}

@media (max-width: 440px) {
  .oshean-home-hero__title {
    font-size: 2.15rem;
  }

  .oshean-stats-band__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .oshean-bento-benefits__tiles {
    grid-template-columns: 1fr;
  }

  .oshean-team-query .oshean-team-grid,
  .oshean-board-query .oshean-board-grid {
    grid-template-columns: 1fr;
  }

  .oshean-team-card {
    height: auto;
    min-height: 11.75rem;
  }
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Visual checkpoint tuning: keep the production homepage rhythm close to the approved design. */
.oshean-home-hero__inner {
  padding-bottom: 3.8rem;
  padding-top: 2.35rem;
}

.oshean-home-hero__title {
  font-size: 2.95rem;
  max-width: 20ch;
}

.oshean-home-hero__lede {
  line-height: 1.65;
  margin-top: 1.05rem;
}

.oshean-home-hero__actions {
  margin-top: 1.1rem;
}

.oshean-home-hero__pills {
  margin-top: 0.85rem;
}

.oshean-stats-band {
  margin-top: -3rem;
}

@media (max-width: 980px) {
  .oshean-home-hero__inner {
    padding-bottom: 4.15rem;
    padding-top: 2.65rem;
  }
}

@media (max-width: 720px) {
  .oshean-header-main__inner {
    flex-wrap: nowrap;
    gap: 0.5rem;
    padding-bottom: 0.65rem;
    padding-top: 0.65rem;
  }

  .oshean-primary-navigation {
    flex: 0 0 auto;
    order: initial;
    width: auto;
  }

  .oshean-member-link,
  .oshean-portal-link {
    display: none !important;
  }

  .oshean-home-hero__inner {
    padding-bottom: 3.6rem;
    padding-top: 2.35rem;
  }

  .oshean-home-hero__title {
    font-size: 2.3rem;
    max-width: 16ch;
  }

  .oshean-home-hero__lede {
    font-size: 1.02rem;
  }

  .oshean-stats-band {
    margin-top: 1.4rem;
  }
}

@media (max-width: 440px) {
  .oshean-header-logo img {
    max-width: 9.75rem;
  }

  .oshean-home-hero__title {
    font-size: 2.18rem;
  }
}

/* Seeded block utility compatibility. These classes are emitted by the
   Gutenberg-native seed markup so editors keep normal blocks while the front
   end retains the v4 section rhythm. */
.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-w-7xl {
  max-width: 80rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.w-full {
  width: 100%;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-16 {
  padding-bottom: 4rem;
  padding-top: 4rem;
}

.pb-20 {
  padding-bottom: 5rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mb-2\.5 {
  margin-bottom: 0.625rem;
}

.space-y-16 > * + * {
  margin-top: 4rem;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.block {
  display: block;
}

.inline-flex {
  display: inline-flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-1 {
  flex: 1 1 0%;
}

.shrink-0 {
  flex-shrink: 0;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.overflow-x-auto {
  overflow-x: auto;
}

.no-scrollbar {
  scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.sticky {
  position: sticky;
}

.top-17 {
  top: 4.25rem;
}

.z-30 {
  z-index: 30;
}

.scroll-mt-40 {
  scroll-margin-top: 10rem;
}

.text-center {
  text-align: center;
}

.uppercase {
  text-transform: uppercase;
}

.font-display {
  font-family: var(--font-display);
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 2.25rem;
}

.leading-tight {
  line-height: 1.1;
}

.leading-relaxed {
  line-height: 1.65;
}

.tracking-tight {
  letter-spacing: 0;
}

.tracking-wider {
  letter-spacing: 0.12em;
}

.text-white {
  color: #ffffff;
}

.text-heading {
  color: var(--color-heading);
}

.text-muted {
  color: var(--color-muted);
}

.text-link-strong {
  color: var(--color-link-strong);
}

.text-teal-400 {
  color: var(--color-teal-400);
}

.text-teal-text {
  color: var(--color-teal-text);
}

.text-ocean-100 {
  color: var(--color-ocean-100);
}

.bg-panel {
  background: var(--color-panel);
}

.bg-wash {
  background: var(--color-wash);
}

.bg-ocean-950 {
  background:
    radial-gradient(ellipse 95% 90% at 75% -10%, rgb(21 94 150 / 0.76), transparent 60%),
    linear-gradient(135deg, var(--color-ocean-950), var(--color-ocean-900) 58%, #0f6174);
}

.bg-ocean-950 :where(h1, h2, h3, h4, h5, h6) {
  color: #ffffff;
}

.bg-ocean-950 :where(p, a) {
  color: inherit;
}

.bg-ocean-950::before {
  background-image:
    linear-gradient(rgb(255 255 255 / 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.05) 1px, transparent 1px),
    radial-gradient(rgb(255 255 255 / 0.12) 1px, transparent 1px);
  background-size: 44px 44px, 44px 44px, 26px 26px;
  content: "";
  inset: 0;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, black 35%, transparent 78%);
  opacity: 0.75;
  pointer-events: none;
  position: absolute;
}

.bg-ocean-950 > * {
  position: relative;
  z-index: 1;
}

.bg-gradient-to-br {
  background-image: linear-gradient(135deg, var(--color-ocean-600), var(--color-teal-500));
}

.border {
  border-style: solid;
  border-width: 1px;
}

.border-b {
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

.border-line {
  border-color: var(--color-line);
}

.border-line-strong {
  border-color: var(--color-line-strong);
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: var(--radius-2xl);
}

.rounded-3xl {
  border-radius: var(--radius-3xl);
}

.rounded-full {
  border-radius: var(--radius-pill);
}

.shadow-sm,
.shadow-tile {
  box-shadow: var(--shadow-tile);
}

.shadow-tile-hover {
  box-shadow: var(--shadow-tile-hover);
}

.transition {
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.backdrop-blur {
  backdrop-filter: blur(14px);
}

.bg-panel\/95 {
  background: color-mix(in srgb, var(--color-panel) 95%, transparent);
}

@media (min-width: 640px) {
  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .sm\:px-14 {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .sm\:py-20 {
    padding-bottom: 5rem;
    padding-top: 5rem;
  }

  .sm\:w-72 {
    width: 18rem;
  }

  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm\:text-4xl {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:text-5xl {
    font-size: 3rem;
  }

  .lg\:top-\[6\.5rem\] {
    top: 6.5rem;
  }
}

/* M6 visual parity tuning: restore the richer v4 section/card treatments
   without changing block structure or the protected header layout. */
.oshean-hero-breadcrumb {
  color: var(--color-ocean-100);
  font-size: 0.86rem;
  font-weight: 800;
  margin: 0 0 1.35rem;
}

.oshean-hero-breadcrumb a {
  color: var(--color-teal-300);
  text-decoration: none;
}

.oshean-hero-breadcrumb a:hover,
.oshean-hero-breadcrumb a:focus-visible {
  color: #ffffff;
}

.oshean-cta-band {
  background: var(--color-page);
}

.oshean-cta-band__inner {
  background:
    radial-gradient(circle at 82% 8%, rgb(41 185 214 / 0.22), transparent 23rem),
    radial-gradient(circle at 10% 95%, rgb(141 198 63 / 0.12), transparent 18rem),
    linear-gradient(135deg, var(--color-ocean-950), var(--color-ocean-800) 58%, #123f3f);
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-card-dark), 0 26px 60px -30px rgb(8 39 67 / 0.9);
  color: #ffffff;
  margin-left: auto;
  margin-right: auto;
  max-width: min(76rem, calc(100vw - 2rem));
  overflow: hidden;
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem);
  position: relative;
  text-align: center;
}

.oshean-cta-band__inner::before {
  background-image:
    linear-gradient(rgb(255 255 255 / 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.oshean-cta-band__inner::after {
  background: linear-gradient(90deg, var(--color-ocean-600), var(--color-teal-500), var(--color-leaf-500));
  content: "";
  height: 0.28rem;
  inset: 0 0 auto;
  position: absolute;
}

.oshean-cta-band__inner > * {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.oshean-cta-band__title {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 2.65rem);
  max-width: 52rem;
}

.oshean-cta-band__copy {
  color: var(--color-ocean-100);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 44rem;
}

.oshean-cta-band__actions {
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.oshean-site-footer__contact-cards {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 3.5rem;
}

.oshean-footer-contact-card {
  align-items: center;
  background: rgb(255 255 255 / 0.08);
  border: 1px solid rgb(255 255 255 / 0.13);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-card-dark);
  color: var(--color-ocean-100);
  display: grid;
  gap: 1rem;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  padding: 1.4rem 1.6rem;
}

.oshean-footer-contact-card__icon {
  align-items: center;
  background: rgb(41 185 214 / 0.22);
  border-radius: 0.9rem;
  color: var(--color-teal-300);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 700;
  height: 3rem;
  justify-content: center;
  margin: 0;
  width: 3rem;
}

.oshean-footer-contact-card__title {
  color: #ffffff;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.28;
  margin: 0;
}

.oshean-footer-contact-card__copy {
  color: var(--color-ocean-200);
  font-size: 0.875rem;
  line-height: 1.45;
  margin: 0.25rem 0 0;
}

.oshean-footer-contact-card__links {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.45;
  margin: 0.35rem 0 0;
}

.oshean-footer-contact-card__links a {
  color: #ffffff;
  text-decoration: none;
}

@media (max-width: 760px) {
  .oshean-site-footer__contact-cards {
    grid-template-columns: 1fr;
  }
}

.oshean-services-pillar-section {
  background: var(--color-page);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(1.7rem, 3.2vw, 2.35rem);
}

.oshean-services-pillar-heading {
  margin: 1.45rem auto 1.25rem;
  max-width: 48rem;
  text-align: center;
}

.oshean-services-pillar-heading > * {
  margin-left: auto;
  margin-right: auto;
}

.oshean-services-pillar-heading__title {
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
  max-width: 14ch;
}

.oshean-services-pillar-heading__copy {
  color: var(--color-copy);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 42rem;
}

.oshean-services-pillar-grid {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 1.6rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.oshean-services-pillar-card {
  background: var(--color-panel);
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-2xl);
  box-shadow: 0 1px 2px rgb(8 39 67 / 0.08), 0 16px 38px -18px rgb(8 39 67 / 0.18);
  display: flex;
  flex-direction: column;
  min-height: 19rem;
  overflow: hidden;
  padding: clamp(1.05rem, 1.9vw, 1.35rem);
  position: relative;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.oshean-services-pillar-card::before {
  background: var(--color-ocean-600);
  content: "";
  height: 0.32rem;
  inset: 0 0 auto;
  position: absolute;
}

.oshean-services-pillar-card--security::before {
  background: var(--color-leaf-500);
}

.oshean-services-pillar-card--cloud::before {
  background: var(--color-teal-500);
}

.oshean-services-pillar-card:hover {
  border-color: var(--color-line-strong);
  box-shadow: var(--shadow-tile-hover);
  transform: translateY(-0.18rem);
}

.oshean-services-pillar-card__top {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  margin: 0 0 0.95rem;
}

.oshean-services-pillar-card__icon {
  align-items: center;
  background: var(--color-ocean-600);
  border-radius: var(--radius-2xl);
  color: #ffffff;
  display: inline-flex;
  height: 2.85rem;
  justify-content: center;
  margin: 0;
  width: 2.85rem;
}

.oshean-services-pillar-card__icon::before {
  content: "";
  border: 2px solid currentColor;
  border-radius: var(--radius-pill);
  height: 1.05rem;
  width: 1.05rem;
}

.oshean-services-pillar-card--security .oshean-services-pillar-card__icon {
  background: var(--color-leaf-600);
}

.oshean-services-pillar-card--cloud .oshean-services-pillar-card__icon {
  background: var(--color-teal-500);
}

.oshean-services-pillar-card__title {
  font-size: clamp(1.55rem, 2.45vw, 1.9rem);
  margin: 0 0 0.45rem;
}

.oshean-services-pillar-card__lead {
  color: var(--color-heading);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.28;
  margin: 0 0 0.75rem;
}

.oshean-services-pillar-card__copy {
  color: var(--color-copy);
  line-height: 1.5;
  margin: 0;
}

.oshean-services-pillar-card__best {
  color: var(--color-copy);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.4;
  margin: auto 3.25rem 0 0;
  padding-top: 0.95rem;
}

.oshean-services-pillar-card__action {
  bottom: 1.05rem;
  margin: 0;
  position: absolute;
  right: 1.05rem;
}

.oshean-services-pillar-card__action a {
  align-items: center;
  background: var(--color-ocean-950);
  border-radius: var(--radius-pill);
  color: #ffffff;
  display: inline-flex;
  font-size: 1.25rem;
  font-weight: 800;
  height: 2.75rem;
  justify-content: center;
  text-decoration: none;
  width: 2.75rem;
}

.oshean-services-pillar-card__action a:hover,
.oshean-services-pillar-card__action a:focus-visible {
  background: var(--color-ocean-700);
  color: #ffffff;
}

@media (max-width: 860px) {
  .oshean-services-pillar-grid {
    grid-template-columns: 1fr;
  }
}

.oshean-events-list-section {
  background: var(--color-wash);
  max-width: none;
}

.oshean-events-list-section > * {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--wp--style--global--wide-size, 1180px);
}

.oshean-event-status {
  background: color-mix(in srgb, var(--color-teal-300) 24%, #ffffff);
  border: 1px solid var(--color-teal-300);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-tile);
  margin-bottom: 2rem;
  padding: 1.45rem 1.75rem;
  text-align: center;
}

.oshean-event-status p {
  color: var(--color-heading);
  font-weight: 800;
  margin: 0;
}

.oshean-events-list {
  display: grid;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.oshean-event-list-card {
  align-items: center;
  background: var(--color-panel);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-tile);
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 4.8rem minmax(0, 1fr);
  padding: clamp(1.05rem, 2.2vw, 1.45rem);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.oshean-event-list-card:hover {
  border-color: var(--color-line-strong);
  box-shadow: var(--shadow-tile-hover);
  transform: translateY(-0.12rem);
}

.oshean-event-date-badge {
  align-self: start;
  background: var(--color-wash);
  border: 1px solid var(--color-line-strong);
  border-radius: 0.9rem;
  color: var(--color-link);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  padding: 0.85rem 0.75rem;
  text-align: center;
}

.oshean-event-list-title {
  font-size: clamp(1.1rem, 1.7vw, 1.2rem);
  line-height: 1.35;
  margin: 0;
}

.oshean-event-list-title a {
  color: var(--color-heading);
  text-decoration: none;
}

.oshean-event-list-title a:hover,
.oshean-event-list-title a:focus-visible {
  color: var(--color-link);
}

.oshean-event-list-card .oshean-event-meta {
  border: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.2rem;
  margin: 0.55rem 0 0;
  padding: 0;
}

.oshean-event-list-card .oshean-event-meta p {
  color: var(--color-copy);
  font-size: 0.94rem;
  font-weight: 700;
  margin: 0;
}

.oshean-event-list-card .oshean-card-excerpt {
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 0;
  margin-top: 0.65rem;
}

@media (max-width: 720px) {
  .oshean-event-list-card {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .oshean-event-date-badge {
    text-align: left;
    width: fit-content;
  }
}

/* M7 full-site parity pass: shared Gutenberg templates and seeded core-block pages. */
.oshean-single-template .oshean-hero__inner,
.oshean-event-template .oshean-hero__inner,
.oshean-service-template .oshean-hero__inner {
  padding-bottom: clamp(2rem, 3.3vw, 2.75rem);
  padding-top: clamp(1.9rem, 3.1vw, 2.55rem);
}

.oshean-single-template .oshean-hero__title,
.oshean-event-template .oshean-hero__title,
.oshean-service-template .oshean-hero__title {
  font-size: clamp(1.78rem, 2.8vw, 2.35rem);
  max-width: 24ch;
}

.oshean-service-template .oshean-hero__title {
  max-width: 32ch;
}

.oshean-single-template .oshean-post-meta {
  font-size: 0.88rem;
}

.oshean-single-template .oshean-article-shell {
  max-width: min(64rem, calc(100vw - 2rem));
  padding-bottom: clamp(1.25rem, 3vw, 2rem);
  padding-top: clamp(2.35rem, 5vw, 3.6rem);
}

.oshean-single-template .prose-oshean {
  margin-left: auto;
  margin-right: auto;
  max-width: 54rem;
}

.oshean-single-template .oshean-featured-media {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-tile);
  margin-left: auto;
  margin-right: auto;
  max-width: 54rem;
  overflow: hidden;
}

.oshean-single-template .oshean-back-link {
  justify-content: center;
  margin-top: 2rem;
}

.oshean-single-cta,
.oshean-event-cta {
  padding-top: clamp(1rem, 2vw, 1.75rem);
}

.oshean-single-cta .oshean-cta-band__inner,
.oshean-event-cta .oshean-cta-band__inner {
  padding-bottom: clamp(2.35rem, 5vw, 3.75rem);
  padding-top: clamp(2.35rem, 5vw, 3.75rem);
}

.oshean-listing-section {
  margin-block-start: 1.5rem !important;
  margin-top: 1.5rem !important;
  padding-top: 0;
}

.oshean-listing-template .oshean-listing-section > .oshean-resource-toolbar {
  background: color-mix(in srgb, var(--color-panel) 96%, transparent);
  border-bottom: 1px solid var(--color-line);
  box-shadow: 0 12px 32px -28px rgb(8 39 67 / 0.65);
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  max-width: none !important;
  padding-left: max(1rem, calc((100vw - 96rem) / 2 + 1rem));
  padding-right: max(1rem, calc((100vw - 96rem) / 2 + 1rem));
  width: 100vw !important;
}

.oshean-listing-template .oshean-card-grid {
  gap: clamp(1.15rem, 2vw, 1.45rem);
}

.oshean-listing-template .oshean-card {
  border-radius: 1rem;
  box-shadow: 0 16px 34px -22px rgb(8 39 67 / 0.28);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.oshean-listing-template .oshean-card:hover,
.oshean-listing-template .oshean-card:focus-within {
  border-color: var(--color-line-strong);
  box-shadow: var(--shadow-tile-hover);
  transform: translateY(-0.12rem);
}

.oshean-listing-template .oshean-card-media {
  aspect-ratio: 1.72 / 1;
  border-bottom: 1px solid var(--color-line);
}

.oshean-listing-template .oshean-card-title {
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  font-weight: 800;
}

.oshean-listing-template .oshean-card-excerpt {
  line-height: 1.6;
}

.oshean-newsletter-template .oshean-newsletter-archive-section {
  max-width: 80rem;
}

.oshean-newsletter-archive-section .oshean-card-grid {
  gap: clamp(1.25rem, 2vw, 1.65rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.oshean-newsletter-card {
  border-radius: 1rem;
  padding-top: 1rem;
}

.oshean-newsletter-card .oshean-card-media {
  aspect-ratio: 0.72 / 1;
  border: 1px solid var(--color-line);
  border-radius: 0.85rem;
  box-shadow: 0 12px 26px -20px rgb(8 39 67 / 0.5);
  margin: 0 1rem 1.1rem;
}

.oshean-newsletter-card .oshean-card-title {
  font-size: 1.15rem;
  text-align: center;
}

.oshean-newsletter-card__buttons {
  justify-content: center;
}

.oshean-benefits-grid-section {
  padding-top: clamp(3rem, 6vw, 5rem);
}

.oshean-card-grid--benefits {
  gap: clamp(1.15rem, 2vw, 1.5rem);
}

.oshean-card-grid--benefits .oshean-benefit-card {
  border-color: var(--color-line);
  border-radius: 1rem;
  box-shadow: 0 16px 34px -22px rgb(8 39 67 / 0.26);
  min-height: 16.5rem;
  padding: clamp(1.45rem, 2.5vw, 1.9rem);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.oshean-card-grid--benefits .oshean-benefit-card:hover,
.oshean-card-grid--benefits .oshean-benefit-card:focus-within {
  border-color: var(--color-line-strong);
  box-shadow: var(--shadow-tile-hover);
  transform: translateY(-0.14rem);
}

.oshean-card-grid--benefits .oshean-benefit-card::before,
.oshean-card-grid--benefits .oshean-benefit-card::after {
  content: none;
  display: none;
}

.oshean-benefit-card__icon {
  align-items: center;
  background: var(--color-ocean-600);
  border: 1px solid color-mix(in srgb, var(--color-teal-300) 36%, transparent);
  border-radius: 0.9rem;
  color: #ffffff;
  display: flex;
  height: 3.4rem;
  justify-content: center;
  margin: 0 0 1.15rem;
  width: 3.4rem;
}

.oshean-card-grid--benefits .oshean-benefit-card:not(.oshean-benefit-card--featured) .oshean-benefit-card__icon {
  box-shadow: 0 10px 24px -16px rgb(8 39 67 / 0.6);
}

.oshean-benefit-card__icon--scale,
.oshean-benefit-card__icon--exchange,
.oshean-benefit-card__icon--headset {
  background: var(--color-teal-500);
}

.oshean-benefit-card__icon--shield,
.oshean-benefit-card__icon--users {
  background: var(--color-leaf-600);
  border-color: color-mix(in srgb, var(--color-leaf-300) 36%, transparent);
}

.oshean-benefit-card__icon .oshean-icon {
  height: 1.55rem;
  width: 1.55rem;
}

.oshean-card-grid--benefits .oshean-benefit-card--featured {
  border-color: color-mix(in srgb, var(--color-teal-400) 42%, transparent);
  min-height: 30rem;
}

.oshean-benefit-card--featured .oshean-benefit-card__icon {
  background: rgb(255 255 255 / 0.1);
  border-color: rgb(255 255 255 / 0.18);
}

.oshean-card-grid--benefits .oshean-benefit-card .oshean-card-title {
  font-size: clamp(1.08rem, 1.6vw, 1.22rem);
}

.oshean-card-grid--benefits .oshean-benefit-card--featured .oshean-card-title {
  font-size: clamp(1.85rem, 3vw, 2.25rem);
}

.oshean-card-grid--benefits .oshean-benefit-card .oshean-card-excerpt {
  font-size: 0.95rem;
  line-height: 1.62;
}

.oshean-card-grid--benefits .oshean-benefit-card--featured .oshean-card-excerpt {
  font-size: 1.02rem;
}

.oshean-event-template .oshean-detail-layout,
.oshean-service-template .oshean-detail-layout {
  max-width: min(72rem, calc(100vw - 2rem));
}

.oshean-event-template .oshean-detail-aside,
.oshean-service-template .oshean-detail-aside {
  border-radius: 1rem;
  box-shadow: 0 16px 34px -24px rgb(8 39 67 / 0.42);
}

.oshean-event-template .oshean-detail-main,
.oshean-service-template .oshean-detail-main {
  max-width: 58rem;
}

.oshean-event-status {
  text-align: left;
}

.oshean-events-list {
  gap: 1rem;
}

.oshean-event-list-card {
  border-radius: 1rem;
}

.oshean-team-template .oshean-team-section {
  padding-bottom: clamp(2.25rem, 4vw, 3.35rem);
  padding-top: clamp(2.25rem, 4vw, 3.35rem);
}

.oshean-team-query .oshean-team-grid {
  gap: clamp(1rem, 2vw, 1.25rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 11.5rem), 1fr));
}

.oshean-team-card {
  height: 13.25rem;
  min-height: 13.25rem;
}

.oshean-board-card {
  min-height: 10.5rem;
}

@media (max-width: 980px) {
  .oshean-newsletter-archive-section .oshean-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .oshean-single-template .oshean-article-shell,
  .oshean-event-template .oshean-detail-layout,
  .oshean-service-template .oshean-detail-layout {
    max-width: calc(100vw - 1rem);
  }

  .oshean-resource-toolbar {
    align-items: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .oshean-resource-search {
    flex-basis: 100%;
    max-width: none;
    min-width: 0;
  }

  .oshean-newsletter-archive-section .oshean-card-grid {
    grid-template-columns: 1fr;
  }

  .oshean-card-grid--benefits .oshean-benefit-card--featured {
    min-height: 0;
  }
}

.theme-logo-light {
  display: block;
}

.theme-logo-dark {
  display: none;
}

:root[data-theme="light"] {
  color-scheme: light;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --color-page: #061522;
  --color-panel: #0d2234;
  --color-panel-strong: #122b40;
  --color-wash: #081b2a;
  --color-soft: #123149;
  --color-line: #1d4058;
  --color-line-strong: #2a5d7d;
  --color-heading: #eef8ff;
  --color-copy: #c9d9e6;
  --color-muted: #95aebe;
  --color-link: #8fdfee;
  --color-link-strong: #c5f2f8;
  --color-teal-text: #8fdfee;
  --color-leaf-text: #c4e596;
  --shadow-tile: 0 1px 0 rgb(255 255 255 / 0.05) inset, 0 16px 38px -20px rgb(0 0 0 / 0.9);
  --shadow-tile-hover: 0 1px 0 rgb(255 255 255 / 0.08) inset, 0 24px 52px -22px rgb(0 0 0 / 0.95);
  --shadow-glow-teal: 0 0 0 1px rgb(94 208 230 / 0.28), 0 14px 44px -12px rgb(41 185 214 / 0.6);
}

:root[data-theme="dark"] .theme-logo-light {
  display: none;
}

:root[data-theme="dark"] .theme-logo-dark {
  display: block;
}

:root[data-theme="dark"] .btn-outline,
:root[data-theme="dark"] .wp-block-button.is-style-outline .wp-block-button__link {
  background: var(--color-panel);
  color: var(--color-link);
  box-shadow: inset 0 0 0 1.5px var(--color-line-strong);
}

:root[data-theme="dark"] .btn-outline:hover,
:root[data-theme="dark"] .wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: var(--color-panel-strong);
  color: var(--color-link-strong);
  box-shadow: inset 0 0 0 1.5px var(--color-link);
}

:root[data-theme="dark"] input,
:root[data-theme="dark"] textarea,
:root[data-theme="dark"] select {
  color-scheme: dark;
}

:root[data-theme="dark"] .oshean-event-status {
  background:
    radial-gradient(circle at 12% 0%, rgb(94 208 230 / 0.16), transparent 18rem),
    var(--color-panel-strong);
  border-color: color-mix(in srgb, var(--color-teal-400) 45%, var(--color-line-strong));
  box-shadow: var(--shadow-tile);
}

:root[data-theme="dark"] .oshean-event-status p {
  color: var(--color-heading);
}

:root[data-theme="dark"] .oshean-event-status a {
  color: var(--color-link-strong);
}

:root[data-theme="dark"] .oshean-feature-card__pill,
:root[data-theme="dark"] .oshean-pillar-panel__chip {
  background: color-mix(in srgb, var(--color-panel-strong) 84%, var(--color-ocean-600));
  border: 1px solid var(--color-line);
  color: var(--color-link-strong);
}

:root[data-theme="dark"] .oshean-feature-card--security .oshean-feature-card__pill,
:root[data-theme="dark"] .oshean-pillar-panel--security .oshean-pillar-panel__chip {
  background: color-mix(in srgb, var(--color-panel-strong) 82%, var(--color-leaf-500));
  border-color: color-mix(in srgb, var(--color-leaf-500) 32%, var(--color-line));
  color: var(--color-leaf-text);
}

:root[data-theme="dark"] .oshean-feature-card--cloud .oshean-feature-card__pill,
:root[data-theme="dark"] .oshean-pillar-panel--cloud .oshean-pillar-panel__chip {
  background: color-mix(in srgb, var(--color-panel-strong) 82%, var(--color-teal-500));
  border-color: color-mix(in srgb, var(--color-teal-500) 34%, var(--color-line));
  color: var(--color-link-strong);
}

:root[data-theme="dark"] .oshean-wpforms-shell :where(.wpforms-field-label, .wpforms-field-sublabel, legend, label) {
  color: var(--color-heading) !important;
}

:root[data-theme="dark"] .oshean-wpforms-shell .wpforms-field-sublabel {
  color: var(--color-muted) !important;
}

:root[data-theme="dark"] .oshean-wpforms-shell .wpforms-required-label,
:root[data-theme="dark"] .oshean-wpforms-shell .wpforms-error {
  color: var(--color-teal-300) !important;
}

:root[data-theme="dark"] .oshean-wpforms-shell :where(input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="number"], textarea, select) {
  background: var(--color-wash) !important;
  border: 1px solid var(--color-line-strong) !important;
  border-radius: 0.55rem;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.04);
  color: var(--color-heading) !important;
}

:root[data-theme="dark"] .oshean-wpforms-shell :where(input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="number"], textarea, select)::placeholder {
  color: var(--color-muted);
  opacity: 1;
}

:root[data-theme="dark"] .oshean-wpforms-shell :where(input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="number"], textarea, select):focus {
  border-color: var(--color-teal-400) !important;
  box-shadow: 0 0 0 3px rgb(94 208 230 / 0.22);
  outline: none;
}

:root[data-theme="dark"] .oshean-wpforms-shell .wpforms-submit {
  background: var(--color-ocean-600) !important;
  border: 1px solid var(--color-ocean-500) !important;
  border-radius: var(--radius-pill) !important;
  box-shadow: 0 10px 24px -10px rgb(27 117 187 / 0.7);
  color: #ffffff !important;
  font-weight: 800;
}

:root[data-theme="dark"] .oshean-wpforms-shell .wpforms-submit:hover,
:root[data-theme="dark"] .oshean-wpforms-shell .wpforms-submit:focus-visible {
  background: var(--color-ocean-500) !important;
  color: #ffffff !important;
}

:root[data-theme="dark"] .asset-mat {
  background: var(--color-logo-mat);
  border-color: rgb(255 255 255 / 0.82);
}

:root[data-theme="dark"] .photo-frame {
  border-color: var(--color-line);
  box-shadow: var(--shadow-tile);
}

:root[data-theme="dark"] .oshean-site-header {
  background: color-mix(in srgb, var(--color-panel) 94%, transparent);
  box-shadow: 0 10px 36px -24px rgb(0 0 0 / 0.9);
}

:root[data-theme="dark"] .oshean-header-main,
:root[data-theme="dark"] .oshean-command-trigger,
:root[data-theme="dark"] .oshean-template-search .wp-block-search__inside-wrapper,
:root[data-theme="dark"] .oshean-result-card,
:root[data-theme="dark"] .oshean-no-results {
  background: var(--color-panel);
}

:root[data-theme="dark"] .oshean-primary-navigation.wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container,
:root[data-theme="dark"] .oshean-primary-navigation .wp-block-navigation__submenu-container {
  background: var(--color-panel-strong);
  background-color: var(--color-panel-strong);
  border-color: var(--color-line-strong);
  box-shadow: 0 22px 44px -22px rgb(0 0 0 / 0.82);
}

:root[data-theme="dark"] .oshean-primary-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
  color: var(--color-heading);
}

:root[data-theme="dark"] .oshean-primary-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item__content:hover,
:root[data-theme="dark"] .oshean-primary-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item__content:focus-visible {
  background: var(--color-wash);
  color: var(--color-link-strong);
}

:root[data-theme="dark"] .oshean-error-code {
  color: var(--color-heading);
  text-shadow: none;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --color-page: #061522;
    --color-panel: #0d2234;
    --color-panel-strong: #122b40;
    --color-wash: #081b2a;
    --color-soft: #123149;
    --color-line: #1d4058;
    --color-line-strong: #2a5d7d;
    --color-heading: #eef8ff;
    --color-copy: #c9d9e6;
    --color-muted: #95aebe;
    --color-link: #8fdfee;
    --color-link-strong: #c5f2f8;
    --color-teal-text: #8fdfee;
    --color-leaf-text: #c4e596;
    --shadow-tile: 0 1px 0 rgb(255 255 255 / 0.05) inset, 0 16px 38px -20px rgb(0 0 0 / 0.9);
    --shadow-tile-hover: 0 1px 0 rgb(255 255 255 / 0.08) inset, 0 24px 52px -22px rgb(0 0 0 / 0.95);
    --shadow-glow-teal: 0 0 0 1px rgb(94 208 230 / 0.28), 0 14px 44px -12px rgb(41 185 214 / 0.6);
  }

  :root:not([data-theme="light"]) .theme-logo-light {
    display: none;
  }

  :root:not([data-theme="light"]) .theme-logo-dark {
    display: block;
  }

  :root:not([data-theme="light"]) .btn-outline,
  :root:not([data-theme="light"]) .wp-block-button.is-style-outline .wp-block-button__link {
    background: var(--color-panel);
    color: var(--color-link);
    box-shadow: inset 0 0 0 1.5px var(--color-line-strong);
  }

  :root:not([data-theme="light"]) .btn-outline:hover,
  :root:not([data-theme="light"]) .wp-block-button.is-style-outline .wp-block-button__link:hover {
    background: var(--color-panel-strong);
    color: var(--color-link-strong);
    box-shadow: inset 0 0 0 1.5px var(--color-link);
  }

  :root:not([data-theme="light"]) input,
  :root:not([data-theme="light"]) textarea,
  :root:not([data-theme="light"]) select {
    color-scheme: dark;
  }

  :root:not([data-theme="light"]) .oshean-event-status {
    background:
      radial-gradient(circle at 12% 0%, rgb(94 208 230 / 0.16), transparent 18rem),
      var(--color-panel-strong);
    border-color: color-mix(in srgb, var(--color-teal-400) 45%, var(--color-line-strong));
    box-shadow: var(--shadow-tile);
  }

  :root:not([data-theme="light"]) .oshean-event-status p {
    color: var(--color-heading);
  }

  :root:not([data-theme="light"]) .oshean-event-status a {
    color: var(--color-link-strong);
  }

  :root:not([data-theme="light"]) .oshean-feature-card__pill,
  :root:not([data-theme="light"]) .oshean-pillar-panel__chip {
    background: color-mix(in srgb, var(--color-panel-strong) 84%, var(--color-ocean-600));
    border: 1px solid var(--color-line);
    color: var(--color-link-strong);
  }

  :root:not([data-theme="light"]) .oshean-feature-card--security .oshean-feature-card__pill,
  :root:not([data-theme="light"]) .oshean-pillar-panel--security .oshean-pillar-panel__chip {
    background: color-mix(in srgb, var(--color-panel-strong) 82%, var(--color-leaf-500));
    border-color: color-mix(in srgb, var(--color-leaf-500) 32%, var(--color-line));
    color: var(--color-leaf-text);
  }

  :root:not([data-theme="light"]) .oshean-feature-card--cloud .oshean-feature-card__pill,
  :root:not([data-theme="light"]) .oshean-pillar-panel--cloud .oshean-pillar-panel__chip {
    background: color-mix(in srgb, var(--color-panel-strong) 82%, var(--color-teal-500));
    border-color: color-mix(in srgb, var(--color-teal-500) 34%, var(--color-line));
    color: var(--color-link-strong);
  }

  :root:not([data-theme="light"]) .oshean-wpforms-shell :where(.wpforms-field-label, .wpforms-field-sublabel, legend, label) {
    color: var(--color-heading) !important;
  }

  :root:not([data-theme="light"]) .oshean-wpforms-shell .wpforms-field-sublabel {
    color: var(--color-muted) !important;
  }

  :root:not([data-theme="light"]) .oshean-wpforms-shell .wpforms-required-label,
  :root:not([data-theme="light"]) .oshean-wpforms-shell .wpforms-error {
    color: var(--color-teal-300) !important;
  }

  :root:not([data-theme="light"]) .oshean-wpforms-shell :where(input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="number"], textarea, select) {
    background: var(--color-wash) !important;
    border: 1px solid var(--color-line-strong) !important;
    border-radius: 0.55rem;
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.04);
    color: var(--color-heading) !important;
  }

  :root:not([data-theme="light"]) .oshean-wpforms-shell :where(input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="number"], textarea, select)::placeholder {
    color: var(--color-muted);
    opacity: 1;
  }

  :root:not([data-theme="light"]) .oshean-wpforms-shell :where(input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="number"], textarea, select):focus {
    border-color: var(--color-teal-400) !important;
    box-shadow: 0 0 0 3px rgb(94 208 230 / 0.22);
    outline: none;
  }

  :root:not([data-theme="light"]) .oshean-wpforms-shell .wpforms-submit {
    background: var(--color-ocean-600) !important;
    border: 1px solid var(--color-ocean-500) !important;
    border-radius: var(--radius-pill) !important;
    box-shadow: 0 10px 24px -10px rgb(27 117 187 / 0.7);
    color: #ffffff !important;
    font-weight: 800;
  }

  :root:not([data-theme="light"]) .oshean-wpforms-shell .wpforms-submit:hover,
  :root:not([data-theme="light"]) .oshean-wpforms-shell .wpforms-submit:focus-visible {
    background: var(--color-ocean-500) !important;
    color: #ffffff !important;
  }

  :root:not([data-theme="light"]) .asset-mat {
    background: var(--color-logo-mat);
    border-color: rgb(255 255 255 / 0.82);
  }

  :root:not([data-theme="light"]) .photo-frame {
    border-color: var(--color-line);
    box-shadow: var(--shadow-tile);
  }

  :root:not([data-theme="light"]) .oshean-site-header {
    background: color-mix(in srgb, var(--color-panel) 94%, transparent);
    box-shadow: 0 10px 36px -24px rgb(0 0 0 / 0.9);
  }

  :root:not([data-theme="light"]) .oshean-header-main,
  :root:not([data-theme="light"]) .oshean-command-trigger,
  :root:not([data-theme="light"]) .oshean-template-search .wp-block-search__inside-wrapper,
  :root:not([data-theme="light"]) .oshean-result-card,
  :root:not([data-theme="light"]) .oshean-no-results {
    background: var(--color-panel);
  }

  :root:not([data-theme="light"]) .oshean-primary-navigation.wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container,
  :root:not([data-theme="light"]) .oshean-primary-navigation .wp-block-navigation__submenu-container {
    background: var(--color-panel-strong);
    background-color: var(--color-panel-strong);
    border-color: var(--color-line-strong);
    box-shadow: 0 22px 44px -22px rgb(0 0 0 / 0.82);
  }

  :root:not([data-theme="light"]) .oshean-primary-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
    color: var(--color-heading);
  }

  :root:not([data-theme="light"]) .oshean-primary-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item__content:hover,
  :root:not([data-theme="light"]) .oshean-primary-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item__content:focus-visible {
    background: var(--color-wash);
    color: var(--color-link-strong);
  }

  :root:not([data-theme="light"]) .oshean-error-code {
    color: var(--color-heading);
    text-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rise-in,
  .marquee-track,
  .viz-flow,
  .viz-node,
  .viz-ring,
  .viz-spin,
  .float-slow,
  .oshean-home-hero__badge::before,
  .oshean-home-hero__badge::after {
    animation: none;
  }

  html.js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ---------------------------------------------------------------------------
   Home "Our Services" feature cards — per-service pills
   --------------------------------------------------------------------------- */
.oshean-feature-card__top {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  gap: 0.75rem;
  margin: 0 0 0.25rem;
}

.oshean-feature-card__top .oshean-feature-card__title,
.oshean-feature-card__top + .oshean-feature-card__title {
  margin-top: 1.1rem;
}

.oshean-feature-card__services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.1rem 0 0;
}

.oshean-feature-card__pill {
  background: var(--color-wash);
  border-radius: var(--radius-pill);
  color: var(--color-link-strong);
  font-size: 0.74rem;
  font-weight: 800;
  padding: 0.4rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.oshean-feature-card__pill:hover,
.oshean-feature-card__pill:focus-visible {
  background: var(--color-ocean-600);
  color: #ffffff;
}

.oshean-feature-card--security .oshean-feature-card__pill {
  background: color-mix(in srgb, var(--color-leaf-500) 12%, #ffffff);
  color: var(--color-leaf-text);
}

.oshean-feature-card--security .oshean-feature-card__pill:hover,
.oshean-feature-card--security .oshean-feature-card__pill:focus-visible {
  background: var(--color-leaf-600);
  color: #ffffff;
}

.oshean-feature-card--cloud .oshean-feature-card__pill {
  background: color-mix(in srgb, var(--color-teal-500) 12%, #ffffff);
  color: var(--color-teal-text);
}

.oshean-feature-card--cloud .oshean-feature-card__pill:hover,
.oshean-feature-card--cloud .oshean-feature-card__pill:focus-visible {
  background: var(--color-teal-600);
  color: #ffffff;
}

.oshean-feature-card__link {
  margin-top: 1.35rem;
}

/* ---------------------------------------------------------------------------
   Services page explorer — expandable pillar cards + service panels
   --------------------------------------------------------------------------- */
.oshean-service-explorer {
  margin-top: 1.1rem;
}

button.oshean-services-pillar-card {
  -webkit-appearance: none;
  appearance: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
  width: 100%;
}

.oshean-service-explorer .oshean-services-pillar-card > span:not(.oshean-services-pillar-card__action) {
  display: block;
}

.oshean-service-explorer .oshean-services-pillar-card__top {
  display: flex;
}

.oshean-service-explorer .oshean-services-pillar-card__icon {
  flex: 0 0 auto;
}

.oshean-service-explorer .oshean-services-pillar-card__icon::before {
  content: none;
}

.oshean-services-pillar-card__icon .oshean-icon {
  height: 1.65rem;
  width: 1.65rem;
}

.oshean-service-explorer .oshean-services-pillar-card__action {
  align-items: center;
  color: var(--color-link);
  display: inline-flex;
  justify-content: center;
}

.oshean-services-pillar-card__action .oshean-icon {
  height: 1.25rem;
  width: 1.25rem;
}

.oshean-services-pillar-card__action-check {
  display: none;
}

/* Active (expanded) pillar card — dark treatment mirroring v4 */
.oshean-services-pillar-card.is-active {
  background: color-mix(in srgb, var(--color-soft) 68%, var(--color-panel));
  border-color: var(--color-teal-400);
  color: var(--color-copy);
}

.oshean-services-pillar-card.is-active .oshean-services-pillar-card__title,
.oshean-services-pillar-card.is-active .oshean-services-pillar-card__lead {
  color: var(--color-heading);
}

.oshean-services-pillar-card.is-active .oshean-services-pillar-card__copy {
  color: var(--color-copy);
}

.oshean-services-pillar-card.is-active .oshean-services-pillar-card__action {
  color: var(--color-link);
}

.oshean-services-pillar-card.is-active .oshean-services-pillar-card__action-arrow {
  display: none;
}

.oshean-services-pillar-card.is-active .oshean-services-pillar-card__action-check {
  display: inline-flex;
}

/* Expanded pillar service panel */
.oshean-pillar-menu {
  margin-top: 1.05rem;
}

.oshean-pillar-panel {
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-tile);
  display: grid;
  gap: 0;
  grid-template-columns: 0.85fr 1.15fr;
  overflow: hidden;
}

.oshean-pillar-panel[hidden] {
  display: none;
}

.oshean-pillar-panel--security {
  border-color: color-mix(in srgb, var(--color-leaf-500) 35%, transparent);
}

.oshean-pillar-panel--cloud {
  border-color: color-mix(in srgb, var(--color-teal-500) 35%, transparent);
}

.oshean-pillar-panel__aside {
  background: var(--color-wash);
  padding: clamp(1rem, 2vw, 1.35rem);
}

.oshean-pillar-panel__title {
  font-size: clamp(1.45rem, 2.6vw, 1.8rem);
  margin: 0 0 0.55rem;
}

.oshean-pillar-panel__blurb {
  color: var(--color-copy);
  line-height: 1.5;
  margin: 0;
}

.oshean-pillar-panel__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.oshean-pillar-panel__chip {
  background: color-mix(in srgb, var(--color-ocean-100) 70%, #ffffff);
  border-radius: var(--radius-pill);
  color: var(--color-link-strong);
  font-size: 0.74rem;
  font-weight: 800;
  padding: 0.35rem 0.7rem;
}

.oshean-pillar-panel--security .oshean-pillar-panel__chip {
  background: color-mix(in srgb, var(--color-leaf-300) 36%, #ffffff);
  color: var(--color-leaf-text);
}

.oshean-pillar-panel--cloud .oshean-pillar-panel__chip {
  background: color-mix(in srgb, var(--color-teal-300) 30%, #ffffff);
  color: var(--color-teal-text);
}

.oshean-pillar-panel__list {
  display: grid;
  gap: 0.55rem;
  padding: clamp(0.7rem, 1.6vw, 1rem);
}

.oshean-pillar-service {
  align-items: center;
  background: var(--color-panel);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-tile);
  display: grid;
  gap: 0.8rem;
  grid-template-columns: auto 1fr auto;
  padding: 0.7rem 0.85rem;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.oshean-pillar-service:hover,
.oshean-pillar-service:focus-visible {
  border-color: var(--color-line-strong);
  box-shadow: var(--shadow-tile-hover);
  transform: translateY(-0.12rem);
}

.oshean-pillar-service__icon {
  align-items: center;
  background: var(--color-ocean-600);
  border-radius: 0.75rem;
  color: #ffffff;
  display: inline-flex;
  height: 2.35rem;
  justify-content: center;
  width: 2.35rem;
}

.oshean-pillar-panel--security .oshean-pillar-service__icon {
  background: var(--color-leaf-600);
}

.oshean-pillar-panel--cloud .oshean-pillar-service__icon {
  background: var(--color-teal-500);
}

.oshean-pillar-service__icon .oshean-icon {
  height: 1.4rem;
  width: 1.4rem;
}

.oshean-pillar-service__name {
  color: var(--color-heading);
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

.oshean-pillar-service__summary {
  color: var(--color-copy);
  display: block;
  font-size: 0.88rem;
  line-height: 1.35;
  margin-top: 0.2rem;
}

.oshean-pillar-service__cta {
  align-items: center;
  color: var(--color-link);
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 800;
  gap: 0.3rem;
  white-space: nowrap;
}

.oshean-pillar-service__cta .oshean-icon {
  height: 1rem;
  width: 1rem;
}

@media (max-width: 860px) {
  .oshean-pillar-panel {
    grid-template-columns: 1fr;
  }

  .oshean-pillar-service {
    grid-template-columns: auto 1fr;
  }

  .oshean-pillar-service__cta {
    display: none;
  }
}

/* V4 services parity: compact explorer, no count pills or card chips. */
.oshean-service-explorer {
  background: var(--color-page);
  box-shadow: 0 0 0 100vmax var(--color-page);
  color: var(--color-copy);
  margin: 0 auto;
  max-width: min(57.25rem, calc(100vw - 2rem));
  padding: clamp(3.5rem, 7vw, 5rem) 0;
}

.oshean-home-services .oshean-service-explorer {
  background: transparent;
  box-shadow: none;
  margin-top: 3rem;
  padding: 0;
}

.oshean-service-explorer .oshean-services-pillar-heading {
  margin: 0 auto;
  max-width: 44rem;
}

.oshean-service-explorer .oshean-services-pillar-heading__title {
  color: var(--color-heading);
  font-size: clamp(2rem, 3.4vw, 2.5rem);
  max-width: 18ch;
}

.oshean-service-explorer .oshean-services-pillar-heading__copy {
  color: var(--color-copy);
  font-size: 1rem;
  line-height: 1.55;
  margin-top: 1rem;
  max-width: 42rem;
}

.oshean-service-explorer .oshean-services-pillar-grid {
  gap: 1.25rem;
  margin-top: 2.8rem;
}

.oshean-service-explorer .oshean-services-pillar-card {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--color-wash) 72%, transparent), transparent 42%),
    var(--color-panel);
  border-color: color-mix(in srgb, var(--color-ocean-500) 36%, var(--color-line));
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-tile);
  color: var(--color-copy);
  min-height: 20rem;
  padding: 1.2rem 1.2rem 3.45rem;
}

.oshean-service-explorer .oshean-services-pillar-card--security {
  border-color: color-mix(in srgb, var(--color-leaf-500) 36%, var(--color-line));
}

.oshean-service-explorer .oshean-services-pillar-card--cloud {
  border-color: color-mix(in srgb, var(--color-teal-500) 36%, var(--color-line));
}

.oshean-service-explorer .oshean-services-pillar-card__top {
  margin-bottom: 1.1rem;
}

.oshean-service-explorer .oshean-services-pillar-card__icon {
  border-radius: var(--radius-2xl);
  height: 2.9rem;
  width: 2.9rem;
}

.oshean-service-explorer .oshean-services-pillar-card__icon .oshean-icon {
  height: 1.45rem;
  width: 1.45rem;
}

.oshean-services-pillar-card__eyebrow,
.oshean-pillar-panel__eyebrow {
  color: var(--color-teal-text);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.oshean-services-pillar-card--security .oshean-services-pillar-card__eyebrow,
.oshean-pillar-panel--security .oshean-pillar-panel__eyebrow {
  color: var(--color-leaf-text);
}

.oshean-services-pillar-card--cloud .oshean-services-pillar-card__eyebrow,
.oshean-pillar-panel--cloud .oshean-pillar-panel__eyebrow {
  color: var(--color-teal-text);
}

.oshean-service-explorer .oshean-services-pillar-card__title {
  color: var(--color-heading);
  font-size: clamp(1.65rem, 2.4vw, 2rem);
  font-weight: 500;
  line-height: 1.05;
  margin: 0.45rem 0 0;
}

.oshean-service-explorer .oshean-services-pillar-card__lead {
  color: var(--color-heading);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0.85rem 0 0;
}

.oshean-service-explorer .oshean-services-pillar-card__copy {
  color: var(--color-copy);
  font-size: 0.86rem;
  line-height: 1.5;
  margin-top: 0.9rem;
}

.oshean-service-explorer .oshean-services-pillar-card__action {
  bottom: 1rem;
  color: var(--color-link);
  gap: 0.45rem;
  left: 1.2rem;
  right: 1.2rem;
  justify-content: flex-start;
}

.oshean-services-pillar-card__action-label {
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
}

.oshean-service-explorer .oshean-services-pillar-card__action .oshean-icon {
  height: 1.2rem;
  width: 1.2rem;
}

.oshean-service-explorer .oshean-services-pillar-card.is-active {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--color-wash) 84%, transparent), transparent 42%),
    color-mix(in srgb, var(--color-soft) 68%, var(--color-panel));
  border-color: var(--color-teal-400);
}

.oshean-service-explorer .oshean-services-pillar-card--security.is-active {
  border-color: var(--color-leaf-500);
}

.oshean-service-explorer .oshean-services-pillar-card--cloud.is-active {
  border-color: var(--color-teal-500);
}

.oshean-service-explorer .oshean-pillar-menu {
  margin-top: 0.75rem;
}

.oshean-service-explorer .oshean-pillar-panel {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: var(--color-copy);
  display: block;
  overflow: visible;
}

.oshean-service-explorer .oshean-pillar-panel[hidden] {
  display: none;
}

.oshean-service-explorer .oshean-pillar-panel__summary {
  background: var(--color-panel);
  border: 1px solid color-mix(in srgb, var(--color-ocean-500) 36%, var(--color-line));
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-tile);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
}

.oshean-service-explorer .oshean-pillar-panel--security .oshean-pillar-panel__summary {
  border-color: color-mix(in srgb, var(--color-leaf-500) 40%, var(--color-line));
}

.oshean-service-explorer .oshean-pillar-panel--cloud .oshean-pillar-panel__summary {
  border-color: color-mix(in srgb, var(--color-teal-500) 40%, var(--color-line));
}

.oshean-service-explorer .oshean-pillar-panel__aside {
  background: color-mix(in srgb, var(--color-wash) 82%, var(--color-panel));
  padding: 1rem 1.1rem;
}

.oshean-service-explorer .oshean-pillar-panel__title {
  color: var(--color-heading);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  margin: 0.35rem 0 0.45rem;
}

.oshean-service-explorer .oshean-pillar-panel__blurb {
  color: var(--color-copy);
  font-size: 0.85rem;
  line-height: 1.42;
}

.oshean-service-explorer .oshean-pillar-panel__chips {
  margin-top: 0.8rem;
}

.oshean-service-explorer .oshean-pillar-panel__chip {
  background: color-mix(in srgb, var(--color-wash) 82%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-ocean-400) 30%, var(--color-line));
  color: var(--color-link-strong);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.32rem 0.65rem;
}

.oshean-service-explorer .oshean-pillar-panel--security .oshean-pillar-panel__chip {
  background: color-mix(in srgb, var(--color-leaf-500) 18%, var(--color-wash));
  border-color: color-mix(in srgb, var(--color-leaf-500) 34%, var(--color-line));
  color: var(--color-leaf-text);
}

.oshean-service-explorer .oshean-pillar-panel--cloud .oshean-pillar-panel__chip {
  background: color-mix(in srgb, var(--color-teal-500) 18%, var(--color-wash));
  border-color: color-mix(in srgb, var(--color-teal-400) 34%, var(--color-line));
  color: var(--color-teal-text);
}

.oshean-service-explorer .oshean-pillar-panel__list {
  gap: 0.42rem;
  padding: 0.55rem;
}

.oshean-service-explorer .oshean-pillar-service {
  background: color-mix(in srgb, var(--color-wash) 74%, var(--color-panel));
  border-color: var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: none;
  gap: 0.55rem;
  padding: 0.48rem 0.6rem;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.oshean-service-explorer .oshean-pillar-service:hover,
.oshean-service-explorer .oshean-pillar-service:focus-visible {
  background: color-mix(in srgb, var(--color-soft) 72%, var(--color-panel));
  border-color: color-mix(in srgb, var(--color-teal-400) 36%, var(--color-line));
  transform: translateY(-0.08rem);
}

.oshean-service-explorer .oshean-pillar-service__icon {
  border-radius: var(--radius-lg);
  height: 2rem;
  width: 2rem;
}

.oshean-service-explorer .oshean-pillar-service__icon .oshean-icon {
  height: 1.1rem;
  width: 1.1rem;
}

.oshean-service-explorer .oshean-pillar-service__name {
  color: var(--color-heading);
  font-size: 0.84rem;
  font-weight: 800;
}

.oshean-service-explorer .oshean-pillar-service__summary {
  color: var(--color-copy);
  font-size: 0.72rem;
  line-height: 1.25;
  margin-top: 0.12rem;
}

.oshean-service-explorer .oshean-pillar-service__cta {
  color: var(--color-link);
  font-size: 0.72rem;
  font-weight: 800;
}

.oshean-service-explorer .oshean-pillar-service__cta .oshean-icon {
  height: 0.95rem;
  width: 0.95rem;
}

.oshean-pillar-capabilities {
  margin-top: 2.25rem;
}

.oshean-pillar-capabilities__heading {
  margin: 0 auto 1.35rem;
  max-width: 38rem;
  text-align: center;
}

.oshean-pillar-capabilities__eyebrow,
.oshean-pillar-capabilities__group-title {
  color: var(--color-teal-text);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0;
  text-transform: uppercase;
}

.oshean-pillar-panel--security .oshean-pillar-capabilities__eyebrow,
.oshean-pillar-panel--security .oshean-pillar-capabilities__group-title {
  color: var(--color-leaf-text);
}

.oshean-pillar-capabilities__title {
  color: var(--color-heading);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  margin: 0.35rem 0 0;
}

.oshean-pillar-capabilities__copy {
  color: var(--color-copy);
  font-size: 0.82rem;
  line-height: 1.45;
  margin: 0.5rem auto 0;
  max-width: 34rem;
}

.oshean-pillar-capabilities__group-title {
  margin: 1.3rem 0 0.65rem;
}

.oshean-pillar-capabilities__grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.oshean-pillar-capability-card {
  background: var(--color-panel);
  border: 1px solid color-mix(in srgb, var(--color-ocean-500) 36%, var(--color-line));
  border-radius: var(--radius-lg);
  display: grid;
  gap: 0.7rem;
  grid-template-columns: auto 1fr;
  padding: 0.75rem;
}

.oshean-pillar-panel--security .oshean-pillar-capability-card {
  border-color: color-mix(in srgb, var(--color-leaf-500) 40%, var(--color-line));
}

.oshean-pillar-panel--cloud .oshean-pillar-capability-card {
  border-color: color-mix(in srgb, var(--color-teal-500) 40%, var(--color-line));
}

.oshean-pillar-capability-card__icon {
  align-items: center;
  background: var(--color-ocean-600);
  border-radius: var(--radius-lg);
  color: #ffffff;
  display: inline-flex;
  height: 2rem;
  justify-content: center;
  width: 2rem;
}

.oshean-pillar-panel--security .oshean-pillar-capability-card__icon {
  background: var(--color-leaf-600);
}

.oshean-pillar-panel--cloud .oshean-pillar-capability-card__icon {
  background: var(--color-teal-500);
}

.oshean-pillar-capability-card__icon .oshean-icon {
  height: 1.1rem;
  width: 1.1rem;
}

.oshean-pillar-capability-card__title {
  color: var(--color-heading);
  font-size: 0.86rem;
  margin: 0 0 0.35rem;
}

.oshean-pillar-capability-card__items {
  color: var(--color-copy);
  font-size: 0.72rem;
  line-height: 1.35;
  margin: 0;
  padding-left: 1rem;
}

.oshean-pillar-capability-card__items li + li {
  margin-top: 0.2rem;
}

@media (max-width: 860px) {
  .oshean-service-explorer {
    max-width: min(36rem, calc(100vw - 2rem));
    padding: clamp(2.5rem, 7vw, 4rem) 0;
  }

  .oshean-home-services .oshean-service-explorer {
    padding: 0;
  }

  .oshean-service-explorer .oshean-services-pillar-grid,
  .oshean-service-explorer .oshean-pillar-panel__summary,
  .oshean-pillar-capabilities__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------------------------------------------
   Service detail aside — contact card + related services + CTA
   --------------------------------------------------------------------------- */
.oshean-service-contact-card {
  background:
    radial-gradient(circle at 85% 0%, rgb(41 185 214 / 0.22), transparent 15rem),
    var(--color-ocean-950);
  border-radius: var(--radius-2xl);
  color: #ffffff;
  margin-top: 1.5rem;
  padding: 1.5rem;
}

.oshean-service-contact-card__title {
  color: #ffffff;
  font-size: 1.1rem;
  margin: 0;
}

.oshean-service-contact-card__copy {
  color: var(--color-ocean-100);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0.6rem 0 0;
}

.oshean-service-contact-card .wp-block-buttons {
  margin-top: 1.1rem;
}

.oshean-service-related {
  border-top: 1px solid var(--color-line);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}

.oshean-service-related h2 {
  color: var(--color-muted, #5b6b78);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.oshean-service-related__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.oshean-service-related__list li + li {
  margin-top: 0.35rem;
}

.oshean-service-related__item {
  align-items: center;
  border-radius: 0.65rem;
  display: flex;
  gap: 0.75rem;
  padding: 0.5rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.oshean-service-related__item:hover,
.oshean-service-related__item:focus-visible {
  background: var(--color-wash);
}

.oshean-service-related__icon {
  align-items: center;
  background: var(--color-ocean-600);
  border-radius: 0.55rem;
  color: #ffffff;
  display: inline-flex;
  height: 2.25rem;
  justify-content: center;
  width: 2.25rem;
}

.oshean-service-related__item--security .oshean-service-related__icon {
  background: var(--color-leaf-600);
}

.oshean-service-related__item--cloud .oshean-service-related__icon {
  background: var(--color-teal-500);
}

.oshean-service-related__icon .oshean-icon {
  height: 1.15rem;
  width: 1.15rem;
}

.oshean-service-related__name {
  color: var(--color-heading);
  font-size: 0.92rem;
  font-weight: 800;
}

.oshean-service-related__all {
  align-items: center;
  color: var(--color-link);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 800;
  gap: 0.35rem;
  margin-top: 0.75rem;
  padding: 0.5rem;
  text-decoration: none;
}

.oshean-service-related__all .oshean-icon {
  height: 1rem;
  width: 1rem;
}

.oshean-service-cta {
  margin-top: 3rem;
}

/* ---------------------------------------------------------------------------
   Flow-margin reset for horizontal layouts.

   These groups/post-templates are laid out as multi-column grids or flex rows
   by this stylesheet, but their markup carries WordPress's flow/constrained
   layout (`is-layout-flow` / `is-layout-constrained`), whose global styles
   give every child except the first `margin-block-start` equal to the block
   gap. In a row that margin pushes every sibling down 24px, so the first
   card renders higher than the rest. Spacing inside these containers comes
   from their own `gap`, so the stacking margin is dropped entirely.
   --------------------------------------------------------------------------- */
.oshean-stats-band__grid > *,
.oshean-feature-card-grid__cards > *,
.oshean-feature-card__services > *,
.oshean-network-viz-band__inner > *,
.oshean-latest-news__grid > *,
.oshean-newsletter-duo > *,
.oshean-logo-marquee__track > *,
.oshean-member-innovation > *,
.oshean-site-footer__contact-cards > *,
.oshean-footer-contact-card > *,
.oshean-two-column-prose > *,
.oshean-timeline__item > *,
.oshean-card-grid > *,
.oshean-team-grid > *,
.oshean-board-grid > *,
.oshean-faq-list__items > *,
.oshean-form-layout > *,
.oshean-event-list-card > *,
.oshean-detail-layout > * {
  margin-block-start: 0;
}

.oshean-network-viz-band__actions {
  margin-block-start: clamp(2rem, 3vw, 2.75rem);
}

/* ---------------------------------------------------------------------------
   Production navigation refinement.
   Native Navigation blocks remain the source of truth; these rules provide
   the desktop mega-menu, deliberate mobile breakpoint, accordion behavior,
   visible current state, compact search control, and reorganized footer.
   --------------------------------------------------------------------------- */
.oshean-nav-mobile-only {
  display: none !important;
}

.oshean-header-utility .oshean-command-trigger {
  border: 1px solid rgb(255 255 255 / 0.22);
  border-radius: var(--radius-pill);
  gap: 0.45rem;
  min-width: auto;
  padding: 0.3rem 0.58rem;
}

.oshean-header-utility .oshean-command-trigger__label {
  display: inline;
}

.oshean-command-trigger__shortcut {
  border: 1px solid rgb(255 255 255 / 0.24);
  border-radius: 0.35rem;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.22rem 0.32rem;
}

.oshean-primary-navigation .wp-block-navigation-item.is-current-section > .wp-block-navigation-item__content,
.oshean-primary-navigation .wp-block-navigation-item__content[aria-current="page"] {
  background: rgb(41 185 214 / 0.12);
  color: var(--color-link-strong) !important;
}

.oshean-header-main .oshean-primary-navigation > .wp-block-navigation__responsive-container:not(.is-menu-open) > .wp-block-navigation__responsive-close > .wp-block-navigation__responsive-dialog > .wp-block-navigation__responsive-container-content > .wp-block-navigation__container > .wp-block-navigation-item.is-current-section > .wp-block-navigation-item__content,
.oshean-header-main .oshean-primary-navigation > .wp-block-navigation__responsive-container:not(.is-menu-open) > .wp-block-navigation__responsive-close > .wp-block-navigation__responsive-dialog > .wp-block-navigation__responsive-container-content > .wp-block-navigation__container > .wp-block-navigation-item > .wp-block-navigation-item__content[aria-current="page"] {
  box-shadow: inset 0 -0.16rem 0 var(--color-teal-500);
}

.oshean-primary-navigation a[target="_blank"]::after,
.oshean-utility-navigation a[target="_blank"]::after,
.oshean-footer-links a[target="_blank"]::after {
  content: "↗";
  font-size: 0.75em;
  margin-left: 0.3em;
}

@media (min-width: 1200px) {
  .oshean-header-main__inner {
    flex-wrap: nowrap !important;
  }

  .oshean-primary-navigation .oshean-nav-services > .wp-block-navigation__submenu-container {
    align-items: start;
    display: grid;
    gap: 0.45rem 0.8rem;
    grid-template-columns: repeat(3, minmax(12.5rem, 1fr));
    left: 0 !important;
    min-width: 43rem;
    overflow: visible;
    padding: 0.8rem;
    right: auto !important;
    transform: none;
  }

  .oshean-primary-navigation .oshean-nav-services > .wp-block-navigation__submenu-container > .oshean-nav-overview,
  .oshean-primary-navigation .oshean-nav-services > .wp-block-navigation__submenu-container > .oshean-nav-view-all {
    grid-column: 1 / -1;
  }

  .oshean-primary-navigation .oshean-nav-services > .wp-block-navigation__submenu-container > .oshean-nav-overview {
    border-bottom: 1px solid var(--color-line);
    padding-bottom: 0.45rem;
  }

  .oshean-primary-navigation .oshean-nav-services > .wp-block-navigation__submenu-container > .oshean-nav-view-all {
    border-top: 1px solid var(--color-line);
    padding-top: 0.45rem;
  }

  .oshean-primary-navigation .oshean-nav-group {
    align-items: stretch;
    display: flex;
    flex-direction: column;
  }

  .oshean-primary-navigation .oshean-nav-group > .wp-block-navigation-item__content {
    color: var(--color-link-strong);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .oshean-primary-navigation .oshean-nav-group > .wp-block-navigation-submenu__toggle {
    display: none;
  }

  .oshean-primary-navigation .oshean-nav-group > .wp-block-navigation__submenu-container,
  .oshean-primary-navigation .oshean-nav-group:hover > .wp-block-navigation__submenu-container,
  .oshean-primary-navigation .oshean-nav-group:focus-within > .wp-block-navigation__submenu-container {
    background: transparent;
    border: 0;
    box-shadow: none;
    display: flex;
    height: auto;
    min-width: 0;
    opacity: 1;
    overflow: visible;
    padding: 0;
    position: static;
    visibility: visible;
    width: 100%;
  }

  .oshean-primary-navigation .oshean-nav-audiences > .wp-block-navigation__submenu-container {
    align-items: start;
    display: grid;
    gap: 0.45rem 0.8rem;
    grid-template-columns: repeat(3, minmax(12rem, 1fr));
    left: 0 !important;
    min-width: 45rem;
    right: auto !important;
  }

  .oshean-primary-navigation .oshean-nav-audiences > .wp-block-navigation__submenu-container > .oshean-nav-overview {
    border-bottom: 1px solid var(--color-line);
    grid-column: 1 / -1;
    margin-bottom: 0.25rem;
    padding-bottom: 0.35rem;
  }

  .oshean-primary-navigation .oshean-nav-audiences > .wp-block-navigation__submenu-container > .oshean-nav-group--audiences {
    grid-column: span 2;
  }

  .oshean-primary-navigation .oshean-nav-group--audiences > .wp-block-navigation__submenu-container,
  .oshean-primary-navigation .oshean-nav-group--audiences:hover > .wp-block-navigation__submenu-container,
  .oshean-primary-navigation .oshean-nav-group--audiences:focus-within > .wp-block-navigation__submenu-container {
    display: grid;
    gap: 0.1rem 0.45rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .oshean-primary-navigation .oshean-nav-group--membership {
    background: var(--color-wash);
    border-radius: 0.75rem;
    box-shadow: inset 0 0 0 1px var(--color-line);
    padding: 0;
  }

  .oshean-primary-navigation .oshean-nav-membership-cta > .wp-block-navigation-item__content {
    background: var(--color-leaf-500);
    color: var(--color-ocean-950);
    font-weight: 800;
    justify-content: center;
  }

  .oshean-primary-navigation .oshean-nav-membership-cta > .wp-block-navigation-item__content:hover,
  .oshean-primary-navigation .oshean-nav-membership-cta > .wp-block-navigation-item__content:focus-visible {
    background: var(--color-leaf-400);
    color: var(--color-ocean-950);
  }

  .oshean-primary-navigation .oshean-nav-resources > .wp-block-navigation__submenu-container {
    min-width: 18rem;
  }
}

.oshean-command-result-group-shell + .oshean-command-result-group-shell {
  border-top: 1px solid var(--color-line);
  margin-top: 0.35rem;
  padding-top: 0.45rem;
}

.oshean-command-result-heading {
  color: var(--color-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0.15rem 0 0.25rem;
  padding: 0 0.8rem;
  text-transform: uppercase;
}

.oshean-footer-main {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  grid-template-columns: minmax(14rem, 0.75fr) minmax(0, 2.5fr);
}

.oshean-footer-main > *,
.oshean-footer-nav-grid > * {
  margin-block-start: 0;
}

.oshean-footer-nav-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.oshean-footer-column-title {
  margin-top: 0;
}

.oshean-footer-portal {
  margin: 1rem 0 0;
}

.oshean-footer-portal a {
  color: var(--color-teal-300);
  font-size: 0.875rem;
  font-weight: 700;
}

.oshean-footer-policy-row {
  align-items: center;
}

.oshean-footer-policy-row p {
  margin: 0;
}

.oshean-footer-policy-links {
  display: flex;
  gap: 1rem;
}

.oshean-mobile-menu-utility {
  display: none;
}

@media (max-width: 1199px) {
  .oshean-header-utility__inner {
    justify-content: center;
  }

  .oshean-header-utility__support {
    display: none;
  }

  .oshean-utility-actions {
    justify-content: center;
    margin-left: 0;
    width: 100%;
  }

  .oshean-header-main__inner {
    flex-wrap: nowrap !important;
    min-height: 4.35rem;
  }

  .oshean-primary-navigation {
    flex: 0 0 auto;
    order: initial;
    width: auto;
  }

  .oshean-primary-navigation .wp-block-navigation__responsive-container-open {
    align-items: center;
    display: inline-flex !important;
    min-height: 2.75rem;
    min-width: 2.75rem;
  }

  .oshean-primary-navigation > .wp-block-navigation__responsive-container:not(.is-menu-open) {
    display: none !important;
  }

  .oshean-primary-navigation.wp-block-navigation:not(.has-background) .wp-block-navigation__responsive-container.is-menu-open:not(.disable-default-overlay) {
    overflow-x: hidden;
    overflow-y: auto;
    padding: 1rem clamp(1rem, 4vw, 2rem) 2rem;
  }

  .oshean-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
    gap: 0;
    margin: 0 auto;
    max-width: 44rem;
    padding-top: 3.5rem;
  }

  .oshean-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
    gap: 0.3rem;
  }

  .oshean-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item {
    position: relative;
  }

  .oshean-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item > .wp-block-navigation-item__content {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    max-width: 100%;
    min-height: 2.75rem;
    padding: 0.55rem 3.25rem 0.55rem 0.75rem;
  }

  .oshean-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-submenu__toggle {
    align-items: center;
    border: 1px solid var(--color-line);
    border-radius: 0.55rem;
    color: var(--color-link);
    display: inline-flex !important;
    height: 2.75rem;
    justify-content: center;
    min-width: 2.75rem;
    padding: 0;
    position: absolute;
    right: 0.12rem;
    top: 0.12rem;
    z-index: 1;
  }

  .oshean-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-submenu__toggle::after {
    content: "+";
    font-size: 1.2rem;
    line-height: 1;
  }

  .oshean-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-submenu__toggle[aria-expanded="true"]::after {
    content: "−";
  }

  .oshean-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close {
    align-items: center;
    border-radius: 0.55rem;
    display: inline-flex;
    height: 2.75rem;
    justify-content: center;
    min-height: 2.75rem;
    min-width: 2.75rem;
    width: 2.75rem;
  }

  .oshean-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-submenu__toggle svg {
    display: none;
  }

  .oshean-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container,
  .oshean-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container[hidden] {
    background: var(--color-wash) !important;
    border: 1px solid var(--color-line);
    border-radius: 0.75rem;
    box-shadow: none;
    gap: 0.15rem;
    margin: 0.2rem 0 0.55rem;
    padding: 0.35rem 0.35rem 0.35rem 0.65rem;
    position: static;
    width: 100%;
  }

  .oshean-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container[hidden] {
    display: none !important;
  }

  .oshean-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .oshean-nav-group > .wp-block-navigation-item__content {
    color: var(--color-link-strong);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .oshean-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .oshean-nav-mobile-only {
    display: flex !important;
  }

  .oshean-primary-navigation .wp-block-navigation__responsive-container.is-menu-open .oshean-nav-mobile-cta > .wp-block-navigation-item__content {
    background: var(--color-leaf-500);
    color: #082743 !important;
    font-weight: 800;
    justify-content: center;
    margin-top: 0.35rem;
    padding-right: 0.75rem;
  }

  .oshean-mobile-menu-utility {
    border-top: 1px solid var(--color-line);
    display: grid;
    gap: 0.45rem;
    margin-top: 1.1rem;
    padding-top: 1rem;
  }

  .oshean-mobile-menu-utility__title {
    color: var(--color-muted);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin: 0 0 0.15rem;
    text-transform: uppercase;
  }

  .oshean-mobile-menu-action {
    align-items: center;
    background: transparent;
    border: 1px solid var(--color-line);
    border-radius: 0.65rem;
    box-sizing: border-box;
    color: var(--color-link);
    cursor: pointer;
    display: flex;
    font: inherit;
    font-weight: 700;
    min-height: 2.75rem;
    padding: 0.6rem 0.75rem;
    text-align: left;
    text-decoration: none;
    width: 100%;
  }
}

@media (max-width: 1100px) {
  .oshean-footer-main {
    grid-template-columns: 1fr;
  }

  .oshean-footer-brand {
    max-width: 32rem;
  }

  .oshean-footer-nav-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .oshean-header-utility .oshean-command-trigger__label,
  .oshean-header-utility .oshean-command-trigger__shortcut {
    display: none;
  }

  .oshean-header-utility .oshean-command-trigger {
    min-width: 2.75rem;
    padding: 0.45rem;
  }

  .oshean-footer-nav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .oshean-footer-policy-row {
    align-items: flex-start;
    flex-direction: column;
  }
}
