
:root {
  --ink: #101816;
  --muted: #52615d;
  --line: #dbe8e4;
  --soft: #f4faf8;
  --soft2: #edf5f7;
  --deep: #0b211d;
  --deep2: #123b33;
  --teal: #0f766e;
  --green: #178f7f;
  --gold: #bd7a14;
  --gold2: #f2ac2d;
  --blue: #275e92;
  --white: #fff;
  --shadow: 0 18px 50px rgba(16, 24, 22, .11);
  --hero: url('hero-command-center.png');
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; max-width: 100%; overflow-x: hidden; }
body {
  background: #fff;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
a { color: var(--teal); }
img { max-width: 100%; display: block; }
.wrap { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.topbar {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
  min-width: 190px;
}
.mark {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #0b211d, #178f7f 60%, #bd7a14);
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 10px 28px rgba(15,118,110,.25);
  font-weight: 900;
  letter-spacing: .02em;
}
.brand strong { display: block; font-size: 18px; line-height: 1.1; }
.brand span span { color: var(--muted); display: block; font-size: 12px; }
.navlinks { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
.navlinks a {
  color: #172522;
  font-weight: 900;
  font-size: 13px;
  text-decoration: none;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
}
.navlinks .pill {
  color: #fff;
  background: var(--teal);
  padding: 8px 11px;
  border-radius: 7px;
}
.hero {
  min-height: 660px;
  color: #fff;
  display: grid;
  align-items: end;
  position: relative;
  background-image:
    linear-gradient(90deg, rgba(8, 23, 20, .98), rgba(8, 23, 20, .84) 38%, rgba(8, 23, 20, .22) 65%, rgba(8, 23, 20, .04)),
    var(--hero);
  background-size: cover;
  background-position: center bottom;
}
.hero-inner { padding: 72px 0 54px; }
.eyebrow, .kicker {
  color: #8ee7d7;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
h1, h2, h3 { line-height: 1.12; margin: 0 0 12px; letter-spacing: 0; overflow-wrap: break-word; }
h1 { font-size: clamp(42px, 6vw, 76px); max-width: 920px; }
h2 { font-size: clamp(28px, 3.5vw, 45px); max-width: 900px; }
h3 { font-size: 20px; }
p { color: var(--muted); margin: 0 0 16px; }
.hero p { color: #e4f2ee; font-size: 19px; max-width: 760px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.btn {
  border: 1px solid var(--teal);
  background: var(--teal);
  color: #fff;
  min-height: 46px;
  padding: 11px 15px;
  border-radius: 7px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.btn.alt { background: #fff; color: var(--teal); border-color: rgba(255,255,255,.7); }
.btn.gold { background: var(--gold); border-color: var(--gold); }
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.16);
  margin-top: 34px;
  max-width: 980px;
}
.hero-metrics div { padding: 18px 18px 0 0; }
.hero-metrics strong { display: block; font-size: 24px; }
.hero-metrics span { color: #b9d5cf; font-size: 13px; display: block; }
section { padding: 58px 0; scroll-margin-top: 94px; }
.section-head { display: flex; justify-content: space-between; gap: 22px; align-items: end; margin-bottom: 24px; }
.section-head p { max-width: 520px; }
.grid-8, .grid-4, .grid-3, .grid-2 { display: grid; gap: 14px; }
.grid-8 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card, .package, .panel, .addon-box, .faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.service-card {
  min-height: 280px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.service-card:before {
  content: "";
  height: 5px;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}
.icon-tile {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--deep2), var(--teal));
  margin-bottom: 16px;
  box-shadow: 0 14px 26px rgba(15,118,110,.25);
}
.service-card p { font-size: 14px; flex: 1; }
.price-line { color: var(--gold); font-weight: 900; margin-top: 8px; }
.band { background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.dark-band { background: var(--deep); color: #fff; }
.dark-band p { color: #d5e7e2; }
.dark-band .package, .dark-band .panel { color: var(--ink); box-shadow: none; }
.pricing-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.price-box {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  padding: 16px;
}
.price-box small { color: #a9d7cf; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.price-box strong { display: block; color: #fff; font-size: 24px; line-height: 1.1; margin-top: 6px; }
.price-box span { color: #cfe3df; display: block; font-size: 13px; margin-top: 5px; }
.cost-notes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
  margin-top: 14px;
  max-width: 1060px;
}
.cost-note {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.46);
  border-radius: 8px;
  color: var(--ink);
  padding: 15px;
  box-shadow: 0 16px 34px rgba(0,0,0,.12);
}
.cost-note small {
  color: var(--teal);
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cost-note strong { display: block; font-size: 22px; line-height: 1.1; margin: 7px 0; }
.cost-note span { color: var(--muted); display: block; font-size: 13px; }
.package { padding: 22px; position: relative; overflow: hidden; }
.package.featured { border-color: rgba(189,122,20,.6); }
.package.featured:before {
  content: "Best Value";
  position: absolute;
  top: 12px;
  right: 12px;
  background: #fff3d8;
  color: #7a4b07;
  border: 1px solid #f2d291;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  padding: 5px 8px;
}
.package .price { color: var(--teal); font-size: 30px; font-weight: 900; margin: 8px 0 4px; }
.package .compare { color: var(--gold); font-weight: 900; font-size: 13px; }
.package ul, .panel ul { margin: 14px 0 0; padding-left: 18px; }
.package li, .panel li { margin: 7px 0; color: var(--muted); }
.visual-panel {
  min-height: 420px;
  border-radius: 8px;
  overflow: hidden;
  background-image: linear-gradient(180deg, rgba(8,23,20,.1), rgba(8,23,20,.88)), var(--hero);
  background-size: cover;
  background-position: center;
  display: grid;
  align-items: end;
  padding: 24px;
  color: #fff;
}
.visual-panel p { color: #d9eee8; }
.signal-stack { display: grid; gap: 10px; margin-top: 18px; }
.signal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  border-radius: 8px;
}
.signal span { color: #e5f4f0; font-size: 13px; }
.signal b { color: #99f2e3; }
.addon-box { padding: 20px; }
.addon-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 14px; }
.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  min-height: 76px;
  background: #fbfdfc;
}
.check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--teal); flex: 0 0 auto; }
.check strong { display: block; font-size: 14px; line-height: 1.25; }
.check span { color: var(--muted); display: block; font-size: 12px; margin-top: 3px; }
.estimate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--deep);
  color: #fff;
  padding: 16px;
  border-radius: 8px;
  margin-top: 16px;
}
.estimate span { color: #b9d5cf; display: block; font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.estimate strong { display: block; font-size: 28px; }
.steps { counter-reset: step; }
.step { padding: 20px; min-height: 190px; }
.step:before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  color: var(--teal);
  font-weight: 900;
  display: block;
  margin-bottom: 10px;
}
.workflow-card {
  border-left: 5px solid var(--teal);
  min-height: 170px;
}
.faq details { padding: 16px; box-shadow: none; margin: 10px 0; }
.faq summary { cursor: pointer; font-weight: 900; }
.faq p { margin-top: 10px; }
.source-list { columns: 2; column-gap: 30px; }
.source-list li { break-inside: avoid; margin: 8px 0; }
.entry-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff3d8;
  border: 1px solid #f2d291;
  color: #744805;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  padding: 8px 11px;
  text-transform: uppercase;
}
.entry-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
  padding: 18px;
  position: relative;
}
.entry-card h3 { color: var(--ink); }
.entry-card:before {
  content: "$99";
  display: inline-grid;
  place-items: center;
  min-width: 54px;
  height: 34px;
  background: var(--deep);
  color: #fff;
  border-radius: 7px;
  font-weight: 900;
  margin-bottom: 12px;
}
.entry-card p { color: var(--muted); font-size: 14px; }
.entry-card .deliverable {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 7px;
  color: #40514d;
  font-size: 13px;
  margin-top: 12px;
  padding: 10px;
}
.budget-builder {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.budget-top {
  background:
    radial-gradient(circle at 12% 18%, rgba(242,172,45,.16), transparent 30%),
    linear-gradient(135deg, #08211d, #123b33);
  color: #fff;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) 270px;
  padding: 26px;
}
.budget-top p { color: #d8eee9; margin-bottom: 0; max-width: 760px; }
.budget-label {
  color: #a9d7cf;
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.budget-value {
  color: #fff;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 10px;
}
.budget-type {
  color: #d8eee9;
  font-size: 15px;
  font-weight: 700;
}
.budget-tier-card {
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  color: #fff;
  display: grid;
  align-content: center;
  gap: 6px;
  min-height: 112px;
  padding: 16px;
}
.budget-tier-card span {
  color: #a9d7cf;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.budget-tier-card strong {
  color: #fff;
  font-size: 22px;
  line-height: 1.15;
}
.budget-control {
  background: #f8fcfb;
  border-bottom: 1px solid var(--line);
  padding: 22px 26px 24px;
}
.budget-control .budget-label {
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.budget-control .budget-label:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold2);
  box-shadow: 0 0 0 5px rgba(242,172,45,.18);
}
.budget-control input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(90deg, var(--gold2) var(--budget-progress, 0%), #dbe8e4 var(--budget-progress, 0%));
  border-radius: 999px;
  cursor: pointer;
  height: 18px;
  margin: 10px 0 8px;
  width: 100%;
}
.budget-control input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  background: #fff;
  border: 7px solid var(--gold2);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,.28), 0 0 0 5px rgba(242,172,45,.18);
  height: 42px;
  width: 42px;
}
.budget-control input[type="range"]::-moz-range-thumb {
  background: #fff;
  border: 7px solid var(--gold2);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,.28), 0 0 0 5px rgba(242,172,45,.18);
  height: 28px;
  width: 28px;
}
.budget-scale {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}
.budget-scale span {
  color: #52615d;
  font-size: 12px;
  font-weight: 900;
}
.budget-ladder {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 18px;
}
.budget-ladder button {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: #40514d;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  font-family: inherit;
  min-height: 52px;
  padding: 9px 8px;
  text-align: center;
}
.budget-ladder button:hover,
.budget-ladder button:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15,118,110,.12);
  outline: 0;
}
.budget-ladder strong {
  color: var(--ink);
  display: block;
  font-size: 12px;
}
.budget-results {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 24px 26px 0;
}
.budget-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}
.budget-pill {
  background: #fff3d8;
  border: 1px solid #f2d291;
  border-radius: 999px;
  color: #744805;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  margin-bottom: 14px;
  padding: 7px 10px;
  text-transform: uppercase;
}
.budget-card h3 {
  font-size: clamp(25px, 3vw, 36px);
  max-width: 620px;
}
.budget-card p {
  color: #40514d;
  font-size: 16px;
}
.budget-card.primary {
  background: var(--soft);
  border-left: 5px solid var(--teal);
}
.budget-card.warning {
  background: #fff8ec;
  border-color: #f2d291;
}
.budget-focus-label {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  margin-top: 8px;
  text-transform: uppercase;
}
.budget-services {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 12px 0 18px;
  padding: 0;
}
.budget-services li {
  background: linear-gradient(135deg, #0f766e, #123b33);
  border: 1px solid rgba(15,118,110,.35);
  border-left: 4px solid var(--gold2);
  border-radius: 7px;
  color: #fff;
  display: grid;
  gap: 2px;
  list-style: none;
  min-height: 58px;
  padding: 10px 11px;
}
.budget-services strong {
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
}
.budget-services span {
  color: #cfe3df;
  font-size: 11px;
  line-height: 1.25;
}
.budget-list {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
}
.budget-list li {
  background: var(--soft);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: 7px;
  color: var(--muted);
  list-style: none;
  padding: 11px 12px;
}
.budget-actions {
  border-top: 1px solid var(--line);
  margin: 24px 26px 0;
  padding: 18px 0 24px;
}
.budget-builder .btn.alt {
  background: var(--soft);
  border-color: var(--line);
}
.intake-form {
  display: grid;
  gap: 12px;
}
.field-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.field {
  display: grid;
  gap: 6px;
}
.field label {
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.field input,
.field select,
.field textarea {
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  font: inherit;
  min-height: 44px;
  padding: 10px 12px;
  width: 100%;
}
.field textarea {
  min-height: 96px;
  resize: vertical;
}
.intake-output {
  background: var(--deep);
  border-radius: 8px;
  color: #fff;
  display: none;
  margin-top: 14px;
  padding: 16px;
  white-space: pre-wrap;
}
.intake-output.active { display: block; }
.sticky-cta {
  position: sticky;
  bottom: 0;
  z-index: 20;
  background: rgba(255,255,255,.96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
  padding: 10px 0;
}
.sticky-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.sticky-inner p { margin: 0; font-size: 14px; }
footer { background: #0c1715; color: #dbe8e4; padding: 42px 0; }
footer p, footer li { color: #b9c9c5; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 28px; }
.footer-grid ul { margin: 0; padding-left: 18px; }
.small { font-size: 12px; color: #6a7c77; }
@media (max-width: 980px) {
  .grid-8, .grid-4, .grid-3, .grid-2, .pricing-strip, .hero-metrics, .footer-grid { grid-template-columns: 1fr 1fr; }
  .budget-top, .budget-results { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .intro-split { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .wrap { width: 350px; max-width: calc(100vw - 40px); margin-left: 20px; margin-right: 20px; }
  .nav { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .navlinks { display: grid; grid-template-columns: 1fr 1fr; width: 100%; gap: 8px; justify-content: start; }
  .navlinks a { min-height: 30px; }
  h1 { font-size: 32px; line-height: 1.12; }
  h2 { font-size: 24px; }
  .hero { min-height: 720px; background-position: 58% center; }
  .hero-inner { padding: 46px 0 36px; }
  .hero p { font-size: 17px; }
  .actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .grid-8, .grid-4, .grid-3, .grid-2, .pricing-strip, .hero-metrics, .addon-list, .footer-grid, .field-grid { grid-template-columns: 1fr; }
  .budget-top, .budget-control, .budget-results { padding-left: 18px; padding-right: 18px; }
  .budget-ladder { grid-template-columns: 1fr; }
  .budget-services { grid-template-columns: 1fr; }
  .hero-metrics { border-top: 0; }
  .hero-metrics div { border-top: 1px solid rgba(255,255,255,.16); padding-top: 14px; }
  .sticky-inner { align-items: stretch; flex-direction: column; }
  .source-list { columns: 1; }
  .estimate { align-items: flex-start; flex-direction: column; }
}
