:root {
  color-scheme: light;
  --page-max: 1180px;
  --page-gutter: 24px;
  --section-y: clamp(72px, 9vw, 128px);
  --chip-gap: 0.6rem;
  --pathway-gap: 1.25rem;
  --bg: #f7f8f5;
  --panel: #ffffff;
  --ink: #18201c;
  --muted: #5b655f;
  --line: #dce3dd;
  --accent: #176f5d;
  --accent-dark: #0f4c40;
  --accent-soft: #d8eee8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header,
.site-footer,
main {
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--accent);
  color: white;
}

.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 15px;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 56px;
  align-items: center;
  padding: 84px 0 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(44px, 7vw, 74px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.hero-text,
.section-heading p,
.split p {
  max-width: 680px;
  color: var(--muted);
  font-size: 20px;
}

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

.hero-note {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 750;
}

.button.primary {
  background: var(--accent);
  color: white;
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  border-color: var(--line);
  background: white;
  color: var(--ink);
}

.button.outline {
  border-color: var(--accent);
  background: transparent;
  color: var(--accent-dark);
}

.button.outline:hover {
  background: var(--accent-soft);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 850;
}

.workflow-preview {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 24px 60px rgba(30, 49, 42, 0.12);
  overflow: hidden;
}

.preview-header {
  display: flex;
  gap: 7px;
  border-bottom: 1px solid var(--line);
  padding: 16px;
}

.preview-header span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #c8d1cb;
}

.preview-row {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 18px;
}

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

.preview-row.active {
  background: var(--accent-soft);
}

.preview-row p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.preview-row span {
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.agent-console {
  border: 1px solid var(--accent);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(15, 76, 64, 0.96), rgba(23, 111, 93, 0.9)),
    var(--accent-dark);
  color: white;
  box-shadow: 0 28px 70px rgba(15, 76, 64, 0.24);
  overflow: hidden;
}

.console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.console-top strong {
  border-radius: 999px;
  background: rgba(216, 238, 232, 0.18);
  color: #d8eee8;
  padding: 5px 9px;
  font-size: 12px;
}

.agent-core {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 22px;
}

.agent-core::before {
  content: "";
  position: absolute;
  inset: 50% 28px auto;
  height: 1px;
  background: rgba(216, 238, 232, 0.35);
}

.agent-node {
  position: relative;
  border: 1px solid rgba(216, 238, 232, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.main-node {
  grid-column: 1 / -1;
  background: #d8eee8;
  color: var(--accent-dark);
  text-align: center;
  font-size: 22px;
}

.automation-steps {
  display: grid;
  gap: 10px;
  padding: 0 22px 22px;
}

.automation-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  border: 1px solid rgba(216, 238, 232, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  padding: 14px;
}

.automation-step.active {
  background: rgba(216, 238, 232, 0.16);
}

.automation-step span {
  color: #d8eee8;
  font-weight: 900;
}

.automation-step p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.demo-hero {
  align-items: start;
}

.demo-panel,
.demo-result {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 24px;
}

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

.demo-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.demo-form input,
.demo-form textarea,
.demo-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

.demo-form textarea {
  resize: vertical;
}

.hidden-field {
  position: absolute;
  left: -10000px;
}

.demo-status {
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 750;
}

.demo-result {
  display: grid;
  gap: 16px;
}

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

.demo-tier-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 24px;
}

.demo-tier-card.highlighted {
  border-color: var(--accent);
  background: #eef6f2;
}

.demo-tier-card span {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-tier-card h3 {
  margin: 10px 0 8px;
}

.demo-duration {
  color: var(--accent-dark);
  font-weight: 900;
}

.demo-tier-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.demo-tier-card li {
  color: var(--muted);
}

.result-card {
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.result-card:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

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

.result-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.dashboard-section h1 {
  font-size: clamp(38px, 6vw, 64px);
}

.dashboard-login {
  display: flex;
  gap: 12px;
  align-items: end;
  margin-bottom: 18px;
}

.dashboard-login label {
  display: grid;
  flex: 1;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.dashboard-login input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.client-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--accent);
  border-radius: 8px;
  background: var(--panel);
  padding: 16px;
  margin-top: 22px;
}

.client-summary span,
.client-summary small {
  color: var(--muted);
}

.client-summary small {
  width: 100%;
}

.dashboard-stat,
.dashboard-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 18px;
}

.dashboard-stat span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.dashboard-stat strong {
  display: block;
  margin-top: 8px;
  font-size: 34px;
  line-height: 1;
}

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

.dashboard-card h2 {
  font-size: 24px;
}

.lead-card {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

.lead-card:first-child {
  border-top: 0;
  padding-top: 0;
}

.lead-card-top {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.lead-card-top span {
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 800;
}

.lead-card p {
  margin: 8px 0;
  color: var(--muted);
}

.follow-up-pill {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: #eef6f2;
  color: var(--accent-dark);
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 850;
}

.follow-up-pill.due {
  background: #fff2d6;
  color: #805700;
}

.lead-card small,
.muted {
  color: var(--muted);
}

.status-control {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.status-control select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font: inherit;
  padding: 10px 12px;
}

.ops-panel,
.executive-brief {
  display: grid;
  gap: 12px;
}

.ops-row,
.executive-brief div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 16px;
}

.ops-row.active,
.executive-brief div:first-child {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.ops-row span,
.executive-brief span {
  display: inline-flex;
  margin-bottom: 8px;
  border-radius: 999px;
  background: white;
  color: var(--accent-dark);
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 850;
}

.ops-row p,
.executive-brief p {
  margin-bottom: 0;
  color: var(--muted);
}

.section {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.section.compact {
  padding: 56px 0;
}

.section-heading {
  margin-bottom: 34px;
}

.billing-toggle {
  display: flex;
  width: fit-content;
  gap: 4px;
  align-items: center;
  justify-content: center;
  margin: 20px auto 8px;
  padding: 4px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: #f8fffb;
}

.billing-toggle button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--accent-dark);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  padding: 9px 18px;
}

.billing-toggle button.active {
  background: var(--accent);
  color: #073b32;
}

.billing-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

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

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

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature,
.price-card,
.audience,
.problem,
.industry-card,
.recommendation-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 24px;
}

.price-card {
  border-color: var(--accent);
  display: flex;
  flex-direction: column;
}

.price-card h3 {
  height: 64px;
}

.price-card .subscribe-button {
  justify-content: center;
  margin-top: auto;
  width: 100%;
}

.feature p,
.audience p,
.problem p,
.industry-card p,
.recommendation-box p,
.price-card p,
.price-card li,
.steps {
  color: var(--muted);
}

.recommendation-box {
  background: #eef6f2;
  padding: 34px;
}

.recommendation-box h2 {
  max-width: 880px;
}

.industry-card {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  justify-content: space-between;
}

.industry-card .button {
  flex: 0 0 auto;
}

.muted-card {
  background: #fbfcfa;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}

.steps {
  margin: 0;
  padding-left: 22px;
  font-size: 20px;
}

.steps li + li {
  margin-top: 18px;
}

.price {
  color: var(--ink);
  font-size: clamp(34px, 4vw, 42px);
  font-weight: 850;
  line-height: 1;
  min-height: 48px;
  white-space: nowrap;
}

.price span {
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
}

.setup-fee {
  white-space: nowrap;
}

.price.stacked span {
  display: block;
  margin-top: 6px;
}

.setup-fee {
  display: inline-flex;
  margin: -4px 0 16px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 800;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding-left: 20px;
}

.demo-button {
  margin-top: 22px;
  width: 100%;
  justify-content: center;
}

.price-card.highlighted {
  border-color: var(--accent);
  box-shadow: 0 18px 40px rgba(23, 111, 93, 0.13);
}

.price-card.executive {
  border-color: var(--accent-dark);
  background: #eef6f2;
}

.price-card.custom-workflow {
  border-color: #c7aa72;
  background:
    radial-gradient(circle at top right, rgba(199, 170, 114, 0.2), transparent 10rem),
    #ffffff;
}

.price-card.custom-workflow .setup-fee {
  background: #f5ecd7;
  color: #6f5420;
}

.hu-site .price-card h3 {
  height: auto;
  min-height: 48px;
}

.hu-site .price-card {
  min-width: 0;
}

.hu-site .price {
  font-size: clamp(28px, 3vw, 34px);
  letter-spacing: -0.01em;
}

.hu-site.annual-pricing .price {
  font-size: clamp(25px, 2.35vw, 30px);
  letter-spacing: -0.035em;
}

.hu-site .setup-fee {
  min-height: 38px;
  align-items: center;
  white-space: nowrap;
  font-size: 12px;
}

.hu-site .price-card > p:not(.price):not(.setup-fee) {
  min-height: 72px;
  margin-bottom: 0;
}

.hu-site .price-card ul {
  gap: 8px;
  margin-top: 8px;
}

.hu-site .future-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.78fr);
  gap: 36px;
}

.hu-site .future-hero h1 {
  max-width: 720px;
  font-size: clamp(42px, 5.9vw, 68px);
}

.hu-site .flow-orbit {
  justify-self: end;
  width: min(430px, 100%);
}

.custom-pack {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 28px;
}

.custom-pack h3 {
  margin-bottom: 8px;
}

.custom-pack p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
}

.custom-pack .button {
  flex: 0 0 auto;
}

.cta {
  position: relative;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  margin: 72px 0;
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 22%, rgba(159, 240, 201, 0.26), transparent 16rem),
    radial-gradient(circle at 18% 86%, rgba(255, 255, 255, 0.08), transparent 16rem),
    linear-gradient(135deg, #0b4a3f, #063f35 62%, #05241f);
  color: white;
  overflow: hidden;
  padding: 36px;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 63, 53, 0) 0 42%, rgba(6, 63, 53, 0.12) 66%, rgba(159, 240, 201, 0.12) 100%),
    url("assets/brand/patterns/flowops-circuit-pattern.png");
  background-position: right center;
  background-size: cover;
  mask-image: linear-gradient(90deg, transparent 0 38%, black 74%);
  mix-blend-mode: screen;
  opacity: 0.42;
  pointer-events: none;
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 58%, rgba(159, 240, 201, 0.1) 58% 59%, transparent 59%),
    linear-gradient(24deg, transparent 0 68%, rgba(159, 240, 201, 0.08) 68% 69%, transparent 69%),
    radial-gradient(circle at 88% 22%, transparent 0 32px, rgba(159, 240, 201, 0.14) 33px 35px, transparent 36px),
    radial-gradient(circle at 74% 78%, transparent 0 38px, rgba(159, 240, 201, 0.1) 39px 41px, transparent 42px);
  opacity: 0.7;
  pointer-events: none;
}

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

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

.cta h2 {
  max-width: 720px;
  margin-bottom: 18px;
}

.cta-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.82);
}

.cta .button.primary {
  flex: 0 0 auto;
  background: white;
  color: var(--accent-dark);
}

.site-footer {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
}

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

.footer-columns a {
  color: inherit;
}

.nav a[href="/hu"],
.nav a[href="/"],
.nav a[href="/hu-ingatlanosok"],
.nav a[href="/estate-agents"] {
  white-space: nowrap;
}

.legal-page {
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
  max-width: var(--page-max);
  margin-inline: auto;
}

.legal-page .section {
  max-width: 820px;
}

.legal-counsel-note {
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.legal-page h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin: 0 0 18px;
}

.legal-page h2 {
  margin: 34px 0 10px;
}

.legal-status {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(22, 101, 74, 0.24);
  border-radius: 8px;
  background: rgba(220, 252, 231, 0.45);
}

.legal-toc {
  margin: 2rem 0;
  padding: 1.1rem;
  border: 1px solid rgba(15, 76, 58, 0.18);
  border-radius: 8px;
  background: rgba(248, 250, 247, 0.9);
}

.legal-toc h2 { margin-top: 0; }
.legal-toc ol { columns: 2; column-gap: 2rem; padding-left: 1.25rem; }
.legal-toc li { break-inside: avoid; margin-bottom: 0.4rem; }
.legal-definitions dt { margin-top: 0.9rem; font-weight: 750; }
.legal-definitions dd { margin: 0.2rem 0 0; }

@media (max-width: 640px) {
  .legal-toc ol { columns: 1; }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .split,
  .feature-grid,
  .audience-grid,
  .industry-grid,
  .problem-grid,
  .pricing-grid,
  .demo-tier-grid,
  .dashboard-grid,
  .dashboard-stats {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    gap: 36px;
    padding-top: 50px;
  }

  .hero > * {
    min-width: 0;
  }

  .workflow-preview {
    min-width: 0;
  }

  .cta,
  .custom-pack,
  .industry-card,
  .dashboard-login,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* FlowOps AI future brand layer */
.future-site {
  --bg: #f6f8f2;
  --panel: #ffffff;
  --ink: #12211b;
  --muted: #60706a;
  --line: #dbe6dd;
  --accent: #9ff0c9;
  --accent-dark: #063f35;
  --accent-soft: #e2f7ee;
  background:
    radial-gradient(circle at top right, rgba(159, 240, 201, 0.26), transparent 32rem),
    linear-gradient(180deg, #f8faf5 0%, #eef5ee 100%);
}

.future-site main {
  width: auto;
  max-width: none;
}

.future-site .section {
  width: min(1180px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.future-site .cta {
  width: min(1180px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.glass-header {
  position: sticky;
  top: 0;
  z-index: 10;
  width: min(1180px, calc(100% - 40px));
  margin-top: 12px;
  border: 1px solid rgba(219, 230, 221, 0.82);
  border-radius: 14px;
  background: rgba(246, 248, 242, 0.84);
  backdrop-filter: blur(18px);
  padding: 14px 18px;
}

.brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(6, 63, 53, 0.16);
}

.flow-mark {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #063f35;
}

.flow-mark::before,
.flow-mark::after,
.flow-mark i {
  content: "";
  position: absolute;
  background: #dffcf0;
}

.flow-mark::before {
  left: 9px;
  top: 8px;
  width: 18px;
  height: 6px;
  border-radius: 999px;
}

.flow-mark::after {
  left: 9px;
  top: 18px;
  width: 15px;
  height: 6px;
  border-radius: 999px;
}

.flow-mark i {
  left: 8px;
  top: 8px;
  width: 6px;
  height: 22px;
  border-radius: 999px;
}

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

.menu-drawer {
  position: relative;
}

.menu-drawer summary {
  cursor: pointer;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--accent-dark);
  font-weight: 800;
}

.menu-drawer summary::-webkit-details-marker {
  display: none;
}

.drawer-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  min-width: 260px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  box-shadow: 0 24px 70px rgba(6, 63, 53, 0.16);
  padding: 10px;
}

.drawer-panel a {
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--muted);
  font-weight: 750;
}

.drawer-panel a:hover {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.future-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
  gap: 52px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 34px auto 0;
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 22%, rgba(159, 240, 201, 0.34), transparent 19rem),
    radial-gradient(circle at 16% 82%, rgba(255, 255, 255, 0.08), transparent 18rem),
    linear-gradient(135deg, #062f29, #09251f 58%, #061713);
  color: white;
  overflow: hidden;
  padding: clamp(34px, 6vw, 72px);
}

.future-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 47, 41, 0) 0 38%, rgba(6, 47, 41, 0.1) 62%, rgba(159, 240, 201, 0.1) 100%),
    url("assets/brand/patterns/flowops-circuit-pattern.png");
  background-position: right center;
  background-size: cover;
  mask-image: linear-gradient(90deg, transparent 0 36%, black 72%);
  mix-blend-mode: screen;
  opacity: 0.46;
  pointer-events: none;
}

.future-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 58%, rgba(159, 240, 201, 0.12) 58% 59%, transparent 59%),
    linear-gradient(24deg, transparent 0 66%, rgba(159, 240, 201, 0.1) 66% 67%, transparent 67%),
    radial-gradient(circle at 88% 18%, transparent 0 36px, rgba(159, 240, 201, 0.18) 37px 39px, transparent 40px),
    radial-gradient(circle at 77% 70%, transparent 0 42px, rgba(159, 240, 201, 0.13) 43px 45px, transparent 46px);
  opacity: 0.7;
  pointer-events: none;
}

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

.future-hero h1 {
  max-width: 780px;
  font-size: clamp(44px, 7vw, 78px);
}

.future-hero .hero-text,
.future-hero .hero-note {
  color: rgba(255, 255, 255, 0.74);
}

.future-hero .eyebrow,
.cta .eyebrow {
  color: #9ff0c9;
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: white;
}

.dark-strip span {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
}

.flow-orbit {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 470px;
  border: 1px solid rgba(159, 240, 201, 0.24);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  padding: 22px;
}

.flow-orbit::before {
  content: "";
  position: absolute;
  inset: 44px;
  border: 1px solid rgba(159, 240, 201, 0.22);
  border-radius: 50%;
}

.orbit-card {
  position: relative;
  align-self: center;
  justify-self: end;
  width: min(260px, 90%);
  border: 1px solid rgba(159, 240, 201, 0.28);
  border-radius: 16px;
  background: rgba(7, 40, 34, 0.82);
  color: rgba(255, 255, 255, 0.82);
  padding: 16px;
  font-weight: 850;
}

.orbit-card.main {
  justify-self: start;
  background: #e6fff2;
  color: #063f35;
}

.orbit-card span {
  display: block;
  color: #4b806f;
  font-size: 12px;
  text-transform: uppercase;
}

.no-border {
  border-top: 0;
}

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

.security-grid {
  display: grid;
  gap: 18px;
}

.security-pattern {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23, 111, 93, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 12%, rgba(159, 240, 201, 0.24), transparent 18rem),
    radial-gradient(circle at 12% 86%, rgba(255, 255, 255, 0.92), transparent 20rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(237, 248, 243, 0.86));
  padding-right: clamp(24px, 5vw, 72px);
  padding-left: clamp(24px, 5vw, 72px);
}

.security-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0 38%, rgba(237, 248, 243, 0.34) 62%, rgba(23, 111, 93, 0.18) 100%),
    url("assets/brand/patterns/flowops-circuit-pattern.png");
  background-position: right center;
  background-size: cover;
  mask-image: linear-gradient(90deg, transparent 0 40%, black 78%);
  mix-blend-mode: multiply;
  opacity: 0.18;
  pointer-events: none;
}

.security-pattern::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 58%, rgba(23, 111, 93, 0.08) 58% 59%, transparent 59%),
    linear-gradient(24deg, transparent 0 70%, rgba(23, 111, 93, 0.07) 70% 71%, transparent 71%),
    radial-gradient(circle at 89% 28%, transparent 0 34px, rgba(23, 111, 93, 0.12) 35px 37px, transparent 38px),
    radial-gradient(circle at 74% 78%, transparent 0 40px, rgba(23, 111, 93, 0.09) 41px 43px, transparent 44px);
  opacity: 0.76;
  pointer-events: none;
}

.security-pattern > * {
  position: relative;
  z-index: 1;
}

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

.sector-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid color-mix(in srgb, var(--sector) 42%, var(--line));
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--sector) 22%, transparent), transparent 11rem),
    white;
  padding: 20px;
}

.sector-card span {
  color: var(--sector);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sector-card strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.18;
}

.sector-card.estate { --sector: #b98b2f; }
.sector-card.recruitment { --sector: #1495e8; }
.sector-card.legal { --sector: #8d99a6; }
.sector-card.healthcare { --sector: #0e9f98; }
.sector-card.ecommerce { --sector: #ef6847; }
.sector-card.construction { --sector: #d8b41e; }
.sector-card.finance { --sector: #1b7f5a; }
.sector-card.executive { --sector: #c7aa72; }

.registration-form {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  padding: 22px;
}

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

.registration-form .checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}

.registration-form .checkbox-line input {
  width: auto;
  margin-top: 4px;
}

.registration-form input,
.registration-form select,
.registration-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fbfdf9;
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--accent-dark);
  font-weight: 800;
}

.turnstile-container {
  min-height: 65px;
  width: 100%;
  color: var(--muted);
  font-size: 0.875rem;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  padding: 18px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.mega-footer {
  align-items: flex-start;
  width: min(1180px, calc(100% - 40px));
}

.mega-footer > div:first-child {
  max-width: 320px;
}

.mega-footer p {
  margin: 14px 0 0;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 24px;
}

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

.footer-columns strong {
  color: var(--ink);
}

.footer-columns a,
.footer-columns span {
  color: var(--muted);
  font-size: 14px;
}

.industry-page {
  --sector: #176f5d;
  --sector-ink: #07352e;
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--sector) 20%, transparent), transparent 30rem),
    #f8faf5;
}

.industry-hero {
  display: grid;
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 44px;
  align-items: center;
  margin-inline: auto;
  padding: 74px 0;
}

.v1-home main > .industry-hero {
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
  margin-inline: auto;
}

.hungarian-page .industry-hero {
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
}

.hungarian-page .industry-hero h1 {
  max-width: 780px;
  font-size: clamp(42px, 5.2vw, 68px);
}

.hungarian-page .industry-hero .hero-text {
  max-width: 720px;
}

.hungarian-page .pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.industry-hero-panel,
.workflow-list {
  border: 1px solid color-mix(in srgb, var(--sector) 35%, var(--line));
  border-radius: 22px;
  background: white;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(18, 33, 27, 0.08);
}

.industry-hero-panel {
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--sector) 16%, white), white);
}

.industry-badge {
  display: inline-flex;
  border-radius: 999px;
  background: color-mix(in srgb, var(--sector) 18%, white);
  color: var(--sector-ink);
  padding: 7px 11px;
  font-size: 13px;
  font-weight: 900;
}

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

.workflow-list div {
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.workflow-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.workflow-list strong {
  display: block;
  color: var(--sector-ink);
}

.workflow-list p {
  margin: 4px 0 0;
  color: var(--muted);
}

.industry-page .button.primary {
  background: var(--sector);
}

.industry-page .button.outline {
  border-color: var(--sector);
  color: var(--sector-ink);
}

.industry-estate { --sector: #b98b2f; --sector-ink: #5d4211; }
.industry-recruitment { --sector: #1678d2; --sector-ink: #083c75; }
.industry-legal { --sector: #273a59; --sector-ink: #17243a; }
.industry-healthcare { --sector: #0d9488; --sector-ink: #07423f; }
.industry-ecommerce { --sector: #ef6847; --sector-ink: #7a2919; }
.industry-construction { --sector: #e0b91c; --sector-ink: #5a4702; }
.industry-finance { --sector: #1b355e; --sector-ink: #132543; }
.industry-executive { --sector: #0b1916; --sector-ink: #07110f; }

@media (max-width: 980px) {
  .future-hero,
  .industry-hero,
  .two-col,
  .security-grid,
  .industry-spectrum,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .desktop-nav {
    display: none;
  }

  .future-hero {
    padding: 34px 22px;
  }

  .flow-orbit {
    min-height: auto;
  }

  .drawer-panel {
    right: auto;
    left: 0;
  }
}

/* FlowOps AI V1 homepage layer - intentionally scoped to index.html */
:root {
  --forest-950: #082f28;
  --forest-900: #0f4c40;
  --forest-700: #176f5d;
  --mint-300: #9be7cc;
  --mint-100: #dff6ed;
  --canvas: #f7f8f5;
  --surface: #ffffff;
  --text-primary: #18201c;
  --text-muted: #5b655f;
  --border: #dce3dd;
  --success: #176f5d;
  --warning: #a66a16;
  --error: #b42318;
  --focus: #2a8c76;
  --forest-050: #f0f6f2;
  --forest-100: #e6f0eb;
  --forest-800: #11594a;
  --shadow-sm: 0 1px 2px rgba(8, 47, 40, 0.05);
  --shadow-md: 0 18px 50px rgba(8, 47, 40, 0.1);
  --shadow-lg: 0 28px 80px rgba(4, 34, 28, 0.18);
}

.v1-home {
  --v1-section-space: var(--section-y);
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--text-primary);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

.v1-home main {
  width: auto;
  max-width: none;
  margin: 0;
}

/* Owner preview fix: legacy industry sections must share the site gutter.
   .v1-home main is full-bleed, so constrain direct .section children
   to the same container width as .v1-container. */
.v1-home main > .section,
.v1-home main > .industry-hero {
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
  margin-inline: auto;
}

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

.v1-home h1,
.v1-home h2,
.v1-home h3 {
  color: inherit;
  letter-spacing: 0;
}

.v1-home h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(42px, 5.4vw, 68px);
  line-height: 1.02;
  text-wrap: balance;
}

.v1-home h2 {
  margin-bottom: 20px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  text-wrap: balance;
}

.v1-home h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
}

.v1-home a,
.v1-home button,
.v1-home input,
.v1-home select,
.v1-home textarea,
.v1-home summary {
  outline: none;
}

.v1-home :where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.v1-home .button {
  min-height: 50px;
  border-radius: 6px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 800;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.v1-home .button:hover {
  transform: translateY(-1px);
}

.v1-home .button.primary {
  border-color: var(--mint-300);
  background: var(--mint-300);
  color: var(--forest-950);
}

.v1-home .button.primary:hover {
  border-color: #b4efd9;
  background: #b4efd9;
}

.v1-home .button.secondary,
.v1-home .button.outline {
  border-color: var(--forest-700);
  background: transparent;
  color: var(--forest-900);
}

.v1-home .button.secondary:hover,
.v1-home .button.outline:hover {
  background: var(--mint-100);
}

.v1-home .button:disabled {
  cursor: wait;
  opacity: 0.66;
  transform: none;
}

.v1-container {
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
  margin-inline: auto;
}

.v1-section {
  padding: var(--v1-section-space) 0;
  scroll-margin-top: 92px;
}

.v1-section-heading {
  max-width: 800px;
  margin-bottom: 48px;
}

.v1-section-heading > p:not(.v1-eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 19px;
}

.v1-section-heading.compact-heading {
  max-width: 660px;
}

.v1-eyebrow {
  margin-bottom: 14px;
  color: var(--forest-700);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  border-radius: 4px;
  background: var(--surface);
  color: var(--forest-950);
  padding: 10px 14px;
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.v1-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  border-bottom: 1px solid rgba(220, 227, 221, 0.86);
  background: rgba(247, 248, 245, 0.94);
  backdrop-filter: blur(16px);
}

.v1-header-inner {
  display: flex;
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
  min-height: 76px;
  align-items: center;
  gap: 28px;
  margin-inline: auto;
}

.v1-brand {
  flex: 0 0 auto;
  color: var(--forest-950);
  font-size: 17px;
}

.v1-brand .brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  box-shadow: none;
}

.v1-desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  margin-left: auto;
}

.v1-desktop-nav a,
.v1-language-link {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 750;
}

.v1-desktop-nav a:hover,
.v1-language-link:hover,
.v1-desktop-nav a[aria-current="page"] {
  color: var(--forest-900);
}

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

.v1-header-cta.button {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 13px;
}

.v1-mobile-menu {
  display: none;
  margin-left: auto;
}

.v1-mobile-menu summary {
  display: inline-flex;
  min-height: 44px;
  cursor: pointer;
  list-style: none;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--forest-950);
  padding: 0 13px;
  font-size: 14px;
  font-weight: 800;
}

.v1-mobile-menu summary::-webkit-details-marker {
  display: none;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before { top: -6px; }
.menu-icon::after { top: 6px; }

.v1-mobile-panel {
  position: absolute;
  top: calc(100% + 1px);
  right: 0;
  left: 0;
  display: grid;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  padding: 12px 24px 20px;
}

.v1-mobile-panel a {
  border-bottom: 1px solid var(--border);
  color: var(--forest-950);
  padding: 13px 4px;
  font-weight: 750;
}

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

.v1-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(8, 47, 40, 0.98), rgba(7, 37, 31, 0.96)),
    url("assets/brand/patterns/flowops-circuit-pattern.png") right center / cover;
  color: var(--surface);
  padding: clamp(72px, 9vw, 124px) 0 clamp(64px, 8vw, 106px);
}

.v1-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 28%, rgba(155, 231, 204, 0.16), transparent 28rem);
  pointer-events: none;
}

.v1-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  gap: clamp(44px, 6vw, 84px);
  align-items: center;
}

.v1-hero .v1-eyebrow {
  color: var(--mint-300);
}

.v1-hero h1 {
  color: var(--surface);
}

.v1-hero-text {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 1.6vw, 21px);
}

.v1-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.v1-hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--surface);
}

.v1-hero .button.secondary:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
}

.v1-workflow-visual {
  border: 1px solid rgba(155, 231, 204, 0.3);
  border-radius: 8px;
  background: rgba(4, 29, 24, 0.66);
  box-shadow: var(--shadow-lg);
  padding: 18px;
}

.v1-visual-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.v1-visual-header > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.v1-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint-300);
  box-shadow: 0 0 0 5px rgba(155, 231, 204, 0.12);
}

.v1-visual-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
}

.v1-visual-state {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 18px;
}

.v1-visual-state h3 {
  color: var(--surface);
  font-size: 15px;
}

.v1-visual-state ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.v1-visual-state li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.v1-visual-state li span {
  display: grid;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 900;
}

.before-state {
  background: rgba(255, 255, 255, 0.035);
}

.before-state li:nth-child(2),
.before-state li:nth-child(4) {
  color: #efc8c4;
}

.after-state {
  border-color: rgba(155, 231, 204, 0.25);
  background: rgba(155, 231, 204, 0.08);
}

.after-state li span {
  background: var(--mint-100);
  color: var(--forest-900);
}

.v1-flow-line {
  display: flex;
  align-items: center;
  justify-content: center;
}

.v1-flow-line::before {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--mint-300);
}

.v1-flow-line span {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint-300);
}

.v1-flow-line span:first-child { transform: translateX(-9px); }
.v1-flow-line span:last-child { transform: translateX(9px); }

.v1-visual-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.v1-visual-steps li {
  position: relative;
  color: rgba(255, 255, 255, 0.66);
  padding-top: 14px;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}

.v1-visual-steps li::before {
  content: "";
  position: absolute;
  top: 4px;
  right: 0;
  left: 0;
  height: 2px;
  background: rgba(155, 231, 204, 0.34);
}

.v1-trust {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.v1-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding-block: 22px;
}

.v1-trust p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 750;
}

.v1-trust p span {
  display: grid;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint-100);
  color: var(--forest-900);
  font-size: 11px;
}

.v1-problem-section {
  background: var(--surface);
}

.v1-card-grid {
  display: grid;
  gap: 18px;
}

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

.v1-evidence-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--chip-gap);
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}

.v1-evidence-chips li {
  border: 1px solid var(--line, var(--border, #dce3dd));
  background: var(--panel, #fff);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  color: var(--ink, inherit);
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.v1-four-step {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--pathway-gap);
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.v1-four-step li {
  min-height: 180px;
  border: 1px solid var(--line, var(--border, #dce3dd));
  border-radius: 16px;
  background: var(--panel, #fff);
  padding: 1.15rem 1.1rem;
}

.v1-four-step span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--accent, #176f5d);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v1-four-step strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.v1-four-step p {
  margin: 0;
  color: var(--muted, inherit);
  font-size: 0.95rem;
  font-weight: 700;
}

.v1-pathway {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--pathway-gap);
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.v1-pathway li {
  border: 1px solid var(--line, var(--border, #dce3dd));
  border-radius: 16px;
  background: var(--panel, #fff);
  padding: 1rem 0.9rem;
}

.v1-quiet-ops,
.v1-three-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--pathway-gap);
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.v1-quiet-ops li,
.v1-three-path article {
  border: 1px solid var(--line, var(--border, #dce3dd));
  border-radius: 16px;
  background: var(--panel, #fff);
  padding: 1.15rem 1.1rem;
}

.v1-quiet-ops strong,
.v1-three-path h3 {
  display: block;
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.v1-quiet-ops p {
  margin: 0;
  color: var(--muted, inherit);
  font-size: 0.95rem;
  font-weight: 700;
}

.v1-three-path p {
  margin: 0;
  color: var(--muted, inherit);
  font-size: 0.95rem;
}

.v1-three-path a {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--accent, #176f5d);
  font-weight: 700;
}

.industry-hero .v1-evidence-chips {
  margin: 1rem 0 1.15rem;
}

.legal-page .v1-evidence-chips {
  margin: 0 0 1.5rem;
}

.v1-pathway span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--accent, #176f5d);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.v1-pathway p {
  margin: 0.45rem 0 0;
  color: var(--muted, var(--text-muted, inherit));
  font-size: 0.9rem;
  font-weight: 700;
}

.v1-trust-pillars,
.v1-value-section,
.v1-soft-cta {
  border-top: 1px solid var(--line, var(--border, #dce3dd));
}

.v1-trust-pillar-grid,
.v1-value-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--pathway-gap);
  margin: 0;
  padding: 0;
  list-style: none;
}

.v1-trust-pillar-grid li,
.v1-value-points li {
  border: 1px solid var(--line, var(--border, #dce3dd));
  border-radius: 16px;
  background: var(--panel, var(--surface, #fff));
  padding: 1.25rem 1.15rem;
}

.v1-trust-pillar-grid h3,
.v1-value-points strong {
  display: block;
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
}

.v1-trust-pillar-grid p,
.v1-value-points p {
  margin: 0;
  color: var(--muted, var(--text-muted, inherit));
  font-size: 0.95rem;
}

.v1-value-section {
  background: var(--forest-050, #f0f6f2);
}

.v1-price-explain {
  margin: 2rem 0 0;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--line, var(--border, #dce3dd));
  border-radius: 16px;
  background: var(--forest-050, #f0f6f2);
}

.v1-price-explain h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
}

.v1-price-explain p {
  margin: 0;
  max-width: 720px;
  color: var(--muted, var(--text-muted, inherit));
}

.v1-soft-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

.v1-soft-cta-inner h2 {
  margin-bottom: 0.6rem;
}

.v1-soft-cta-inner p {
  margin: 0;
  max-width: 640px;
  color: var(--muted, var(--text-muted, inherit));
}

.v1-section .v1-four-step,
.v1-section .v1-quiet-ops,
.v1-section .v1-three-path,
.v1-section .v1-pathway,
.v1-section .v1-trust-pillar-grid,
.v1-section .v1-value-points {
  margin-top: 2.5rem;
}

.v1-problem-card {
  min-height: 270px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--canvas);
  padding: 26px;
}

.v1-card-number {
  display: block;
  margin-bottom: 54px;
  color: var(--forest-700);
  font-size: 12px;
  font-weight: 900;
}

.v1-problem-card p {
  margin-bottom: 0;
  color: var(--text-muted);
}

.v1-comparison-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--forest-050);
}

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

.v1-comparison-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  padding: clamp(26px, 4vw, 44px);
}

.v1-comparison-label {
  margin-bottom: 28px;
  color: var(--forest-900);
  font-size: 15px;
  font-weight: 900;
}

.v1-comparison-card ul,
.v1-capability-panel ul,
.v1-price-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.v1-comparison-card li,
.v1-capability-panel li,
.v1-price-card li {
  position: relative;
  padding-left: 26px;
  color: var(--text-muted);
}

.v1-comparison-card li::before,
.v1-capability-panel li::before,
.v1-price-card li::before {
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 900;
}

.without-card li::before {
  content: "–";
  color: var(--warning);
}

.with-card {
  border-color: rgba(23, 111, 93, 0.38);
  background: linear-gradient(145deg, var(--surface), var(--mint-100));
}

.with-card li::before,
.v1-capability-panel li::before,
.v1-price-card li::before {
  content: "✓";
  color: var(--forest-700);
}

/* Owner story-block aesthetic (flowops.uk #story direction): dark green
   rounded card, header chips, Before/With columns, bottom stage rail.
   Reused by how-it-works story and the home agent-activity panel. */
.v1-story-card {
  border: 1px solid rgba(155, 231, 204, 0.2);
  border-radius: 16px;
  background: #071c18;
  color: var(--surface);
  padding: clamp(22px, 4vw, 44px);
  box-shadow: 0 28px 80px rgba(4, 34, 28, 0.18);
}

.v1-story-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.v1-story-chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mint-300);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v1-story-chips li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--mint-300);
}

.v1-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.v1-story-panel {
  border: 1px solid rgba(155, 231, 204, 0.2);
  border-radius: 12px;
  background: rgba(7, 37, 31, 0.55);
  padding: clamp(18px, 3vw, 28px);
}

.v1-story-panel h3 {
  margin: 0 0 14px;
  color: var(--surface);
  font-size: 19px;
  font-weight: 700;
}

.v1-story-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.v1-story-panel li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-left: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 400;
}

.v1-story-panel.v1-comparison-card,
.with-card.v1-story-panel {
  border-color: rgba(155, 231, 204, 0.2);
  background: rgba(7, 37, 31, 0.55);
}

.with-card.v1-story-panel {
  border-color: rgba(155, 231, 204, 0.35);
}

.v1-story-panel .v1-comparison-label {
  margin-bottom: 14px;
  color: var(--mint-300);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v1-story-panel li::before {
  content: none;
}

.v1-story-marker {
  display: inline-grid;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.v1-story-before .v1-story-marker {
  background: rgba(255, 176, 32, 0.16);
  color: #ffcf7d;
}

.v1-story-with .v1-story-marker {
  background: rgba(61, 220, 132, 0.16);
  color: var(--mint-300);
}

.v1-story-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.v1-story-rail li {
  border-top: 2px solid rgba(155, 231, 204, 0.35);
  padding-top: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

/* Before/With pair connector between the two story panels. */
.v1-story-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
}

.v1-story-link::before {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--mint-300);
}

.v1-story-link span {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint-300);
}

.v1-story-link span:first-child { transform: translateX(-9px); }
.v1-story-link span:last-child { transform: translateX(9px); }

/* Before/With pair motion: rows enter from the sides, the middle
   connector draws and settles, right-side checks pop in sequence.
   The settled card is the default; motion runs only under .is-inview. */
@keyframes pair-item-left {
  from { opacity: 0; transform: translateX(-16px); }
  to { opacity: 1; transform: none; }
}

@keyframes pair-item-right {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: none; }
}

@keyframes pair-pop {
  0% { opacity: 0; transform: scale(0); }
  60% { opacity: 1; transform: scale(1.25); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes pair-fade-up {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

@keyframes pair-link-draw {
  from { opacity: 0; transform: scaleX(0); }
  to { opacity: 1; transform: scaleX(1); }
}

@keyframes pair-dot-left {
  0% { opacity: 0; transform: translateX(-9px); }
  25% { opacity: 1; }
  55% { transform: translateX(9px); }
  80% { transform: translateX(-9px); }
  100% { opacity: 1; transform: translateX(-9px); }
}

@keyframes pair-dot-mid {
  0% { opacity: 0; transform: none; }
  25% { opacity: 1; }
  55% { transform: translateY(-4px); }
  80% { transform: translateY(3px); }
  100% { opacity: 1; transform: none; }
}

@keyframes pair-dot-right {
  0% { opacity: 0; transform: translateX(9px); }
  25% { opacity: 1; }
  55% { transform: translateX(-9px); }
  80% { transform: translateX(9px); }
  100% { opacity: 1; transform: translateX(9px); }
}

[data-pair-animate].is-inview .before-state li,
[data-pair-animate].is-inview .v1-story-before li {
  animation: pair-item-left 0.5s both;
}

[data-pair-animate].is-inview .after-state li,
[data-pair-animate].is-inview .v1-story-with li {
  animation: pair-item-right 0.5s both;
}

[data-pair-animate].is-inview .before-state li:nth-child(1),
[data-pair-animate].is-inview .v1-story-before li:nth-child(1),
[data-pair-animate].is-inview .after-state li:nth-child(1),
[data-pair-animate].is-inview .v1-story-with li:nth-child(1) { animation-delay: 0.05s; }

[data-pair-animate].is-inview .before-state li:nth-child(2),
[data-pair-animate].is-inview .v1-story-before li:nth-child(2),
[data-pair-animate].is-inview .after-state li:nth-child(2),
[data-pair-animate].is-inview .v1-story-with li:nth-child(2) { animation-delay: 0.14s; }

[data-pair-animate].is-inview .before-state li:nth-child(3),
[data-pair-animate].is-inview .v1-story-before li:nth-child(3),
[data-pair-animate].is-inview .after-state li:nth-child(3),
[data-pair-animate].is-inview .v1-story-with li:nth-child(3) { animation-delay: 0.23s; }

[data-pair-animate].is-inview .before-state li:nth-child(4),
[data-pair-animate].is-inview .v1-story-before li:nth-child(4),
[data-pair-animate].is-inview .after-state li:nth-child(4),
[data-pair-animate].is-inview .v1-story-with li:nth-child(4) { animation-delay: 0.32s; }

[data-pair-animate].is-inview .before-state li:nth-child(5),
[data-pair-animate].is-inview .v1-story-before li:nth-child(5),
[data-pair-animate].is-inview .after-state li:nth-child(5),
[data-pair-animate].is-inview .v1-story-with li:nth-child(5) { animation-delay: 0.41s; }

[data-pair-animate].is-inview .after-state li > span,
[data-pair-animate].is-inview .v1-story-with .v1-story-marker {
  animation: pair-pop 0.45s both;
}

[data-pair-animate].is-inview .after-state li:nth-child(1) > span,
[data-pair-animate].is-inview .v1-story-with li:nth-child(1) .v1-story-marker { animation-delay: 0.2s; }

[data-pair-animate].is-inview .after-state li:nth-child(2) > span,
[data-pair-animate].is-inview .v1-story-with li:nth-child(2) .v1-story-marker { animation-delay: 0.29s; }

[data-pair-animate].is-inview .after-state li:nth-child(3) > span,
[data-pair-animate].is-inview .v1-story-with li:nth-child(3) .v1-story-marker { animation-delay: 0.38s; }

[data-pair-animate].is-inview .after-state li:nth-child(4) > span,
[data-pair-animate].is-inview .v1-story-with li:nth-child(4) .v1-story-marker { animation-delay: 0.47s; }

[data-pair-animate].is-inview .after-state li:nth-child(5) > span,
[data-pair-animate].is-inview .v1-story-with li:nth-child(5) .v1-story-marker { animation-delay: 0.56s; }

[data-pair-animate].is-inview .v1-flow-line::before,
[data-pair-animate].is-inview .v1-story-link::before {
  animation: pair-link-draw 0.6s 0.1s both;
}

[data-pair-animate].is-inview .v1-flow-line span:nth-child(1),
[data-pair-animate].is-inview .v1-story-link span:nth-child(1) { animation: pair-dot-left 1.6s 0.2s both; }

[data-pair-animate].is-inview .v1-flow-line span:nth-child(2),
[data-pair-animate].is-inview .v1-story-link span:nth-child(2) { animation: pair-dot-mid 1.6s 0.2s both; }

[data-pair-animate].is-inview .v1-flow-line span:nth-child(3),
[data-pair-animate].is-inview .v1-story-link span:nth-child(3) { animation: pair-dot-right 1.6s 0.2s both; }

[data-pair-animate].is-inview .v1-visual-state h3,
[data-pair-animate].is-inview .v1-story-panel h3,
[data-pair-animate].is-inview .v1-visual-steps li,
[data-pair-animate].is-inview .v1-story-rail li {
  animation: pair-fade-up 0.5s both;
}

[data-pair-animate].is-inview .v1-visual-steps li:nth-child(1),
[data-pair-animate].is-inview .v1-story-rail li:nth-child(1) { animation-delay: 0.7s; }

[data-pair-animate].is-inview .v1-visual-steps li:nth-child(2),
[data-pair-animate].is-inview .v1-story-rail li:nth-child(2) { animation-delay: 0.78s; }

[data-pair-animate].is-inview .v1-visual-steps li:nth-child(3),
[data-pair-animate].is-inview .v1-story-rail li:nth-child(3) { animation-delay: 0.86s; }

[data-pair-animate].is-inview .v1-visual-steps li:nth-child(4),
[data-pair-animate].is-inview .v1-story-rail li:nth-child(4) { animation-delay: 0.94s; }

[data-pair-animate].is-inview .v1-visual-steps li:nth-child(5),
[data-pair-animate].is-inview .v1-story-rail li:nth-child(5) { animation-delay: 1.02s; }

@media (prefers-reduced-motion: reduce) {
  [data-pair-animate].is-inview .before-state li,
  [data-pair-animate].is-inview .v1-story-before li,
  [data-pair-animate].is-inview .after-state li,
  [data-pair-animate].is-inview .v1-story-with li,
  [data-pair-animate].is-inview .after-state li > span,
  [data-pair-animate].is-inview .v1-story-with .v1-story-marker,
  [data-pair-animate].is-inview .v1-flow-line::before,
  [data-pair-animate].is-inview .v1-story-link::before,
  [data-pair-animate].is-inview .v1-flow-line span,
  [data-pair-animate].is-inview .v1-story-link span,
  [data-pair-animate].is-inview .v1-visual-state h3,
  [data-pair-animate].is-inview .v1-story-panel h3,
  [data-pair-animate].is-inview .v1-visual-steps li,
  [data-pair-animate].is-inview .v1-story-rail li {
    animation: none;
  }
}

/* Home agent-activity panel: live-looking rows + animated agent graph.
   Illustrative CSS cycles only — no business metrics or customer data. */
.v1-activity-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 16px;
  align-items: stretch;
}

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

.v1-activity-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(155, 231, 204, 0.16);
  border-radius: 10px;
  background: rgba(11, 15, 20, 0.45);
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 400;
}

.v1-activity-status {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  animation: v1-status-cycle 9s ease-in-out infinite;
}

.v1-activity-status.is-working {
  background: rgba(61, 220, 132, 0.18);
  color: var(--mint-300);
}

.v1-activity-status.is-waiting {
  background: rgba(255, 176, 32, 0.16);
  color: #ffcf7d;
  animation-delay: 3s;
}

.v1-activity-status.is-ready {
  background: rgba(155, 231, 204, 0.14);
  color: #ffffff;
  animation-delay: 6s;
}

@keyframes v1-status-cycle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.v1-agent-graph {
  display: block;
  width: 100%;
  height: auto;
  min-height: 180px;
}

.v1-agent-node {
  fill: rgba(61, 220, 132, 0.18);
  stroke: var(--mint-300);
  stroke-width: 2;
  transform-box: fill-box;
  transform-origin: center;
  animation: v1-node-pulse 3.2s ease-in-out infinite;
}

.v1-agent-node-core {
  fill: #3ddc84;
}

.v1-agent-node.v1-delay-1 { animation-delay: 0.8s; }
.v1-agent-node.v1-delay-2 { animation-delay: 1.6s; }

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

.v1-agent-edge {
  fill: none;
  stroke: rgba(155, 231, 204, 0.5);
  stroke-width: 2;
  stroke-dasharray: 6 6;
  animation: v1-edge-flow 2.4s linear infinite;
}

@keyframes v1-edge-flow {
  to { stroke-dashoffset: -24; }
}

.v1-agent-label {
  fill: rgba(255, 255, 255, 0.84);
  font-size: 11px;
  font-weight: 600;
}

.v1-activity-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 400;
}

@media (max-width: 900px) {
  .v1-story-grid,
  .v1-activity-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .v1-story-link {
    min-height: 26px;
  }

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

  .v1-story-rail li:last-child {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v1-activity-status,
  .v1-agent-node,
  .v1-agent-edge {
    animation: none;
  }
}

.v1-process-section {
  background: var(--forest-950);
  color: var(--surface);
}

.v1-process-section .v1-eyebrow {
  color: var(--mint-300);
}

.v1-process-section .v1-section-heading > p:not(.v1-eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.v1-process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.v1-process-list li {
  border-top: 1px solid rgba(155, 231, 204, 0.34);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 20px 4px;
}

.v1-process-list li:first-child {
  padding-left: 0;
}

.v1-process-list li:last-child {
  border-right: 0;
}

.v1-step-number {
  display: block;
  margin-bottom: 58px;
  color: var(--mint-300);
  font-size: 12px;
  font-weight: 900;
}

.v1-process-list h3 {
  color: var(--surface);
}

.v1-process-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.v1-estate-section {
  background: var(--surface);
}

.v1-estate-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.v1-estate-copy > p:not(.v1-eyebrow) {
  color: var(--text-muted);
  font-size: 18px;
}

.v1-text-link {
  color: var(--forest-900);
  font-weight: 850;
}

.v1-text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.v1-capability-panel {
  border: 1px solid rgba(185, 139, 47, 0.36);
  border-radius: 8px;
  background: linear-gradient(145deg, #fffdf7, #faf4e8);
  padding: clamp(28px, 4vw, 44px);
}

.v1-panel-label {
  margin-bottom: 26px;
  color: #765512;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v1-industries-section {
  border-top: 1px solid var(--border);
  background: var(--canvas);
}

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

.v1-industry-card {
  --sector: var(--forest-700);
  display: flex;
  min-height: 180px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid color-mix(in srgb, var(--sector) 38%, var(--border));
  border-radius: 8px;
  background: var(--surface);
  padding: 22px;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.v1-industry-card:hover {
  border-color: var(--sector);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.v1-industry-card span {
  color: var(--sector);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.v1-industry-card strong {
  color: var(--text-primary);
  font-size: 17px;
  line-height: 1.3;
}

.v1-industry-card small {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 750;
}

@media (min-width: 1101px) {
  .hu-v1-home .v1-price-row .price {
    font-size: 38px;
  }
}

.hu-v1-home .v1-recommended-label {
  min-height: 32px;
}

.hu-v1-home .v1-label-placeholder {
  visibility: hidden;
}

.v1-industry-card.recruitment { --sector: #1678d2; }
.v1-industry-card.legal { --sector: #33445f; }
.v1-industry-card.healthcare { --sector: #0b8178; }
.v1-industry-card.ecommerce { --sector: #c74d31; }
.v1-industry-card.construction { --sector: #9a7612; }
.v1-industry-card.finance { --sector: #176746; }
.v1-industry-card.executive { --sector: #816a3f; }

.v1-workflow-section {
  background: var(--forest-050);
}

.workflow-example {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--border);
  padding: 0;
  overflow: hidden;
  list-style: none;
}

.workflow-example li {
  position: relative;
  display: flex;
  min-height: 112px;
  align-items: center;
  background: var(--surface);
  padding: 20px 16px;
  color: var(--forest-950);
  font-size: 13px;
  font-weight: 800;
}

.workflow-example li:not(:last-child)::after {
  position: absolute;
  z-index: 1;
  right: -10px;
  content: "\2192";
  color: var(--forest-700);
  font-size: 18px;
}

.workflow-table-wrap,
.founding-price-table-wrap {
  overflow-x: auto;
  max-width: 100%;
  margin-bottom: 34px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  -webkit-overflow-scrolling: touch;
}

.workflow-table,
.founding-price-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.workflow-table caption,
.founding-price-table caption {
  padding: 18px 20px;
  color: var(--forest-950);
  font-size: 14px;
  font-weight: 850;
  text-align: left;
}

.workflow-table th,
.workflow-table td,
.founding-price-table th,
.founding-price-table td {
  border-top: 1px solid var(--border);
  padding: 15px 20px;
  text-align: left;
  vertical-align: top;
}

.workflow-table thead th,
.founding-price-table thead th {
  background: var(--mint-100);
  color: var(--forest-900);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.workflow-table tbody th,
.founding-price-table tbody th {
  color: var(--forest-950);
  font-weight: 850;
}

.workflow-table td,
.founding-price-table td {
  color: var(--text-muted);
}

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

.workflow-scope-grid article {
  border-top: 2px solid var(--mint-500);
  padding-top: 20px;
}

.workflow-scope-grid h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.workflow-scope-grid p {
  color: var(--text-muted);
  font-size: 14px;
}

.v1-pricing-section {
  background: var(--surface);
}

.pricing-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
}

.pricing-heading > div:first-child {
  max-width: 720px;
}

.v1-billing-control {
  min-width: 0;
  max-width: 100%;
}

.v1-home .billing-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--forest-050);
  padding: 4px;
}

.v1-home .billing-toggle button {
  min-height: 40px;
  cursor: pointer;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--text-muted);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
}

.v1-home .billing-toggle button.active {
  background: var(--forest-900);
  color: var(--surface);
  box-shadow: var(--shadow-sm);
}

.v1-home .billing-note {
  min-height: 20px;
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 12px;
  text-align: center;
}

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

.v1-pilot-intro-section {
  border-block: 1px solid rgba(23, 111, 93, 0.14);
  background: var(--forest-050);
}

.v1-pilot-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  min-width: 0;
  max-width: 100%;
}

.v1-pilot-intro h2 {
  margin-bottom: 12px;
}

.v1-pilot-intro p:last-child {
  margin-bottom: 0;
  color: var(--text-muted);
}

.v1-pilot-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.v1-pilot-points li {
  display: flex;
  min-height: 108px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  padding: 22px 24px;
  color: var(--forest-900);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
}

.v1-price-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 640px;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  padding: 26px 22px 22px;
}

.v1-price-card.recommended {
  border-color: var(--forest-700);
  background: linear-gradient(180deg, var(--mint-100), var(--surface) 28%);
  box-shadow: 0 18px 44px rgba(23, 111, 93, 0.12);
}

.v1-recommended-label {
  min-height: 22px;
  margin: -10px 0 12px;
  color: var(--forest-700);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Shared-baseline helper: invisible label reserves the recommended-label
   row on non-recommended cards so £ amounts and setup pills align. */
.v1-label-placeholder {
  visibility: hidden;
}

.v1-price-head {
  min-height: 78px;
}

.v1-price-head h3 {
  margin-bottom: 4px;
  font-size: 22px;
}

.v1-price-head p,
.v1-price-description {
  color: var(--text-muted);
  font-size: 13px;
}

.v1-price-row {
  min-width: 0;
  min-height: 76px;
  margin-top: 4px;
}

.v1-price-row .price {
  overflow-wrap: anywhere;
  margin: 0;
  color: var(--forest-950);
  font-size: clamp(28px, 8vw, 46px);
  font-weight: 850;
  line-height: 1;
  white-space: normal;
}

.price-cycle {
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 750;
}

.v1-price-card .setup-fees {
  min-height: 94px;
  margin: 16px 0 20px;
}

.v1-price-card .setup-fee {
  min-height: 32px;
  max-width: 100%;
  align-self: flex-start;
  margin: 0 0 7px;
  border-radius: 999px;
  background: var(--mint-100);
  color: var(--forest-900);
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.v1-price-card .standard-setup {
  margin: 0;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.35;
}

.v1-price-description {
  min-height: 84px;
  margin-bottom: 20px;
}

.v1-price-card ul {
  margin-bottom: 26px;
  font-size: 14px;
}

.v1-price-footnote {
  margin: -14px 0 20px;
  color: var(--text-muted);
  font-size: 11px;
}

.v1-scope-link {
  align-self: flex-start;
  margin-top: auto;
  color: var(--forest-700);
  font-size: 12px;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.v1-scope-link.light {
  display: inline-block;
  margin-top: 14px;
  color: var(--mint-300);
}

.v1-price-card .button {
  width: 100%;
  margin-top: 16px;
  padding-inline: 12px;
}

.v1-pricing-warning {
  max-width: 920px;
  margin: 26px auto 0;
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
}

.v1-price-card.executive-card {
  border-color: rgba(8, 47, 40, 0.5);
  background: var(--forest-050);
}

.v1-custom-section {
  border-top: 1px solid rgba(155, 231, 204, 0.18);
  background: var(--forest-950);
  color: var(--surface);
  padding: clamp(58px, 7vw, 88px) 0;
}

.v1-custom-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
}

.v1-custom-inner > div {
  max-width: 760px;
}

.v1-custom-inner .v1-eyebrow {
  color: var(--mint-300);
}

.v1-custom-inner h2 {
  color: var(--surface);
}

.v1-custom-inner p:not(.v1-eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.v1-custom-note {
  margin-bottom: 0;
}

.v1-custom-scope {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.v1-custom-scope li {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.v1-custom-scope li::before {
  margin-right: 8px;
  content: "\2713";
  color: var(--mint-300);
}

.v1-founding-section {
  background: var(--surface);
}

.v1-founding-section .v1-section-heading {
  max-width: 850px;
}

.founding-price-table tbody td {
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}

.founding-price-table tbody td:first-of-type {
  color: var(--forest-700);
}

.annual-price-note {
  max-width: 880px;
  border-left: 3px solid var(--mint-500);
  background: var(--forest-050);
  padding: 22px 24px;
}

.annual-price-note h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.annual-price-note p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.v1-custom-inner .button.secondary {
  border-color: var(--mint-300);
  color: var(--mint-300);
}

.v1-custom-inner .button.secondary:hover {
  background: rgba(155, 231, 204, 0.1);
}

/* Service Scope */
.scope-page {
  background: var(--surface);
}

.scope-page [id] {
  scroll-margin-top: 104px;
}

.scope-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(155, 231, 204, 0.18);
  background:
    linear-gradient(90deg, rgba(8, 47, 40, 0.98), rgba(8, 47, 40, 0.84)),
    url("assets/brand/patterns/flowops-circuit-pattern.png") right center / cover;
  color: var(--surface);
  padding: clamp(72px, 9vw, 118px) 0;
}

.scope-hero .v1-container {
  max-width: 980px;
}

.scope-hero .v1-eyebrow {
  color: var(--mint-300);
}

.scope-hero h1 {
  max-width: 860px;
  margin-bottom: 22px;
  color: var(--surface);
  font-size: clamp(48px, 7vw, 82px);
}

.scope-hero p:not(.v1-eyebrow) {
  max-width: 850px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.scope-effective {
  margin-top: 28px;
  border-left: 3px solid var(--mint-300);
  padding: 4px 0 4px 18px;
  font-size: 13px !important;
}

.scope-effective strong {
  color: var(--surface);
}

.scope-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
  padding-top: clamp(56px, 7vw, 88px);
  padding-bottom: clamp(72px, 9vw, 120px);
}

.scope-nav {
  position: sticky;
  top: 92px;
  border-top: 2px solid var(--mint-500);
  padding-top: 16px;
}

.scope-nav > p {
  margin-bottom: 12px;
  color: var(--forest-950);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.scope-nav nav {
  display: grid;
  gap: 2px;
}

.scope-nav a {
  border-left: 2px solid transparent;
  color: var(--text-muted);
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 750;
}

.scope-nav a:hover,
.scope-nav a:focus-visible {
  border-left-color: var(--mint-500);
  color: var(--forest-800);
}

.scope-content {
  min-width: 0;
}

.scope-content > section {
  border-top: 1px solid var(--border);
  padding: clamp(42px, 6vw, 72px) 0;
}

.scope-content > section:first-child {
  border-top: 0;
  padding-top: 0;
}

.scope-content h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 46px);
}

.scope-content h3 {
  margin: 28px 0 12px;
  font-size: 19px;
}

.scope-content p,
.scope-content li,
.scope-content dd,
.scope-content td {
  color: var(--text-muted);
}

.scope-definition {
  max-width: 900px;
  border-left: 4px solid var(--mint-500);
  background: var(--forest-050);
  padding: 24px 26px;
  color: var(--forest-950) !important;
  font-size: 18px;
  font-weight: 800;
}

.scope-definition-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--border);
}

.scope-definition-grid > div {
  background: var(--surface);
  padding: 22px;
}

.scope-definition-grid dt {
  margin-bottom: 6px;
  color: var(--forest-800);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.scope-definition-grid dd {
  margin: 0;
  font-size: 14px;
}

.scope-step-list {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--border);
  padding: 0;
  list-style: none;
}

.scope-step-list li {
  min-width: 0;
  background: var(--surface);
  padding: 18px 14px;
  font-size: 12px;
  font-weight: 800;
}

.scope-step-list span {
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--mint-100);
  color: var(--forest-800);
  font-size: 11px;
}

.scope-columns,
.scope-change-flow,
.scope-inclusions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.scope-columns article,
.scope-change-flow li,
.scope-inclusions > div {
  border-top: 2px solid var(--mint-500);
  padding-top: 18px;
}

.scope-columns h3,
.scope-inclusions h4 {
  margin-top: 0;
  color: var(--forest-950);
}

.scope-columns ul,
.scope-inclusions ul {
  margin: 0;
}

.scope-change-flow {
  padding: 0;
  list-style: none;
}

.scope-change-flow strong,
.scope-change-flow span {
  display: block;
}

.scope-change-flow strong {
  margin-bottom: 8px;
  color: var(--forest-950);
}

.scope-change-flow span {
  color: var(--text-muted);
  font-size: 14px;
}

.scope-callout,
.scope-note {
  margin-top: 28px;
  border-left: 3px solid var(--mint-500);
  background: var(--forest-050);
  padding: 20px 22px;
  color: var(--forest-900) !important;
}

.scope-package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.scope-package {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  padding: 28px;
}

.scope-package.recommended {
  border-color: var(--mint-500);
  background: linear-gradient(180deg, var(--mint-100), var(--surface) 34%);
}

.scope-package.executive {
  border-color: rgba(8, 47, 40, 0.48);
  background: var(--forest-050);
}

.scope-package.custom {
  grid-column: 1 / -1;
  border-color: #c5a45b;
  background: linear-gradient(135deg, #fff, #fbf5e8);
}

.scope-package h3 {
  margin: 0 0 10px;
  font-size: 26px;
}

.scope-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 22px;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  background: var(--border);
  color: var(--forest-700) !important;
  font-size: 13px;
  font-weight: 850;
}

.scope-meta > div {
  min-width: 0;
  background: var(--surface);
  padding: 12px;
}

.scope-meta dt {
  margin-bottom: 4px;
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.scope-meta dd {
  margin: 0;
  color: var(--forest-900);
  overflow-wrap: anywhere;
}

.scope-inclusions {
  margin-top: 24px;
}

.scope-inclusions h4 {
  margin-bottom: 10px;
  font-size: 14px;
}

.scope-content .workflow-table-wrap,
.scope-content .founding-price-table-wrap {
  margin-top: 28px;
}

.scope-contact {
  border: 0 !important;
  border-radius: 8px;
  background: var(--forest-950);
  padding: clamp(36px, 5vw, 58px) !important;
}

.scope-contact h2 {
  color: var(--surface);
}

.scope-contact p {
  color: rgba(255, 255, 255, 0.72);
}

.scope-contact .button {
  margin-top: 8px;
}

.v1-security-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 248, 245, 0.97), rgba(240, 246, 242, 0.9)),
    url("assets/brand/patterns/flowops-circuit-pattern.png") right center / cover;
}

.v1-security-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(50px, 8vw, 108px);
  align-items: center;
}

.v1-security-grid > div:first-child > p:not(.v1-eyebrow) {
  color: var(--text-muted);
  font-size: 18px;
}

.v1-trust-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}

.v1-trust-links a {
  color: var(--forest-900);
  font-weight: 850;
}

.v1-trust-links a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.v1-security-points {
  display: grid;
  border-top: 1px solid var(--border);
}

.v1-security-points article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}

.v1-security-points article > span {
  color: var(--forest-700);
  font-size: 12px;
  font-weight: 900;
}

.v1-security-points p {
  margin-bottom: 0;
  color: var(--text-muted);
}

.v1-registration-section {
  background: var(--surface);
}

.v1-registration-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.v1-registration-copy {
  position: sticky;
  top: 116px;
}

.v1-registration-copy > p:not(.v1-eyebrow) {
  color: var(--text-muted);
  font-size: 18px;
}

.v1-review-steps {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.v1-review-steps p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.v1-review-steps span {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint-100);
  color: var(--forest-900);
  font-size: 11px;
  font-weight: 900;
}

.v1-home .v1-registration-form {
  gap: 18px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  padding: clamp(24px, 4vw, 40px);
}

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

.v1-home .v1-registration-form label {
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 850;
}

.optional-label {
  float: right;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
}

.v1-home .v1-registration-form input,
.v1-home .v1-registration-form select,
.v1-home .v1-registration-form textarea {
  min-height: 50px;
  border-radius: 6px;
  background: var(--surface);
  padding: 12px 14px;
}

.v1-home .v1-registration-form textarea {
  min-height: 130px;
  resize: vertical;
}

.v1-home .v1-registration-form input:hover,
.v1-home .v1-registration-form select:hover,
.v1-home .v1-registration-form textarea:hover {
  border-color: #b5c2b9;
}

.v1-help-text {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
}

.v1-home .v1-registration-form .checkbox-line {
  align-items: flex-start;
  color: var(--text-muted);
  font-weight: 600;
}

.v1-home .v1-registration-form .checkbox-line input {
  min-height: 18px;
  flex: 0 0 18px;
  width: 18px;
  margin-top: 2px;
  accent-color: var(--forest-700);
}

.v1-home .v1-registration-form .checkbox-line a {
  color: var(--forest-900);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.v1-submit-button {
  width: 100%;
}

.v1-home .form-status {
  min-height: 24px;
  color: var(--text-muted);
}

.v1-home .form-status[data-state="success"] {
  color: var(--success);
}

.v1-home .form-status[data-state="error"] {
  color: var(--error);
}

.v1-faq-section {
  border-top: 1px solid var(--border);
  background: var(--canvas);
}

.v1-faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(480px, 1.3fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.v1-home .v1-faq-list details {
  border-width: 0 0 1px;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.v1-home .v1-faq-list summary {
  position: relative;
  padding: 22px 44px 22px 0;
  font-size: 17px;
  list-style: none;
}

.v1-home .v1-faq-list summary::-webkit-details-marker {
  display: none;
}

.v1-home .v1-faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 4px;
  color: var(--forest-700);
  font-size: 24px;
  font-weight: 500;
  transform: translateY(-50%);
}

.v1-home .v1-faq-list details[open] summary::after {
  content: "–";
}

.v1-home .v1-faq-list p {
  max-width: 700px;
  margin: 0;
  padding: 0 44px 22px 0;
  color: var(--text-muted);
}

.v1-final-cta {
  background: var(--forest-900);
  color: var(--surface);
  padding: clamp(64px, 8vw, 104px) 0;
}

.v1-final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: center;
}

.v1-final-cta-inner > div {
  max-width: 780px;
}

.v1-final-cta .v1-eyebrow {
  color: var(--mint-300);
}

.v1-final-cta h2 {
  color: var(--surface);
}

.v1-final-cta p:not(.v1-eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.v1-footer {
  width: 100%;
  margin: 0;
  background: #061e19;
  color: var(--surface);
  padding: 76px 0 28px;
}

.v1-footer-top {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 2.25fr);
  gap: clamp(50px, 8vw, 100px);
}

.v1-footer .v1-brand,
.v1-footer h2 {
  color: var(--surface);
}

.v1-footer-brand p {
  max-width: 290px;
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.v1-footer-brand > a:not(.brand) {
  color: var(--mint-300);
  font-size: 14px;
  font-weight: 750;
}

.v1-footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 30px;
}

.v1-footer-columns > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.v1-footer-columns h2 {
  margin-bottom: 8px;
  font-size: 13px;
}

.v1-footer-columns a,
.v1-footer-columns span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.v1-footer-columns a:hover,
.v1-footer-brand > a:hover {
  color: var(--surface);
}

.v1-eco-note {
  color: inherit;
  text-decoration: none;
}

a.v1-eco-note:hover {
  text-decoration: underline;
}

.v1-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
}

.v1-footer-bottom p,
.v1-footer-bottom a {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

@media (max-width: 1100px) {
  .v1-desktop-nav {
    gap: 16px;
  }

  .v1-header-cta {
    display: none;
  }

  .v1-hero-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
    gap: 40px;
  }

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

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

  .workflow-example li:nth-child(4)::after {
    display: none;
  }

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

  .v1-price-card {
    min-height: 590px;
  }

  .v1-price-row .price {
    font-size: 46px;
  }
}

@media (max-width: 900px) {
  .v1-desktop-nav,
  .v1-header-actions {
    display: none;
  }

  .v1-mobile-menu {
    display: block;
  }

  .hu-v1-home .v1-mobile-panel {
    right: 0;
    left: auto;
    width: min(280px, calc(100vw - 24px));
  }

  .v1-hero-grid,
  .v1-estate-grid,
  .v1-security-grid,
  .v1-registration-grid,
  .v1-faq-grid,
  .v1-custom-inner,
  .v1-final-cta-inner,
  .v1-footer-top {
    grid-template-columns: 1fr;
  }

  .v1-hero-copy {
    max-width: 720px;
  }

  .hu-v1-home .v1-estate-copy {
    min-width: 0;
  }

  .hu-v1-home #estate-title {
    overflow-wrap: anywhere;
  }

  .v1-workflow-visual {
    max-width: 720px;
  }

  .v1-problem-grid,
  .v1-industry-grid,
  .v1-four-step,
  .v1-quiet-ops,
  .v1-three-path,
  .v1-trust-pillar-grid,
  .v1-value-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v1-soft-cta-inner {
    grid-template-columns: 1fr;
  }

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

  .v1-process-list {
    grid-template-columns: 1fr;
  }

  .v1-process-list li,
  .v1-process-list li:first-child {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding: 22px 0;
  }

  .v1-step-number {
    margin-bottom: 0;
  }

  .v1-registration-copy {
    position: static;
  }

  .v1-custom-inner .button,
  .v1-final-cta-inner .button {
    justify-self: start;
  }

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

  .scope-layout {
    grid-template-columns: 1fr;
  }

  .scope-nav {
    position: static;
  }

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

@media (max-width: 700px) {
  .v1-container,
  .v1-header-inner,
  .v1-home main > .section,
  .v1-home main > .industry-hero {
    width: min(100% - 32px, 1180px);
  }

  .v1-header-inner {
    min-height: 68px;
  }

  .v1-home h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .v1-home h2 {
    font-size: clamp(30px, 8.5vw, 42px);
  }

  .v1-hero {
    padding: 58px 0 70px;
  }

  .v1-hero-grid {
    gap: 48px;
  }

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

  .v1-actions .button {
    width: 100%;
  }

  .v1-visual-columns {
    grid-template-columns: 1fr;
  }

  .v1-flow-line {
    min-height: 22px;
    transform: rotate(90deg);
  }

  .v1-visual-steps {
    grid-template-columns: 1fr;
    gap: 0;
    border-left: 2px solid rgba(155, 231, 204, 0.34);
    padding-left: 14px;
  }

  .v1-visual-steps li {
    padding: 5px 0;
    text-align: left;
  }

  .v1-visual-steps li::before {
    display: none;
  }

  .v1-trust-grid,
  .v1-problem-grid,
  .v1-comparison-grid,
  .v1-industry-grid,
  .v1-pricing-grid,
  .v1-form-row,
  .v1-four-step,
  .v1-pathway,
  .v1-quiet-ops,
  .v1-three-path,
  .v1-trust-pillar-grid,
  .v1-value-points {
    grid-template-columns: 1fr;
  }

  .workflow-scope-grid {
    grid-template-columns: 1fr;
  }

  .scope-definition-grid,
  .scope-package-grid,
  .scope-columns,
  .scope-change-flow,
  .scope-inclusions {
    grid-template-columns: 1fr;
  }

  .scope-package.custom {
    grid-column: auto;
  }

  .scope-meta {
    grid-template-columns: 1fr;
  }

  .scope-step-list {
    grid-template-columns: 1fr;
  }

  .scope-step-list li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    align-items: center;
  }

  .scope-step-list span {
    margin-bottom: 0;
  }

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

  .scope-hero {
    padding: 58px 0 68px;
  }

  .scope-package {
    padding: 22px;
  }

  .v1-trust-grid {
    gap: 12px;
  }

  .v1-problem-card {
    min-height: 220px;
  }

  .v1-card-number {
    margin-bottom: 36px;
  }

  .pricing-heading {
    grid-template-columns: 1fr;
  }

  .v1-pilot-intro {
    grid-template-columns: minmax(0, 1fr);
  }

  .v1-pilot-intro > * {
    min-width: 0;
    max-width: 100%;
  }

  .hu-v1-home .v1-pilot-intro .v1-eyebrow,
  .hu-v1-home .v1-pilot-intro h1,
  .hu-v1-home .v1-pilot-intro p {
    overflow-wrap: anywhere;
    text-wrap: wrap;
  }

  .v1-billing-control {
    min-width: 0;
  }

  .v1-price-card {
    min-height: auto;
  }

  .v1-price-card .setup-fees {
    min-height: 0;
  }

  .v1-price-head,
  .v1-price-description {
    min-height: auto;
  }

  .v1-price-description {
    margin-bottom: 20px;
  }

  .v1-price-card ul {
    margin-bottom: 30px;
  }

  .workflow-example {
    grid-template-columns: 1fr;
  }

  .workflow-example li {
    min-height: 0;
    padding: 14px 18px;
  }

  .workflow-example li:not(:last-child)::after {
    right: 18px;
    bottom: -12px;
    transform: rotate(90deg);
  }

  .workflow-example li:nth-child(4)::after {
    display: block;
  }

  .v1-custom-inner .button,
  .v1-final-cta-inner .button {
    width: 100%;
  }

  .v1-footer-columns {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .v1-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .v1-pilot-points {
    grid-template-columns: 1fr;
  }

  .v1-pilot-points li {
    min-height: 0;
  }
}

@media (max-width: 390px) {
  .v1-container,
  .v1-header-inner,
  .v1-home main > .section,
  .v1-home main > .industry-hero {
    width: min(100% - 24px, 1180px);
    max-width: 100%;
  }

  .v1-brand {
    font-size: 15px;
  }

  .v1-brand .brand-logo {
    width: 31px;
    height: 31px;
  }

  .v1-mobile-menu summary {
    padding-inline: 11px;
  }

  .v1-workflow-visual,
  .v1-visual-state,
  .v1-problem-card,
  .v1-comparison-card,
  .v1-capability-panel,
  .v1-industry-card,
  .v1-price-card,
  .v1-home .v1-registration-form {
    padding-right: 18px;
    padding-left: 18px;
  }

  .v1-visual-header > span:last-child {
    display: none;
  }

  .v1-price-row .price {
    font-size: clamp(28px, 9vw, 36px);
  }

  .scope-nav nav {
    grid-template-columns: 1fr;
  }

  .scope-definition,
  .scope-contact {
    padding-right: 18px !important;
    padding-left: 18px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .v1-home *,
  .v1-home *::before,
  .v1-home *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Dashboard status states */
.demo-status.loading { color: var(--muted); }
.demo-status.success { color: var(--accent); }
.demo-status.error { color: #d94040; font-weight: 600; }
.loading-spinner {
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid var(--line);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}
@keyframes spin { to { transform: rotate(360deg); } }

.v1-home-slim .v1-hero {
  padding-bottom: clamp(36px, 5vw, 56px);
}

.v1-hardware-panel {
  border: 1px solid rgba(155, 231, 204, 0.22);
  border-radius: 12px;
  background: rgba(7, 37, 31, 0.55);
  padding: 22px 24px;
  color: var(--surface);
}

.v1-hardware-panel .v1-panel-label,
.v1-hardware-panel p.v1-panel-label {
  margin: 0 0 14px;
  color: var(--mint-300);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v1-hardware-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.v1-hardware-panel li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.86);
  padding: 8px 0;
  border-bottom: 1px solid rgba(155, 231, 204, 0.12);
  font-size: 14px;
  font-weight: 650;
}

.v1-hardware-panel li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.v1-hardware-panel li::before {
  content: "\2713";
  color: var(--mint-300);
  font-weight: 900;
}

.v1-home-cta {
  justify-content: center;
  margin-top: 36px;
}

.v1-founding-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
  max-width: 100%;
  margin: 0 0 28px;
  border: 1px solid var(--forest-700);
  border-radius: 10px;
  background: var(--mint-100);
  color: var(--forest-950);
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.v1-founding-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--forest-900);
  color: var(--surface);
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.v1-security-points h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

@media (max-width: 900px) {
  .v1-founding-banner {
    align-items: flex-start;
  }
}

/* FlowOps AI Timeline + internal Command Center — static registry, not a scoring board */
.orch-page .orch-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.orch-snapshot-meta {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 650;
}

.orch-legend,
.orch-timeline,
.orch-card-grid article,
.orch-live-grid article,
.orch-registry-section > .v1-container > article {
  border: 1px solid rgba(155, 231, 204, 0.2);
  border-radius: 12px;
  background: rgba(7, 37, 31, 0.55);
  color: var(--surface);
}

.orch-legend {
  padding: 22px 24px;
}

.orch-panel-label {
  margin: 0 0 12px;
  color: var(--mint-300);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.orch-legend ul,
.orch-sublist,
.orch-next-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.orch-legend li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0;
  padding: 8px 0;
  border-bottom: 1px solid rgba(155, 231, 204, 0.12);
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.orch-legend li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.orch-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.orch-badge.is-live {
  background: rgba(155, 231, 204, 0.18);
  color: var(--mint-300);
}

.orch-badge.is-pass {
  background: rgba(23, 111, 93, 0.28);
  color: #d8eee8;
}

.orch-badge.is-spec {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

.orch-badge.is-blocked {
  background: rgba(180, 35, 24, 0.22);
  color: #ffd4cf;
}

.orch-badge.is-planned {
  background: rgba(166, 106, 22, 0.22);
  color: #ffe3b0;
}

.orch-badge.is-local {
  background: rgba(90, 170, 220, 0.2);
  color: #d4ecff;
}

.orch-badge.is-wait {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 800;
}

.cc-internal-banner {
  margin: 0 0 18px;
  border: 1px solid rgba(255, 211, 140, 0.35);
  border-radius: 10px;
  background: rgba(166, 106, 22, 0.16);
  padding: 12px 14px;
  color: #ffe3b0;
  font-size: 14px;
  font-weight: 650;
}

.cc-ops-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

.cc-ops-table th,
.cc-ops-table td {
  border-bottom: 1px solid rgba(155, 231, 204, 0.16);
  padding: 12px 10px;
  text-align: left;
  vertical-align: top;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.cc-ops-table th {
  color: var(--mint-300);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cc-ops-table code {
  color: var(--mint-300);
  font-size: 12px;
}

.orch-timeline-section {
  background: #071c18;
  color: var(--surface);
  padding: var(--v1-section-space) 0;
}

.orch-timeline-section .v1-section-heading > p:not(.v1-eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.orch-timeline-section .v1-eyebrow {
  color: var(--mint-300);
}

.orch-timeline-section h2 {
  color: var(--surface);
}

.orch-timeline {
  display: grid;
  gap: 0;
  padding: 8px 0;
}

.orch-timeline > li {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  position: relative;
  padding: 0 24px 28px;
}

.orch-timeline > li:last-child {
  padding-bottom: 24px;
}

.orch-timeline > li::before {
  content: "";
  position: absolute;
  left: 51px;
  top: 36px;
  bottom: 0;
  width: 1px;
  background: rgba(155, 231, 204, 0.22);
}

.orch-timeline > li:last-child::before {
  display: none;
}

.orch-node-index {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(155, 231, 204, 0.35);
  border-radius: 999px;
  background: rgba(8, 47, 40, 0.9);
  color: var(--mint-300);
  font-size: 12px;
  font-weight: 900;
}

.orch-node-head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}

.orch-node-head h3 {
  margin: 0;
  color: var(--surface);
  font-size: 20px;
}

.orch-timeline p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
}

.orch-sublist {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.orch-sublist li {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(4, 29, 24, 0.45);
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.orch-registry-section {
  background: var(--forest-050);
}

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

.orch-card-grid article,
.orch-live-grid article,
.orch-registry-section > .v1-container > article {
  padding: 22px 22px 20px;
}

.orch-registry-section > .v1-container > article {
  overflow-x: auto;
}

.orch-card-grid h3,
.orch-live-grid h3 {
  margin: 0 0 8px;
  color: var(--surface);
  font-size: 20px;
}

.orch-card-grid p,
.orch-live-grid p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
}

.orch-card-grid code {
  color: var(--mint-300);
  font-size: 12px;
}

.orch-now-section,
.orch-next-section {
  background: #071c18;
  color: var(--surface);
}

.orch-now-section .v1-section-heading > p:not(.v1-eyebrow),
.orch-next-section .v1-section-heading > p:not(.v1-eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.orch-now-section .v1-eyebrow,
.orch-next-section .v1-eyebrow {
  color: var(--mint-300);
}

.orch-now-section h2,
.orch-next-section h2 {
  color: var(--surface);
}

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

.orch-live-grid article {
  padding: 20px 22px;
}

.orch-live-grid [data-orch-value] {
  margin-bottom: 8px;
  color: var(--mint-300);
  font-size: 16px;
  font-weight: 800;
}

.orch-next-list {
  display: grid;
  gap: 14px;
  max-width: 820px;
}

.orch-next-list li {
  border: 1px solid rgba(155, 231, 204, 0.18);
  border-radius: 10px;
  background: rgba(7, 37, 31, 0.45);
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.8);
}

.orch-next-list strong {
  color: var(--surface);
}

@media (max-width: 900px) {
  .orch-page .orch-hero-grid,
  .orch-card-grid,
  .orch-live-grid {
    grid-template-columns: 1fr;
  }

  .orch-timeline > li {
    grid-template-columns: 40px minmax(0, 1fr);
    padding-left: 16px;
    padding-right: 16px;
  }

  .orch-timeline > li::before {
    left: 35px;
  }
}

/* Public Timeline — linear product journey */
.tl-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(155, 231, 204, 0.28);
  border-radius: 12px;
  background: rgba(4, 29, 24, 0.55);
}

.tl-pillars article {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  padding: 22px 20px 20px;
  border-right: 1px solid rgba(155, 231, 204, 0.16);
}

.tl-pillars article:last-child {
  border-right: 0;
}

.tl-stage-index {
  margin: 0;
  color: var(--mint-300);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.v1-home h2.tl-stage-name,
.tl-stage-name {
  margin: 0 0 4px;
  color: var(--surface);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.tl-pillars p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.tl-legend-section {
  background: var(--forest-950);
  padding: 18px 0 22px;
}

.tl-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tl-legend li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.tl-journey-section .tl-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin: 8px 0 0;
  padding: 36px 0 0;
  list-style: none;
}

.tl-track::before {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  left: 8px;
  height: 2px;
  background: linear-gradient(90deg, rgba(155, 231, 204, 0.12), var(--mint-300), rgba(155, 231, 204, 0.12));
}

.tl-track > li {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
  border: 1px solid rgba(155, 231, 204, 0.2);
  border-radius: 12px;
  background: rgba(7, 37, 31, 0.55);
  padding: 20px 18px 18px;
}

.tl-track > li::before {
  content: "";
  position: absolute;
  top: -32px;
  left: 50%;
  width: 12px;
  height: 12px;
  border: 2px solid var(--forest-950);
  border-radius: 999px;
  background: var(--mint-300);
  box-shadow: 0 0 0 4px rgba(155, 231, 204, 0.18);
  transform: translateX(-50%);
}

.tl-track time {
  color: var(--mint-300);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.tl-track h3 {
  margin: 0;
  color: var(--surface);
  font-size: 17px;
  line-height: 1.25;
}

.tl-track p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 400;
}

.tl-note {
  margin: 0 0 22px;
  border: 1px solid rgba(23, 111, 93, 0.22);
  border-radius: 12px;
  background: var(--surface);
  padding: 20px 22px;
}

.tl-note .orch-panel-label {
  color: var(--forest-700);
}

.tl-note p:last-child {
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
}

.tl-page .tl-registry-section .orch-card-grid article {
  border-color: var(--border);
  background: var(--surface);
  color: var(--text-primary);
}

.tl-page .tl-registry-section .orch-card-grid h3 {
  color: var(--forest-950);
}

.tl-page .tl-registry-section .orch-card-grid p {
  color: var(--text-muted);
}

.tl-page .tl-registry-section .orch-panel-label {
  color: var(--forest-700);
}

@media (max-width: 1100px) {
  .tl-journey-section .tl-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tl-track::before {
    display: none;
  }

  .tl-track > li::before {
    display: none;
  }
}

@media (max-width: 900px) {
  .tl-pillars {
    grid-template-columns: 1fr;
  }

  .tl-pillars article {
    border-right: 0;
    border-bottom: 1px solid rgba(155, 231, 204, 0.16);
  }

  .tl-pillars article:last-child {
    border-bottom: 0;
  }

  .tl-journey-section .tl-track {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-left: 10px;
    padding-top: 8px;
    padding-left: 22px;
  }

  .tl-track::before {
    display: block;
    top: 12px;
    right: auto;
    bottom: 12px;
    left: 0;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(155, 231, 204, 0.12), var(--mint-300), rgba(155, 231, 204, 0.12));
  }

  .tl-track > li::before {
    display: block;
    top: 22px;
    left: -28px;
    transform: none;
  }

  .tl-track > li {
    padding-left: 22px;
  }
}

/* School dashboard — Owner Irányítópult spirit; never a fake scoreboard */
.tl-school-section {
  background: #071c18;
  color: var(--surface);
  padding: var(--v1-section-space) 0;
}

.tl-school-section .v1-section-heading > p:not(.v1-eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.tl-school-section .v1-eyebrow,
.tl-school-section .orch-panel-label {
  color: var(--mint-300);
}

.tl-school-section h2 {
  color: var(--surface);
}

.tl-school-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 16px;
}

.tl-school-card,
.cc-dash-card {
  border: 1px solid rgba(155, 231, 204, 0.2);
  border-radius: 12px;
  background: rgba(7, 37, 31, 0.55);
  padding: 16px;
}

.tl-school-card h3,
.cc-dash-card h2 {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tl-school-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.tl-school-facts li {
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.school-chart-wrap {
  position: relative;
  min-height: 220px;
  max-width: 100%;
  overflow: hidden;
}

.school-chart-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  color: #9be7cc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.school-chart-live-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3ddc84;
  box-shadow: 0 0 0 0 rgba(61, 220, 132, 0.7);
  animation: school-live-pulse 1.4s ease-out infinite;
}

@keyframes school-live-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(61, 220, 132, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(61, 220, 132, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(61, 220, 132, 0);
  }
}

.school-chart-wrap canvas {
  display: block;
  width: 100%;
  height: 220px;
}

.school-chart-empty {
  position: absolute;
  inset: 16px 12px 16px 40px;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 8px;
  background: rgba(11, 15, 20, 0.35);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 650;
  text-align: center;
}

.school-chart-empty[hidden] {
  display: none;
}

.school-chart-axis {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.school-chart-hits {
  position: static;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 10px;
}

.school-chart-hit {
  position: static;
  pointer-events: auto;
  min-width: 36px;
  min-height: 28px;
  padding: 4px 7px;
  border: 1px solid rgba(255, 176, 32, 0.85);
  border-radius: 999px;
  background: rgba(11, 15, 20, 0.92);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  z-index: 1;
}

.school-chart-hit.is-active {
  background: #3ddc84;
  color: #0b0f14;
  border-color: #3ddc84;
}

.school-chart-keys {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 0;
}

.school-chart-key {
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid rgba(155, 231, 204, 0.28);
  border-radius: 999px;
  background: rgba(11, 15, 20, 0.55);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.school-chart-key.is-active {
  background: #3ddc84;
  color: #0b0f14;
  border-color: #3ddc84;
}

.school-chart-detail {
  margin-top: 12px;
  padding: 12px;
  border: 1px solid rgba(155, 231, 204, 0.18);
  border-radius: 10px;
  background: rgba(11, 15, 20, 0.35);
}

.school-chart-detail-title {
  margin: 0 0 6px;
  color: #9be7cc;
  font-size: 13px;
  font-weight: 700;
}

.school-chart-detail p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.45;
}

.school-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

.school-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.school-swatch {
  width: 10px;
  height: 10px;
  border-radius: 2px;
}

.school-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.school-table th,
.school-table td {
  border-bottom: 1px solid rgba(155, 231, 204, 0.16);
  padding: 8px 6px;
  text-align: left;
  vertical-align: top;
}

.school-table th {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.school-table td {
  color: rgba(255, 255, 255, 0.86);
}

.school-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 20px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
}

.school-pill.is-ok {
  background: rgba(61, 220, 132, 0.15);
  color: #3ddc84;
}

.school-pill.is-warn {
  background: rgba(255, 176, 32, 0.15);
  color: #ffb020;
}

.school-pill.is-new {
  background: rgba(255, 92, 92, 0.15);
  color: #ff5c5c;
}

.cc-dash {
  --dash-bg: #0b0f14;
  --dash-panel: #121821;
  --dash-line: #1f2a36;
  --dash-txt: #d7e0ea;
  --dash-dim: #6b7a8c;
  --dash-red: #ff5c5c;
  --dash-blue: #4aa3ff;
  --dash-green: #3ddc84;
  --dash-amber: #ffb020;
  background: var(--dash-bg);
  color: var(--dash-txt);
  padding: 8px 0 var(--v1-section-space);
}

.cc-dash-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 16px;
}

.cc-dash-head h2 {
  margin: 0;
  color: var(--dash-txt);
  font-size: 22px;
}

.cc-dash-head p {
  margin: 6px 0 0;
  color: var(--dash-dim);
  font-size: 13px;
}

.cc-dash-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dash-dim);
  font-size: 12px;
}

.cc-dash-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dash-green);
  box-shadow: 0 0 8px var(--dash-green);
}

.cc-dash-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
}

.cc-dash-card {
  background: var(--dash-panel);
  border-color: var(--dash-line);
}

.cc-dash-card h2 {
  color: var(--dash-dim);
}

.cc-dash .school-table th {
  color: var(--dash-dim);
}

.cc-dash .school-table td,
.cc-dash .school-table th {
  border-bottom-color: var(--dash-line);
}

.cc-dash .school-legend {
  color: var(--dash-dim);
}

.cc-dash-wide {
  grid-column: 1 / -1;
}

.cc-rb {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cc-team {
  border: 1px solid var(--dash-line);
  border-radius: 10px;
  padding: 12px;
}

.cc-team h3 {
  margin: 0 0 8px;
  font-size: 13px;
}

.cc-team.is-red h3 {
  color: var(--dash-red);
}

.cc-team.is-blue h3 {
  color: var(--dash-blue);
}

.cc-bar {
  height: 6px;
  border-radius: 3px;
  background: #0e141c;
  margin: 6px 0;
}

.cc-bar > span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 3px;
}

.cc-bar.is-red > span {
  background: var(--dash-red);
}

.cc-bar.is-blue > span {
  background: var(--dash-blue);
}

.cc-dash-note,
.cc-dash-foot {
  margin: 12px 0 0;
  color: var(--dash-dim);
  font-size: 12px;
}

.cc-dash-foot {
  margin-top: 16px;
  font-size: 11px;
}

@media (max-width: 900px) {
  .tl-school-grid,
  .cc-dash-grid,
  .cc-rb {
    grid-template-columns: 1fr;
  }

  .cc-dash-head {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* Keep the Timeline CSP-compatible and wide tables inside their own scroll area. */
.school-swatch-flowops { background: #3ddc84; }
.school-swatch-schooling { background: #3ddc84; }
.school-swatch-lessons { background: #9be7cc; }
.school-swatch-next { background: #ffb020; }

.school-chart-now {
  margin: 10px 0 0 auto;
  width: fit-content;
  border: 1px solid rgba(155, 231, 204, 0.35);
  border-radius: 999px;
  background: rgba(7, 28, 24, 0.85);
  padding: 4px 10px;
  color: var(--mint-300);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.tl-school-table-card { margin-top: 16px; overflow-x: auto; }
.tl-school-table-card .school-table { min-width: 540px; }
.tl-school-card { min-width: 0; }
.school-chart-live { max-width: 100%; overflow-wrap: anywhere; }
.school-chart-live-dot { flex-shrink: 0; }
@media (max-width: 900px) {
  .tl-school-grid { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 380px) {
  .v1-price-row .price { font-size: 28px; }
}
