:root {
  --ink: #101613;
  --deep: #0c1512;
  --green: #164f40;
  --gold: #e3a51b;
  --mint: #d8f0e7;
  --paper: #f4efe5;
  --panel: #fffdf8;
  --line: #d6cdbf;
  --muted: #5f6b65;
  --white: #fff;
  --shadow: 0 22px 60px rgba(16, 35, 27, .1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.55 Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
}
a { color: inherit; }
.wrap { width: min(1160px, calc(100% - 36px)); margin: auto; }
.top {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(12,21,18,.96);
  color: var(--white);
}
.nav {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  font-weight: 950;
  letter-spacing: .12em;
  text-decoration: none;
}
.brand span { color: var(--gold); }
.nav nav { display: flex; align-items: center; gap: 22px; }
.nav nav a { color: #e8e3da; font-size: 14px; font-weight: 800; text-decoration: none; }
.hero {
  padding: 96px 0 82px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 8%, rgba(227,165,27,.2), transparent 29%),
    linear-gradient(120deg, var(--deep), var(--green));
  color: var(--white);
}
.hero-grid, .split, .offer-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 14px;
  color: #78e3bc;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.02;
}
h1 {
  max-width: 900px;
  margin: 0 0 24px;
  font-size: clamp(52px, 7vw, 90px);
  letter-spacing: -.055em;
}
h1 em, h2 em { color: var(--gold); font-style: normal; }
h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  letter-spacing: -.04em;
}
h3 { margin: 0 0 10px; font-size: 30px; }
.lead { max-width: 790px; color: #dce7e1; font-size: 21px; }
.work-language {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08em;
  font-style: italic;
  font-weight: 700;
  line-height: 1.45;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 9px;
  background: var(--gold);
  color: #171309;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
}
.button.secondary { border-color: rgba(255,255,255,.35); background: transparent; color: white; }
.hero-card, .card, .form, .result, .offer-box {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
  box-shadow: var(--shadow);
}
.hero-card {
  padding: 30px;
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
}
.hero-card h3 { color: var(--white); font-size: 36px; }
.hero-card p, .hero-card li { color: #dce7e1; }
.hero-card ul { padding-left: 20px; }
.hero-card li { margin: 10px 0; }
section { padding: 88px 0; }
.section-head {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 58px;
  align-items: end;
  margin-bottom: 42px;
}
.section-head p { margin: 0; color: #505c56; font-size: 19px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.card { padding: 27px; }
.card .number {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-weight: 900;
}
.card p { color: var(--muted); }
.card strong { color: var(--green); }
.dark { background: var(--ink); color: white; }
.dark .section-head p, .dark .card p { color: #ccd6d0; }
.dark .card strong { color: #78e3bc; }
.dark .card { border-color: rgba(255,255,255,.15); background: rgba(255,255,255,.06); box-shadow: none; }
.loop { display: grid; grid-template-columns: repeat(6, 1fr); gap: 9px; }
.loop .card { padding: 20px 14px; text-align: center; }
.loop .card h3 { font-size: 21px; }
.price {
  margin: 12px 0 20px;
  color: var(--gold);
  font: 900 58px/1 Georgia, serif;
}
.price small { color: #dce7e1; font: 700 15px Inter, system-ui, sans-serif; }
.checklist { list-style: none; padding: 0; }
.checklist li { padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.checklist li::before { content: "+"; margin-right: 10px; color: var(--gold); font-weight: 950; }
.assessment { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form, .result { padding: 34px; }
.result { background: var(--ink); color: white; }
label { display: block; margin: 17px 0 7px; font-weight: 900; }
select, textarea, input {
  width: 100%;
  padding: 14px;
  border: 1px solid #bfb6a8;
  border-radius: 9px;
  background: white;
  font: inherit;
}
textarea { min-height: 104px; resize: vertical; }
.prompt {
  min-height: 260px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  background: #070a09;
  color: #f5eee2;
  font: 13px/1.55 ui-monospace, SFMono-Regular, Consolas, monospace;
  white-space: pre-wrap;
}
.prompt section { white-space: normal; }
.prompt section + section { margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.13); }
.prompt h4 { margin: 0 0 8px; color: var(--gold); font: 800 16px/1.25 Arial, sans-serif; }
.prompt p { margin: 0; color: #f5eee2; }
.prompt ul { margin: 0; padding-left: 20px; }
.prompt li { margin: 7px 0; }
.small { color: var(--muted); font-size: 13px; }
.offer-grid { align-items: stretch; }
.offer-box { padding: 40px; }
.offer-box.green { border-color: var(--green); background: var(--green); color: white; }
.offer-box.green p { color: #d8e7e0; }
.offer-box ul { padding-left: 20px; }
.offer-box li { margin: 10px 0; }
.path { background: var(--mint); }
.path-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.path-step { padding: 24px; border: 1px solid #b8d6ca; border-radius: 15px; background: white; }
.path-step.active { background: var(--green); color: white; }
.path-step b { display: block; color: var(--gold); font-size: 24px; }
.path-step h3 { margin-top: 10px; }
.path-step p { color: var(--muted); font-size: 14px; }
.path-step.active p { color: #d7e5df; }
.truth {
  padding: 36px;
  border-left: 5px solid var(--gold);
  border-radius: 12px;
  background: #171c19;
  color: white;
  font: 28px/1.25 Georgia, serif;
}
.truth strong { color: var(--gold); }
footer { padding: 26px 0; background: #080b0a; color: #9da59f; font-size: 13px; }
.credit-rule { padding: 16px 18px; border-left: 4px solid var(--gold); border-radius: 0 10px 10px 0; background: #fff8dd; color: var(--ink); font-weight: 850; }
.free-golden-band { padding: 38px 0 70px; background: #0e1713; }
.free-golden { margin: 0; overflow: hidden; border: 1px solid rgba(120,227,188,.38); border-radius: 24px; background: #0a100d; box-shadow: 0 30px 80px rgba(0,0,0,.28); }
.free-golden img { display: block; width: 100%; height: auto; aspect-ratio: 1672 / 941; object-fit: cover; }
.free-golden figcaption { padding: 18px 22px 20px; color: #d6e1db; line-height: 1.55; border-top: 1px solid rgba(120,227,188,.18); }
.free-golden figcaption strong { color: var(--gold); }
.install-price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 14px; margin: 12px 0 18px; }
.install-price strong { color: var(--green); font-size: 24px; font-weight: 900; white-space: nowrap; }
.install-price span { color: #cbd7d1; font-size: 15px; font-weight: 750; }
.install-page .offer-box .credit-rule { margin: 0 0 20px; background: #0f1814; color: #f5eee2; font-weight: 700; line-height: 1.65; }
.install-page .offer-box .credit-rule strong { color: var(--gold); }

@media (max-width: 900px) {
  .hero-grid, .split, .offer-grid, .section-head, .assessment { grid-template-columns: 1fr; }
  .cards, .cards.four, .path-grid { grid-template-columns: 1fr 1fr; }
  .loop { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .nav { flex-wrap: wrap; gap: 10px; padding: 12px 0; }
  .nav nav {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px 14px;
  }
  .nav nav a,
  .nav nav a:not(:last-child) {
    display: block;
    font-size: 12px;
    line-height: 1.25;
  }
  .cards, .cards.four, .path-grid, .loop { grid-template-columns: 1fr; }
  .hero { padding-top: 72px; }
  h1 { font-size: 50px; }
}

.workflow-picker { max-width: 780px; margin: 0 auto 24px; padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: var(--panel); box-shadow: var(--shadow); }
.workflow-picker label { margin-top: 0; color: var(--green); font-size: 18px; }
.workflow-stage { padding: 36px; border: 1px solid #b8d6ca; border-radius: 22px; background: #fffdf8; box-shadow: var(--shadow); }
.workflow-title { display: grid; grid-template-columns: .8fr 1.2fr; gap: 36px; align-items: end; margin-bottom: 28px; }
.workflow-title p { margin: 0; color: var(--muted); font-size: 18px; }
.workflow-title .eyebrow { color: var(--green); }
.workflow-chain { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.workflow-step { position: relative; min-height: 235px; padding: 22px; border: 1px solid var(--line); border-radius: 15px; background: var(--paper); }
.workflow-step span { display: grid; width: 34px; height: 34px; margin-bottom: 16px; place-items: center; border-radius: 50%; background: var(--green); color: white; font-weight: 900; }
.workflow-step h4 { margin: 0 0 10px; color: var(--green); font: 700 21px/1.1 Georgia, serif; }
.workflow-step p { margin: 0; color: var(--muted); font-size: 14px; }
.workflow-step b { position: absolute; top: 50%; right: -18px; z-index: 2; display: grid; width: 24px; height: 24px; place-items: center; border-radius: 50%; background: var(--gold); color: var(--ink); }
.workflow-outcomes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
.workflow-outcomes article { padding: 20px; border-radius: 14px; background: var(--green); color: white; }
.workflow-outcomes span { display: block; margin-bottom: 8px; color: #78e3bc; font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.workflow-outcomes strong { display: block; line-height: 1.3; }
.cycle-head { max-width: 860px; margin: 46px auto 20px; text-align: center; }
.cycle-head h3 { font-size: 34px; }
.value-cycle { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr auto 1fr; gap: 8px; align-items: center; padding: 26px; border: 1px solid #b8d6ca; border-radius: 999px; background: var(--mint); }
.value-cycle div { display: flex; min-height: 74px; padding: 10px; align-items: center; justify-content: center; gap: 8px; border-radius: 999px; background: white; text-align: center; }
.value-cycle b { color: var(--gold); font-size: 20px; }
.value-cycle span { color: var(--green); font-size: 13px; font-weight: 900; line-height: 1.2; }
.value-cycle i { color: var(--green); font-size: 24px; font-style: normal; font-weight: 900; }
.value-cycle .cycle-return { background: var(--green); }
.value-cycle .cycle-return span { color: white; }
.cycle-note { max-width: 900px; margin: 18px auto 0; color: var(--muted); text-align: center; }
.workflow-installed { margin-top: 28px; padding: 30px; border-radius: 18px; background: var(--ink); color: white; }
.workflow-installed ul { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; padding: 0; list-style: none; }
.workflow-installed li { padding: 14px; border-left: 3px solid var(--gold); background: rgba(255,255,255,.06); }
@media (max-width: 900px) { .workflow-title, .workflow-outcomes { grid-template-columns: 1fr; } .workflow-chain { grid-template-columns: 1fr 1fr; } .workflow-step b { display: none; } .value-cycle { grid-template-columns: 1fr; border-radius: 24px; } .value-cycle i { transform: rotate(90deg); text-align: center; } .workflow-installed ul { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .workflow-chain, .workflow-installed ul { grid-template-columns: 1fr; } .workflow-stage { padding: 22px; } }



.market-story { padding: 34px; border-left: 4px solid var(--gold); background: rgba(255,255,255,.6); }
.market-story p { margin: 0 0 18px; font-size: 19px; }
.market-story strong { color: var(--green); }
.market-story .shift-callout { margin: 30px 0; font: 900 clamp(42px, 5vw, 66px)/.98 Georgia, serif; letter-spacing: -.045em; }
.market-story .shift-callout em { color: var(--gold); font-style: italic; }

.team-rollout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 36px 56px; margin-top: 28px; padding: 34px; border: 1px solid #b8d6ca; border-radius: 20px; background: white; }
.team-rollout h3 { font-size: 36px; }
.team-rollout p { margin-top: 0; font-size: 18px; }
.team-rollout strong { color: var(--green); }
.team-pricing { grid-column: 1 / -1; display: grid; grid-template-columns: .45fr 1.15fr 1.4fr; gap: 22px; align-items: center; padding: 24px; border-radius: 15px; background: var(--green); color: white; }
.team-pricing span { color: #78e3bc; font-size: 11px; font-weight: 950; letter-spacing: .14em; }
.team-pricing strong { color: white; font-size: 18px; line-height: 1.35; }
.team-pricing p { margin: 0; color: #d8e7e0; font-size: 15px; }
@media (max-width: 900px) { .team-rollout, .team-pricing { grid-template-columns: 1fr; } .team-pricing { grid-column: auto; } }

.vibrant-note {
  color: #78e3bc;
}

/* INSTALL PAGE SHARP BRAND SYSTEM */
.install-page {
  background: var(--deep);
  color: #f5eee2;
}
.install-page main > section:not(.hero) {
  background: var(--deep);
  color: #f5eee2;
  border-top: 1px solid rgba(120, 227, 188, .12);
}
.install-page main > section:nth-of-type(odd):not(.hero) {
  background: #101814;
}
.install-page .section-head p,
.install-page main > section:not(.hero) p,
.install-page main > section:not(.hero) li {
  color: #cbd7d1;
}
.install-page main > section:not(.hero) .eyebrow {
  color: #78e3bc !important;
}
.install-page main > section:not(.hero) h2,
.install-page main > section:not(.hero) h3,
.install-page main > section:not(.hero) h4 {
  color: #f5eee2;
}
.install-page main > section:not(.hero) .card {
  border-color: rgba(120, 227, 188, .2);
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}
.install-page main > section:not(.hero) .card p {
  color: #cbd7d1;
}
.install-page main > section:not(.hero) .card strong {
  color: #78e3bc;
}
.install-page .workflow-builder {
  background: radial-gradient(circle at 92% 6%, rgba(46, 87, 51, .48), transparent 34%), var(--deep) !important;
}
.install-page .workflow-picker,
.install-page .workflow-stage {
  border-color: rgba(120, 227, 188, .24);
  background: #151d19;
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
}
.install-page .workflow-picker label {
  color: #78e3bc;
}
.install-page .workflow-picker select {
  border-color: var(--gold);
  background: #f5eee2;
  color: var(--ink);
}
.install-page .workflow-title p,
.install-page .workflow-step p,
.install-page .cycle-note {
  color: #cbd7d1;
}
.install-page .workflow-step {
  border-color: rgba(120, 227, 188, .18);
  background: #0e1512;
}
.install-page .workflow-step h4 {
  color: #78e3bc;
}
.install-page .value-cycle div {
  border-color: rgba(120, 227, 188, .2);
  background: #0e1512;
}
.install-page .value-cycle span,
.install-page .value-cycle i {
  color: #78e3bc;
}
.install-page .value-cycle .cycle-return {
  background: var(--green);
}
.install-page .market-story {
  border-left-color: var(--gold);
  background: linear-gradient(135deg, rgba(227,165,27,.1), rgba(120,227,188,.035));
  box-shadow: 0 24px 60px rgba(0,0,0,.2);
}
.install-page .market-story strong {
  color: #78e3bc;
}
.install-page .path {
  background: radial-gradient(circle at 10% 20%, rgba(22,79,64,.42), transparent 38%), #0b120f !important;
}
.install-page .offer-box {
  border-color: rgba(120, 227, 188, .25);
  background: #151d19;
  color: #f5eee2;
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
}
.install-page .offer-box p,
.install-page .offer-box li {
  color: #cbd7d1;
}
.install-page .offer-box.green {
  border-color: rgba(120, 227, 188, .38);
  background: linear-gradient(145deg, #164f40, #0f372d);
}
.install-page .team-rollout {
  border-color: rgba(120, 227, 188, .2);
  background: rgba(255,255,255,.035);
}
.install-page #mastermind {
  background: linear-gradient(120deg, #0b120f, #10231c) !important;
}
.install-page #caio {
  background: radial-gradient(circle at 88% 14%, rgba(227,165,27,.11), transparent 30%), #101814 !important;
}
.install-page footer {
  border-top: 1px solid rgba(120, 227, 188, .12);
}
.install-page #capabilities .number {
  width: auto;
  min-width: 46px;
  padding: 0 13px;
  border-radius: 999px;
}

/* ANIMATED VALUE LOOPS */
.install-page .workflow-step b {
  top: 46%;
  right: -29px;
  width: 44px;
  height: 44px;
  border: 3px solid #151d19;
  border-radius: 999px;
  background: var(--gold);
  color: #101613;
  font-size: 24px;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(227,165,27,.28);
  animation: handoff-flow 1.8s ease-in-out infinite;
}
.install-page .workflow-step:nth-child(2) b { animation-delay: .18s; }
.install-page .workflow-step:nth-child(3) b { animation-delay: .36s; }
.install-page .workflow-step:nth-child(4) b { animation-delay: .54s; }
@keyframes handoff-flow {
  0%, 100% { transform: translateX(-4px); box-shadow: 0 8px 18px rgba(227,165,27,.2); }
  50% { transform: translateX(5px); box-shadow: 0 8px 28px rgba(227,165,27,.48); }
}
.install-page .value-cycle {
  position: relative;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 32px;
  margin: 34px 0 74px;
  padding: 28px 28px 42px;
  border: 2px solid rgba(120,227,188,.34);
  border-radius: 28px;
  background: rgba(8,14,11,.7);
}
.install-page .value-cycle div {
  position: relative;
  z-index: 2;
  min-height: 106px;
  flex-direction: column;
  gap: 8px;
  border: 1px solid rgba(120,227,188,.24);
  border-radius: 16px;
}
.install-page .value-cycle > i {
  position: absolute;
  top: 62px;
  z-index: 3;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--gold);
  color: #101613;
  font-size: 23px;
  box-shadow: 0 7px 20px rgba(227,165,27,.28);
  animation: loop-arrow 1.8s ease-in-out infinite;
}
.install-page .value-cycle > i:nth-of-type(1) { left: calc(16.666% - 19px); }
.install-page .value-cycle > i:nth-of-type(2) { left: calc(33.333% - 13px); animation-delay: .18s; }
.install-page .value-cycle > i:nth-of-type(3) { left: calc(50% - 7px); animation-delay: .36s; }
.install-page .value-cycle > i:nth-of-type(4) { left: calc(66.666% - 1px); animation-delay: .54s; }
.install-page .value-cycle > i:nth-of-type(5) { left: calc(83.333% + 5px); animation-delay: .72s; }
.install-page .value-cycle::before {
  content: "CORRECTION RETURNS TO THE NEXT APPROVED RUN";
  position: absolute;
  right: 9%;
  bottom: -48px;
  left: 9%;
  height: 54px;
  padding-top: 26px;
  border-right: 4px solid #78e3bc;
  border-bottom: 4px solid #78e3bc;
  border-left: 4px solid #78e3bc;
  border-radius: 0 0 24px 24px;
  color: #78e3bc;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .13em;
  text-align: center;
}
.install-page .value-cycle::after {
  content: "\21BA";
  position: absolute;
  bottom: -66px;
  left: calc(9% - 19px);
  z-index: 4;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: #78e3bc;
  color: #0c1512;
  font-size: 28px;
  font-weight: 950;
  animation: return-pulse 2.2s ease-in-out infinite;
}
@keyframes loop-arrow {
  0%,100% { transform: translateX(-3px); }
  50% { transform: translateX(5px); }
}
@keyframes return-pulse {
  0%,100% { transform: scale(.94) rotate(-8deg); box-shadow: 0 0 0 0 rgba(120,227,188,.28); }
  50% { transform: scale(1.06) rotate(8deg); box-shadow: 0 0 0 10px rgba(120,227,188,0); }
}
.install-page .caio-loop {
  position: relative;
  gap: 34px;
  padding-bottom: 54px;
}
.install-page .caio-loop .card {
  position: relative;
  z-index: 2;
}
.install-page .caio-loop .card:not(:last-child)::after {
  content: "\2192";
  position: absolute;
  top: 50%;
  right: -39px;
  z-index: 4;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  background: var(--gold);
  color: #101613;
  font-size: 24px;
  font-weight: 950;
  transform: translateY(-50%);
  animation: handoff-flow 1.8s ease-in-out infinite;
}
.install-page .caio-loop::before {
  content: "EXPAND WHAT WORKS. RETURN TO THE NEXT HIGHEST-VALUE PRIORITY.";
  position: absolute;
  right: 8%;
  bottom: 0;
  left: 8%;
  height: 34px;
  border-right: 3px solid #78e3bc;
  border-bottom: 3px solid #78e3bc;
  border-left: 3px solid #78e3bc;
  border-radius: 0 0 20px 20px;
  color: #78e3bc;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .12em;
  text-align: center;
}
@media (max-width: 900px) {
  .install-page .workflow-step b,
  .install-page .caio-loop .card::after { display: none !important; }
  .install-page .value-cycle { grid-template-columns: 1fr; gap: 12px; margin-bottom: 72px; }
  .install-page .value-cycle > i { display: none; }
  .install-page .caio-loop { gap: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .install-page .workflow-step b,
  .install-page .value-cycle > i,
  .install-page .value-cycle::after,
  .install-page .caio-loop .card::after { animation: none !important; }
}
/* LITERAL RACETRACK LOOP */
.install-page .value-cycle {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(130px, auto));
  gap: 82px 96px;
  margin: 38px 0 42px;
  padding: 44px 74px;
  border: 4px solid #78e3bc;
  border-radius: 72px;
  background: #09100d;
  box-shadow: inset 0 0 0 8px rgba(120,227,188,.035), 0 26px 70px rgba(0,0,0,.3);
}
.install-page .value-cycle > i { display: none; }
.install-page .value-cycle > div {
  position: relative;
  z-index: 3;
  min-height: 132px;
  padding: 22px;
  border: 2px solid rgba(120,227,188,.35);
  border-radius: 24px;
  background: #151d19;
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
}
.install-page .value-cycle > div:nth-of-type(1) { grid-column: 1; grid-row: 1; }
.install-page .value-cycle > div:nth-of-type(2) { grid-column: 2; grid-row: 1; }
.install-page .value-cycle > div:nth-of-type(3) { grid-column: 3; grid-row: 1; }
.install-page .value-cycle > div:nth-of-type(4) { grid-column: 3; grid-row: 2; }
.install-page .value-cycle > div:nth-of-type(5) { grid-column: 2; grid-row: 2; }
.install-page .value-cycle > div:nth-of-type(6) { grid-column: 1; grid-row: 2; background: var(--green); }
.install-page .value-cycle > div::after {
  position: absolute;
  z-index: 6;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 4px solid #09100d;
  border-radius: 999px;
  background: var(--gold);
  color: #101613;
  font-size: 34px;
  font-weight: 950;
  box-shadow: 0 10px 30px rgba(227,165,27,.42);
  animation: circuit-pulse 1.9s ease-in-out infinite;
}
.install-page .value-cycle > div:nth-of-type(1)::after,
.install-page .value-cycle > div:nth-of-type(2)::after {
  content: "\2192";
  top: 50%;
  right: -79px;
  transform: translateY(-50%);
}
.install-page .value-cycle > div:nth-of-type(3)::after {
  content: "\2193";
  right: 50%;
  bottom: -72px;
  transform: translateX(50%);
}
.install-page .value-cycle > div:nth-of-type(4)::after,
.install-page .value-cycle > div:nth-of-type(5)::after {
  content: "\2190";
  top: 50%;
  left: -79px;
  transform: translateY(-50%);
}
.install-page .value-cycle > div:nth-of-type(6)::after {
  content: "\21B0";
  top: -74px;
  left: 18px;
  color: #0c1512;
  background: #78e3bc;
  box-shadow: 0 10px 30px rgba(120,227,188,.42);
}
.install-page .value-cycle::before {
  content: "THE RESULT BECOMES EVIDENCE. THE CORRECTION IMPROVES THE NEXT RUN.";
  position: absolute;
  top: 50%;
  right: 18%;
  bottom: auto;
  left: 18%;
  height: auto;
  padding: 9px 18px;
  border: 0;
  border-radius: 999px;
  background: #09100d;
  color: #78e3bc;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .13em;
  text-align: center;
  transform: translateY(-50%);
}
.install-page .value-cycle::after { display: none; }
@keyframes circuit-pulse {
  0%,100% { filter: brightness(.92); }
  50% { filter: brightness(1.2); }
}
@media (max-width: 900px) {
  .install-page .value-cycle {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 64px;
    padding: 36px 28px;
    border-radius: 36px;
  }
  .install-page .value-cycle > div:nth-of-type(n) { grid-column: 1; grid-row: auto; }
  .install-page .value-cycle > div::after { display: grid !important; top: auto !important; right: 50% !important; bottom: -62px !important; left: auto !important; transform: translateX(50%) !important; content: "\2193" !important; }
  .install-page .value-cycle > div:nth-of-type(6)::after { content: "\21BA" !important; }
  .install-page .value-cycle::before { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .install-page .value-cycle > div::after { animation: none; }
}
/* HIGH CONTRAST TEAM AND MASTERMIND */
.install-page .team-rollout {
  border: 2px solid rgba(120,227,188,.42);
  background: linear-gradient(135deg, #101814, #0b120f);
  color: #f5eee2;
  box-shadow: 0 28px 70px rgba(0,0,0,.3);
}
.install-page .team-rollout h3 {
  color: #f5eee2;
}
.install-page .team-rollout p {
  color: #dce7e1 !important;
}
.install-page .team-rollout > div:first-child {
  padding-left: 22px;
  border-left: 5px solid var(--gold);
}
.install-page .team-rollout > div:first-child .eyebrow {
  color: #78e3bc !important;
  text-shadow: 0 0 22px rgba(120,227,188,.2);
}
.install-page .team-rollout strong {
  color: #78e3bc;
}
.install-page .team-pricing {
  border: 1px solid rgba(227,165,27,.55);
  background: linear-gradient(100deg, #164f40, #123b31);
  box-shadow: inset 5px 0 0 var(--gold);
}
.install-page .team-pricing span {
  color: #78e3bc;
}
.install-page .team-pricing strong {
  color: #fff7e8;
}
.install-page .team-pricing p {
  color: #e5efe9 !important;
}
.install-page #mastermind .vibrant-note {
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(120,227,188,.48);
  border-left: 5px solid #78e3bc;
  border-radius: 10px;
  background: rgba(120,227,188,.09);
  color: #78e3bc !important;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.55;
  box-shadow: 0 14px 34px rgba(0,0,0,.2);
}
/* MULTIFAMILY MACHINERY VISUAL */
.install-page .machinery-visual {
  background: radial-gradient(circle at 50% 20%, rgba(22,79,64,.35), transparent 42%), #09100d !important;
}
.install-page .machinery-frame {
  margin: 0;
  overflow: hidden;
  border: 2px solid rgba(120,227,188,.34);
  border-radius: 26px;
  background: #050806;
  box-shadow: 0 34px 90px rgba(0,0,0,.42);
}
.install-page .machinery-frame img {
  display: block;
  width: 100%;
  height: auto;
}
.install-page .machinery-frame figcaption {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  border-top: 1px solid rgba(120,227,188,.28);
  background: rgba(120,227,188,.16);
}
.install-page .machinery-frame figcaption span {
  display: grid;
  min-height: 62px;
  padding: 12px;
  place-items: center;
  background: #101814;
  color: #78e3bc;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .11em;
  text-align: center;
}
@media (max-width: 900px) {
  .install-page .machinery-frame figcaption { grid-template-columns: repeat(2, 1fr); }
}
/* SELECTED WORKFLOW GOLDEN VISUAL */
.workflow-scene {
  margin: 1.35rem 0 1.6rem;
  border: 1px solid rgba(126, 232, 192, .38);
  border-radius: 1.4rem;
  overflow: hidden;
  background: #07120f;
  box-shadow: 0 24px 60px rgba(3, 17, 13, .24);
}
.workflow-scene img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1672 / 941;
  object-fit: cover;
}
.workflow-legend-wrap {
  padding: 1.1rem 1.25rem 1.25rem;
  border-top: 1px solid rgba(126, 232, 192, .38);
  background: #0c1814;
}
.workflow-legend-wrap .eyebrow {
  color: var(--green);
  margin: 0 0 .8rem;
}
.workflow-legend {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.workflow-legend li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .55rem;
  align-items: start;
  color: #f5f1e8;
  font-size: .88rem;
  line-height: 1.35;
}
.workflow-legend b {
  display: grid;
  place-items: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  color: #07120f;
  background: var(--green);
}
.workflow-select select:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}
@media (max-width: 900px) {
  .workflow-legend { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .workflow-scene { border-radius: 1rem; }
  .workflow-legend-wrap { padding: .9rem; }
  .workflow-legend { grid-template-columns: 1fr; }
}

/* 2026-07-31 CONTROLLED MULTIFAMILY RELEASE OVERRIDES */
.install-page header nav { gap: 22px; }
.install-page header nav a { white-space: nowrap; }

/* Static, unmistakable operating feedback loop */
.install-page .value-cycle > div::after {
  animation: none !important;
  font-family: Arial, sans-serif;
  line-height: 1;
}
.install-page .value-cycle > div:nth-of-type(1)::after,
.install-page .value-cycle > div:nth-of-type(2)::after { content: "\2192" !important; }
.install-page .value-cycle > div:nth-of-type(3)::after { content: "\2193" !important; }
.install-page .value-cycle > div:nth-of-type(4)::after,
.install-page .value-cycle > div:nth-of-type(5)::after { content: "\2190" !important; }
.install-page .value-cycle > div:nth-of-type(6)::after { content: "\21BA" !important; }

/* The installation is shown as an operating capability, not five text boxes. */
.install-page .workflow-installed {
  padding: 42px;
  border: 1px solid rgba(120,227,188,.38);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(120,227,188,.12), transparent 44%),
    #0a120f;
  box-shadow: 0 28px 70px rgba(0,0,0,.3);
}
.install-page .workflow-installed h3 {
  max-width: 980px;
  margin: 10px 0 30px;
  color: #fff8ec;
  font-size: clamp(32px, 4vw, 54px);
  line-height: .98;
}
.install-page .installed-run {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  counter-reset: install-step;
}
.install-page .installed-run > div {
  position: relative;
  display: flex;
  min-height: 230px;
  padding: 24px 22px;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(120,227,188,.34);
  border-radius: 20px;
  background: linear-gradient(155deg, #17211c, #101713);
  box-shadow: inset 0 1px rgba(255,255,255,.04);
}
.install-page .installed-run > div::after {
  content: "\2192";
  position: absolute;
  z-index: 4;
  top: 50%;
  right: -28px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  transform: translateY(-50%);
  border: 3px solid #0a120f;
  border-radius: 50%;
  background: var(--gold);
  color: #08100d;
  font: 900 24px/1 Arial, sans-serif;
}
.install-page .installed-run > div:last-child {
  border-color: rgba(120,227,188,.8);
  background: linear-gradient(155deg, #21614f, #174537);
}
.install-page .installed-run > div:last-child::after { display: none; }
.install-page .installed-run span {
  position: absolute;
  top: 18px;
  left: 20px;
  color: var(--gold);
  font-size: 36px;
  font-weight: 950;
}
.install-page .installed-run strong {
  color: #fff8ec;
  font-family: Georgia, serif;
  font-size: 23px;
  line-height: 1.05;
}
.install-page .installed-run small {
  display: block;
  margin-top: 12px;
  color: #cdd9d3;
  font-size: 14px;
  line-height: 1.5;
}

/* Fill the working-session card with the small-team truth. */
.install-page .offer-grid { align-items: stretch; }
.install-page .offer-box.green { display: flex; flex-direction: column; }
.install-page .small-team-inset {
  margin: auto 0 22px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.24);
  border-left: 5px solid var(--gold);
  border-radius: 18px;
  background: rgba(5,16,13,.34);
}
.install-page .small-team-inset .eyebrow { margin: 0 0 8px; color: #78e3bc; }
.install-page .small-team-inset h4 {
  margin: 0 0 10px;
  color: #fff8ec;
  font-family: Georgia, serif;
  font-size: clamp(24px, 2.7vw, 38px);
  line-height: 1.03;
}
.install-page .small-team-inset p:last-child { margin: 0; color: #e6f0eb; }
.install-page .offer-box.green .button.light { align-self: flex-start; }

/* Team implementation now carries the visual hierarchy. */
.install-page .team-rollout {
  display: block;
  margin-top: 34px;
  padding: 0;
  overflow: hidden;
}
.install-page .team-pricing {
  display: grid;
  grid-template-columns: .6fr 1.35fr 1.5fr;
  gap: 34px;
  align-items: center;
  min-height: 250px;
  padding: 42px 46px;
}
.install-page .team-pricing span { font-size: 14px; letter-spacing: .18em; }
.install-page .team-pricing strong {
  font-family: Georgia, serif;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.02;
}
.install-page .team-pricing p { margin: 0; font-size: 18px; line-height: 1.65; }

.install-page .caio-offer-line {
  max-width: 970px;
  margin: 20px auto;
  color: #78e3bc !important;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 1.2;
}

@media (max-width: 1100px) {
  .install-page header nav { gap: 12px; font-size: 13px; }
  .install-page .installed-run { grid-template-columns: 1fr 1fr; }
  .install-page .installed-run > div::after { display: none; }
  .install-page .team-pricing { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .install-page .value-cycle > div::after {
    content: "\2193" !important;
    animation: none !important;
  }
  .install-page .value-cycle > div:nth-of-type(6)::after { content: "\21BA" !important; }
}
@media (max-width: 900px) {
  .install-page .caio-loop { gap: 76px; }
  .install-page .caio-loop .card:not(:last-child)::after {
    display: grid !important;
    top: auto; right: 50%; bottom: -58px; left: auto;
    content: "\2193";
    transform: translateX(50%);
    animation: none !important;
  }
}
@media (max-width: 650px) {
  .install-page .workflow-installed { padding: 28px 20px; }
  .install-page .installed-run { grid-template-columns: 1fr; }
  .install-page .team-pricing { padding: 32px 24px; }
}
/* Release: post-value lead capture */
.lead-capture { padding: 78px 0; background: linear-gradient(135deg, #0b1813, #18372b); color: #f8f4e9; }
.capture-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(340px, 1.08fr); gap: 56px; align-items: start; }
.capture-grid h2 { margin: 8px 0 18px; color: #f8f4e9; }
.capture-grid > div > p:not(.eyebrow) { max-width: 650px; color: #d7dfd8; font-size: 1.14rem; line-height: 1.7; }
.capture-form { display: grid; gap: 10px; padding: 28px; border: 1px solid #3a6757; border-radius: 22px; background: rgba(3, 13, 9, .55); }
.capture-form label { color: #f8f4e9; font-weight: 800; }
.capture-form label span { color: #9fb0a7; font-weight: 500; }
.capture-form input { width: 100%; padding: 15px 16px; border: 1px solid #5d776c; border-radius: 10px; background: #fffdf7; color: #14211b; font: inherit; }
.capture-form .button { margin-top: 10px; }
.hidden-field { position: absolute; left: -9999px; }
@media (max-width: 820px) { .capture-grid { grid-template-columns: 1fr; gap: 28px; } }
