:root {
  --ink: #101714;
  --muted: #52615a;
  --paper: #f7f5ed;
  --paper-2: #ebe6d8;
  --line: rgba(16, 23, 20, 0.14);
  --green: #1f7a4d;
  --green-dark: #0f3d2b;
  --amber: #c98524;
  --coral: #c6533a;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(16, 23, 20, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 245, 237, 0.92);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 22px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}

.nav-links a {
  text-decoration: none;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.button.accent {
  border-color: var(--green);
  background: var(--green);
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: 78px 0 52px;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 46px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--green);
}

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

h1 {
  max-width: 12ch;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(54px, 7vw, 104px);
}

h2 {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(36px, 4.4vw, 64px);
}

h3 {
  font-size: 24px;
}

.lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(20px, 2vw, 26px);
}

.hero-actions {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 14px;
  margin-top: 34px;
}

.hero-action-card {
  display: grid;
  gap: 8px;
  min-height: 160px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.54);
}

.hero-action-card span,
.hero-action-card small {
  color: var(--muted);
}

.hero-action-card span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-action-card strong {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 28px;
  line-height: 1.05;
}

.hero-action-card small {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.hero-action-card::after {
  content: "Acessar";
  align-self: end;
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
}

.hero-action-card.primary {
  border-color: var(--green);
  background: rgba(31, 122, 77, 0.12);
}

.hero-action-card.primary::after {
  content: "Ver formação";
  background: var(--green);
  color: var(--white);
}

.hero-action-card.waitlist {
  background: transparent;
}

.hero-action-card.waitlist::after {
  content: "Entrar na lista";
  border: 1px solid var(--line);
  color: var(--ink);
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 38px;
}

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

.metric strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.metric span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.visual-panel {
  position: relative;
  min-height: 500px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(31, 122, 77, 0.88), rgba(16, 23, 20, 0.98)),
    radial-gradient(circle at 75% 20%, rgba(201, 133, 36, 0.65), transparent 28%);
  box-shadow: var(--shadow);
}

.map-card {
  position: absolute;
  left: 28px;
  right: 28px;
  top: 28px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.flow {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.flow-step {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(16, 23, 20, 0.1);
  border-radius: 8px;
  background: var(--white);
}

.flow-step b {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--paper-2);
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(31, 122, 77, 0.12);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.visual-note {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 22px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(16, 23, 20, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

section {
  padding: 92px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: end;
  margin-bottom: 36px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 21px;
}

.band {
  background: var(--ink);
  color: var(--white);
}

.soft-band {
  background:
    linear-gradient(180deg, rgba(16, 23, 20, 0.98), rgba(15, 61, 43, 0.94)),
    var(--ink);
}

.band .section-head p,
.band .muted,
.band .card p {
  color: rgba(255, 255, 255, 0.72);
}

.band .eyebrow {
  color: rgba(255, 255, 255, 0.84);
}

.band .eyebrow::before {
  background: var(--amber);
}

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.54);
}

.band .card {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.card p,
.card ul {
  margin: 14px 0 0;
  color: var(--muted);
}

.article-grid {
  align-items: stretch;
}

.article-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  gap: 14px;
  color: var(--ink);
  text-decoration: none;
}

.article-card h3,
.article-card p {
  margin: 0;
}

.article-card p {
  flex: 1;
}

.article-card:hover {
  border-color: rgba(55, 224, 209, 0.42);
  transform: translateY(-2px);
}

.read-more,
.back-link {
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.read-more {
  margin-top: auto;
}

.article-list-hero {
  min-height: 56vh;
}

.article-container {
  max-width: 820px;
}

.article-hero {
  min-height: auto;
  padding: 76px 0 34px;
}

.article-hero h1 {
  max-width: 12ch;
  font-size: clamp(44px, 6vw, 82px);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-meta span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.article-body-section {
  padding-top: 32px;
}

.article-content {
  color: rgba(238, 241, 246, 0.9);
  font-size: 20px;
  line-height: 1.8;
}

.article-content p,
.article-content ul {
  margin: 0 0 24px;
}

.article-content h2 {
  margin: 44px 0 18px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
}

.article-content ul {
  padding-left: 24px;
}

.article-content li {
  margin-bottom: 10px;
}

.article-content .caption,
.article-content .source-line {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.card ul {
  padding-left: 20px;
}

.feature-card,
.deliverable,
.checklist-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-card h3,
.deliverable h3,
.checklist-card h3 {
  margin-top: 2px;
}

.feature-card p,
.deliverable p {
  margin-top: 0;
}

.checklist-card ul {
  display: grid;
  gap: 12px;
  margin-top: 4px;
  padding-left: 22px;
}

.checklist-card li {
  padding-left: 4px;
}

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

.deliverable {
  min-height: 260px;
}

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

.expert-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.expert-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 12;
  object-fit: cover;
  object-position: center top;
}

.expert-content {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.expert-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.expert-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 4px;
}

.expert-stats span {
  min-height: 96px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  background: rgba(255, 255, 255, 0.06);
}

.expert-stats strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.05;
}

.logos-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-top: 28px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.logos-copy h3 {
  max-width: 440px;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.08;
}

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

.logos-grid img {
  width: 100%;
  height: 74px;
  object-fit: contain;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.vsm-logos-panel {
  align-items: center;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

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

.vsm-logos-grid img {
  height: 82px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(11, 28, 18, 0.1);
}

.vsm-logos-grid img.vsm-logo-expanded {
  padding: 7px;
}

.vsm-logos-grid img.vsm-logo-extra-zoom {
  padding: 2px;
}

.vsm-logos-grid img.vsm-logo-max-zoom {
  padding: 0;
}

.product {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 30px 0;
}

.product p {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 780px;
}

.price-box {
  border: 1px solid rgba(31, 122, 77, 0.28);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
}

.price-box .old {
  color: var(--muted);
  text-decoration: line-through;
}

.price-box .new {
  display: block;
  font-size: 54px;
  line-height: 1;
  font-weight: 900;
  color: var(--green-dark);
}

.timeline {
  counter-reset: item;
  display: grid;
  gap: 14px;
}

.timeline-item {
  counter-increment: item;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
}

.timeline-item::before {
  content: counter(item, decimal-leading-zero);
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--green-dark);
  font-weight: 900;
}

.form-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.direct-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

form {
  display: grid;
  gap: 14px;
}

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

input,
textarea,
select {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

select {
  appearance: none;
}

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

.footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-brand,
.footer-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-contact {
  justify-content: flex-end;
}

.footer-contact a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--green);
}

.enterprise-hero h1 {
  max-width: 14ch;
}

.enterprise-panel {
  min-height: 560px;
}

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

.option-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  gap: 14px;
}

.option-card h3,
.option-card p {
  margin: 0;
}

.option-card .read-more {
  margin-top: auto;
}

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

@media (max-width: 900px) {
  .nav {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero-grid,
  .section-head,
  .form-wrap,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 52px;
  }

  .visual-panel {
    min-height: 420px;
  }

  .grid-3,
  .proof-row {
    grid-template-columns: 1fr;
  }

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

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

  .experts-grid,
  .logos-panel {
    grid-template-columns: 1fr;
  }

  .expert-stats {
    grid-template-columns: 1fr;
  }

  .expert-stats span {
    min-height: auto;
  }

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

  .vsm-logos-grid img {
    height: 76px;
    padding: 13px;
  }

  .vsm-logos-grid img.vsm-logo-expanded {
    padding: 6px;
  }

  .vsm-logos-grid img.vsm-logo-extra-zoom {
    padding: 2px;
  }

  .vsm-logos-grid img.vsm-logo-max-zoom {
    padding: 0;
  }

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

  h1 {
    font-size: clamp(48px, 16vw, 68px);
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .container,
  .nav {
    width: min(100% - 24px, 1180px);
  }

  section {
    padding: 64px 0;
  }

  .button {
    width: 100%;
  }

  .map-card,
  .visual-note {
    left: 14px;
    right: 14px;
  }

  .flow-step {
    grid-template-columns: 38px 1fr;
  }

  .flow-step .tag {
    grid-column: 2;
    justify-self: start;
  }

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

  .deliverable {
    min-height: auto;
  }

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

  .footer-contact {
    justify-content: flex-start;
  }
}

/* Visual alinhado à página VSM Agêntico de referência. */
:root {
  --ink: #eef1f6;
  --muted: #a8afc2;
  --paper: #0b0d12;
  --paper-2: #12151d;
  --line: rgba(255, 255, 255, 0.12);
  --green: #37e0d1;
  --green-dark: #1fa89d;
  --amber: #9b8cf2;
  --coral: #ffb547;
  --white: #ffffff;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

html,
body {
  background:
    linear-gradient(180deg, rgba(55, 224, 209, 0.04), transparent 26rem),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.014) 0 1px, transparent 1px 96px),
    var(--paper);
  color: var(--ink);
}

::selection {
  background: var(--green);
  color: #04110f;
}

.site-header {
  border-bottom-color: var(--line);
  background: rgba(11, 13, 18, 0.9);
}

.brand {
  color: var(--ink);
  font-family: "Space Grotesk", Inter, sans-serif;
}

.brand-mark {
  width: 44px;
  height: 44px;
  padding: 4px;
  border: 1px solid rgba(55, 224, 209, 0.34);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 4px rgba(55, 224, 209, 0.04);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 6px;
}

.nav-links {
  color: var(--muted);
}

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

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  background:
    linear-gradient(135deg, rgba(55, 224, 209, 0.08), transparent 36%),
    linear-gradient(315deg, rgba(155, 140, 242, 0.1), transparent 38%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(55, 224, 209, 0.14), transparent 22%, transparent 78%, rgba(155, 140, 242, 0.12)),
    linear-gradient(180deg, transparent 0, rgba(255, 255, 255, 0.035) 48%, transparent 49%);
  opacity: 0.42;
}

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

h1,
h2,
h3 {
  color: var(--ink);
}

h1 {
  max-width: 13ch;
}

.lead,
.section-head p,
.metric span,
.product p,
.card p,
.card ul,
.muted,
label,
.footer {
  color: var(--muted);
}

.eyebrow {
  color: var(--green);
  font-family: "Inter", Arial, sans-serif;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  background: linear-gradient(90deg, var(--green), var(--amber));
}

.button {
  border-color: var(--green);
  background: var(--green);
  color: #04110f;
  box-shadow: 0 16px 38px rgba(55, 224, 209, 0.18);
}

.button:hover {
  transform: translateY(-2px);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.button.secondary:hover {
  border-color: var(--green);
  color: var(--green);
}

.button.accent {
  border-color: var(--green);
  background: var(--green);
  color: #04110f;
}

.hero-action-card {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(18, 21, 29, 0.78);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.hero-action-card:hover {
  transform: translateY(-2px);
}

.hero-action-card span,
.hero-action-card small {
  color: var(--muted);
}

.hero-action-card.primary {
  border-color: rgba(55, 224, 209, 0.52);
  background:
    linear-gradient(135deg, rgba(55, 224, 209, 0.2), rgba(18, 21, 29, 0.84)),
    rgba(18, 21, 29, 0.88);
}

.hero-action-card.primary span,
.hero-action-card.primary strong {
  color: var(--green);
}

.hero-action-card.primary::after {
  background: var(--green);
  color: #04110f;
}

.hero-action-card.waitlist {
  border-color: rgba(155, 140, 242, 0.34);
  background: rgba(11, 13, 18, 0.48);
}

.hero-action-card.waitlist span {
  color: var(--amber);
}

.hero-action-card.waitlist::after {
  border-color: rgba(155, 140, 242, 0.42);
  color: var(--ink);
}

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

.metric strong {
  color: var(--green);
  font-family: "Space Grotesk", Inter, sans-serif;
}

.visual-panel {
  border-color: rgba(55, 224, 209, 0.24);
  background:
    linear-gradient(145deg, rgba(18, 21, 29, 0.98), rgba(22, 26, 36, 0.94)),
    repeating-linear-gradient(135deg, rgba(55, 224, 209, 0.09) 0 1px, transparent 1px 18px);
  display: grid;
  gap: 14px;
  padding: 28px;
}

.visual-panel .map-card,
.visual-panel .visual-note {
  position: relative;
  inset: auto;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
}

.map-card,
.card,
.timeline-item,
.price-box {
  border-color: var(--line);
  background: rgba(22, 26, 36, 0.86);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
}

.flow-step {
  border-color: var(--line);
  background: rgba(11, 13, 18, 0.72);
}

.flow-step b,
.timeline-item::before {
  background: linear-gradient(135deg, var(--green), var(--amber));
  color: #04110f;
}

.tag {
  background: rgba(55, 224, 209, 0.1);
  color: var(--green);
  border: 1px solid rgba(55, 224, 209, 0.2);
}

.visual-note {
  background: rgba(11, 13, 18, 0.86);
  border-color: rgba(55, 224, 209, 0.2);
}

.band {
  background:
    linear-gradient(135deg, rgba(55, 224, 209, 0.07), transparent 42%),
    #12151d;
  color: var(--ink);
}

.band .card,
.band .product {
  border-color: var(--line);
}

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

.product > div {
  display: grid;
  gap: 14px;
}

.product p {
  margin-top: 0;
}

.price-box {
  position: relative;
  overflow: hidden;
}

.price-box::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--amber));
}

.price-box .new {
  color: var(--green);
  font-family: "Space Grotesk", Inter, sans-serif;
}

.price-box .old {
  color: var(--muted);
}

input,
textarea,
select {
  border-color: var(--line);
  background: rgba(11, 13, 18, 0.78);
  color: var(--ink);
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.form-status {
  color: var(--green);
}

.footer {
  border-top-color: var(--line);
  background: #0b0d12;
}

@media (max-width: 900px) {
  .site-header {
    position: static;
  }

  .nav {
    min-height: 68px;
    padding: 12px 0;
    align-items: center;
  }

  .brand {
    font-size: 20px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .hero {
    min-height: auto;
    padding: 34px 0 52px;
  }

  .hero-grid {
    gap: 30px;
  }

  .lead {
    font-size: 19px;
  }

  .proof-row {
    gap: 14px;
    margin-top: 30px;
  }

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

  .enterprise-options {
    grid-template-columns: 1fr;
  }

  .option-card {
    min-height: auto;
  }

  .visual-panel {
    min-height: auto;
    padding: 18px;
  }

  .map-card,
  .visual-note {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .map-card {
    padding: 18px;
  }

  .visual-note {
    margin-top: 14px;
    padding: 18px;
  }
}

@media (max-width: 560px) {
  body {
    overflow-x: hidden;
  }

  .container,
  .nav {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding: 28px 0 44px;
  }

  h1 {
    max-width: 11ch;
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .lead {
    margin-top: 18px;
    font-size: 18px;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero-action-card {
    min-height: auto;
    padding: 18px;
  }

  .hero-action-card strong {
    font-size: 24px;
  }

  .product {
    gap: 22px;
    padding: 34px 0;
  }

  .product > div {
    gap: 16px;
  }

  .metric strong {
    font-size: 42px;
  }

  .visual-panel {
    padding: 14px;
  }

  .map-card {
    padding: 14px;
  }

  .flow-step {
    grid-template-columns: 46px 1fr;
    padding: 14px;
  }

  .flow-step b {
    width: 46px;
    height: 46px;
  }

  .flow-step span {
    min-width: 0;
    font-size: 17px;
    line-height: 1.25;
  }

  .flow-step .tag {
    grid-column: 2;
    justify-self: start;
  }

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

  .deliverable {
    min-height: auto;
  }

  .visual-note {
    padding: 18px;
    font-size: 17px;
  }
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav {
    position: relative;
    flex-wrap: wrap;
  }

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

  .nav-links {
    display: none;
    width: 100%;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px 0 2px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    white-space: normal;
  }
}
