:root {
  --background: #f8f9ff;
  --surface: #ffffff;
  --surface-low: #eef4ff;
  --surface-mid: #dbe9ff;
  --surface-high: #d1e4ff;
  --primary: #002c4e;
  --primary-deep: #001d36;
  --primary-soft: #1b4268;
  --secondary: #47607d;
  --secondary-soft: #afc9ea;
  --teal: #7af7e1;
  --teal-deep: #38bfab;
  --teal-ink: #00312a;
  --text: #001d36;
  --muted: #48617e;
  --outline: #c3c6cf;
  --outline-strong: #73777f;
  --white: #ffffff;
  --shadow-soft: 0 24px 60px rgba(0, 29, 54, 0.12);
  --container: min(1180px, calc(100vw - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: var(--background);
  color: var(--text);
}

.version-home {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 18%, rgba(122, 247, 225, 0.18), transparent 28%),
    linear-gradient(135deg, var(--primary-deep), var(--primary) 58%, #123f63);
  color: var(--white);
}

.version-home-main {
  display: grid;
  min-height: 100vh;
  align-items: center;
  padding: 48px 20px;
}

.version-home-panel {
  width: min(860px, 100%);
  margin: 0 auto;
}

.version-home-brand {
  margin-bottom: 58px;
}

.version-home h1 {
  max-width: 10ch;
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
}

.version-home-panel > p:not(.eyebrow) {
  max-width: 40rem;
  margin: 24px 0 0;
  color: rgba(209, 228, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.8;
}

.version-button-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.version-button {
  display: grid;
  min-height: 144px;
  align-content: space-between;
  padding: 24px;
  border: 1px solid rgba(122, 247, 225, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.version-button:hover,
.version-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(122, 247, 225, 0.68);
  background: rgba(122, 247, 225, 0.12);
}

.version-button span {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.version-button strong {
  color: var(--teal);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.version-button-current {
  border-color: rgba(122, 247, 225, 0.68);
  background: rgba(122, 247, 225, 0.16);
}

:focus-visible {
  outline: 3px solid rgba(122, 247, 225, 0.55);
  outline-offset: 3px;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.site-shell {
  min-height: 100vh;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -64px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--primary-deep);
  color: var(--white);
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 16px;
}

.variant-badge {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 9999;
  max-width: min(220px, calc(100vw - 20px));
  padding: 6px 10px;
  overflow: hidden;
  border-radius: 6px;
  background: #000000;
  color: #ffffff;
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(248, 249, 255, 0.72);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.topbar.is-scrolled {
  background: rgba(248, 249, 255, 0.94);
  box-shadow: 0 10px 30px rgba(0, 29, 54, 0.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

.brand {
  width: 132px;
  flex-shrink: 0;
}

.brand-word {
  fill: var(--primary);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.brand-word-light {
  fill: var(--white);
}

.brand-accent {
  fill: var(--teal);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--teal-deep);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(0, 29, 54, 0.12);
  background: rgba(255, 255, 255, 0.8);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--primary);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--teal);
  color: var(--teal-ink);
}

.button-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

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

.button-outline {
  border-color: rgba(0, 29, 54, 0.18);
  color: var(--primary);
  background: transparent;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at center, rgba(27, 66, 104, 0.9) 0%, rgba(0, 44, 78, 1) 72%),
    var(--primary);
}

.hero-noise {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.45;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.92fr);
  gap: 64px;
  align-items: center;
  padding: 132px 0 96px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--teal);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

.hero-copy h1,
.section-heading h2,
.detail-copy h2,
.proof-card h2,
.contact-panel h2 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.hero-copy h1 {
  max-width: 8ch;
  font-size: clamp(3rem, 7vw, 6rem);
  text-transform: uppercase;
}

.hero-text,
.section-heading p,
.detail-copy > p,
.proof-card p,
.contact-panel > p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-text {
  max-width: 34rem;
  color: rgba(209, 228, 255, 0.8);
  font-weight: 300;
}

.section-heading p,
.detail-copy > p,
.proof-card p {
  color: var(--muted);
  font-weight: 300;
}

.contact-panel > p {
  color: rgba(209, 228, 255, 0.82);
  font-weight: 300;
}

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

.hero-notes {
  display: grid;
  gap: 14px;
  margin-top: 40px;
}

.hero-notes div {
  padding-left: 18px;
  border-left: 1px solid rgba(122, 247, 225, 0.3);
}

.hero-notes span,
.service-index,
.timeline-meta span,
.proof-metrics span,
.contact-meta span,
.footer h3,
.dashboard-header span,
.blueprint-card span {
  display: block;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-notes span {
  color: rgba(209, 228, 255, 0.66);
}

.hero-notes strong {
  display: block;
  margin-top: 8px;
  line-height: 1.6;
}

.hero-frame {
  position: relative;
  padding: 24px;
  background: rgba(27, 66, 104, 0.4);
}

.hero-frame-corner {
  position: absolute;
  width: 52px;
  height: 52px;
  border-color: var(--teal);
  border-style: solid;
}

.hero-frame-corner-top {
  top: -8px;
  left: -8px;
  border-width: 2px 0 0 2px;
}

.hero-frame-corner-bottom {
  right: -8px;
  bottom: -8px;
  border-width: 0 2px 2px 0;
}

.hero-blueprint {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(209, 228, 255, 0.08), transparent 55%),
    linear-gradient(180deg, rgba(0, 29, 54, 0.2), rgba(0, 29, 54, 0.52));
}

.blueprint-orbit,
.blueprint-line {
  position: absolute;
  border: 1px solid rgba(122, 247, 225, 0.16);
}

.blueprint-orbit {
  border-radius: 50%;
}

.blueprint-orbit-a {
  inset: 14% 18% auto auto;
  width: 180px;
  height: 180px;
}

.blueprint-orbit-b {
  left: 10%;
  bottom: 8%;
  width: 220px;
  height: 220px;
}

.blueprint-line-a {
  top: 18%;
  left: 12%;
  width: 52%;
}

.blueprint-line-b {
  right: 8%;
  bottom: 24%;
  width: 36%;
}

.blueprint-card {
  position: absolute;
  max-width: 280px;
  padding: 22px;
  background: rgba(0, 29, 54, 0.54);
  border: 1px solid rgba(122, 247, 225, 0.14);
  backdrop-filter: blur(6px);
}

.blueprint-card-main {
  left: 7%;
  bottom: 9%;
}

.blueprint-card-side {
  top: 12%;
  right: 7%;
}

.blueprint-card span {
  color: rgba(209, 228, 255, 0.7);
}

.blueprint-card strong {
  display: block;
  margin-top: 10px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.blueprint-card p {
  margin: 10px 0 0;
  color: rgba(209, 228, 255, 0.78);
  line-height: 1.7;
  font-weight: 300;
}

.section {
  padding: 120px 0;
}

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

.section-heading h2,
.detail-copy h2,
.proof-card h2,
.contact-panel h2 {
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  color: var(--primary);
}

.services-section {
  background: var(--background);
}

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

.service-card {
  padding: 34px 28px;
  background: var(--surface);
  border-top: 3px solid var(--primary);
  box-shadow: var(--shadow-soft);
}

.service-card-featured {
  background: var(--surface-low);
}

.service-index {
  margin-bottom: 20px;
  color: var(--secondary);
}

.service-card h3,
.timeline-copy h3,
.detail-points h3 {
  margin: 0 0 12px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.34rem;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--primary);
}

.service-card p,
.service-card li,
.timeline-copy p,
.timeline-meta strong,
.detail-points p,
.proof-metrics p,
.contact-meta strong,
.footer p,
.footer a {
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

.service-card ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.service-card li {
  position: relative;
  padding-left: 16px;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  background: var(--teal-deep);
}

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

.workflow-heading {
  margin-bottom: 48px;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0 28px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(195, 198, 207, 0.42);
}

.timeline-step {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
}

.timeline-marker {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border: 1px solid rgba(122, 247, 225, 0.3);
  color: var(--teal);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
}

.timeline-marker-active {
  background: rgba(0, 73, 64, 0.86);
}

.timeline-copy {
  padding-right: 12px;
}

.timeline-accent {
  width: 32px;
  height: 3px;
  margin-bottom: 16px;
  background: var(--teal);
}

.timeline-meta {
  padding: 18px 16px;
  background: var(--surface-low);
}

.timeline-meta-active {
  background: rgba(0, 73, 64, 0.12);
}

.timeline-meta span {
  color: var(--secondary);
}

.timeline-meta strong {
  display: block;
  margin-top: 8px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.detail-section {
  background: var(--surface-low);
  overflow: hidden;
}

.detail-grid,
.proof-layout,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 56px;
  align-items: center;
}

.detail-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 24px;
  margin-top: 40px;
}

.detail-points article {
  position: relative;
  padding-top: 14px;
}

.detail-points article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 3px;
  background: var(--teal-deep);
}

.detail-visual {
  position: relative;
}

.dashboard-frame {
  position: relative;
  padding: 16px;
  background: var(--white);
  box-shadow: 0 32px 60px rgba(0, 29, 54, 0.18);
}

.dashboard-frame::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 180px;
  height: 180px;
  background: rgba(122, 247, 225, 0.14);
  z-index: -1;
}

.dashboard-shell {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(0, 44, 78, 0.04), rgba(0, 44, 78, 0.08)),
    var(--surface);
}

.dashboard-header,
.dashboard-body {
  display: grid;
  gap: 16px;
}

.dashboard-header {
  grid-template-columns: 1fr auto;
  margin-bottom: 24px;
}

.dashboard-header span {
  color: var(--secondary);
}

.dashboard-header strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

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

.dashboard-body article {
  padding: 18px;
  background: rgba(0, 44, 78, 0.05);
}

.dashboard-body small {
  display: block;
  color: var(--secondary);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dashboard-body strong {
  display: block;
  margin-top: 10px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--primary);
}

.dashboard-bars {
  display: flex;
  align-items: end;
  gap: 14px;
  min-height: 180px;
  margin-top: 28px;
}

.dashboard-bars span {
  flex: 1;
  background: linear-gradient(180deg, rgba(27, 66, 104, 0.95), rgba(122, 247, 225, 0.5));
}

.dashboard-bars span:nth-child(1) { height: 42px; }
.dashboard-bars span:nth-child(2) { height: 88px; }
.dashboard-bars span:nth-child(3) { height: 126px; }
.dashboard-bars span:nth-child(4) { height: 102px; }
.dashboard-bars span:nth-child(5) { height: 156px; }

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

.proof-card {
  padding: 40px;
  background: var(--surface);
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-soft);
}

.proof-metrics {
  display: grid;
  gap: 18px;
}

.proof-metrics article {
  padding: 26px 28px;
  background: var(--surface-low);
  border-left: 4px solid var(--teal);
}

.proof-metrics span {
  color: var(--secondary);
}

.proof-metrics strong {
  display: block;
  margin-top: 10px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--primary);
}

.contact-section {
  background: var(--primary);
  color: var(--white);
}

.contact-meta {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.contact-meta div {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-meta span {
  color: rgba(209, 228, 255, 0.72);
}

.contact-meta strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 1rem;
}

.contact-form {
  padding: 32px;
  background: rgba(255, 255, 255, 0.06);
}

.hubspot-form-shell {
  align-content: start;
  --hsf-global__font-family: "Inter", sans-serif;
  --hsf-global__font-size: 16px;
  --hsf-global__color: rgba(255, 255, 255, 0.92);
  --hsf-global-error__color: #ffb7b7;
  --hsf-heading__font-family: "Montserrat", sans-serif;
  --hsf-heading__color: rgba(255, 255, 255, 0.95);
  --hsf-richtext__font-family: "Inter", sans-serif;
  --hsf-richtext__font-size: 1rem;
  --hsf-richtext__color: rgba(255, 255, 255, 0.76);
  --hsf-background__background-color: transparent;
  --hsf-background__border-color: transparent;
  --hsf-background__border-width: 0;
  --hsf-background__border-radius: 0;
  --hsf-background__padding: 0;
  --hsf-row__horizontal-spacing: 24px;
  --hsf-row__vertical-spacing: 20px;
  --hsf-module__vertical-spacing: 20px;
  --hsf-field-label__font-family: "Montserrat", sans-serif;
  --hsf-field-label__font-size: 0.8rem;
  --hsf-field-label__color: rgba(255, 255, 255, 0.88);
  --hsf-field-label-requiredindicator__color: var(--teal);
  --hsf-field-description__font-family: "Inter", sans-serif;
  --hsf-field-description__color: rgba(255, 255, 255, 0.7);
  --hsf-field-footer__font-family: "Inter", sans-serif;
  --hsf-field-footer__color: #ffb7b7;
  --hsf-field-input__font-family: "Inter", sans-serif;
  --hsf-field-input__color: var(--primary-deep);
  --hsf-field-input__background-color: rgba(255, 255, 255, 0.98);
  --hsf-field-input__placeholder-color: #73859c;
  --hsf-field-input__border-color: rgba(255, 255, 255, 0.12);
  --hsf-field-input__border-width: 1px;
  --hsf-field-input__border-style: solid;
  --hsf-field-input__border-radius: 0;
  --hsf-field-input__padding: 16px 18px;
  --hsf-field-textarea__font-family: "Inter", sans-serif;
  --hsf-field-textarea__color: var(--primary-deep);
  --hsf-field-textarea__background-color: rgba(255, 255, 255, 0.98);
  --hsf-field-textarea__placeholder-color: #73859c;
  --hsf-field-textarea__border-color: rgba(255, 255, 255, 0.12);
  --hsf-field-textarea__border-width: 1px;
  --hsf-field-textarea__border-style: solid;
  --hsf-field-textarea__border-radius: 0;
  --hsf-field-textarea__padding: 16px 18px;
  --hsf-button__font-family: "Montserrat", sans-serif;
  --hsf-button__font-size: 0.85rem;
  --hsf-button__color: var(--teal-ink);
  --hsf-button__background-color: var(--teal);
  --hsf-button__background-image: none;
  --hsf-button__border-radius: 0;
  --hsf-button__padding: 15px 26px;
  --hsf-button__box-shadow: none;
}

.form-note {
  margin: 0 0 14px;
  color: rgba(209, 228, 255, 0.7);
  font-size: 0.82rem;
}

.hubspot-contact-form {
  min-height: 640px;
  width: 100%;
  overflow: hidden;
}

.hubspot-contact-form,
.hubspot-contact-form * {
  font-family: "Inter", sans-serif;
}

.hubspot-contact-form .hs-richtext,
.hubspot-contact-form .hs-richtext p,
.hubspot-contact-form .hs-richtext span,
.hubspot-contact-form label,
.hubspot-contact-form legend,
.hubspot-contact-form .hs-form-field > label,
.hubspot-contact-form .hs-fieldtype-intl-phone label,
.hubspot-contact-form .input,
.hubspot-contact-form .hs-field-desc {
  color: rgba(255, 255, 255, 0.88) !important;
}

.hubspot-contact-form .hs-form-required {
  color: var(--teal) !important;
}

.hubspot-contact-form input,
.hubspot-contact-form select,
.hubspot-contact-form textarea {
  width: 100% !important;
  padding: 16px 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 0 !important;
  background: rgba(255, 255, 255, 0.98) !important;
  color: var(--primary-deep) !important;
  box-shadow: none !important;
}

.hubspot-contact-form input::placeholder,
.hubspot-contact-form textarea::placeholder {
  color: #73859c !important;
}

.hubspot-contact-form input:focus,
.hubspot-contact-form select:focus,
.hubspot-contact-form textarea:focus {
  outline: none !important;
  border-color: rgba(122, 247, 225, 0.55) !important;
  box-shadow: 0 0 0 3px rgba(122, 247, 225, 0.16) !important;
}

.hubspot-contact-form ul.no-list,
.hubspot-contact-form .inputs-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hubspot-contact-form .hs-error-msg,
.hubspot-contact-form .hs-main-font-element .hs-error-msg {
  color: #ffb7b7 !important;
}

.hubspot-contact-form .submitted-message,
.hubspot-contact-form .hs-form__thankyou-message {
  color: rgba(255, 255, 255, 0.94) !important;
}

.hubspot-contact-form .hs_submit .actions,
.hubspot-contact-form .actions {
  margin-top: 20px !important;
}

.hubspot-contact-form .hs-button,
.hubspot-contact-form input[type="submit"] {
  appearance: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: var(--teal) !important;
  color: var(--teal-ink) !important;
  font-family: "Montserrat", sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 15px 26px !important;
  box-shadow: none !important;
}

.hubspot-contact-form .hs-button:hover,
.hubspot-contact-form .hs-button:focus,
.hubspot-contact-form input[type="submit"]:hover,
.hubspot-contact-form input[type="submit"]:focus {
  filter: brightness(1.05) !important;
}

.footer {
  padding: 34px 0 40px;
  background: var(--primary);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(209, 228, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 28px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer h3 {
  color: var(--teal);
}

.footer a {
  display: block;
  margin-bottom: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 540ms ease, transform 540ms ease;
}

.reveal-delay {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 220ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero-layout,
  .detail-grid,
  .proof-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .timeline::before {
    display: none;
  }
}

@media (max-width: 920px) {
  .topbar-inner {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav {
    display: none;
    width: 100%;
    padding: 6px 0 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

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

  .topbar-cta {
    display: none;
  }

  .hero-layout,
  .service-rail,
  .timeline,
  .detail-points,
  .dashboard-body,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 44px;
  }

  .version-button-grid {
    grid-template-columns: 1fr;
  }

  .version-button {
    min-height: 112px;
  }

  .blueprint-card {
    position: static;
    max-width: none;
    margin: 18px;
  }

  .blueprint-card-side {
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  :root {
    --container: min(1180px, calc(100vw - 24px));
  }

  .section {
    padding: 88px 0;
  }

  .hero-layout {
    padding: 96px 0 72px;
  }

  .hero-frame,
  .service-card,
  .proof-card,
  .proof-metrics article,
  .contact-form,
  .dashboard-shell {
    padding: 22px;
  }

  .hero-blueprint {
    min-height: 440px;
  }

  .dashboard-frame::after {
    width: 120px;
    height: 120px;
    right: -18px;
    bottom: -18px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
