:root {
  --bg-primary: #0a0f1c;
  --bg-surface: #121826;
  --bg-elevated: #182131;
  --bg-soft: #0f1626;
  --bg-card: #121826;
  --neon-cyan: #00f0ff;
  --electric-purple: #8a2be2;
  --text-primary: #e0e6ed;
  --text-muted: #c1c9d6;
  --text-subtle: #8894a8;
  --border-default: #1e2636;
  --border-strong: #304057;
  --success: #05f599;
  --warning: #ffd700;
  --error: #ff0066;
  --max-width: 1180px;
  --radius: 16px;
  --shadow-cyan: 0 18px 50px rgba(0, 240, 255, 0.12);
  --shadow-dark: 0 18px 50px rgba(0, 0, 0, 0.28);
}

html[data-theme="day"] {
  --bg-primary: #f6f8fb;
  --bg-surface: #ffffff;
  --bg-elevated: #eef3f8;
  --bg-soft: #e8eef5;
  --bg-card: #ffffff;
  --neon-cyan: #0b5cab;
  --electric-purple: #5b4fd6;
  --text-primary: #111827;
  --text-muted: #354153;
  --text-subtle: #667085;
  --border-default: #d9e2ec;
  --border-strong: #aebdcb;
  --success: #15803d;
  --warning: #b7791f;
  --error: #b42318;
  --shadow-cyan: 0 18px 44px rgba(0, 92, 108, 0.11);
  --shadow-dark: 0 18px 50px rgba(15, 23, 42, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(18, 24, 38, 0.74) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 24, 38, 0.74) 1px, transparent 1px),
    var(--bg-primary);
  background-size: 36px 36px;
  color: var(--text-primary);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

html[data-theme="day"] body {
  background:
    linear-gradient(rgba(205, 218, 232, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(205, 218, 232, 0.5) 1px, transparent 1px),
    linear-gradient(180deg, #f8fafc 0%, #f4f7fb 46%, #eef3f8 100%);
  background-size: 36px 36px, 36px 36px, auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(0, 240, 255, 0.08), transparent 22%),
    linear-gradient(315deg, rgba(5, 245, 153, 0.05), transparent 26%);
  z-index: -1;
}

html[data-theme="day"] body::before {
  background:
    linear-gradient(135deg, rgba(11, 92, 171, 0.055), transparent 26%),
    linear-gradient(315deg, rgba(91, 79, 214, 0.045), transparent 32%);
}

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

a:hover {
  color: var(--neon-cyan);
}

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 99;
  border-radius: 10px;
  background: var(--neon-cyan);
  color: #001014;
  padding: 10px 14px;
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(30, 38, 54, 0.96);
  background: rgba(10, 15, 28, 0.9);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.brand-name {
  display: block;
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.1;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link,
.dropdown-trigger {
  color: var(--text-muted);
  background: transparent;
  border: 0;
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
  font-weight: 650;
}

.dropdown-trigger::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.nav-dropdown:hover .dropdown-trigger,
.nav-dropdown:focus-within .dropdown-trigger,
.nav-dropdown.is-open .dropdown-trigger {
  background: rgba(0, 240, 255, 0.08);
  color: var(--text-primary);
}

.nav-dropdown:hover .dropdown-trigger::after,
.nav-dropdown:focus-within .dropdown-trigger::after,
.nav-dropdown.is-open .dropdown-trigger::after {
  transform: translateY(2px) rotate(225deg);
}

.nav-link[aria-current="page"] {
  color: var(--neon-cyan);
}

.nav-dropdown.is-active .dropdown-trigger {
  color: var(--neon-cyan);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  display: none;
  height: 14px;
}

.nav-dropdown:hover::after,
.nav-dropdown:focus-within::after,
.nav-dropdown.is-open::after {
  display: block;
}

.dropdown-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 12px);
  transform: none;
  display: none;
  width: 410px;
  padding: 8px;
  border: 1px solid var(--border-default);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(0, 240, 255, 0.08), transparent 38%),
    rgba(18, 24, 38, 0.99);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.36);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
  display: grid;
  gap: 6px;
}

.dropdown-item {
  display: grid;
  gap: 3px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--text-muted);
  padding: 12px 14px;
}

.dropdown-title {
  color: var(--text-primary);
  font-weight: 800;
  line-height: 1.25;
}

.dropdown-desc {
  color: var(--text-subtle);
  font-size: 13px;
  line-height: 1.35;
}

.dropdown-item:hover,
.dropdown-item[aria-current="page"] {
  border-color: rgba(0, 240, 255, 0.25);
  background: rgba(0, 240, 255, 0.08);
  color: var(--text-primary);
}

.dropdown-item:hover .dropdown-desc,
.dropdown-item[aria-current="page"] .dropdown-desc {
  color: var(--text-muted);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-utilities,
.header-controls {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-subtle);
  font-weight: 800;
}

.lang-switch a {
  border-radius: 10px;
  padding: 6px 8px;
}

.lang-switch a.active {
  background: rgba(0, 240, 255, 0.12);
  color: var(--neon-cyan);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  border: 1px solid var(--border-default);
  border-radius: 999px;
  background: rgba(136, 148, 168, 0.12);
  color: var(--text-muted);
  padding: 3px;
  cursor: pointer;
  line-height: 1;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  border-color: var(--border-strong);
  color: var(--text-primary);
  outline: 0;
}

.theme-toggle-option {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 24px;
  border-radius: 999px;
  color: var(--text-subtle);
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.theme-toggle-option svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-toggle-option:hover {
  color: var(--text-primary);
}

.theme-toggle[data-theme-active="day"] .theme-toggle-day,
.theme-toggle[data-theme-active="night"] .theme-toggle-night {
  background: #0b5cab;
  color: #ffffff;
  box-shadow: 0 5px 14px rgba(11, 92, 171, 0.22);
}

html[data-theme="night"] .theme-toggle {
  border-color: rgba(48, 64, 87, 0.92);
  background:
    linear-gradient(180deg, rgba(24, 33, 49, 0.9), rgba(12, 18, 31, 0.94)),
    rgba(18, 24, 38, 0.9);
}

html[data-theme="night"] .theme-toggle[data-theme-active="day"] .theme-toggle-day,
html[data-theme="night"] .theme-toggle[data-theme-active="night"] .theme-toggle-night {
  background: rgba(0, 240, 255, 0.16);
  color: var(--neon-cyan);
  box-shadow: inset 0 0 0 1px rgba(0, 240, 255, 0.24);
}

html[data-theme="day"] .theme-toggle {
  border-color: #d5dee8;
  background: #f1f5f9;
}

html[data-theme="day"] .brand-mark {
  filter: saturate(0.78) contrast(0.96);
}

html[data-theme="day"] .brand-name {
  color: #0f172a;
}

.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-default);
  border-radius: 12px;
  background: var(--bg-surface);
  color: var(--text-primary);
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor, 0 -6px 0 currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border-radius: 14px;
  padding: 11px 16px;
  border: 1px solid transparent;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
}

.btn-primary {
  background: var(--neon-cyan);
  color: #001014;
  box-shadow: 0 12px 28px rgba(0, 240, 255, 0.18);
}

.btn-primary:hover {
  color: #001014;
  box-shadow: 0 16px 34px rgba(0, 240, 255, 0.26);
}

.btn-hero-primary {
  border-color: rgba(0, 240, 255, 0.42);
  background:
    linear-gradient(180deg, rgba(0, 240, 255, 0.13), rgba(0, 240, 255, 0.05)),
    rgba(18, 24, 38, 0.92);
  color: var(--text-primary);
  box-shadow: 0 12px 26px rgba(0, 240, 255, 0.1);
}

.btn-hero-primary:hover {
  border-color: rgba(0, 240, 255, 0.62);
  background:
    linear-gradient(180deg, rgba(0, 240, 255, 0.18), rgba(0, 240, 255, 0.08)),
    rgba(18, 24, 38, 0.96);
  color: var(--neon-cyan);
  box-shadow: 0 14px 30px rgba(0, 240, 255, 0.14);
}

.btn-hero-secondary {
  border-color: rgba(0, 240, 255, 0.22);
  background: rgba(18, 24, 38, 0.58);
  color: var(--text-primary);
  box-shadow: none;
}

.btn-hero-secondary:hover {
  border-color: rgba(0, 240, 255, 0.38);
  background: rgba(0, 240, 255, 0.07);
  color: var(--neon-cyan);
}

.btn-secondary {
  border-color: rgba(0, 240, 255, 0.58);
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.06);
}

.btn-secondary:hover {
  background: rgba(0, 240, 255, 0.12);
}

.btn-ghost {
  border-color: var(--border-default);
  color: var(--text-muted);
  background: rgba(18, 24, 38, 0.58);
}

.btn-small {
  min-height: 38px;
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 14px;
}

main {
  overflow: hidden;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 72px 22px;
}

.section-tight {
  padding-top: 44px;
  padding-bottom: 44px;
}

.hero {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 84px 22px 58px;
}

.hero-compact {
  padding-bottom: 0;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: 42px;
  align-items: center;
  transition: grid-template-columns 260ms ease, gap 260ms ease, padding-bottom 260ms ease;
}

.hero-grid-text {
  grid-template-columns: minmax(0, 1fr);
}

.hero-grid-text .hero-copy {
  max-width: 900px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 240, 255, 0.28);
  border-radius: 999px;
  background: rgba(0, 240, 255, 0.06);
  color: var(--neon-cyan);
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 800;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.12;
}

h1 {
  margin-top: 18px;
  max-width: 940px;
  font-size: 48px;
  font-weight: 900;
}

h2 {
  font-size: 34px;
  font-weight: 880;
}

h3 {
  font-size: 22px;
  font-weight: 820;
}

h4 {
  font-size: 18px;
  font-weight: 780;
}

p {
  margin: 0;
}

.lead {
  max-width: 760px;
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 18px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.hero-note,
.microcopy {
  margin-top: 16px;
  color: var(--text-subtle);
  font-size: 14px;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.proof-pill {
  border: 1px solid var(--border-default);
  border-radius: 999px;
  background: rgba(18, 24, 38, 0.7);
  color: var(--text-muted);
  padding: 7px 11px;
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  min-width: 0;
  transition: opacity 240ms ease, transform 260ms ease;
}

.visual-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 240, 255, 0.24);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(18, 24, 38, 0.97), rgba(10, 15, 28, 0.95)),
    var(--bg-surface);
  box-shadow: var(--shadow-cyan);
  padding: 18px;
  transform-origin: right top;
  transition:
    opacity 240ms ease,
    transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 200ms ease;
}

.visual-panel > * {
  position: relative;
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 14px;
}

.window-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--text-subtle);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: filter 160ms ease, transform 160ms ease;
}

.window-dot.close {
  background: #ff5f57;
}

.window-dot.minimize {
  background: #ffbd2e;
}

.window-dot:hover {
  filter: brightness(1.05);
  transform: scale(1.08);
}

.window-dot:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 3px;
}

.scan-status {
  margin-left: auto;
  border: 1px solid rgba(5, 245, 153, 0.32);
  border-radius: 999px;
  background: rgba(5, 245, 153, 0.08);
  color: var(--success);
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.visual-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.visual-summary div {
  border: 1px solid rgba(30, 38, 54, 0.96);
  border-radius: 14px;
  background: rgba(10, 15, 28, 0.66);
  padding: 12px;
}

.visual-summary strong {
  display: block;
  color: var(--text-primary);
  font-size: 24px;
  line-height: 1;
}

.visual-summary span {
  display: block;
  margin-top: 6px;
  color: var(--text-subtle);
  font-size: 12px;
  font-weight: 700;
}

.signal-list {
  display: grid;
  gap: 0;
}

.signal-header {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 104px;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid rgba(30, 38, 54, 0.78);
  padding: 9px 4px 10px;
  color: var(--text-subtle);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.signal-header span:last-child {
  text-align: right;
}

.signal-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 104px;
  grid-template-areas: "type title severity";
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--border-default);
  padding: 14px 4px;
}

.hero-grid.visual-closing .hero-visual {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.97);
}

.hero-grid.visual-minimizing .hero-visual {
  pointer-events: none;
}

.hero-grid.visual-restoring .hero-visual {
  pointer-events: none;
}

.hero-grid.visual-minimizing .visual-panel {
  opacity: 0;
  transform: translate(var(--minimize-x, 44px), var(--minimize-y, 118px)) scale(0.46);
  transform-origin: right bottom;
}

.hero-grid.visual-hidden {
  grid-template-columns: minmax(0, 1fr);
}

.hero-grid.visual-hidden .hero-copy,
.hero-grid.visual-minimized .hero-copy {
  max-width: 860px;
}

.hero-grid.visual-hidden .hero-visual {
  display: none;
}

.hero-grid.visual-minimized {
  grid-template-columns: minmax(0, 1fr);
}

.hero-grid.visual-minimized .hero-visual {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  justify-content: flex-end;
  width: auto;
  z-index: 49;
}

.hero-grid.visual-minimized .visual-panel {
  display: none;
}

.visual-restore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  border: 1px solid var(--border-default);
  border-radius: 999px;
  background: rgba(18, 24, 38, 0.86);
  color: var(--text-muted);
  padding: 9px 12px;
  cursor: pointer;
  font-weight: 800;
}

.visual-restore[hidden] {
  display: none;
}

.visual-restore::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--error);
}

.hero-grid.visual-minimized .visual-restore::before {
  background: #ffbd2e;
}

.visual-report-actions {
  padding: 12px 4px 0;
  text-align: right;
}

.hero-report-actions {
  margin-top: 14px;
}

.report-preview-link {
  display: inline;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text-subtle);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.4;
  text-underline-offset: 3px;
  transition: color 160ms ease;
}

.report-preview-link:hover,
.report-preview-link:focus-visible {
  color: var(--neon-cyan);
  text-decoration: underline;
}

.signal-row.finding-critical {
  border-color: var(--border-default);
}

.signal-label {
  grid-area: type;
  display: block;
  color: var(--text-subtle);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-main {
  grid-area: title;
  color: var(--text-primary);
  font-weight: 780;
  line-height: 1.25;
}

.signal-asset {
  grid-area: asset;
  color: var(--text-subtle);
  font-size: 13px;
  line-height: 1.25;
}

.severity {
  grid-area: severity;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  color: var(--text-muted);
  padding: 0;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}

.severity::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text-subtle);
}

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

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

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

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

.severity.critical::before {
  background: #b0002f;
}

.severity.high::before {
  background: var(--error);
}

.severity.medium::before {
  background: var(--warning);
}

.severity.low::before {
  background: var(--success);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 28px;
}

.section-heading p {
  max-width: 650px;
  color: var(--text-muted);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

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

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

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

.card,
.metric,
.quote-panel {
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  background: rgba(18, 24, 38, 0.86);
  box-shadow: var(--shadow-dark);
}

.card {
  padding: 22px;
}

.card h3,
.card h4 {
  margin-bottom: 10px;
}

.card p,
.card li {
  color: var(--text-muted);
}

.card-link {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.card-link:hover {
  border-color: rgba(0, 240, 255, 0.48);
  color: var(--text-primary);
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: rgba(0, 240, 255, 0.1);
  color: var(--neon-cyan);
  font-size: 22px;
  font-weight: 900;
}

.services-section {
  padding-top: 64px;
  padding-bottom: 48px;
  scroll-margin-top: 86px;
}

.section-heading-compact {
  margin-bottom: 18px;
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 194px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(30, 38, 54, 0.98);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(24, 33, 49, 0.88), rgba(12, 18, 31, 0.92)),
    rgba(18, 24, 38, 0.86);
  padding: 20px;
  box-shadow: var(--shadow-dark);
  transform: translateY(10px);
  opacity: 0;
  animation: serviceTileIn 520ms ease forwards;
}

.service-card:nth-child(2) {
  animation-delay: 70ms;
}

.service-card:nth-child(3) {
  animation-delay: 140ms;
}

.service-card:nth-child(4) {
  animation-delay: 210ms;
}

.service-visual {
  position: relative;
  display: block;
  width: 74px;
  height: 74px;
  margin: 2px auto 26px;
  color: var(--neon-cyan);
}

.service-visual span,
.service-visual::before,
.service-visual::after {
  content: "";
  position: absolute;
  display: block;
}

.service-visual-target {
  border: 1px solid rgba(0, 240, 255, 0.28);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.18) 0 3px, transparent 4px);
}

.service-visual-target::before {
  inset: 14px;
  border: 1px solid rgba(136, 148, 168, 0.28);
  border-radius: 50%;
}

.service-visual-target::after {
  inset: 28px;
  border: 1px solid rgba(0, 240, 255, 0.38);
  border-radius: 50%;
}

.service-visual-target span:nth-child(1) {
  left: 8px;
  right: 8px;
  top: 50%;
  height: 1px;
  background: rgba(136, 148, 168, 0.42);
}

.service-visual-target span:nth-child(2) {
  top: 8px;
  bottom: 8px;
  left: 50%;
  width: 1px;
  background: rgba(136, 148, 168, 0.42);
}

.service-visual-code {
  border: 1px solid rgba(0, 240, 255, 0.22);
  border-radius: 14px;
  background: rgba(10, 15, 28, 0.62);
}

.service-visual-code::before,
.service-visual-code::after,
.service-visual-code span {
  left: 15px;
  height: 2px;
  border-radius: 999px;
  background: rgba(136, 148, 168, 0.48);
}

.service-visual-code::before {
  top: 20px;
  width: 28px;
}

.service-visual-code::after {
  top: 36px;
  width: 44px;
  background: rgba(0, 240, 255, 0.42);
}

.service-visual-code span:nth-child(1) {
  top: 52px;
  width: 34px;
}

.service-visual-code span:nth-child(2) {
  display: none;
}

.service-visual-network {
  --network-line: rgba(136, 148, 168, 0.34);
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 240, 255, 0.42) 0 3px, transparent 4px),
    linear-gradient(var(--network-line), var(--network-line)) 50% 22px / 1px 25px no-repeat,
    linear-gradient(90deg, var(--network-line), var(--network-line)) 15px 48px / 44px 1px no-repeat,
    linear-gradient(var(--network-line), var(--network-line)) 15px 48px / 1px 8px no-repeat,
    linear-gradient(var(--network-line), var(--network-line)) 58px 48px / 1px 8px no-repeat;
}

.service-visual-network span {
  width: 24px;
  height: 17px;
  border: 1px solid rgba(0, 240, 255, 0.26);
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(136, 148, 168, 0.16), rgba(10, 15, 28, 0.94)),
    rgba(10, 15, 28, 0.9);
  box-shadow: inset 0 -4px 0 rgba(136, 148, 168, 0.08);
}

.service-visual-network span::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: -5px;
  height: 5px;
  border-bottom: 1px solid rgba(136, 148, 168, 0.36);
  border-left: 1px solid rgba(136, 148, 168, 0.28);
  border-right: 1px solid rgba(136, 148, 168, 0.28);
}

.service-visual-network span:nth-child(1) {
  left: 25px;
  top: 4px;
}

.service-visual-network span:nth-child(2) {
  left: 3px;
  bottom: 3px;
}

.service-visual-network span:nth-child(3) {
  right: 3px;
  bottom: 3px;
}

.service-visual-loop {
  display: grid;
  place-items: center;
}

.service-visual-loop svg {
  width: 74px;
  height: 74px;
  overflow: visible;
  filter: drop-shadow(0 0 12px rgba(0, 240, 255, 0.1));
}

.cycle-arrow {
  fill: none;
  stroke-linecap: butt;
  stroke-linejoin: round;
  stroke-width: 3.8;
}

.cycle-arrow-a,
.cycle-arrow-b {
  filter: drop-shadow(0 0 6px rgba(0, 240, 255, 0.06));
}

.cycle-arrow-c {
  filter: drop-shadow(0 0 6px rgba(138, 43, 226, 0.08));
}

.service-title {
  display: block;
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 840;
  line-height: 1.22;
  text-align: center;
}

.service-meta {
  display: block;
  margin-top: 10px;
  color: var(--text-subtle);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}

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

.list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 18px;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon-cyan);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  counter-reset: step;
}

.step {
  position: relative;
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  background: rgba(18, 24, 38, 0.86);
  padding: 18px;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--neon-cyan);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: start;
}

.work-flow {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border-default);
}

.work-step {
  display: grid;
  grid-template-columns: 58px minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  align-items: baseline;
  border-bottom: 1px solid var(--border-default);
  padding: 18px 0;
}

.work-step span {
  color: var(--text-subtle);
  font-size: 12px;
  font-weight: 900;
}

.work-step h3 {
  color: var(--text-primary);
  font-size: 20px;
}

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

.home-process-heading {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.home-process-heading h2 {
  margin-left: auto;
  margin-right: auto;
  line-height: 1.12;
}

.home-process-heading h2 br {
  display: block;
}

.home-process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.home-process-section {
  padding-top: 0;
}

.home-process-section .home-process-flow {
  margin-top: 24px;
}

.home-process-flow::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 23px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 240, 255, 0.34), rgba(138, 43, 226, 0.24), rgba(136, 148, 168, 0.22));
}

.home-process-step {
  position: relative;
  min-width: 0;
  padding-top: 58px;
  text-align: center;
}

.home-process-marker {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(0, 240, 255, 0.28);
  border-radius: 50%;
  background: rgba(10, 15, 28, 0.96);
  color: var(--neon-cyan);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 0 0 8px rgba(10, 15, 28, 0.78);
  transform: translateX(-50%);
}

.home-process-step h3 {
  color: var(--text-primary);
  font-size: 17px;
  line-height: 1.2;
}

.home-process-step p {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.process-format-section {
  padding-top: 46px;
}

.process-format-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-format-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  min-width: 0;
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(18, 24, 38, 0.92), rgba(10, 15, 28, 0.82)),
    var(--bg-card);
  padding: 16px;
  overflow: hidden;
}

.process-format-card h3 {
  color: var(--text-primary);
  font-size: 18px;
  line-height: 1.25;
}

.process-format-card p {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.process-format-visual {
  position: relative;
  display: grid;
  place-items: center;
  height: 108px;
  border: 1px solid rgba(136, 148, 168, 0.18);
  border-radius: 16px;
  background:
    radial-gradient(circle at 24% 24%, rgba(0, 240, 255, 0.1), transparent 34%),
    radial-gradient(circle at 78% 74%, rgba(138, 43, 226, 0.1), transparent 36%),
    rgba(10, 15, 28, 0.72);
  overflow: hidden;
}

.process-format-visual::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(136, 148, 168, 0.08);
  border-radius: 12px;
}

.process-format-svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.service-text-card {
  box-shadow: none;
}

.service-audience-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
}

.service-audience-group {
  min-width: 0;
  padding: 24px 28px 24px 0;
}

.service-audience-group + .service-audience-group {
  border-left: 1px solid var(--border-default);
  padding-right: 0;
  padding-left: 28px;
}

.service-audience-group > h3 {
  color: var(--neon-cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.service-audience-items {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.service-audience-item {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.service-audience-item > span {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border: 1px solid rgba(0, 240, 255, 0.48);
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.12);
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.12);
}

.service-audience-item h4 {
  color: var(--text-primary);
  font-size: 19px;
  line-height: 1.25;
}

.service-audience-item p {
  max-width: 760px;
  margin-top: 6px;
  color: var(--text-muted);
}

.source-value-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
}

.source-value-signal {
  position: relative;
  min-width: 0;
  min-height: 168px;
  padding: 26px 24px 24px;
}

.source-value-signal:nth-child(n + 4) {
  border-top: 1px solid var(--border-default);
}

.source-value-signal:nth-child(3n + 2),
.source-value-signal:nth-child(3n + 3) {
  border-left: 1px solid var(--border-default);
}

.source-value-signal::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 0;
  width: 2px;
  height: 42px;
  background: linear-gradient(180deg, rgba(0, 240, 255, 0.78), rgba(138, 43, 226, 0.38));
}

.source-value-signal > span {
  display: inline-block;
  color: var(--neon-cyan);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.source-value-signal h3 {
  max-width: 330px;
  margin-top: 14px;
  color: var(--text-primary);
  font-size: 19px;
  line-height: 1.25;
}

.source-value-signal p {
  max-width: 360px;
  margin-top: 9px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.service-methodology-board {
  max-width: 980px;
}

.service-methodology-list {
  display: grid;
  border-top: 1px solid var(--border-default);
}

.service-methodology-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  border-bottom: 1px solid var(--border-default);
  padding: 16px 0;
}

.service-methodology-item > span {
  color: var(--neon-cyan);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.5;
}

.service-methodology-item h3 {
  color: var(--text-primary);
  font-size: 18px;
  line-height: 1.25;
}

.service-methodology-item p {
  margin-top: 6px;
  color: var(--text-muted);
}

.source-process-block {
  border-top: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
  padding: 30px 0;
}

.source-process-block .home-process-flow {
  margin-top: 0;
  padding: 0 6px;
}

.service-deliverable-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-deliverable-card {
  min-width: 0;
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(24, 33, 49, 0.88), rgba(12, 18, 31, 0.92)),
    rgba(18, 24, 38, 0.86);
  padding: 16px;
}

.service-deliverable-visual {
  display: grid;
  place-items: center;
  height: 96px;
}

.service-deliverable-svg {
  width: 100%;
  height: 100%;
}

.service-deliverable-card h3 {
  margin-top: 16px;
  color: var(--text-primary);
  font-size: 18px;
  line-height: 1.25;
}

.service-deliverable-card p {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.proof-strip-section {
  padding-top: 24px;
  padding-bottom: 34px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(48, 64, 87, 0.72);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(0, 240, 255, 0.05), transparent 34%),
    rgba(10, 15, 28, 0.72);
}

.proof-stat {
  min-width: 0;
  padding: 18px 22px 20px;
}

.proof-stat + .proof-stat {
  border-left: 1px solid rgba(48, 64, 87, 0.62);
}

.proof-stat strong {
  display: block;
  color: var(--text-primary);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.1;
}

.proof-stat span {
  display: block;
  max-width: 280px;
  margin-top: 7px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.4;
}

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

.continuous-packages {
  display: grid;
  gap: 16px;
}

.continuous-packages-heading {
  align-items: center;
  margin-bottom: 14px;
}

.billing-toggle {
  justify-self: end;
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  border: 1px solid rgba(48, 64, 87, 0.78);
  border-radius: 14px;
  background: rgba(10, 15, 28, 0.72);
  padding: 3px;
}

.billing-toggle button {
  min-width: 108px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: var(--text-muted);
  padding: 9px 12px;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
  cursor: pointer;
}

.billing-toggle button.is-active {
  background: rgba(0, 240, 255, 0.1);
  color: var(--text-primary);
  box-shadow: inset 0 0 0 1px rgba(0, 240, 255, 0.24);
}

.continuous-package-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-width: 0;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(24, 33, 49, 0.88), rgba(12, 18, 31, 0.92)),
    rgba(18, 24, 38, 0.86);
  padding: 22px;
}

.continuous-package-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 240, 255, 0.12), rgba(138, 43, 226, 0.18));
}

.continuous-package-card.is-featured {
  border-color: rgba(0, 240, 255, 0.34);
  box-shadow: 0 18px 48px rgba(0, 240, 255, 0.08);
}

.continuous-package-card.is-featured::before {
  background: linear-gradient(90deg, rgba(0, 240, 255, 0.52), rgba(138, 43, 226, 0.44));
}

.continuous-package-badge {
  display: none;
}

.continuous-package-card h3 {
  color: var(--text-primary);
  font-size: 28px;
  line-height: 1.05;
}

.continuous-package-card p {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.continuous-package-features {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.continuous-package-features li {
  position: relative;
  min-width: 0;
  padding-left: 22px;
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.45;
}

.continuous-package-features li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(0, 240, 255, 0.48);
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.12);
  transform: translateY(-50%);
}

.continuous-package-footer {
  display: grid;
  align-content: end;
  gap: 14px;
  margin-top: 28px;
  padding-top: 12px;
  border-top: 1px solid rgba(48, 64, 87, 0.58);
}

.continuous-package-prices {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  align-content: start;
  min-height: 34px;
  gap: 8px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 180ms ease;
}

.continuous-package-price-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}

.continuous-package-prices strong {
  color: var(--text-primary);
  font-size: 21px;
  font-weight: 850;
  line-height: 1;
}

.continuous-package-prices em {
  display: inline-flex;
  align-items: baseline;
  border: 1px solid rgba(0, 240, 255, 0.18);
  border-radius: 999px;
  background: rgba(0, 240, 255, 0.045);
  color: var(--text-muted);
  padding: 4px 7px;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  line-height: 1.25;
}

.continuous-packages[data-billing="monthly"] .is-yearly-price,
.continuous-packages[data-billing="yearly"] .is-monthly-price {
  display: none;
}

.continuous-packages.is-price-switching .continuous-package-prices {
  opacity: 0;
  transform: translateY(5px);
}

.continuous-package-footer .btn {
  width: 100%;
}

.continuous-package-note {
  max-width: 760px;
  margin-top: 16px;
  color: var(--text-subtle);
  font-size: 13px;
  line-height: 1.55;
}

.service-process-block {
  padding: 30px 0;
}

.service-process-block .home-process-flow {
  margin-top: 0;
  padding: 0 6px 30px;
}

.service-process-block .home-process-step p {
  color: var(--text-primary);
  font-weight: 800;
}

.continuous-process-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1fr);
  gap: 34px;
  padding: 0 6px 34px;
}

.continuous-process-setup,
.continuous-process-cycle {
  position: relative;
  display: grid;
  min-width: 0;
}

.continuous-process-setup {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.continuous-process-cycle {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.continuous-process-cycle::before {
  content: "";
  position: absolute;
  top: 23px;
  left: calc(-34px - 17%);
  width: calc(34px + 33.666%);
  height: 1px;
  background: linear-gradient(90deg, rgba(138, 43, 226, 0.24), rgba(0, 240, 255, 0.34));
}

.continuous-process-setup::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 25%;
  right: 25%;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 240, 255, 0.34), rgba(138, 43, 226, 0.24));
}

.continuous-process-flow .home-process-step {
  z-index: 1;
}

.continuous-loop-svg {
  position: absolute;
  top: -8px;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 72px;
  overflow: visible;
  pointer-events: none;
}

.continuous-loop-svg path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  opacity: 0.86;
  vector-effect: non-scaling-stroke;
}

.landing-process-details {
  display: grid;
  max-width: 1020px;
  margin: 0 auto;
  border-top: 1px solid var(--border-default);
}

.landing-process-detail {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  border-bottom: 1px solid var(--border-default);
  padding: 16px 0;
}

.landing-process-detail > span {
  color: var(--neon-cyan);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.6;
}

.landing-process-detail p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.compact-faq-section {
  padding-top: 42px;
  padding-bottom: 42px;
}

.compact-faq-list {
  border-top: 1px solid var(--border-default);
}

.compact-faq-list details {
  border: 0;
  border-bottom: 1px solid var(--border-default);
  border-radius: 0;
  background: transparent;
}

.compact-faq-list summary {
  padding: 16px 0;
}

.compact-faq-list details p {
  border-top: 0;
  padding: 0 0 18px;
}

.source-offer-section {
  padding-top: 44px;
  padding-bottom: 44px;
}

.source-offer {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 40px;
  align-items: start;
  border-top: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
  padding: 34px 0;
}

.source-offer-kicker {
  display: block;
  color: var(--neon-cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-transform: uppercase;
}

.source-offer h2 {
  max-width: 620px;
  margin-top: 10px;
}

.source-offer-copy > p {
  max-width: 620px;
  margin-top: 14px;
  color: var(--text-muted);
}

.source-offer-caveat {
  border-left: 2px solid rgba(0, 240, 255, 0.46);
  padding-left: 14px;
  font-size: 14px;
}

.source-offer .btn {
  margin-top: 22px;
}

.source-offer-details {
  border-left: 1px solid var(--border-default);
  padding-left: 28px;
}

.source-offer-row {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 20px;
  border-top: 1px solid var(--border-default);
  padding: 18px 0;
}

.source-offer-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.source-offer-row:last-child {
  padding-bottom: 0;
}

.source-offer-row strong {
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.35;
}

.source-offer-row span {
  color: var(--text-muted);
  line-height: 1.58;
}

.landing-process-section .home-process-flow {
  margin-top: 10px;
}

.landing-process-section {
  padding-top: 36px;
  padding-bottom: 36px;
}

.service-plain-cta-section {
  padding-top: 44px;
}

.service-plain-cta {
  display: grid;
  justify-items: start;
  gap: 18px;
  padding: 28px 0;
}

.service-plain-cta h2 {
  max-width: 620px;
}

.service-plain-cta p {
  max-width: 720px;
  margin-top: 10px;
  color: var(--text-muted);
}

.service-plain-cta .btn {
  margin-top: 2px;
}

.about-block {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
}

.about-points {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border-default);
}

.about-points article {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 18px;
  border-bottom: 1px solid var(--border-default);
  padding: 18px 0;
}

.about-points h3 {
  color: var(--text-primary);
  font-size: 18px;
  line-height: 1.25;
}

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

.cta-band {
  border: 1px solid rgba(0, 240, 255, 0.24);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(0, 240, 255, 0.11), transparent 34%),
    rgba(18, 24, 38, 0.94);
  padding: 28px;
  box-shadow: var(--shadow-cyan);
}

.cta-band p {
  color: var(--text-muted);
  max-width: 760px;
  margin-top: 10px;
}

.cta-email-line {
  font-size: 15px;
}

.text-cta-link {
  color: var(--neon-cyan);
  font-weight: 800;
  text-underline-offset: 4px;
}

.text-cta-link:hover,
.text-cta-link:focus-visible {
  text-decoration: underline;
}

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

.faq-page-section {
  padding-top: 32px;
}

details {
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  background: rgba(18, 24, 38, 0.82);
  padding: 0;
}

summary {
  cursor: pointer;
  color: var(--text-primary);
  font-weight: 800;
  padding: 18px 20px;
}

details p {
  border-top: 1px solid var(--border-default);
  color: var(--text-muted);
  padding: 16px 20px 20px;
}

.report-table {
  overflow: hidden;
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
}

.report-row {
  display: grid;
  grid-template-columns: 170px 1fr 120px;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-default);
  background: rgba(18, 24, 38, 0.76);
}

.report-row:last-child {
  border-bottom: 0;
}

.report-row strong {
  color: var(--text-primary);
}

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

.contact-lines {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.contact-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  background: rgba(18, 24, 38, 0.86);
  padding: 16px;
}

.contact-details-panel {
  max-width: 860px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  background: rgba(18, 24, 38, 0.72);
  overflow: hidden;
}

.contact-details-section {
  padding-top: 32px;
  padding-bottom: 32px;
}

.contact-consultation-section {
  padding-top: 0;
  padding-bottom: 84px;
}

.company-details-table {
  width: 100%;
  border-collapse: collapse;
}

.company-details-table tr {
  border-bottom: 1px solid var(--border-default);
}

.company-details-table tr:last-child {
  border-bottom: 0;
}

.company-details-table th,
.company-details-table td {
  padding: 15px 18px;
  text-align: left;
  vertical-align: top;
}

.company-details-table th {
  width: 28%;
  color: var(--text-subtle);
  font-size: 13px;
  font-weight: 840;
}

.company-details-table td {
  color: var(--text-primary);
  font-weight: 740;
  overflow-wrap: anywhere;
}

.company-details-table a {
  color: var(--text-primary);
}

.legal-page-section {
  padding-top: 32px;
  padding-bottom: 84px;
}

.legal-content {
  max-width: 900px;
  min-width: 0;
}

.legal-updated {
  margin-bottom: 24px;
  color: var(--text-subtle);
  font-size: 14px;
  font-weight: 760;
}

.legal-section {
  border-top: 1px solid var(--border-default);
  padding: 28px 0;
}

.legal-section:last-child {
  border-bottom: 1px solid var(--border-default);
}

.legal-section h2 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: 24px;
  overflow-wrap: anywhere;
}

.legal-section p,
.legal-section li {
  max-width: 820px;
  color: var(--text-muted);
  overflow-wrap: anywhere;
}

.legal-section p + p {
  margin-top: 12px;
}

.legal-section ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.legal-section a {
  color: var(--text-primary);
  text-decoration: underline;
  text-decoration-color: rgba(0, 240, 255, 0.48);
  text-underline-offset: 3px;
}

.legal-section a:hover,
.legal-section a:focus-visible {
  color: var(--neon-cyan);
}

.policy-table {
  width: 100%;
  max-width: 860px;
  table-layout: fixed;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  background: rgba(18, 24, 38, 0.62);
}

.policy-table tr {
  border-bottom: 1px solid var(--border-default);
}

.policy-table tr:last-child {
  border-bottom: 0;
}

.policy-table th,
.policy-table td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
}

.policy-table th {
  width: 26%;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 860;
}

.policy-table td {
  color: var(--text-muted);
  overflow-wrap: anywhere;
}

.contact-consultation {
  max-width: 760px;
}

.contact-consultation p {
  max-width: 640px;
  margin-top: 10px;
  color: var(--text-muted);
}

.contact-consultation .btn {
  margin-top: 20px;
}

.company-details-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.company-details-list div {
  display: grid;
  grid-template-columns: minmax(140px, 0.28fr) minmax(0, 1fr);
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-default);
}

.company-details-list div:last-child {
  border-bottom: 0;
}

.company-details-list dt {
  color: var(--text-subtle);
  font-weight: 800;
}

.company-details-list dd {
  margin: 0;
  color: var(--text-primary);
  font-weight: 720;
  overflow-wrap: anywhere;
}

.company-details-list a {
  color: var(--neon-cyan);
}

.site-footer {
  border-top: 1px solid var(--border-default);
  background: rgba(10, 15, 28, 0.94);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 42px 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 0.8fr);
  gap: 28px;
}

.footer-title {
  margin-bottom: 12px;
  color: var(--text-primary);
  font-weight: 880;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-company-details {
  display: grid;
  gap: 6px;
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.45;
}

.footer-company-details div {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 8px;
}

.footer-company-details dt {
  color: var(--text-subtle);
  font-weight: 760;
}

.footer-company-details dd {
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
}

.footer-links a,
.footer-link-button,
.footer-company-details a,
.footer-meta,
.footer-grid p {
  color: var(--text-muted);
}

.footer-link-button {
  width: fit-content;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.footer-links a:hover,
.footer-link-button:hover,
.footer-links a:focus-visible,
.footer-link-button:focus-visible {
  color: var(--neon-cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--border-default);
  color: var(--text-subtle);
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: grid;
  width: min(680px, calc(100vw - 44px));
  gap: 16px;
  border: 1px solid rgba(48, 64, 87, 0.82);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 240, 255, 0.07), transparent 34%),
    rgba(10, 15, 28, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
  padding: 18px;
}

.cookie-banner[hidden],
.cookie-settings[hidden],
.cookie-banner-actions [hidden] {
  display: none;
}

.cookie-banner-copy h2 {
  font-size: 20px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.cookie-banner-copy p {
  max-width: 620px;
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.cookie-banner-copy a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 820;
  text-decoration: underline;
  text-decoration-color: rgba(0, 240, 255, 0.5);
  text-underline-offset: 3px;
}

.cookie-settings {
  display: grid;
  gap: 8px;
  border-top: 1px solid var(--border-default);
  padding-top: 14px;
}

.cookie-option {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  border: 1px solid rgba(48, 64, 87, 0.62);
  border-radius: 12px;
  background: rgba(18, 24, 38, 0.7);
  padding: 12px;
}

.cookie-option input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--neon-cyan);
}

.cookie-option strong,
.cookie-option small {
  display: block;
}

.cookie-option strong {
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.25;
}

.cookie-option small {
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.4;
}

.cookie-option-fixed {
  opacity: 0.78;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.btn-cookie-primary {
  border-color: rgba(0, 240, 255, 0.45);
  background: rgba(0, 240, 255, 0.14);
  color: var(--text-primary);
}

.btn-cookie-secondary {
  border-color: rgba(48, 64, 87, 0.88);
  background: rgba(18, 24, 38, 0.74);
  color: var(--text-primary);
}

.btn-cookie-ghost {
  border-color: transparent;
  background: transparent;
  color: var(--text-muted);
}

.btn-cookie-primary:hover,
.btn-cookie-secondary:hover,
.btn-cookie-ghost:hover {
  border-color: rgba(0, 240, 255, 0.62);
  color: var(--text-primary);
}

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

:where(
  .lead,
  .section-heading p,
  .card p,
  .card li,
  .work-step p,
  .home-process-step p,
  .process-format-card p,
  .service-audience-item p,
  .source-value-signal p,
  .service-methodology-item p,
  .service-deliverable-card p,
  .proof-stat span,
  .continuous-package-card p,
  .landing-process-detail p,
  .source-offer-copy > p,
  .source-offer-row span,
  .service-plain-cta p,
  .about-points p,
  .cta-band p,
  details p,
  .report-row span,
  .legal-section li,
  .policy-table td,
  .footer-meta,
  .footer-grid p,
  .cookie-option small,
  .muted
) {
  font-weight: 500;
}

.accent {
  color: var(--neon-cyan);
}

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

html[data-theme="day"] .site-header {
  border-bottom-color: rgba(217, 226, 236, 0.94);
  background: rgba(255, 255, 255, 0.92);
}

html[data-theme="day"] .nav-dropdown:hover .dropdown-trigger,
html[data-theme="day"] .nav-dropdown:focus-within .dropdown-trigger,
html[data-theme="day"] .nav-dropdown.is-open .dropdown-trigger {
  background: #eff6ff;
  color: #0b5cab;
}

html[data-theme="day"] .nav-link[aria-current="page"],
html[data-theme="day"] .nav-dropdown.is-active .dropdown-trigger {
  background: #eff6ff;
  color: #0b5cab;
}

html[data-theme="day"] .lang-switch a.active {
  background: #eff6ff;
  color: #0b5cab;
}

html[data-theme="day"] .lang-switch {
  color: #667085;
}

html[data-theme="day"] .dropdown-item:hover,
html[data-theme="day"] .dropdown-item[aria-current="page"] {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #111827;
}

html[data-theme="day"] .dropdown-item:hover .dropdown-title,
html[data-theme="day"] .dropdown-item[aria-current="page"] .dropdown-title {
  color: #0b5cab;
}

html[data-theme="day"] .dropdown-menu,
html[data-theme="day"] .visual-panel,
html[data-theme="day"] .card,
html[data-theme="day"] .service-card,
html[data-theme="day"] .about-block,
html[data-theme="day"] .about-points article,
html[data-theme="day"] .proof-strip,
html[data-theme="day"] .deliverable-card,
html[data-theme="day"] .method-card,
html[data-theme="day"] .scope-card,
html[data-theme="day"] .network-direction-card,
html[data-theme="day"] .continuous-option-card,
html[data-theme="day"] .continuous-package-card,
html[data-theme="day"] .faq-list details,
html[data-theme="day"] .contact-panel,
html[data-theme="day"] .legal-card,
html[data-theme="day"] .company-table,
html[data-theme="day"] .source-offer,
html[data-theme="day"] .audience-strip,
html[data-theme="day"] .security-output-card {
  border-color: var(--border-default);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 253, 0.94)),
    var(--bg-surface);
  box-shadow: var(--shadow-dark);
}

html[data-theme="day"] .visual-panel {
  border-width: 2px;
  border-color: #d7dfe8;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

html[data-theme="day"] .terminal-bar,
html[data-theme="day"] .signal-row,
html[data-theme="day"] .hero-visual .visual-restore,
html[data-theme="day"] .proof-pill,
html[data-theme="day"] .billing-toggle,
html[data-theme="day"] .continuous-package-prices,
html[data-theme="day"] .cookie-banner,
html[data-theme="day"] .cookie-option {
  border-color: var(--border-default);
  background: rgba(255, 255, 255, 0.86);
}

html[data-theme="day"] .cookie-banner {
  border-color: #d7dfe8;
  background: #ffffff;
  box-shadow: 0 22px 58px rgba(15, 23, 42, 0.18);
}

html[data-theme="day"] .terminal-bar {
  margin: -18px -18px 0;
  border-bottom: 1px solid #e5eaf0;
  background: #f8fafc;
  padding: 14px 18px;
}

html[data-theme="day"] .signal-list {
  padding-top: 8px;
}

html[data-theme="day"] .signal-header {
  border-bottom-color: #d5dee8;
  color: #64748b;
}

html[data-theme="day"] .signal-row {
  border-bottom-color: #e1e7ef;
  background: transparent;
}

html[data-theme="day"] .signal-label,
html[data-theme="day"] .severity {
  color: #64748b;
}

html[data-theme="day"] .severity.critical::before {
  background: #8a1f1f;
}

html[data-theme="day"] .severity.high::before {
  background: #b42318;
}

html[data-theme="day"] .severity.medium::before {
  background: #b7791f;
}

html[data-theme="day"] .severity.low::before {
  background: #15803d;
}

html[data-theme="day"] .report-preview-link:hover,
html[data-theme="day"] .report-preview-link:focus-visible {
  color: #0b5cab;
}

html[data-theme="day"] .signal-header,
html[data-theme="day"] .service-meta,
html[data-theme="day"] .report-preview-link,
html[data-theme="day"] .continuous-package-note {
  color: var(--text-subtle);
}

html[data-theme="day"] .billing-toggle {
  border-color: #bfdbfe;
  background: #eff6ff;
}

html[data-theme="day"] .billing-toggle button {
  color: #40536a;
}

html[data-theme="day"] .billing-toggle button.is-active {
  background: #ffffff;
  color: #0b5cab;
  box-shadow: inset 0 0 0 1px #93c5fd, 0 6px 14px rgba(15, 23, 42, 0.08);
}

html[data-theme="day"] .continuous-package-card {
  border-width: 1px;
  border-color: #d7dfe8;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

html[data-theme="day"] .continuous-package-card::before {
  display: none;
}

html[data-theme="day"] .continuous-package-card.is-featured {
  border-color: #93c5fd;
  background:
    linear-gradient(180deg, rgba(239, 246, 255, 0.9), rgba(255, 255, 255, 0.98) 32%),
    #ffffff;
  box-shadow: 0 24px 62px rgba(11, 92, 171, 0.16);
  transform: translateY(-8px);
}

html[data-theme="day"] .continuous-package-card.is-featured::before {
  display: none;
}

html[data-theme="day"] .continuous-package-badge {
  display: inline-flex;
  width: max-content;
  align-items: center;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: #eff6ff;
  color: #0b5cab;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  margin-bottom: 16px;
}

html[data-theme="day"] .continuous-package-features li::before {
  border-color: #111827;
  background: #111827;
}

html[data-theme="day"] .continuous-package-footer {
  border-top-color: #d7dfe8;
  border-top-width: 1px;
}

html[data-theme="day"] .continuous-package-prices em {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #0b5cab;
}

html[data-theme="day"] .service-card::before {
  opacity: 0.42;
}

html[data-theme="day"] .btn {
  border-width: 2px;
}

html[data-theme="day"] .btn-hero-secondary,
html[data-theme="day"] .btn-hero-primary {
  border-width: 2px;
  box-shadow: 0 14px 28px rgba(16, 24, 40, 0.12);
}

html[data-theme="day"] .btn-hero-primary {
  border-color: #0b5cab;
  background: #0b5cab;
  color: #ffffff;
}

html[data-theme="day"] .btn-hero-primary:hover {
  border-color: #084b8a;
  background: #084b8a;
  color: #ffffff;
}

html[data-theme="day"] .btn-hero-secondary {
  border-color: #c8d3df;
  background: rgba(255, 255, 255, 0.86);
  color: #1f2937;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

html[data-theme="day"] .btn-hero-secondary:hover {
  border-color: rgba(11, 92, 171, 0.42);
  background: #f1f6fc;
  color: #0b5cab;
}

html[data-theme="day"] .btn-cookie-secondary {
  border-color: #c8d3df;
  background: rgba(255, 255, 255, 0.82);
  color: #1f2937;
}

html[data-theme="day"] .btn-cookie-secondary:hover {
  border-color: rgba(11, 92, 171, 0.42);
  background: #f1f6fc;
  color: #0b5cab;
}

html[data-theme="day"] .cookie-banner-copy a {
  color: #40536a;
  text-decoration: none;
  transition: color 160ms ease;
}

html[data-theme="day"] .cookie-banner-copy a:hover,
html[data-theme="day"] .cookie-banner-copy a:focus-visible {
  color: #0b5cab;
}

html[data-theme="day"] .btn-cookie-primary {
  border-color: #0b5cab;
  background: #0b5cab;
  color: #ffffff;
  box-shadow: none;
}

html[data-theme="day"] .btn-cookie-primary:hover,
html[data-theme="day"] .btn-cookie-primary:focus-visible {
  border-color: #084b8a;
  background: #084b8a;
  color: #ffffff;
}

html[data-theme="day"] .btn-cookie-ghost {
  border-color: transparent;
  background: transparent;
  color: #40536a;
}

html[data-theme="day"] .btn-cookie-ghost:hover,
html[data-theme="day"] .btn-cookie-ghost:focus-visible {
  border-color: transparent;
  background: #eff6ff;
  color: #0b5cab;
}

html[data-theme="day"] .about-block,
html[data-theme="day"] .about-points article {
  border-color: var(--border-default);
  background: transparent;
  box-shadow: none;
}

html[data-theme="day"] .about-points {
  border-top-color: var(--border-default);
}

html[data-theme="day"] .service-card {
  border-width: 2px;
  border-color: #d7dfe8;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

html[data-theme="day"] .proof-strip {
  border-width: 2px;
  border-color: #c4d0dd;
}

html[data-theme="day"] .proof-stat + .proof-stat {
  border-left-width: 2px;
  border-left-color: #c4d0dd;
}

html[data-theme="day"] .service-audience-item > span {
  width: 8px;
  height: 8px;
  margin-top: 10px;
  border-color: #111827;
  background: #111827;
  box-shadow: none;
}

html[data-theme="day"] .service-audience-board {
  border-top-color: #c4d0dd;
  border-bottom-color: #c4d0dd;
  border-top-width: 2px;
  border-bottom-width: 2px;
}

html[data-theme="day"] .service-audience-group + .service-audience-group {
  border-left-color: #c4d0dd;
  border-left-width: 2px;
}

html[data-theme="day"] .service-process-block .home-process-flow::before {
  height: 2px;
  background: linear-gradient(90deg, rgba(47, 64, 84, 0.34), rgba(11, 92, 171, 0.54), rgba(47, 64, 84, 0.34));
}

html[data-theme="day"] .service-process-block .home-process-marker {
  border-width: 2px;
  border-color: #6f849b;
  background: #ffffff;
  color: #0b5cab;
  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.08);
}

html[data-theme="day"] .continuous-process-setup::before,
html[data-theme="day"] .continuous-process-cycle::before {
  height: 2px;
  background: #111827;
}

html[data-theme="day"] .continuous-loop-svg path {
  stroke: #111827;
  stroke-width: 2.2;
  opacity: 1;
}

html[data-theme="day"] .continuous-loop-svg marker path {
  fill: #111827;
  fill-opacity: 1;
}

html[data-theme="day"] .landing-process-details {
  border-top-color: #b8c7d8;
  border-top-width: 2px;
}

html[data-theme="day"] .landing-process-detail {
  border-bottom-color: #b8c7d8;
  border-bottom-width: 2px;
}

html[data-theme="day"] .service-deliverable-card {
  border-color: #d7dfe8;
  border-width: 2px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

html[data-theme="day"] .service-deliverable-visual {
  height: 78px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

html[data-theme="day"] .service-deliverable-svg rect[fill="#121826"],
html[data-theme="day"] .service-deliverable-svg path[fill="#121826"],
html[data-theme="day"] .service-deliverable-svg circle[fill="#121826"] {
  fill: #f8fafc;
  fill-opacity: 1;
  stroke: #2f4054;
  stroke-opacity: 1;
}

html[data-theme="day"] .service-deliverable-svg path[stroke="#8894a8"],
html[data-theme="day"] .service-deliverable-svg circle[stroke="#8894a8"] {
  stroke: #50677f;
  stroke-opacity: 1;
}

html[data-theme="day"] .service-deliverable-svg path[stroke="#00f0ff"],
html[data-theme="day"] .service-deliverable-svg circle[stroke="#00f0ff"] {
  stroke: #0b5cab;
  stroke-opacity: 1;
}

html[data-theme="day"] .service-deliverable-svg path[stroke="#8a2be2"],
html[data-theme="day"] .service-deliverable-svg rect[stroke="#8a2be2"] {
  stroke: #5b4fd6;
  stroke-opacity: 0.95;
}

html[data-theme="day"] .service-deliverable-svg path[fill="#00f0ff"],
html[data-theme="day"] .service-deliverable-svg circle[fill="#00f0ff"] {
  fill: #0b5cab;
  fill-opacity: 0.9;
}

html[data-theme="day"] .service-deliverable-svg path[fill="#8a2be2"] {
  fill: #5b4fd6;
  fill-opacity: 0.85;
}

html[data-theme="day"] .source-offer {
  border-top-color: #c4d0dd;
  border-bottom-color: #c4d0dd;
  border-top-width: 2px;
  border-bottom-width: 2px;
  background: transparent;
  box-shadow: none;
}

html[data-theme="day"] .source-offer-details {
  border-left-color: #c4d0dd;
  border-left-width: 2px;
}

html[data-theme="day"] .source-offer-row {
  border-top-color: #c4d0dd;
}

html[data-theme="day"] .source-offer-caveat {
  border-left-color: #111827;
}

html[data-theme="day"] .legal-section a {
  color: #111827;
  text-decoration-color: #94a3b8;
}

html[data-theme="day"] .legal-section a:hover,
html[data-theme="day"] .legal-section a:focus-visible {
  color: #0b5cab;
  text-decoration-color: #0b5cab;
}

html[data-theme="day"] .contact-details-panel,
html[data-theme="day"] .policy-table {
  border-color: var(--border-default);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 253, 0.94)),
    var(--bg-surface);
  box-shadow: var(--shadow-dark);
}

html[data-theme="day"] .company-details-table tr,
html[data-theme="day"] .policy-table tr {
  border-bottom-color: var(--border-default);
}

html[data-theme="day"] .service-visual {
  color: #243447;
}

html[data-theme="day"] .service-visual-target {
  border-width: 2px;
  border-color: #243447;
  background: radial-gradient(circle, rgba(11, 79, 145, 0.62) 0 3px, transparent 4px);
}

html[data-theme="day"] .service-visual-target::before,
html[data-theme="day"] .service-visual-target::after {
  border-width: 2px;
  border-color: #4a5f77;
}

html[data-theme="day"] .service-visual-target span:nth-child(1),
html[data-theme="day"] .service-visual-target span:nth-child(2),
html[data-theme="day"] .service-visual-code::before,
html[data-theme="day"] .service-visual-code::after,
html[data-theme="day"] .service-visual-code span,
html[data-theme="day"] .service-visual-network span::after {
  background: #2f4054;
  border-color: #4a5f77;
}

html[data-theme="day"] .service-visual-target span:nth-child(1) {
  height: 2px;
}

html[data-theme="day"] .service-visual-target span:nth-child(2) {
  width: 2px;
}

html[data-theme="day"] .service-visual-code {
  border-width: 2px;
  border-color: #2f4054;
  background: #edf3f9;
}

html[data-theme="day"] .service-visual-code::after {
  background: #0b4f91;
}

html[data-theme="day"] .service-visual-network {
  --network-line: #2f4054;
  background:
    radial-gradient(circle at 50% 50%, rgba(11, 79, 145, 0.58) 0 3px, transparent 4px),
    linear-gradient(var(--network-line), var(--network-line)) 50% 22px / 2px 25px no-repeat,
    linear-gradient(90deg, var(--network-line), var(--network-line)) 15px 48px / 44px 2px no-repeat,
    linear-gradient(var(--network-line), var(--network-line)) 15px 48px / 2px 8px no-repeat,
    linear-gradient(var(--network-line), var(--network-line)) 58px 48px / 2px 8px no-repeat;
}

html[data-theme="day"] .service-visual-network span {
  border-width: 2px;
  border-color: #2f4054;
  background: #edf3f9;
  box-shadow: inset 0 -4px 0 rgba(15, 23, 42, 0.08);
}

html[data-theme="day"] .service-visual-loop svg {
  filter: none;
  opacity: 0.96;
}

html[data-theme="day"] .cycle-arrow {
  stroke: #2f4054;
  stroke-width: 4.1;
}

html[data-theme="day"] .service-visual-loop marker path {
  fill: #2f4054;
  fill-opacity: 0.95;
}

html[data-theme="day"] .site-footer {
  background: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1040px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 680px;
  }

  .home-service-grid,
  .grid-4,
  .steps,
  .process-format-grid,
  .continuous-package-grid,
  .service-deliverable-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .continuous-package-card:last-child {
    grid-column: span 2;
    min-height: 360px;
  }

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

  .landing-process-detail {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .source-value-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .source-value-signal:nth-child(n) {
    border-left: 0;
    border-top: 0;
  }

  .source-value-signal:nth-child(2n + 2) {
    border-left: 1px solid var(--border-default);
  }

  .source-value-signal:nth-child(n + 3) {
    border-top: 1px solid var(--border-default);
  }

  .source-offer {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .source-offer-details {
    border-left: 0;
    border-top: 1px solid var(--border-default);
    padding-top: 22px;
    padding-left: 0;
  }

}

@media (max-width: 820px) {
  .header-inner {
    gap: 12px;
  }

  .header-right {
    margin-left: auto;
    gap: 10px;
  }

  .header-controls {
    gap: 8px;
  }

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

  .main-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border: 1px solid var(--border-default);
    border-radius: var(--radius);
    background: var(--bg-surface);
    padding: 14px;
    box-shadow: var(--shadow-dark);
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-link,
  .dropdown-trigger {
    width: 100%;
    text-align: left;
    padding: 10px 8px;
  }

  .nav-dropdown {
    display: block;
    width: 100%;
  }

  .nav-dropdown:hover .dropdown-trigger,
  .nav-dropdown:focus-within .dropdown-trigger {
    background: transparent;
    color: var(--text-muted);
  }

  .nav-dropdown.is-active .dropdown-trigger {
    color: var(--neon-cyan);
  }

  .nav-dropdown.is-open .dropdown-trigger {
    background: rgba(0, 240, 255, 0.08);
    color: var(--text-primary);
  }

  .nav-dropdown:hover .dropdown-trigger::after,
  .nav-dropdown:focus-within .dropdown-trigger::after {
    transform: translateY(-2px) rotate(45deg);
  }

  .nav-dropdown.is-open .dropdown-trigger::after {
    transform: translateY(2px) rotate(225deg);
  }

  .dropdown-menu {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    display: none;
    width: 100%;
    max-width: none;
    min-width: 0;
    margin-top: 4px;
    padding: 8px;
    border-radius: 14px;
    background: #0b1020;
    box-shadow: none;
  }

  html[data-theme="day"] .dropdown-menu {
    background: rgba(255, 255, 255, 0.82);
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    display: none;
  }

  .nav-dropdown.is-open .dropdown-menu {
    display: grid;
    gap: 6px;
  }

  .dropdown-item {
    padding: 11px 12px;
  }

  .dropdown-desc {
    font-size: 12px;
  }

  .main-nav .lang-switch {
    padding: 8px 0 0;
  }

  .nav-utilities {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    padding: 8px 0 0;
  }

  .theme-toggle {
    flex: 0 0 auto;
    justify-content: center;
    width: auto;
    margin-top: 0;
    padding: 3px;
  }

  .theme-toggle-option {
    width: 26px;
    height: 22px;
  }

  .theme-toggle-option svg {
    width: 14px;
    height: 14px;
  }

  .header-email {
    display: none;
  }

  h1 {
    font-size: 34px;
    text-wrap: balance;
  }

  h2 {
    font-size: 28px;
  }

  .lead {
    font-size: 17px;
  }

  .section,
  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero,
  .section,
  .hero-grid,
  .hero-copy,
  .hero-visual,
  .visual-panel {
    min-width: 0;
    max-width: 100%;
  }

  .hero-grid,
  .hero-copy,
  .hero-visual,
  .visual-panel {
    width: calc(100vw - 36px);
  }

  .hero-copy h1,
  .hero-copy .lead {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .grid-2,
  .grid-3,
  .home-service-grid,
  .process-format-grid,
  .service-deliverable-grid,
  .grid-4,
  .steps {
    grid-template-columns: 1fr;
  }

  .home-process-flow {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 28px;
  }

  .home-process-flow::before {
    left: 22px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(0, 240, 255, 0.34), rgba(138, 43, 226, 0.22), rgba(136, 148, 168, 0.18));
  }

  .home-process-step {
    min-height: 96px;
    padding: 0 0 28px 66px;
    text-align: left;
  }

  .home-process-marker {
    left: 0;
    transform: none;
  }

  .about-block,
  .about-points article {
    grid-template-columns: 1fr;
  }

  .about-points article {
    gap: 8px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .continuous-package-grid {
    grid-template-columns: 1fr;
  }

  .billing-toggle {
    justify-self: stretch;
    width: 100%;
  }

  .billing-toggle button {
    min-width: 0;
  }

  .continuous-package-card,
  .continuous-package-card:last-child {
    grid-column: auto;
    min-height: 0;
  }

  .proof-stat {
    min-height: 88px;
  }

  .proof-stat + .proof-stat {
    border-top: 1px solid rgba(48, 64, 87, 0.62);
    border-left: 0;
  }

  .service-process-block {
    padding: 24px 0;
  }

  .service-methodology-section .service-process-block > .home-process-flow,
  .service-methodology-section .service-process-block > .continuous-process-flow {
    display: none;
  }

  .continuous-loop-svg {
    display: none;
  }

  .continuous-process-flow {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 28px;
    padding: 0 0 22px;
  }

  .continuous-process-setup,
  .continuous-process-cycle {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .continuous-process-setup::before,
  .continuous-process-cycle::before {
    content: "";
    position: absolute;
    left: 22px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(0, 240, 255, 0.34), rgba(138, 43, 226, 0.22), rgba(136, 148, 168, 0.18));
  }

  .continuous-process-flow .home-process-step {
    min-height: 96px;
    padding: 0 0 28px 66px;
    text-align: left;
  }

  .continuous-process-flow .home-process-marker {
    left: 0;
    transform: none;
  }

  .landing-process-detail {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
  }

  .service-plain-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-audience-board {
    grid-template-columns: 1fr;
  }

  .service-audience-group,
  .service-audience-group + .service-audience-group {
    padding-right: 0;
    padding-left: 0;
  }

  .service-audience-group + .service-audience-group {
    border-top: 1px solid var(--border-default);
    border-left: 0;
  }

  .source-value-rail {
    grid-template-columns: 1fr;
  }

  .source-value-signal {
    min-height: auto;
    padding-right: 0;
    padding-left: 18px;
  }

  .source-value-signal:nth-child(n) {
    border-left: 0;
    border-top: 1px solid var(--border-default);
  }

  .source-value-signal:first-child {
    border-top: 0;
  }

  .source-value-signal::before {
    left: 0;
  }

  .source-process-block {
    padding: 24px 0;
  }

  .source-offer {
    padding: 28px 0;
  }

  .source-offer-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .work-step {
    grid-template-columns: 44px minmax(0, 1fr);
    grid-template-areas:
      "number title"
      ". text";
    gap: 8px 14px;
  }

  .work-step span {
    grid-area: number;
  }

  .work-step h3 {
    grid-area: title;
  }

  .work-step p {
    grid-area: text;
  }

  .signal-row {
    grid-template-columns: minmax(0, 68px) minmax(0, 1fr);
    grid-template-areas:
      "type severity"
      "title title";
    gap: 8px 10px;
  }

  .signal-header {
    grid-template-columns: minmax(0, 68px) minmax(0, 1fr);
  }

  .signal-header span:nth-child(2) {
    display: none;
  }

  .severity {
    min-width: 0;
    justify-self: end;
  }

  .signal-label,
  .signal-main,
  .severity,
  .report-preview-link {
    min-width: 0;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .report-row {
    grid-template-columns: 1fr;
  }

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

  .company-details-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .legal-content {
    width: min(330px, 100%);
  }

  .policy-table {
    max-width: 100%;
  }

  .company-details-table th,
  .company-details-table td,
  .policy-table th,
  .policy-table td {
    display: block;
    width: 100%;
  }

  .company-details-table th,
  .policy-table th {
    padding-bottom: 4px;
  }

  .company-details-table td,
  .policy-table td {
    padding-top: 0;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .cookie-banner {
    right: auto;
    bottom: 12px;
    left: 18px;
    width: min(330px, calc(100vw - 36px));
    max-width: min(330px, calc(100vw - 36px));
    max-height: calc(100svh - 24px);
    overflow-y: auto;
    padding: 16px;
  }

  .cookie-banner-copy,
  .cookie-banner-copy p,
  .cookie-settings,
  .cookie-option {
    min-width: 0;
    max-width: 100%;
  }

  .cookie-banner-actions {
    flex-direction: column;
  }

  .cookie-banner-actions .btn {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .header-inner {
    padding: 12px 14px;
  }

  .hero {
    width: 100%;
  }

  .hero-grid {
    width: 100%;
    gap: 34px;
  }

  .hero-grid,
  .hero-copy,
  .hero-visual,
  .visual-panel,
  .proof-strip {
    width: 100%;
  }

  .visual-panel {
    padding: 16px;
    border-radius: 18px;
  }

  .brand-name {
    font-size: 16px;
  }

  h1 {
    font-size: 28px;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .visual-panel,
  .cta-band,
  .card {
    border-radius: 14px;
  }
}
