:root {
  --bg: #05090d;
  --bg-2: #071014;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-2: rgba(255, 255, 255, 0.09);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f7f9ff;
  --muted: #aab4c5;
  --muted-2: #d7deea;
  --blue: #102bb4;
  --blue-2: #2e67ff;
  --cyan: #35c8ff;
  --green: #00b67a;
  --danger: #ff6577;
  --radius: 14px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 8%, rgba(46, 103, 255, 0.15), transparent 28rem),
    radial-gradient(circle at 85% 16%, rgba(53, 200, 255, 0.08), transparent 24rem),
    linear-gradient(135deg, var(--bg), var(--bg-2) 52%, var(--bg));
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  padding-bottom: 76px;
}

.staff-layout {
  padding-bottom: 0;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

p {
  color: var(--muted);
}

.button,
.icon-button {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  display: inline-flex;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}


.note-small-italic-custom {
  font-size: 0.85rem !important;
  font-style: italic !important;
  font-weight: normal !important;
  color: #666 !important;
}

.button:hover,
.icon-button:hover {
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  border-color: rgba(255, 255, 255, 0.16);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.09);
}

.site-header {
  align-items: center;
  backdrop-filter: blur(24px) saturate(1.25);
  background: rgba(4, 9, 14, 0.66);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 14px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  left: clamp(12px, 4vw, 54px);
  min-height: 64px;
  padding: 9px 11px;
  position: fixed;
  right: clamp(12px, 4vw, 54px);
  top: 18px;
  transition: background 0.2s ease, box-shadow 0.2s ease, top 0.2s ease;
  z-index: 80;
}

.site-header.is-scrolled {
  background: rgba(4, 9, 14, 0.86);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  top: 10px;
}

.brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 clamp(150px, 15vw, 230px);
  min-width: clamp(150px, 15vw, 230px);
  width: clamp(150px, 15vw, 230px);
}

.brand-logo,
.footer-logo {
  height: auto;
  max-height: 34px;
  width: auto;
}

.brand-logo {
  max-width: clamp(145px, 14vw, 200px);
  object-fit: contain;
}

.nav {
  --indicator-x: 4px;
  --indicator-y: 4px;
  --indicator-w: 0px;
  --indicator-h: 34px;
  align-items: center;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(247, 249, 255, 0.74);
  display: flex;
  font-size: 11px;
  font-weight: 800;
  gap: 3px;
  justify-self: center;
  overflow: visible;
  padding: 4px;
  position: relative;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-item {
  display: inline-flex;
  position: relative;
}

.nav-has-submenu::after {
  content: "";
  height: 12px;
  left: 0;
  position: absolute;
  right: 0;
  top: 100%;
}

.nav-submenu {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  left: 50%;
  min-width: 150px;
  opacity: 0;
  padding: 8px;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 6px);
  transform: translate(-50%, -4px);
  transition: opacity 0.16s ease, transform 0.16s ease;
  z-index: 20;
}

.nav-has-submenu:hover .nav-submenu,
.nav-has-submenu:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-submenu a {
  border-radius: 6px;
  color: var(--ink-soft);
  justify-content: flex-start;
  min-height: 38px;
  padding: 0 12px;
}

.nav-submenu a.active,
.nav-submenu a:hover {
  background: var(--surface-soft);
  color: var(--ink);
}

.nav-indicator {
  background: linear-gradient(135deg, rgba(53, 200, 255, 0.22), rgba(46, 103, 255, 0.36));
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 12px 30px rgba(53, 200, 255, 0.12);
  height: var(--indicator-h);
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translate(var(--indicator-x), var(--indicator-y));
  transition: transform 0.25s ease, width 0.25s ease, height 0.25s ease;
  width: var(--indicator-w);
}

.nav a {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  min-height: 34px;
  padding: 0 11px;
  position: relative;
  z-index: 1;
}

.nav a.active,
.nav a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
}

.header-portal {
  background: rgba(255, 255, 255, 0.93);
  border-color: rgba(255, 255, 255, 0.93);
  color: #05090d;
  min-height: 42px;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
}

.home-shell,
.page-shell {
  min-height: 70vh;
}

.page-shell {
  padding: 118px clamp(18px, 4vw, 54px) 84px;
}

.home-content,
.section-intro,
.feature-grid,
.card-grid,
.pricing-grid,
.kb-grid,
.service-icon-grid,
.brand-panel,
.about-panel,
.trust-strip,
.love-section {
  margin-inline: auto;
  max-width: 1220px;
}

.hero {
  align-items: center;
  color: white;
  display: flex;
  min-height: min(760px, 92vh);
  overflow: hidden;
  padding: 136px clamp(22px, 7vw, 118px) 96px;
  position: relative;
}

.hero-bg,
.page-hero,
.public-help,
.expert-hero {
  background:
    linear-gradient(90deg, rgba(3, 7, 38, 0.94), rgba(3, 7, 38, 0.62) 48%, rgba(3, 7, 38, 0.82)),
    url("/assets/media/hero/dc01-scaled.jpg") center / cover;
}

.hero-bg {
  filter: saturate(1.08);
  inset: 0;
  position: absolute;
}

.hero-copy {
  max-width: 940px;
  position: relative;
  z-index: 1;
}

.hero-label,
.eyebrow,
.meta {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(30px, 2.9vw, 44px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.12;
  margin-bottom: 24px;
  max-width: 900px;
}

.hero-subtitle {
  color: var(--muted-2);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 620px;
}

.rating-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 700;
}

.rating-row strong {
  color: white;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.corporate-hero {
  min-height: min(720px, 88vh);
}

.corporate-hero .hero-bg {
  background:
    linear-gradient(90deg, rgba(4, 9, 15, 0.94), rgba(7, 22, 41, 0.78) 52%, rgba(7, 17, 27, 0.88)),
    url("/assets/media/hero/dc01-scaled.jpg") center / cover;
}

.stars {
  display: inline-flex;
  gap: 3px;
}

.stars i {
  align-items: center;
  background: var(--green);
  color: white;
  display: inline-flex;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  height: 22px;
  justify-content: center;
  width: 22px;
}

.home-content {
  display: grid;
  gap: 82px;
  padding: 72px clamp(18px, 4vw, 54px) 96px;
}

.corporate-home {
  gap: 68px;
}

.signal-strip {
  align-items: stretch;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: -112px auto 8px;
  max-width: 980px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.signal-strip article {
  background: rgba(5, 10, 16, 0.76);
  padding: 20px 22px;
  text-align: center;
}

.signal-strip strong {
  color: white;
  display: block;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1;
}

.signal-strip span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-top: 8px;
  text-transform: uppercase;
}

.corporate-metrics {
  border-radius: 10px;
  max-width: 1100px;
}

.corporate-metrics article {
  background: rgba(8, 14, 22, 0.92);
}

.corporate-overview,
.section-heading-row {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 0.45fr);
  margin-inline: auto;
  max-width: 1220px;
}

.corporate-overview h2,
.section-heading-row h2,
.package-card h3,
.testimonial-section h2,
.capability-grid h3 {
  color: white;
}

.corporate-overview h2,
.section-heading-row h2 {
  font-size: clamp(28px, 2.7vw, 42px);
  line-height: 1.12;
  margin-bottom: 0;
}

.corporate-overview p,
.section-heading-row p {
  color: var(--muted-2);
  font-size: 17px;
  margin: 0;
}

.capability-grid,
.package-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-inline: auto;
  max-width: 1220px;
}

.capability-grid article,
.package-card,
.testimonial-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.capability-grid article {
  padding: 28px;
}

.capability-grid span,
.package-type {
  color: var(--cyan);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.capability-grid h3,
.package-card h3 {
  font-size: 24px;
  line-height: 1.18;
  margin-bottom: 12px;
}

.package-section,
.testimonial-section {
  display: grid;
  gap: 24px;
}

.package-card {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.package-card .button {
  align-self: end;
  justify-self: start;
  margin-top: 6px;
}

.package-price {
  color: white;
  font-size: 22px;
  font-weight: 900;
  margin: 0;
}

.package-card ul {
  color: var(--muted-2);
  margin: 0;
  padding-left: 20px;
}

.package-card li + li {
  margin-top: 7px;
}

.testimonial-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  margin-inline: calc(clamp(18px, 4vw, 54px) * -1);
  padding: 64px clamp(18px, 4vw, 54px);
}

.testimonial-section .section-heading-row,
.testimonial-track {
  max-width: 1220px;
  width: 100%;
}

.carousel-controls {
  display: flex;
  gap: 8px;
  justify-self: end;
}

.carousel-controls button {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: white;
  display: inline-flex;
  font-size: 18px;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.testimonial-track {
  display: grid;
  margin-inline: auto;
}

.testimonial-card {
  display: none;
  gap: 20px;
  min-height: 280px;
  padding: clamp(26px, 4vw, 44px);
}

.testimonial-card.is-active {
  display: grid;
}

.testimonial-stars {
  color: #15c98f;
  font-size: 20px;
  letter-spacing: 0.08em;
}

.testimonial-card blockquote {
  color: white;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 700;
  line-height: 1.28;
  margin: 0;
  max-width: 980px;
}

.testimonial-card p {
  margin: 0;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  color: white;
  font-size: 18px;
}

.corporate-trust {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 28px;
}

.corporate-trust h2 {
  color: var(--muted-2);
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.home-layout:not(.staff-layout) {
  background: #eef3f8;
  color: #0b1724;
}

body.standard-layout:not(.staff-layout) {
  background: #eef3f8;
  color: #0b1724;
}

.home-layout p {
  color: #43546a;
}

.standard-layout:not(.staff-layout) p {
  color: #43546a;
}

.ow-hero {
  background:
    linear-gradient(120deg, rgba(8, 18, 39, 0.94), rgba(14, 54, 108, 0.82)),
    url("/assets/media/hero/dc01-scaled.jpg") center / cover;
  color: white;
  min-height: 690px;
  padding: 142px clamp(18px, 6vw, 86px) 76px;
}

.ow-home-hero {
  background:
    linear-gradient(120deg, rgba(3, 21, 54, 0.92), rgba(15, 91, 154, 0.72)),
    url("/assets/media/hero/dc01-scaled.jpg") center / cover;
}

.ow-business-hero {
  background:
    linear-gradient(120deg, rgba(2, 10, 22, 0.94), rgba(11, 48, 94, 0.78)),
    url("/assets/media/hero/dc01-scaled.jpg") center / cover;
}

.ow-hero-inner {
  align-items: end;
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  margin-inline: auto;
  max-width: 1220px;
}

.ow-hero-copy {
  max-width: 760px;
}

.ow-hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 24px;
}

.ow-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  max-width: 690px;
}

.ow-actions,
.ow-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.ow-proof-row {
  gap: 10px;
}

.ow-proof-row span {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: white;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 12px;
}

.ow-hero-panel {
  background: white;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  color: #0b1724;
  display: grid;
  gap: 12px;
  padding: 28px;
}

.ow-hero-panel p {
  color: #1161c6;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}

.ow-hero-panel h2 {
  font-size: 32px;
  line-height: 1.05;
  margin: 0;
}

.ow-hero-panel strong {
  color: #0b1724;
  font-size: 24px;
}

.ow-hero-panel span {
  color: #526174;
}

.ow-hero-panel a {
  align-items: center;
  background: #102bb4;
  border-radius: 8px;
  color: white;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  margin-top: 10px;
  min-height: 48px;
  padding: 0 18px;
}

.ow-page {
  display: grid;
  gap: 72px;
  margin-inline: auto;
  max-width: 1220px;
  padding: 0 clamp(16px, 4vw, 54px) 92px;
}

.ow-metrics {
  background: white;
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(22, 45, 72, 0.12);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: -42px;
  overflow: hidden;
}

.ow-metrics article {
  background: white;
  padding: 24px;
}

.ow-metrics strong {
  color: #071827;
  display: block;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.ow-metrics span {
  color: #526174;
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-top: 9px;
  text-transform: uppercase;
}

.ow-split,
.ow-section-head,
.ow-cta {
  align-items: end;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.42fr);
}

.ow-split h2,
.ow-section-head h2,
.ow-band h2,
.ow-cta h2 {
  color: #071827;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02;
  margin-bottom: 16px;
}

.ow-split p:not(.eyebrow),
.ow-section-head p:not(.eyebrow) {
  color: #43546a;
  font-size: 18px;
  line-height: 1.65;
}

.ow-tile-list {
  display: grid;
  gap: 12px;
}

.ow-tile-list a {
  background: white;
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  display: grid;
  gap: 5px;
  padding: 20px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.ow-tile-list a:hover {
  border-color: #1161c6;
  transform: translateY(-2px);
}

.ow-tile-list strong {
  color: #071827;
  font-size: 19px;
}

.ow-tile-list span {
  color: #526174;
}

.ow-packages {
  display: grid;
  gap: 24px;
}

.ow-package-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ow-package-card {
  background: white;
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  box-shadow: 0 16px 45px rgba(20, 43, 69, 0.1);
  display: grid;
  gap: 14px;
  padding: 28px;
}

.ow-package-card:nth-child(2) {
  border-color: #1161c6;
  box-shadow: 0 22px 60px rgba(17, 97, 198, 0.18);
}

.ow-package-card p {
  color: #1161c6;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}

.ow-package-card h3 {
  color: #071827;
  font-size: 28px;
  line-height: 1.08;
  margin: 0;
}

.ow-package-card strong {
  color: #071827;
  font-size: 25px;
}

.ow-package-card span,
.ow-package-card li {
  color: #526174;
}

.ow-package-card ul {
  margin: 0;
  padding-left: 20px;
}

.ow-package-card .button {
  align-self: end;
  margin-top: 8px;
}

.ow-band {
  background: #071827;
  border-radius: 8px;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
  padding: clamp(28px, 5vw, 56px);
}

.ow-band h2,
.ow-band .eyebrow {
  color: white;
}

.ow-band p {
  color: #b7c6d8;
}

.ow-reasons {
  display: grid;
  gap: 14px;
}

.ow-reasons article {
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 20px;
}

.ow-reasons h3 {
  color: white;
  margin-bottom: 7px;
}

.ow-testimonials {
  background: white;
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  display: grid;
  gap: 24px;
  padding: clamp(24px, 4vw, 44px);
}

.ow-testimonials .testimonial-card {
  background: #f5f8fc;
  border-color: #dbe4ef;
  box-shadow: none;
}

.ow-testimonials .testimonial-card blockquote,
.ow-testimonials .testimonial-card strong {
  color: #071827;
}

.ow-testimonials .testimonial-card span {
  color: #526174;
}

.company-reviews {
  display: grid;
  gap: 24px;
}

.company-review-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.company-review-grid article {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  box-shadow: 0 16px 45px rgba(20, 43, 69, 0.1);
  display: grid;
  gap: 12px;
  padding: 28px;
}

.company-review-grid h3 {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.15;
  margin: 0;
}

.company-review-grid p {
  color: var(--ink-soft);
  line-height: 1.62;
  margin: 0;
}

.company-review-grid strong {
  color: var(--accent);
  font-size: 14px;
}

.company-timeline {
  background:
    radial-gradient(circle at 12% 8%, rgba(53, 200, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(26, 54, 83, 0.12);
  display: grid;
  gap: clamp(28px, 4vw, 46px);
  overflow: visible;
  padding: clamp(32px, 5vw, 70px);
  position: relative;
}

.company-timeline__head {
  max-width: 760px;
}

.company-timeline__head h2 {
  color: var(--ink);
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1;
  margin: 0 0 16px;
}

.company-timeline__head p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.62;
  margin: 0;
}

.company-timeline__rail {
  display: grid;
  gap: 0;
  position: relative;
}

.company-timeline__rail::before {
  background: linear-gradient(180deg, rgba(46, 103, 255, 0.98), rgba(53, 200, 255, 0.38));
  border-radius: 999px;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  width: 3px;
}

.company-timeline__rail article {
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(170px, 0.24fr) minmax(0, 1fr);
  min-height: clamp(170px, 22vw, 280px);
  padding: 0 0 clamp(26px, 4.5vw, 58px) 36px;
  position: relative;
}

.company-timeline__rail article::before {
  background: #ffffff;
  border: 4px solid var(--brand-2);
  border-radius: 50%;
  content: "";
  height: 16px;
  left: 0;
  position: absolute;
  top: 12px;
  transform: translateX(-50%);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
  width: 16px;
  z-index: 2;
}

.company-timeline__rail article.is-current::before {
  background: var(--brand-2);
  border-color: #ffffff;
  box-shadow: 0 0 0 8px rgba(46, 103, 255, 0.14), 0 16px 30px rgba(46, 103, 255, 0.26);
  transform: translateX(-50%) scale(1.12);
}

.company-timeline__rail article > span {
  align-self: start;
  background: rgba(233, 242, 255, 0.94);
  border: 1px solid #cfe0f3;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(46, 103, 255, 0.12);
  color: var(--brand-2);
  font-size: clamp(20px, 2.1vw, 30px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  padding: 10px 16px;
  position: sticky;
  text-align: left;
  text-transform: none;
  top: 120px;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 220ms cubic-bezier(0.16, 1, 0.3, 1), color 180ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
}

.company-timeline__rail article.is-current > span {
  background: var(--brand-2);
  border-color: var(--brand-2);
  box-shadow: 0 18px 42px rgba(46, 103, 255, 0.24);
  color: #ffffff;
  transform: translateY(6px) scale(1.03);
}

.company-timeline__rail article:nth-child(odd) > span,
.company-timeline__rail article:nth-child(even) > span {
  grid-column: 1;
  justify-self: start;
}

.company-timeline__rail article:nth-child(even) > div,
.company-timeline__rail article > div {
  grid-column: 2;
  grid-row: 1;
}

.company-timeline__rail article > div {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: grid;
  gap: clamp(16px, 2vw, 28px);
  grid-template-columns: minmax(0, 0.85fr) minmax(220px, 0.78fr);
  max-width: 860px;
  padding: 0;
  position: relative;
}

.company-timeline__rail article > div::before {
  display: none;
}

.company-timeline__rail strong {
  color: var(--brand-2);
  display: block;
  font-size: 12px;
  grid-column: 1;
  letter-spacing: 0.14em;
  margin: 0 0 -6px;
  text-transform: uppercase;
}

.company-timeline__rail h3 {
  color: var(--ink);
  font-size: clamp(28px, 3.2vw, 42px);
  grid-column: 1;
  line-height: 1.08;
  margin: 0;
}

.company-timeline__rail p {
  color: var(--ink-soft);
  font-size: clamp(17px, 1.45vw, 21px);
  grid-column: 1;
  line-height: 1.55;
  margin: 0;
}

.company-timeline__rail img {
  align-self: center;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(26, 54, 83, 0.14);
  display: block;
  grid-column: 2;
  grid-row: 1 / 4;
  height: auto;
  margin: 0;
  object-fit: cover;
  width: 100%;
}

.ow-logo-strip {
  background: #071827;
  border-radius: 8px;
  padding: 28px;
  text-align: center;
}

.ow-logo-strip p {
  color: #b7c6d8;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.ow-logo-strip div {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ow-logo-strip img {
  filter: brightness(0) invert(1);
  margin-inline: auto;
  max-height: 36px;
  max-width: 142px;
  opacity: 0.86;
}

.ow-cta {
  background: linear-gradient(135deg, #102bb4, #1161c6);
  border-radius: 8px;
  padding: clamp(28px, 5vw, 54px);
}

.ow-cta h2,
.ow-cta .eyebrow {
  color: white;
}

.ow-cta .button {
  background: white;
  color: #071827;
  justify-self: end;
}

.migration-process {
  background:
    linear-gradient(135deg, rgba(7, 24, 39, 0.96), rgba(17, 97, 198, 0.9)),
    url("/assets/media/hero/dc01-scaled.jpg") center / cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(20, 43, 69, 0.18);
  padding: clamp(22px, 4vw, 38px);
}

.migration-process article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
  min-height: 230px;
}

.migration-process span {
  background: rgba(255, 255, 255, 0.96);
  color: #1161c6;
}

.migration-process h2 {
  color: #ffffff;
}

.migration-process p {
  color: rgba(255, 255, 255, 0.78);
}

.migration-benefits {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.migration-benefits article {
  background: var(--surface);
  border: 1px solid #cfe0f3;
  border-top: 5px solid #1161c6;
  border-radius: 8px;
  box-shadow: 0 16px 45px rgba(20, 43, 69, 0.1);
  display: grid;
  gap: 12px;
  min-height: 270px;
  padding: 28px;
}

.migration-benefits span {
  align-items: center;
  background: #e9f2ff;
  border: 1px solid #cfe0f3;
  border-radius: 50%;
  color: #1161c6;
  display: inline-flex;
  font-size: 18px;
  font-weight: 900;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.migration-benefits h2 {
  color: var(--ink);
  font-size: 26px;
  line-height: 1.12;
  margin: 0;
}

.migration-benefits p {
  color: var(--ink-soft);
  line-height: 1.62;
  margin: 0;
}

.migration-cta {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(7, 24, 39, 0.95), rgba(17, 97, 198, 0.9)),
    url("/assets/media/hero/company-server-hardware.jpg") center / cover;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  overflow: hidden;
  position: relative;
}

.migration-cta::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.migration-cta > * {
  position: relative;
  z-index: 1;
}

.migration-cta p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.62;
  margin: 14px 0 0;
  max-width: 780px;
}

.migration-cta__actions {
  display: grid;
  gap: 10px;
  min-width: min(100%, 260px);
}

.migration-cta .button {
  min-height: 48px;
  width: 100%;
}

.migration-cta .button.primary {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  color: #071827;
}

.migration-cta .button.secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.34);
  color: #ffffff;
}

.home-layout .content-card,
.home-layout .price-card {
  background: white;
  border-color: #dbe4ef;
  box-shadow: 0 16px 45px rgba(20, 43, 69, 0.1);
}

.home-layout .content-card h3,
.home-layout .price-card h2 {
  color: #071827;
}

.home-layout .section-intro h2 {
  color: #071827;
}

.standard-layout:not(.staff-layout) .section-intro h2,
.standard-layout:not(.staff-layout) .article h1,
.standard-layout:not(.staff-layout) .prose h2 {
  color: #071827;
}

.ow-subhero {
  background:
    linear-gradient(120deg, rgba(3, 21, 54, 0.92), rgba(15, 91, 154, 0.72)),
    url("/assets/media/hero/dc01-scaled.jpg") center / cover;
  color: white;
  margin: -118px calc(clamp(18px, 4vw, 54px) * -1) 0;
  min-height: 440px;
  padding: 150px clamp(18px, 6vw, 86px) 74px;
}

.ow-subhero h1 {
  font-size: clamp(38px, 5vw, 66px);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 18px;
  max-width: 900px;
}

.ow-subhero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.58;
  max-width: 760px;
}

.ow-help-subhero {
  display: grid;
  justify-items: start;
}

.ow-standard-page {
  padding-top: 56px;
}

.ow-media-split,
.ow-contact-layout {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.ow-media-split img {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(22, 45, 72, 0.14);
  object-fit: cover;
  width: 100%;
}

.ow-media-split h2,
.ow-contact-layout h2 {
  color: #071827;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
  margin-bottom: 18px;
}

.ow-media-split p,
.ow-contact-layout p {
  font-size: 18px;
  line-height: 1.65;
}

.ow-contact-info {
  align-items: start;
}

.ow-contact-cards {
  display: grid;
  gap: 14px;
}

.ow-contact-card {
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(22, 45, 72, 0.1);
  color: var(--ink);
  display: grid;
  gap: 8px;
  grid-template-columns: auto minmax(0, 1fr);
  padding: 20px;
}

.ow-contact-card .icon {
  color: var(--accent);
  height: 24px;
  margin-top: 2px;
  width: 24px;
}

.ow-contact-card strong,
.ow-contact-card span,
.ow-contact-card em {
  grid-column: 2;
}

.ow-contact-card strong {
  color: var(--ink);
  font-size: 18px;
}

.ow-contact-card span {
  color: var(--ink-soft);
  line-height: 1.55;
}

.ow-contact-card em {
  color: var(--accent);
  font-style: normal;
  font-weight: 800;
}

.ow-contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.ow-contact-social a {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.ow-contact-social a:hover {
  background: var(--surface-soft);
  color: var(--accent);
}

.quote-page {
  max-width: 1040px;
}

.quote-intro {
  align-items: start;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) 320px;
  margin-bottom: 36px;
}

.quote-intro h2 {
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  margin-bottom: 16px;
}

.quote-intro p,
.quote-intro li {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
}

.quote-intro ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding-left: 22px;
}

.quote-intro aside {
  background: var(--surface-soft);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  display: grid;
  gap: 10px;
  padding: 24px;
}

.quote-intro aside .icon {
  color: var(--accent);
  height: 28px;
  width: 28px;
}

.quote-intro aside strong {
  color: var(--ink);
  font-size: 18px;
}

.quote-intro aside p {
  font-size: 15px;
  margin: 0;
}

.quote-form {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  box-shadow: 0 22px 60px rgba(22, 45, 72, 0.11);
  gap: 0;
  max-width: none;
  overflow: hidden;
}

.quote-form fieldset {
  border: 0;
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 34px;
}

.quote-form fieldset + fieldset {
  border-top: 1px solid var(--border-soft);
}

.quote-form legend {
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  padding: 0 8px 0 0;
}

.quote-form legend span {
  color: var(--accent);
  font-size: 14px;
  margin-right: 8px;
}

.quote-field-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.standard-layout:not(.staff-layout) .quote-form label {
  color: var(--ink);
}

.standard-layout:not(.staff-layout) .quote-form input,
.standard-layout:not(.staff-layout) .quote-form textarea,
.standard-layout:not(.staff-layout) .quote-form select {
  background: #fff;
  border-color: #bdcada;
  color: var(--ink);
}

.standard-layout:not(.staff-layout) .quote-form input:focus,
.standard-layout:not(.staff-layout) .quote-form textarea:focus,
.standard-layout:not(.staff-layout) .quote-form select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 101, 255, 0.12);
  outline: 0;
}

.quote-form textarea {
  min-height: 130px;
}

.quote-form select[multiple] {
  min-height: 190px;
}

.quote-form small {
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.45;
}

.quote-submit {
  align-items: center;
  background: var(--surface-soft);
  border-top: 1px solid var(--border-soft);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 24px 34px;
}

.quote-submit > div {
  align-items: center;
  color: var(--ink-soft);
  display: flex;
  font-size: 14px;
  gap: 10px;
}

.quote-submit .icon {
  color: var(--accent);
  flex: 0 0 auto;
  height: 20px;
  width: 20px;
}

.quote-submit .button {
  flex: 0 0 auto;
}

.quote-honeypot {
  left: -10000px !important;
  position: absolute !important;
}

.quote-notice {
  background: #e8f8f0;
  border: 1px solid #91d7b4;
  border-radius: 10px;
  color: #075b38;
  display: grid;
  gap: 4px;
  margin-bottom: 24px;
  padding: 16px 18px;
}

.quote-notice span {
  color: inherit;
}

.quote-notice-error {
  background: #fff0f1;
  border-color: #efb3b9;
  color: #8e1e2b;
}

.quote-hero {
  min-height: 360px;
}

.quote-wizard-shell {
  align-items: start;
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 1fr);
}

.quote-intro-restored {
  margin-bottom: 52px;
}

.quote-intro-restored ul {
  list-style: none;
  padding: 0;
}

.quote-intro-restored li {
  align-items: start;
  display: grid;
  gap: 13px;
  grid-template-columns: 30px minmax(0, 1fr);
}

.quote-intro-restored li > span {
  align-items: center;
  background: #edf4ff;
  border-radius: 50%;
  color: var(--accent);
  display: inline-flex;
  height: 28px;
  justify-content: center;
  margin-top: 2px;
  width: 28px;
}

.quote-intro-restored li .icon {
  height: 16px;
  stroke-width: 3;
  width: 16px;
}

.quote-intro-restored li div {
  display: grid;
  gap: 2px;
}

.quote-intro-restored li strong {
  color: var(--ink);
  font-size: 16px;
}

.quote-intro-restored li small {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

.quote-intro-restored aside {
  background: linear-gradient(145deg, #f5f8fc, #eaf2fb);
  border-color: #cfdeed;
  box-shadow: 0 18px 45px rgba(22, 45, 72, 0.08);
}

.quote-intro-restored aside a {
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  margin-top: 4px;
}

.quote-form-heading {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.quote-form-heading h2 {
  color: var(--ink);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  margin: 0;
}

.quote-form-heading .eyebrow {
  margin-bottom: 7px;
}

.quote-heading-trust {
  align-items: center;
  color: var(--ink-soft);
  display: flex;
  font-size: 13px;
  gap: 9px;
  line-height: 1.4;
  max-width: 270px;
}

.quote-heading-trust .icon {
  color: var(--accent);
  flex: 0 0 auto;
  height: 21px;
  width: 21px;
}

.quote-wizard-aside {
  background: linear-gradient(145deg, #071827, #102f4e);
  border-radius: 16px;
  box-shadow: 0 22px 55px rgba(7, 24, 39, 0.18);
  color: white;
  padding: 30px;
  position: sticky;
  top: 120px;
}

.quote-wizard-aside h2 {
  font-size: 30px;
  line-height: 1.08;
  margin-bottom: 16px;
}

.quote-wizard-aside > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.quote-trust {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  font-size: 13px;
  gap: 10px;
  line-height: 1.45;
  margin-top: 28px;
  padding-top: 22px;
}

.quote-trust .icon {
  color: #76a9ff;
  flex: 0 0 auto;
  height: 22px;
  width: 22px;
}

.quote-wizard {
  min-height: 570px;
}

.quote-progress {
  align-items: center;
  background: var(--surface-soft);
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  gap: 20px;
  padding: 18px 34px;
}

.quote-progress > div {
  background: #dce5ef;
  border-radius: 999px;
  flex: 1;
  height: 7px;
  overflow: hidden;
}

.quote-progress > div span {
  background: linear-gradient(90deg, var(--accent), #4d91ff);
  border-radius: inherit;
  display: block;
  height: 100%;
  transition: width 300ms ease;
  width: 16.666%;
}

.quote-progress p {
  color: var(--ink-soft);
  font-size: 13px;
  margin: 0;
  white-space: nowrap;
}

.quote-progress strong {
  color: var(--accent);
}

.quote-wizard .quote-step {
  align-content: start;
  min-height: 490px;
  padding: 42px;
}

.quote-wizard.is-enhanced .quote-step {
  display: none;
}

.quote-wizard.is-enhanced .quote-step.is-active {
  animation: quote-step-in 280ms ease both;
  display: grid;
}

@keyframes quote-step-in {
  from {
    opacity: 0;
    transform: translateX(12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.quote-question {
  align-content: start;
  display: grid;
  gap: 12px;
}

.quote-question > label,
.quote-question-label {
  color: var(--ink);
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.quote-question > p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
  margin: -3px 0 12px;
}

.standard-layout:not(.staff-layout) .quote-question > input,
.standard-layout:not(.staff-layout) .quote-question > textarea {
  border-radius: 12px;
  font-size: 17px;
  padding: 16px 18px;
}

.quote-option-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quote-addon-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quote-choice {
  cursor: pointer;
  display: block !important;
  position: relative;
}

.standard-layout:not(.staff-layout) .quote-choice input {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}

.quote-choice > span {
  align-items: center;
  background: #f7f9fc;
  border: 1px solid #cfdae7;
  border-radius: 11px;
  color: var(--ink);
  display: flex;
  font-size: 14px;
  font-weight: 700;
  min-height: 52px;
  padding: 12px 14px 12px 42px;
  position: relative;
  transition: 160ms ease;
}

.quote-choice > span::before {
  border: 2px solid #9cabbc;
  border-radius: 5px;
  content: '';
  height: 17px;
  left: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
}

.quote-choice input:checked + span {
  background: #edf4ff;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(0, 101, 255, 0.08);
  color: #004dbf;
}

.quote-choice input:checked + span::before {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: inset 0 0 0 4px #edf4ff;
}

.quote-choice input:focus-visible + span {
  outline: 3px solid rgba(0, 101, 255, 0.22);
  outline-offset: 2px;
}

.quote-choice-large > span {
  align-items: flex-start;
  flex-direction: column;
  min-height: 105px;
  padding: 20px 16px 16px 48px;
}

.quote-choice-large > span::before {
  border-radius: 50%;
  left: 17px;
  top: 28px;
}

.quote-choice-large strong {
  font-size: 17px;
}

.quote-choice-large small {
  font-size: 12px;
  margin-top: 4px;
}

.quote-step-controls {
  align-items: center;
  align-self: end;
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}

.quote-back {
  background: transparent;
  border: 0;
  color: var(--ink-soft);
  font-weight: 800;
  padding: 12px 4px;
}

.quote-back:hover {
  color: var(--accent);
}

.quote-review {
  background: #edf7f2;
  border: 1px solid #b8ddc9;
  border-radius: 10px;
  color: #075b38;
  margin-top: 8px;
  padding: 15px 17px;
}

.quote-review p {
  color: inherit;
  margin: 3px 0 0;
}

.ow-tile-grid,
.ow-step-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ow-tile-grid article,
.ow-step-grid article {
  background: white;
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  box-shadow: 0 16px 45px rgba(20, 43, 69, 0.1);
  display: grid;
  gap: 12px;
  padding: 28px;
}

.ow-tile-grid h2,
.ow-step-grid h2 {
  color: #071827;
  font-size: 26px;
  line-height: 1.12;
  margin: 0;
}

.ow-tile-grid p,
.ow-step-grid p {
  margin: 0;
}

.ow-tile-grid ul {
  color: #526174;
  margin: 0;
  padding-left: 20px;
}

.ow-tile-grid a,
.ow-step-grid span {
  color: #1161c6;
  font-weight: 900;
}

.service-highlight-panel {
  align-items: stretch;
  background:
    radial-gradient(circle at 12% 18%, rgba(53, 200, 255, 0.16), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(20, 43, 69, 0.1);
  color: var(--ink);
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  padding: clamp(30px, 5vw, 62px);
  position: relative;
}

.service-highlight-panel__copy {
  align-content: center;
  display: grid;
  gap: 18px;
}

.service-highlight-panel h2 {
  color: var(--ink);
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 0.98;
  margin: 0;
  max-width: 620px;
}

.service-highlight-panel p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
  max-width: 620px;
}

.service-highlight-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.service-highlight-panel__actions .button {
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  border-color: transparent;
  color: #ffffff;
}

.service-highlight-panel__actions .button.secondary {
  background: #ffffff;
  border-color: #cfe0f3;
  color: var(--brand-2);
}

.service-benefit-list {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-benefit-list article {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(20, 43, 69, 0.08);
  display: grid;
  gap: 12px;
  padding: 22px;
}

.service-benefit-list .icon {
  color: var(--brand-2);
  height: 30px;
  width: 30px;
}

.service-benefit-list strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.15;
}

.service-benefit-list span {
  color: var(--ink-soft);
  line-height: 1.55;
}

.service-love-band {
  align-items: start;
}

.service-love-band > div:first-child p:not(.eyebrow) {
  color: var(--ink-soft);
  line-height: 1.62;
  margin: 16px 0 0;
  max-width: 620px;
}

.legal-document-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.legal-policy-card {
  min-height: 252px;
}

.legal-policy-card .eyebrow {
  margin: 0;
}

.legal-support-grid {
  margin-top: 34px;
}

.legal-document-page {
  display: grid;
  gap: 20px;
  margin: 0 auto;
  max-width: 1240px;
  padding: 128px clamp(18px, 4vw, 54px) 0;
  width: 100%;
}

.legal-document-page__head {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.legal-document-page h1 {
  color: var(--ink);
  font-size: clamp(34px, 4.2vw, 58px);
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 14px;
}

.legal-document-page p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
  max-width: 760px;
}

.legal-document-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.legal-document-page iframe {
  background: #eef3f8;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(20, 43, 69, 0.12);
  height: min(86vh, 980px);
  min-height: 720px;
  width: 100%;
}

body.legal-document-layout {
  overflow: hidden;
}

body.legal-document-layout .site-header,
body.legal-document-layout .octa-footer,
body.legal-document-layout .offer-bar {
  display: none;
}

body.legal-document-layout .page-shell {
  min-height: 100vh;
  padding: 0;
}

body.standard-layout.legal-document-layout:not(.staff-layout) .page-shell {
  padding: 0;
}

body.legal-document-layout .legal-document-page {
  gap: 0;
  height: 100vh;
  max-width: none;
  padding: 0;
}

body.legal-document-layout .legal-document-page__head {
  align-items: center;
  background: var(--surface);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 10px 28px rgba(20, 43, 69, 0.08);
  min-height: 70px;
  padding: 10px clamp(14px, 2vw, 24px);
}

body.legal-document-layout .legal-document-page h1 {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.15;
  margin: 0;
}

body.legal-document-layout .legal-document-page .eyebrow {
  margin: 0 0 4px;
}

body.legal-document-layout .legal-document-page__actions .button.secondary {
  background: #eaf1f8;
  border-color: #c7d4e2;
  color: #071827;
}

body.legal-document-layout .legal-document-page__actions .button.secondary:hover,
body.legal-document-layout .legal-document-page__actions .button.secondary:focus-visible {
  background: #dbe8f4;
  border-color: #9cadbd;
  color: #071827;
}

body.legal-document-layout .legal-document-page iframe {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  height: calc(100vh - 70px);
  min-height: 0;
}

.ow-step-grid span {
  align-items: center;
  background: #e9f2ff;
  border-radius: 50%;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.ow-status {
  align-items: center;
  background: white;
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  box-shadow: 0 16px 45px rgba(20, 43, 69, 0.1);
  display: flex;
  gap: 14px;
  padding: 18px 20px;
}

.ow-status strong {
  color: #071827;
}

.ow-status span {
  background: #15c98f;
  border-radius: 50%;
  height: 10px;
  width: 10px;
}

.ow-status p {
  margin: 0;
}

.standard-layout:not(.staff-layout) .content-card,
.standard-layout:not(.staff-layout) .featured-post,
.standard-layout:not(.staff-layout) .kb-category,
.standard-layout:not(.staff-layout) .support-box,
.standard-layout:not(.staff-layout) .login-panel {
  background: white;
  border-color: #dbe4ef;
  box-shadow: 0 16px 45px rgba(20, 43, 69, 0.1);
}

.standard-layout:not(.staff-layout) .content-card h3,
.standard-layout:not(.staff-layout) .featured-post h2,
.standard-layout:not(.staff-layout) .kb-category h2,
.standard-layout:not(.staff-layout) .support-box h2 {
  color: #071827;
}

.standard-layout:not(.staff-layout) .kb-link {
  border-top-color: #dbe4ef;
}

.standard-layout:not(.staff-layout) .kb-link strong {
  color: #071827;
}

.standard-layout:not(.staff-layout) .editor-form input,
.standard-layout:not(.staff-layout) .editor-form textarea,
.standard-layout:not(.staff-layout) .editor-form select,
.standard-layout:not(.staff-layout) .rich-editor {
  background: white;
  border-color: #cbd7e5;
  color: #071827;
}

.standard-layout:not(.staff-layout) .editor-form label,
.standard-layout:not(.staff-layout) .rich-editor-field > label {
  color: #071827;
}

.standard-layout:not(.staff-layout) .rich-editor h2,
.standard-layout:not(.staff-layout) .rich-editor h3 {
  color: #071827;
}

.standard-layout:not(.staff-layout) .contact-form {
  background: white;
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  box-shadow: 0 16px 45px rgba(20, 43, 69, 0.1);
  max-width: none;
  padding: 28px;
}

.nav,
.hero-label,
.eyebrow,
.meta,
.signal-strip span,
.capability-grid span,
.package-type,
.ow-hero-panel p,
.ow-proof-row span,
.ow-metrics span,
.ow-package-card p,
.ow-logo-strip p,
.reason-list article span,
.love-grid span,
.service-icon-grid span,
.corporate-trust h2 {
  letter-spacing: 0;
  text-transform: none;
}

.eyebrow,
.hero-label,
.meta {
  font-size: 13px;
}

.section-intro {
  margin-bottom: 26px;
  text-align: center;
}

.section-intro h2,
.brand-panel h2,
.about-panel h2,
.love-section h2 {
  font-size: clamp(26px, 2.5vw, 38px);
  line-height: 1.15;
  margin-bottom: 12px;
}

.section-intro p {
  font-size: 17px;
  margin-inline: auto;
  max-width: 820px;
}

.services-overview-heading {
  align-items: center;
  background:
    radial-gradient(circle at 96% 0%, rgba(53, 200, 255, 0.14), transparent 22rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(20, 43, 69, 0.1);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.58fr);
  margin-inline: auto;
  max-width: 1220px;
  padding: clamp(24px, 3vw, 36px);
  text-align: left;
}

.services-overview-heading h2 {
  font-size: clamp(32px, 3.2vw, 48px);
  margin: 0;
}

.services-overview-heading p {
  margin: 0;
  max-width: 680px;
}

.brand-panel,
.about-panel {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.narrative-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 12% 18%, rgba(53, 200, 255, 0.12), transparent 18rem);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(20px, 3vw, 34px);
}

.brand-panel img,
.about-panel img {
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-height: 460px;
  object-fit: cover;
  width: 100%;
}

.brand-panel h2,
.about-panel h2 {
  color: white;
}

.brand-panel p,
.about-panel p,
.about-panel h3 {
  color: var(--muted-2);
  font-size: 17px;
  line-height: 1.7;
}

.text-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.text-links a {
  color: white;
  font-weight: 800;
}

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

.trust-strip h2 {
  font-size: clamp(20px, 2vw, 28px);
  margin-bottom: 28px;
}

.trust-strip div {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.trust-strip img {
  filter: brightness(0) invert(1);
  margin-inline: auto;
  max-height: 38px;
  max-width: 150px;
  opacity: 0.85;
}

.feature-grid,
.card-grid,
.pricing-grid,
.kb-grid,
.love-grid,
.reason-list,
.service-icon-grid,
.dashboard-grid {
  display: grid;
  gap: 22px;
}

.feature-grid,
.card-grid,
.pricing-grid,
.kb-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.image-grid {
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-grid,
.card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.content-card,
.price-card,
.kb-category,
.love-grid article,
.reason-list article,
.support-box,
.login-panel,
.editor-layout > article,
.manager-list,
.dashboard-grid article {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.image-card,
.content-card {
  overflow: hidden;
}

.image-card img,
.content-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.image-card div,
.content-card div,
.price-card,
.kb-category,
.love-grid article,
.reason-list article {
  padding: 24px;
}

.image-card div span {
  color: var(--cyan);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.image-card p {
  margin-bottom: 0;
}

.image-card h3,
.content-card h3,
.price-card h2,
.kb-category h2,
.love-grid h3,
.reason-list h3 {
  color: white;
  font-size: clamp(20px, 1.8vw, 27px);
  line-height: 1.2;
  margin-bottom: 10px;
}

.content-card .meta,
.article .meta {
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
}

.split-band,
.reasons-band {
  background:
    radial-gradient(circle at 22% 45%, rgba(46, 103, 255, 0.2), transparent 24rem),
    linear-gradient(90deg, rgba(13, 39, 103, 0.86), rgba(10, 18, 72, 0.9));
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  margin-inline: calc(clamp(18px, 4vw, 54px) * -1);
  padding: 64px clamp(18px, 4vw, 54px);
}

.reason-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-inline: auto;
  max-width: 1220px;
}

.reason-list article span,
.love-grid span,
.service-icon-grid span {
  color: var(--cyan);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.love-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-hero {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  margin: -118px calc(clamp(18px, 4vw, 54px) * -1) 58px;
  min-height: 330px;
  padding: 140px clamp(18px, 4vw, 54px) 64px;
  text-align: center;
}

.page-hero h1,
.help-hero h1,
.article h1,
.dashboard-head h1 {
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.12;
  margin-bottom: 12px;
}

.page-hero p,
.help-hero p {
  margin-inline: auto;
  max-width: 720px;
}

.service-icon-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 42px;
  text-align: center;
}

.service-showcase {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  margin: 0 auto 54px;
  max-width: 1220px;
}

.service-lead {
  background:
    linear-gradient(135deg, rgba(46, 103, 255, 0.18), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 80% 10%, rgba(53, 200, 255, 0.18), transparent 14rem);
  border: 1px solid var(--line);
  border-radius: 22px;
  min-height: 260px;
  padding: clamp(26px, 4vw, 46px);
}

.service-lead h2 {
  color: white;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  max-width: 720px;
}

.service-lead p:not(.eyebrow) {
  max-width: 680px;
}

.service-specs {
  align-content: stretch;
  display: grid;
  gap: 12px;
}

.service-specs span {
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: white;
  display: flex;
  font-weight: 900;
  padding: 18px 20px;
}

.compact-intro {
  margin-bottom: 18px;
}

.service-icon-grid article {
  padding: 22px 14px;
}

.service-icon-grid h2 {
  font-size: 20px;
  line-height: 1.25;
}

.price-card ul {
  color: var(--muted-2);
  padding-left: 20px;
}

.price-card li + li {
  margin-top: 8px;
}

.product-grid .price-card {
  border-top: 3px solid rgba(53, 200, 255, 0.65);
}

.product-grid .price-card:nth-child(2n) {
  border-top-color: rgba(46, 103, 255, 0.9);
  transform: translateY(18px);
}

.product-grid .price-card:nth-child(3n) {
  background: linear-gradient(180deg, rgba(46, 103, 255, 0.12), rgba(255, 255, 255, 0.035));
}

.help-hero {
  margin: -118px calc(clamp(18px, 4vw, 54px) * -1) 0;
}

.public-help,
.expert-hero {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 500px;
  padding: 138px 24px 78px;
  text-align: center;
}

.public-help h1 {
  font-size: clamp(30px, 3.2vw, 44px);
  margin-bottom: 28px;
}

.typed-help::after {
  animation: caretBlink 0.8s infinite;
  color: var(--cyan);
  content: "|";
  margin-left: 4px;
}

@keyframes caretBlink {
  0%, 45% { opacity: 1; }
  46%, 100% { opacity: 0; }
}

.search-form {
  display: flex;
  gap: 10px;
  width: min(100%, 760px);
}

.search-form input {
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  color: #111827;
  flex: 1;
  min-height: 60px;
  padding: 0 22px;
}

.search-form button {
  background: var(--blue-2);
  border: 0;
  border-radius: 12px;
  color: white;
  font-weight: 800;
  padding: 0 20px;
}

.public-help .search-form button {
  display: none;
}

.status-strip {
  align-items: center;
  background: rgba(255, 255, 255, 0.075);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 18px;
  justify-content: center;
  margin: 0 calc(clamp(18px, 4vw, 54px) * -1) 58px;
  min-height: 58px;
  padding: 14px 20px;
}

.status-strip strong {
  color: white;
}

.status-strip span {
  background: var(--cyan);
  border-radius: 50%;
  height: 10px;
  width: 10px;
}

.status-strip p {
  margin: 0;
}

.help-category-grid .kb-category {
  background: linear-gradient(135deg, rgba(46, 103, 255, 0.84), rgba(10, 28, 126, 0.84));
  min-height: 128px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.help-category-grid .kb-category:hover {
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.help-centre-page {
  display: grid;
  gap: 26px;
}

.help-overview-strip {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.help-overview-strip article,
.help-route-grid a,
.help-feature-panel,
.help-category-hero,
.help-category-nav,
.help-article-card,
.help-empty-state {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  box-shadow: 0 16px 45px rgba(20, 43, 69, 0.09);
}

.help-overview-strip article {
  align-items: center;
  display: grid;
  gap: 5px;
  grid-template-columns: auto minmax(0, 1fr);
  padding: 18px;
}

.help-overview-strip .icon,
.help-route-grid .icon,
.help-topic-card .icon,
.help-empty-state .icon {
  color: var(--brand);
  height: 26px;
  width: 26px;
}

.help-overview-strip strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.1;
}

.help-overview-strip span {
  color: var(--ink-soft);
  grid-column: 2;
}

.help-category-grid {
  align-items: stretch;
}

.help-category-grid .help-topic-card {
  background: var(--surface);
  color: var(--ink);
  min-height: 220px;
  padding: 24px;
  text-align: left;
}

.help-topic-card {
  display: grid;
  gap: 10px;
  position: relative;
}

.help-topic-card .help-card-count {
  background: color-mix(in srgb, var(--brand) 10%, var(--surface-soft));
  border: 1px solid color-mix(in srgb, var(--brand) 18%, var(--border-soft));
  border-radius: 999px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  justify-self: start;
  padding: 5px 9px;
}

.help-topic-card h2 {
  margin: 0;
}

.help-topic-card p {
  color: var(--ink-soft);
  margin: 0;
}

.help-topic-card strong {
  align-self: end;
  color: var(--brand);
}

.help-feature-panel {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
  padding: clamp(22px, 3vw, 32px);
}

.help-feature-panel h2,
.help-category-hero h2,
.help-category-nav h2,
.help-empty-state h2 {
  color: var(--ink);
  margin-bottom: 10px;
}

.help-feature-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.help-route-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.help-route-grid a {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.help-route-grid strong {
  color: var(--ink);
}

.help-route-grid span {
  color: var(--ink-soft);
}

.help-category-hero {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: clamp(22px, 3vw, 34px);
}

.help-category-hero p {
  margin: 0;
}

.help-results-layout {
  align-items: start;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
}

.help-category-nav {
  display: grid;
  gap: 8px;
  padding: 18px;
  position: sticky;
  top: 120px;
}

.help-category-nav h2 {
  font-size: 18px;
  margin: 0 0 4px;
}

.help-category-nav a {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--ink-soft);
  display: flex;
  gap: 10px;
  justify-content: space-between;
  padding: 10px 12px;
}

.help-category-nav a:hover,
.help-category-nav a:focus-visible,
.help-category-nav a.is-active {
  background: color-mix(in srgb, var(--brand) 10%, var(--surface-soft));
  border-color: color-mix(in srgb, var(--brand) 22%, var(--border-soft));
  color: var(--ink);
}

.help-category-nav em {
  color: var(--brand);
  font-style: normal;
  font-weight: 900;
}

.help-article-results {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.help-result-group {
  color: var(--ink);
  font-size: 22px;
  grid-column: 1 / -1;
  margin: 10px 0 0;
}

.help-article-card {
  display: grid;
  gap: 9px;
  padding: 20px;
}

.help-article-card span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.help-article-card strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.help-article-card p {
  color: var(--ink-soft);
  margin: 0;
}

.help-article-card em {
  color: var(--brand);
  font-style: normal;
  font-weight: 900;
}

.help-empty-state {
  display: grid;
  gap: 10px;
  grid-column: 1 / -1;
  justify-items: start;
  padding: 28px;
}

.not-found-page {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  margin-inline: auto;
  max-width: 1180px;
  min-height: calc(100vh - 320px);
}

.not-found-card,
.not-found-panel {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  box-shadow: 0 18px 54px rgba(20, 43, 69, 0.11);
  color: var(--ink);
}

.not-found-card {
  display: grid;
  gap: 20px;
  overflow: hidden;
  padding: clamp(28px, 5vw, 58px);
  position: relative;
}

.not-found-card::before {
  background:
    linear-gradient(120deg, rgba(46, 103, 255, 0.18), transparent 48%),
    radial-gradient(circle at 86% 18%, rgba(0, 191, 255, 0.2), transparent 34%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.not-found-card > * {
  position: relative;
  z-index: 1;
}

.not-found-card h1 {
  color: var(--ink);
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
  margin: 0;
  max-width: 720px;
}

.not-found-card p {
  color: var(--ink-soft);
  font-size: 18px;
  margin: 0;
  max-width: 680px;
}

.not-found-card .search-form {
  max-width: 640px;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.not-found-panel {
  align-self: stretch;
  display: grid;
  gap: 12px;
  padding: 26px;
}

.not-found-panel span {
  align-items: center;
  background: color-mix(in srgb, var(--brand) 11%, var(--surface-soft));
  border: 1px solid color-mix(in srgb, var(--brand) 22%, var(--border-soft));
  border-radius: 50%;
  color: var(--brand);
  display: inline-flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.not-found-panel .icon {
  height: 24px;
  width: 24px;
}

.not-found-panel strong {
  color: var(--ink);
  font-size: 22px;
}

.not-found-panel p {
  color: var(--ink-soft);
  margin: 0;
}

.not-found-panel a {
  align-self: end;
  color: var(--brand);
  font-weight: 900;
}

.kb-link {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 5px;
  margin-top: 14px;
  padding-top: 14px;
}

.kb-link strong {
  color: white;
}

.kb-link span {
  color: var(--muted);
}

.article {
  margin-inline: auto;
  max-width: 880px;
  padding-top: 28px;
}

.featured-post {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 20% 0%, rgba(46, 103, 255, 0.12), transparent 18rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.featured-post img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.featured-post div {
  padding: clamp(24px, 3vw, 34px);
}

.featured-post h2 {
  color: white;
  font-size: clamp(25px, 2.4vw, 36px);
  line-height: 1.12;
}

.blog-card div {
  display: grid;
  gap: 10px;
}

.blog-card h3 {
  font-size: clamp(18px, 1.4vw, 23px);
  margin-bottom: 0;
}

.empty-blog {
  min-height: 320px;
}

.blog-archive {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  margin-inline: auto;
  max-width: 1220px;
}

.blog-category-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-category-nav a {
  align-items: center;
  background: color-mix(in srgb, var(--surface) 84%, var(--brand) 16%);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  gap: 8px;
  min-height: 42px;
  padding: 9px 14px;
}

.blog-category-nav a span {
  align-items: center;
  background: color-mix(in srgb, var(--brand) 12%, var(--surface));
  border-radius: 999px;
  color: var(--brand-strong);
  display: inline-flex;
  font-size: 12px;
  justify-content: center;
  min-width: 26px;
  padding: 4px 7px;
}

.blog-category-nav a:hover,
.blog-category-nav a.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--surface);
}

.blog-category-nav a:hover span,
.blog-category-nav a.is-active span {
  background: rgba(255, 255, 255, 0.16);
  color: currentColor;
}

.blog-featured-post {
  align-items: stretch;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
}

.blog-featured-post img {
  aspect-ratio: auto;
  height: 100%;
  min-height: 360px;
}

.blog-featured-post div {
  align-content: center;
  display: grid;
  gap: 14px;
}

.blog-card .meta a,
.featured-post .meta a,
.article-header .meta a {
  color: inherit;
}

.blog-card .meta a:hover,
.featured-post .meta a:hover,
.article-header .meta a:hover {
  color: var(--brand);
}

.article h1 {
  color: white;
}

.blog-magazine-layout {
  display: grid;
  gap: clamp(20px, 3vw, 34px);
}

.blog-card-row {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card-row.is-short {
  grid-template-columns: minmax(0, 0.34fr);
}

.blog-feature-block {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
}

.blog-feature-block.is-reversed {
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
}

.blog-card-stack {
  display: grid;
  gap: 18px;
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.blog-card--large {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
}

.blog-card--large .blog-card-media img {
  aspect-ratio: 16 / 11;
  height: auto;
  object-fit: cover;
}

.blog-card--large > div {
  align-content: start;
  display: grid;
  gap: 12px;
}

.blog-card--large h3 {
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.08;
}

.blog-card--compact {
  align-items: stretch;
  display: grid;
  gap: 0;
  grid-template-columns: minmax(150px, 0.44fr) minmax(0, 0.56fr);
  min-height: 0;
}

.blog-card--compact .blog-card-media img {
  aspect-ratio: auto;
  height: 100%;
  object-fit: cover;
}

.blog-card--compact > div {
  align-content: center;
}

.blog-card--compact h3 {
  font-size: clamp(17px, 1.2vw, 21px);
}

.article-image {
  border-radius: 16px;
  margin: 26px 0;
  width: 100%;
}

.prose {
  color: var(--muted-2);
  font-size: 18px;
  line-height: 1.75;
}

.prose h2 {
  color: white;
  font-size: 26px;
  margin-top: 32px;
}

.prose a {
  color: var(--cyan);
}

.support-box {
  margin-top: 30px;
  padding: 24px;
}

.contact-form,
.login-panel {
  margin-inline: auto;
  max-width: 720px;
}

.editor-form {
  display: grid;
  gap: 16px;
}

.editor-form label {
  color: var(--muted-2);
  display: grid;
  font-size: 14px;
  font-weight: 800;
  gap: 8px;
}

.editor-form input,
.editor-form textarea,
.editor-form select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: white;
  min-height: 46px;
  padding: 12px 14px;
  width: 100%;
}

.editor-form textarea {
  min-height: 220px;
  resize: vertical;
}

.editor-form .checkbox-label {
  align-items: center;
  display: flex;
  gap: 10px;
}

.editor-form .checkbox-label input {
  min-height: auto;
  width: auto;
}

.notice {
  background: rgba(0, 182, 122, 0.16);
  border: 1px solid rgba(0, 182, 122, 0.3);
  border-radius: 12px;
  color: white;
  margin: 0 auto 22px;
  max-width: 720px;
  padding: 14px 16px;
}

.notice.danger {
  background: rgba(255, 101, 119, 0.14);
  border-color: rgba(255, 101, 119, 0.3);
}

.offer-bar {
  align-items: center;
  background: linear-gradient(90deg, #071aa5, #07118d);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px 16px 0 0;
  bottom: 0;
  box-shadow: 0 -16px 50px rgba(0, 0, 0, 0.28);
  display: flex;
  gap: 8px;
  justify-content: center;
  left: 14px;
  min-height: 62px;
  padding: 12px 64px;
  position: fixed;
  right: 14px;
  transition: transform 0.22s ease, opacity 0.22s ease;
  z-index: 90;
}

.offer-bar strong,
.offer-bar span {
  font-size: 16px;
}

.offer-bar a {
  background: white;
  border-radius: 999px;
  color: #05090d;
  font-weight: 900;
  margin-left: 16px;
  padding: 8px 24px;
}

.offer-close {
  background: transparent;
  border: 0;
  color: white;
  font-size: 26px;
  position: absolute;
  right: 18px;
}

.offer-bar.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
}

.staff-app {
  display: grid;
  gap: 24px;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 100vh;
  padding: 118px clamp(18px, 4vw, 54px) 64px;
}

.staff-sidebar,
.staff-main,
.editor-layout > article,
.manager-list,
.dashboard-grid article {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.staff-sidebar {
  align-self: start;
  display: grid;
  gap: 24px;
  padding: 22px;
  position: sticky;
  top: 96px;
}

.staff-sidebar h1 {
  font-size: 28px;
  margin: 0;
}

.staff-menu {
  display: grid;
  gap: 8px;
}

.staff-menu a {
  border-radius: 10px;
  color: var(--muted-2);
  font-weight: 800;
  padding: 12px 14px;
}

.staff-menu a.is-current,
.staff-menu a:hover {
  background: rgba(46, 103, 255, 0.24);
  color: white;
}

.staff-main {
  padding: 24px;
}

.dashboard-head {
  margin-bottom: 22px;
}

.dashboard-head h1 {
  color: white;
}

.dashboard-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dashboard-grid article {
  padding: 22px;
}

.dashboard-grid h2 {
  font-size: 42px;
  margin-bottom: 4px;
}

.editor-layout {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
}

.editor-layout > article,
.manager-list {
  padding: 22px;
}

.editor-toolbar,
.editor-actions,
.row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.editor-toolbar {
  margin-bottom: 8px;
}

.editor-toolbar button {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: white;
  font-weight: 800;
  padding: 8px 10px;
}

.rich-editor-field {
  display: grid;
  gap: 8px;
}

.rich-editor-field > label {
  color: var(--muted-2);
  font-size: 14px;
  font-weight: 800;
}

.rich-editor {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: white;
  line-height: 1.7;
  min-height: 320px;
  outline: none;
  overflow: auto;
  padding: 18px;
}

.rich-editor:focus {
  border-color: var(--blue-2);
  box-shadow: 0 0 0 3px rgba(53, 200, 255, 0.14);
}

.rich-editor h2,
.rich-editor h3,
.rich-editor p,
.rich-editor blockquote,
.rich-editor ul,
.rich-editor ol {
  margin: 0 0 16px;
}

.rich-editor h2,
.rich-editor h3 {
  color: white;
  line-height: 1.16;
}

.rich-editor h2 {
  font-size: 28px;
}

.rich-editor h3 {
  font-size: 22px;
}

.rich-editor blockquote {
  border-left: 4px solid var(--blue-2);
  color: var(--muted-2);
  padding-left: 16px;
}

.rich-editor ul,
.rich-editor ol {
  padding-left: 24px;
}

.rich-editor a {
  color: var(--cyan);
}

.manage-row {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 16px 0;
}

.manage-row:first-of-type {
  border-top: 0;
}

.manage-row strong {
  color: white;
}

.manage-row span,
.manage-row time {
  color: var(--muted);
  display: block;
}

.manager-list.compact {
  max-height: 900px;
  overflow: auto;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav {
    display: none;
  }

  .nav.open {
    background: rgba(5, 9, 14, 0.98);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    left: 12px;
    padding: 14px;
    position: absolute;
    right: 12px;
    top: 74px;
  }

  .nav.open .nav-indicator {
    display: none;
  }

  .nav.open a {
    justify-content: center;
    min-height: 42px;
  }

  .nav.open .nav-item {
    display: grid;
    width: 100%;
  }

  .nav.open .nav-submenu {
    background: transparent;
    border: 0;
    box-shadow: none;
    display: grid;
    opacity: 1;
    padding: 0;
    pointer-events: auto;
    position: static;
    transform: none;
  }

  .nav.open .nav-submenu a {
    color: var(--muted);
    min-height: 38px;
  }

  .menu-toggle {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--line);
    border-radius: 10px;
    color: white;
    display: inline-flex;
    font-weight: 800;
    justify-self: end;
    min-height: 42px;
    padding: 0 14px;
  }

  .header-actions {
    display: none;
  }

  .feature-grid,
  .card-grid,
  .pricing-grid,
  .kb-grid,
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-grid,
  .services-overview-heading,
  .corporate-overview,
  .section-heading-row,
  .service-showcase {
    grid-template-columns: 1fr;
  }

  .section-heading-row {
    align-items: start;
  }

  .carousel-controls {
    justify-self: start;
  }

  .services-overview-heading {
    align-items: start;
  }

  .product-grid .price-card:nth-child(2n) {
    transform: none;
  }

  .reason-list,
  .love-grid,
  .capability-grid,
  .package-grid,
  .ow-package-grid,
  .service-icon-grid,
  .trust-strip div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ow-hero-inner,
  .ow-split,
  .ow-section-head,
  .ow-band,
  .ow-media-split,
  .ow-contact-layout,
  .quote-intro,
  .quote-wizard-shell,
  .ow-cta,
  .service-highlight-panel {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .ow-cta .button {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .quote-field-grid {
    grid-template-columns: 1fr;
  }

  .quote-form fieldset {
    padding: 26px 20px;
  }

  .quote-submit {
    align-items: stretch;
    flex-direction: column;
    padding: 22px 20px;
  }

  .quote-submit .button {
    justify-content: center;
    width: 100%;
  }

  .quote-wizard-aside {
    padding: 24px;
    position: static;
  }

  .quote-wizard-aside h2 {
    font-size: 25px;
  }

  .quote-intro-restored {
    margin-bottom: 38px;
  }

  .quote-form-heading {
    align-items: start;
    flex-direction: column;
    gap: 12px;
  }

  .quote-wizard {
    min-height: 0;
  }

  .quote-progress {
    padding: 16px 20px;
  }

  .quote-wizard .quote-step {
    min-height: 520px;
    padding: 28px 20px 22px;
  }

  .quote-option-grid,
  .quote-addon-grid {
    grid-template-columns: 1fr;
  }

  .quote-choice-large > span {
    min-height: 76px;
  }

  .quote-step-controls .button {
    justify-content: center;
  }
}

@media (max-width: 980px) {
  .help-overview-strip,
  .help-feature-panel,
  .help-route-grid,
  .help-results-layout,
  .help-article-results {
    grid-template-columns: 1fr;
  }

  .help-category-nav {
    position: static;
  }

  .help-feature-list {
    grid-template-columns: 1fr;
  }

  .help-category-hero {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 780px) {
  body {
    padding-bottom: 104px;
  }

  .site-header {
    left: 10px;
    right: 10px;
    top: 10px;
  }

  .brand-logo {
    max-width: 155px;
  }

  .hero {
    min-height: 700px;
    padding: 118px 20px 92px;
  }

  .hero h1 {
    font-size: clamp(28px, 7.2vw, 34px);
    max-width: 100%;
  }

  .page-shell {
    padding-inline: 16px;
  }

  .home-content {
    gap: 54px;
    padding-inline: 16px;
  }

  .signal-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -64px;
  }

  .signal-strip article {
    padding: 16px 12px;
  }

  .page-hero,
  .help-hero {
    margin-inline: -16px;
  }

  .public-help,
  .expert-hero {
    min-height: 460px;
    padding-top: 122px;
  }

  .public-help h1 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .brand-panel,
  .about-panel,
  .feature-grid,
  .card-grid,
  .pricing-grid,
  .kb-grid,
  .news-grid,
  .capability-grid,
  .package-grid,
  .ow-metrics,
  .ow-package-grid,
  .ow-logo-strip div,
  .ow-tile-grid,
  .ow-step-grid,
  .service-benefit-list,
  .reason-list,
  .love-grid,
  .service-icon-grid,
  .trust-strip div,
  .staff-app,
  .editor-layout,
  .dashboard-grid.three {
    grid-template-columns: 1fr;
  }

  .status-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .search-form {
    flex-direction: column;
  }

  .offer-bar {
    align-items: flex-start;
    border-radius: 16px 16px 0 0;
    flex-direction: column;
    left: 8px;
    min-height: 104px;
    padding: 14px 58px 14px 20px;
    right: 8px;
  }

  .offer-bar a {
    margin-left: 0;
  }

  .staff-sidebar {
    position: static;
  }

  .staff-main {
    padding: 18px;
  }

  .manage-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .split-band,
  .reasons-band,
  .status-strip,
  .testimonial-section {
    margin-inline: -16px;
  }

  .testimonial-section {
    padding-inline: 16px;
  }

  .ow-hero {
    min-height: auto;
    padding: 118px 16px 54px;
  }

  .ow-subhero {
    margin-inline: -16px;
    min-height: auto;
    padding: 122px 16px 54px;
  }

  .ow-hero h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .ow-subhero h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .ow-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .ow-hero-panel,
  .ow-package-card,
  .ow-testimonials,
  .ow-band,
  .ow-cta {
    padding: 22px;
  }

  .ow-page {
    gap: 48px;
    padding-inline: 16px;
  }

  .ow-standard-page {
    padding-top: 40px;
  }

  .ow-metrics {
    margin-top: -28px;
  }

  .ow-split h2,
  .ow-section-head h2,
  .ow-band h2,
  .ow-cta h2,
  .ow-media-split h2,
  .ow-contact-layout h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .ow-status {
    align-items: flex-start;
    flex-direction: column;
  }
}

body:not(.staff-layout) .nav,
body:not(.staff-layout) .hero-label,
body:not(.staff-layout) .eyebrow,
body:not(.staff-layout) .meta,
body:not(.staff-layout) .signal-strip span,
body:not(.staff-layout) .capability-grid span,
body:not(.staff-layout) .package-type,
body:not(.staff-layout) .ow-hero-panel p,
body:not(.staff-layout) .ow-proof-row span,
body:not(.staff-layout) .ow-metrics span,
body:not(.staff-layout) .ow-package-card p,
body:not(.staff-layout) .ow-logo-strip p,
body:not(.staff-layout) .reason-list article span,
body:not(.staff-layout) .love-grid span,
body:not(.staff-layout) .service-icon-grid span,
body:not(.staff-layout) .corporate-trust h2 {
  letter-spacing: 0;
  text-transform: none;
}

:root {
  --page-bg: #eef3f8;
  --surface: #ffffff;
  --surface-soft: #f6f9fc;
  --ink: #071827;
  --ink-soft: #43546a;
  --border-soft: #dbe4ef;
  --brand: #102bb4;
  --brand-2: #1161c6;
  --header-bg: rgba(255, 255, 255, 0.86);
  --header-ink: #071827;
}

:root[data-theme="dark"] {
  --page-bg: #071014;
  --surface: #101a24;
  --surface-soft: #0c151e;
  --ink: #f7f9ff;
  --ink-soft: #b7c6d8;
  --border-soft: rgba(255, 255, 255, 0.12);
  --brand: #4b7dff;
  --brand-2: #35c8ff;
  --header-bg: rgba(8, 14, 22, 0.86);
  --header-ink: #f7f9ff;
}

body.home-layout:not(.staff-layout),
body.standard-layout:not(.staff-layout) {
  background: var(--page-bg);
  color: var(--ink);
}

body.home-layout:not(.staff-layout) p,
body.standard-layout:not(.staff-layout) p,
.ow-split p:not(.eyebrow),
.ow-section-head p:not(.eyebrow),
.ow-media-split p,
.ow-contact-layout p,
.ow-package-card span,
.ow-package-card li,
.ow-tile-list span,
.ow-tile-grid p,
.ow-step-grid p {
  color: var(--ink-soft);
}

.site-header {
  background: var(--header-bg);
  border-color: var(--border-soft);
  grid-template-columns: auto auto minmax(0, 1fr) auto;
}

.site-header,
.nav a,
.menu-toggle {
  color: var(--header-ink);
}

.audience-switch {
  align-items: center;
  background: var(--surface-soft);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  display: inline-flex;
  gap: 2px;
  padding: 4px;
}

.audience-switch a {
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 12px;
  white-space: nowrap;
}

.audience-switch a.active {
  background: var(--ink);
  color: var(--surface);
}

.nav {
  background: transparent;
  border-color: transparent;
  color: var(--ink-soft);
  justify-self: start;
}

.nav-indicator {
  background: rgba(17, 97, 198, 0.12);
  box-shadow: none;
}

.nav a.active,
.nav a:hover {
  color: var(--ink);
}

.header-actions {
  gap: 8px;
}

.theme-toggle {
  align-items: center;
  background: var(--surface-soft);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font-weight: 800;
  min-height: 42px;
  padding: 0 14px;
}

.header-portal {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--surface);
}

.ow-hero {
  background: transparent;
  min-height: auto;
  padding: 150px clamp(16px, 4vw, 54px) 34px;
}

.ow-hero-inner {
  align-items: stretch;
  background:
    linear-gradient(120deg, rgba(3, 21, 54, 0.94), rgba(15, 91, 154, 0.76)),
    url("/assets/media/hero/dc01-scaled.jpg") center / cover;
  border-radius: 14px;
  box-shadow: 0 22px 70px rgba(20, 43, 69, 0.18);
  gap: clamp(20px, 4vw, 48px);
  padding: clamp(26px, 5vw, 56px);
}

.ow-home-hero,
.ow-business-hero {
  background: transparent;
}

.ow-home-hero .ow-hero-inner {
  background:
    linear-gradient(120deg, rgba(3, 21, 54, 0.9), rgba(15, 91, 154, 0.68)),
    url("/assets/media/hero/dc01-scaled.jpg") center / cover;
}

.ow-hero h1 {
  font-size: clamp(34px, 4.6vw, 60px);
  max-width: 820px;
}

.ow-hero-panel {
  align-self: end;
  border-radius: 10px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.ow-page {
  padding-top: 26px;
}

.ow-metrics {
  margin-top: 0;
}

.ow-start-card {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  box-shadow: 0 18px 55px rgba(20, 43, 69, 0.12);
  padding: clamp(24px, 4vw, 42px);
}

.ow-start-card .ow-tile-list a {
  align-items: center;
  grid-template-columns: auto minmax(0, 1fr);
}

.ow-start-card .ow-tile-list a .icon {
  grid-row: span 2;
  margin-bottom: 0;
}

.ow-subhero {
  background: transparent;
  color: var(--ink);
  margin: 0 auto;
  max-width: 1220px;
  min-height: auto;
  padding: 0;
}

.page-shell {
  padding-top: 128px;
}

.ow-subhero {
  background:
    linear-gradient(120deg, rgba(3, 21, 54, 0.92), rgba(15, 91, 154, 0.7)),
    url("/assets/media/hero/dc01-scaled.jpg") center / cover;
  border-radius: 14px;
  box-shadow: 0 22px 70px rgba(20, 43, 69, 0.16);
  color: white;
  padding: clamp(28px, 5vw, 56px);
}

.ow-subhero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
}

.ow-standard-page {
  padding-top: 44px;
}

.ow-metrics,
.ow-tile-list a,
.ow-package-card,
.ow-testimonials,
.ow-tile-grid article,
.ow-step-grid article,
.standard-layout:not(.staff-layout) .content-card,
.standard-layout:not(.staff-layout) .featured-post,
.standard-layout:not(.staff-layout) .kb-category,
.standard-layout:not(.staff-layout) .support-box,
.standard-layout:not(.staff-layout) .login-panel,
.standard-layout:not(.staff-layout) .contact-form {
  background: var(--surface);
  border-color: var(--border-soft);
}

.ow-split h2,
.ow-section-head h2,
.ow-package-card h3,
.ow-package-card strong,
.ow-media-split h2,
.ow-contact-layout h2,
.ow-tile-grid h2,
.ow-step-grid h2,
.standard-layout:not(.staff-layout) .content-card h3,
.standard-layout:not(.staff-layout) .featured-post h2,
.standard-layout:not(.staff-layout) .kb-category h2,
.standard-layout:not(.staff-layout) .support-box h2,
.standard-layout:not(.staff-layout) .section-intro h2,
.standard-layout:not(.staff-layout) .article h1,
.standard-layout:not(.staff-layout) .prose h2,
.home-layout .section-intro h2,
.home-layout .content-card h3 {
  color: var(--ink);
}

.ow-testimonials .testimonial-card {
  background: var(--surface-soft);
}

.ow-testimonials .testimonial-card blockquote,
.ow-testimonials .testimonial-card strong {
  color: var(--ink);
}

.ow-status {
  background: var(--surface);
  border-color: var(--border-soft);
}

.ow-status strong {
  color: var(--ink);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .audience-switch {
    order: 4;
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 780px) {
  .ow-hero {
    padding: 128px 16px 26px;
  }

  .ow-hero-inner,
  .ow-subhero {
    border-radius: 10px;
    padding: 22px;
  }

  .ow-subhero {
    margin-inline: 0;
  }

  .page-shell {
    padding-top: 118px;
  }

  .audience-switch a {
    font-size: 12px;
    padding-inline: 10px;
  }
}

.ow-hero {
  padding-bottom: 24px;
}

.ow-hero-inner {
  align-items: center;
  min-height: 430px;
  padding: clamp(24px, 4vw, 42px);
}

.ow-hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 16px;
}

.ow-hero p:not(.eyebrow) {
  font-size: clamp(16px, 1.25vw, 19px);
  max-width: 650px;
}

.ow-actions,
.ow-proof-row {
  margin-top: 18px;
}

.ow-hero-panel {
  align-self: center;
}

@media (max-width: 780px) {
  .ow-hero {
    padding: 128px 16px 18px;
  }

  .ow-hero-inner {
    display: block;
    min-height: 0;
    padding: 20px;
  }

  .ow-hero h1 {
    font-size: clamp(31px, 9vw, 42px);
  }

  .ow-proof-row {
    display: none;
  }

  .ow-hero-panel {
    display: none;
  }
}

.icon {
  display: inline-block;
  fill: none;
  height: 1.15em;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  vertical-align: -0.18em;
  width: 1.15em;
}

.icon-discord,
.icon-facebook,
.icon-x {
  fill: currentColor;
  stroke: none;
}

.site-header {
  display: block;
  padding: 0;
  overflow: hidden;
}

.audience-switch {
  background: rgba(255, 255, 255, 0.58);
  border: 0;
  border-bottom: 1px solid var(--border-soft);
  border-radius: 0;
  display: flex;
  gap: 0;
  padding: 0 14px;
}

.audience-switch a {
  align-items: center;
  background: transparent;
  border-radius: 0;
  display: inline-flex;
  gap: 7px;
  min-height: 38px;
  padding: 0 14px;
}

.audience-switch a.active {
  background: var(--surface);
  color: var(--ink);
  box-shadow: inset 0 -2px 0 var(--brand);
}

:root[data-theme="dark"] .audience-switch {
  background: rgba(255, 255, 255, 0.04);
}

.header-main {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-height: 64px;
  padding: 9px 11px;
}

.brand-logo {
  max-height: 38px;
  max-width: 100%;
  min-height: 38px;
  object-fit: contain;
  width: 100%;
}

.nav {
  justify-self: center;
  min-height: 44px;
}

.theme-toggle {
  align-items: center;
  border-radius: 50%;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  min-height: 42px;
  padding: 0;
  width: 42px;
}

.theme-toggle .icon {
  display: block;
  height: 24px;
  vertical-align: 0;
  width: 24px;
}

.theme-toggle .icon-sun {
  display: none;
}

:root[data-theme="dark"] .theme-toggle .icon-moon {
  display: none;
}

:root[data-theme="dark"] .theme-toggle .icon-sun {
  display: inline-block;
}

.ow-card-icon,
.ow-metrics .icon,
.ow-tile-list .icon,
.ow-tile-grid > article > .icon,
.ow-reasons > article > .icon {
  align-items: center;
  background: color-mix(in srgb, var(--brand) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand) 22%, transparent);
  border-radius: 10px;
  color: var(--brand);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  margin-bottom: 10px;
  width: 42px;
}

.ow-card-icon .icon,
.ow-metrics .icon,
.ow-tile-list .icon,
.ow-tile-grid > article > .icon,
.ow-reasons > article > .icon {
  height: 21px;
  width: 21px;
}

.ow-proof-row span {
  align-items: center;
  display: inline-flex;
  gap: 7px;
}

.ow-proof-row .icon,
.audience-switch .icon {
  height: 16px;
  width: 16px;
}

.ow-step-grid span {
  color: var(--brand);
}

.ow-step-grid span .icon {
  height: 21px;
  width: 21px;
}

.ow-reasons > article > .icon {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  color: white;
}

@media (max-width: 1120px) {
  .header-main {
    grid-template-columns: auto 1fr auto;
  }
}

@media (max-width: 780px) {
  .audience-switch {
    display: none;
  }

  .site-header {
    border-radius: 14px;
  }

  .header-main {
    min-height: 58px;
  }

  .brand-logo {
    max-height: 32px;
    max-width: 168px;
  }

  .header-actions {
    display: flex;
  }

  .header-actions .header-portal {
    display: none;
  }

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

.site-header.is-scrolled {
  background: var(--header-bg);
  border-color: var(--border-soft);
  box-shadow: 0 18px 60px rgba(20, 43, 69, 0.16);
}

:root[data-theme="dark"] .site-header.is-scrolled {
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
}

body:not(.staff-layout) .offer-bar {
  background: var(--ink);
  border-color: var(--border-soft);
  color: var(--surface);
}

body:not(.staff-layout) .offer-bar a {
  background: var(--surface);
  color: var(--ink);
}

body:not(.staff-layout) .ow-band,
body:not(.staff-layout) .ow-logo-strip {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  box-shadow: 0 16px 45px rgba(20, 43, 69, 0.1);
  color: var(--ink);
}

body:not(.staff-layout) .ow-band h2,
body:not(.staff-layout) .ow-band .eyebrow,
body:not(.staff-layout) .ow-reasons h3 {
  color: var(--ink);
}

body:not(.staff-layout) .ow-band p,
body:not(.staff-layout) .ow-logo-strip p {
  color: var(--ink-soft);
}

body:not(.staff-layout) .ow-reasons article {
  background: var(--surface-soft);
  border: 1px solid var(--border-soft);
}

body:not(.staff-layout) .ow-reasons > article > .icon {
  background: color-mix(in srgb, var(--brand) 12%, transparent);
  border-color: color-mix(in srgb, var(--brand) 22%, transparent);
  color: var(--brand);
}

:root[data-theme="dark"] body:not(.staff-layout) .ow-band,
:root[data-theme="dark"] body:not(.staff-layout) .ow-logo-strip {
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.3);
}

body:not(.staff-layout) .ow-hero-inner,
body:not(.staff-layout) .ow-subhero,
body:not(.staff-layout) .ow-cta,
body:not(.staff-layout) .hero,
body:not(.staff-layout) .page-hero,
body:not(.staff-layout) .public-help,
body:not(.staff-layout) .expert-hero {
  color: white;
}

body:not(.staff-layout) .ow-hero-copy p:not(.eyebrow),
body:not(.staff-layout) .ow-hero-copy .ow-proof-row span,
body:not(.staff-layout) .ow-subhero p:not(.eyebrow),
body:not(.staff-layout) .ow-cta p,
body:not(.staff-layout) .hero-subtitle,
body:not(.staff-layout) .page-hero p,
body:not(.staff-layout) .public-help p,
body:not(.staff-layout) .expert-hero p {
  color: rgba(255, 255, 255, 0.88);
}

body:not(.staff-layout) .ow-hero-copy .eyebrow,
body:not(.staff-layout) .ow-subhero .eyebrow,
body:not(.staff-layout) .ow-cta .eyebrow,
body:not(.staff-layout) .page-hero .eyebrow,
body:not(.staff-layout) .public-help .eyebrow,
body:not(.staff-layout) .expert-hero .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

body:not(.staff-layout) .ow-hero-panel,
body:not(.staff-layout) .ow-hero-panel p,
body:not(.staff-layout) .ow-hero-panel span {
  color: var(--ink-soft);
}

body:not(.staff-layout) .ow-hero-panel h2,
body:not(.staff-layout) .ow-hero-panel strong {
  color: var(--ink);
}

body:not(.staff-layout) .offer-bar strong,
body:not(.staff-layout) .offer-bar span {
  color: var(--surface);
}

body:not(.staff-layout) .ow-help-subhero {
  align-items: center;
  justify-items: center;
  text-align: center;
}

body:not(.staff-layout) .ow-help-subhero h1,
body:not(.staff-layout) .ow-help-subhero p {
  margin-inline: auto;
}

body:not(.staff-layout) .ow-help-subhero h1 {
  max-width: 920px;
}

body:not(.staff-layout) .ow-help-subhero .search-form {
  margin-inline: auto;
  max-width: 760px;
  width: min(100%, 760px);
}

body.standard-layout:not(.staff-layout) .page-shell {
  padding-top: 150px;
}

body.standard-layout:not(.staff-layout) .ow-subhero {
  padding-block: clamp(30px, 5vw, 58px);
}

@media (max-width: 780px) {
  body.standard-layout:not(.staff-layout) .page-shell {
    padding-top: 128px;
  }
}

@keyframes owFadeRise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes owHeroSettle {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.992);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes owSoftSweep {
  0% {
    opacity: 0.08;
    transform: translateX(-18%) rotate(8deg);
  }

  50% {
    opacity: 0.18;
  }

  100% {
    opacity: 0.08;
    transform: translateX(18%) rotate(8deg);
  }
}

body:not(.staff-layout) .ow-hero-inner,
body:not(.staff-layout) .ow-subhero {
  animation: owHeroSettle 880ms cubic-bezier(0.16, 1, 0.3, 1) both;
  overflow: hidden;
  position: relative;
}

body:not(.staff-layout) .ow-hero-inner::before,
body:not(.staff-layout) .ow-subhero::before {
  animation: owSoftSweep 12s ease-in-out infinite;
  background: linear-gradient(115deg, transparent 12%, rgba(255, 255, 255, 0.2) 44%, transparent 68%);
  content: "";
  inset: -28% -18%;
  pointer-events: none;
  position: absolute;
}

body:not(.staff-layout) .ow-hero-copy,
body:not(.staff-layout) .ow-hero-panel,
body:not(.staff-layout) .ow-subhero > * {
  position: relative;
  z-index: 1;
}

body:not(.staff-layout) .ow-hero-copy > *,
body:not(.staff-layout) .ow-hero-panel {
  animation: owFadeRise 860ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

body:not(.staff-layout) .ow-hero-copy > :nth-child(1) {
  animation-delay: 60ms;
}

body:not(.staff-layout) .ow-hero-copy > :nth-child(2) {
  animation-delay: 120ms;
}

body:not(.staff-layout) .ow-hero-copy > :nth-child(3) {
  animation-delay: 180ms;
}

body:not(.staff-layout) .ow-hero-copy > :nth-child(4) {
  animation-delay: 240ms;
}

body:not(.staff-layout) .ow-hero-panel {
  animation-delay: 160ms;
}

body:not(.staff-layout) [data-animate="reveal"] {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition: opacity 1050ms cubic-bezier(0.16, 1, 0.3, 1), transform 1050ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

body:not(.staff-layout) [data-animate="reveal"].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

body:not(.staff-layout) .ow-package-card,
body:not(.staff-layout) .ow-start-card .ow-tile-list a,
body:not(.staff-layout) .ow-tile-grid article,
body:not(.staff-layout) .ow-reasons article,
body:not(.staff-layout) .content-card,
body:not(.staff-layout) .featured-post,
body:not(.staff-layout) .kb-category,
body:not(.staff-layout) .support-box {
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

body:not(.staff-layout) .ow-package-card:hover,
body:not(.staff-layout) .ow-start-card .ow-tile-list a:hover,
body:not(.staff-layout) .ow-tile-grid article:hover,
body:not(.staff-layout) .ow-reasons article:hover,
body:not(.staff-layout) .content-card:hover,
body:not(.staff-layout) .featured-post:hover,
body:not(.staff-layout) .kb-category:hover,
body:not(.staff-layout) .support-box:hover {
  border-color: color-mix(in srgb, var(--brand) 34%, var(--border-soft));
  box-shadow: 0 22px 58px rgba(20, 43, 69, 0.14);
  transform: translateY(-4px);
}

:root[data-theme="dark"] body:not(.staff-layout) .ow-package-card:hover,
:root[data-theme="dark"] body:not(.staff-layout) .ow-start-card .ow-tile-list a:hover,
:root[data-theme="dark"] body:not(.staff-layout) .ow-tile-grid article:hover,
:root[data-theme="dark"] body:not(.staff-layout) .ow-reasons article:hover,
:root[data-theme="dark"] body:not(.staff-layout) .company-review-grid article:hover,
:root[data-theme="dark"] body:not(.staff-layout) .content-card:hover,
:root[data-theme="dark"] body:not(.staff-layout) .featured-post:hover,
:root[data-theme="dark"] body:not(.staff-layout) .kb-category:hover,
:root[data-theme="dark"] body:not(.staff-layout) .support-box:hover {
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28);
}

body:not(.staff-layout) .testimonial-card.is-active {
  animation: owFadeRise 680ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

body:not(.staff-layout) .button,
body:not(.staff-layout) .theme-toggle,
body:not(.staff-layout) .menu-toggle {
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

body:not(.staff-layout) .button:hover,
body:not(.staff-layout) .theme-toggle:hover,
body:not(.staff-layout) .menu-toggle:hover {
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  body:not(.staff-layout) [data-animate="reveal"] {
    opacity: 1;
    transform: none;
  }
}

:root[data-theme="dark"] body:not(.staff-layout) .content-card,
:root[data-theme="dark"] body:not(.staff-layout) .featured-post,
:root[data-theme="dark"] body:not(.staff-layout) .services-overview-heading,
:root[data-theme="dark"] body:not(.staff-layout) .ow-hero-panel,
:root[data-theme="dark"] body:not(.staff-layout) .ow-start-card,
:root[data-theme="dark"] body:not(.staff-layout) .ow-tile-list a,
:root[data-theme="dark"] body:not(.staff-layout) .ow-package-card,
:root[data-theme="dark"] body:not(.staff-layout) .ow-testimonials,
:root[data-theme="dark"] body:not(.staff-layout) .ow-tile-grid article,
:root[data-theme="dark"] body:not(.staff-layout) .ow-step-grid article,
:root[data-theme="dark"] body:not(.staff-layout) .migration-benefits article,
:root[data-theme="dark"] body:not(.staff-layout) .company-review-grid article,
:root[data-theme="dark"] body:not(.staff-layout) .ow-status,
:root[data-theme="dark"] body:not(.staff-layout) .legal-document-page iframe,
:root[data-theme="dark"] body:not(.staff-layout) .home-layout .content-card,
:root[data-theme="dark"] body:not(.staff-layout) .standard-layout .content-card,
:root[data-theme="dark"] body:not(.staff-layout) .standard-layout .featured-post {
  background: var(--surface);
  border-color: var(--border-soft);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

:root[data-theme="dark"] body:not(.staff-layout) .services-overview-heading {
  background:
    radial-gradient(circle at 96% 0%, rgba(53, 200, 255, 0.13), transparent 22rem),
    var(--surface);
}

:root[data-theme="dark"] body:not(.staff-layout) .content-card h3,
:root[data-theme="dark"] body:not(.staff-layout) .content-card h3 a,
:root[data-theme="dark"] body:not(.staff-layout) .featured-post h2,
:root[data-theme="dark"] body:not(.staff-layout) .featured-post h2 a,
:root[data-theme="dark"] body:not(.staff-layout) .services-overview-heading h2,
:root[data-theme="dark"] body:not(.staff-layout) .ow-hero-panel h2,
:root[data-theme="dark"] body:not(.staff-layout) .ow-hero-panel strong,
:root[data-theme="dark"] body:not(.staff-layout) .ow-start-card h2,
:root[data-theme="dark"] body:not(.staff-layout) .ow-tile-list strong,
:root[data-theme="dark"] body:not(.staff-layout) .ow-package-card h3,
:root[data-theme="dark"] body:not(.staff-layout) .ow-package-card strong,
:root[data-theme="dark"] body:not(.staff-layout) .ow-tile-grid h2,
:root[data-theme="dark"] body:not(.staff-layout) .ow-step-grid h2,
:root[data-theme="dark"] body:not(.staff-layout) .migration-benefits h2,
:root[data-theme="dark"] body:not(.staff-layout) .company-review-grid h3,
:root[data-theme="dark"] body:not(.staff-layout) .ow-status strong,
:root[data-theme="dark"] body:not(.staff-layout) .legal-document-page h1 {
  color: var(--ink);
}

:root[data-theme="dark"] body:not(.staff-layout) .content-card .meta,
:root[data-theme="dark"] body:not(.staff-layout) .featured-post .meta,
:root[data-theme="dark"] body:not(.staff-layout) .featured-post p,
:root[data-theme="dark"] body:not(.staff-layout) .services-overview-heading p:not(.eyebrow),
:root[data-theme="dark"] body:not(.staff-layout) .ow-hero-panel p,
:root[data-theme="dark"] body:not(.staff-layout) .ow-hero-panel span,
:root[data-theme="dark"] body:not(.staff-layout) .ow-start-card p:not(.eyebrow),
:root[data-theme="dark"] body:not(.staff-layout) .ow-tile-list span,
:root[data-theme="dark"] body:not(.staff-layout) .ow-package-card span,
:root[data-theme="dark"] body:not(.staff-layout) .ow-package-card li,
:root[data-theme="dark"] body:not(.staff-layout) .ow-tile-grid p,
:root[data-theme="dark"] body:not(.staff-layout) .ow-step-grid p,
:root[data-theme="dark"] body:not(.staff-layout) .migration-benefits p,
:root[data-theme="dark"] body:not(.staff-layout) .company-review-grid p,
:root[data-theme="dark"] body:not(.staff-layout) .ow-status p,
:root[data-theme="dark"] body:not(.staff-layout) .legal-document-page p:not(.eyebrow) {
  color: var(--ink-soft);
}

:root[data-theme="dark"] body:not(.staff-layout) .migration-benefits span {
  background: #112838;
  border-color: #284759;
  color: #8fc7ff;
}

:root[data-theme="dark"] body:not(.staff-layout) .migration-process article {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.16);
}

:root[data-theme="dark"] body:not(.staff-layout) .migration-benefits article {
  border-top-color: #6eb7ff;
}

:root[data-theme="dark"] body:not(.staff-layout) .service-highlight-panel {
  background:
    radial-gradient(circle at 12% 18%, rgba(53, 200, 255, 0.14), transparent 32%),
    linear-gradient(135deg, #102037 0%, #122c55 56%, #0e4260 100%);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

:root[data-theme="dark"] body:not(.staff-layout) .service-highlight-panel h2 {
  color: #ffffff;
}

:root[data-theme="dark"] body:not(.staff-layout) .service-highlight-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

:root[data-theme="dark"] body:not(.staff-layout) .service-highlight-panel__actions .button.secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

:root[data-theme="dark"] body:not(.staff-layout) .service-benefit-list article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

:root[data-theme="dark"] body:not(.staff-layout) .service-benefit-list .icon,
:root[data-theme="dark"] body:not(.staff-layout) .service-benefit-list strong {
  color: #ffffff;
}

:root[data-theme="dark"] body:not(.staff-layout) .service-benefit-list span {
  color: rgba(255, 255, 255, 0.78);
}

:root[data-theme="dark"] body:not(.staff-layout) .company-timeline {
  background:
    radial-gradient(circle at 12% 8%, rgba(53, 200, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #0e1b24 0%, #09141b 100%);
  border-color: #20323d;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

:root[data-theme="dark"] body:not(.staff-layout) .company-timeline__head h2,
:root[data-theme="dark"] body:not(.staff-layout) .company-timeline__rail h3 {
  color: var(--ink);
}

:root[data-theme="dark"] body:not(.staff-layout) .company-timeline__head p:not(.eyebrow),
:root[data-theme="dark"] body:not(.staff-layout) .company-timeline__rail p {
  color: var(--ink-soft);
}

:root[data-theme="dark"] body:not(.staff-layout) .company-timeline__rail::before {
  background: linear-gradient(180deg, rgba(110, 183, 255, 0.98), rgba(53, 200, 255, 0.24));
}

:root[data-theme="dark"] body:not(.staff-layout) .company-timeline__rail article::before {
  background: #0e1b24;
  border-color: #6eb7ff;
}

:root[data-theme="dark"] body:not(.staff-layout) .company-timeline__rail article.is-current::before {
  background: #8fc7ff;
  border-color: #ffffff;
  box-shadow: 0 0 0 8px rgba(110, 183, 255, 0.16), 0 16px 30px rgba(0, 0, 0, 0.34);
}

:root[data-theme="dark"] body:not(.staff-layout) .company-timeline__rail article > span {
  background: rgba(17, 40, 56, 0.96);
  border-color: #284759;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  color: #8fc7ff;
}

:root[data-theme="dark"] body:not(.staff-layout) .company-timeline__rail article.is-current > span {
  background: #8fc7ff;
  border-color: #8fc7ff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  color: #071827;
}

:root[data-theme="dark"] body:not(.staff-layout) .company-timeline__rail strong {
  color: #8fc7ff;
}

:root[data-theme="dark"] body:not(.staff-layout) .company-timeline__rail img {
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.28);
}

:root[data-theme="dark"] body.legal-document-layout .legal-document-page__head {
  background: #091115;
  border-bottom-color: #20323d;
}

:root[data-theme="dark"] body.legal-document-layout .legal-document-page__actions .button.secondary {
  background: #14252f;
  border-color: #314956;
  color: #f4f8fb;
}

:root[data-theme="dark"] body.legal-document-layout .legal-document-page__actions .button.secondary:hover,
:root[data-theme="dark"] body.legal-document-layout .legal-document-page__actions .button.secondary:focus-visible {
  background: #1d3340;
  border-color: #496674;
  color: #ffffff;
}

body:not(.staff-layout) .octa-footer {
  background: linear-gradient(135deg, #0d171d 0%, #091115 58%, #071014 100%);
  border: 0;
  border-radius: 0;
  border-top: 1px solid rgba(73, 101, 116, 0.22);
  color: #8fa0aa;
  margin-top: 56px;
  padding: 0;
  position: relative;
  z-index: 1;
}

.octa-footer__inner {
  margin: 0 auto;
  max-width: 1220px;
  width: min(calc(100% - 48px), 1220px);
}

.octa-footer__main {
  align-items: center;
  display: flex;
  gap: 48px;
  justify-content: space-between;
  padding: 32px 0 28px;
}

.octa-footer__brand {
  min-width: 0;
}

.octa-footer__logo {
  align-items: center;
  display: inline-flex;
}

.octa-footer__logo img {
  display: block;
  height: auto;
  width: min(350px, 72vw);
}

body:not(.staff-layout) .octa-footer__brand p {
  color: #8fa0aa;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.65;
  margin: 13px 0 0;
  max-width: 430px;
}

.octa-footer__links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.octa-footer__links a {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 10px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
  min-height: 40px;
  padding: 0 13px;
  text-decoration: none;
  transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.octa-footer__links a .icon {
  height: 15px;
  width: 15px;
}

body:not(.staff-layout) .octa-footer__links a {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(73, 101, 116, 0.22);
  color: #b5c0c6;
}

body:not(.staff-layout) .octa-footer__links a .icon {
  color: #7d929e;
}

body:not(.staff-layout) .octa-footer__links a:hover,
body:not(.staff-layout) .octa-footer__links a:focus-visible {
  background: #192a34;
  border-color: #3d5a69;
  color: #fff;
  transform: translateY(-1px);
}

body:not(.staff-layout) .octa-footer__links a:hover .icon,
body:not(.staff-layout) .octa-footer__links a:focus-visible .icon {
  color: #fff;
}

.octa-footer__bottom {
  align-items: center;
  border-top: 1px solid rgba(73, 101, 116, 0.22);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 13px 0;
}

.octa-footer__legal {
  align-items: center;
  color: #8fa0aa;
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 800;
  gap: 10px;
  line-height: 1.5;
}

.octa-footer__legal span:first-child {
  color: #b5c0c6;
  font-weight: 900;
}

.octa-footer__separator {
  background: #40535e;
  border-radius: 50%;
  height: 3px;
  width: 3px;
}

.octa-footer__utilities,
.octa-footer__social {
  align-items: center;
  display: flex;
}

.octa-footer__utilities {
  gap: 12px;
}

.octa-footer__social {
  gap: 7px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.octa-footer__social li {
  margin: 0;
}

.octa-footer__social a,
.octa-footer__portal {
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  justify-content: center;
  text-decoration: none;
  transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.octa-footer__social a {
  width: 34px;
}

.octa-footer__portal {
  font-size: 13px;
  font-weight: 800;
  padding: 0 13px;
}

.octa-footer__social a .icon,
.octa-footer__portal .icon {
  height: 15px;
  width: 15px;
}

body:not(.staff-layout) .octa-footer__social a,
body:not(.staff-layout) .octa-footer__portal {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(73, 101, 116, 0.22);
  color: #9dafb8;
}

body:not(.staff-layout) .octa-footer__social a:hover,
body:not(.staff-layout) .octa-footer__social a:focus-visible,
body:not(.staff-layout) .octa-footer__portal:hover,
body:not(.staff-layout) .octa-footer__portal:focus-visible {
  background: #192a34;
  border-color: #3d5a69;
  color: #fff;
  transform: translateY(-1px);
}

:root[data-theme="light"] body:not(.staff-layout) .octa-footer {
  background: linear-gradient(135deg, #ffffff 0%, #f7fafc 58%, #eef4f8 100%);
  border-top-color: #dbe4ef;
  box-shadow: 0 -18px 60px rgba(20, 43, 69, 0.08);
  color: #43546a;
}

:root[data-theme="light"] body:not(.staff-layout) .octa-footer__brand p,
:root[data-theme="light"] body:not(.staff-layout) .octa-footer__legal {
  color: #526174;
}

:root[data-theme="light"] body:not(.staff-layout) .octa-footer__legal span:first-child {
  color: #071827;
}

:root[data-theme="light"] body:not(.staff-layout) .octa-footer__bottom {
  border-top-color: #dbe4ef;
}

:root[data-theme="light"] body:not(.staff-layout) .octa-footer__separator {
  background: #9cadbd;
}

:root[data-theme="light"] body:not(.staff-layout) .octa-footer__links a,
:root[data-theme="light"] body:not(.staff-layout) .octa-footer__social a,
:root[data-theme="light"] body:not(.staff-layout) .octa-footer__portal {
  background: #f6f9fc;
  border-color: #dbe4ef;
  color: #43546a;
}

:root[data-theme="light"] body:not(.staff-layout) .octa-footer__links a .icon,
:root[data-theme="light"] body:not(.staff-layout) .octa-footer__social a .icon,
:root[data-theme="light"] body:not(.staff-layout) .octa-footer__portal .icon {
  color: #526174;
}

:root[data-theme="light"] body:not(.staff-layout) .octa-footer__links a:hover,
:root[data-theme="light"] body:not(.staff-layout) .octa-footer__links a:focus-visible,
:root[data-theme="light"] body:not(.staff-layout) .octa-footer__social a:hover,
:root[data-theme="light"] body:not(.staff-layout) .octa-footer__social a:focus-visible,
:root[data-theme="light"] body:not(.staff-layout) .octa-footer__portal:hover,
:root[data-theme="light"] body:not(.staff-layout) .octa-footer__portal:focus-visible {
  background: #eaf1f8;
  border-color: #b9c8d8;
  color: #071827;
}

:root[data-theme="light"] body:not(.staff-layout) .octa-footer__links a:hover .icon,
:root[data-theme="light"] body:not(.staff-layout) .octa-footer__links a:focus-visible .icon,
:root[data-theme="light"] body:not(.staff-layout) .octa-footer__social a:hover .icon,
:root[data-theme="light"] body:not(.staff-layout) .octa-footer__social a:focus-visible .icon,
:root[data-theme="light"] body:not(.staff-layout) .octa-footer__portal:hover .icon,
:root[data-theme="light"] body:not(.staff-layout) .octa-footer__portal:focus-visible .icon {
  color: #071827;
}

@media (max-width: 991px) {
  .legal-document-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .migration-benefits {
    grid-template-columns: 1fr;
  }

  .company-review-grid {
    grid-template-columns: 1fr;
  }

  .company-timeline__rail::before {
    left: 0;
    transform: none;
  }

  .company-timeline__rail article,
  .company-timeline__rail article:nth-child(even) {
    gap: 16px;
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 0 0 46px 26px;
  }

  .company-timeline__rail article::before {
    left: 0;
    top: 11px;
  }

  .company-timeline__rail article > span,
  .company-timeline__rail article:nth-child(odd) > span,
  .company-timeline__rail article:nth-child(even) > span,
  .company-timeline__rail article:nth-child(even) > div {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
    position: static;
    text-align: left;
  }

  .company-timeline__rail article > div {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .company-timeline__rail article > span {
    font-size: 20px;
  }

  .company-timeline__rail h3 {
    font-size: 30px;
  }

  .company-timeline__rail p {
    font-size: 18px;
  }

  .company-timeline__rail img {
    aspect-ratio: 16 / 8;
    grid-column: auto;
    grid-row: auto;
  }

  .migration-process {
    grid-template-columns: 1fr;
  }

  .migration-benefits article {
    min-height: 0;
  }

  .migration-process article {
    min-height: 0;
  }

  .migration-cta {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .migration-cta__actions {
    min-width: 0;
    width: min(100%, 360px);
  }

  .legal-document-page__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-document-page__actions {
    justify-content: flex-start;
  }

  .octa-footer__main {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .octa-footer__links {
    justify-content: flex-start;
  }
}

@media (max-width: 780px) {
  .legal-document-grid {
    grid-template-columns: 1fr;
  }

  .legal-policy-card {
    min-height: 0;
  }

  .migration-benefits article,
  .migration-process,
  .company-review-grid article,
  .company-timeline,
  .migration-cta {
    padding: 22px;
  }

  .migration-cta__actions {
    width: 100%;
  }

  .legal-document-page {
    padding: 110px 16px 0;
  }

  .legal-document-page iframe {
    height: 74vh;
    min-height: 520px;
  }

  .legal-document-page__actions,
  .legal-document-page__actions .button {
    width: 100%;
  }

  body.legal-document-layout .legal-document-page__head {
    gap: 10px;
    min-height: 84px;
    padding: 10px 12px;
  }

  body.legal-document-layout .legal-document-page__actions,
  body.legal-document-layout .legal-document-page__actions .button {
    width: auto;
  }

  body.legal-document-layout .legal-document-page iframe {
    height: calc(100vh - 84px);
    min-height: 0;
  }

  body:not(.staff-layout) .octa-footer {
    margin-top: 40px;
  }

  .octa-footer__inner {
    width: calc(100% - 24px);
  }

  .octa-footer__main {
    padding: 27px 0 23px;
  }

  .octa-footer__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .octa-footer__links a {
    justify-content: center;
  }

  .octa-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 18px 0 21px;
  }

  .octa-footer__legal {
    gap: 6px 9px;
  }

  .octa-footer__utilities {
    justify-content: space-between;
    width: 100%;
  }
}

@media (max-width: 420px) {
  .octa-footer__links {
    grid-template-columns: 1fr;
  }

  .octa-footer__separator {
    display: none;
  }

  .octa-footer__legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

body.home-layout:not(.staff-layout),
body.standard-layout:not(.staff-layout) {
  padding-bottom: 0;
}

body:not(.staff-layout) .carousel-controls button {
  background: var(--surface-soft);
  border-color: var(--border-soft);
  box-shadow: 0 10px 24px rgba(20, 43, 69, 0.1);
  color: var(--ink);
}

body:not(.staff-layout) .carousel-controls button:hover,
body:not(.staff-layout) .carousel-controls button:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--surface);
}

body:not(.staff-layout) .content-card .meta,
body:not(.staff-layout) .featured-post .meta,
body:not(.staff-layout) .article .meta,
body:not(.staff-layout) .kb-link span,
body:not(.staff-layout) .testimonial-card span,
body:not(.staff-layout) .featured-post p,
body:not(.staff-layout) .content-card p {
  color: var(--ink-soft);
}

body:not(.staff-layout) .content-card h3 a,
body:not(.staff-layout) .featured-post h2 a {
  color: var(--ink);
}

.article-feature {
  max-width: 1180px;
  padding-top: 0;
}

.article-header {
  background:
    linear-gradient(120deg, rgba(3, 21, 54, 0.92), rgba(15, 91, 154, 0.72)),
    url("/assets/media/hero/dc01-scaled.jpg") center / cover;
  border-radius: 14px;
  box-shadow: 0 22px 70px rgba(20, 43, 69, 0.16);
  color: white;
  margin-bottom: 28px;
  overflow: hidden;
  padding: clamp(30px, 5vw, 58px);
  position: relative;
}

.article-header::before {
  background: linear-gradient(115deg, transparent 12%, rgba(255, 255, 255, 0.16) 44%, transparent 68%);
  content: "";
  inset: -28% -18%;
  pointer-events: none;
  position: absolute;
}

.article-header > * {
  position: relative;
  z-index: 1;
}

body:not(.staff-layout) .article-header h1,
.article-header h1 {
  color: white;
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.03;
  margin-bottom: 16px;
  max-width: 920px;
}

body:not(.staff-layout) .article-header p,
.article-header p {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 1.35vw, 20px);
  max-width: 760px;
}

body:not(.staff-layout) .article-header .meta,
.article-header .meta {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 12px;
}

.article-feature .article-image {
  aspect-ratio: 16 / 7;
  border-radius: 12px;
  box-shadow: 0 18px 60px rgba(20, 43, 69, 0.14);
  margin: 0 0 24px;
  object-fit: cover;
}

.article-body {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  box-shadow: 0 16px 45px rgba(20, 43, 69, 0.1);
  padding: clamp(22px, 4vw, 42px);
}

.article-with-aside {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
}

.sticky-support {
  margin-top: 0;
  position: sticky;
  top: 120px;
}

body:not(.staff-layout) .support-box {
  color: var(--ink);
}

body:not(.staff-layout) .support-box p {
  color: var(--ink-soft);
}

body:not(.staff-layout) .prose {
  color: var(--ink-soft);
}

body:not(.staff-layout) .prose h2,
body:not(.staff-layout) .prose h3,
body:not(.staff-layout) .prose strong,
body:not(.staff-layout) .prose th {
  color: var(--ink);
}

.prose h3 {
  font-size: 22px;
  margin-top: 28px;
}

.prose figure,
.rich-editor figure {
  margin: 26px 0;
}

.prose figure img,
.rich-editor figure img {
  border-radius: 10px;
  width: 100%;
}

.prose img[style*="width"] {
  height: auto;
  max-width: 100%;
}

.prose figcaption,
.rich-editor figcaption {
  color: var(--ink-soft);
  font-size: 13px;
  margin-top: 8px;
  text-align: center;
}

.prose table,
.rich-editor table {
  border-collapse: collapse;
  margin: 24px 0;
  overflow: hidden;
  width: 100%;
}

.prose th,
.prose td,
.rich-editor th,
.rich-editor td {
  border: 1px solid var(--border-soft);
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.prose th,
.rich-editor th {
  background: var(--surface-soft);
  font-weight: 900;
}

.help-flow {
  counter-reset: helpStep;
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.help-flow li {
  background: var(--surface-soft);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  counter-increment: helpStep;
  display: grid;
  gap: 4px;
  padding: 16px 16px 16px 58px;
  position: relative;
}

.help-flow li::before {
  align-items: center;
  background: var(--brand);
  border-radius: 50%;
  color: white;
  content: counter(helpStep);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  height: 30px;
  justify-content: center;
  left: 16px;
  position: absolute;
  top: 17px;
  width: 30px;
}

.help-flow span,
.help-flow .help-flow-body {
  color: var(--ink-soft);
}

.help-flow .help-flow-body {
  display: grid;
  gap: 12px;
}

.help-flow .help-flow-body > :first-child {
  margin-top: 0;
}

.help-flow .help-flow-body > :last-child {
  margin-bottom: 0;
}

.help-flow .help-flow-body ul,
.help-flow .help-flow-body ol {
  margin: 0;
  padding-left: 20px;
}

.article-callout,
.inline-support {
  background: color-mix(in srgb, var(--brand) 8%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--brand) 24%, var(--border-soft));
  border-radius: 10px;
  margin: 24px 0;
  padding: 18px;
}

.article-callout strong {
  color: var(--ink);
}

.article-callout p,
.inline-support p {
  margin-bottom: 0;
}

.prose hr,
.rich-editor hr {
  border: 0;
  border-top: 1px solid var(--border-soft);
  margin: 30px 0;
}

.editor-split-fields {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.editor-insert-row {
  align-items: center;
  background: rgba(255, 255, 255, 0.045);
  border: 1px dashed var(--line);
  border-radius: 10px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
}

.editor-insert-row input {
  max-width: 280px;
}

.editor-toolbar button:hover,
.editor-toolbar button:focus-visible {
  background: rgba(46, 103, 255, 0.22);
  border-color: rgba(53, 200, 255, 0.36);
}

.rich-editor .help-flow,
.rich-editor .article-callout,
.rich-editor .inline-support {
  color: var(--ink);
}

:root[data-theme="dark"] body:not(.staff-layout) .article-body,
:root[data-theme="dark"] body:not(.staff-layout) .support-box {
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

:root[data-theme="dark"] body:not(.staff-layout) .article-header {
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.3);
}

@media (max-width: 900px) {
  .article-with-aside,
  .editor-split-fields,
  .not-found-page {
    grid-template-columns: 1fr;
  }

  .sticky-support {
    position: static;
  }

  .not-found-page {
    align-items: stretch;
    min-height: 0;
  }

  .article-feature .article-image {
    aspect-ratio: 16 / 10;
  }
}

body.standard-layout:not(.staff-layout) .article .article-header h1,
body.standard-layout:not(.staff-layout) .article .article-header .meta,
body.standard-layout:not(.staff-layout) .article .article-header p {
  color: rgba(255, 255, 255, 0.88);
}

body.standard-layout:not(.staff-layout) .article .article-header h1 {
  color: #fff;
}

body.standard-layout:not(.staff-layout) .article .article-header .meta {
  color: rgba(255, 255, 255, 0.76);
}

body.standard-layout:not(.staff-layout) .article-feature {
  display: grid;
  gap: 24px;
  margin-inline: auto;
  max-width: min(100%, 1180px);
  overflow: visible;
  padding-top: 0;
}

body.standard-layout:not(.staff-layout) .article-feature .article-header {
  margin: 0;
  min-height: 260px;
  padding: clamp(30px, 5vw, 54px);
}

body.standard-layout:not(.staff-layout) .article-feature .article-header h1 {
  font-size: clamp(34px, 5vw, 68px);
  max-width: 980px;
}

body.standard-layout:not(.staff-layout) .help-article .article-header h1 {
  font-size: clamp(32px, 4.2vw, 56px);
}

body.standard-layout:not(.staff-layout) .article-body {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  box-shadow: 0 18px 54px rgba(20, 43, 69, 0.11);
  color: var(--ink);
  overflow: visible;
}

body.standard-layout:not(.staff-layout) .article-body .prose,
body.standard-layout:not(.staff-layout) .article-body .prose p,
body.standard-layout:not(.staff-layout) .article-body .prose li,
body.standard-layout:not(.staff-layout) .article-body .prose span {
  color: var(--ink-soft);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.78;
}

body.standard-layout:not(.staff-layout) .article-body .prose h2,
body.standard-layout:not(.staff-layout) .article-body .prose h3,
body.standard-layout:not(.staff-layout) .article-body .prose h4,
body.standard-layout:not(.staff-layout) .article-body .prose strong {
  color: var(--ink);
}

body.standard-layout:not(.staff-layout) .article-body .prose ul,
body.standard-layout:not(.staff-layout) .article-body .prose ol {
  display: grid;
  gap: 10px;
  margin: 20px 0;
  padding-left: 1.4em;
}

body.standard-layout:not(.staff-layout) .article-body .prose > :first-child {
  margin-top: 0;
}

body.standard-layout:not(.staff-layout) .article-body .prose > :last-child {
  margin-bottom: 0;
}

.article-spacer {
  height: 18px;
}

.guide-checklist {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.guide-checklist li {
  background: var(--surface-soft);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  display: grid;
  gap: 4px;
  padding: 16px 16px 16px 52px;
  position: relative;
}

.guide-checklist li::before {
  align-items: center;
  background: #00b67a;
  border-radius: 50%;
  color: white;
  content: "✓";
  display: inline-flex;
  font-weight: 900;
  height: 28px;
  justify-content: center;
  left: 15px;
  position: absolute;
  top: 17px;
  width: 28px;
}

.guide-accordion {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.guide-accordion details,
.prose > details,
.guide-tabs > div,
.guide-columns > div {
  background: var(--surface-soft);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 16px;
}

.guide-accordion summary,
.prose > details summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.prose > details {
  margin: 10px 0;
}

.guide-tabs,
.guide-columns {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 24px 0;
}

.guide-tabs {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.button-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.warning-callout {
  background: #fff7e8;
  border-color: #ffd99a;
}

.success-callout {
  background: #eafaf4;
  border-color: #a9ead2;
}

:root[data-theme="dark"] .warning-callout,
:root[data-theme="dark"] .success-callout {
  background: color-mix(in srgb, var(--brand) 10%, var(--surface));
  border-color: var(--border-soft);
}

.media-block {
  max-width: 100%;
}

.media-block img {
  height: auto;
  width: 100%;
}

.guide-accordion img,
.guide-tabs img,
.guide-columns img,
.guide-checklist img,
.help-flow img,
.rich-editor .guide-accordion img,
.rich-editor .guide-tabs img,
.rich-editor .guide-columns img,
.rich-editor .guide-checklist img,
.rich-editor .help-flow img {
  height: auto;
  max-width: 100%;
}

.media-block.media-left,
.media-block.media-right {
  max-width: min(46%, 420px);
}

.media-block.media-left {
  float: left;
  margin: 8px 24px 18px 0;
}

.media-block.media-right {
  float: right;
  margin: 8px 0 18px 24px;
}

.media-block.media-center {
  margin-inline: auto;
  max-width: 760px;
}

.media-block.media-full {
  max-width: none;
}

.media-embed iframe {
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 10px;
  width: 100%;
}

.staff-layout .editor-layout {
  grid-template-columns: minmax(0, 1fr);
}

.staff-layout .editor-layout > article {
  padding: clamp(18px, 2vw, 28px);
}

.pro-editor-form {
  gap: 20px;
}

.editor-meta-grid {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 16px;
}

.editor-meta-grid .editor-split-fields,
.editor-meta-grid label:last-child,
.editor-wide-field {
  grid-column: 1 / -1;
}

.editor-meta-grid textarea,
.editor-seo-panel textarea {
  min-height: 92px;
}

.editor-seo-panel {
  background: rgba(46, 103, 255, 0.08);
  border: 1px solid rgba(53, 200, 255, 0.16);
  border-radius: 14px;
  color: white;
  overflow: hidden;
}

.editor-seo-panel summary {
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
  padding: 15px 16px;
}

.editor-seo-panel p {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
  padding: 0 16px 16px;
}

.editor-seo-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0 16px 14px;
}

.editor-suite {
  background: #08111b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  overflow: visible;
}

.editor-topbar {
  align-items: center;
  background: linear-gradient(135deg, rgba(46, 103, 255, 0.22), rgba(53, 200, 255, 0.08));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding: 12px 14px;
  position: sticky;
  top: 0;
  z-index: 15;
}

.editor-topbar strong {
  color: white;
  font-size: 15px;
}

.editor-topbar div,
.editor-block-palette,
.editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.editor-topbar button,
.editor-block-palette button,
.editor-toolbar button,
.editor-toolbar select,
.editor-toolbar label,
.editor-inspector button {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: white;
  display: inline-flex;
  font-size: 13px;
  font-weight: 850;
  gap: 8px;
  min-height: 36px;
  padding: 7px 10px;
}

.editor-toolbar {
  background: rgba(255, 255, 255, 0.035);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0;
  padding: 12px 14px;
  position: sticky;
  top: 52px;
  z-index: 14;
}

.editor-toolbar select {
  min-width: 130px;
}

.editor-toolbar input[type="color"] {
  background: transparent;
  border: 0;
  height: 24px;
  min-height: 0;
  padding: 0;
  width: 34px;
}

.editor-block-palette {
  background: rgba(255, 255, 255, 0.02);
  padding: 12px 14px 14px;
  position: sticky;
  top: 108px;
  z-index: 13;
}

.editor-block-palette button {
  background: rgba(46, 103, 255, 0.16);
  border-color: rgba(53, 200, 255, 0.2);
}

.editor-canvas-grid {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) 280px;
  padding-top: 18px;
}

.editor-canvas-panel {
  min-width: 0;
}

.rich-editor {
  background: #f8fbff;
  border: 1px solid #cfdae8;
  border-radius: 12px;
  color: #071827;
  min-height: 620px;
  padding: clamp(20px, 3vw, 34px);
  scroll-margin-top: 210px;
}

.rich-editor p,
.rich-editor li,
.rich-editor span {
  color: #43546a;
}

.rich-editor h2,
.rich-editor h3,
.rich-editor h4,
.rich-editor strong {
  color: #071827;
}

.rich-editor [data-editor-block="true"] {
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 4px;
}

.rich-editor [data-editor-block="true"]:hover {
  border-color: rgba(46, 103, 255, 0.24);
}

.rich-editor .is-selected-block {
  border-color: #2e67ff;
  box-shadow: 0 0 0 3px rgba(46, 103, 255, 0.12);
}

.rich-editor .is-dragging {
  opacity: 0.45;
}

.rich-editor .is-selected-media {
  outline: 3px solid rgba(46, 103, 255, 0.42);
  outline-offset: 3px;
}

.editor-inspector {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: grid;
  gap: 12px;
  padding: 16px;
  position: sticky;
  top: 100px;
}

.editor-inspector h3 {
  color: white;
  margin: 0;
}

.editor-inspector p {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

.editor-inspector label {
  color: white;
  display: grid;
  gap: 8px;
}

.editor-inspector input[type="range"] {
  width: 100%;
}

.segmented {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.segmented button {
  justify-content: center;
}

.editor-preview {
  background: white;
  border: 1px solid #dbe4ef;
  border-radius: 12px;
  color: #071827;
  margin-top: 16px;
  padding: 28px;
}

.rich-source:not([hidden]) {
  background: #071014;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: #d7deea;
  display: block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  min-height: 260px;
  padding: 16px;
  width: 100%;
}

.is-fullscreen-editor {
  background: #05090d;
  inset: 0;
  overflow: auto;
  padding: 20px;
  position: fixed;
  z-index: 1000;
}

.is-fullscreen-editor .editor-topbar {
  top: 0;
}

.is-fullscreen-editor .editor-toolbar {
  top: 52px;
}

.is-fullscreen-editor .editor-block-palette {
  top: 108px;
}

.is-fullscreen-editor .editor-canvas-grid {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.is-fullscreen-editor .rich-editor {
  min-height: calc(100vh - 330px);
}

@media (max-width: 980px) {
  .editor-canvas-grid,
  .is-fullscreen-editor .editor-canvas-grid,
  .editor-meta-grid,
  .editor-seo-grid,
  .guide-tabs,
  .guide-columns {
    grid-template-columns: 1fr;
  }

  .editor-topbar,
  .editor-toolbar,
  .editor-block-palette {
    position: static;
  }

  .editor-inspector {
    position: static;
  }

  .media-block.media-left,
  .media-block.media-right {
    float: none;
    margin: 24px 0;
    max-width: none;
  }
}

body:not(.staff-layout) .breadcrumb,
body:not(.staff-layout) .breadcrumbs,
body:not(.staff-layout) .master-breadcrumb,
body:not(.staff-layout) [aria-label="breadcrumb"] {
  display: none !important;
}

body:not(.staff-layout) .brand {
  flex: 0 0 clamp(150px, 15vw, 230px);
  min-width: clamp(150px, 15vw, 230px);
  width: clamp(150px, 15vw, 230px);
}

body:not(.staff-layout) .brand-logo {
  display: block;
  height: 38px;
  max-height: 38px;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  width: 100%;
}

body:not(.staff-layout) .header-main {
  grid-template-columns: clamp(150px, 15vw, 230px) minmax(0, 1fr) auto;
}

body:not(.staff-layout) .site-header {
  overflow: visible;
  z-index: 220;
}

body:not(.staff-layout) .nav {
  justify-self: center;
  min-height: 44px;
}

body:not(.staff-layout) .nav-submenu {
  z-index: 240;
}

body:not(.staff-layout) .nav-indicator {
  transition: transform 0.18s ease, width 0.18s ease, height 0.18s ease;
}

@media (max-width: 980px) {
  .blog-card-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-card-row.is-short,
  .blog-feature-block,
  .blog-feature-block.is-reversed {
    grid-template-columns: 1fr;
  }

  .blog-card-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .blog-card--compact {
    grid-template-columns: 1fr;
  }

  .blog-card--compact .blog-card-media img {
    aspect-ratio: 16 / 10;
    height: auto;
  }
}

@media (max-width: 780px) {
  .blog-featured-post {
    grid-template-columns: 1fr;
  }

  .blog-featured-post img {
    aspect-ratio: 16 / 10;
    height: auto;
    min-height: 0;
  }

  .blog-card-row,
  .blog-card-stack {
    grid-template-columns: 1fr;
  }

  .blog-card--large .blog-card-media img {
    aspect-ratio: 16 / 10;
    height: auto;
  }

  body:not(.staff-layout) .brand,
  body:not(.staff-layout) .brand-logo {
    min-width: 168px;
    width: 168px;
  }

  body:not(.staff-layout) .brand-logo {
    height: 32px;
    max-height: 32px;
  }

  body:not(.staff-layout) .header-main {
    grid-template-columns: 168px 1fr auto;
  }
}

@media (max-width: 1120px) {
  body:not(.staff-layout) .menu-toggle {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    color: var(--header-ink);
    display: inline-flex;
    height: 44px;
    justify-content: center;
    min-height: 44px;
    padding: 0;
    width: 44px;
  }

  body:not(.staff-layout) .menu-toggle .icon {
    height: 26px;
    stroke-width: 2.25;
    width: 26px;
  }

  body:not(.staff-layout) .menu-toggle:hover {
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  body:not(.staff-layout) .nav {
    display: none;
  }

  body:not(.staff-layout) .nav.open {
    align-items: stretch;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    box-shadow: var(--shadow);
    color: var(--ink);
    display: grid;
    gap: 4px;
    justify-self: stretch;
    left: 0;
    min-height: 0;
    overflow: visible;
    padding: 8px;
    position: absolute;
    right: 0;
    text-transform: none;
    top: calc(100% + 10px);
    white-space: normal;
    z-index: 120;
  }

  body:not(.staff-layout) .nav.open .nav-indicator {
    display: none;
  }

  body:not(.staff-layout) .nav.open > a,
  body:not(.staff-layout) .nav.open .nav-item > a,
  body:not(.staff-layout) .nav.open .nav-submenu a {
    color: var(--ink);
    font-size: 15px;
    font-weight: 800;
    justify-content: flex-start;
    min-height: 44px;
    padding: 0 12px;
    width: 100%;
  }

  body:not(.staff-layout) .nav.open > a.active,
  body:not(.staff-layout) .nav.open .nav-item > a.active,
  body:not(.staff-layout) .nav.open .nav-submenu a.active {
    background: var(--surface-soft);
    color: var(--ink);
  }

  body:not(.staff-layout) .nav.open .nav-item,
  body:not(.staff-layout) .nav.open .nav-submenu {
    display: grid;
    width: 100%;
  }

  body:not(.staff-layout) .nav.open .nav-submenu {
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    padding: 0 0 0 12px;
    pointer-events: auto;
    position: static;
    transform: none;
  }

  body:not(.staff-layout) .nav.open .nav-submenu a {
    color: var(--ink-soft);
    font-size: 14px;
    min-height: 40px;
  }
}

body:not(.staff-layout) .ow-logo-strip img {
  filter: brightness(0) saturate(0) !important;
  opacity: 0.74;
}

:root[data-theme="dark"] body:not(.staff-layout) .ow-logo-strip img {
  filter: brightness(0) invert(1) !important;
  opacity: 0.86;
}

.staff-layout {
  background: var(--page-bg);
  color: var(--ink);
  min-height: 100vh;
  padding-bottom: 0;
}

.staff-layout p,
.staff-layout .meta,
.staff-layout .manage-row span,
.staff-layout .manage-row time,
.staff-layout .manager-list p,
.staff-layout .dashboard-head p,
.staff-layout .login-panel p,
.staff-layout .auth-panel p {
  color: var(--ink-soft);
}

.staff-layout .page-shell {
  min-height: calc(100vh - 260px);
  padding-bottom: clamp(42px, 7vw, 86px);
}

.staff-layout .staff-sidebar,
.staff-layout .staff-main,
.staff-layout .editor-layout > article,
.staff-layout .manager-list,
.staff-layout .dashboard-grid article,
.staff-layout .login-panel,
.staff-layout .auth-panel {
  background: var(--surface);
  border-color: var(--border-soft);
  box-shadow: 0 18px 54px rgba(20, 43, 69, 0.1);
  color: var(--ink);
}

.staff-layout .staff-sidebar h1,
.staff-layout .staff-main h1,
.staff-layout .staff-main h2,
.staff-layout .dashboard-head h1,
.staff-layout .dashboard-grid h2,
.staff-layout .manager-list h2,
.staff-layout .manage-row strong,
.staff-layout .auth-panel h1 {
  color: var(--ink);
}

.staff-layout .button,
.staff-layout .icon-button {
  border-color: var(--border-soft);
  color: var(--ink);
}

.staff-layout .button.primary {
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  border-color: color-mix(in srgb, var(--brand) 35%, var(--border-soft));
  color: #fff;
}

.staff-layout .button.secondary {
  background: var(--surface-soft);
}

.staff-layout .button:hover,
.staff-layout .icon-button:hover {
  border-color: color-mix(in srgb, var(--brand) 45%, var(--border-soft));
}

.staff-layout .header-portal {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--surface);
}

.staff-layout .staff-menu a {
  color: var(--ink-soft);
}

.staff-layout .staff-menu a.is-current,
.staff-layout .staff-menu a:hover {
  background: color-mix(in srgb, var(--brand) 14%, var(--surface-soft));
  color: var(--brand);
}

.staff-layout .editor-form label,
.staff-layout .rich-editor-field > label,
.staff-layout .editor-inspector label {
  color: var(--ink-soft);
}

.staff-layout .editor-form input,
.staff-layout .editor-form textarea,
.staff-layout .editor-form select {
  background: var(--surface-soft);
  border-color: var(--border-soft);
  color: var(--ink);
}

.staff-layout .editor-form input:focus,
.staff-layout .editor-form textarea:focus,
.staff-layout .editor-form select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 16%, transparent);
  outline: 0;
}

.staff-layout .manage-row {
  border-top-color: var(--border-soft);
}

.auth-shell {
  align-items: center;
  display: grid;
  min-height: clamp(560px, 72vh, 760px);
  padding: clamp(96px, 12vw, 150px) 0 clamp(38px, 8vw, 86px);
}

.auth-panel {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  box-shadow: 0 18px 54px rgba(20, 43, 69, 0.1);
  color: var(--ink);
  margin-inline: auto;
  max-width: 760px;
  overflow: hidden;
  padding: clamp(28px, 5vw, 54px);
  position: relative;
  width: min(100%, 760px);
}

.auth-panel::before {
  background:
    radial-gradient(circle at 20% 18%, color-mix(in srgb, var(--brand-2) 28%, transparent), transparent 16rem),
    linear-gradient(135deg, color-mix(in srgb, var(--brand) 10%, transparent), transparent 48%);
  content: "";
  inset: 0;
  opacity: 0.95;
  pointer-events: none;
  position: absolute;
}

.auth-panel > * {
  position: relative;
}

.auth-panel h1 {
  font-size: clamp(38px, 6vw, 68px);
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 16px;
}

.auth-panel p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: clamp(16px, 1.7vw, 20px);
  max-width: 590px;
}

.auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.auth-panel .button.secondary {
  background: var(--surface-soft);
  border-color: var(--border-soft);
  color: var(--ink);
}

.auth-panel .button.secondary:hover,
.auth-panel .button.secondary:focus-visible {
  background: color-mix(in srgb, var(--brand) 10%, var(--surface-soft));
  border-color: color-mix(in srgb, var(--brand) 35%, var(--border-soft));
  color: var(--ink);
}

.auth-panel form {
  border-top: 1px solid var(--border-soft);
  display: grid;
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
}

.staff-layout .octa-footer {
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
  box-shadow: 0 -18px 60px rgba(20, 43, 69, 0.08);
  color: var(--ink-soft);
  margin-top: 0;
  padding: 0;
}

.staff-layout .octa-footer__brand p,
.staff-layout .octa-footer__legal {
  color: var(--ink-soft);
}

.staff-layout .octa-footer__legal span:first-child {
  color: var(--ink);
}

.staff-layout .octa-footer__separator {
  background: color-mix(in srgb, var(--ink-soft) 52%, transparent);
}

.staff-layout .octa-footer__bottom {
  border-top-color: var(--border-soft);
}

.staff-layout .octa-footer__links a,
.staff-layout .octa-footer__social a,
.staff-layout .octa-footer__portal {
  background: var(--surface-soft);
  border-color: var(--border-soft);
  color: var(--ink-soft);
}

.staff-layout .octa-footer__links a .icon,
.staff-layout .octa-footer__social a .icon,
.staff-layout .octa-footer__portal .icon {
  color: var(--ink-soft);
}

.staff-layout .octa-footer__links a:hover,
.staff-layout .octa-footer__links a:focus-visible,
.staff-layout .octa-footer__social a:hover,
.staff-layout .octa-footer__social a:focus-visible,
.staff-layout .octa-footer__portal:hover,
.staff-layout .octa-footer__portal:focus-visible {
  background: color-mix(in srgb, var(--brand) 10%, var(--surface-soft));
  color: var(--ink);
}

:root[data-theme="dark"] .staff-layout .staff-sidebar,
:root[data-theme="dark"] .staff-layout .staff-main,
:root[data-theme="dark"] .staff-layout .editor-layout > article,
:root[data-theme="dark"] .staff-layout .manager-list,
:root[data-theme="dark"] .staff-layout .dashboard-grid article,
:root[data-theme="dark"] .staff-layout .login-panel,
:root[data-theme="dark"] .staff-layout .auth-panel,
:root[data-theme="dark"] .staff-layout .octa-footer {
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
}

:root[data-theme="dark"] .staff-layout .button.secondary,
:root[data-theme="dark"] .staff-layout .editor-form input,
:root[data-theme="dark"] .staff-layout .editor-form textarea,
:root[data-theme="dark"] .staff-layout .editor-form select,
:root[data-theme="dark"] .staff-layout .octa-footer__links a,
:root[data-theme="dark"] .staff-layout .octa-footer__social a,
:root[data-theme="dark"] .staff-layout .octa-footer__portal {
  background: color-mix(in srgb, var(--surface-soft) 86%, #000);
}

.staff-layout .content-editor {
  gap: 18px;
}

.staff-layout .content-editor .editor-meta-grid,
.staff-layout .content-editor .editor-seo-panel {
  background: color-mix(in srgb, var(--surface) 88%, #0d1826);
  border: 1px solid var(--border-soft);
  box-shadow: 0 18px 42px rgba(20, 43, 69, 0.08);
  color: var(--ink);
}

.staff-layout .content-editor .editor-seo-panel summary {
  color: var(--ink);
}

.staff-layout .content-editor .editor-seo-panel p {
  color: var(--ink-soft);
}

.staff-layout .content-editor .editor-suite {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  box-shadow: 0 18px 46px rgba(20, 43, 69, 0.12);
  overflow: hidden;
  position: sticky;
  top: 12px;
  z-index: 80;
}

.staff-layout .content-editor .editor-topbar,
.staff-layout .content-editor .editor-toolbar,
.staff-layout .content-editor .editor-block-palette,
.staff-layout .content-editor.is-fullscreen-editor .editor-topbar,
.staff-layout .content-editor.is-fullscreen-editor .editor-toolbar,
.staff-layout .content-editor.is-fullscreen-editor .editor-block-palette {
  position: static;
  top: auto;
  z-index: auto;
}

.staff-layout .content-editor .editor-topbar {
  background: var(--surface);
  border-bottom: 1px solid var(--border-soft);
  gap: 12px;
  padding: 10px 12px;
}

.staff-layout .content-editor .editor-topbar strong {
  color: var(--ink);
  font-size: 14px;
}

.staff-layout .content-editor .editor-topbar div,
.staff-layout .content-editor .editor-toolbar {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.staff-layout .content-editor .editor-toolbar {
  background: var(--surface-soft);
  border-bottom: 1px solid var(--border-soft);
  margin: 0;
  padding: 10px 12px;
}

.staff-layout .content-editor .editor-block-palette {
  background: color-mix(in srgb, var(--surface-soft) 82%, var(--brand) 18%);
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(106px, 1fr));
  padding: 10px 12px 12px;
}

.staff-layout .content-editor .editor-suite button,
.staff-layout .content-editor .editor-suite select,
.staff-layout .content-editor .editor-suite label {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  box-shadow: none;
  color: var(--ink);
  display: inline-flex;
  font-size: 13px;
  font-weight: 850;
  gap: 8px;
  justify-content: center;
  line-height: 1.15;
  min-height: 36px;
  min-width: 0;
  padding: 7px 10px;
  width: auto;
}

.staff-layout .content-editor .editor-suite button:hover,
.staff-layout .content-editor .editor-suite button:focus-visible,
.staff-layout .content-editor .editor-suite select:focus,
.staff-layout .content-editor .editor-suite label:focus-within {
  background: color-mix(in srgb, var(--brand) 10%, var(--surface));
  border-color: color-mix(in srgb, var(--brand) 55%, var(--border-soft));
  color: var(--ink);
  outline: 0;
}

.staff-layout .content-editor .editor-toolbar select {
  appearance: auto;
  flex: 0 0 auto;
  max-width: 190px;
  min-width: 118px;
  padding-right: 28px;
}

.staff-layout .content-editor .editor-toolbar label {
  flex: 0 0 auto;
}

.staff-layout .content-editor .editor-toolbar input[type="color"] {
  background: transparent;
  border: 0;
  box-shadow: none;
  height: 24px;
  min-height: 0;
  padding: 0;
  width: 30px;
}

.staff-layout .content-editor .editor-canvas-grid {
  gap: 18px;
  padding-top: 18px;
}

.staff-layout .content-editor .editor-canvas-panel,
.staff-layout .content-editor .editor-inspector {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 16px;
}

.staff-layout .content-editor .editor-insert-row {
  align-items: center;
  background: var(--surface-soft);
  border: 1px dashed color-mix(in srgb, var(--brand) 30%, var(--border-soft));
  border-radius: 12px;
  color: var(--ink-soft);
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(210px, max-content) minmax(0, 1fr);
  margin-bottom: 12px;
  padding: 12px;
}

.staff-layout .content-editor .editor-insert-row input {
  background: var(--surface);
  border-color: var(--border-soft);
  color: var(--ink);
  width: auto;
}

.staff-layout .content-editor .editor-insert-row span {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

.staff-layout .content-editor .rich-editor {
  background: #ffffff;
  border: 1px solid #ccd7e5;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.03);
  color: #111827;
  min-height: 560px;
  padding: clamp(18px, 2.8vw, 32px);
}

.staff-layout .content-editor .rich-editor p,
.staff-layout .content-editor .rich-editor li,
.staff-layout .content-editor .rich-editor span,
.staff-layout .content-editor .rich-editor blockquote {
  color: #1f2937;
}

.staff-layout .content-editor .rich-editor h2,
.staff-layout .content-editor .rich-editor h3,
.staff-layout .content-editor .rich-editor h4,
.staff-layout .content-editor .rich-editor strong {
  color: #071827;
}

.staff-layout .content-editor .rich-editor:focus {
  border-color: #4a8dff;
  box-shadow: 0 0 0 3px rgba(74, 141, 255, 0.18);
}

.staff-layout .content-editor .rich-editor .help-flow,
.staff-layout .content-editor .rich-editor .guide-checklist,
.staff-layout .content-editor .rich-editor .guide-accordion,
.staff-layout .content-editor .rich-editor .guide-tabs,
.staff-layout .content-editor .rich-editor .guide-columns,
.staff-layout .content-editor .rich-editor table {
  outline-offset: 4px;
}

.staff-layout .content-editor .rich-editor .guide-accordion details,
.staff-layout .content-editor .rich-editor .guide-tabs > div,
.staff-layout .content-editor .rich-editor .guide-columns > div,
.staff-layout .content-editor .rich-editor .help-flow > li,
.staff-layout .content-editor .rich-editor .guide-checklist > li,
.staff-layout .content-editor .rich-editor tbody > tr {
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.staff-layout .content-editor .rich-editor .is-selected-structure-item {
  border-color: #4a8dff;
  box-shadow: 0 0 0 3px rgba(74, 141, 255, 0.16);
  position: relative;
}

.staff-layout .content-editor .rich-editor tr.is-selected-structure-item > th,
.staff-layout .content-editor .rich-editor tr.is-selected-structure-item > td {
  box-shadow: inset 0 0 0 2px rgba(74, 141, 255, 0.5);
}

.staff-layout .content-editor .rich-editor .button-row {
  min-height: 46px;
}

.staff-layout .content-editor .rich-editor .button.is-selected-button {
  outline: 3px solid rgba(74, 141, 255, 0.5);
  outline-offset: 3px;
}

.staff-layout .content-editor .editor-inspector {
  color: var(--ink);
  position: sticky;
  top: 184px;
}

.staff-layout .content-editor .editor-inspector h3,
.staff-layout .content-editor .editor-inspector label {
  color: var(--ink);
}

.staff-layout .content-editor .editor-inspector p {
  color: var(--ink-soft);
}

.staff-layout .content-editor .editor-structure-tools {
  border-bottom: 1px solid var(--border-soft);
  display: grid;
  gap: 10px;
  margin-bottom: 2px;
  padding-bottom: 14px;
}

.staff-layout .content-editor .editor-structure-tools[hidden] {
  display: none;
}

.staff-layout .content-editor .editor-structure-tools h4 {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  margin: 0;
}

.staff-layout .content-editor .editor-structure-tools select {
  background: var(--surface-soft);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  color: var(--ink);
  min-height: 36px;
  padding: 6px 10px;
  width: 100%;
}

.staff-layout .content-editor .editor-structure-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.staff-layout .content-editor .editor-structure-actions button[hidden] {
  display: none;
}

.staff-layout .content-editor .editor-button-tools {
  border-bottom: 1px solid var(--border-soft);
  display: grid;
  gap: 10px;
  margin-bottom: 2px;
  padding-bottom: 14px;
}

.staff-layout .content-editor .editor-button-tools[hidden] {
  display: none;
}

.staff-layout .content-editor .editor-button-tools h4 {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  margin: 0;
}

.staff-layout .content-editor .editor-button-tools input,
.staff-layout .content-editor .editor-button-tools select {
  background: var(--surface-soft);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  color: var(--ink);
  min-height: 36px;
  padding: 6px 10px;
  width: 100%;
}

.staff-layout .content-editor .editor-button-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.staff-layout .content-editor .editor-inspector button {
  background: var(--surface-soft);
  border-color: var(--border-soft);
  color: var(--ink);
}

.staff-layout .content-editor .editor-actions {
  background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--surface) 90%, transparent) 28%);
  bottom: 0;
  padding-top: 12px;
  position: sticky;
  z-index: 40;
}

.staff-layout .content-editor.is-fullscreen-editor {
  background: var(--page-bg);
}

.staff-layout .content-editor.is-fullscreen-editor .editor-suite {
  top: 12px;
}

.staff-layout .content-editor.is-fullscreen-editor .rich-editor {
  min-height: calc(100vh - 340px);
}

:root[data-theme="dark"] .staff-layout .content-editor .editor-suite {
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
}

:root[data-theme="dark"] .staff-layout .content-editor .editor-block-palette {
  background: color-mix(in srgb, var(--surface-soft) 86%, var(--brand) 14%);
}

:root[data-theme="dark"] .staff-layout .content-editor .editor-suite button,
:root[data-theme="dark"] .staff-layout .content-editor .editor-suite select,
:root[data-theme="dark"] .staff-layout .content-editor .editor-suite label,
:root[data-theme="dark"] .staff-layout .content-editor .editor-inspector button {
  background: color-mix(in srgb, var(--surface-soft) 86%, #000);
}

@media (max-width: 980px) {
  .staff-layout .content-editor .editor-suite,
  .staff-layout .content-editor .editor-inspector,
  .staff-layout .content-editor .editor-actions {
    position: static;
  }

  .staff-layout .content-editor .editor-block-palette {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .staff-layout .content-editor .editor-insert-row {
    grid-template-columns: 1fr;
  }

  .staff-layout .content-editor .editor-toolbar select,
  .staff-layout .content-editor .editor-suite button {
    flex: 1 1 120px;
  }
}

.legal-document-page__viewer {
  min-height: 0;
  overflow: hidden;
  width: 100%;
}

.legal-document-page__mobile {
  display: none;
}

body.legal-document-layout .legal-document-page__viewer {
  height: calc(100dvh - 70px);
  min-height: 0;
}

body.legal-document-layout .legal-document-page__viewer iframe {
  display: block;
  height: 100%;
  min-height: 0;
  width: 100%;
}

@media (max-width: 780px) {
  body.legal-document-layout {
    min-height: 100dvh;
    overflow-x: hidden;
    overflow-y: auto;
  }

  body.legal-document-layout .page-shell,
  body.legal-document-layout .legal-document-page {
    height: auto;
    min-height: 100dvh;
  }

  body.legal-document-layout .legal-document-page__head {
    align-items: flex-start;
    flex-direction: column;
    min-height: 0;
    position: sticky;
    top: 0;
    z-index: 2;
  }

  body.legal-document-layout .legal-document-page__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  body.legal-document-layout .legal-document-page__actions .button {
    justify-content: center;
    width: 100%;
  }

  body.legal-document-layout .legal-document-page__viewer {
    display: none;
  }

  body.legal-document-layout .legal-document-page__mobile {
    align-items: center;
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 18px;
    justify-content: center;
    min-height: calc(100dvh - 150px);
    padding: 32px 20px;
    text-align: center;
  }

  body.legal-document-layout .legal-document-page__mobile p {
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
    max-width: 440px;
  }

  body.legal-document-layout .legal-document-page__mobile .button {
    justify-content: center;
    min-width: min(100%, 260px);
  }
}
