:root {
  --bg: #f6f7f5;
  --ink: #111820;
  --muted: #56616b;
  --panel: #ffffff;
  --line: #dfe4e2;
  --dark: #111820;
  --dark-2: #1c2832;
  --yellow: #f4bd32;
  --red: #cf3f37;
  --green: #2d8f66;
  --blue: #2d6f9f;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 48px);
  color: #fff;
  background: rgba(8, 12, 16, .78);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #101820;
  background: var(--yellow);
  border: 2px solid #fff4bf;
  border-radius: 7px;
  font-size: 13px;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 3vw, 30px);
  color: rgba(255, 255, 255, .78);
  font-size: 15px;
}

.nav-links a:hover {
  color: #fff;
}

.page-body .site-header {
  position: sticky;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #101820;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(4, 8, 12, .94) 0%, rgba(4, 8, 12, .76) 34%, rgba(4, 8, 12, .18) 70%),
    url("/assets/hero-infrastructure.svg");
  background-size: cover;
  background-position: center;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 130px 0 58px;
}

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

.hero .eyebrow,
.page-hero .eyebrow,
.dark-band .eyebrow,
.contact-section .eyebrow,
.consulting-panel .eyebrow {
  color: var(--yellow);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(46px, 7vw, 82px);
  line-height: .98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(31px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.18;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 54px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 7px;
  font-weight: 800;
  line-height: 1.1;
}

.button-primary {
  color: #101820;
  background: var(--yellow);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .24);
}

.button-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .32);
  background: rgba(255, 255, 255, .08);
}

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

.response-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(880px, 100%);
  margin: 0;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .18);
}

.response-strip div {
  padding: 18px;
  background: rgba(10, 16, 21, .78);
}

.response-strip dt {
  margin-bottom: 5px;
  font-weight: 800;
}

.response-strip dd {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.section {
  padding: clamp(64px, 8vw, 108px) 0;
}

.section-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.split > p,
.fit-list {
  color: var(--muted);
  font-size: 19px;
}

.intro-band {
  background: #fff;
}

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

.service-card,
.price-card {
  min-height: 245px;
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

a.service-card {
  display: block;
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

a.service-card:hover {
  transform: translateY(-3px);
  border-color: #c6ced0;
  box-shadow: 0 18px 34px rgba(17, 24, 32, .08);
}

.service-card p,
.price-card p {
  color: var(--muted);
}

.card-icon {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--red);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-weight: 800;
}

.dark-band {
  color: #fff;
  background: var(--dark);
}

.scripts-section {
  color: #fff;
  background: var(--dark);
}

.scripts-heading {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .65fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: end;
  margin-bottom: 34px;
}

.scripts-heading h2 {
  margin-bottom: 0;
}

.scripts-heading > p {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, .72);
  font-size: 18px;
}

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

.script-card {
  display: flex;
  min-width: 0;
  min-height: 400px;
  flex-direction: column;
  padding: 26px;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
}

.script-card p {
  color: rgba(255, 255, 255, .7);
}

.script-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 34px;
  color: var(--yellow);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.script-card pre {
  overflow-x: auto;
  margin: auto 0 22px;
  padding: 16px;
  color: #c8f0d7;
  background: #080d11;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 7px;
  font-size: 12px;
  line-height: 1.55;
}

.script-link {
  display: flex;
  justify-content: space-between;
  padding-top: 17px;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-weight: 800;
}

.script-link:hover {
  color: var(--yellow);
}

.scripts-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 20px 22px;
  color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .06);
  border-radius: 8px;
}

.scripts-footer p {
  margin: 0;
}

.scripts-footer strong {
  color: #fff;
}

.dark-band p {
  color: rgba(255, 255, 255, .76);
}

.audit-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .65fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}

.audit-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audit-list li {
  padding: 17px 18px;
  background: var(--dark-2);
  border-left: 5px solid var(--yellow);
  border-radius: 7px;
}

.pricing-section {
  background: #eef2ef;
}

.consult-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .84), rgba(255, 255, 255, .96)),
    linear-gradient(90deg, rgba(244, 189, 50, .07), rgba(45, 111, 159, .05));
}

.price-card {
  min-height: 220px;
}

.price-card.featured {
  border-color: #c8981e;
  box-shadow: inset 0 0 0 2px var(--yellow);
}

.price {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.consulting-panel {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 24px;
  background: var(--dark);
  color: #fff;
  border-radius: 8px;
}

.consulting-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .78);
}

.consulting-panel h3 {
  margin-bottom: 10px;
}

.proof-band {
  background: #fff;
}

.trust-section {
  background: #eef2ef;
}

.fit-list {
  display: grid;
  gap: 16px;
}

.content-list {
  color: var(--muted);
  font-size: 19px;
}

.content-list p:last-child {
  margin-bottom: 0;
}

.fit-list p {
  margin: 0;
  padding-left: 18px;
  border-left: 5px solid var(--blue);
}

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

.link-grid a {
  display: block;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.link-grid a:hover {
  border-color: var(--yellow);
}

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

.location-card {
  display: block;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.location-card:hover {
  border-color: var(--yellow);
  box-shadow: 0 18px 34px rgba(17, 24, 32, .08);
}

.location-card h3 {
  margin-bottom: 8px;
}

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

.page-hero {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 8, 12, .94) 0%, rgba(4, 8, 12, .78) 48%, rgba(4, 8, 12, .46) 100%),
    url("/assets/hero-infrastructure.svg");
  background-size: cover;
  background-position: center;
  padding: clamp(78px, 10vw, 132px) 0 clamp(54px, 8vw, 90px);
}

.page-hero-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 900px;
}

.page-hero .hero-copy {
  margin-bottom: 0;
}

.breadcrumb {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, .74);
  font-size: 14px;
}

.breadcrumb a {
  color: #fff;
  font-weight: 800;
}

.page-content {
  background: #fff;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
}

.prose {
  max-width: 780px;
}

.prose h2 {
  margin-top: 42px;
  font-size: clamp(28px, 3vw, 38px);
}

.prose h3 {
  margin-top: 28px;
}

.prose p,
.prose li {
  color: var(--muted);
  font-size: 18px;
}

.prose a {
  color: var(--blue);
  font-weight: 800;
}

.prose code {
  padding: 2px 5px;
  color: var(--ink);
  background: #eef2ef;
  border-radius: 5px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .92em;
}

.prose pre {
  overflow-x: auto;
  padding: 18px;
  color: #e7ecea;
  background: #111820;
  border-radius: 8px;
}

.prose pre code {
  padding: 0;
  color: inherit;
  background: transparent;
  border-radius: 0;
}

.checklist {
  display: grid;
  gap: 11px;
  padding: 0;
  list-style: none;
}

.checklist li {
  padding-left: 18px;
  border-left: 5px solid var(--yellow);
}

.sidebar-card {
  padding: 24px;
  background: #eef2ef;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.sidebar-card h2,
.sidebar-card h3 {
  font-size: 24px;
}

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

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

.service-links {
  display: grid;
  gap: 10px;
}

.service-links a {
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-weight: 800;
}

.migration-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
}

.migration-form {
  min-width: 0;
}

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

.migration-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 24px;
  background: #eef2ef;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.migration-form legend {
  padding: 0 8px;
  font-size: 22px;
  font-weight: 900;
}

.migration-form label {
  display: grid;
  gap: 7px;
  margin-top: 16px;
  color: var(--muted);
  font-weight: 800;
}

.migration-form input,
.migration-form select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfd6d4;
  border-radius: 7px;
  font: inherit;
}

.migration-form input:focus,
.migration-form select:focus {
  outline: 3px solid rgba(244, 189, 50, .36);
  border-color: #b78616;
}

.field-row {
  display: grid;
  grid-template-columns: minmax(96px, .5fr) minmax(130px, 1fr);
  gap: 12px;
}

.migration-options {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 22px 0;
}

.migration-options label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
}

.migration-options input {
  width: 18px;
  min-height: 18px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.form-actions p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.form-actions .error-text {
  color: var(--red);
}

.migration-notes li {
  margin-bottom: 10px;
}

.migration-output {
  margin-top: 40px;
  padding: 24px;
  background: #111820;
  border-radius: 8px;
  color: #fff;
}

.output-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
}

.output-header h2 {
  margin-bottom: 0;
}

.status-pill {
  display: inline-flex;
  min-width: 94px;
  justify-content: center;
  padding: 8px 12px;
  color: #101820;
  background: var(--yellow);
  border-radius: 7px;
  font-weight: 900;
}

.status-pill[data-state="complete"] {
  color: #fff;
  background: var(--green);
}

.status-pill[data-state="failed"] {
  color: #fff;
  background: var(--red);
}

.job-id {
  color: rgba(255, 255, 255, .72);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.migration-output pre {
  max-height: 520px;
  overflow: auto;
  margin: 18px 0 0;
  padding: 18px;
  color: #e7ecea;
  background: #070b0e;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 7px;
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 13px;
  line-height: 1.45;
}

.contact-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(17, 24, 32, .96), rgba(32, 48, 57, .92)),
    url("/assets/hero-infrastructure.svg");
  background-size: cover;
  background-position: center;
}

.contact-section p {
  color: rgba(255, 255, 255, .78);
}

.contact-panel {
  padding: 28px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
}

.contact-panel .button {
  width: 100%;
  margin-bottom: 18px;
}

.contact-panel p {
  margin-bottom: 0;
  font-size: 15px;
}

.intake-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.intake-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, .82);
  font-weight: 800;
}

.intake-form input,
.intake-form select,
.intake-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 7px;
  font: inherit;
}

.intake-form textarea {
  min-height: 118px;
  resize: vertical;
}

.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
  outline: 3px solid rgba(244, 189, 50, .36);
  border-color: #b78616;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 48px);
  color: rgba(255, 255, 255, .72);
  background: #080c10;
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 16px;
    max-width: 260px;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg {
    background-image:
      linear-gradient(180deg, rgba(4, 8, 12, .94) 0%, rgba(4, 8, 12, .82) 55%, rgba(4, 8, 12, .5) 100%),
      url("/assets/hero-infrastructure.svg");
    background-position: 64% center;
  }

  .hero-inner {
    padding-top: 150px;
  }

  .response-strip,
  .service-grid,
  .pricing-grid,
  .link-grid,
  .location-grid,
  .migration-columns,
  .split,
  .audit-layout,
  .contact-layout,
  .article-layout,
  .migration-layout {
    grid-template-columns: 1fr;
  }

  .scripts-heading,
  .script-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .site-header {
    display: block;
  }

  .brand {
    margin-bottom: 14px;
  }

  .nav-links {
    justify-content: flex-start;
    max-width: none;
    font-size: 14px;
  }

  .hero-inner {
    width: min(100% - 28px, var(--max));
    padding-top: 176px;
  }

  h1 {
    font-size: 43px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .section-inner {
    width: min(100% - 28px, var(--max));
  }

  .service-card,
  .price-card,
  .migration-form fieldset,
  .migration-output,
  .contact-panel {
    padding: 22px;
  }

  .consulting-panel {
    display: grid;
    align-items: start;
  }

  .scripts-footer {
    display: grid;
    align-items: start;
  }

  .site-footer {
    display: grid;
  }
}
