:root {
  color-scheme: dark;
  --bg: #06090b;
  --bg-soft: #0a0f12;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.11);
  --border-strong: rgba(255, 255, 255, 0.18);
  --text: #f5f7f8;
  --muted: #92a0a9;
  --faint: #66727a;
  --primary: #76f8ff;
  --secondary: #90ff9b;
  --accent: #ffb454;
  --coral: #ff7b91;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
  --radius: 8px;
  --radius-lg: 18px;
  --container: 1220px;
  --font-display: "Sora", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;
}

/* Mono premium redesign */
body.mono-theme,
body.mono-page {
  color-scheme: light;
  --bg: #ffffff;
  --bg-soft: #f5f5f2;
  --panel: #ffffff;
  --panel-strong: #f4f4f1;
  --border: #e4e1dc;
  --border-strong: #c9c5bd;
  --text: #111111;
  --muted: #6e6e68;
  --faint: #9b9a94;
  --primary: #111111;
  --secondary: #51cf6a;
  --accent: #111111;
  background: #ffffff;
  color: var(--text);
}

body.mono-theme::before,
body.mono-page::before {
  background:
    linear-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
}

body.mono-theme .noise,
body.mono-theme .spotlight,
body.mono-page .noise,
body.mono-page .spotlight {
  display: none;
}

body.mono-theme .scroll-progress,
body.mono-page .scroll-progress {
  background: #111111;
}

body.mono-theme .site-header,
body.mono-page .site-header {
  color: #111111;
}

body.mono-theme .site-header.is-scrolled,
body.mono-page .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.09);
}

body.mono-theme .desktop-nav a,
body.mono-theme .footer-links a,
body.mono-page .desktop-nav a,
body.mono-page .footer-links a {
  color: #5f5f5a;
}

body.mono-theme .desktop-nav a:hover,
body.mono-theme .footer-links a:hover,
body.mono-page .desktop-nav a:hover,
body.mono-page .footer-links a:hover {
  color: #111111;
}

body.mono-theme .brand img.brand-logo-img,
body.mono-page .brand img.brand-logo-img {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
}

body.mono-theme .btn,
body.mono-page .btn {
  border-radius: 999px;
}

body.mono-theme .btn-primary,
body.mono-page .btn-primary {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
}

body.mono-theme .btn-primary span,
body.mono-theme .btn-primary svg,
body.mono-page .btn-primary span,
body.mono-page .btn-primary svg {
  color: #ffffff;
}

body.mono-theme .btn-primary:hover,
body.mono-page .btn-primary:hover {
  transform: translateY(-2px);
  background: #000000;
}

body.mono-theme .btn-ghost,
body.mono-page .btn-ghost {
  color: #111111;
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.14);
  box-shadow: none;
}

body.mono-theme .btn-ghost:hover,
body.mono-page .btn-ghost:hover {
  background: #f3f3ef;
  border-color: rgba(0, 0, 0, 0.3);
}

body.mono-theme .icon-button,
body.mono-page .icon-button {
  color: #111111;
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.13);
}

body.mono-theme .mobile-menu,
body.mono-page .mobile-menu {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.12);
}

body.mono-theme .mobile-menu a,
body.mono-page .mobile-menu a {
  color: #111111;
  border-color: rgba(0, 0, 0, 0.08);
}

body.mono-theme .hero {
  min-height: 100svh;
  padding-top: 138px;
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f9f9f7 100%);
}

body.mono-theme .hero::before {
  display: none;
}

body.mono-theme .hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  align-items: center;
}

body.mono-theme .hero-logo {
  width: min(360px, 100%);
  margin-bottom: 28px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.mono-theme .status-pill,
.mono-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f1f1ee;
  color: #111111;
  border: 1px solid #e5e2dc;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
}

.mono-pill.dark {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

body.mono-theme .status-pill span {
  background: #51cf6a;
  box-shadow: 0 0 0 6px rgba(81, 207, 106, 0.14);
}

body.mono-theme .eyebrow {
  color: #676760;
}

body.mono-theme .hero-copy h1 {
  color: #0d0d0d;
  font-size: clamp(3.4rem, 5.9vw, 6.2rem);
  line-height: 0.92;
  max-width: 820px;
}

body.mono-theme .hero-description {
  max-width: 680px;
  color: #55554f;
  font-size: clamp(1.1rem, 1.7vw, 1.48rem);
}

body.mono-theme .speed-callout {
  background: #ffffff;
  border-color: #e5e2dc;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.08);
}

body.mono-theme .speed-callout span,
body.mono-theme .panel-tag,
body.mono-page .panel-tag {
  color: #676760;
}

body.mono-theme .speed-callout strong,
body.mono-theme .section-heading h2,
body.mono-theme .service-panel h3,
body.mono-theme .seo-command h3,
body.mono-page h1,
body.mono-page h2,
body.mono-page h3 {
  color: #111111;
}

body.mono-theme .partner-row span,
body.mono-theme .platform-dock span {
  background: #ffffff;
  border-color: #e5e2dc;
  color: #111111;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
}

body.mono-theme .hero-stage,
body.mono-theme .service-panel,
body.mono-theme .seo-command,
body.mono-theme .seo-system-card,
body.mono-theme .answer-card,
body.mono-theme .lab-card,
body.mono-theme .terminal,
body.mono-theme .case-stage,
body.mono-theme .contact-form,
body.mono-theme .proposal-preview,
body.mono-theme .footer-cta,
body.mono-theme .pricing-card,
body.mono-theme .faq-item,
body.mono-theme .free-tool-panel {
  background: #ffffff;
  border-color: #e5e2dc;
  color: #111111;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.08);
}

body.mono-theme .hero-stage::after,
body.mono-theme .hero-visual-stack::before,
body.mono-theme .hero-visual-stack::after {
  display: none;
}

body.mono-theme .hero-visual-main,
body.mono-theme .hero-visual-card img,
body.mono-theme .industry-visual img {
  filter: grayscale(1);
}

body.mono-theme .hero-command,
body.mono-theme .command-card,
body.mono-theme .hero-trust div,
body.mono-theme .seo-score-grid div,
body.mono-theme .free-tool-output,
body.mono-theme .offer-output,
body.mono-theme .readiness-results,
body.mono-theme .channel-results {
  background: #f6f6f3;
  border-color: #e4e1dc;
  color: #111111;
}

body.mono-theme .hero-mode-tabs button,
body.mono-theme .industry-tabs button,
body.mono-theme .case-nav button,
body.mono-theme .free-tool-tabs button {
  background: #ffffff;
  color: #5f5f5a;
  border-color: #e5e2dc;
}

body.mono-theme .hero-mode-tabs button.is-active,
body.mono-theme .industry-tabs button.is-active,
body.mono-theme .case-nav button.is-active,
body.mono-theme .free-tool-tabs button.is-active {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

body.mono-theme .section-band {
  background: #f7f7f4;
  border-color: #ece9e3;
}

body.mono-theme .section-heading > span {
  background: #ffffff;
  color: #111111;
  border-color: #e5e2dc;
}

body.mono-theme .section-heading p,
body.mono-theme .hero-trust small,
body.mono-theme .service-panel p,
body.mono-theme .seo-command p,
body.mono-theme .seo-system-card p,
body.mono-theme .answer-card p,
body.mono-theme .pricing-note,
body.mono-theme .form-note {
  color: #666660;
}

body.mono-theme input,
body.mono-theme select,
body.mono-theme textarea,
body.mono-page input,
body.mono-page select,
body.mono-page textarea {
  background: #ffffff;
  border-color: #dad6cf;
  color: #111111;
}

body.mono-theme input::placeholder,
body.mono-theme textarea::placeholder,
body.mono-page input::placeholder,
body.mono-page textarea::placeholder {
  color: #9b9a94;
}

.mono-operating-section,
.mono-heartbeat-section,
.service-hero,
.service-index-section,
.service-dark-system,
.service-table-section,
.services-cta,
.tools-hero,
.tools-page-shell {
  width: min(calc(100% - 44px), var(--container));
  margin: 0 auto;
}

.mono-operating-section {
  display: grid;
  gap: 54px;
  padding: 110px 0 80px;
}

.mono-section-copy {
  max-width: 720px;
}

.mono-section-copy h2,
.service-dark-copy h2,
.mono-heartbeat-copy h2 {
  margin: 22px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.mono-section-copy p,
.service-dark-copy p,
.mono-heartbeat-copy p {
  margin: 0;
  color: #666660;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.75;
}

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

.mono-company-card,
.service-index-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid #e4e1dc;
  border-radius: 26px;
  background: #f4f3ef;
  color: #111111;
}

.mono-company-card.is-active {
  background: #ffffff;
  border-color: #111111;
}

.mono-company-card svg,
.service-index-card svg {
  width: 24px;
  height: 24px;
  color: #111111;
}

.mono-company-card h3,
.service-index-card h3 {
  margin: 44px 0 12px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0;
}

.mono-company-card p,
.service-index-card p {
  margin: 0;
  color: #686861;
  line-height: 1.65;
}

.mono-company-card span {
  display: inline-flex;
  margin-top: 22px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #dff7e4;
  color: #1e7a35;
  font-weight: 800;
  font-size: 0.82rem;
}

.mono-add-card {
  border-style: dashed;
  background: #ffffff;
}

.mono-org-chart,
.service-org-board {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 18px;
  min-height: 440px;
  padding: 70px 38px;
  border-radius: 30px;
  background: #e9e7e1;
  overflow: hidden;
}

.mono-org-chart::before,
.service-org-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.45) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.45;
}

.org-node,
.service-org-node {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 12px;
  align-items: center;
  min-width: 180px;
  padding: 16px 18px;
  border: 1px solid #d6d2ca;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.org-node svg,
.service-org-node svg {
  grid-row: span 2;
  width: 22px;
  height: 22px;
  color: #7b7a73;
}

.org-node strong,
.service-org-node strong {
  font-size: 0.96rem;
}

.org-node small,
.service-org-node span {
  color: #88867f;
  font-size: 0.82rem;
}

.org-line,
.service-org-branch {
  position: relative;
  z-index: 0;
  width: 2px;
  height: 30px;
  background: #b9b5ad;
}

.org-row,
.service-org-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.mono-heartbeat-section,
.service-dark-system {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 70px;
  align-items: center;
  margin-top: 80px;
  margin-bottom: 80px;
  padding: 92px 58px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 58% 0%, rgba(255, 255, 255, 0.16), transparent 32%),
    #0d0d0d;
  color: #ffffff;
}

.mono-heartbeat-copy p,
.service-dark-copy p {
  color: #a7a7a1;
}

.mono-heartbeat-copy ul,
.service-dark-copy ul {
  display: grid;
  gap: 20px;
  padding: 28px 0 0;
  margin: 0;
  list-style: none;
}

.mono-heartbeat-copy li,
.service-dark-copy li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
  color: #c9c9c1;
  line-height: 1.65;
}

.mono-heartbeat-copy li svg,
.service-dark-copy li svg {
  color: #51cf6a;
}

.heartbeat-timeline,
.service-timeline {
  position: relative;
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.055);
}

.timeline-head,
.service-timeline-row,
.timeline-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 18px;
}

.service-timeline-row {
  grid-template-columns: 92px repeat(4, 1fr);
}

.timeline-row {
  grid-template-columns: 92px repeat(5, 1fr);
}

.timeline-head {
  margin-bottom: 26px;
  padding-left: 92px;
  color: #7a7a76;
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.service-timeline .timeline-head {
  grid-template-columns: repeat(4, 1fr);
  padding-left: 92px;
}

.service-timeline-row,
.timeline-row {
  min-height: 76px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-timeline-row strong,
.timeline-row strong {
  color: #d5d5cf;
}

.service-timeline-row span,
.timeline-row span {
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
}

.service-timeline-row span::after,
.timeline-row span::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  width: 10px;
  height: 10px;
  border: 2px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  transform: translateY(-50%);
  background: #111111;
}

.service-timeline-row span.is-live,
.timeline-row span.is-live {
  background: #51cf6a;
}

.service-timeline-row span.is-live::after,
.timeline-row span.is-live::after {
  background: #51cf6a;
  border-color: #51cf6a;
  box-shadow: 0 0 22px rgba(81, 207, 106, 0.8);
}

.timeline-note,
.service-timeline-note {
  width: fit-content;
  margin: 22px 0 0 auto;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(81, 207, 106, 0.18);
  color: #a9ffb4;
  font-weight: 800;
  font-size: 0.84rem;
}

body.mono-page {
  min-height: 100vh;
}

body.mono-page .reveal {
  opacity: 1;
  transform: none;
}

body.mono-page main {
  padding-top: 120px;
}

.service-hero,
.tools-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.9fr);
  gap: 70px;
  align-items: center;
  min-height: calc(100svh - 120px);
  padding: 80px 0;
}

.service-hero-copy h1,
.tools-hero-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 7vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0;
  max-width: 820px;
}

.service-hero-copy p,
.tools-hero-copy p {
  max-width: 680px;
  margin: 28px 0 0;
  color: #666660;
  font-size: clamp(1.04rem, 1.6vw, 1.34rem);
  line-height: 1.72;
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.service-org-board {
  min-height: 540px;
}

.service-org-row.lower {
  margin-top: 8px;
}

.service-index-section,
.service-table-section {
  padding: 90px 0;
}

.service-index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.service-table-section {
  border-top: 1px solid #ece9e3;
}

.service-matrix {
  margin-top: 42px;
  border: 1px solid #e4e1dc;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
}

.service-matrix-row {
  display: grid;
  grid-template-columns: 0.9fr 0.9fr 1.4fr 0.6fr;
  gap: 20px;
  padding: 22px 26px;
  border-bottom: 1px solid #ece9e3;
  color: #666660;
}

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

.service-matrix-row.heading {
  background: #111111;
  color: #ffffff;
  font-weight: 800;
}

.service-matrix-row span:first-child {
  color: #111111;
  font-weight: 800;
}

.service-matrix-row.heading span:first-child {
  color: #ffffff;
}

.services-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 30px;
  margin-bottom: 90px;
  padding: 42px;
  border: 1px solid #e4e1dc;
  border-radius: 28px;
  background: #f4f3ef;
}

.services-cta span {
  font-family: var(--font-mono);
  color: #6e6e68;
  text-transform: uppercase;
}

.services-cta h2 {
  max-width: 780px;
  margin: 14px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 4.4rem);
  line-height: 1;
}

.services-cta p {
  margin: 0;
  max-width: 640px;
  color: #666660;
  line-height: 1.7;
}

.tools-hero {
  min-height: 74svh;
}

.tools-hero-panel {
  min-height: 430px;
  padding: 34px;
  border: 1px solid #e4e1dc;
  border-radius: 30px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    #f4f3ef;
  background-size: 44px 44px;
}

.mini-command-lines {
  display: grid;
  gap: 18px;
  margin-top: 80px;
  font-family: var(--font-mono);
  color: #111111;
}

.mini-command-lines span {
  padding: 16px 18px;
  border: 1px solid #e4e1dc;
  border-radius: 16px;
  background: #ffffff;
}

.tools-page-shell {
  padding: 40px 0 92px;
}

.tools-page-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.tools-page-tabs button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 62px;
  border: 1px solid #e4e1dc;
  border-radius: 18px;
  background: #ffffff;
  color: #111111;
  font-weight: 800;
}

.tools-page-tabs button.is-active {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

.tools-page-panel {
  padding: 34px;
  border: 1px solid #e4e1dc;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.07);
}

.tools-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding-bottom: 28px;
  border-bottom: 1px solid #ece9e3;
}

.tools-panel-head h2 {
  margin: 14px 0 8px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.5rem);
  line-height: 1;
}

.tools-panel-head p {
  margin: 0;
  max-width: 760px;
  color: #666660;
  line-height: 1.7;
}

.tools-panel-head > svg {
  width: 48px;
  height: 48px;
}

.tools-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 30px;
  padding-top: 30px;
}

.tools-inputs h3 {
  margin: 0 0 18px;
  font-family: var(--font-display);
}

.tools-dynamic-fields {
  display: grid;
  gap: 18px;
  margin: 24px 0;
}

.tool-range {
  padding: 18px;
  border: 1px solid #e4e1dc;
  border-radius: 18px;
  background: #f7f7f4;
}

.tools-output {
  position: sticky;
  top: 110px;
  display: grid;
  align-content: start;
  gap: 24px;
  min-height: 560px;
  padding: 30px;
  border-radius: 24px;
  background: #111111;
  color: #ffffff;
}

.tools-output .mono-pill {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.tools-output h3 {
  margin: 16px 0 10px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.tools-output p {
  margin: 0;
  color: #c4c4bd;
  line-height: 1.7;
}

.tool-score-ring {
  position: relative;
  display: grid;
  place-items: center;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background:
    conic-gradient(#51cf6a calc(var(--score) * 1%), rgba(255, 255, 255, 0.12) 0),
    #1b1b1b;
  justify-self: start;
}

.tool-score-ring::after {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  background: #111111;
}

.tool-score-ring strong,
.tool-score-ring span {
  position: relative;
  z-index: 1;
}

.tool-score-ring strong {
  font-family: var(--font-display);
  font-size: 3.2rem;
}

.tool-score-ring span {
  margin-top: -38px;
  color: #9f9f98;
}

.tool-result-rows {
  display: grid;
  gap: 12px;
}

.tool-result-rows div {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
}

.tool-result-rows span {
  color: #8d8d87;
  font-size: 0.86rem;
}

.tool-result-rows strong {
  color: #ffffff;
  line-height: 1.45;
}

.mono-page-footer {
  width: min(calc(100% - 44px), var(--container));
  margin: 0 auto;
  color: #111111;
}

@media (max-width: 1120px) {
  body.mono-theme .hero-grid,
  .service-hero,
  .tools-hero,
  .mono-heartbeat-section,
  .service-dark-system,
  .tools-workspace {
    grid-template-columns: 1fr;
  }

  body.mono-theme .hero-stage,
  .service-org-board,
  .tools-hero-panel {
    min-height: 420px;
  }

  .mono-company-rail,
  .service-index-grid,
  .tools-page-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tools-output {
    position: relative;
    top: auto;
    min-height: auto;
  }
}

@media (max-width: 760px) {
  body.mono-theme .hero,
  body.mono-page main {
    padding-top: 96px;
  }

  body.mono-theme .site-header,
  body.mono-page .site-header {
    width: calc(100% - 24px);
  }

  body.mono-theme .hero-grid,
  .service-hero,
  .tools-hero {
    gap: 34px;
    min-height: auto;
    padding: 56px 0;
  }

  body.mono-theme .hero-copy h1,
  .service-hero-copy h1,
  .tools-hero-copy h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
    line-height: 0.95;
  }

  body.mono-theme .hero-description,
  .service-hero-copy p,
  .tools-hero-copy p {
    font-size: 1.06rem;
  }

  body.mono-theme .partner-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  body.mono-theme .platform-dock {
    display: none;
  }

  .mono-operating-section,
  .mono-heartbeat-section,
  .service-hero,
  .service-index-section,
  .service-dark-system,
  .service-table-section,
  .services-cta,
  .tools-hero,
  .tools-page-shell,
  .mono-page-footer {
    width: min(calc(100% - 28px), var(--container));
  }

  .mono-operating-section,
  .service-index-section,
  .service-table-section,
  .tools-page-shell {
    padding: 58px 0;
  }

  .mono-company-rail,
  .service-index-grid,
  .tools-page-tabs {
    grid-template-columns: 1fr;
  }

  .mono-company-card,
  .service-index-card {
    min-height: 190px;
  }

  .mono-org-chart,
  .service-org-board {
    min-height: auto;
    padding: 36px 18px;
    border-radius: 22px;
  }

  .org-row,
  .service-org-row {
    display: grid;
    width: 100%;
  }

  .org-node,
  .service-org-node {
    width: 100%;
    min-width: 0;
  }

  .mono-heartbeat-section,
  .service-dark-system {
    gap: 34px;
    margin: 42px auto;
    padding: 42px 18px;
    border-radius: 24px;
  }

  .timeline-head,
  .service-timeline .timeline-head {
    padding-left: 0;
    gap: 10px;
    font-size: 0.68rem;
  }

  .timeline-row,
  .service-timeline-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 0;
  }

  .heartbeat-timeline,
  .service-timeline,
  .tools-page-panel {
    padding: 20px;
    border-radius: 22px;
  }

  .service-matrix {
    border-radius: 18px;
  }

  .service-matrix-row,
  .service-matrix-row.heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .service-matrix-row.heading span:not(:first-child) {
    display: none;
  }

  .services-cta {
    display: grid;
    padding: 26px;
  }

  .services-cta .btn {
    width: 100%;
  }

  .tools-panel-head {
    display: grid;
  }

  .tools-panel-head > svg {
    width: 34px;
    height: 34px;
  }

  .tools-page-tabs button {
    min-height: 56px;
  }

  .tools-output {
    padding: 22px;
  }

  .tool-score-ring {
    width: 138px;
    height: 138px;
  }

  .tool-score-ring strong {
    font-size: 2.4rem;
  }
}

@media (max-width: 420px) {
  body.mono-theme .hero-logo {
    max-width: 250px;
  }

  body.mono-theme .hero-copy h1,
  .service-hero-copy h1,
  .tools-hero-copy h1 {
    font-size: clamp(2.72rem, 13.8vw, 3.7rem);
  }

  .mono-section-copy h2,
  .service-dark-copy h2,
  .mono-heartbeat-copy h2,
  .services-cta h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .tools-page-panel,
  .service-hero,
  .tools-hero {
    overflow: hidden;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(118, 248, 255, 0.11), transparent 32%),
    radial-gradient(circle at 80% 12%, rgba(144, 255, 155, 0.08), transparent 26%),
    linear-gradient(180deg, #071014 0%, #06090b 22%, #070a0c 100%);
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.22));
  pointer-events: none;
}

.noise,
.spotlight {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.noise {
  z-index: -2;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.22) 1px, transparent 0);
  background-size: 18px 18px;
}

.spotlight {
  z-index: -1;
  --x: 50vw;
  --y: 10vh;
  background:
    radial-gradient(520px circle at var(--x) var(--y), rgba(118, 248, 255, 0.12), transparent 50%),
    radial-gradient(360px circle at calc(var(--x) + 80px) calc(var(--y) + 60px), rgba(255, 180, 84, 0.08), transparent 55%);
}

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

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

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

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

::selection {
  background: rgba(118, 248, 255, 0.28);
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 100;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 32px), var(--container));
  height: 82px;
  z-index: 90;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 20px;
  transition: height 180ms ease, top 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  top: 12px;
  height: 68px;
  background: rgba(7, 10, 12, 0.78);
  border: 1px solid var(--border);
  border-radius: 14px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

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

.brand img {
  width: 40px;
  height: 40px;
}

.brand.has-full-logo .brand-copy {
  display: none;
}

.brand img.brand-logo-img {
  width: 150px;
  height: 48px;
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: #ffffff;
  object-fit: contain;
  object-position: center;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.72rem;
}

.desktop-nav,
.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

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

.desktop-nav a,
.footer-links a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--text);
}

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

.btn,
.icon-button,
.service-item,
.hero-mode-tabs button,
.industry-tabs button,
.case-nav button,
.promise-dots button,
.billing-toggle button {
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  white-space: nowrap;
}

.btn svg,
.icon-button svg,
.industry-tabs button svg,
.promise-icon svg {
  width: 18px;
  height: 18px;
}

.btn:hover,
.icon-button:hover,
.service-item:hover,
.hero-mode-tabs button:hover,
.industry-tabs button:hover,
.case-nav button:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #071014;
  background: linear-gradient(120deg, var(--primary), var(--secondary));
  box-shadow: 0 18px 42px rgba(118, 248, 255, 0.15);
}

.btn-primary span,
.btn-primary svg {
  color: #071014;
  opacity: 1;
}

.btn-primary:hover {
  box-shadow: 0 22px 48px rgba(118, 248, 255, 0.22);
}

.btn-ghost,
.icon-button {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.btn-ghost:hover,
.icon-button:hover {
  border-color: rgba(118, 248, 255, 0.34);
}

.btn-large {
  min-height: 54px;
  padding-inline: 22px;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.mobile-menu {
  position: fixed;
  inset: 88px 12px auto 12px;
  z-index: 80;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(7, 10, 12, 0.95);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.mobile-menu a {
  display: block;
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 1.05rem;
  font-weight: 800;
}

.mobile-menu a:last-child {
  border-bottom: 0;
}

.mobile-menu.is-open {
  display: block;
}

main {
  position: relative;
}

.section,
.hero,
.site-footer {
  padding-inline: 24px;
}

.section {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding-top: 112px;
  padding-bottom: 112px;
  scroll-margin-top: 92px;
}

.section-band {
  position: relative;
  width: 100%;
  padding-inline: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    linear-gradient(90deg, rgba(255, 255, 255, 0.01), transparent 30%, rgba(255, 255, 255, 0.01) 70%, transparent);
}

.section-band .section-heading,
.section-band .service-layout,
.section-band .simulator-shell,
.section-band .case-shell,
.section-band .promise-shell,
.section-band .pricing-grid,
.section-band .pricing-note,
.section-band .faq-list {
  width: min(100%, var(--container));
  margin-inline: auto;
}

.hero {
  position: relative;
  width: min(100%, var(--container));
  margin: 0 auto;
  padding-top: 140px;
  padding-bottom: 88px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 74px -138px auto auto;
  width: min(48vw, 620px);
  aspect-ratio: 1;
  background:
    linear-gradient(180deg, rgba(6, 9, 11, 0.1), rgba(6, 9, 11, 0.78)),
    url("https://res.cloudinary.com/dhlldwpvx/image/upload/c_limit,w_1200/f_auto/q_auto/v1778314672/nexadly/hero-bg.png") center / cover no-repeat;
  opacity: 0.34;
  mask-image: radial-gradient(circle, rgba(0, 0, 0, 0.95) 28%, transparent 74%);
  pointer-events: none;
}

.hero-grid,
.service-layout,
.simulator-shell,
.lab-layout,
.stack-layout,
.case-shell,
.contact-layout,
.industry-stage {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  align-items: center;
}

.hero-grid,
.proof-grid {
  position: relative;
  z-index: 1;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading.center {
  text-align: center;
  margin-inline: auto auto;
}

.section-heading > span,
.eyebrow,
.status-pill,
.panel-tag,
.speed-callout span,
.partner-row span,
.hero-mode-tabs button,
.live-pill,
.proof-card span,
.sim-pill,
.pricing-note,
.form-head,
.preview-head span,
.sim-result-head span,
.command-copy span,
.command-score small,
.command-queue span,
.terminal-bar,
.terminal,
.process-head span {
  font-family: var(--font-mono);
}

.section-heading > span,
.eyebrow,
.panel-tag {
  display: inline-block;
  color: var(--primary);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.section-heading h2,
.hero-copy h1,
.footer-cta h2 {
  margin: 16px 0;
  font-family: var(--font-display);
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 10.5ch;
  font-size: clamp(3.2rem, 6.4vw, 6rem);
  line-height: 0.9;
}

.hero-logo {
  width: min(460px, 100%);
  height: 124px;
  margin: 0 0 18px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: #ffffff;
  object-fit: contain;
  object-position: center;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.26);
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 0.95;
}

.hero-description,
.section-heading p,
.speed-callout strong,
.hero-trust strong,
.hero-trust small,
.command-copy p,
.panel-head p,
.industry-copy p,
.sim-recommendation p,
.contact-form p,
.pricing-card p,
.faq-answer p,
.footer-cta p {
  color: var(--muted);
}

.hero-description,
.section-heading p,
.speed-callout strong,
.command-copy p,
.panel-head p,
.industry-copy p,
.pricing-card p,
.contact-form p,
.footer-cta p {
  font-size: 1.04rem;
  line-height: 1.7;
}

.hero-description {
  max-width: 650px;
  font-size: 1.16rem;
  color: #c5ced3;
}

.status-pill,
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(118, 248, 255, 0.28);
  border-radius: 999px;
  background: rgba(118, 248, 255, 0.06);
  color: var(--text);
  font-size: 0.78rem;
}

.status-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 6px rgba(144, 255, 155, 0.08);
  animation: pulse 2.2s ease-in-out infinite;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 28px;
}

.speed-callout {
  position: relative;
  display: grid;
  gap: 8px;
  max-width: 640px;
  margin: 22px 0 16px;
  padding: 18px 20px;
  border: 1px solid rgba(118, 248, 255, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(118, 248, 255, 0.1), rgba(144, 255, 155, 0.055), rgba(255, 180, 84, 0.06)),
    rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.speed-callout::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  transform: translateX(-110%);
  animation: sheen 4.8s ease-in-out infinite;
}

.speed-callout span {
  color: var(--primary);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.speed-callout strong {
  position: relative;
  z-index: 1;
  color: var(--text);
  font-weight: 800;
}

.partner-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 0;
}

.partner-row span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 15px 0 9px;
  border: 1px solid rgba(144, 255, 155, 0.2);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(7, 16, 20, 0.64);
  color: var(--text);
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
}

.partner-row img {
  width: 28px;
  height: 28px;
}

.platform-dock {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.platform-dock span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 13px 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 800;
}

.platform-dock img,
.platform-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

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

.hero-trust div,
.proof-card,
.command-shell,
.service-panel,
.industry-copy,
.simulator-controls,
.simulator-results,
.lab-card,
.stack-card,
.terminal,
.case-stage,
.process-card,
.promise-card,
.pricing-card,
.faq-item,
.contact-form,
.proposal-preview,
.footer-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.hero-trust div::before,
.proof-card::before,
.command-shell::before,
.service-panel::before,
.industry-copy::before,
.simulator-controls::before,
.simulator-results::before,
.lab-card::before,
.stack-card::before,
.terminal::before,
.case-stage::before,
.process-card::before,
.promise-card::before,
.pricing-card::before,
.faq-item::before,
.contact-form::before,
.proposal-preview::before,
.footer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(118, 248, 255, 0.1), transparent 30%, transparent 70%, rgba(255, 180, 84, 0.06));
  pointer-events: none;
}

.hero-trust div {
  padding: 18px;
}

.hero-trust small {
  display: block;
  margin-bottom: 10px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-trust strong {
  font-size: 0.98rem;
  line-height: 1.5;
}

.hero-stage {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(118, 248, 255, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(118, 248, 255, 0.12), transparent),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 100%, 44px 44px, 44px 44px;
  opacity: 0.42;
  pointer-events: none;
}

.hero-stage > * {
  position: relative;
  z-index: 1;
}

.hero-visual-stack {
  position: relative;
  min-height: 232px;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid rgba(118, 248, 255, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    rgba(4, 9, 12, 0.66);
}

.hero-visual-stack::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(4, 9, 12, 0.88));
  pointer-events: none;
}

.hero-visual-stack::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -45%;
  z-index: 3;
  width: 44%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: skewX(-14deg);
  animation: visualSweep 6.5s ease-in-out infinite;
  pointer-events: none;
}

.hero-visual-main {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transform: scale(1.04);
  animation: visualDrift 12s ease-in-out infinite alternate;
}

.hero-visual-card {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 7px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(6, 11, 14, 0.76);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.34);
  animation: panelFloat 6s ease-in-out infinite;
}

.hero-visual-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
}

.hero-visual-card span {
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.visual-card-tech {
  top: 14px;
  right: 14px;
  width: 118px;
  animation-delay: -2.2s;
}

.visual-card-dashboard {
  left: 14px;
  bottom: 14px;
  width: 150px;
}

.stage-head,
.sim-result-head,
.preview-head,
.footer-bar,
.process-head,
.promise-controls,
.command-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.stage-head {
  margin-bottom: 18px;
}

.panel-head {
  display: grid;
  grid-template-columns: minmax(170px, 0.34fr) minmax(0, 1fr);
  gap: 18px 28px;
  align-items: start;
}

.panel-head > span {
  grid-column: 1;
}

.panel-head h3 {
  grid-column: 1;
  margin: 0;
  max-width: 10ch;
}

.panel-head p {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  max-width: 680px;
}

.stage-head h2 {
  margin: 6px 0 0;
  font-size: 1.3rem;
  font-family: var(--font-display);
}

.hero-mode-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-mode-tabs button,
.industry-tabs button,
.case-nav button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-mode-tabs button {
  gap: 8px;
  display: inline-flex;
  align-items: center;
}

.hero-mode-tabs button.is-active,
.industry-tabs button.is-active,
.case-nav button.is-active {
  border-color: rgba(118, 248, 255, 0.4);
  background: rgba(118, 248, 255, 0.12);
  color: var(--text);
}

.command-shell {
  padding: 24px;
}

.command-copy h3,
.panel-head h3,
.industry-copy h3,
.sim-result-head h3,
.case-copy h3,
.pricing-card h3,
.preview-head h3,
.promise-card h3 {
  margin: 8px 0 12px;
  font-family: var(--font-display);
  font-size: 1.42rem;
  line-height: 1.25;
}

.command-score {
  margin: 22px 0 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.command-score strong {
  font-size: 1.28rem;
}

.command-metrics,
.sim-metric-grid,
.preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.command-metrics article,
.sim-metric-grid article,
.preview-grid article {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.command-metrics span,
.sim-metric-grid span,
.preview-grid small {
  display: block;
  color: var(--faint);
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.command-metrics strong,
.sim-metric-grid strong,
.preview-grid strong,
.proof-card strong,
.pricing-value {
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.command-foot,
.industry-columns,
.case-columns,
.sim-recommendation,
.panel-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.command-queue,
.command-bars,
.case-scoreboard,
.preview-block,
.industry-columns article,
.sim-recommendation article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.command-queue ul,
.panel-detail-grid ul,
.industry-columns ul,
.case-columns ul,
.pricing-card ul,
.preview-block ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.command-queue li,
.panel-detail-grid li,
.industry-columns li,
.case-columns li,
.pricing-card li,
.preview-block li {
  margin-bottom: 6px;
}

.mini-bar {
  margin-bottom: 14px;
}

.mini-bar:last-child {
  margin-bottom: 0;
}

.mini-bar > div,
.sim-funnel-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
}

.mini-bar span,
.sim-funnel-bar span,
.case-scoreboard > span,
.command-queue span {
  color: var(--faint);
  font-size: 0.82rem;
}

.mini-bar b,
.sim-funnel-bar small {
  font-size: 0.84rem;
}

.mini-bar i,
.sim-funnel-bar i {
  position: relative;
  display: block;
  width: 100%;
  height: 10px;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.mini-bar i b,
.sim-funnel-bar i b {
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.proof-card {
  padding: 20px;
}

.proof-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.6rem, 2vw, 2rem);
}

.proof-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.86rem;
}

.proof-card small {
  color: var(--muted);
  line-height: 1.6;
}

.service-layout {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
}

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

.service-item {
  padding: 18px;
  text-align: left;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.service-item.is-active {
  border-color: rgba(118, 248, 255, 0.38);
  background: rgba(118, 248, 255, 0.08);
}

.service-item-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.service-item-top span,
.service-item p,
.pricing-card small,
.form-note,
.preview-status,
.process-card small {
  color: var(--muted);
}

.service-item-top span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.service-item-top b {
  color: var(--accent);
  font-size: 0.8rem;
}

.service-item strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 1rem;
}

.service-item p {
  margin: 0;
  line-height: 1.6;
}

.service-panel,
.contact-form,
.proposal-preview {
  padding: 24px;
}

.panel-detail-grid article h4,
.industry-columns h4,
.case-columns h4,
.preview-block h4 {
  margin: 0 0 10px;
  font-size: 0.95rem;
}

.panel-detail-grid article p,
.industry-columns article p,
.preview-block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.panel-head > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.loop-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.loop-strip div {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.loop-strip small {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
}

.loop-strip strong {
  font-size: 0.95rem;
}

.industry-tabs,
.case-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.industry-stage {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
}

.industry-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  min-height: 100%;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.industry-visual img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.industry-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 10px;
}

.industry-overlay article {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(4, 8, 10, 0.72);
  backdrop-filter: blur(14px);
}

.industry-overlay span {
  display: block;
  color: var(--faint);
  font-size: 0.78rem;
  margin-bottom: 6px;
}

.industry-copy {
  padding: 24px;
}

.seo-engine-shell,
.free-tool-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 20px;
  align-items: stretch;
}

.seo-command,
.seo-system-card,
.free-tool-panel,
.free-tool-output {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.seo-command {
  padding: 26px;
  min-height: 100%;
}

.seo-command h3,
.seo-system-card h3,
.free-tool-head h3,
.free-tool-output h3 {
  margin: 10px 0 12px;
  font-family: var(--font-display);
  line-height: 1.18;
}

.seo-command p,
.seo-system-card p,
.free-tool-head p,
.free-tool-output p {
  color: var(--muted);
  line-height: 1.7;
}

.seo-score-grid {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.seo-score-grid div,
.free-tool-output li {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.seo-score-grid div {
  padding: 16px;
}

.seo-score-grid small,
.free-tool-output small {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.seo-score-grid strong {
  line-height: 1.45;
}

.seo-system-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.seo-system-card {
  padding: 22px;
}

.seo-system-card > i {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(118, 248, 255, 0.2);
  border-radius: 50%;
  background: rgba(118, 248, 255, 0.08);
  color: var(--primary);
}

.free-tools-shell {
  width: min(100%, var(--container));
  margin-inline: auto;
}

.free-tool-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.free-tool-tabs button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-weight: 800;
}

.free-tool-tabs button.is-active {
  border-color: rgba(118, 248, 255, 0.42);
  background: rgba(118, 248, 255, 0.12);
  color: var(--text);
}

.free-tool-panel {
  padding: 24px;
}

.free-tool-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.free-tool-head > i {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(144, 255, 155, 0.22);
  border-radius: 50%;
  background: rgba(144, 255, 155, 0.08);
  color: var(--secondary);
}

.free-tool-grid h4 {
  margin: 0 0 16px;
  color: var(--text);
}

.free-tool-fields {
  display: grid;
  gap: 12px;
}

.free-tool-fields label {
  display: grid;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
}

.tool-range {
  margin-bottom: 0;
}

.free-tool-output {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  min-height: 100%;
}

.tool-score {
  display: inline-flex;
  align-items: baseline;
  width: fit-content;
  gap: 4px;
  margin: 16px 0 8px;
  padding: 10px 14px;
  border: 1px solid rgba(118, 248, 255, 0.2);
  border-radius: 16px;
  background: rgba(118, 248, 255, 0.08);
}

.tool-score strong {
  font-family: var(--font-display);
  font-size: 2.35rem;
  line-height: 1;
}

.tool-score small {
  margin: 0;
}

.free-tool-output ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.free-tool-output li {
  padding: 13px 14px;
  color: #d6dee2;
  line-height: 1.55;
}

.ai-search-suite {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 20px;
  margin-top: 20px;
}

.ai-search-copy,
.crawler-panel,
.answer-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.ai-search-copy {
  padding: 26px;
}

.ai-search-copy h3,
.answer-card h3 {
  margin: 10px 0 12px;
  font-family: var(--font-display);
  line-height: 1.16;
}

.ai-search-copy p,
.answer-card p {
  color: var(--muted);
  line-height: 1.7;
}

.crawler-panel {
  padding: 0;
  min-width: 0;
}

.crawler-bar {
  display: grid;
  grid-template-columns: auto auto auto 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-mono);
}

.crawler-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.crawler-bar span:nth-child(1) {
  background: var(--coral);
}

.crawler-bar span:nth-child(2) {
  background: var(--accent);
}

.crawler-bar span:nth-child(3) {
  background: var(--secondary);
}

.crawler-bar strong {
  min-width: 0;
  color: #dfe8ec;
  font-size: 0.9rem;
}

.crawler-bar b {
  color: var(--secondary);
  font-size: 0.78rem;
}

.crawler-stream {
  display: flex;
  gap: 12px;
  padding: 22px 18px;
  width: max-content;
  min-width: max-content;
  overflow: visible;
  animation: crawlerScroll 44s linear infinite;
  will-change: transform;
}

.crawler-panel {
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.crawler-panel:hover .crawler-stream {
  animation-play-state: paused;
}

.crawler-stream span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(118, 248, 255, 0.18);
  border-radius: 999px;
  background: rgba(118, 248, 255, 0.08);
  color: #dffcff;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
}

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

.crawler-grid div {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.crawler-grid small {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.crawler-grid strong {
  line-height: 1.35;
}

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

.answer-card {
  padding: 22px;
}

.answer-card > i {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 180, 84, 0.22);
  border-radius: 50%;
  background: rgba(255, 180, 84, 0.08);
  color: var(--accent);
}

.simulator-shell {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.simulator-controls {
  padding: 24px;
}

.control-group,
.range-group {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.control-group label,
.range-group span,
.contact-form label,
.popup-form label,
.admin-login-card label,
.admin-filter label {
  color: var(--text);
  font-weight: 700;
}

select,
input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

select,
input {
  min-height: 48px;
  padding: 0 14px;
}

textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
}

input[type="range"] {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  accent-color: var(--primary);
}

.range-group b {
  color: var(--accent);
}

.simulator-results {
  padding: 24px;
}

.sim-pill {
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  min-height: 38px;
  border-radius: 999px;
  background: rgba(118, 248, 255, 0.12);
  color: var(--text);
}

.sim-funnel,
.pricing-card ul {
  margin-top: 18px;
}

.sim-funnel-bar {
  margin-bottom: 14px;
}

.sim-recommendation {
  margin-top: 18px;
}

.lab-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  align-items: start;
}

.channel-mixer {
  grid-column: 1 / -1;
}

.lab-card {
  padding: 24px;
}

.lab-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.lab-head h3 {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.25;
}

.lab-head > i {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(118, 248, 255, 0.2);
  border-radius: 50%;
  background: rgba(118, 248, 255, 0.08);
  color: var(--primary);
}

.lab-head svg {
  width: 20px;
  height: 20px;
}

.lab-tabs,
.goal-grid {
  display: grid;
  gap: 10px;
}

.lab-tabs {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 12px;
}

.goal-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 18px;
}

.lab-tabs button,
.goal-grid button {
  min-height: 48px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-weight: 800;
}

.goal-grid button {
  min-height: 72px;
  flex-direction: column;
}

.lab-tabs button svg,
.goal-grid button svg {
  width: 18px;
  height: 18px;
}

.lab-tabs button.is-active,
.goal-grid button.is-active {
  border-color: rgba(118, 248, 255, 0.38);
  background: rgba(118, 248, 255, 0.11);
  color: var(--text);
}

.offer-output {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(255, 180, 84, 0.09), transparent 34%),
    rgba(255, 255, 255, 0.03);
}

.offer-title span,
.readiness-score span {
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.offer-title h4,
.readiness-score h4 {
  margin: 8px 0 18px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.3;
}

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

.offer-grid article {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.offer-grid small {
  display: block;
  margin-bottom: 8px;
  color: var(--faint);
}

.offer-grid strong {
  color: var(--text);
  line-height: 1.55;
}

.scanner-controls {
  display: grid;
  gap: 4px;
}

.readiness-score {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px;
  margin-top: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.readiness-score p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.readiness-score p strong {
  color: var(--text);
}

.score-ring {
  width: 112px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, #081014 58%, transparent 60%),
    conic-gradient(var(--primary) calc(var(--score) * 1%), rgba(255, 255, 255, 0.08) 0);
}

.score-ring strong {
  font-family: var(--font-display);
  font-size: 2rem;
}

.score-ring small {
  margin-top: -38px;
  color: var(--muted);
}

.readiness-bars {
  margin-top: 18px;
}

.mixer-controls {
  display: grid;
  gap: 18px;
}

.channel-toggles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.channel-toggle {
  min-height: 74px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-weight: 800;
}

.channel-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.channel-toggle img {
  width: 30px;
  height: 30px;
}

.channel-toggle.is-active {
  border-color: rgba(118, 248, 255, 0.38);
  background: rgba(118, 248, 255, 0.11);
  color: var(--text);
}

.channel-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 12px;
}

.channel-summary div,
.channel-allocation article {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.channel-summary span,
.channel-allocation small {
  display: block;
  color: var(--faint);
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.channel-summary strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.channel-allocation {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.channel-allocation article > div {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  font-weight: 800;
}

.channel-allocation img {
  width: 28px;
  height: 28px;
}

.channel-allocation strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.channel-allocation p {
  min-height: 54px;
  margin: 10px 0 14px;
  color: var(--muted);
  line-height: 1.55;
}

.channel-allocation i {
  position: relative;
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.channel-allocation i b {
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.stack-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  align-items: start;
}

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

.stack-card {
  padding: 20px;
}

.stack-card > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.stack-card > span svg {
  width: 18px;
  height: 18px;
}

.stack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stack-tags b {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.84rem;
}

.terminal {
  padding: 0;
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.76rem;
}

.terminal-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.terminal-bar span:nth-child(1) {
  background: #ff6a7f;
}

.terminal-bar span:nth-child(2) {
  background: #ffd15b;
}

.terminal-bar span:nth-child(3) {
  background: #7ef2a7;
}

.terminal-bar strong {
  margin-left: 6px;
  margin-right: auto;
  color: var(--text);
}

.terminal-bar b {
  color: var(--secondary);
}

.terminal pre {
  position: relative;
  margin: 0;
  min-height: 370px;
  padding: 22px;
  font-family: var(--font-mono);
  font-size: 0.84rem;
  line-height: 1.9;
  color: var(--muted);
  white-space: pre-wrap;
}

.terminal pre::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 1.15em;
  margin-left: 6px;
  vertical-align: -0.2em;
  border-radius: 2px;
  background: var(--primary);
  animation: cursorBlink 900ms steps(2, end) infinite;
}

.terminal::after {
  content: "";
  position: absolute;
  inset: 50px auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(118, 248, 255, 0.68), transparent);
  animation: terminalScan 3.6s ease-in-out infinite;
}

.terminal .tone-cmd {
  color: var(--text);
}

.terminal .tone-ok {
  color: var(--secondary);
}

.stack-marquee {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 100%;
  min-height: 72px;
  margin-top: 22px;
  overflow: hidden;
  contain: layout paint;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.03);
}

.stack-marquee::before,
.stack-marquee::after {
  content: "";
  position: absolute;
  inset-block: 0;
  z-index: 2;
  width: 92px;
  pointer-events: none;
}

.stack-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(7, 10, 12, 0.95), transparent);
}

.stack-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(7, 10, 12, 0.95), transparent);
}

.stack-marquee #stackTicker {
  position: absolute;
  inset: 0 auto 0 0;
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  min-width: max-content;
  padding: 12px 16px;
  animation: stackSlide 18s linear infinite;
  will-change: transform;
}

.stack-marquee:hover #stackTicker {
  animation-play-state: paused;
}

.stack-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: #edf6f7;
  font-size: 0.94rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.stack-ticker-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.stack-ticker-item b {
  white-space: nowrap;
}

.stack-ticker-item small {
  color: var(--faint);
  font-size: 0.72rem;
  white-space: nowrap;
}

.case-shell {
  grid-template-columns: minmax(240px, 0.44fr) minmax(0, 1fr);
  align-items: start;
}

.case-nav {
  display: grid;
}

.case-nav button {
  justify-content: flex-start;
  min-height: 48px;
}

.case-stage {
  padding: 24px;
}

.case-copy p,
.promise-card p {
  color: var(--muted);
  line-height: 1.7;
}

.case-columns,
.preview-grid {
  margin-top: 18px;
}

.case-scoreboard {
  margin-top: 20px;
}

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

.process-card {
  padding: 20px;
}

.process-head {
  margin-bottom: 18px;
}

.process-head span {
  color: var(--primary);
  font-size: 0.8rem;
}

.process-head i {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.process-card h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  font-family: var(--font-display);
}

.process-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.promise-shell {
  display: block;
}

.promise-card {
  padding: 28px;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.promise-icon {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(118, 248, 255, 0.12);
  color: var(--primary);
}

.promise-card > span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.promise-dots {
  display: inline-flex;
  gap: 8px;
}

.promise-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.18);
}

.promise-dots button.is-active {
  width: 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.billing-toggle span {
  color: var(--muted);
  font-weight: 800;
}

.billing-toggle span.is-active {
  color: var(--text);
}

.billing-toggle small {
  color: var(--secondary);
}

.billing-toggle button {
  position: relative;
  width: 54px;
  height: 30px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.07);
}

.billing-toggle button b {
  position: absolute;
  inset: 3px auto 3px 3px;
  width: 22px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--primary), var(--secondary));
  transition: transform 180ms ease;
}

.billing-toggle button.is-active b {
  transform: translateX(24px);
}

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

.pricing-card {
  padding: 24px;
}

.pricing-card.is-featured {
  border-color: rgba(118, 248, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(118, 248, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
}

.pricing-card > span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
}

.pricing-value {
  display: block;
  margin: 22px 0 10px;
}

.pricing-value small {
  color: var(--muted);
  font-size: 0.92rem;
}

.pricing-card .btn {
  width: 100%;
  margin-top: 20px;
}

.pricing-note {
  margin: 20px auto 0;
  text-align: center;
}

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

.faq-item {
  padding: 0 20px;
}

.faq-item button {
  width: 100%;
  min-height: 78px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
  font-weight: 800;
}

.faq-item button i {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  color: var(--primary);
  font-style: normal;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  margin: 0 0 20px;
  line-height: 1.8;
}

.contact-layout {
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
  align-items: start;
}

.form-head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.76rem;
}

.form-head span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.form-head span:nth-child(1) {
  background: #ff6a7f;
}

.form-head span:nth-child(2) {
  background: #ffd15b;
}

.form-head span:nth-child(3) {
  background: #7ef2a7;
}

.form-head strong {
  margin-left: 6px;
  margin-right: auto;
  color: var(--text);
}

.form-head b {
  color: var(--secondary);
}

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

.other-industry-field {
  grid-column: 1 / -1;
}

.other-industry-field[hidden] {
  display: none;
}

.contact-form label {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.btn-submit {
  margin-top: 8px;
}

.contact-form.is-submitted {
  border-color: rgba(144, 255, 155, 0.34);
}

.form-note {
  margin: 14px 0 0;
}

.proposal-preview {
  display: grid;
  gap: 18px;
}

.preview-head p {
  margin: 0;
}

.preview-block {
  margin-top: 0;
}

.preview-status {
  margin: 0;
  color: var(--secondary);
  font-weight: 700;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.lead-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 70% 12%, rgba(118, 248, 255, 0.16), transparent 28%),
    rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(14px);
}

.lead-modal-panel {
  position: relative;
  width: min(100%, 780px);
  max-height: calc(100vh - 28px);
  overflow: auto;
  padding: 20px;
  border: 1px solid rgba(118, 248, 255, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(118, 248, 255, 0.1), transparent 36%, rgba(144, 255, 155, 0.08)),
    rgba(8, 13, 16, 0.96);
  box-shadow: 0 32px 120px rgba(0, 0, 0, 0.62);
}

.modal-topline,
.admin-header,
.admin-actions,
.admin-toolbar,
.lead-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal-topline {
  justify-content: space-between;
  margin-bottom: 12px;
}

.modal-topline span,
.admin-mode,
.admin-card span,
.lead-source,
.lead-date,
.admin-status {
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.modal-copy h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 0.98;
}

.modal-copy p,
.modal-status,
.admin-hero p,
.admin-login-card p,
.lead-row p,
.admin-empty,
.admin-error {
  color: var(--muted);
  line-height: 1.7;
}

.modal-copy p {
  margin: 0;
}

.popup-form {
  margin-top: 14px;
}

.popup-form .form-grid {
  gap: 12px;
}

.popup-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.popup-form textarea {
  min-height: 92px;
}

.modal-status {
  min-height: 1.4em;
  margin: 14px 0 0;
  font-weight: 700;
}

.modal-status[data-tone="success"] {
  color: var(--secondary);
}

.modal-status[data-tone="error"] {
  color: var(--coral);
}

.admin-body {
  min-height: 100vh;
}

.admin-header {
  position: sticky;
  top: 14px;
  z-index: 90;
  justify-content: space-between;
  width: min(calc(100% - 32px), var(--container));
  margin: 14px auto 0;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(7, 10, 12, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.admin-shell {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 52px 24px 96px;
}

.admin-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 18px;
}

.admin-hero h1 {
  max-width: 820px;
  margin: 10px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  line-height: 0.94;
}

.admin-mode {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(118, 248, 255, 0.22);
  border-radius: 999px;
  background: rgba(118, 248, 255, 0.06);
  color: var(--text);
}

.admin-login-card,
.admin-card,
.admin-panel,
.lead-row {
  border: 1px solid var(--border);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.028)),
    rgba(255, 255, 255, 0.025);
  box-shadow: var(--shadow);
}

.admin-login-card {
  max-width: 640px;
  padding: 24px;
  margin-bottom: 24px;
}

.admin-settings-card {
  max-width: none;
}

.admin-login-card form {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr) auto;
  align-items: end;
  gap: 12px;
  margin-top: 18px;
}

.admin-login-card .admin-settings-form {
  grid-template-columns: repeat(2, minmax(180px, 1fr)) auto;
}

.admin-login-card label {
  display: grid;
  gap: 10px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.admin-card {
  padding: 16px;
}

.admin-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.admin-card svg {
  width: 18px;
  height: 18px;
}

.admin-card strong {
  display: block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.admin-panel {
  padding: 18px;
}

.admin-toolbar {
  justify-content: space-between;
  margin-bottom: 16px;
}

.admin-filter {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 190px 160px;
  gap: 12px;
  width: 100%;
}

.admin-filter label {
  display: grid;
  gap: 8px;
  margin: 0;
}

.admin-table {
  display: grid;
  gap: 12px;
}

.lead-row {
  display: grid;
  grid-template-columns: minmax(220px, 1.3fr) repeat(4, minmax(110px, 0.72fr)) auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
}

.lead-row > div {
  min-width: 0;
}

.lead-row strong {
  display: block;
  overflow-wrap: anywhere;
}

.lead-row p {
  margin: 6px 0 0;
  overflow-wrap: anywhere;
}

.lead-row small {
  color: var(--faint);
}

.lead-source {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(118, 248, 255, 0.16);
  border-radius: 999px;
  background: rgba(118, 248, 255, 0.05);
  color: var(--text);
}

.lead-actions {
  justify-content: flex-end;
}

.lead-actions .icon-button {
  width: 38px;
  height: 38px;
}

.admin-empty,
.admin-error {
  padding: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.admin-error {
  color: var(--coral);
}

.site-footer {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 48px;
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 28px;
  margin-bottom: 18px;
}

.footer-cta > div > span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.footer-cta h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 0.98;
}

.footer-bar {
  padding: 10px 2px 0;
}

.footer-brand {
  min-width: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 580ms ease, transform 580ms ease;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

@keyframes stackSlide {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-25%, 0, 0);
  }
}

@keyframes cursorBlink {
  0%,
  45% {
    opacity: 1;
  }

  46%,
  100% {
    opacity: 0.18;
  }
}

@keyframes terminalScan {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0;
  }

  12%,
  72% {
    opacity: 0.8;
  }

  82% {
    transform: translateY(318px);
    opacity: 0;
  }
}

@keyframes sheen {
  0%,
  54% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(110%);
  }
}

@keyframes visualDrift {
  from {
    transform: scale(1.04) translate3d(-8px, -4px, 0);
  }

  to {
    transform: scale(1.09) translate3d(10px, 6px, 0);
  }
}

@keyframes visualSweep {
  0%,
  50% {
    transform: translateX(0) skewX(-14deg);
    opacity: 0;
  }

  66% {
    opacity: 0.75;
  }

  100% {
    transform: translateX(360%) skewX(-14deg);
    opacity: 0;
  }
}

@keyframes panelFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes crawlerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 1120px) {
  .hero-grid,
  .service-layout,
  .simulator-shell,
  .lab-layout,
  .stack-layout,
  .case-shell,
  .contact-layout,
  .industry-stage,
  .seo-engine-shell,
  .ai-search-suite,
  .free-tool-grid {
    grid-template-columns: 1fr;
  }

  .hero-trust,
  .proof-grid,
  .pricing-grid,
  .admin-stats,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-hero {
    grid-template-columns: 1fr;
  }

  .lead-row {
    grid-template-columns: minmax(220px, 1fr) repeat(2, minmax(120px, 0.6fr));
  }

  .command-metrics,
  .sim-metric-grid,
  .preview-grid,
  .stack-grid,
  .seo-system-grid,
  .answer-engine-grid,
  .offer-grid,
  .channel-allocation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav,
  .header-actions .btn-ghost {
    display: none;
  }
}

@media (max-width: 860px) {
  .section,
  .hero,
  .site-footer,
  .section-band {
    padding-inline: 14px;
  }

  .site-header {
    width: calc(100% - 20px);
    padding: 0 14px;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .hero-trust,
  .proof-grid,
  .command-metrics,
  .sim-metric-grid,
  .preview-grid,
  .pricing-grid,
  .form-grid,
  .admin-stats,
  .admin-filter,
  .process-grid,
  .command-foot,
  .panel-detail-grid,
  .industry-columns,
  .sim-recommendation,
  .case-columns,
  .offer-grid,
  .readiness-score,
  .channel-summary,
  .channel-allocation,
  .answer-engine-grid,
  .footer-cta {
    grid-template-columns: 1fr;
  }

  .footer-bar {
    display: grid;
    gap: 16px;
    justify-content: start;
  }

  .admin-login-card form,
  .admin-login-card .admin-settings-form,
  .lead-row {
    grid-template-columns: 1fr;
  }

  .admin-toolbar,
  .admin-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .lead-actions {
    justify-content: start;
  }
}

@media (max-width: 640px) {
  .section,
  .hero {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .hero {
    padding-top: 122px;
  }

  .site-header {
    height: 72px;
  }

  .site-header.is-scrolled {
    height: 62px;
  }

  .btn {
    white-space: normal;
    text-align: center;
  }

  .hero::before {
    inset: 92px -72px auto auto;
    width: 360px;
    opacity: 0.22;
  }

  .hero-logo {
    width: min(310px, 100%);
    height: 92px;
    border-radius: 18px;
  }

  .hero-description,
  .speed-callout strong,
  .section-heading p,
  .command-copy p,
  .seo-command p,
  .seo-system-card p,
  .free-tool-head p,
  .free-tool-output p {
    color: #c5d0d6;
    font-size: 1rem;
    line-height: 1.55;
  }

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

  .hero-stage,
  .service-panel,
  .industry-copy,
  .simulator-controls,
  .simulator-results,
  .lab-card,
  .case-stage,
  .contact-form,
  .proposal-preview,
  .lead-modal-panel,
  .admin-login-card,
  .admin-panel,
  .seo-command,
  .seo-system-card,
  .free-tool-panel,
  .free-tool-output,
  .ai-search-copy,
  .crawler-panel,
  .answer-card,
  .promise-card,
  .pricing-card,
  .footer-cta {
    padding: 20px;
    border-radius: 18px;
  }

  .hero-visual-stack {
    min-height: 178px;
    border-radius: 18px;
  }

  .hero-visual-card {
    padding: 7px;
  }

  .visual-card-tech {
    display: none;
  }

  .visual-card-dashboard {
    left: 10px;
    bottom: 10px;
    width: 116px;
  }

  .hero-trust div,
  .proof-card,
  .stack-card,
  .process-card {
    padding: 18px;
  }

  .hero-mode-tabs,
  .industry-tabs,
  .case-nav,
  .lab-tabs,
  .goal-grid,
  .seo-system-grid,
  .channel-toggles {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .free-tool-tabs {
    grid-template-columns: 1fr;
  }

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

  .crawler-stream span {
    font-size: 0.78rem;
  }

  .brand img.brand-logo-img {
    width: 136px;
    height: 44px;
    border-radius: 13px;
  }

  .partner-row span,
  .platform-dock span {
    min-height: 40px;
    font-size: 0.82rem;
  }

  .lead-modal {
    padding: 10px;
  }

  .lead-modal-panel {
    max-height: calc(100vh - 20px);
  }

  .modal-copy h2 {
    font-size: 1.72rem;
    line-height: 1.03;
  }

  .modal-copy p {
    display: none;
  }

  .popup-form label {
    margin-bottom: 10px;
  }

  .popup-form textarea {
    min-height: 76px;
  }

  .popup-form input,
  .popup-form select {
    min-height: 44px;
  }

  .hero-mode-tabs button,
  .industry-tabs button,
  .case-nav button {
    justify-content: center;
  }

  .industry-visual img {
    min-height: 340px;
  }

  .terminal pre {
    min-height: 320px;
    font-size: 0.8rem;
  }

  .admin-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 12px;
  }

  .admin-header .brand-copy small {
    display: none;
  }

  .admin-shell {
    padding: 34px 14px 80px;
  }

  .admin-login-card .btn,
  .admin-actions .btn {
    width: 100%;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 14px 18px;
  }
}

/* Final mono visibility pass: keep every section readable after older responsive rules. */
body.mono-theme .reveal,
body.mono-theme .reveal.is-visible,
body.mono-page .reveal,
body.mono-page .reveal.is-visible {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

body.mono-theme .hero-description,
body.mono-theme .section-heading p,
body.mono-theme .command-copy p,
body.mono-theme .seo-command p,
body.mono-theme .seo-system-card p,
body.mono-theme .answer-card p,
body.mono-theme .free-tool-head p,
body.mono-theme .free-tool-output p,
body.mono-theme .service-panel p,
body.mono-theme .contact-form p,
body.mono-theme .proposal-preview p,
body.mono-theme .modal-copy p,
body.mono-page p {
  color: #5f5f5a !important;
}

body.mono-theme label,
body.mono-theme .form-head strong,
body.mono-theme .free-tool-panel label,
body.mono-theme .contact-form label,
body.mono-theme .popup-form label,
body.mono-theme .proposal-preview,
body.mono-page label,
body.mono-page .tools-page-panel,
body.mono-page .service-matrix,
body.mono-page .services-cta {
  color: #111111 !important;
}

body.mono-theme input,
body.mono-theme select,
body.mono-theme textarea,
body.mono-page input,
body.mono-page select,
body.mono-page textarea {
  color: #111111 !important;
  background: #ffffff !important;
  border-color: #d8d5ce !important;
}

body.mono-theme input::placeholder,
body.mono-theme textarea::placeholder,
body.mono-page input::placeholder,
body.mono-page textarea::placeholder {
  color: #76756f !important;
  opacity: 1 !important;
}

body.mono-theme .btn-primary,
body.mono-theme .btn-primary span,
body.mono-theme .btn-primary svg,
body.mono-page .btn-primary,
body.mono-page .btn-primary span,
body.mono-page .btn-primary svg {
  color: #ffffff !important;
}

body.mono-theme .hero-visual-card,
body.mono-theme .crawler-panel {
  background: #111111 !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
  color: #ffffff !important;
}

body.mono-theme .hero-visual-stack {
  color: #ffffff !important;
}

body.mono-theme .hero-visual-card span,
body.mono-theme .crawler-bar strong,
body.mono-theme .crawler-grid strong,
body.mono-theme .crawler-stream span {
  color: #ffffff !important;
}

body.mono-theme .crawler-stream span {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
}

body.mono-theme .crawler-grid div {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}

body.mono-theme .crawler-grid small,
body.mono-theme .crawler-bar b {
  color: #51cf6a !important;
}

body.mono-theme .mono-heartbeat-section,
body.mono-page .service-dark-system,
body.mono-page .tools-output {
  color: #ffffff !important;
}

body.mono-theme .mono-heartbeat-section h2,
body.mono-theme .mono-heartbeat-section h3,
body.mono-theme .mono-heartbeat-section strong,
body.mono-page .service-dark-system h2,
body.mono-page .service-dark-system h3,
body.mono-page .service-dark-system strong,
body.mono-page .tools-output h3,
body.mono-page .tools-output strong,
body.mono-page .tools-output .tool-result-rows strong {
  color: #ffffff !important;
}

body.mono-theme .mono-heartbeat-section p,
body.mono-theme .mono-heartbeat-section li,
body.mono-page .service-dark-system p,
body.mono-page .service-dark-system li,
body.mono-page .tools-output p {
  color: #c9c9c1 !important;
}

body.mono-page .tools-output .tool-result-rows span {
  color: #a7a7a1 !important;
}

body.mono-theme .tool-score small,
body.mono-theme .hero-trust small,
body.mono-theme .command-metrics span,
body.mono-theme .panel-stat span,
body.mono-theme .preview-card span,
body.mono-theme .sim-metric span {
  color: #4f4f4a !important;
}

body.mono-theme .industry-overlay article {
  color: #ffffff !important;
  background: rgba(0, 0, 0, 0.72) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
}

body.mono-theme .industry-overlay article span {
  color: #d8d8d2 !important;
}

body.mono-theme .industry-overlay article strong {
  color: #ffffff !important;
}

body.mono-theme .free-tool-output li,
body.mono-theme .free-tool-output ul,
body.mono-theme .channel-allocation p,
body.mono-theme .channel-summary span,
body.mono-theme .channel-allocation small,
body.mono-theme .command-queue ul,
body.mono-theme .command-queue li,
body.mono-theme .panel-detail-grid li,
body.mono-theme .industry-columns li,
body.mono-theme .case-columns li,
body.mono-theme .preview-block li,
body.mono-theme .pricing-card li {
  color: #4f4f4a !important;
}

body.mono-theme .free-tool-output li,
body.mono-theme .channel-summary div,
body.mono-theme .channel-allocation article,
body.mono-theme .sim-recommendation article,
body.mono-theme .industry-columns article,
body.mono-theme .panel-detail-grid article,
body.mono-theme .preview-block,
body.mono-theme .command-queue,
body.mono-theme .command-bars,
body.mono-theme .case-scoreboard {
  color: #111111 !important;
  background: #f6f6f3 !important;
  border-color: #e4e1dc !important;
}

body.mono-theme .channel-allocation strong,
body.mono-theme .channel-summary strong,
body.mono-theme .industry-columns h4,
body.mono-theme .panel-detail-grid h4,
body.mono-theme .preview-block h4,
body.mono-theme .case-columns h4 {
  color: #111111 !important;
}

body.mono-theme .service-panel .panel-head {
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: 22px 34px;
}

body.mono-theme .service-panel .panel-head > span {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid #dedbd4;
  border-radius: 999px;
  background: #f6f6f3;
  color: #4f4f4a !important;
  white-space: nowrap;
}

body.mono-theme .service-panel .panel-head h3 {
  max-width: 11ch;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 0.98;
}

body.mono-theme .service-panel .panel-head p {
  padding-top: 2px;
  font-size: clamp(1.06rem, 1.5vw, 1.34rem);
  line-height: 1.62;
}

body.mono-theme .readiness-score {
  background:
    radial-gradient(circle at 12% 12%, rgba(81, 207, 106, 0.12), transparent 34%),
    #ffffff !important;
  border-color: #e4e1dc !important;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
}

body.mono-theme .readiness-score span {
  color: #4f4f4a !important;
}

body.mono-theme .readiness-score h4,
body.mono-theme .readiness-score p strong {
  color: #111111 !important;
}

body.mono-theme .score-ring {
  width: 126px;
  border: 1px solid #e4e1dc;
  background:
    radial-gradient(circle, #ffffff 58%, transparent 60%),
    conic-gradient(#51cf6a calc(var(--score) * 1%), #e5e2dc 0) !important;
  box-shadow:
    inset 0 0 0 8px #ffffff,
    0 20px 44px rgba(81, 207, 106, 0.18);
}

body.mono-theme .score-ring strong {
  color: #111111 !important;
}

body.mono-theme .score-ring small {
  color: #4f4f4a !important;
}

body.mono-theme .readiness-bars .mini-bar {
  padding: 14px 0;
}

body.mono-theme .readiness-bars .mini-bar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4f4f4a !important;
  font-weight: 700;
}

body.mono-theme .readiness-bars .mini-bar span svg {
  width: 17px;
  height: 17px;
  color: #111111 !important;
}

body.mono-theme .readiness-bars .mini-bar span em {
  font-style: normal;
}

body.mono-theme .readiness-bars .mini-bar b {
  color: #111111 !important;
  font-weight: 900;
}

body.mono-theme .readiness-bars .mini-bar i {
  height: 14px;
  background: #e8e5dd !important;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

body.mono-theme .readiness-bars .mini-bar i b {
  background: linear-gradient(90deg, #111111 0%, #2f9e54 48%, #7ef2a7 100%) !important;
  box-shadow: 0 0 18px rgba(81, 207, 106, 0.25);
}

body.mono-theme .terminal {
  background: #111111 !important;
  border-color: #222222 !important;
  color: #ffffff !important;
}

body.mono-theme .terminal-bar,
body.mono-theme .terminal pre {
  color: #d8d8d2 !important;
}

body.mono-theme .terminal-bar strong,
body.mono-theme .terminal .tone-cmd {
  color: #ffffff !important;
}

body.mono-theme .terminal-bar b,
body.mono-theme .terminal .tone-ok {
  color: #7ef2a7 !important;
}

body.mono-theme .stack-marquee {
  background: #f6f6f3 !important;
  border-color: #e4e1dc !important;
}

body.mono-theme .stack-marquee::before {
  background: linear-gradient(90deg, #f6f6f3, rgba(246, 246, 243, 0)) !important;
}

body.mono-theme .stack-marquee::after {
  background: linear-gradient(270deg, #f6f6f3, rgba(246, 246, 243, 0)) !important;
}

body.mono-theme .stack-ticker-item {
  background: #ffffff !important;
  border-color: #e4e1dc !important;
  color: #111111 !important;
}

body.mono-theme .stack-ticker-item b {
  color: #111111 !important;
}

body.mono-theme .stack-ticker-item small {
  color: #5f5f5a !important;
}

body.mono-theme .stack-ticker-item svg {
  color: #111111 !important;
}

body.mono-theme .stack-marquee #stackTicker {
  animation-duration: 58s !important;
}

body.mono-theme #annualLabel small,
body.mono-theme .form-head b {
  color: #1e7a35 !important;
}

body.mono-theme .mono-operating-section,
body.mono-theme .mono-heartbeat-section,
body.mono-theme #services,
body.mono-theme #seo-engine,
body.mono-theme #live-lab,
body.mono-theme #build,
body.mono-theme #contact,
body.mono-page main > section {
  scroll-margin-top: 120px;
}

@media (max-width: 860px) {
  body.mono-theme .service-panel .panel-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body.mono-theme .service-panel .panel-head > span,
  body.mono-theme .service-panel .panel-head h3,
  body.mono-theme .service-panel .panel-head p {
    grid-column: 1;
    grid-row: auto;
  }

  body.mono-theme .service-panel .panel-head h3 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 3rem);
  }

  body.mono-theme .readiness-score {
    grid-template-columns: 1fr;
  }

  body.mono-theme .score-ring {
    width: 112px;
  }

  body.mono-theme .crawler-stream {
    animation-duration: 54s !important;
  }

  body.mono-theme .stack-marquee #stackTicker {
    animation-duration: 70s !important;
  }
}
