/* Alpha Intellux — Signature
   A precise, expressive studio system with one source of truth. */

:root {
  --ink: #061924;
  --ink-2: #0d2d3b;
  --copy: #3f515a;
  --paper: #f7f3ea;
  --paper-2: #ebe5d9;
  --white: #ffffff;
  --blue: #0b7b83;
  --blue-dark: #075c63;
  --orange: #f06449;
  --orange-dark: #b63e29;
  --orange-soft: #ffe1d8;
  --mint: #d9eee8;
  --line: #cbd7d3;
  --dark-line: #2a4b56;
  --shadow-sm: 0 14px 38px rgba(6, 25, 36, .09);
  --shadow-lg: 0 34px 90px rgba(6, 25, 36, .2);
  --radius: 24px;
  --radius-sm: 14px;
  --max: 1240px;
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  background: var(--paper);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

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

button,
a { -webkit-tap-highlight-color: transparent; }

a { color: inherit; }

[hidden] { display: none !important; }

h1,
h2,
h3,
h4,
p,
ul,
ol,
figure { margin-top: 0; }

h1,
h2,
h3,
h4 {
  margin-bottom: .55em;
  color: inherit;
  font-family: "Sora", "Manrope", sans-serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.045em;
  overflow-wrap: break-word;
}

h1 { font-size: clamp(3rem, 7vw, 6.6rem); }
h2 { font-size: clamp(2.15rem, 4.7vw, 4.55rem); }
h3 { font-size: clamp(1.28rem, 2.2vw, 1.8rem); }

p,
li,
label,
small,
span,
strong { overflow-wrap: break-word; }

p { margin-bottom: 1.15em; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.narrow { max-width: 820px; }
.center { text-align: center; }

.section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(78px, 9vw, 138px) 0;
}

.section.tone-light,
.surface.tone-light {
  color: var(--ink);
  background: var(--paper);
}

.section.tone-dark,
.section.night,
.surface.tone-dark,
.final-cta {
  color: var(--white);
  background: var(--ink);
}

.section.tone-light p,
.surface.tone-light p { color: var(--copy); }

.section.tone-dark p,
.section.night p,
.surface.tone-dark p,
.final-cta p { color: #dce4f1; }

.section-lead,
.lead {
  max-width: 760px;
  font-size: clamp(1.04rem, 1.6vw, 1.3rem);
  line-height: 1.72;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--blue-dark);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 2px;
  background: var(--orange);
  transform: rotate(45deg);
}

.tone-dark .eyebrow,
.night .eyebrow,
.final-cta .eyebrow,
.dark-hero .eyebrow,
.page-hero .eyebrow { color: #ffb49f; }

.skip-link {
  position: fixed;
  z-index: 5000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  border-radius: 10px;
  background: var(--blue);
  transform: translateY(-150%);
}

.skip-link:focus { transform: none; }

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  padding: 14px 0;
  border-bottom: 1px solid rgba(6, 25, 36, .1);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 28px rgba(6, 25, 36, .08);
  backdrop-filter: blur(18px);
  transition: padding .3s ease, background .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.site-header.scrolled,
.site-header.solid {
  padding: 9px 0;
  border-color: rgba(6, 25, 36, .1);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 10px 35px rgba(6, 25, 36, .1);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  min-height: 66px;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand-header-full-logo {
  width: clamp(220px, 22vw, 315px);
  height: 64px;
  object-fit: contain;
}

.primary-nav,
.legal-nav-actions {
  display: flex;
  align-items: center;
  gap: 7px;
}

.primary-nav > a:not(.button),
.faq-whisper {
  position: relative;
  padding: 11px 12px;
  color: var(--ink);
  font-size: .9rem;
  font-weight: 750;
  text-decoration: none;
}

.site-header.scrolled .primary-nav > a:not(.button),
.site-header.solid .primary-nav > a:not(.button),
.site-header.scrolled .faq-whisper,
.site-header.solid .faq-whisper { color: var(--ink); }

.primary-nav > a:not(.button)::after,
.faq-whisper::after {
  position: absolute;
  right: 12px;
  bottom: 5px;
  left: 12px;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.primary-nav > a:hover::after,
.primary-nav > a[aria-current="page"]::after,
.faq-whisper:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px auto;
  background: var(--ink);
}

/* Buttons and motion */
.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  overflow: hidden;
  color: #fff;
  font-size: .95rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(11, 123, 131, .2);
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}

.button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(255, 255, 255, .3), transparent 32%);
  opacity: 0;
  transition: opacity .2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 15px 32px rgba(11, 123, 131, .28);
}

.button:hover::before { opacity: 1; }
.button > * { position: relative; }

.button-light {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 10px 24px rgba(6, 25, 36, .16);
}

.button-dark {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 10px 24px rgba(6, 25, 36, .2);
}

.button-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, .55);
  background: transparent;
  box-shadow: none;
}

.button-outline-dark {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.button-primary { background: var(--blue); }
.button-small { min-height: 44px; padding: 10px 16px; font-size: .86rem; }
.button-full { width: 100%; }

.text-link,
.ecosystem-card a,
.launch-inline a {
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.text-link:hover,
.ecosystem-card a:hover,
.launch-inline a:hover { color: var(--orange); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.2, .75, .2, 1), transform .7s cubic-bezier(.2, .75, .2, 1);
}

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

/* Hero */
.dark-hero,
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.dark-hero {
  min-height: 780px;
  display: grid;
  align-items: center;
  padding: 155px 0 94px;
}

.page-hero {
  padding: 175px 0 95px;
  background:
    radial-gradient(circle at 82% 18%, rgba(11, 123, 131, .33), transparent 30rem),
    linear-gradient(140deg, #0b1426, #172747);
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  right: -140px;
  bottom: -230px;
  width: 560px;
  height: 560px;
  content: "";
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(255, 255, 255, .03), 0 0 0 100px rgba(255, 255, 255, .025);
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(3rem, 6.5vw, 6.2rem);
}

.page-hero .lead,
.dark-hero .lead {
  max-width: 800px;
  color: #e4eaf4;
}

.page-hero-support {
  max-width: 760px;
  padding-left: 18px;
  color: #e4eaf4;
  border-left: 3px solid var(--orange);
}

.hero-backdrop-video {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dark-hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 20, 29, .95) 0%, rgba(4, 20, 29, .82) 52%, rgba(4, 20, 29, .6) 100%),
    linear-gradient(0deg, rgba(4, 20, 29, .82), transparent 62%);
}

.dark-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(90deg, transparent, #000);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}

.hero-copy h1 {
  max-width: 860px;
  font-size: clamp(3rem, 6.2vw, 6.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-note {
  margin-top: 22px;
  color: #dce4f1;
  font-size: .88rem;
}

.hero-note i {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(240, 100, 73, .16);
}

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

.hero-visual { min-width: 0; }

.journey-card {
  overflow: hidden;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.hero-system-console { animation: console-float 7s ease-in-out infinite; }

.journey-top {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 18px 20px;
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--blue);
}

.journey-stage {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid #e2e6ec;
}

.journey-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--blue-dark);
  font-weight: 900;
  border-radius: 12px;
  background: #e7f3f0;
}

.journey-stage > div { min-width: 0; }
.journey-stage strong { display: block; color: var(--ink); font-size: .98rem; }
.journey-stage small { display: block; color: var(--copy); font-size: .82rem; line-height: 1.45; }

.journey-stage b {
  color: var(--blue-dark);
  font-size: .7rem;
  letter-spacing: .08em;
}

.journey-result {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 17px 20px;
  color: var(--ink);
  font-size: .86rem;
  font-weight: 750;
  background: var(--mint);
}

.journey-result i {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #11a864;
}

.proof-strip {
  display: flex;
  min-height: 72px;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 4vw, 58px);
  padding: 12px 24px;
  overflow-x: auto;
  color: #fff;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .1em;
  white-space: nowrap;
  background: var(--blue);
}

.proof-wolf { display: inline-flex; align-items: center; gap: 8px; }
.proof-wolf img { width: 38px; height: 38px; object-fit: contain; filter: brightness(0) invert(1); }

@keyframes console-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* Launch announcement */
.launch-inline {
  position: relative;
  z-index: 2;
  padding: 20px 0;
  color: #fff;
  background: var(--orange);
}

.launch-inline-details {
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: #fff;
  box-shadow: 8px 8px 0 var(--ink);
}

.launch-inline-details > summary {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 15px 18px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.launch-inline-details > summary::-webkit-details-marker { display: none; }

.launch-inline-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 13px;
  background: var(--paper);
}

.launch-inline-icon img { width: 52px; height: 52px; object-fit: contain; }

.launch-inline-details summary > span:nth-child(2) { display: grid; gap: 3px; }

.launch-inline-details summary small {
  color: var(--blue-dark);
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.launch-inline-details summary strong { color: var(--ink); font-size: 1.08rem; }

.launch-inline-details summary b {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--ink);
  font-size: .85rem;
  white-space: nowrap;
}

.launch-inline-details summary i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  font-size: 1.2rem;
  font-style: normal;
  border-radius: 50%;
  background: var(--blue);
  transition: transform .25s ease;
}

.launch-inline-details[open] summary i { transform: rotate(45deg); }

.launch-inline-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0 18px 18px 92px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  animation: details-in .35s ease both;
}

.launch-inline-body article {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--paper);
}

.launch-inline-body article small {
  color: var(--blue-dark);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.launch-inline-body article strong {
  display: block;
  margin: 4px 0 8px;
  color: var(--ink);
}

.launch-inline-body p { color: var(--copy); }
.launch-inline-body > p { grid-column: 1 / -1; margin: 0; }

@keyframes details-in {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: none; }
}

/* Homepage systems */
.modern-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(45px, 7vw, 96px);
  align-items: center;
}

.modern-photo {
  position: relative;
  min-height: 610px;
}

.modern-photo > img {
  width: 100%;
  height: 610px;
  object-fit: cover;
  border-radius: 44% 44% 20px 20px;
  box-shadow: 16px 16px 0 var(--blue);
}

.modern-photo-card {
  position: absolute;
  right: -24px;
  bottom: 28px;
  width: min(340px, 82%);
  padding: 20px;
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: #fff;
  box-shadow: 7px 7px 0 var(--orange);
}

.modern-photo-card strong { display: block; margin-bottom: 5px; color: var(--ink); }
.modern-photo-card small { color: var(--copy); line-height: 1.5; }

.modern-list {
  display: grid;
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid var(--dark-line);
}

.modern-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 15px;
  padding: 22px 0;
  border-bottom: 1px solid var(--dark-line);
}

.modern-item > b {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  border-radius: 10px;
  background: var(--orange);
}

.modern-item strong { color: #fff; }
.modern-item p { margin: 5px 0 0; color: #dce4f1; font-size: .94rem; }

.ecosystem-section {
  color: var(--ink) !important;
  background:
    linear-gradient(90deg, rgba(11, 123, 131, .06) 1px, transparent 1px),
    linear-gradient(rgba(11, 123, 131, .06) 1px, transparent 1px),
    var(--paper) !important;
  background-size: 44px 44px !important;
}

.ecosystem-section h2 { color: var(--ink) !important; }
.ecosystem-section .lead { color: var(--copy) !important; }
.ecosystem-section .eyebrow { color: var(--blue-dark) !important; }

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.ecosystem-card {
  position: relative;
  display: grid;
  min-height: 330px;
  align-content: start;
  padding: 28px;
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: #fff;
  box-shadow: 8px 8px 0 var(--ink);
}

.ecosystem-card:nth-child(1) { grid-column: span 5; }
.ecosystem-card:nth-child(2) { grid-column: span 4; }
.ecosystem-card:nth-child(3) { grid-column: span 3; }
.ecosystem-card:nth-child(4) { grid-column: span 6; }
.ecosystem-card:nth-child(5) { grid-column: span 6; }

.ecosystem-card::before {
  width: 54px;
  height: 8px;
  margin-bottom: 24px;
  content: "";
  border-radius: 99px;
  background: var(--blue);
}

.ecosystem-card:nth-child(even)::before { background: var(--orange); }

.ecosystem-card > span {
  color: var(--blue-dark);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .1em;
}

.ecosystem-card h3 {
  margin: 14px 0 12px;
  color: var(--ink) !important;
}

.ecosystem-card p {
  color: var(--copy) !important;
  font-size: .95rem;
}

.ecosystem-card a { align-self: end; margin-top: auto; padding-top: 18px; }

.wolf-crop,
.wolf-watermark {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.wolf-watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: .06;
}

.wolf-home { right: -100px; top: 20px; width: 420px; height: 420px; }
.wolf-cta { right: -60px; top: 50%; width: 340px; height: 340px; transform: translateY(-50%); }
.wolf-about { left: -90px; top: 80px; width: 330px; height: 330px; }
.wolf-solutions { right: -90px; top: 60px; width: 360px; height: 360px; }

.fair-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

.fair-copy {
  display: grid;
  gap: 26px;
}

.fair-story h2 { color: #fff; }
.fair-details p { color: #dce4f1; }

.promise-grid {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.promise-grid span {
  position: relative;
  padding: 13px 14px 13px 44px;
  color: inherit;
  font-size: .9rem;
  font-weight: 750;
  border: 1px solid currentColor;
  border-radius: 10px;
}

.promise-grid span::before {
  position: absolute;
  left: 15px;
  content: "✓";
  color: var(--orange);
  font-weight: 900;
}

.fair-compare {
  padding: 26px;
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: #fff;
  box-shadow: 9px 9px 0 var(--orange);
}

.fair-compare .eyebrow { color: var(--blue-dark); }

.compare-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 10px;
  color: var(--copy);
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.compare-pair {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.compare-old,
.compare-alpha {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 10px;
  background: #f3f4f6;
}

.compare-alpha { background: var(--mint); }
.compare-old i { color: #c33a3a; }
.compare-alpha i { color: #0a9657; }
.compare-old i,
.compare-alpha i { font-style: normal; font-weight: 900; }
.compare-old span,
.compare-alpha span { color: var(--ink); font-size: .84rem; line-height: 1.5; }
.compare-arrow { display: grid; place-items: center; color: var(--blue); font-weight: 900; }

.stock-band {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 20px;
  box-shadow: 10px 10px 0 var(--blue);
}

.stock-band > img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }

.stock-band-copy {
  display: grid;
  align-content: center;
  padding: clamp(30px, 6vw, 72px);
  color: #fff;
  background: var(--ink);
}

.stock-band-copy h2 { color: #fff; }
.stock-band-copy p { color: #dce4f1; }

.final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(72px, 8vw, 115px) 0;
  border-top: 8px solid var(--orange);
}

.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 35px;
  align-items: center;
}

.cta-layout h2 { max-width: 850px; color: #fff; }
.cta-layout p { max-width: 720px; color: #dce4f1; }

/* Solutions */
.solution-builder { background: var(--paper); }

.solution-modules {
  display: grid;
  gap: 24px;
}

.solution-module {
  overflow: hidden;
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: #fff;
  box-shadow: 8px 8px 0 var(--ink);
}

.module-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  color: #fff;
  background: var(--blue);
}

.solution-module:nth-child(even) .module-top { background: var(--ink); }

.module-top span {
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .1em;
}

.module-top b { font-size: .84rem; }

.module-body {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: 30px;
  padding: clamp(24px, 4vw, 42px);
}

.module-copy h3 { color: var(--ink); }
.module-copy p { color: var(--copy); }

.module-options {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 9px;
}

.module-options span {
  padding: 9px 12px;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 700;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
}

.solution-photo-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .75fr);
  margin-top: 52px;
  overflow: hidden;
  color: #fff;
  border-radius: 20px;
  background: var(--ink);
  box-shadow: var(--shadow-lg);
}

.solution-photo-panel img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.solution-photo-panel > div { display: grid; align-content: center; padding: clamp(28px, 5vw, 58px); }
.solution-photo-panel h2 { color: #fff; }
.solution-photo-panel p { color: #dce4f1; }

/* About */
.why-principles,
.audit-hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.why-principles span,
.audit-hero-signals span {
  padding: 9px 13px;
  color: #fff;
  font-size: .84rem;
  font-weight: 750;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 999px;
}

.founder-profile {
  display: grid;
  grid-template-columns: minmax(330px, .8fr) minmax(0, 1.2fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: start;
}

.founder-aside { display: grid; gap: 18px; }

.founder-portrait {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 50% 50% 18px 18px;
  background: var(--mint);
  box-shadow: 10px 10px 0 var(--blue);
}

.founder-portrait img {
  width: 100%;
  height: 530px;
  object-fit: cover;
  object-position: center top;
}

.founder-signal {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 9px 12px;
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  border-radius: 999px;
  background: var(--ink);
}

.founder-signal span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: #fff;
}

.stat-row > span { padding: 14px 10px; text-align: center; border-right: 1px solid var(--line); }
.stat-row > span:last-child { border-right: 0; }
.stat-row strong { display: block; color: var(--ink); font-size: .98rem; }
.stat-row small { display: block; color: var(--copy); font-size: .7rem; line-height: 1.35; }

.founder-manifesto {
  padding: 20px;
  color: #fff;
  border-radius: 14px;
  background: var(--blue);
}

.founder-manifesto strong { display: block; margin-bottom: 5px; }
.founder-manifesto p { margin: 0; color: #fff; font-size: .9rem; }
.founder-story .section-lead { color: var(--copy); }
.founder-story a:not(.button) { color: var(--blue-dark); font-weight: 800; }
.founder-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }

/* Audit and forms */
.audit-layout {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(480px, 1.2fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: start;
}

.audit-brief { position: sticky; top: 110px; }

.audit-points {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.audit-point {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.audit-point > i {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #fff;
  font-size: .7rem;
  font-style: normal;
  font-weight: 900;
  border-radius: 10px;
  background: var(--blue);
}

.audit-point strong { color: var(--ink); }
.audit-point p { margin: 4px 0 0; color: var(--copy); font-size: .9rem; }

.form-card,
.alpha-summary {
  padding: clamp(24px, 4vw, 42px);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: #fff;
  box-shadow: 10px 10px 0 var(--orange);
}

.form-card h2,
.alpha-summary h2 { color: var(--ink); }

.form-card > p,
.alpha-summary > p { color: var(--copy); }

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

.form-grid label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: .83rem;
  font-weight: 800;
}

.form-grid .full { grid-column: 1 / -1; }

.form-grid input,
.form-grid select,
.form-grid textarea,
.custom-request-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid #aeb6c2;
  border-radius: 9px;
  outline: 0;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-grid textarea,
.custom-request-field textarea { min-height: 126px; resize: vertical; }

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus,
.custom-request-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(11, 123, 131, .13);
}

.consent {
  display: flex !important;
  grid-column: 1 / -1;
  grid-template-columns: none !important;
  gap: 10px !important;
  align-items: flex-start;
  color: var(--copy) !important;
  font-size: .76rem !important;
  font-weight: 600 !important;
}

.consent input {
  width: 18px !important;
  min-height: 18px !important;
  flex: 0 0 auto;
  margin-top: 3px;
}

.form-status { min-height: 24px; margin-top: 10px; color: var(--blue-dark); font-size: .82rem; font-weight: 750; }
.form-note,
.form-policy-note { color: var(--copy); font-size: .76rem; }
.form-note a,
.form-policy-note a { color: var(--blue-dark); font-weight: 800; }

/* FAQ */
.faq-intro {
  padding: 70px 0 35px;
  color: var(--ink);
  background: var(--paper);
}

.faq-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: 48px;
  align-items: start;
}

.faq-contact-row {
  display: grid;
  gap: 10px;
  padding: 22px;
  color: #fff;
  border-radius: 16px;
  background: var(--blue);
}

.faq-contact-row strong { color: #fff; }
.faq-contact-row a { color: #fff; font-weight: 800; }

.faq-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 50px;
  align-items: start;
}

.faq-index {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 5px;
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: #fff;
}

.faq-index a {
  padding: 9px 10px;
  color: var(--ink);
  font-size: .83rem;
  font-weight: 750;
  text-decoration: none;
  border-radius: 7px;
}

.faq-index a:hover { color: #fff; background: var(--blue); }

.faq-groups { display: grid; gap: 28px; }

.faq-group {
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 16px;
  background: #fff;
  box-shadow: 7px 7px 0 var(--paper-2);
}

.faq-group-heading {
  padding: 18px 22px;
  color: #fff;
  background: var(--ink);
}

.faq-group-heading h2 { margin: 0; color: #fff; font-size: 1.5rem; }

.faq-group details { border-bottom: 1px solid var(--line); }
.faq-group details:last-child { border-bottom: 0; }

.faq-group summary {
  position: relative;
  padding: 18px 60px 18px 22px;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-group summary::-webkit-details-marker { display: none; }

.faq-group summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  content: "+";
  color: #fff;
  border-radius: 50%;
  background: var(--blue);
  transform: translateY(-50%);
  transition: transform .25s ease;
}

.faq-group details[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq-group details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--copy);
  animation: details-in .3s ease both;
}

.faq-cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* Legal */
.legal-wrap {
  min-height: 100vh;
  padding: 145px 20px 90px;
  background:
    linear-gradient(90deg, rgba(11, 123, 131, .05) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
}

.legal-card {
  width: min(900px, 100%);
  margin-inline: auto;
  padding: clamp(28px, 5vw, 66px);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: #fff;
  box-shadow: 10px 10px 0 var(--blue);
}

.legal-card h1 { font-size: clamp(2.5rem, 6vw, 4.7rem); }
.legal-card h2 { margin-top: 1.5em; font-size: 1.55rem; }
.legal-card p,
.legal-card li { color: var(--copy); }
.legal-updated { color: var(--blue-dark) !important; font-size: .8rem; font-weight: 850; text-transform: uppercase; }

.legal-policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.legal-policy-links a { color: var(--blue-dark); font-weight: 800; }

/* Footer */
.site-footer {
  padding: 70px 0 24px;
  color: var(--ink);
  border-top: 10px solid var(--blue);
  background:
    linear-gradient(90deg, rgba(11, 123, 131, .055) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.4fr) repeat(2, minmax(170px, .6fr));
  gap: 55px;
}

.footer-brand-lockup { display: inline-flex; }
.footer-brand-lockup img { width: 250px; height: 70px; object-fit: contain; }
.footer-blurb { max-width: 500px; margin-top: 18px; color: var(--copy); }

.footer-col { display: grid; align-content: start; gap: 10px; }
.footer-col > strong { margin-bottom: 6px; color: var(--blue-dark); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-col a { color: var(--ink); font-size: .88rem; font-weight: 700; text-decoration: none; }
.footer-col a:hover { color: var(--orange); }

.footer-contact-actions { display: grid; gap: 8px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 55px;
  padding-top: 22px;
  color: var(--copy);
  font-size: .76rem;
  border-top: 1px solid var(--line);
}

.footer-bottom > div { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-bottom a { color: var(--ink); }

/* ============================================================
   BUILD & PRICE — NEW GUIDED WORKSPACE
   ============================================================ */
.start-paths {
  position: relative;
  padding: 55px 0 95px;
  color: var(--ink);
  background: var(--paper);
}

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

.start-paths-heading h2 { font-size: clamp(2rem, 4vw, 3.7rem); }
.start-paths-heading > p:not(.eyebrow) { color: var(--copy); }

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

.start-path {
  position: relative;
  display: grid;
  min-height: 300px;
  align-content: start;
  padding: 26px;
  color: var(--ink);
  text-align: left;
  text-decoration: none;
  border: 2px solid var(--ink);
  border-radius: 17px;
  background: #fff;
  box-shadow: 8px 8px 0 var(--ink);
  cursor: pointer;
  transition: transform .23s ease, box-shadow .23s ease, background .23s ease;
}

button.start-path { width: 100%; font: inherit; }

.start-path:hover,
.start-path:focus-visible {
  transform: translate(-3px, -3px);
  box-shadow: 12px 12px 0 var(--blue);
}

.start-path-guide { background: var(--mint); }
.start-path-contact {
  cursor: default;
  background: var(--orange-soft);
}

.start-path-contact:hover {
  transform: none;
  box-shadow: 8px 8px 0 var(--ink);
}

.start-path-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  place-items: center;
  color: #fff;
  font-size: 1.2rem;
  border-radius: 11px;
  background: var(--blue);
}

.start-path small {
  color: var(--blue-dark);
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.start-path > strong {
  margin: 8px 0 10px;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.start-path p { color: var(--copy); font-size: .92rem; }
.start-path > b { align-self: end; margin-top: auto; color: var(--blue-dark); font-size: .88rem; }

.start-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.start-contact-actions a {
  padding: 9px 11px;
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  text-decoration: none;
  border-radius: 8px;
  background: var(--ink);
}

/* Recommendation wizard */
.recommendation-wizard {
  position: fixed;
  z-index: 2000;
  inset: 0;
  overflow-y: auto;
  padding: clamp(18px, 4vw, 54px);
  background: rgba(4, 20, 29, .94);
  backdrop-filter: blur(15px);
}

.guide-shell {
  width: min(1050px, 100%);
  min-height: min(760px, calc(100vh - 60px));
  margin: 0 auto;
  overflow: hidden;
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 16px 16px 0 var(--orange);
}

.guide-header {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 25px;
  padding: clamp(24px, 4vw, 42px);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.guide-header h2 { max-width: 760px; color: var(--ink); font-size: clamp(1.7rem, 4vw, 3.1rem); }
.guide-header p { color: var(--copy); }

.guide-close,
.guide-inline-back {
  align-self: start;
  padding: 10px 13px;
  color: var(--ink);
  font-size: .8rem;
  font-weight: 800;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  cursor: pointer;
}

[data-system-guide] { padding: clamp(24px, 4vw, 42px); }

.guide-progress {
  height: 6px;
  overflow: hidden;
  border-radius: 99px;
  background: #d8dde5;
}

.guide-progress i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  transition: width .45s ease;
}

.guide-step-name {
  margin: 12px 0 28px;
  color: var(--blue-dark);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.guide-step { display: none; border: 0; padding: 0; }
.guide-step.active { display: block; animation: panel-in .42s cubic-bezier(.2, .8, .2, 1) both; }

.guide-step legend {
  width: 100%;
  margin-bottom: 10px;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 3.2vw, 2.6rem);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -.035em;
}

.guide-help { color: var(--copy); }

.guide-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.guide-choice-grid label { position: relative; cursor: pointer; }

.guide-choice-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.guide-choice-grid label > span {
  position: relative;
  display: grid;
  min-height: 112px;
  align-content: center;
  gap: 5px;
  padding: 18px 52px 18px 18px;
  color: var(--ink);
  border: 2px solid var(--line);
  border-radius: 13px;
  background: #fff;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.guide-choice-grid label > span::after {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  content: "";
  border: 2px solid #9ba5b5;
  border-radius: 50%;
}

.guide-choice-grid input[type="checkbox"] + span::after { border-radius: 7px; }

.guide-choice-grid label > span strong { color: var(--ink); line-height: 1.3; }
.guide-choice-grid label > span small { color: var(--copy); font-size: .82rem; line-height: 1.45; }

.guide-choice-grid input:checked + span {
  border-color: var(--blue);
  background: #edf7f5;
  box-shadow: 0 0 0 3px rgba(11, 123, 131, .1);
}

.guide-choice-grid input:checked + span::after {
  content: "✓";
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
  font-size: .78rem;
  font-weight: 900;
}

.guide-inline-back { margin-top: 22px; }

.guide-controls {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.guide-result-heading p { color: var(--copy); }
.guide-result-list { display: grid; gap: 10px; margin-top: 22px; }

.guide-result-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 15px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
}

.guide-result-item > i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #fff;
  font-style: normal;
  border-radius: 8px;
  background: var(--blue);
}

.guide-result-item strong { display: block; color: var(--ink); }
.guide-result-item small { display: block; color: var(--copy); font-size: .78rem; }
.guide-result-item > b { color: var(--blue-dark); font-size: .82rem; }

.guide-estimate {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-top: 18px;
  padding: 18px;
  color: #fff;
  border-radius: 13px;
  background: var(--ink);
}

.guide-estimate strong { color: #fff; font-size: 2rem; }
.guide-estimate small { font-size: .8rem; }
.guide-prepay,
.guide-edit-note,
.guide-disclaimer { color: var(--copy); font-size: .82rem; }
.guide-result-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0; }

@keyframes panel-in {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: none; }
}

/* Pricing studio */
.adventure-shell {
  min-height: 760px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(11, 123, 131, .055) 1px, transparent 1px),
    linear-gradient(rgba(11, 123, 131, .055) 1px, transparent 1px),
    var(--paper);
  background-size: 32px 32px;
}

.adventure-shell p { color: var(--copy); }
.adventure-shell .commerce-route-banner p { color: #dce4f1; }

.alpha-builder {
  position: relative;
  max-width: 1050px;
  padding: clamp(22px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: 12px 12px 0 var(--ink);
}

.adventure-nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px 36px;
  align-items: end;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.adventure-nav-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.adventure-nav-copy span {
  color: var(--blue-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.adventure-nav-copy strong {
  color: var(--ink);
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  line-height: 1.2;
}

.adventure-live-price {
  min-width: 178px;
  padding: 13px 17px;
  color: #fff;
  border-radius: 13px;
  background: var(--ink);
  box-shadow: 5px 5px 0 var(--orange);
}

.adventure-live-price small {
  display: block;
  color: #dce4f1;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.adventure-live-price strong {
  display: flex;
  align-items: baseline;
  color: #fff;
  font-family: "Sora", sans-serif;
  line-height: 1;
}

.adventure-live-price strong span { font-size: 1rem; }
.adventure-live-price strong b { font-size: 2rem; }
.adventure-live-price strong em {
  color: #dce4f1;
  font-size: .76rem;
  font-style: normal;
  font-weight: 600;
}

.adventure-track {
  grid-column: 1 / -1;
  overflow: hidden;
  height: 7px;
  border-radius: 99px;
  background: var(--paper-2);
}

.adventure-track i {
  display: block;
  width: 8%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transition: width .55s cubic-bezier(.2, .8, .2, 1);
}

.adventure-labels {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: -10px;
}

.adventure-labels span {
  color: #707b8c;
  font-size: .69rem;
  font-weight: 700;
  text-align: center;
}

.adventure-labels span.active { color: var(--blue-dark); }

.alpha-builder-main {
  padding-top: clamp(28px, 5vw, 52px);
}

[data-adventure-panel]:not([hidden]) {
  animation: pricing-panel-in .45s cubic-bezier(.2, .8, .2, 1) both;
}

@keyframes pricing-panel-in {
  from { opacity: 0; transform: translateX(18px); }
  to { opacity: 1; transform: none; }
}

.builder-block,
.builder-foundation-shell {
  min-width: 0;
}

.path-gateway {
  display: grid;
  gap: 28px;
}

.path-intro,
.builder-block-head,
.foundation-divider {
  max-width: 760px;
}

.path-intro > span,
.builder-block-head span,
.foundation-divider > span,
.commerce-route-banner > span,
.catalog-scope > div:first-child > span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-size: .79rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.path-intro h3,
.builder-block-head h3,
.foundation-divider strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  letter-spacing: -.035em;
  line-height: 1.15;
}

.path-intro p,
.builder-block-head p,
.foundation-divider small {
  display: block;
  color: var(--copy);
  font-size: .96rem;
}

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

.path-switch label,
.catalog-tier-grid label,
.billing-choice label {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.path-switch input,
.foundation-choice input,
.alpha-option input,
.catalog-tier-grid input,
.billing-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.path-card {
  display: grid;
  min-height: 195px;
  padding: 23px;
  border: 2px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.path-card::before {
  width: 34px;
  height: 7px;
  margin-bottom: 25px;
  content: "";
  border-radius: 99px;
  background: var(--orange);
}

.path-copy {
  display: grid;
  align-content: start;
  gap: 8px;
}

.path-copy small {
  color: var(--blue-dark);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.path-copy strong {
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.25;
}

.path-copy em {
  color: var(--copy);
  font-size: .83rem;
  font-style: normal;
  line-height: 1.55;
}

.path-switch label:hover .path-card,
.path-switch label:focus-within .path-card {
  border-color: var(--blue);
  transform: translateY(-3px);
}

.path-switch input:checked + .path-card {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: 7px 7px 0 var(--orange);
}

.path-switch input:checked + .path-card .path-copy small { color: #ffb49f; }
.path-switch input:checked + .path-card .path-copy strong { color: #fff; }
.path-switch input:checked + .path-card .path-copy em { color: #dce4f1; }

.business-model-note {
  margin: 0;
  padding: 13px 16px;
  color: var(--copy) !important;
  border-left: 4px solid var(--orange);
  background: var(--orange-soft);
  font-size: .88rem;
}

.foundation-divider,
.builder-block-head {
  margin-bottom: 25px;
}

.commerce-foundations,
[data-foundation-group="services"] {
  display: grid;
  gap: 15px;
}

.commerce-route-banner {
  margin-bottom: 6px;
  padding: 23px;
  color: #fff;
  border-radius: 18px;
  background: var(--ink);
}

.commerce-route-banner > span { color: #ffb49f; }
.commerce-route-banner strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
}
.commerce-route-banner p { margin: 0; color: #dce4f1; font-size: .88rem; }

.feature-option {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.feature-option:has(input:checked) {
  border-color: var(--blue);
  box-shadow: inset 5px 0 0 var(--blue);
}

.foundation-choice,
.alpha-option {
  position: relative;
  display: block;
  min-width: 0;
  padding: 20px 18px 20px 54px;
  cursor: pointer;
}

.foundation-choice::before,
.alpha-option::before {
  position: absolute;
  top: 23px;
  left: 19px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  content: "";
  border: 2px solid #8b95a5;
  background: #fff;
}

.foundation-choice::before { border-radius: 50%; }
.alpha-option::before { border-radius: 6px; }

.feature-option:has(input:checked) .foundation-choice::before,
.feature-option:has(input:checked) .alpha-option::before {
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: inset 0 0 0 5px #fff;
}

.foundation-choice > span,
.alpha-option > span {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 18px;
  min-width: 0;
}

.foundation-choice strong,
.alpha-option strong {
  min-width: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
}

.foundation-choice b,
.alpha-option b {
  color: var(--blue-dark);
  font-size: .88rem;
  line-height: 1.35;
  text-align: right;
}

.foundation-choice small,
.alpha-option small {
  grid-column: 1 / -1;
  color: var(--copy);
  font-size: .82rem;
  line-height: 1.55;
}

.info-trigger {
  align-self: center;
  min-width: 92px;
  margin: 13px;
  padding: 9px 12px;
  color: var(--blue-dark);
  border: 1px solid #9ccbc6;
  border-radius: 99px;
  background: #edf7f5;
  font-size: .71rem;
  font-weight: 800;
  letter-spacing: .05em;
  line-height: 1.2;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.info-trigger:hover,
.info-trigger:focus-visible,
.info-trigger[aria-expanded="true"] {
  color: #fff;
  background: var(--blue);
  transform: translateY(-2px);
}

.feature-popover {
  grid-column: 1 / -1;
  margin: 0 13px 13px;
  padding: 19px;
  color: var(--ink);
  border: 1px solid #b5d9d4;
  border-radius: 13px;
  background: #edf7f5;
  animation: popover-in .3s ease both;
}

.feature-popover p {
  margin: 0 0 10px;
  color: var(--copy) !important;
  font-size: .84rem;
  line-height: 1.65;
}

.feature-popover p:last-child { margin-bottom: 0; }
.feature-popover strong { color: var(--ink); }
.feature-popover .feature-proof {
  padding: 12px 14px;
  border-left: 4px solid var(--orange);
  background: #fff;
}

@keyframes popover-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

.catalog-scope {
  margin-top: 6px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
}

.catalog-scope > div:first-child strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
}

.catalog-scope > div:first-child small { display: block; color: var(--copy); font-size: .8rem; }

.catalog-tier-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.catalog-tier-grid label span {
  display: grid;
  min-height: 78px;
  place-content: center;
  padding: 10px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  text-align: center;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.catalog-tier-grid label:hover span { transform: translateY(-2px); }
.catalog-tier-grid input:checked + span {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}
.catalog-tier-grid input:checked + span strong,
.catalog-tier-grid input:checked + span small { color: #fff; }
.catalog-tier-grid strong { font-size: .9rem; }
.catalog-tier-grid small { color: var(--copy); font-size: .68rem; }

.additional-pages-disclosure { margin-top: 16px; }

.additional-pages-toggle {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 17px 19px;
  color: var(--ink);
  border: 1px dashed #7c8aa0;
  border-radius: 14px;
  background: var(--paper);
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}

.additional-pages-toggle:hover,
.additional-pages-toggle[aria-expanded="true"] {
  border-color: var(--blue);
  background: #edf7f5;
}

.additional-pages-toggle span { display: grid; }
.additional-pages-toggle strong { color: var(--ink); }
.additional-pages-toggle small { color: var(--copy); font-size: .78rem; }
.additional-pages-toggle b { flex: 0 0 auto; color: var(--blue-dark); font-size: .8rem; }

.additional-pages-panel {
  margin-top: 10px;
  padding: 18px;
}

.additional-pages-control {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 250px);
  gap: 20px;
  align-items: end;
}

.additional-pages-control strong { display: block; color: var(--ink); }
.additional-pages-control small { display: block; color: var(--copy); font-size: .79rem; }
.additional-pages-control label { color: var(--ink); font-size: .78rem; font-weight: 700; }
.additional-pages-control select {
  width: 100%;
  margin-top: 5px;
  padding: 11px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.additional-pages-note {
  grid-column: 1 / -1;
  margin: 12px 0 0;
  color: var(--copy) !important;
  font-size: .78rem;
}

.alpha-option-grid {
  display: grid;
  gap: 11px;
}

.custom-request-block { margin-top: 18px; }
.custom-request-field {
  padding: 20px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
}
.custom-request-field label { display: grid; gap: 4px; }
.custom-request-field label strong { color: var(--ink); }
.custom-request-field label span,
.custom-request-field p { color: var(--copy) !important; font-size: .82rem; }
.custom-request-field textarea {
  width: 100%;
  min-height: 120px;
  margin-top: 12px;
  padding: 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  resize: vertical;
}

.adventure-controls {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.adventure-controls p {
  margin: 0;
  color: var(--copy);
  font-size: .95rem;
  font-weight: 650;
  text-align: center;
}

/* Keep the final review immediately connected to its controls. */
.alpha-builder.adventure-reviewing .alpha-builder-main {
  display: none;
}

.alpha-builder.adventure-reviewing .alpha-summary {
  margin-top: 28px;
}

.alpha-builder.adventure-reviewing .adventure-controls {
  max-width: 860px;
  margin: 22px auto 0;
  padding-top: 18px;
}

.alpha-builder.adventure-reviewing .adventure-controls p {
  color: var(--ink);
  text-align: left;
}

.adventure-back {
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fff;
}

.adventure-next:disabled {
  color: #677284;
  border-color: #d9dde4;
  background: #e8eaee;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

/* Review — a clean estimate, not another page of choices */
.alpha-summary {
  max-width: 860px;
  margin: 38px auto 0;
  padding: clamp(24px, 5vw, 48px);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 24px;
  background: #fff;
  box-shadow: 10px 10px 0 var(--orange);
}

.alpha-summary .eyebrow { color: var(--blue-dark); }

.alpha-price-line {
  display: flex;
  align-items: baseline;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  line-height: 1;
}

.alpha-price-line > span { font-size: 1.45rem; }
.alpha-price-line > strong { font-size: clamp(3.5rem, 8vw, 6.4rem); letter-spacing: -.07em; }
.alpha-price-line > small { color: var(--copy); font-size: 1rem; }

.alpha-once {
  margin: 8px 0 25px;
  color: var(--blue-dark);
  font-weight: 800;
}

.billing-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.billing-choice label span {
  display: grid;
  min-height: 124px;
  align-content: start;
  padding: 18px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.billing-choice label:hover span { transform: translateY(-2px); }
.billing-choice input:checked + span {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
}
.billing-choice strong { color: inherit; }
.billing-choice small { color: var(--copy); font-size: .78rem; line-height: 1.5; }
.billing-choice b { margin-top: 7px; color: var(--blue-dark); }
.billing-choice input:checked + span small { color: #dce4f1; }
.billing-choice input:checked + span b { color: #ffb49f; }

.billing-explanation {
  margin: 14px 0;
  color: var(--copy) !important;
  font-size: .83rem;
}

.alpha-selected {
  display: grid;
  gap: 8px;
  margin: 20px 0;
}

.alpha-selected > * {
  min-width: 0;
  color: var(--ink);
}

.founding-credit-note {
  padding: 15px 17px;
  color: var(--ink) !important;
  border-left: 5px solid var(--orange);
  background: var(--orange-soft);
  font-size: .83rem;
}

.pricing-cancellation {
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
}

.pricing-cancellation summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 17px;
  color: var(--ink);
  list-style: none;
  cursor: pointer;
}

.pricing-cancellation summary::-webkit-details-marker { display: none; }
.pricing-cancellation summary span { display: grid; }
.pricing-cancellation summary small { color: var(--copy); font-size: .77rem; }
.pricing-cancellation summary i { font-size: 1.35rem; font-style: normal; transition: transform .25s ease; }
.pricing-cancellation[open] summary i { transform: rotate(45deg); }
.pricing-cancellation > div {
  padding: 0 17px 17px;
  color: var(--copy);
}
.pricing-cancellation p { color: var(--copy) !important; font-size: .82rem; }
.pricing-cancellation a { color: var(--blue-dark); font-weight: 800; }

.alpha-summary > p:not(.eyebrow):not(.founding-credit-note):not(.billing-explanation) {
  color: var(--copy);
  font-size: .8rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-grid label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: .8rem;
  font-weight: 750;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-width: 0;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid #9aa4b2;
  border-radius: 10px;
  outline: none;
  background: #fff;
}

.form-grid textarea { min-height: 115px; resize: vertical; }
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(11, 123, 131, .12);
}

.form-grid .consent {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
}

.form-grid .consent input { width: 18px; margin-top: 4px; }
.form-grid .consent span { color: var(--copy); font-size: .75rem; font-weight: 500; }
.form-policy-note { color: var(--copy) !important; font-size: .74rem !important; }
.form-policy-note a { color: var(--blue-dark); font-weight: 800; }

/* Confirmation / utility pages */
.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 120px 0 70px;
  color: #fff;
  background: var(--ink);
}

.error-code {
  color: #ffb49f;
  font-family: "Sora", sans-serif;
  font-size: clamp(5rem, 18vw, 12rem);
  font-weight: 800;
  letter-spacing: -.08em;
  line-height: .8;
}

/* Responsive */
@media (max-width: 1040px) {
  .ecosystem-grid,
  .solution-module,
  .fair-grid,
  .founder-layout,
  .audit-layout { grid-template-columns: 1fr 1fr; }

  .ecosystem-card:first-child,
  .solution-module > :first-child { grid-column: auto; }

  .catalog-tier-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  h1 { font-size: clamp(2.7rem, 11vw, 4.8rem); }
  h2 { font-size: clamp(2rem, 8vw, 3.4rem); }

  .section { padding: 74px 0; }
  .container { width: min(100% - 28px, var(--max)); }

  .site-header { padding: 8px 0; background: rgba(255, 255, 255, .97); border-bottom: 1px solid var(--line); }
  .nav-wrap { min-height: 58px; }
  .brand img { width: min(220px, 56vw); }

  .nav-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
  }
  .nav-toggle span { width: 22px; height: 2px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }

  .primary-nav {
    position: fixed;
    top: 74px;
    right: 14px;
    left: 14px;
    display: none;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    padding: 15px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-lg);
  }
  .primary-nav.open { display: grid; gap: 5px; }
  .primary-nav a { width: 100%; padding: 12px 13px; color: var(--ink); border-radius: 9px; }
  .primary-nav .button { justify-content: center; margin-top: 5px; }

  .hero-inner,
  .page-hero .container,
  .modern-grid,
  .stock-band-inner,
  .footer-grid,
  .ecosystem-grid,
  .solution-module,
  .fair-grid,
  .founder-layout,
  .audit-layout,
  .launch-inline summary,
  .guide-shell,
  .build-choice-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual { margin-top: 20px; }
  .journey-console { max-width: 640px; margin-inline: auto; }
  .hero-proof { grid-template-columns: 1fr 1fr; }
  .launch-inline summary::after { justify-self: start; }
  .stock-photo { min-height: 340px; }
  .footer-grid { gap: 30px; }

  .guide-steps-rail { display: none; }
  .guide-shell { gap: 0; }

  .alpha-builder {
    width: min(100% - 24px, 1050px);
    padding: 23px;
    border-radius: 22px;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .path-switch { grid-template-columns: 1fr; }
  .path-card { min-height: 0; }
  .path-card::before { margin-bottom: 14px; }
  .catalog-tier-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  h1 { font-size: clamp(2.35rem, 12vw, 3.6rem); }
  h2 { font-size: clamp(1.85rem, 9vw, 2.8rem); }

  .button { width: 100%; justify-content: center; }
  .hero-actions,
  .guide-result-actions { display: grid; }
  .hero-proof { grid-template-columns: 1fr; }

  .adventure-nav { grid-template-columns: 1fr; }
  .adventure-live-price { width: 100%; min-width: 0; }
  .adventure-labels { display: none; }
  .alpha-builder { padding: 18px; }

  .feature-option { grid-template-columns: 1fr; }
  .foundation-choice,
  .alpha-option { padding: 17px 15px 15px 50px; }
  .foundation-choice::before,
  .alpha-option::before { top: 20px; left: 16px; }
  .foundation-choice > span,
  .alpha-option > span { grid-template-columns: 1fr; }
  .foundation-choice b,
  .alpha-option b { text-align: left; }

  .info-trigger {
    justify-self: stretch;
    width: auto;
    margin: 0 13px 13px;
  }

  .additional-pages-toggle { align-items: flex-start; flex-direction: column; gap: 8px; }
  .additional-pages-control,
  .billing-choice,
  .form-grid { grid-template-columns: 1fr; }

  .adventure-controls {
    grid-template-columns: 1fr 1fr;
  }
  .adventure-controls p {
    grid-column: 1 / -1;
    grid-row: 1;
    text-align: left;
  }
  .adventure-back { grid-column: 1; }
  .adventure-next { grid-column: 2; }
  .alpha-price-line > strong { font-size: clamp(3rem, 20vw, 5rem); }

  .guide-choice-grid,
  .guide-contact-grid { grid-template-columns: 1fr; }
  .guide-result-item { grid-template-columns: 30px minmax(0, 1fr); }
  .guide-result-item > b { grid-column: 2; text-align: left; }
  .guide-estimate { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .hero-backdrop-video,
  .section-backdrop-video { display: none; }
}

/* ============================================================
   SIGNATURE EDITION — FLUID SIGNAL ARCHITECTURE
   ============================================================ */

body {
  background:
    radial-gradient(circle at 18% 8%, rgba(11, 123, 131, .08), transparent 28rem),
    var(--paper);
}

body::before {
  position: fixed;
  z-index: 3000;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: .16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.17'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.section {
  padding: clamp(82px, 9vw, 132px) 0;
}

h1,
h2,
h3 {
  letter-spacing: -.052em;
}

h1 { font-size: clamp(3rem, 6vw, 5.8rem); }
h2 { font-size: clamp(2.2rem, 4.4vw, 4.25rem); }

/* A branded signal label, replacing generic lines and chapter markers */
.eyebrow {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 7px 17px 7px 8px;
  color: var(--blue-dark);
  border: 1px solid rgba(7, 92, 99, .25);
  border-radius: 999px 999px 999px 10px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 10px 28px rgba(6, 25, 36, .08);
  font-size: .86rem;
  letter-spacing: .105em;
  backdrop-filter: blur(10px);
}

.eyebrow::before {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    #fff url("https://cdn.shopify.com/s/files/1/0686/5764/3564/files/Alpha_Intellux_Wolf_Head.png?v=1785014041") center / 25px 25px no-repeat;
  box-shadow: 0 0 0 1px rgba(6, 25, 36, .1);
  transform: none;
}

.tone-dark .eyebrow,
.night .eyebrow,
.final-cta .eyebrow,
.dark-hero .eyebrow,
.page-hero .eyebrow {
  color: #fff;
  border-color: rgba(255, 255, 255, .22);
  background: rgba(6, 25, 36, .68);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .16);
}

/* Floating navigation instrument */
.site-header {
  padding: 17px 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header.scrolled,
.site-header.solid {
  padding: 8px 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.nav-wrap {
  position: relative;
  min-height: 76px;
  padding: 7px 9px 7px 19px;
  border: 1px solid rgba(6, 25, 36, .13);
  border-radius: 27px;
  background: rgba(250, 248, 242, .94);
  box-shadow:
    0 18px 48px rgba(6, 25, 36, .16),
    inset 0 1px 0 #fff;
  backdrop-filter: blur(20px);
}

.nav-wrap::after {
  position: absolute;
  right: 8%;
  bottom: -4px;
  left: 8%;
  height: 4px;
  content: "";
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--orange), transparent);
  opacity: .75;
}

.brand-header-full-logo {
  width: clamp(225px, 20vw, 300px);
  height: 60px;
}

.primary-nav {
  gap: 3px;
}

.primary-nav > a:not(.button),
.faq-whisper {
  padding: 12px 13px;
  color: var(--ink);
  border-radius: 999px;
  font-size: .86rem;
}

.primary-nav > a:not(.button)::after,
.faq-whisper::after {
  right: 14px;
  bottom: 8px;
  left: 14px;
  height: 5px;
  border-radius: 99px;
  background: var(--orange);
  opacity: .3;
}

.site-header .button-light {
  color: #fff;
  background: var(--ink);
}

/* Buttons feel engineered, not decorative */
.button {
  min-height: 56px;
  padding: 14px 21px 14px 24px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(11, 123, 131, .22);
}

.button > span:last-child {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 19px 38px rgba(11, 123, 131, .28);
}

.button-outline {
  border-color: rgba(255, 255, 255, .5);
  background: rgba(6, 25, 36, .18);
  backdrop-filter: blur(12px);
}

.button-outline-dark {
  background: rgba(255, 255, 255, .55);
}

/* Homepage hero and live system view */
.dark-hero {
  min-height: 850px;
  padding: 180px 0 110px;
}

.dark-hero::before {
  background:
    linear-gradient(90deg, rgba(4, 20, 29, .96) 0%, rgba(4, 20, 29, .84) 49%, rgba(4, 20, 29, .54) 100%),
    linear-gradient(0deg, rgba(4, 20, 29, .88), transparent 66%);
}

.dark-hero::after {
  background:
    radial-gradient(circle at 86% 38%, transparent 0 118px, rgba(255, 255, 255, .09) 119px 120px, transparent 121px 178px, rgba(255, 255, 255, .045) 179px 180px, transparent 181px),
    linear-gradient(rgba(255, 255, 255, .026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .026) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
  mask-image: linear-gradient(90deg, transparent 25%, #000);
}

.hero-layout {
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr);
}

.hero-copy h1 {
  max-width: 800px;
  font-size: clamp(3.2rem, 5.7vw, 5.85rem);
}

.journey-card {
  border: 1px solid rgba(255, 255, 255, .52);
  border-radius: 44px 16px 44px 16px;
  background: rgba(250, 248, 242, .96);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, .32),
    0 0 0 10px rgba(255, 255, 255, .055);
  backdrop-filter: blur(18px);
}

.journey-top {
  padding: 20px 24px;
  background: linear-gradient(105deg, var(--blue), #0e9491);
}

.journey-stage {
  padding: 19px 23px;
}

.journey-icon {
  color: var(--blue-dark);
  border-radius: 50% 50% 50% 10px;
  background: var(--mint);
}

.journey-result {
  padding: 20px 24px;
  background: linear-gradient(90deg, var(--mint), #f7f3ea);
}

.proof-strip {
  min-height: 76px;
  color: var(--ink);
  background: var(--mint);
}

.proof-wolf img {
  filter: none;
}

/* Launch reveal becomes an elegant notice instead of a block */
.launch-inline {
  padding: 28px 0;
  background: var(--paper);
}

.launch-inline-details {
  border: 1px solid rgba(6, 25, 36, .14);
  border-radius: 28px 10px 28px 10px;
  background: #fff;
  box-shadow: 0 22px 55px rgba(6, 25, 36, .1);
}

.launch-inline-details > summary {
  padding: 17px 21px;
}

.launch-inline-icon {
  border-radius: 50% 50% 50% 9px;
  background: var(--mint);
}

.launch-inline-details summary i {
  background: var(--ink);
}

.launch-inline-body article {
  border: 0;
  border-radius: 20px 8px 20px 8px;
  background: var(--paper);
}

/* Alternating editorial scenes */
.modern-photo > img {
  border-radius: 180px 180px 28px 28px;
  box-shadow: 18px 18px 0 var(--orange);
}

.modern-photo-card {
  right: -12px;
  border: 0;
  border-radius: 24px 8px 24px 8px;
  box-shadow: 0 24px 60px rgba(6, 25, 36, .24);
}

.modern-item > b {
  border-radius: 50% 50% 50% 9px;
  background: var(--orange);
}

.ecosystem-section {
  background:
    radial-gradient(circle at 15% 18%, rgba(11, 123, 131, .12), transparent 25rem),
    radial-gradient(circle at 85% 72%, rgba(240, 100, 73, .1), transparent 28rem),
    var(--paper) !important;
}

.ecosystem-grid {
  gap: 16px;
}

.ecosystem-card {
  min-height: 320px;
  border: 1px solid rgba(6, 25, 36, .12);
  border-radius: 40px 12px 40px 12px;
  background:
    radial-gradient(circle at 100% 0, rgba(11, 123, 131, .11), transparent 12rem),
    #fff;
  box-shadow: 0 24px 60px rgba(6, 25, 36, .09);
}

.ecosystem-card:nth-child(even) {
  border-radius: 12px 40px 12px 40px;
  background:
    radial-gradient(circle at 0 100%, rgba(240, 100, 73, .1), transparent 12rem),
    #fff;
}

.ecosystem-card::before {
  width: 48px;
  height: 48px;
  border-radius: 50% 50% 50% 8px;
  background:
    var(--mint) url("https://cdn.shopify.com/s/files/1/0686/5764/3564/files/Alpha_Intellux_Wolf_Head.png?v=1785014041") center / 40px 40px no-repeat;
}

.ecosystem-card:nth-child(even)::before {
  background:
    var(--orange-soft) url("https://cdn.shopify.com/s/files/1/0686/5764/3564/files/Alpha_Intellux_Wolf_Head.png?v=1785014041") center / 40px 40px no-repeat;
}

.fair-panel {
  align-items: center;
}

.fair-compare {
  border: 0;
  border-radius: 38px 12px 38px 12px;
  box-shadow: 0 30px 75px rgba(0, 0, 0, .26);
}

.compare-old,
.compare-alpha {
  border-radius: 15px 6px 15px 6px;
}

.stock-band {
  border: 0;
  border-radius: 52px 14px 52px 14px;
  box-shadow: 0 32px 85px rgba(6, 25, 36, .2);
}

.final-cta {
  border-top: 0;
  background:
    radial-gradient(circle at 84% 45%, rgba(11, 123, 131, .5), transparent 27rem),
    var(--ink);
}

/* Interior page scenes */
.page-hero {
  padding: 190px 0 105px;
  background:
    radial-gradient(circle at 82% 25%, rgba(11, 123, 131, .45), transparent 30rem),
    linear-gradient(145deg, var(--ink), var(--ink-2));
}

.page-hero::after {
  border-radius: 48% 52% 38% 62%;
}

.solution-module,
.form-card,
.legal-card,
.faq-group {
  border: 1px solid rgba(6, 25, 36, .13);
  border-radius: 34px 10px 34px 10px;
  box-shadow: 0 26px 65px rgba(6, 25, 36, .1);
}

.solution-module:nth-child(even),
.faq-group:nth-child(even) {
  border-radius: 10px 34px 10px 34px;
}

.module-top {
  background: linear-gradient(100deg, var(--blue), #0e9691);
}

.module-options span {
  border: 0;
  background: var(--mint);
}

.founder-portrait {
  border: 0;
  border-radius: 220px 220px 26px 26px;
  box-shadow: 18px 18px 0 var(--orange);
}

.stat-row,
.founder-manifesto {
  border: 0;
  border-radius: 22px 8px 22px 8px;
}

.faq-index {
  border: 0;
  border-radius: 24px 8px 24px 8px;
  box-shadow: 0 20px 50px rgba(6, 25, 36, .1);
}

.faq-group-heading {
  background: linear-gradient(100deg, var(--ink), var(--ink-2));
}

/* Build page opens directly into the experience */
.start-paths {
  min-height: 100vh;
  padding: 165px 0 100px;
  color: #fff;
  background:
    radial-gradient(circle at 8% 9%, rgba(11, 123, 131, .42), transparent 29rem),
    radial-gradient(circle at 92% 92%, rgba(240, 100, 73, .24), transparent 31rem),
    var(--ink);
}

.start-paths::after {
  position: absolute;
  right: -110px;
  bottom: 40px;
  width: 420px;
  height: 420px;
  content: "";
  pointer-events: none;
  opacity: .07;
  background: url("https://cdn.shopify.com/s/files/1/0686/5764/3564/files/Alpha_Intellux_Wolf_Head.png?v=1785014041") center / contain no-repeat;
}

.start-paths-heading {
  max-width: 930px;
  margin-bottom: 45px;
}

.start-paths-heading h1 {
  max-width: 900px;
  color: #fff;
  font-size: clamp(3rem, 6vw, 5.6rem);
}

.start-paths-heading > p:not(.eyebrow) {
  max-width: 720px;
  color: #d7e4e5;
  font-size: 1.08rem;
}

.start-path-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr);
  gap: 16px;
}

.start-path {
  min-height: 340px;
  border: 0;
  border-radius: 44px 12px 44px 12px;
  box-shadow: 0 30px 78px rgba(0, 0, 0, .24);
}

.start-path-guide {
  color: #fff;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, .15), transparent 13rem),
    linear-gradient(145deg, var(--blue), #07545b);
}

.start-path-guide small,
.start-path-guide > strong,
.start-path-guide p,
.start-path-guide > b {
  color: #fff;
}

.start-path-guide .start-path-icon {
  color: var(--ink);
  background: #fff;
}

.start-path-build {
  border-radius: 12px 44px 12px 44px;
  background: var(--paper);
}

.start-path-contact {
  display: flex;
  grid-column: 1 / -1;
  min-height: 0;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding: 21px 25px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 22px 8px 22px 8px;
  background: rgba(255, 255, 255, .07);
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.start-path-contact > span {
  display: grid;
}

.start-path-contact small { color: #9adbd5; }
.start-path-contact strong { color: #fff; font-size: 1.12rem; }
.start-path-contact p { margin: 2px 0 0; color: #d7e4e5; }
.start-path-contact:hover { box-shadow: none; }

.start-contact-actions {
  flex: 0 0 auto;
}

.start-contact-actions a {
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  transition: background .2s ease, transform .2s ease;
}

.start-contact-actions a:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

/* Recommendation guide: one spacious decision at a time */
.recommendation-wizard {
  background: rgba(4, 20, 29, .95);
}

.guide-shell {
  border: 0;
  border-radius: 46px 14px 46px 14px;
  background: var(--paper);
  box-shadow: 0 40px 110px rgba(0, 0, 0, .42);
}

.guide-header {
  border-bottom: 0;
  background:
    radial-gradient(circle at 90% 0, rgba(11, 123, 131, .12), transparent 19rem),
    #fff;
}

.guide-close,
.guide-inline-back {
  border-radius: 999px;
}

.guide-progress {
  height: 8px;
  background: #d8e4e1;
}

.guide-progress i {
  background: linear-gradient(90deg, var(--blue), var(--orange));
}

.guide-choice-grid label > span {
  min-height: 118px;
  border: 1px solid rgba(6, 25, 36, .14);
  border-radius: 24px 8px 24px 8px;
  background: #fff;
}

.guide-choice-grid label:nth-child(even) > span {
  border-radius: 8px 24px 8px 24px;
}

.guide-choice-grid input:checked + span {
  border-color: var(--blue);
  background: var(--mint);
  box-shadow: 0 14px 34px rgba(11, 123, 131, .13);
}

/* Pricing studio: four concise scenes */
.adventure-shell {
  background:
    radial-gradient(circle at 0 20%, rgba(11, 123, 131, .15), transparent 28rem),
    radial-gradient(circle at 100% 80%, rgba(240, 100, 73, .11), transparent 28rem),
    var(--paper);
}

.alpha-builder {
  border: 0;
  border-radius: 48px 14px 48px 14px;
  box-shadow: 0 36px 100px rgba(6, 25, 36, .2);
}

.adventure-nav {
  padding: 6px 4px 27px;
}

.adventure-live-price {
  border-radius: 22px 8px 22px 8px;
  background: var(--ink);
  box-shadow: 7px 7px 0 var(--orange);
}

.adventure-labels {
  grid-template-columns: repeat(4, 1fr);
}

.path-card {
  min-height: 190px;
  border: 1px solid rgba(6, 25, 36, .14);
  border-radius: 28px 8px 28px 8px;
  background: var(--paper);
}

.path-switch label:nth-child(even) .path-card {
  border-radius: 8px 28px 8px 28px;
}

.path-switch input:checked + .path-card {
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: 8px 8px 0 var(--orange);
}

.feature-option {
  border: 1px solid rgba(6, 25, 36, .13);
  border-radius: 22px 7px 22px 7px;
  background: #fff;
}

.feature-option:nth-child(even) {
  border-radius: 7px 22px 7px 22px;
}

.feature-option:has(input:checked) {
  border-color: var(--blue);
  box-shadow: inset 6px 0 0 var(--blue), 0 14px 35px rgba(11, 123, 131, .1);
}

.info-trigger {
  color: var(--blue-dark);
  border-color: #9ccbc6;
  background: var(--mint);
}

.feature-popover {
  border-color: #b5d9d4;
  border-radius: 18px 7px 18px 7px;
  background: #edf7f5;
}

.additional-pages-toggle,
.custom-request-field,
.catalog-scope {
  border-radius: 22px 7px 22px 7px;
}

.alpha-summary {
  border: 0;
  border-radius: 44px 12px 44px 12px;
  box-shadow: 0 32px 90px rgba(6, 25, 36, .22);
}

.billing-choice label span {
  border-radius: 22px 7px 22px 7px;
}

/* Footer becomes a final brand environment */
.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 90px 0 28px;
  color: #fff;
  border-top: 0;
  background:
    radial-gradient(circle at 88% 15%, rgba(11, 123, 131, .5), transparent 29rem),
    var(--ink);
}

.site-footer::before {
  position: absolute;
  z-index: -1;
  right: -3vw;
  bottom: -2vw;
  content: "ALPHA";
  color: transparent;
  font-family: "Sora", sans-serif;
  font-size: clamp(8rem, 25vw, 27rem);
  font-weight: 800;
  letter-spacing: -.09em;
  line-height: .7;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .07);
}

.footer-grid {
  padding: clamp(28px, 5vw, 55px);
  color: var(--ink);
  border-radius: 46px 14px 46px 14px;
  background: var(--paper);
  box-shadow: 0 30px 85px rgba(0, 0, 0, .25);
}

.footer-brand-lockup img {
  width: 285px;
  height: 82px;
}

.footer-blurb {
  color: var(--copy);
}

.footer-col > strong {
  color: var(--blue-dark);
}

.footer-col a {
  color: var(--ink);
}

.footer-contact-actions a {
  display: inline-flex;
  width: fit-content;
  padding: 9px 13px;
  color: #fff;
  border-radius: 999px;
  background: var(--ink);
}

.footer-bottom {
  color: #afc5c7;
  border-color: rgba(255, 255, 255, .16);
}

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

@media (max-width: 860px) {
  .site-header {
    padding: 8px 0;
    border: 0;
    background: transparent;
  }

  .nav-wrap {
    min-height: 66px;
    padding: 5px 7px 5px 12px;
    border-radius: 22px;
  }

  .brand img {
    width: min(220px, 56vw);
  }

  .primary-nav {
    top: 87px;
    border-radius: 28px 9px 28px 9px;
  }

  .dark-hero {
    min-height: auto;
    padding: 155px 0 88px;
  }

  .start-paths {
    padding-top: 135px;
  }

  .start-path-grid {
    grid-template-columns: 1fr;
  }

  .start-path-contact {
    grid-column: auto;
  }

  .ecosystem-card,
  .ecosystem-card:nth-child(n) {
    grid-column: auto;
    min-height: 0;
  }
}

/* =========================================================
   SIMPLIFIED FOUNDATION + ADD-ONS BUILDER
   ========================================================= */

.ala-builder {
  position: relative;
  padding-top: clamp(58px, 7vw, 92px);
  background:
    radial-gradient(circle at 92% 8%, rgba(84, 142, 136, .09), transparent 24%),
    #f2f1eb;
}

.ala-step-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 17px;
  align-items: start;
  max-width: 820px;
  margin-bottom: 24px;
}

.ala-step-head > span {
  padding: 8px 10px;
  color: #e9f3f0;
  background: #173743;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .11em;
}

.ala-step-head h2 {
  margin: 0 0 7px;
  color: #122a35;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  letter-spacing: -.04em;
  line-height: 1.1;
}

.ala-step-head p {
  margin: 0;
  color: #476067 !important;
  font-size: 1rem;
  line-height: 1.6;
}

.ala-addons-head {
  margin-top: clamp(52px, 7vw, 82px);
}

.ala-foundation-grid,
.ala-addon-grid {
  margin: 0;
  padding: 0;
  border: 0;
}

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

.ala-foundation-card {
  position: relative;
  display: grid;
  min-height: 330px;
  align-content: start;
  overflow: hidden;
  padding: clamp(24px, 3.5vw, 38px);
  color: #243b44;
  background: rgba(255, 255, 255, .86);
  border: 1px solid #c8d3ce;
  border-radius: 7px 27px 7px 27px;
  box-shadow: 0 18px 50px rgba(18, 39, 48, .09);
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.ala-foundation-card:hover {
  border-color: #7d9f9b;
  box-shadow: 0 24px 58px rgba(18, 39, 48, .14);
  transform: translateY(-4px);
}

.ala-foundation-card:has(input:checked) {
  color: #edf6f4;
  background:
    radial-gradient(circle at 90% 8%, rgba(183, 222, 167, .16), transparent 26%),
    #14323e;
  border-color: #527a7b;
  box-shadow: 0 25px 62px rgba(12, 34, 43, .2);
}

.ala-foundation-card > input,
.ala-addon-card > input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.ala-card-check {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid #9aaba8;
  border-radius: 50%;
}

input:checked ~ .ala-card-check {
  color: #17333c;
  background: #c4e4ac;
  border-color: #c4e4ac;
}

input:checked ~ .ala-card-check::after {
  content: "✓";
  font-size: .78rem;
  font-weight: 950;
}

.ala-foundation-card input:focus-visible ~ .ala-card-check,
.ala-addon-card input:focus-visible ~ .ala-card-check {
  outline: 4px solid rgba(54, 105, 103, .25);
  outline-offset: 3px;
}

.ala-card-kicker {
  padding-right: 45px;
  color: #507573;
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.ala-foundation-card:has(input:checked) .ala-card-kicker {
  color: #afd3cf;
}

.ala-foundation-card > strong {
  margin-top: 10px;
  padding-right: 38px;
  color: #132b35;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  letter-spacing: -.04em;
  line-height: 1.15;
}

.ala-foundation-card:has(input:checked) > strong {
  color: #fff;
}

.ala-foundation-card > b {
  display: flex;
  align-items: flex-start;
  margin: 22px 0 10px;
  color: #17323c;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.1rem);
  letter-spacing: -.065em;
  line-height: 1;
}

.ala-foundation-card:has(input:checked) > b {
  color: #fff;
}

.ala-foundation-card > b sup {
  margin: 7px 3px 0 0;
  font-size: 1.15rem;
}

.ala-foundation-card > b small {
  align-self: flex-end;
  margin: 0 0 7px 6px;
  color: #607578;
  font-family: "Manrope", sans-serif;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: 0;
}

.ala-foundation-card:has(input:checked) > b small {
  color: #b9cccf;
}

.ala-foundation-card > .ala-foundation-copy {
  display: block;
  margin: 0;
  color: #4c6268 !important;
  font-size: .98rem;
  line-height: 1.62;
}

.ala-foundation-card:has(input:checked) > .ala-foundation-copy {
  color: #d2e0e1 !important;
}

.ala-foundation-card > em {
  margin-top: auto;
  padding-top: 18px;
  color: #6a7d80;
  font-size: .77rem;
  font-style: normal;
  font-weight: 800;
}

.ala-foundation-card:has(input:checked) > em {
  color: #aec3c6;
}

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

.ala-addon-card {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 112px;
  padding: 18px 20px;
  color: #243b44;
  background: rgba(255, 255, 255, .84);
  border: 1px solid #cad4cf;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(17, 38, 47, .06);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.ala-addon-card:hover {
  border-color: #769a96;
  box-shadow: 0 16px 38px rgba(17, 38, 47, .11);
  transform: translateY(-2px);
}

.ala-addon-card:has(input:checked) {
  color: #ecf5f3;
  background: #173743;
  border-color: #426c71;
}

.ala-addon-card .ala-card-check {
  position: static;
  width: 25px;
  height: 25px;
}

.ala-addon-card > span:not(.ala-card-check) {
  display: grid;
  gap: 4px;
}

.ala-addon-card > span strong {
  color: #17303a;
  font-size: .98rem;
  line-height: 1.32;
}

.ala-addon-card:has(input:checked) > span strong {
  color: #fff;
}

.ala-addon-card > span small {
  color: #617579;
  font-size: .83rem;
  line-height: 1.48;
}

.ala-addon-card:has(input:checked) > span small {
  color: #c6d6d8;
}

.ala-addon-card > b {
  color: #18343e;
  font-size: .84rem;
  white-space: nowrap;
}

.ala-addon-card:has(input:checked) > b {
  color: #d1edbb;
}

.ala-custom-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
  padding: 17px 20px;
  color: #41585e;
  background: #e5eae5;
  border: 1px solid #cbd4cf;
  border-radius: 10px;
  font-size: .9rem;
  line-height: 1.5;
}

.ala-custom-note a {
  color: #1c5354;
  font-weight: 850;
  white-space: nowrap;
}

.ala-submit-section {
  padding-top: clamp(58px, 7vw, 88px);
  background:
    radial-gradient(circle at 8% 10%, rgba(84, 142, 136, .1), transparent 25%),
    #e9ede8;
  border-top: 1px solid #d2d9d4;
}

.ala-submit-grid {
  display: grid;
  grid-template-columns: minmax(340px, .72fr) minmax(520px, 1.1fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: start;
}

.ala-summary {
  position: sticky;
  top: 112px;
  overflow: hidden;
  padding: clamp(26px, 4vw, 42px);
  color: #eaf3f1;
  background:
    radial-gradient(circle at 92% 5%, rgba(188, 226, 158, .17), transparent 25%),
    #102b36;
  border: 1px solid #355663;
  border-radius: 6px 28px 6px 28px;
  box-shadow: 0 24px 64px rgba(12, 34, 43, .18);
}

.ala-total {
  display: flex;
  align-items: flex-start;
  margin: 13px 0 18px;
}

.ala-total > span {
  margin: 8px 3px 0 0;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 850;
}

.ala-total > strong {
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: clamp(3.7rem, 7vw, 5.6rem);
  letter-spacing: -.075em;
  line-height: 1;
}

.ala-total > small {
  align-self: flex-end;
  margin: 0 0 9px 8px;
  color: #b7cacc;
  font-weight: 800;
}

.ala-upfront {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 12px;
  align-items: center;
  padding: 15px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 10px;
}

.ala-upfront > span {
  grid-column: 1 / -1;
  color: #b9cbcd;
  font-size: .72rem;
  font-weight: 800;
}

.ala-upfront > strong {
  color: #fff;
  font-size: 1.15rem;
}

.ala-upfront > b {
  padding: 6px 8px;
  color: #18323a;
  background: #c9e7b2;
  border-radius: 999px;
  font-size: .73rem;
}

.ala-selection-list {
  display: grid;
  gap: 0;
  margin-top: 24px;
}

.ala-selection-list > div {
  display: grid;
  gap: 5px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.ala-selection-list span {
  color: #a9c1c3;
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ala-selection-list strong {
  color: #f5faf8;
  font-size: .92rem;
  line-height: 1.5;
}

.ala-summary .ala-usage-note {
  margin: 18px 0 0;
  color: #b8cbcd !important;
  font-size: .78rem;
  line-height: 1.58;
}

.ala-submit-section .pricing-plan-form > h2 {
  margin: 7px 0 10px;
  color: #142d37;
  font-size: clamp(1.8rem, 3.2vw, 2.65rem);
  letter-spacing: -.04em;
}

.ala-submit-section .pricing-plan-form > p:not(.eyebrow):not(.form-note) {
  margin: 0 0 25px;
  color: #53696e;
  line-height: 1.62;
}

@media (max-width: 980px) {
  .ala-submit-grid {
    grid-template-columns: 1fr;
  }

  .ala-summary {
    position: static;
  }
}

@media (max-width: 760px) {
  .ala-foundation-grid,
  .ala-addon-grid {
    grid-template-columns: 1fr;
  }

  .ala-foundation-card {
    min-height: 0;
  }

  .ala-addon-card {
    grid-template-columns: 26px minmax(0, 1fr);
  }

  .ala-addon-card > b {
    grid-column: 2;
    white-space: normal;
  }

  .ala-custom-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .ala-custom-note a {
    white-space: normal;
  }
}

@media (max-width: 620px) {
  .eyebrow {
    font-size: .76rem;
    letter-spacing: .075em;
  }

  .start-paths-heading h1 {
    font-size: clamp(2.55rem, 12vw, 3.7rem);
  }

  .start-path {
    min-height: 300px;
    padding: 23px;
  }

  .start-path-contact {
    display: grid;
    min-height: 0;
  }

  .start-contact-actions {
    display: grid;
    width: 100%;
  }

  .start-contact-actions a {
    text-align: center;
  }

  .guide-shell,
  .alpha-builder,
  .footer-grid {
    border-radius: 28px 8px 28px 8px;
  }

  .guide-choice-grid {
    grid-template-columns: 1fr;
  }
}

/* Refined value section — equally useful for new builds and existing systems */
.fair-panel-reworked {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 4vw, 48px);
  align-items: stretch;
}

.fair-section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: end;
}

.fair-section-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -22px;
}

.fair-section-intro h2 {
  max-width: 880px;
  color: #fff;
}

.fair-section-intro > p {
  margin: 0 0 8px;
  color: #dce8ec;
  font-size: 1.05rem;
  line-height: 1.75;
}

.value-route-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 18px;
}

.value-route {
  display: flex;
  min-height: 520px;
  padding: clamp(28px, 4vw, 48px);
  flex-direction: column;
  align-items: flex-start;
  border-radius: 42px 12px 42px 12px;
}

.value-route-build {
  color: var(--ink);
  background:
    radial-gradient(circle at 95% 5%, rgba(11, 123, 131, .14), transparent 15rem),
    var(--paper);
}

.value-route-existing {
  color: var(--ink);
  border-radius: 12px 42px 12px 42px;
  background:
    radial-gradient(circle at 100% 0, rgba(240, 100, 73, .16), transparent 17rem),
    #dff3ef;
}

.value-route-label {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 9px 13px;
  color: var(--blue-dark);
  font-size: .8rem;
  font-weight: 850;
  letter-spacing: .08em;
  border: 1px solid rgba(11, 123, 131, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
}

.value-route h3 {
  max-width: 620px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(1.75rem, 3vw, 2.65rem);
}

.value-route > p {
  color: #344556;
  font-size: 1rem;
  line-height: 1.7;
}

.value-checks {
  display: grid;
  width: 100%;
  gap: 9px;
  margin: 22px 0 28px;
}

.value-checks span {
  position: relative;
  padding: 12px 14px 12px 42px;
  color: var(--ink);
  font-weight: 750;
  border: 1px solid rgba(6, 25, 36, .14);
  border-radius: 12px;
  background: rgba(255, 255, 255, .75);
}

.value-checks span::before {
  position: absolute;
  left: 15px;
  content: "✓";
  color: var(--blue-dark);
  font-weight: 900;
}

.existing-stack-map {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 22px 0;
}

.existing-stack-map span {
  display: flex;
  min-height: 68px;
  padding: 12px;
  gap: 11px;
  align-items: center;
  color: var(--ink);
  font-size: .9rem;
  font-weight: 750;
  border: 1px solid rgba(6, 25, 36, .15);
  border-radius: 14px;
  background: rgba(255, 255, 255, .78);
}

.existing-stack-map i {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  color: #fff;
  font-size: .72rem;
  font-style: normal;
  border-radius: 9px;
  background: var(--blue-dark);
}

.stack-outcome {
  width: 100%;
  margin: 0 0 28px !important;
  padding: 15px 17px;
  color: var(--ink) !important;
  border-left: 4px solid var(--orange);
  border-radius: 0 12px 12px 0;
  background: rgba(255, 255, 255, .78);
}

.value-route .button {
  margin-top: auto;
}

.fair-assurance-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 16px;
}

.fair-assurance-strip span {
  position: relative;
  padding: 17px 18px 17px 46px;
  color: #fff;
  font-size: .9rem;
  font-weight: 750;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.fair-assurance-strip span:last-child {
  border-right: 0;
}

.fair-assurance-strip span::before {
  position: absolute;
  left: 18px;
  content: "✓";
  color: var(--orange);
  font-weight: 900;
}

.stock-band-copy > p:not(.eyebrow) {
  color: #e7eff4 !important;
  font-size: 1.02rem;
  line-height: 1.75;
}

.about-evolution {
  padding-bottom: clamp(30px, 5vw, 65px);
}

@media (max-width: 900px) {
  .fair-section-intro,
  .value-route-grid {
    grid-template-columns: 1fr;
  }

  .fair-section-intro .eyebrow {
    margin-bottom: -8px;
  }

  .value-route {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .existing-stack-map,
  .fair-assurance-strip {
    grid-template-columns: 1fr;
  }

  .fair-assurance-strip span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .fair-assurance-strip span:last-child {
    border-bottom: 0;
  }
}

/* Video-backed interior heroes */
.video-page-hero {
  display: grid;
  min-height: 760px;
  align-items: center;
  background: var(--ink);
}

.section-backdrop-video {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-page-hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  pointer-events: none;
}

.audit-video-hero::before {
  background:
    linear-gradient(90deg, rgba(3, 17, 27, .96) 0%, rgba(3, 17, 27, .86) 52%, rgba(3, 17, 27, .62) 100%),
    linear-gradient(0deg, rgba(3, 17, 27, .72), transparent 65%);
}

.why-video-hero::before {
  background:
    linear-gradient(90deg, rgba(3, 17, 27, .96) 0%, rgba(3, 17, 27, .82) 56%, rgba(3, 17, 27, .58) 100%),
    linear-gradient(0deg, rgba(3, 17, 27, .76), transparent 66%);
}

.solutions-video-hero::before {
  background:
    linear-gradient(90deg, rgba(3, 17, 27, .96) 0%, rgba(3, 17, 27, .84) 55%, rgba(3, 17, 27, .6) 100%),
    linear-gradient(0deg, rgba(3, 17, 27, .74), transparent 65%);
}

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

.why-video-hero h1 {
  max-width: 1050px;
}

.why-video-hero .lead {
  max-width: 900px;
}

/* High-contrast homepage ecosystem signal */
.ecosystem-section .eyebrow {
  color: #fff !important;
  border-color: rgba(255, 255, 255, .22) !important;
  background: var(--ink) !important;
  box-shadow: 0 14px 34px rgba(6, 25, 36, .18) !important;
}

/* Solutions — four calm, scannable layers instead of dense feature clouds */
.solution-modules {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.solution-module {
  display: flex;
  min-height: 500px;
  flex-direction: column;
  border: 1px solid rgba(6, 25, 36, .13);
  border-radius: 32px 10px 32px 10px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(0, 0, 0, .14);
}

.solution-module:nth-child(even) {
  border-radius: 10px 32px 10px 32px;
}

.module-top,
.solution-module:nth-child(even) .module-top {
  padding: 16px 20px;
  color: #fff;
  background: var(--ink);
}

.module-top span {
  color: #9fe1dc;
}

.module-top b {
  color: #fff;
}

.module-body {
  display: flex;
  height: 100%;
  padding: clamp(24px, 3.5vw, 38px);
  gap: 26px;
  flex-direction: column;
}

.module-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.module-copy h3 {
  max-width: 560px;
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 2.7vw, 2.45rem);
}

.solution-builder .module-copy p {
  max-width: 620px;
  color: #253548 !important;
  font-size: 1rem;
  font-weight: 580;
  line-height: 1.72;
}

.module-copy .text-link {
  margin-top: auto;
  padding-top: 18px;
}

.module-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.module-options span {
  position: relative;
  min-height: 58px;
  padding: 11px 12px 11px 35px;
  color: #18283a;
  font-size: .86rem;
  line-height: 1.42;
  border: 0;
  border-radius: 10px;
  background: #f3f6f5;
}

.module-options span::before {
  position: absolute;
  top: 13px;
  left: 13px;
  content: "✓";
  color: var(--blue-dark);
  font-weight: 900;
}

/* Why Alpha — a concise operating standard */
.why-standard {
  background:
    radial-gradient(circle at 85% 12%, rgba(11, 123, 131, .42), transparent 30rem),
    radial-gradient(circle at 10% 90%, rgba(240, 100, 73, .14), transparent 26rem),
    var(--ink);
}

.why-standard-heading {
  display: grid;
  max-width: 1040px;
  margin-bottom: 42px;
}

.why-standard-heading h2 {
  color: #fff;
}

.why-standard-heading > p:not(.eyebrow) {
  max-width: 780px;
  color: #dce8ec;
  font-size: 1.08rem;
  line-height: 1.75;
}

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

.why-standard-card {
  min-height: 350px;
  padding: clamp(26px, 3.5vw, 42px);
  color: var(--ink);
  border-radius: 38px 10px 38px 10px;
  background:
    radial-gradient(circle at 100% 0, rgba(11, 123, 131, .12), transparent 13rem),
    #fff;
}

.why-standard-card:nth-child(2) {
  border-radius: 10px 38px 10px 38px;
  background:
    radial-gradient(circle at 0 100%, rgba(240, 100, 73, .13), transparent 13rem),
    #f8f5ec;
}

.why-standard-card > span {
  display: inline-flex;
  margin-bottom: 32px;
  padding: 8px 11px;
  color: #fff;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .1em;
  border-radius: 999px;
  background: var(--blue-dark);
}

.why-standard-card h3 {
  color: var(--ink);
  font-size: clamp(1.5rem, 2.3vw, 2.15rem);
}

.why-standard-card p {
  color: #435466 !important;
  font-size: 1rem;
  line-height: 1.7;
}

.why-standard-close {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  margin-top: 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px 38px 12px 38px;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(14px);
}

.why-standard-close strong {
  color: #fff;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  line-height: 1.35;
}

.why-standard-close p {
  margin: 8px 0 0;
  color: #dce8ec !important;
}

@media (max-width: 900px) {
  .video-page-hero {
    min-height: 700px;
  }

  .why-standard-grid {
    grid-template-columns: 1fr;
  }

  .solution-modules {
    grid-template-columns: 1fr;
  }

  .why-standard-card {
    min-height: 0;
  }

  .why-standard-close {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .video-page-hero {
    min-height: 680px;
    padding-top: 150px;
  }

  .section-backdrop-video {
    object-position: center;
  }

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

  .video-page-hero::before {
    background: rgba(3, 17, 27, .82);
  }
}

/* Larger brand presence and stronger founder-card contrast */
.brand-header-full-logo {
  width: clamp(245px, 20vw, 335px);
  height: 70px;
}

.nav-wrap {
  min-height: 74px;
}

.founder-manifesto {
  padding: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, .14), transparent 12rem),
    linear-gradient(135deg, #075c63, #087f86);
  box-shadow: 0 18px 45px rgba(7, 92, 99, .2);
}

.founder-manifesto strong {
  color: #fff;
  font-size: 1.18rem;
}

.founder-manifesto p,
.section.tone-light .founder-manifesto p {
  color: #fff !important;
  font-size: 1rem;
  font-weight: 620;
  line-height: 1.7;
}

::selection {
  color: var(--ink);
  background: #9fe1dc;
}

/* TL;DR — a playful quick-summary shortcut */
body.tldr-open {
  overflow: hidden;
}

.tldr-launcher {
  position: fixed;
  z-index: 4400;
  right: 18px;
  bottom: 18px;
  display: grid;
  min-width: 116px;
  padding: 11px 15px;
  color: #fff;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 18px 6px 18px 6px;
  background: rgba(6, 25, 36, .82);
  box-shadow: 0 14px 36px rgba(6, 25, 36, .22);
  opacity: .6;
  backdrop-filter: blur(15px);
  cursor: pointer;
  transition: opacity .22s ease, transform .22s ease, box-shadow .22s ease;
}

.tldr-launcher:hover,
.tldr-launcher:focus-visible {
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(6, 25, 36, .3);
}

.tldr-launcher > span {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: .08em;
}

.tldr-launcher small {
  color: #cde3e5;
  font-size: .68rem;
  font-weight: 700;
}

.tldr-screen {
  position: fixed;
  z-index: 5000;
  inset: 0;
  background: rgba(3, 13, 22, .58);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  backdrop-filter: blur(7px);
}

.tldr-screen.is-open {
  opacity: 1;
}

.tldr-panel {
  position: absolute;
  top: 14px;
  right: 14px;
  bottom: 14px;
  width: min(720px, calc(100% - 28px));
  overflow-y: auto;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 42px 12px 42px 12px;
  background:
    radial-gradient(circle at 100% 0, rgba(11, 123, 131, .18), transparent 21rem),
    radial-gradient(circle at 0 100%, rgba(240, 100, 73, .12), transparent 19rem),
    var(--paper);
  box-shadow: -25px 25px 80px rgba(0, 0, 0, .32);
  pointer-events: auto;
  transform: translateX(calc(100% + 32px));
  transition: transform .38s cubic-bezier(.2, .78, .2, 1);
}

.tldr-screen.is-open .tldr-panel {
  transform: translateX(0);
}

.tldr-panel::after {
  position: absolute;
  right: 28px;
  bottom: 22px;
  width: 190px;
  height: 190px;
  content: "";
  opacity: .045;
  pointer-events: none;
  background: url("https://cdn.shopify.com/s/files/1/0686/5764/3564/files/Alpha_Intellux_Wolf_Head.png?v=1785014041") center / contain no-repeat;
}

.tldr-panel-top {
  position: sticky;
  z-index: 2;
  top: 0;
  display: flex;
  min-height: 76px;
  padding: 14px 18px 14px 24px;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 241, 232, .9);
  backdrop-filter: blur(18px);
}

.tldr-panel-top > span {
  display: grid;
}

.tldr-panel-top b {
  color: var(--blue-dark);
  font-size: .76rem;
  letter-spacing: .12em;
}

.tldr-panel-top small {
  color: #526173;
  font-size: .77rem;
}

.tldr-close {
  display: inline-flex;
  min-height: 42px;
  padding: 8px 11px 8px 14px;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-weight: 800;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease;
}

.tldr-close:hover,
.tldr-close:focus-visible {
  border-color: var(--blue);
  transform: translateY(-2px);
}

.tldr-close i {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #fff;
  font-size: 1.15rem;
  font-style: normal;
  border-radius: 50%;
  background: var(--ink);
}

.tldr-panel-body {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 6vw, 58px);
}

.tldr-kicker {
  margin-bottom: 12px;
  color: var(--blue-dark) !important;
  font-size: .83rem;
  font-weight: 850;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.tldr-panel h2 {
  color: var(--ink);
  font-size: clamp(2.05rem, 4.6vw, 3.55rem);
}

.tldr-panel-body > p:not(.tldr-kicker) {
  color: #35465a;
  font-size: 1.05rem;
  line-height: 1.72;
}

.tldr-flow {
  display: flex;
  margin: 28px 0;
  padding: 14px;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(6, 25, 36, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .72);
}

.tldr-flow span {
  padding: 8px 10px;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 800;
  border-radius: 999px;
  background: var(--mint);
}

.tldr-flow i {
  color: var(--orange);
  font-style: normal;
  font-weight: 900;
}

.tldr-flow-row {
  display: contents;
}

.tldr-capabilities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.tldr-capabilities span {
  position: relative;
  min-height: 54px;
  padding: 12px 12px 12px 38px;
  color: #203246;
  font-size: .86rem;
  font-weight: 750;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(6, 25, 36, .07);
}

.tldr-capabilities span::before {
  position: absolute;
  top: 13px;
  left: 14px;
  content: "✓";
  color: var(--blue-dark);
  font-weight: 900;
}

.tldr-bottom-line {
  margin: 26px 0;
  padding: 20px;
  color: #fff;
  border-radius: 18px 7px 18px 7px;
  background: linear-gradient(130deg, var(--ink), #0a5961);
}

.tldr-bottom-line strong {
  color: #9fe1dc;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.tldr-bottom-line p {
  margin: 7px 0 0;
  color: #fff !important;
  line-height: 1.65;
}

.tldr-actions {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 9px;
}

@media (max-width: 860px) {
  .brand-header-full-logo,
  .brand img {
    width: min(230px, 58vw);
    height: 64px;
  }

  .nav-wrap {
    min-height: 68px;
  }
}

@media (max-width: 620px) {
  .tldr-launcher {
    right: 12px;
    bottom: 12px;
    min-width: 92px;
    padding: 9px 12px;
  }

  .tldr-launcher small {
    display: none;
  }

  .tldr-panel {
    top: 6px;
    right: 6px;
    bottom: 6px;
    width: calc(100% - 12px);
    border-radius: 28px 8px 28px 8px;
  }

  .tldr-panel-body {
    padding: 26px 20px 34px;
  }

  .tldr-capabilities,
  .tldr-actions {
    grid-template-columns: 1fr;
  }

  .tldr-flow {
    display: grid;
    padding: 15px;
    gap: 10px;
  }

  .tldr-flow-row {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 8px;
  }

  .tldr-flow-row:last-child {
    justify-content: center;
  }

  .tldr-flow-row:last-child > i:first-child {
    display: none;
  }

  .tldr-flow span {
    flex: 0 0 auto;
  }

  .tldr-flow i {
    flex: 0 0 auto;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tldr-panel,
  .tldr-screen {
    transition: none;
  }
}

/* ============================================================
   FINAL CLARITY PASS — HEADER, WHY ALPHA, EVOLUTION + FOOTER
   ============================================================ */

/* Keep the two value routes unmistakably readable on light cards. */
.fair-panel-reworked .value-route > p {
  color: #172838 !important;
  font-weight: 600;
}

/* A principle rail should read as evidence, not another row of buttons. */
.why-video-hero .why-principles {
  display: grid;
  width: min(100%, 1080px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 16px 5px 16px 5px;
  background: rgba(3, 16, 26, .62);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .22);
  backdrop-filter: blur(18px);
}

.why-video-hero .why-principles span {
  position: relative;
  min-height: 64px;
  padding: 18px 16px 18px 42px;
  color: #fff;
  font-size: .86rem;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, .16);
  border-radius: 0;
}

.why-video-hero .why-principles span:last-child {
  border-right: 0;
}

.why-video-hero .why-principles span::before {
  position: absolute;
  top: 50%;
  left: 18px;
  width: 9px;
  height: 9px;
  content: "";
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(240, 100, 73, .14);
  transform: translateY(-50%);
}

.why-video-hero .hero-actions {
  gap: 12px;
  margin-top: 24px;
}

.why-video-hero .hero-actions .button {
  min-height: 58px;
  padding: 16px 25px;
  border-radius: 18px 5px 18px 5px;
}

.why-video-hero .hero-actions .button-light {
  color: var(--ink);
  border-color: #fff;
  background: #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .22);
}

.why-video-hero .hero-actions .button-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, .6);
  background: rgba(6, 25, 36, .68);
  backdrop-filter: blur(12px);
}

/* Larger brand without sacrificing the mobile navigation. */
.brand-header-full {
  flex: 0 0 auto;
}

.brand-header-full-logo,
.brand-header-full .brand-header-full-logo {
  width: clamp(285px, 24vw, 390px);
  height: 84px;
}

.nav-wrap {
  min-height: 86px;
}

/* A compact after-launch improvement story that belongs after the founder bio. */
.about-evolution {
  padding: clamp(62px, 8vw, 105px) 0;
  background:
    radial-gradient(circle at 94% 8%, rgba(11, 123, 131, .12), transparent 24rem),
    var(--paper);
}

.evolution-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
  gap: 18px 34px;
  overflow: hidden;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(6, 25, 36, .14);
  border-radius: 50px 12px 50px 12px;
  background: #e8eeeb;
  box-shadow: 0 30px 80px rgba(6, 25, 36, .14);
}

.evolution-stage::after {
  position: absolute;
  right: -55px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  content: "";
  opacity: .035;
  pointer-events: none;
  background: url("https://cdn.shopify.com/s/files/1/0686/5764/3564/files/Alpha_Intellux_Wolf_Head.png?v=1785014041") center / contain no-repeat;
}

.evolution-intro {
  display: flex;
  grid-row: 1 / span 2;
  padding: clamp(18px, 3vw, 34px);
  flex-direction: column;
  justify-content: center;
  color: #fff;
  border-radius: 34px 8px 34px 8px;
  background:
    radial-gradient(circle at 0 0, rgba(15, 153, 148, .34), transparent 18rem),
    var(--ink);
}

.evolution-intro .eyebrow {
  color: #bfe9e5;
}

.evolution-intro h2 {
  color: #fff;
  font-size: clamp(2.2rem, 4.6vw, 4.3rem);
}

.evolution-intro > p:not(.eyebrow) {
  color: #e1ecef;
  font-size: 1.02rem;
  line-height: 1.75;
}

.evolution-intro .button {
  width: fit-content;
  margin-top: 12px;
  color: var(--ink);
  background: #fff;
}

.evolution-visual {
  display: grid;
  min-height: 210px;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, .8fr);
  overflow: hidden;
  border-radius: 12px 34px 12px 34px;
  background: #fff;
}

.evolution-visual img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.evolution-visual > span {
  display: flex;
  padding: 24px;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  color: #314355;
  font-size: .92rem;
  line-height: 1.65;
}

.evolution-visual b {
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
  line-height: 1.25;
}

.evolution-loop {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.evolution-loop article {
  position: relative;
  padding: 20px;
  border: 1px solid rgba(6, 25, 36, .12);
  border-radius: 18px 5px 18px 5px;
  background: rgba(255, 255, 255, .86);
}

.evolution-loop article + article::before {
  position: absolute;
  top: 28px;
  left: -17px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  content: "→";
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
  border-radius: 50%;
  background: var(--orange);
}

.evolution-loop small {
  color: var(--blue-dark);
  font-weight: 850;
  letter-spacing: .1em;
}

.evolution-loop strong {
  display: block;
  margin: 8px 0;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.35;
}

.evolution-loop p {
  margin: 0;
  color: #35485a !important;
  font-size: .87rem;
  line-height: 1.6;
}

/* The footer now closes the site like a compact lead-journey command center. */
.site-footer.footer-command {
  position: relative;
  overflow: hidden;
  padding: clamp(45px, 7vw, 88px) 0 24px;
  color: #fff;
  background:
    radial-gradient(circle at 10% 5%, rgba(11, 123, 131, .4), transparent 30rem),
    radial-gradient(circle at 90% 95%, rgba(240, 100, 73, .17), transparent 26rem),
    #030d16;
}

.site-footer.footer-command::before {
  right: auto;
  bottom: 12%;
  left: -7vw;
  content: "INTELLUX";
  font-size: clamp(7rem, 18vw, 20rem);
  opacity: 1;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .055);
}

.footer-command-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: clamp(28px, 5vw, 70px);
  overflow: hidden;
  padding: clamp(28px, 5vw, 62px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 54px 14px 54px 14px;
  background:
    radial-gradient(circle at 100% 0, rgba(13, 151, 146, .26), transparent 24rem),
    linear-gradient(135deg, rgba(10, 37, 50, .96), rgba(5, 20, 31, .96));
  box-shadow: 0 34px 90px rgba(0, 0, 0, .38);
}

.footer-command-card::after {
  position: absolute;
  right: -48px;
  bottom: -62px;
  width: 270px;
  height: 270px;
  content: "";
  opacity: .055;
  pointer-events: none;
  background: url("https://cdn.shopify.com/s/files/1/0686/5764/3564/files/Alpha_Intellux_Wolf_Head.png?v=1785014041") center / contain no-repeat;
}

.footer-command-copy {
  position: relative;
  z-index: 1;
}

.footer-signal {
  display: flex;
  margin-bottom: 22px;
  align-items: center;
  gap: 12px;
}

.footer-signal > span {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 15px 5px 15px 5px;
  background: #fff;
}

.footer-signal img {
  width: 39px;
  height: 39px;
  object-fit: contain;
}

.footer-signal p {
  display: grid;
  margin: 0;
}

.footer-signal small {
  color: #9ddfd9;
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.footer-signal strong {
  color: #fff;
  font-size: .96rem;
}

.footer-command-copy h2 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(2.5rem, 5.2vw, 5.2rem);
  line-height: .98;
}

.footer-command-copy > p {
  max-width: 700px;
  color: #d9e7ea;
  font-size: 1.02rem;
  line-height: 1.75;
}

.footer-command-actions {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 10px;
}

.footer-command-actions .button {
  width: 100%;
  min-height: 62px;
  justify-content: space-between;
  color: var(--ink);
  border-radius: 20px 6px 20px 6px;
  background: #fff;
}

.footer-direct {
  display: grid;
  min-height: 82px;
  padding: 17px 19px;
  align-content: center;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .23);
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.footer-direct:hover,
.footer-direct:focus-visible {
  color: var(--ink);
  border-color: #fff;
  background: #fff;
  transform: translateX(5px);
}

.footer-direct small {
  color: #a9c9cd;
  font-size: .76rem;
}

.footer-direct:hover small,
.footer-direct:focus-visible small {
  color: #4a5b6d;
}

.footer-direct strong {
  display: flex;
  justify-content: space-between;
  font-size: 1.05rem;
}

.footer-journey {
  position: relative;
  z-index: 1;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.footer-journey span {
  display: grid;
}

.footer-journey small {
  color: #85c9c5;
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.footer-journey strong {
  color: #fff;
  font-size: .92rem;
}

.footer-journey i {
  color: var(--orange);
  font-style: normal;
  font-weight: 900;
}

.footer-deck {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
  padding: clamp(32px, 5vw, 58px) 8px 26px;
}

.footer-identity {
  max-width: 590px;
}

.footer-identity .footer-brand-lockup img {
  width: min(390px, 100%);
  height: 104px;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, .22));
}

.footer-identity p {
  max-width: 560px;
  margin: 8px 0 0;
  color: #b8cdd1;
  line-height: 1.7;
}

.footer-map {
  display: grid;
  grid-template-columns: auto auto;
  gap: clamp(38px, 6vw, 84px);
}

.footer-map > div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-map strong {
  margin-bottom: 6px;
  color: #8ed5d0;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-map a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}

.footer-map a:hover,
.footer-map a:focus-visible {
  color: #a6e2dd;
  transform: translateX(4px);
}

.footer-command .footer-bottom {
  margin-top: 0;
  padding: 22px 8px 0;
  color: #93aaaf;
  border-color: rgba(255, 255, 255, .14);
}

.footer-command .footer-bottom a {
  color: #d8e6e8;
}

@media (max-width: 1120px) {
  .brand-header-full-logo,
  .brand-header-full .brand-header-full-logo {
    width: 290px;
    height: 76px;
  }
}

@media (max-width: 900px) {
  .evolution-stage,
  .footer-command-card {
    grid-template-columns: 1fr;
  }

  .evolution-intro {
    grid-row: auto;
  }

  .footer-deck {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 860px) {
  .brand-header-full-logo,
  .brand-header-full .brand-header-full-logo,
  .brand-header-full img {
    width: min(265px, 66vw);
    height: 72px;
  }

  .nav-wrap {
    min-height: 74px;
  }
}

@media (max-width: 700px) {
  .why-video-hero .why-principles {
    grid-template-columns: 1fr 1fr;
  }

  .why-video-hero .why-principles span:nth-child(2) {
    border-right: 0;
  }

  .why-video-hero .why-principles span:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .evolution-visual {
    grid-template-columns: 1fr;
  }

  .evolution-visual img {
    min-height: 230px;
  }

  .evolution-loop,
  .footer-map {
    grid-template-columns: 1fr;
  }

  .evolution-loop article + article::before {
    top: -17px;
    left: 24px;
    content: "↓";
  }

  .footer-journey {
    grid-template-columns: 1fr 1fr;
  }

  .footer-journey i {
    display: none;
  }

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

@media (max-width: 520px) {
  .brand-header-full-logo,
  .brand-header-full .brand-header-full-logo,
  .brand-header-full img {
    width: min(250px, 64vw);
    height: 68px;
  }

  .evolution-stage {
    padding: 14px;
    border-radius: 30px 8px 30px 8px;
  }

  .footer-command-card {
    padding: 24px 19px;
    border-radius: 34px 9px 34px 9px;
  }

  .footer-command-copy h2 {
    font-size: clamp(2.35rem, 12vw, 3.25rem);
  }

  .footer-journey {
    gap: 18px;
  }

  .footer-identity .footer-brand-lockup img {
    width: min(330px, 100%);
    height: 90px;
  }
}

/* ============================================================
   REFINED DECISION FLOW — SHORT HEADER, GUIDE, TERM + HORIZON
   ============================================================ */

/* Keep the wider logo while returning the navigation to a compact height. */
.site-header {
  padding: 8px 0;
}

.nav-wrap {
  min-height: 68px;
}

.brand-header-full-logo,
.brand-header-full .brand-header-full-logo {
  width: clamp(305px, 24vw, 390px);
  height: 58px;
  object-fit: contain;
}

/* Recommendation guide: direct questions, crisp choices, unmistakable states. */
.recommendation-wizard {
  padding: clamp(28px, 5vw, 58px) 0 0;
  background:
    radial-gradient(circle at 100% 0, rgba(17, 136, 130, .22), transparent 25rem),
    rgba(3, 16, 26, .96);
}

.guide-shell {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 34px 10px 34px 10px;
  background: #f5f1e8;
  box-shadow: 0 40px 110px rgba(0, 0, 0, .38);
}

.guide-header {
  padding: clamp(24px, 4vw, 42px);
  border-bottom: 1px solid rgba(6, 25, 36, .1);
  background:
    radial-gradient(circle at 100% 0, rgba(11, 123, 131, .14), transparent 20rem),
    #fff;
}

.guide-header h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.guide-shell form {
  padding: clamp(24px, 4vw, 46px);
}

.guide-step legend {
  max-width: 1050px;
  font-size: clamp(2rem, 4.5vw, 3.7rem);
  line-height: 1.06;
}

.guide-help {
  max-width: 850px;
  margin: 13px 0 0;
  padding: 13px 16px;
  color: #26394a;
  border-left: 4px solid var(--blue);
  border-radius: 0 12px 12px 0;
  background: #dfeeea;
  line-height: 1.6;
}

.guide-choice-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
}

.guide-choice-grid label > span,
.guide-choice-grid label:nth-child(even) > span {
  min-height: 138px;
  padding: 24px 58px 24px 22px;
  border: 1px solid #c6cfd1;
  border-radius: 18px 5px 18px 5px;
  background: #fff;
  box-shadow: 0 9px 26px rgba(6, 25, 36, .06);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.guide-choice-grid label:hover > span {
  border-color: #6f8a8e;
  transform: translateY(-2px);
}

.guide-choice-grid label > span strong {
  font-size: 1.03rem;
}

.guide-choice-grid label > span small {
  color: #425467;
  font-size: .86rem;
}

.guide-choice-grid input:checked + span {
  color: #fff;
  border-color: #075c63;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, .12), transparent 12rem),
    linear-gradient(145deg, #087f86, #064a52);
  box-shadow: 0 18px 38px rgba(7, 92, 99, .2);
}

.guide-choice-grid input:checked + span strong,
.guide-choice-grid input:checked + span small {
  color: #fff;
}

.guide-choice-grid input:checked + span::after {
  color: var(--ink);
  border-color: #fff;
  background: #fff;
}

.guide-controls {
  margin-top: 34px;
}

.guide-controls .button,
.guide-result-actions .button {
  min-height: 54px;
  border-radius: 17px 5px 17px 5px;
}

.guide-result-list {
  gap: 12px;
}

.guide-result-item {
  grid-template-columns: 36px minmax(0, 1fr) auto auto;
  gap: 12px;
  padding: 17px;
  border: 1px solid rgba(6, 25, 36, .13);
  border-radius: 16px 5px 16px 5px;
  box-shadow: 0 10px 28px rgba(6, 25, 36, .06);
}

.guide-result-item > b {
  padding: 7px 10px;
  color: #fff;
  border-radius: 8px;
  background: var(--blue-dark);
  white-space: nowrap;
}

.guide-info-trigger {
  display: inline-flex;
  min-height: 38px;
  padding: 8px 10px 8px 13px;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font: inherit;
  font-size: .78rem;
  font-weight: 850;
  border: 1px solid #9eacad;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.guide-info-trigger:hover,
.guide-info-trigger:focus-visible,
.guide-info-trigger[aria-expanded="true"] {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
  transform: translateY(-2px);
}

.guide-info-trigger span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--ink);
}

.guide-result-more {
  grid-column: 2 / -1;
  padding: 18px;
  color: #26394a;
  border: 1px solid rgba(11, 123, 131, .22);
  border-radius: 5px 16px 5px 16px;
  background:
    radial-gradient(circle at 100% 0, rgba(11, 123, 131, .1), transparent 14rem),
    #edf5f2;
  animation: panel-in .28s ease both;
}

.guide-result-more p {
  margin: 0 0 10px;
  color: #314558;
  line-height: 1.65;
}

.guide-result-more p:last-child {
  margin-bottom: 0;
}

.guide-result-more strong {
  color: var(--ink);
}

.commitment-banner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px 18px;
  align-items: center;
  margin: 14px 0;
  padding: 17px 19px;
  color: #fff;
  border-radius: 18px 5px 18px 5px;
  background:
    radial-gradient(circle at 100% 0, rgba(17, 151, 143, .32), transparent 16rem),
    var(--ink);
}

.commitment-banner > span {
  color: #9fe1dc;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.commitment-banner p {
  margin: 0;
  color: #fff !important;
  line-height: 1.55;
}

.commitment-banner a {
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}

.guide-edit-note {
  margin-top: 17px;
  padding: 15px 17px;
  color: #26394a;
  border: 1px solid rgba(11, 123, 131, .18);
  border-radius: 12px;
  background: #e4efec;
  font-size: .88rem;
  line-height: 1.6;
}

/* Pricing builder: an organized workspace instead of a stack of generic cards. */
.adventure-shell {
  padding-top: clamp(55px, 8vw, 95px);
  background:
    radial-gradient(circle at 4% 8%, rgba(11, 123, 131, .14), transparent 24rem),
    linear-gradient(180deg, #e7eeeb, #f5f1e8);
}

.alpha-builder {
  max-width: 1120px;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(6, 25, 36, .12);
  border-radius: 34px 9px 34px 9px;
  background: #fff;
  box-shadow: 0 35px 90px rgba(6, 25, 36, .17);
}

.adventure-nav {
  padding: 22px;
  border: 0;
  border-radius: 24px 7px 24px 7px;
  background:
    radial-gradient(circle at 100% 0, rgba(11, 123, 131, .13), transparent 17rem),
    #e8efec;
}

.adventure-labels {
  grid-template-columns: repeat(4, 1fr);
}

.builder-term-banner {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px 16px;
  align-items: center;
  padding: 13px 15px;
  color: #fff;
  border-radius: 13px 4px 13px 4px;
  background: var(--ink);
}

.builder-term-banner strong {
  color: #9fe1dc;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.builder-term-banner span {
  color: #fff;
  font-size: .85rem;
}

.builder-term-banner a {
  color: #fff;
  font-size: .8rem;
  font-weight: 850;
}

.builder-block-head,
.foundation-divider {
  padding: 22px;
  border-left: 5px solid var(--blue);
  border-radius: 0 18px 18px 0;
  background: #edf3f1;
}

.alpha-option-grid {
  gap: 9px;
}

.alpha-option-grid .feature-option {
  border: 1px solid rgba(6, 25, 36, .12);
  border-radius: 16px 5px 16px 5px;
  background: #fff;
}

.alpha-summary {
  background:
    radial-gradient(circle at 100% 0, rgba(11, 123, 131, .12), transparent 20rem),
    #f7f4ec;
}

/* A launch perk should feel celebratory, not like an error or warning. */
.founding-credit-note {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
  margin: 20px 0;
  padding: 20px;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 22px 6px 22px 6px;
  background:
    radial-gradient(circle at 100% 0, rgba(28, 188, 177, .32), transparent 17rem),
    linear-gradient(135deg, #075c63, #052b36);
  box-shadow: 0 18px 42px rgba(7, 92, 99, .2);
}

.founding-credit-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--ink);
  font-size: 1.3rem;
  border-radius: 17px 5px 17px 5px;
  background: #a9e3dc;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

.founding-credit-note div {
  display: grid;
}

.founding-credit-note small {
  color: #a9e3dc;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.founding-credit-note strong {
  margin: 3px 0 6px;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 1.18rem;
}

.founding-credit-note p {
  margin: 0;
  color: #fff !important;
  font-size: .88rem;
  line-height: 1.65;
}

.founding-credit-note b {
  color: #bdf1eb;
}

/* A quiet, light brand horizon replaces the previous oversized footer pitch. */
.site-footer.footer-horizon {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(55px, 8vw, 96px) 0 24px;
  color: var(--ink);
  border-top: 8px solid var(--ink);
  background:
    radial-gradient(circle at 95% 0, rgba(11, 123, 131, .15), transparent 29rem),
    #e8eeeb;
}

.site-footer.footer-horizon::before {
  z-index: -1;
  right: -90px;
  bottom: -95px;
  left: auto;
  width: 430px;
  height: 430px;
  content: "";
  opacity: .045;
  background: url("https://cdn.shopify.com/s/files/1/0686/5764/3564/files/Alpha_Intellux_Wolf_Head.png?v=1785014041") center / contain no-repeat;
  -webkit-text-stroke: 0;
}

.footer-horizon-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .85fr);
  gap: clamp(35px, 7vw, 100px);
  align-items: end;
}

.footer-horizon .footer-identity {
  max-width: 660px;
}

.footer-horizon .footer-brand-lockup img {
  width: min(410px, 100%);
  height: 86px;
  object-fit: contain;
}

.footer-horizon .footer-identity p {
  max-width: 610px;
  margin: 14px 0 0;
  color: #2e4252;
  font-size: 1rem;
  line-height: 1.7;
}

.footer-contact-board {
  display: grid;
  gap: 8px;
}

.footer-contact-board a {
  display: grid;
  padding: 16px 18px;
  color: #fff;
  text-decoration: none;
  border-radius: 16px 5px 16px 5px;
  background: var(--ink);
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.footer-contact-board a:nth-child(2) {
  color: var(--ink);
  border: 1px solid rgba(6, 25, 36, .18);
  background: rgba(255, 255, 255, .7);
}

.footer-contact-board a:hover,
.footer-contact-board a:focus-visible {
  color: #fff;
  background: var(--blue-dark);
  transform: translateX(5px);
}

.footer-contact-board small {
  color: #9fd9d5;
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .11em;
}

.footer-contact-board a:nth-child(2) small {
  color: var(--blue-dark);
}

.footer-contact-board a:nth-child(2):hover small,
.footer-contact-board a:nth-child(2):focus-visible small {
  color: #bce8e4;
}

.footer-contact-board strong {
  overflow-wrap: anywhere;
  font-size: 1rem;
}

.footer-capability-line {
  display: flex;
  margin: clamp(35px, 6vw, 62px) 0;
  padding: 18px 0;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .04em;
  border-top: 1px solid rgba(6, 25, 36, .16);
  border-bottom: 1px solid rgba(6, 25, 36, .16);
}

.footer-capability-line i {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--orange);
}

.footer-horizon-lower {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: end;
}

.footer-horizon .footer-map {
  display: grid;
  width: fit-content;
  grid-template-columns: auto auto;
  gap: clamp(60px, 10vw, 140px);
}

.footer-horizon .footer-map > div {
  display: grid;
  gap: 8px;
}

.footer-horizon .footer-map strong {
  margin-bottom: 5px;
  color: var(--blue-dark);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-horizon .footer-map a {
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}

.footer-horizon .footer-map a:hover,
.footer-horizon .footer-map a:focus-visible {
  color: var(--blue-dark);
  transform: translateX(4px);
}

.footer-backtop {
  display: grid;
  width: 108px;
  justify-items: center;
  gap: 7px;
  color: var(--ink);
  font-size: .75rem;
  font-weight: 850;
  text-decoration: none;
}

.footer-backtop img {
  width: 82px;
  height: 82px;
  padding: 7px;
  object-fit: contain;
  border: 1px solid rgba(6, 25, 36, .17);
  border-radius: 50%;
  background: rgba(255, 255, 255, .78);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.footer-backtop:hover img,
.footer-backtop:focus-visible img {
  border-color: var(--blue);
  box-shadow: 0 12px 28px rgba(6, 25, 36, .13);
  transform: translateY(-5px);
}

.footer-horizon .footer-bottom {
  margin-top: 42px;
  padding: 20px 0 0;
  color: #506271;
  border-color: rgba(6, 25, 36, .15);
}

.footer-horizon .footer-bottom a {
  color: var(--ink);
}

@media (max-width: 1120px) {
  .brand-header-full-logo,
  .brand-header-full .brand-header-full-logo {
    width: 310px;
    height: 54px;
  }
}

@media (max-width: 900px) {
  .commitment-banner,
  .builder-term-banner {
    grid-template-columns: 1fr;
  }

  .commitment-banner a,
  .builder-term-banner a {
    width: fit-content;
  }

  .footer-horizon-top,
  .footer-horizon-lower {
    grid-template-columns: 1fr;
  }

  .footer-contact-board {
    max-width: 600px;
  }
}

@media (max-width: 860px) {
  .site-header {
    padding: 6px 0;
  }

  .nav-wrap {
    min-height: 62px;
  }

  .brand-header-full-logo,
  .brand-header-full .brand-header-full-logo,
  .brand-header-full img {
    width: min(275px, 68vw);
    height: 50px;
  }
}

@media (max-width: 700px) {
  .guide-shell form {
    padding: 22px 16px 28px;
  }

  .guide-step legend {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .guide-result-item {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .guide-result-item > b,
  .guide-info-trigger {
    grid-column: 2;
    width: fit-content;
  }

  .guide-result-more {
    grid-column: 1 / -1;
  }

  .footer-capability-line {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .footer-capability-line i {
    display: none;
  }

  .footer-horizon .footer-map {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
}

@media (max-width: 520px) {
  .brand-header-full-logo,
  .brand-header-full .brand-header-full-logo,
  .brand-header-full img {
    width: min(255px, 65vw);
    height: 48px;
  }

  .founding-credit-note {
    grid-template-columns: 1fr;
  }

  .footer-horizon .footer-brand-lockup img {
    width: min(350px, 100%);
    height: 76px;
  }

  .footer-horizon .footer-map {
    grid-template-columns: 1fr;
  }
}

/* Refined Solutions-page pacing: keep the visual handoff intentional on wide screens. */
.solutions-catalog-section {
  padding-bottom: clamp(38px, 4vw, 62px);
}

.managed-improvement-section {
  padding-top: clamp(48px, 5vw, 74px);
}

/* Preserve the visitor's work when supporting information opens separately. */
.plan-safe-toast {
  position: fixed;
  z-index: 5600;
  left: 50%;
  bottom: 22px;
  width: min(430px, calc(100% - 28px));
  padding: 13px 18px;
  color: #fff;
  font-size: .88rem;
  font-weight: 750;
  line-height: 1.45;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(6, 25, 36, .96);
  box-shadow: 0 18px 46px rgba(3, 13, 22, .3);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity .22s ease, transform .22s ease;
}

.plan-safe-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 700px) {
  .solutions-catalog-section {
    padding-bottom: 48px;
  }

  .managed-improvement-section {
    padding-top: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .plan-safe-toast {
    transition: none;
  }
}

/* ============================================================
   INSIGHTS, FIELD GUIDES + DEMONSTRATION WORK
   ============================================================ */

.insights-hero,
.article-hero,
.work-hero,
.colorado-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(138px, 15vw, 205px) 0 clamp(72px, 9vw, 118px);
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(74, 189, 182, .3), transparent 27rem),
    radial-gradient(circle at 12% 88%, rgba(240, 100, 73, .18), transparent 24rem),
    linear-gradient(135deg, #04111d, #082d3a 56%, #0a5961);
}

.insights-hero::after,
.article-hero::after,
.work-hero::after,
.colorado-hero::after {
  position: absolute;
  right: clamp(-35px, 3vw, 55px);
  bottom: clamp(-65px, -3vw, -30px);
  width: clamp(250px, 33vw, 520px);
  aspect-ratio: 1;
  content: "";
  opacity: .065;
  pointer-events: none;
  background: url("https://cdn.shopify.com/s/files/1/0686/5764/3564/files/Alpha_Intellux_Wolf_Head.png?v=1785014041") center / contain no-repeat;
}

.insights-hero .container,
.article-hero .container,
.work-hero .container,
.colorado-hero .container {
  position: relative;
  z-index: 1;
}

.insights-hero h1,
.article-hero h1,
.work-hero h1,
.colorado-hero h1 {
  max-width: 900px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(2.75rem, 6.4vw, 5.6rem);
}

.article-hero h1 {
  max-width: 1040px;
  font-size: clamp(2.55rem, 5.4vw, 4.95rem);
}

.insights-hero .hero-lead,
.article-hero .hero-lead,
.work-hero .hero-lead,
.colorado-hero .hero-lead {
  max-width: 760px;
  color: #d8ecec;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.72;
}

.insights-intro {
  display: grid;
  padding: clamp(54px, 7vw, 92px) 0 30px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  align-items: end;
  gap: clamp(28px, 6vw, 86px);
}

.insights-intro h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.insights-intro p {
  margin: 0;
  color: #33495c;
  font-size: 1.05rem;
  line-height: 1.72;
}

.insights-grid {
  display: grid;
  padding: 30px 0 clamp(76px, 9vw, 126px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.insight-card {
  position: relative;
  display: grid;
  min-height: 330px;
  padding: clamp(26px, 4vw, 42px);
  align-content: space-between;
  gap: 28px;
  overflow: hidden;
  border: 1px solid rgba(6, 25, 36, .12);
  border-radius: 28px 8px 28px 8px;
  background:
    radial-gradient(circle at 100% 0, rgba(11, 123, 131, .13), transparent 19rem),
    #fff;
  box-shadow: 0 22px 58px rgba(6, 25, 36, .08);
}

.insight-card:nth-child(4n + 2),
.insight-card:nth-child(4n + 3) {
  background:
    radial-gradient(circle at 0 100%, rgba(240, 100, 73, .1), transparent 18rem),
    #f0eee6;
}

.insight-card-number {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #526173;
  font-size: .79rem;
  font-weight: 850;
  letter-spacing: .1em;
}

.insight-card-number i {
  width: 34px;
  height: 3px;
  border-radius: 99px;
  background: var(--orange);
}

.insight-card h2,
.insight-card h3 {
  max-width: 620px;
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1.13;
}

.insight-card p {
  max-width: 620px;
  margin: 0;
  color: #415468;
  font-size: 1rem;
  line-height: 1.68;
}

.insight-card a,
.article-related-card a,
.demo-card a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  color: var(--blue-dark);
  font-size: .94rem;
  font-weight: 850;
  text-decoration: none;
}

.insight-card a:hover,
.insight-card a:focus-visible,
.article-related-card a:hover,
.article-related-card a:focus-visible,
.demo-card a:hover,
.demo-card a:focus-visible {
  color: var(--orange-dark);
  transform: translateX(3px);
}

.article-breadcrumbs {
  display: flex;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 8px;
  color: #c8e4e3;
  font-size: .86rem;
  font-weight: 750;
}

.article-breadcrumbs a {
  color: #fff;
}

.article-meta {
  display: flex;
  margin-top: 30px;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
  color: #c8e4e3;
  font-size: .9rem;
  font-weight: 700;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.article-meta span::before {
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: #82d7cf;
}

.article-page {
  padding: clamp(58px, 8vw, 104px) 0;
  background:
    linear-gradient(90deg, rgba(11, 123, 131, .045) 1px, transparent 1px),
    linear-gradient(rgba(11, 123, 131, .045) 1px, transparent 1px),
    #f7f4ec;
  background-size: 40px 40px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(230px, 310px);
  justify-content: space-between;
  align-items: start;
  gap: clamp(40px, 8vw, 110px);
}

.article-content {
  min-width: 0;
  color: #263b4e;
}

.direct-answer {
  margin: 0 0 44px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(6, 25, 36, .13);
  border-left: 7px solid var(--orange);
  border-radius: 8px 24px 8px 24px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(6, 25, 36, .08);
}

.direct-answer strong {
  display: block;
  margin-bottom: 9px;
  color: var(--blue-dark);
  font-size: .83rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.direct-answer p {
  margin: 0;
  color: #142d40;
  font-size: clamp(1.1rem, 1.8vw, 1.27rem);
  font-weight: 680;
  line-height: 1.62;
}

.article-content h2 {
  margin: 52px 0 16px;
  color: var(--ink);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
}

.article-content h3 {
  margin: 34px 0 10px;
  color: #17364b;
  font-size: clamp(1.25rem, 2.3vw, 1.65rem);
}

.article-content p,
.article-content li {
  color: #33495c;
  font-size: 1.06rem;
  line-height: 1.78;
}

.article-content ul,
.article-content ol {
  display: grid;
  margin: 20px 0 30px;
  padding-left: 23px;
  gap: 10px;
}

.article-content a {
  color: var(--blue-dark);
  font-weight: 780;
}

.article-callout {
  margin: 42px 0;
  padding: 28px;
  color: #fff;
  border-radius: 24px 7px 24px 7px;
  background:
    radial-gradient(circle at 100% 0, rgba(137, 226, 216, .18), transparent 18rem),
    #071f2d;
}

.article-callout strong {
  display: block;
  margin-bottom: 9px;
  color: #9fe1dc;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
}

.article-callout p {
  margin: 0;
  color: #eef8f7;
}

.article-aside {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 16px;
}

.article-aside-card {
  padding: 23px;
  border: 1px solid rgba(6, 25, 36, .12);
  border-radius: 20px 6px 20px 6px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 42px rgba(6, 25, 36, .07);
}

.article-aside-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.article-aside-card p {
  margin: 0 0 14px;
  color: #526173;
  font-size: .92rem;
  line-height: 1.6;
}

.article-aside-card a {
  color: var(--blue-dark);
  font-size: .88rem;
  font-weight: 850;
}

.article-related {
  padding: clamp(66px, 8vw, 106px) 0;
  color: #fff;
  background: #061924;
}

.article-related h2 {
  max-width: 760px;
  margin-bottom: 32px;
  color: #fff;
}

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

.article-related-card {
  display: grid;
  min-height: 240px;
  padding: 25px;
  align-content: space-between;
  gap: 26px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 22px 7px 22px 7px;
  background: rgba(255, 255, 255, .06);
}

.article-related-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1.25rem;
}

.article-related-card a {
  color: #9fe1dc;
}

.work-grid,
.demo-grid {
  display: grid;
  padding: clamp(65px, 8vw, 105px) 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.demo-card {
  display: grid;
  min-height: 430px;
  padding: clamp(28px, 4vw, 44px);
  align-content: space-between;
  gap: 34px;
  border: 1px solid rgba(6, 25, 36, .12);
  border-radius: 30px 8px 30px 8px;
  background:
    radial-gradient(circle at 100% 0, rgba(11, 123, 131, .15), transparent 23rem),
    #fff;
  box-shadow: 0 24px 65px rgba(6, 25, 36, .09);
}

.demo-card:nth-child(2) {
  background:
    radial-gradient(circle at 0 100%, rgba(240, 100, 73, .13), transparent 22rem),
    #efece3;
}

.demo-badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  color: #fff;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .08em;
  border-radius: 999px;
  background: var(--blue-dark);
}

.demo-card h2,
.demo-card h3 {
  margin: 18px 0 13px;
  color: var(--ink);
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
}

.demo-card p {
  color: #415468;
  font-size: 1.03rem;
  line-height: 1.7;
}

.system-map {
  display: grid;
  margin: 32px 0 46px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.system-node {
  position: relative;
  display: grid;
  min-height: 150px;
  padding: 18px;
  align-content: space-between;
  gap: 18px;
  color: #fff;
  border-radius: 19px 6px 19px 6px;
  background: #0a5961;
}

.system-node:nth-child(even) {
  background: #102f42;
}

.system-node:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -14px;
  content: "→";
  color: var(--orange);
  font-size: 1.35rem;
  font-weight: 900;
  transform: translateY(-50%);
}

.system-node span {
  color: #9fe1dc;
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .08em;
}

.system-node strong {
  color: #fff;
  font-size: 1rem;
}

.transparency-note {
  margin: 0 0 34px;
  padding: 20px 23px;
  color: #4b3a21;
  font-size: .96rem;
  font-weight: 680;
  line-height: 1.65;
  border: 1px solid rgba(169, 111, 22, .2);
  border-radius: 16px 5px 16px 5px;
  background: #fff4da;
}

.colorado-proof {
  display: grid;
  padding: clamp(64px, 8vw, 104px) 0;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  align-items: start;
  gap: clamp(34px, 7vw, 90px);
}

.colorado-proof-list {
  display: grid;
  gap: 12px;
}

.colorado-proof-list div {
  padding: 20px 22px;
  color: #21384b;
  font-size: 1rem;
  font-weight: 720;
  border: 1px solid rgba(6, 25, 36, .11);
  border-radius: 18px 6px 18px 6px;
  background: #fff;
}

.insights-preview {
  padding: clamp(64px, 8vw, 105px) 0;
  background: #edf0ea;
}

.insights-preview-head {
  display: flex;
  margin-bottom: 32px;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}

.insights-preview-head h2 {
  max-width: 730px;
  margin: 0;
}

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

.insights-preview .insight-card {
  min-height: 285px;
  padding: 28px;
}

.insights-preview .insight-card h3 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

@media (min-width: 861px) and (max-width: 1180px) {
  .brand-header-full-logo,
  .brand-header-full .brand-header-full-logo {
    width: 260px;
  }

  .primary-nav > a:not(.button),
  .faq-whisper {
    padding-right: 8px;
    padding-left: 8px;
    font-size: .77rem;
  }

  .primary-nav .button {
    padding-right: 13px;
    padding-left: 13px;
  }
}

@media (max-width: 900px) {
  .insights-intro,
  .article-layout,
  .colorado-proof {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-related-grid,
  .insights-preview-grid {
    grid-template-columns: 1fr;
  }

  .article-related-card {
    min-height: 180px;
  }

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

  .system-node:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 680px) {
  .insights-grid,
  .work-grid,
  .demo-grid {
    grid-template-columns: 1fr;
  }

  .insight-card {
    min-height: 290px;
  }

  .article-aside {
    grid-template-columns: 1fr;
  }

  .system-map {
    grid-template-columns: 1fr;
  }

  .system-node:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -19px;
    transform: translateX(50%) rotate(90deg);
  }

  .insights-preview-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ============================================================
   MOBILE LAYOUT SAFETY PATCH
   These rules intentionally affect mobile only. Desktop remains
   identical to the approved design.
   ============================================================ */
@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  main,
  main > section,
  .container,
  .hero-layout,
  .hero-copy,
  .hero-visual,
  .cta-layout,
  .solution-photo-panel,
  .founder-profile,
  .founder-aside,
  .founder-story,
  .faq-intro-grid,
  .faq-layout,
  .faq-index,
  .faq-groups,
  .guide-shell,
  .guide-header,
  .guide-step,
  .guide-choice-grid {
    min-width: 0;
    max-width: 100%;
  }

  .container {
    width: min(calc(100% - 32px), var(--max));
    margin-inline: auto;
  }

  .hero-layout,
  .cta-layout,
  .solution-photo-panel,
  .stock-band,
  .founder-profile,
  .faq-intro-grid,
  .faq-layout,
  .audit-layout,
  .fair-grid,
  .fair-section-intro,
  .modern-grid,
  .evolution-stage,
  .evolution-visual,
  .why-standard-close,
  .footer-horizon-top,
  .footer-horizon-lower,
  .article-layout,
  .colorado-proof,
  .insights-intro {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .hero-layout > *,
  .cta-layout > *,
  .solution-photo-panel > *,
  .stock-band > *,
  .founder-profile > *,
  .faq-intro-grid > *,
  .faq-layout > *,
  .audit-layout > *,
  .evolution-stage > *,
  .evolution-visual > * {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  h1,
  h2,
  h3,
  p,
  li,
  summary,
  legend,
  a,
  strong,
  small {
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
  }

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

  /* Homepage hero and closing call to action */
  .dark-hero {
    min-height: auto !important;
    padding: 142px 0 76px !important;
  }

  .hero-layout {
    display: grid;
    gap: 34px;
  }

  .hero-copy h1 {
    width: 100%;
    max-width: none;
    font-size: clamp(2.55rem, 12vw, 3.75rem);
    line-height: 1.02;
  }

  .hero-copy .lead,
  .cta-layout p {
    max-width: none;
  }

  .hero-visual {
    margin-top: 4px;
  }

  .journey-card {
    width: 100%;
    border-radius: 28px 10px 28px 10px;
  }

  .journey-stage {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    padding: 16px;
  }

  .journey-stage b {
    grid-column: 2;
    justify-self: start;
  }

  .proof-strip {
    min-height: 68px;
    justify-content: flex-start;
    gap: 25px;
    padding: 11px 18px;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .proof-strip::-webkit-scrollbar {
    display: none;
  }

  .final-cta {
    padding: 68px 0 !important;
  }

  .cta-layout {
    gap: 24px;
  }

  .cta-layout h2 {
    max-width: none;
    font-size: clamp(2.1rem, 10vw, 3.2rem);
    line-height: 1.06;
  }

  .cta-layout .button,
  .faq-cta-actions {
    width: 100%;
  }

  .faq-cta-actions {
    display: grid;
  }

  /* Responsive images: show the complete picture instead of a narrow crop */
  .solution-photo-panel {
    margin-top: 36px;
  }

  .solution-photo-panel img,
  .stock-band > img,
  .modern-photo > img,
  .founder-portrait img,
  .evolution-visual img,
  .stock-photo {
    display: block;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
    object-position: center !important;
  }

  .solution-photo-panel > div,
  .stock-band-copy {
    padding: 28px 22px 32px;
  }

  /* Keep the homepage connection story compact and intentional on phones. */
  .modern-grid {
    gap: 38px !important;
  }

  .modern-photo {
    display: grid;
    min-height: 0 !important;
    gap: 16px;
  }

  .modern-photo > img {
    border-radius: 28px 28px 12px 12px !important;
    box-shadow: 8px 8px 0 var(--orange) !important;
  }

  .modern-photo-card {
    position: static !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    padding: 22px !important;
    border-radius: 12px 24px 12px 24px !important;
    box-shadow: none !important;
  }

  .modern-photo-card strong {
    margin-bottom: 9px;
    font-size: 1.08rem;
    line-height: 1.4;
  }

  .modern-photo-card small {
    font-size: .96rem;
    line-height: 1.65;
  }

  .module-top {
    flex-wrap: wrap;
  }

  /* About Brian: stack the portrait and story, keeping all copy onscreen */
  .founder-profile {
    gap: 34px;
  }

  .founder-aside,
  .founder-story {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .founder-portrait {
    width: 100%;
    max-width: 470px;
    margin-inline: auto;
    border-radius: 150px 150px 22px 22px;
    box-shadow: 10px 10px 0 var(--orange);
  }

  .founder-story {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .founder-story h2 {
    font-size: clamp(2rem, 9.5vw, 3rem);
    line-height: 1.08;
  }

  .founder-story .section-lead {
    width: 100%;
    max-width: none;
  }

  .founder-actions {
    display: grid;
  }

  .evolution-intro {
    grid-row: auto;
  }

  .evolution-loop {
    grid-template-columns: minmax(0, 1fr);
  }

  /* FAQ: place the topic index above the answers */
  .faq-intro {
    padding: 54px 0 28px;
  }

  .faq-intro-grid,
  .faq-layout {
    gap: 28px;
  }

  .faq-index {
    position: static;
    top: auto;
    width: 100%;
    padding: 20px;
  }

  .faq-index img {
    width: 86px;
    height: 86px;
    object-fit: contain;
  }

  .faq-group,
  .faq-group-heading,
  .faq-group details,
  .faq-group summary,
  .faq-group details > div {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .faq-group-heading {
    padding: 20px 18px;
  }

  .faq-group-heading h2 {
    font-size: 1.5rem;
    line-height: 1.25;
  }

  .faq-group summary {
    padding: 18px 55px 18px 18px;
  }

  .faq-group details p {
    padding: 0 18px 20px;
  }

  /* Guided pricing questionnaire */
  .recommendation-wizard {
    padding: 10px 0 0;
  }

  .guide-shell {
    width: calc(100% - 16px);
    min-height: calc(100dvh - 10px);
    margin-inline: auto;
    border-radius: 24px 8px 24px 8px;
  }

  .guide-header {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 14px;
    padding: 24px 18px;
  }

  .guide-header h2 {
    max-width: none;
    font-size: clamp(1.9rem, 9.5vw, 2.75rem);
    line-height: 1.08;
  }

  .guide-close {
    justify-self: start;
  }

  .guide-shell form {
    width: 100%;
    min-width: 0;
    padding: 22px 16px 28px;
  }

  .guide-step,
  .guide-step.active,
  .guide-step fieldset,
  fieldset.guide-step {
    width: 100%;
    min-width: 0;
    min-inline-size: 0;
    max-width: 100%;
  }

  .guide-step legend {
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.8rem, 9vw, 2.6rem);
    line-height: 1.1;
  }

  .guide-choice-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .guide-choice-grid label,
  .guide-choice-grid label > span {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .guide-choice-grid label > span,
  .guide-choice-grid label:nth-child(even) > span {
    min-height: 0;
    padding: 22px 55px 22px 18px;
  }

  .guide-controls {
    justify-content: stretch;
  }

  .guide-controls .button {
    width: 100%;
  }

  /* Keep supporting cards, forms and footer inside the viewport */
  .form-grid,
  .catalog-tier-grid,
  .footer-capability-line {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .footer-capability-line i {
    display: none;
  }

  .footer-contact-board,
  .footer-bottom,
  .footer-bottom > div {
    width: 100%;
    min-width: 0;
  }

  .footer-contact-board strong,
  .footer-bottom a {
    overflow-wrap: anywhere;
  }

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

  .tldr-launcher {
    right: 12px;
    bottom: 12px;
    min-width: 104px;
  }
}

/* =========================================================
   SIMPLE PRICING SYSTEM — 2026-07-30
   Three outcome-based plans replace the line-item builder.
   ========================================================= */

.simple-pricing-page {
  background: #eef1ed;
}

.pricing-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(92px, 11vw, 150px) 0 clamp(76px, 9vw, 118px);
  color: #f7fbf9;
  background:
    radial-gradient(circle at 78% 28%, rgba(94, 177, 167, .2), transparent 29%),
    radial-gradient(circle at 10% 92%, rgba(186, 229, 143, .1), transparent 31%),
    linear-gradient(135deg, #07111d 0%, #0e2230 58%, #101d25 100%);
}

.pricing-hero-simple {
  padding: clamp(68px, 8vw, 104px) 0 clamp(62px, 7vw, 90px);
}

.pricing-hero-copy {
  max-width: 840px;
}

.pricing-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  opacity: .24;
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 88%);
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.pricing-hero::after {
  position: absolute;
  inset: auto -12% -42% 38%;
  z-index: -1;
  height: 90%;
  content: "";
  opacity: .52;
  border: 1px solid rgba(175, 224, 215, .22);
  border-radius: 50%;
  transform: rotate(-10deg);
}

.pricing-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(174, 220, 214, .17);
  border-radius: 50%;
  pointer-events: none;
}

.pricing-orbit::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: #b9e4a3;
  box-shadow: 0 0 28px rgba(185, 228, 163, .55);
}

.pricing-orbit-one {
  top: -240px;
  right: -120px;
  width: 620px;
  height: 620px;
  animation: pricing-orbit-spin 26s linear infinite;
}

.pricing-orbit-one::after {
  top: 49%;
  left: -5px;
  width: 10px;
  height: 10px;
}

.pricing-orbit-two {
  bottom: -330px;
  left: -250px;
  width: 700px;
  height: 700px;
  animation: pricing-orbit-spin 34s linear infinite reverse;
}

.pricing-orbit-two::after {
  right: 13%;
  bottom: 15%;
  width: 8px;
  height: 8px;
}

@keyframes pricing-orbit-spin {
  to { transform: rotate(360deg); }
}

.pricing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .74fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

.pricing-hero h1 {
  max-width: 720px;
  margin: 12px 0 24px;
  color: #fff;
  font-size: clamp(2.45rem, 3.6vw, 3.45rem);
  letter-spacing: -.04em;
  line-height: 1.06;
}

.pricing-hero .lead {
  max-width: 710px;
  margin: 0;
  color: #d5e1e4;
  font-size: clamp(1.08rem, 1.7vw, 1.34rem);
  line-height: 1.65;
}

.pricing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.pricing-rule-card {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 3.5vw, 42px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .045)),
    rgba(6, 17, 27, .62);
  border: 1px solid rgba(206, 235, 229, .21);
  border-radius: 6px 34px 6px 34px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .3);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.pricing-rule-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 110px;
  height: 6px;
  content: "";
  background: linear-gradient(90deg, #70aea9, #c3e897);
}

.pricing-rule-card > span,
.simple-plan-top > span,
.pricing-special-paths article > span,
.pricing-selection-summary > small {
  color: #a7d6d0;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .13em;
}

.pricing-rule-card > strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  letter-spacing: -.035em;
  line-height: 1.2;
}

.pricing-rule-card ol {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-rule-card li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.pricing-rule-card li i {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #10222d;
  background: #c1e49f;
  border-radius: 50%;
  font-style: normal;
  font-weight: 900;
}

.pricing-rule-card li div {
  display: grid;
  gap: 4px;
}

.pricing-rule-card li b {
  color: #f7fbfa;
  font-size: 1rem;
}

.pricing-rule-card li small {
  color: #bccbd0;
  font-size: .92rem;
  line-height: 1.45;
}

.pricing-proof-bar {
  color: #e5efec;
  background: #101c24;
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.pricing-proof-bar .container {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: clamp(17px, 4vw, 52px);
}

.pricing-proof-bar span {
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .13em;
}

.pricing-proof-bar i {
  width: 5px;
  height: 5px;
  background: #a7cf8e;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(167, 207, 142, .45);
}

.pricing-plans-section {
  position: relative;
  overflow: hidden;
  padding-top: clamp(54px, 7vw, 88px);
}

.pricing-plans-section::after {
  position: absolute;
  top: 90px;
  right: -140px;
  width: 420px;
  height: 420px;
  content: "";
  opacity: .3;
  border: 1px solid #9fb3ad;
  border-radius: 50%;
  pointer-events: none;
}

.pricing-section-heading {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.pricing-section-heading h2 {
  max-width: 800px;
  margin: 10px 0 18px;
  color: #10222d;
  font-size: clamp(2.35rem, 4.9vw, 4.5rem);
  letter-spacing: -.05em;
  line-height: 1.02;
}

.pricing-section-heading > p:last-child {
  max-width: 720px;
  margin: 0;
  color: #4d6268;
  font-size: 1.08rem;
  line-height: 1.7;
}

.simple-plan-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pricing-plan-note {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1fr);
  gap: 22px 42px;
  align-items: center;
  margin-bottom: 28px;
  padding: 22px 25px;
  color: #1e3540;
  background: #fff;
  border: 1px solid #cbd5d0;
  border-left: 5px solid #5a8f89;
  border-radius: 6px 18px 6px 18px;
  box-shadow: 0 12px 30px rgba(17, 38, 47, .07);
}

.pricing-plan-note > div {
  display: grid;
  gap: 4px;
}

.pricing-plan-note span {
  color: #49716f;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.pricing-plan-note strong {
  color: #142b35;
  font-family: "Sora", sans-serif;
  font-size: 1.03rem;
}

.pricing-plans-section .pricing-plan-note p {
  margin: 0;
  color: #435a60 !important;
  line-height: 1.6;
}

.simple-plan-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(25px, 3vw, 38px);
  color: #152832;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .95), rgba(244, 247, 243, .96)),
    #fff;
  border: 1px solid #cad4cf;
  border-radius: 7px 28px 7px 28px;
  box-shadow: 0 18px 56px rgba(17, 38, 47, .1);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.simple-plan-card::after {
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 150px;
  height: 150px;
  content: "";
  opacity: .5;
  border: 1px solid #a8bdb4;
  border-radius: 50%;
  transition: transform .4s ease;
}

.simple-plan-card:hover,
.simple-plan-card.is-selected {
  z-index: 2;
  border-color: #6e9994;
  box-shadow: 0 26px 70px rgba(17, 38, 47, .17);
  transform: translateY(-7px);
}

.simple-plan-card:hover::after,
.simple-plan-card.is-selected::after {
  transform: scale(1.18);
}

.simple-plan-featured {
  color: #eff7f5;
  background:
    radial-gradient(circle at 80% 10%, rgba(152, 205, 179, .18), transparent 31%),
    linear-gradient(145deg, #122c39, #0b1b27 70%);
  border-color: #315663;
  box-shadow: 0 28px 70px rgba(7, 22, 31, .25);
}

.simple-plan-featured::after {
  border-color: rgba(181, 225, 205, .34);
}

.simple-plan-ribbon {
  margin: calc(clamp(25px, 3vw, 38px) * -1) calc(clamp(25px, 3vw, 38px) * -1) 28px;
  padding: 11px 17px;
  color: #13242d;
  background: linear-gradient(90deg, #b6db9c, #d1ecb9);
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-align: center;
}

.simple-plan-top {
  min-height: 180px;
}

.simple-plan-top > span {
  color: #587876;
}

.simple-plan-featured .simple-plan-top > span {
  color: #acd2cc;
}

.simple-plan-top h3 {
  margin: 10px 0 13px;
  color: #10222d;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  letter-spacing: -.045em;
}

.simple-plan-featured .simple-plan-top h3 {
  color: #fff;
}

.simple-plan-top p {
  margin: 0;
  color: #586b70;
  line-height: 1.62;
}

.simple-plan-featured .simple-plan-top p {
  color: #c8d7da;
}

.simple-plan-price {
  display: flex;
  align-items: flex-start;
  margin-top: 18px;
  color: #10222d;
}

.simple-plan-featured .simple-plan-price {
  color: #fff;
}

.simple-plan-price sup {
  margin: 10px 3px 0 0;
  font-size: 1.35rem;
  font-weight: 800;
}

.simple-plan-price strong {
  font-family: "Sora", sans-serif;
  font-size: clamp(3.25rem, 5vw, 4.6rem);
  letter-spacing: -.07em;
  line-height: 1;
}

.simple-plan-price small {
  align-self: flex-end;
  margin: 0 0 8px 7px;
  color: #62757a;
  font-size: .88rem;
  font-weight: 800;
}

.simple-plan-featured .simple-plan-price small {
  color: #afc4c8;
}

.simple-plan-term {
  margin: 5px 0 20px;
  color: #6b7b7e;
  font-size: .78rem;
  font-weight: 750;
}

.simple-plan-upfront {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 13px 0 0;
  padding: 12px 13px;
  color: #263e47;
  background: #edf2ec;
  border: 1px solid #d2ddd6;
  border-radius: 9px;
}

.simple-plan-upfront > span {
  display: grid;
  gap: 2px;
}

.simple-plan-upfront small {
  color: #607775;
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.simple-plan-upfront strong {
  color: #19323c;
  font-size: .84rem;
}

.simple-plan-upfront > b {
  padding: 7px 9px;
  color: #18323a;
  background: #c9e6b6;
  border-radius: 999px;
  font-size: .74rem;
  white-space: nowrap;
}

.simple-plan-featured .simple-plan-upfront {
  color: #edf6f3;
  background: rgba(255, 255, 255, .075);
  border-color: rgba(255, 255, 255, .14);
}

.simple-plan-featured .simple-plan-upfront small {
  color: #b9cecf;
}

.simple-plan-featured .simple-plan-upfront strong {
  color: #fff;
}

.simple-plan-featured .simple-plan-term {
  color: #a9bec3;
}

.simple-plan-card ul {
  display: grid;
  gap: 0;
  flex: 1;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.simple-plan-card li {
  position: relative;
  padding: 11px 0 11px 28px;
  color: #42585e;
  border-top: 1px solid #dce3df;
  line-height: 1.5;
}

.simple-plan-card li::before {
  position: absolute;
  top: 13px;
  left: 2px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  content: "✓";
  color: #12303a;
  background: #c5e2bc;
  border-radius: 50%;
  font-size: .67rem;
  font-weight: 900;
}

.simple-plan-featured li {
  color: #d1dcde;
  border-top-color: rgba(255, 255, 255, .12);
}

.simple-plan-featured li::before {
  background: #b9df9f;
}

.simple-plan-card .button {
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.simple-plan-card.is-selected .button-outline-dark {
  color: #fff;
  background: #173845;
  border-color: #173845;
}

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

.pricing-special-heading {
  max-width: 800px;
  margin: clamp(54px, 7vw, 84px) 0 0;
}

.pricing-special-heading > span {
  color: #476f6d;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.pricing-special-heading h2 {
  margin: 9px 0 10px;
  color: #10222d;
  font-size: clamp(1.75rem, 3.3vw, 2.8rem);
  letter-spacing: -.04em;
  line-height: 1.08;
}

.pricing-special-heading p {
  max-width: 740px;
  margin: 0;
  color: #40575d !important;
  font-size: 1rem;
  line-height: 1.65;
}

.pricing-special-paths article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 24px;
  align-items: end;
  padding: clamp(24px, 3vw, 35px);
  color: #dce8e6;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .055), transparent 55%),
    #182b34;
  border: 1px solid #314952;
  border-radius: 20px 5px 20px 5px;
}

.pricing-special-paths article > span {
  grid-column: 1 / -1;
}

.pricing-special-paths h3 {
  margin: 0 0 7px;
  color: #fff !important;
  font-size: 1.3rem;
}

.pricing-plans-section .pricing-special-paths article p {
  margin: 0;
  color: #edf4f3 !important;
  font-size: 1rem;
  line-height: 1.58;
  opacity: 1 !important;
  -webkit-text-fill-color: #edf4f3 !important;
}

.pricing-plans-section .pricing-special-paths article p strong {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.pricing-special-paths a {
  color: #cbe8b1;
  font-size: .88rem;
  font-weight: 850;
  white-space: nowrap;
}

.pricing-special-paths a b {
  margin-left: 7px;
}

.pricing-guidance-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px 42px;
  align-items: center;
  margin-top: 22px;
  padding: clamp(26px, 4vw, 42px);
  color: #eff6f4;
  background:
    radial-gradient(circle at 87% 20%, rgba(189, 227, 157, .15), transparent 28%),
    linear-gradient(135deg, #0d2230, #173943);
  border: 1px solid #355763;
  border-radius: 7px 28px 7px 28px;
  box-shadow: 0 22px 58px rgba(14, 34, 43, .17);
}

.pricing-guidance-callout > div:first-child {
  max-width: 720px;
}

.pricing-guidance-callout span {
  color: #b7dda3;
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.pricing-guidance-callout h3 {
  margin: 8px 0 9px;
  color: #fff;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  letter-spacing: -.04em;
  line-height: 1.12;
}

.pricing-plans-section .pricing-guidance-callout p {
  margin: 0;
  color: #d2dfe0 !important;
  font-size: 1rem;
  line-height: 1.62;
}

.pricing-guidance-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: flex-end;
}

.pricing-guidance-actions .button {
  white-space: nowrap;
}

.pricing-compare-section {
  position: relative;
  overflow: hidden;
  color: #edf5f3;
  background:
    radial-gradient(circle at 50% 100%, rgba(103, 168, 158, .18), transparent 38%),
    #081720;
}

.pricing-compare-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .18;
  background-image:
    linear-gradient(30deg, rgba(255,255,255,.07) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.07) 87.5%),
    linear-gradient(150deg, rgba(255,255,255,.07) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.07) 87.5%);
  background-size: 72px 126px;
}

.pricing-section-heading-light {
  position: relative;
}

.pricing-section-heading-light h2 {
  color: #fff;
}

.pricing-sentence-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pricing-sentence-grid article {
  min-height: 230px;
  padding: clamp(24px, 3vw, 38px);
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(210, 235, 231, .14);
  border-radius: 4px 25px 4px 25px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.pricing-sentence-grid span {
  color: #b8dda5;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.pricing-sentence-grid p {
  margin: 28px 0 0;
  color: #f3f8f7;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.25rem, 2.3vw, 1.75rem);
  letter-spacing: -.03em;
  line-height: 1.42;
}

.pricing-fit-note {
  position: relative;
  max-width: 900px;
  margin: 28px auto 0;
  padding: 22px 26px;
  color: #c9d8da;
  background: rgba(168, 213, 190, .08);
  border: 1px solid rgba(168, 213, 190, .18);
  border-radius: 12px;
  line-height: 1.65;
  text-align: center;
}

.pricing-fit-note strong {
  color: #d2edbb;
}

.pricing-request-section {
  background:
    radial-gradient(circle at 5% 95%, rgba(111, 164, 151, .13), transparent 27%),
    #eef1ed;
}

.pricing-request-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(520px, 1.1fr);
  gap: clamp(40px, 7vw, 92px);
  align-items: start;
}

.pricing-request-copy {
  position: sticky;
  top: 116px;
}

.pricing-request-copy h2 {
  margin: 10px 0 20px;
  color: #10222d;
  font-size: clamp(2rem, 3.3vw, 3rem);
  letter-spacing: -.04em;
  line-height: 1.08;
}

.pricing-request-copy > p:not(.eyebrow) {
  color: #4e6369;
  line-height: 1.72;
}

.pricing-selection-summary {
  position: relative;
  display: grid;
  gap: 5px;
  overflow: hidden;
  margin-top: 30px;
  padding: 24px;
  color: #e8f1ef;
  background: #132a35;
  border-radius: 4px 22px 4px 22px;
  box-shadow: 0 18px 42px rgba(17, 38, 47, .17);
}

.pricing-selection-summary::after {
  position: absolute;
  top: -55px;
  right: -55px;
  width: 140px;
  height: 140px;
  content: "";
  border: 1px solid rgba(191, 228, 183, .28);
  border-radius: 50%;
}

.pricing-selection-summary > strong {
  padding-right: 30px;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 1.4rem;
}

.pricing-selection-summary > span {
  display: flex;
  flex-direction: column;
  color: #b9cbce;
  font-size: .9rem;
}

.pricing-selection-summary em {
  margin-top: 7px;
  color: #d7edc1;
  font-size: .84rem;
  font-style: normal;
  font-weight: 850;
}

.pricing-selection-summary b {
  color: #d7edc1;
}

.pricing-request-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-request-assurances li {
  padding: 8px 11px;
  color: #435e61;
  background: rgba(255, 255, 255, .64);
  border: 1px solid #c8d3ce;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 800;
}

.pricing-plan-form {
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(245,248,245,.98)),
    #fff;
}

.compact-plan-choice,
.compact-billing-choice {
  display: grid;
  gap: 9px;
  margin: 0 0 26px;
  padding: 0;
  border: 0;
}

.compact-plan-choice {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.compact-plan-choice legend,
.compact-billing-choice legend {
  grid-column: 1 / -1;
  margin-bottom: 4px;
  color: #213740;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.compact-plan-choice label,
.compact-billing-choice label {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.compact-plan-choice input,
.compact-billing-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.compact-plan-choice label > span,
.compact-billing-choice label > span {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 13px;
  color: #40565b;
  background: #f0f3f0;
  border: 1px solid #cbd5d0;
  border-radius: 10px;
  font-size: .8rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}

.compact-plan-choice label > span {
  flex-direction: column;
}

.compact-plan-choice label > span b {
  color: #18343e;
}

.compact-plan-choice input:checked + span,
.compact-billing-choice input:checked + span {
  color: #fff;
  background: #173743;
  border-color: #173743;
  box-shadow: 0 9px 22px rgba(23, 55, 67, .18);
  transform: translateY(-2px);
}

.compact-plan-choice input:checked + span b {
  color: #d4edbc;
}

.compact-plan-choice input:focus-visible + span,
.compact-billing-choice input:focus-visible + span {
  outline: 3px solid rgba(70, 125, 122, .3);
  outline-offset: 3px;
}

.compact-billing-choice label > span {
  min-height: 76px;
  flex-direction: column;
}

.compact-billing-choice span strong {
  font-size: .9rem;
}

.compact-billing-choice span small {
  color: #6c7d80;
  font-size: .74rem;
}

.compact-billing-choice input:checked + span small {
  color: #c7d7d9;
}

.pricing-fine-print {
  padding: 38px 0;
  color: #d9e4e2;
  background: #0b1922;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.pricing-fine-print .container {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: start;
}

.pricing-fine-print details {
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
}

.pricing-fine-print summary {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 16px 18px;
  color: #f3f8f7;
  cursor: pointer;
  font-size: .88rem;
  font-weight: 800;
  list-style: none;
}

.pricing-fine-print summary::-webkit-details-marker {
  display: none;
}

.pricing-fine-print summary span {
  color: #bfe1a7;
  font-size: 1.25rem;
}

.pricing-fine-print details[open] summary span {
  transform: rotate(45deg);
}

.pricing-fine-print details div {
  padding: 0 18px 18px;
}

.pricing-fine-print details p {
  margin: 0;
  color: #b8c8ca;
  font-size: .85rem;
  line-height: 1.62;
}

.pricing-fine-print .container > a {
  min-height: 62px;
  padding: 21px 8px;
  color: #cce9b4;
  font-size: .82rem;
  font-weight: 850;
  white-space: nowrap;
}

.pricing-fine-print .container > a b {
  margin-left: 5px;
}

@media (max-width: 1080px) {
  .pricing-hero-grid {
    grid-template-columns: 1fr;
  }

  .pricing-rule-card {
    max-width: 760px;
  }

  .simple-plan-grid {
    grid-template-columns: 1fr;
    max-width: 820px;
    margin: 0 auto;
  }

  .simple-plan-top {
    min-height: 0;
  }

  .pricing-special-paths {
    grid-template-columns: 1fr;
    max-width: 820px;
    margin-right: auto;
    margin-left: auto;
  }

  .pricing-request-grid {
    grid-template-columns: 1fr;
  }

  .pricing-request-copy {
    position: static;
    max-width: 820px;
  }

  .pricing-fine-print .container {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-fine-print .container > a {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .pricing-hero {
    padding-top: 76px;
  }

  .pricing-hero h1 {
    font-size: clamp(2.25rem, 10.5vw, 3.2rem);
  }

  .pricing-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .pricing-hero-actions .button {
    width: 100%;
  }

  .pricing-proof-bar .container {
    min-height: 66px;
    flex-wrap: wrap;
    gap: 7px 14px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .pricing-proof-bar span {
    font-size: .63rem;
  }

  .pricing-proof-bar i {
    width: 4px;
    height: 4px;
  }

  .simple-plan-card {
    border-radius: 5px 23px 5px 23px;
  }

  .pricing-plan-note {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 19px;
  }

  .simple-plan-card:hover,
  .simple-plan-card.is-selected {
    transform: translateY(-3px);
  }

  .pricing-special-paths article {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .pricing-special-paths a {
    margin-top: 5px;
    white-space: normal;
  }

  .pricing-guidance-callout {
    grid-template-columns: 1fr;
  }

  .pricing-guidance-actions {
    justify-content: flex-start;
  }

  .pricing-guidance-actions .button {
    width: 100%;
    white-space: normal;
  }

  .pricing-sentence-grid {
    grid-template-columns: 1fr;
  }

  .pricing-sentence-grid article {
    min-height: 0;
  }

  .pricing-sentence-grid p {
    margin-top: 16px;
  }

  .compact-plan-choice,
  .compact-billing-choice {
    grid-template-columns: 1fr;
  }

  .compact-plan-choice label > span,
  .compact-billing-choice label > span {
    min-height: 58px;
  }

  .pricing-plan-form {
    padding: 22px 17px;
  }

  .pricing-fine-print .container {
    grid-template-columns: 1fr;
  }

  .pricing-fine-print .container > a {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-orbit {
    animation: none;
  }

  .simple-plan-card {
    transition: none;
  }
}

/* Mobile proof strip: stack each promise so nothing runs offscreen. */
@media (max-width: 760px) {
  .proof-strip {
    display: grid;
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding: 8px 18px;
    overflow: visible;
    white-space: normal;
  }

  .proof-strip > span {
    display: flex;
    width: 100%;
    min-width: 0;
    min-height: 48px;
    justify-content: center;
    align-items: center;
    padding: 9px 0;
    text-align: center;
    line-height: 1.35;
    border-bottom: 1px solid rgba(6, 25, 36, .14);
  }

  .proof-strip > span:last-child {
    border-bottom: 0;
  }

  .proof-wolf {
    gap: 10px;
  }

  .proof-wolf img {
    flex: 0 0 36px;
  }
}

/* 2026-07-30 clarity rebuild: concrete homepage and transparent pricing */
.hero-service-list {
  display: grid;
  max-width: 710px;
  margin: 27px 0 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.hero-service-list li {
  position: relative;
  padding-left: 30px;
  color: #f6fbfc;
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  font-weight: 700;
  line-height: 1.55;
}

.hero-service-list li::before {
  position: absolute;
  top: .47em;
  left: 1px;
  width: 12px;
  height: 12px;
  content: "";
  border: 2px solid #fff;
  border-radius: 50%;
  background: #d9795d;
  box-shadow: 0 0 0 5px rgba(217, 121, 93, .18);
}

.clarity-offer {
  color: #102b36;
  background:
    radial-gradient(circle at 86% 4%, rgba(28, 128, 135, .10), transparent 28rem),
    #f7f5ef;
}

.clarity-section-head {
  max-width: 910px;
  margin-bottom: 40px;
}

.clarity-section-head h2 {
  max-width: 850px;
  margin: 0;
  color: #102b36;
  font-size: clamp(2.25rem, 4.4vw, 4.75rem);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.clarity-section-head > p:last-child {
  max-width: 800px;
  margin: 20px 0 0;
  color: #405860;
  font-size: clamp(1.04rem, 1.4vw, 1.16rem);
  line-height: 1.75;
}

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

.clarity-offer-card {
  display: flex;
  min-width: 0;
  min-height: 440px;
  padding: 30px;
  flex-direction: column;
  color: #17323d;
  border: 1px solid #cbd8d6;
  border-radius: 24px 8px 24px 8px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 19px 45px rgba(25, 57, 67, .08);
}

.clarity-offer-card--foundation {
  color: #fff;
  border-color: #163d48;
  background:
    radial-gradient(circle at 100% 0, rgba(101, 194, 189, .23), transparent 16rem),
    #153745;
}

.clarity-offer-card-top {
  display: flex;
  min-height: 60px;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

.clarity-offer-card-top > span,
.clarity-path-card > span,
.build-choice-heading > span,
.visible-price-board-head > div > span {
  color: #247277;
  font-size: .78rem;
  font-weight: 850;
  line-height: 1.3;
  letter-spacing: .12em;
}

.clarity-offer-card--foundation .clarity-offer-card-top > span {
  color: #bde9e5;
}

.clarity-offer-card-top > strong {
  flex: 0 0 auto;
  color: #0d303c;
  font-family: Sora, sans-serif;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -.04em;
  white-space: nowrap;
}

.clarity-offer-card--foundation .clarity-offer-card-top > strong {
  color: #fff;
}

.clarity-offer-card-top small {
  font-family: Manrope, sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 0;
}

.clarity-offer-card h3 {
  margin: 24px 0 0;
  color: inherit;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.18;
  letter-spacing: -.03em;
}

.clarity-offer-card ul {
  display: grid;
  margin: 25px 0 30px;
  padding: 0;
  gap: 13px;
  list-style: none;
}

.clarity-offer-card li {
  position: relative;
  padding-left: 23px;
  color: #4a5f66;
  font-size: .98rem;
  line-height: 1.55;
}

.clarity-offer-card--foundation li {
  color: #dcebee;
}

.clarity-offer-card li::before {
  position: absolute;
  top: .56em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: #d9795d;
}

.clarity-offer-card li b {
  color: #173743;
}

.clarity-offer-card--foundation li b {
  color: #fff;
}

.clarity-offer-card > a {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  align-items: center;
  gap: 8px;
  color: #155f65;
  font-weight: 850;
  text-underline-offset: 5px;
}

.clarity-offer-card--foundation > a {
  color: #fff;
}

.clarity-offer-bottom {
  display: flex;
  margin-top: 18px;
  padding: 24px 28px;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: #17333e;
  border: 1px solid #ccd9d8;
  border-radius: 9px 22px 9px 22px;
  background: #e8efec;
}

.clarity-offer-bottom p {
  max-width: 720px;
  margin: 0;
  color: #3b535b;
  font-size: 1rem;
  line-height: 1.65;
}

.clarity-offer-bottom p strong {
  color: #122f3b;
}

.clarity-process {
  color: #fff;
  background:
    radial-gradient(circle at 10% 10%, rgba(68, 167, 166, .20), transparent 26rem),
    linear-gradient(135deg, #091923, #102f3b 70%, #0a1b24);
}

.clarity-section-head--light h2 {
  color: #fff;
}

.clarity-section-head--light > p:last-child {
  color: #cedde1;
}

.clarity-process-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr);
  align-items: stretch;
  gap: 10px;
}

.clarity-process-flow article {
  min-width: 0;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 19px 6px 19px 6px;
  background: rgba(255, 255, 255, .07);
}

.clarity-process-flow article > span {
  color: #9edbd6;
  font-size: .75rem;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: .12em;
}

.clarity-process-flow article > strong {
  display: block;
  margin-top: 17px;
  color: #fff;
  font-size: 1.12rem;
  line-height: 1.35;
}

.clarity-process-flow article > p {
  margin: 11px 0 0;
  color: #cbdade;
  font-size: .94rem;
  line-height: 1.62;
}

.clarity-process-flow > i {
  align-self: center;
  color: #e18b70;
  font-size: 1.5rem;
  font-style: normal;
  text-align: center;
}

.clarity-process-note {
  max-width: 910px;
  margin: 26px 0 0;
  padding-left: 18px;
  color: #cbdade;
  font-size: 1rem;
  line-height: 1.7;
  border-left: 4px solid #e18b70;
}

.clarity-process-note strong {
  color: #fff;
}

.clarity-paths {
  color: #122f3a;
  background:
    linear-gradient(rgba(17, 58, 68, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 58, 68, .055) 1px, transparent 1px),
    #eef2ef;
  background-size: 46px 46px;
}

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

.clarity-path-card {
  min-width: 0;
  padding: clamp(28px, 4vw, 48px);
  color: #16323d;
  border: 1px solid #c5d3d1;
  border-radius: 28px 8px 28px 8px;
  background: #fff;
  box-shadow: 0 22px 48px rgba(15, 47, 57, .09);
}

.clarity-path-card--audit {
  color: #fff;
  border-color: #183f4b;
  background:
    radial-gradient(circle at 100% 0, rgba(217, 121, 93, .20), transparent 20rem),
    #153744;
}

.clarity-path-card--audit > span {
  color: #b5e1dd;
}

.clarity-path-card h3 {
  margin: 17px 0 0;
  color: inherit;
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.clarity-path-card p {
  margin: 19px 0 0;
  color: #435a62;
  font-size: 1rem;
  line-height: 1.7;
}

.clarity-path-card--audit p {
  color: #d2e0e3;
}

.clarity-path-card ul {
  display: grid;
  margin: 25px 0 30px;
  padding: 0;
  gap: 11px;
  list-style: none;
}

.clarity-path-card li {
  position: relative;
  padding-left: 25px;
  color: #2c4852;
  font-weight: 720;
  line-height: 1.5;
}

.clarity-path-card--audit li {
  color: #eef6f7;
}

.clarity-path-card li::before {
  position: absolute;
  top: .4em;
  left: 0;
  content: "✓";
  color: #27777a;
  font-weight: 900;
}

.clarity-path-card--audit li::before {
  color: #e49379;
}

.clarity-assurance {
  display: grid;
  margin-top: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid #c6d4d1;
  border-radius: 8px 20px 8px 20px;
  background: rgba(255, 255, 255, .72);
}

.clarity-assurance span {
  position: relative;
  padding: 20px 24px 20px 43px;
  color: #334f58;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.45;
  border-right: 1px solid #c6d4d1;
}

.clarity-assurance span:last-child {
  border-right: 0;
}

.clarity-assurance span::before {
  position: absolute;
  top: 24px;
  left: 22px;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: #d9795d;
}

/* Static pricing board visible before any builder choice or form */
.visible-price-board {
  margin-top: 40px;
  overflow: hidden;
  color: #17323d;
  border: 1px solid #c3d2d0;
  border-radius: 30px 9px 30px 9px;
  background: #f7f8f4;
  box-shadow: 0 25px 65px rgba(17, 49, 59, .12);
}

.visible-price-board-head {
  display: grid;
  padding: clamp(28px, 4vw, 44px);
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
  align-items: end;
  gap: 28px;
  border-bottom: 1px solid #cbd7d5;
  background:
    radial-gradient(circle at 92% 0, rgba(36, 114, 119, .12), transparent 21rem),
    #edf2ef;
}

.visible-price-board-head h2,
.build-choice-heading h2 {
  margin: 10px 0 0;
  color: #102e39;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.06;
  letter-spacing: -.04em;
}

.visible-price-board-head > div > p {
  margin: 12px 0 0;
  color: #4b6269;
  font-size: 1rem;
}

.visible-price-promise {
  margin: 0;
  padding: 19px 22px;
  color: #294952;
  border: 1px solid #b8cecb;
  border-radius: 18px 5px 18px 5px;
  background: rgba(255, 255, 255, .78);
}

.visible-price-promise strong,
.visible-price-promise span {
  display: block;
  line-height: 1.5;
}

.visible-price-promise strong {
  color: #133842;
}

.visible-price-promise span {
  margin-top: 4px;
  color: #536a70;
  font-size: .88rem;
}

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

.visible-foundation-grid article {
  display: grid;
  min-width: 0;
  padding: clamp(25px, 4vw, 38px);
  align-content: start;
  border: 1px solid #ced9d7;
  border-radius: 22px 7px 22px 7px;
  background: #fff;
}

.visible-foundation-grid article > span {
  color: #27767a;
  font-size: .76rem;
  font-weight: 850;
  line-height: 1.3;
  letter-spacing: .1em;
}

.visible-foundation-grid article h3 {
  margin: 15px 0 0;
  color: #17333d;
  font-size: clamp(1.35rem, 2.3vw, 2.1rem);
  line-height: 1.18;
}

.visible-foundation-grid article > strong {
  display: block;
  margin-top: 22px;
  color: #123945;
  font-family: Sora, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -.05em;
}

.visible-foundation-grid article > strong sup {
  margin-right: 2px;
  font-size: .42em;
  vertical-align: top;
}

.visible-foundation-grid article > strong small {
  margin-left: 5px;
  font-family: Manrope, sans-serif;
  font-size: .25em;
  font-weight: 750;
  letter-spacing: 0;
}

.visible-foundation-grid article p {
  margin: 20px 0 0;
  color: #455d64;
  font-size: .98rem;
  line-height: 1.65;
}

.visible-foundation-grid article em {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  padding: 7px 10px;
  color: #31525a;
  font-size: .78rem;
  font-style: normal;
  font-weight: 850;
  border: 1px solid #c5d4d1;
  border-radius: 999px;
  background: #eef3f0;
}

.visible-foundation-grid .visible-foundation-featured {
  color: #fff;
  border-color: #183e49;
  background:
    radial-gradient(circle at 100% 0, rgba(91, 185, 182, .20), transparent 18rem),
    #153743;
}

.visible-foundation-featured > span,
.visible-foundation-featured h3,
.visible-foundation-featured > strong {
  color: #fff !important;
}

.visible-foundation-featured p {
  color: #d1e1e4 !important;
}

.visible-foundation-featured em {
  color: #dcebed !important;
  border-color: rgba(255, 255, 255, .2) !important;
  background: rgba(255, 255, 255, .08) !important;
}

.visible-line-items {
  border-top: 1px solid #cbd7d5;
}

.visible-line-items summary {
  display: flex;
  padding: 24px clamp(24px, 4vw, 42px);
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: #153540;
  cursor: pointer;
  list-style: none;
  background: #e8efec;
}

.visible-line-items summary::-webkit-details-marker {
  display: none;
}

.visible-line-items summary span strong,
.visible-line-items summary span small {
  display: block;
}

.visible-line-items summary span strong {
  font-size: 1.05rem;
}

.visible-line-items summary span small {
  margin-top: 4px;
  color: #50666d;
  font-size: .84rem;
}

.visible-line-items summary > b {
  flex: 0 0 auto;
  color: #17656a;
  font-size: .86rem;
}

.visible-line-items summary > b i {
  display: inline-grid;
  width: 26px;
  height: 26px;
  margin-left: 8px;
  place-items: center;
  font-style: normal;
  border: 1px solid #9ebcba;
  border-radius: 50%;
}

.visible-line-items[open] summary > b i {
  transform: rotate(45deg);
}

.visible-line-item-grid {
  display: grid;
  padding: 24px clamp(24px, 4vw, 42px) 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
}

.visible-line-item-grid > div {
  display: flex;
  min-width: 0;
  padding: 14px 0;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  border-bottom: 1px solid #d8e0de;
}

.visible-line-item-grid span {
  min-width: 0;
  color: #344f58;
  font-weight: 720;
  line-height: 1.4;
}

.visible-line-item-grid strong {
  flex: 0 0 auto;
  color: #123a45;
  white-space: nowrap;
}

.visible-line-items > p {
  margin: 0;
  padding: 15px clamp(24px, 4vw, 42px) 30px;
  color: #596d73;
  font-size: .86rem;
  line-height: 1.65;
}

.build-choice-heading {
  max-width: 860px;
  margin: clamp(50px, 7vw, 82px) 0 26px;
}

.build-choice-heading h2 {
  font-size: clamp(1.85rem, 3.5vw, 3rem);
}

.build-choice-heading p {
  max-width: 700px;
  margin: 13px 0 0;
  color: #4c626a;
  font-size: 1rem;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .clarity-offer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .clarity-offer-card {
    min-height: 0;
  }

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

  .clarity-process-flow > i {
    display: none;
  }
}

@media (max-width: 760px) {
  .hero-service-list {
    margin-top: 23px;
  }

  .hero-service-list li {
    padding-left: 27px;
    font-size: .98rem;
  }

  .clarity-section-head {
    margin-bottom: 27px;
  }

  .clarity-section-head h2 {
    font-size: clamp(2rem, 10vw, 3.05rem);
  }

  .clarity-offer-card {
    padding: 24px 21px;
    border-radius: 20px 6px 20px 6px;
  }

  .clarity-offer-card-top {
    min-height: 0;
    flex-direction: column;
    gap: 13px;
  }

  .clarity-offer-card h3 {
    margin-top: 21px;
  }

  .clarity-offer-bottom {
    padding: 22px;
    align-items: stretch;
    flex-direction: column;
  }

  .clarity-offer-bottom .button {
    width: 100%;
  }

  .clarity-process-flow,
  .clarity-path-grid,
  .clarity-assurance,
  .visible-price-board-head,
  .visible-foundation-grid,
  .visible-line-item-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .clarity-assurance span {
    border-right: 0;
    border-bottom: 1px solid #c6d4d1;
  }

  .clarity-assurance span:last-child {
    border-bottom: 0;
  }

  .visible-price-board {
    margin-top: 28px;
    border-radius: 23px 7px 23px 7px;
  }

  .visible-price-board-head {
    padding: 25px 20px;
    gap: 21px;
  }

  .visible-price-board-head h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .visible-foundation-grid {
    padding: 12px;
  }

  .visible-foundation-grid article {
    padding: 24px 20px;
  }

  .visible-foundation-grid article > strong {
    font-size: 3rem;
  }

  .visible-line-items summary {
    padding: 21px 19px;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .visible-line-item-grid {
    padding: 19px 20px 10px;
  }

  .visible-line-item-grid > div {
    padding: 13px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .visible-line-items > p {
    padding: 14px 20px 25px;
  }
}

/* 2026-07-30 sitewide clarity pass: concrete services, audit scope and work examples */
.price-tool-note {
  max-width: 760px;
  margin: 18px 0 0;
  color: #d8eaec;
  font-size: .94rem;
  line-height: 1.6;
}

.price-tool-note strong {
  color: #fff;
}

.module-price-list {
  display: grid;
  width: 100%;
  margin: 24px 0 0;
  gap: 8px;
}

.solution-builder .module-price-list > span {
  display: flex;
  min-height: 48px;
  padding: 11px 14px;
  align-items: center;
  gap: 8px;
  color: #344d57;
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.45;
  border: 1px solid #d3dedd;
  border-radius: 10px;
  background: #f3f6f4;
}

.solution-builder .module-price-list b {
  flex: 0 0 auto;
  color: #123a45;
  font-size: .94rem;
}

.solution-builder .module-example {
  margin-top: 20px;
  padding: 16px 17px;
  color: #3f555d !important;
  font-size: .92rem !important;
  line-height: 1.62 !important;
  border-left: 4px solid #d9795d;
  border-radius: 0 10px 10px 0;
  background: #f7f2eb;
}

.solution-builder .module-example strong {
  color: #183642;
}

.module-options-title {
  grid-column: 1 / -1;
  margin-bottom: 4px;
  color: #173641;
  font-size: .76rem;
  font-weight: 850;
  line-height: 1.3;
  letter-spacing: .1em;
}

.audit-scope-note {
  margin: 22px 0 0;
  padding: 18px 19px;
  color: #435a62;
  font-size: .94rem;
  line-height: 1.65;
  border: 1px solid #c8d7d4;
  border-radius: 16px 5px 16px 5px;
  background: #edf3ef;
}

.audit-scope-note strong {
  color: #153943;
}

.audit-points .audit-point {
  grid-template-columns: 68px minmax(0, 1fr);
}

.audit-points .audit-point > i {
  width: 62px;
  height: 40px;
  font-size: .63rem;
  letter-spacing: .055em;
}

.audit-submit-note {
  margin: 18px 0 0;
  padding: 14px 15px;
  color: #435861;
  font-size: .86rem;
  line-height: 1.6;
  border: 1px solid #cdd9d7;
  border-radius: 10px;
  background: #eef3f0;
}

.audit-submit-note strong {
  color: #173944;
}

.work-format-note {
  max-width: 920px;
  margin-top: 24px;
  padding: 17px 19px;
  color: #cfe3e5;
  font-size: .93rem;
  line-height: 1.65;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 16px 5px 16px 5px;
  background: rgba(5, 19, 27, .48);
}

.work-format-note strong {
  color: #fff;
}

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

.demo-card {
  min-height: 560px;
}

.demo-card:nth-child(3) {
  background:
    radial-gradient(circle at 100% 100%, rgba(63, 157, 154, .14), transparent 22rem),
    #e8efeb;
}

.demo-card h2 {
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
}

.demo-preview-list {
  display: grid;
  margin: 24px 0 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.demo-preview-list li {
  position: relative;
  padding-left: 24px;
  color: #334d58;
  font-size: .93rem;
  font-weight: 700;
  line-height: 1.5;
}

.demo-preview-list li::before {
  position: absolute;
  top: .38em;
  left: 0;
  content: "✓";
  color: #177078;
  font-weight: 900;
}

.demo-page-format {
  margin: -10px 0 34px;
  padding: 16px 18px;
  color: #435a63;
  font-size: .91rem;
  line-height: 1.65;
  border: 1px solid #cbd8d6;
  border-radius: 14px 5px 14px 5px;
  background: #eef3f0;
}

.demo-page-format strong {
  color: #143743;
}

.demo-price-example {
  margin: 38px 0;
  padding: clamp(24px, 4vw, 36px);
  color: #fff;
  border-radius: 26px 8px 26px 8px;
  background:
    radial-gradient(circle at 100% 0, rgba(83, 184, 179, .20), transparent 20rem),
    #133541;
  box-shadow: 0 22px 48px rgba(12, 43, 53, .16);
}

.demo-price-example > span {
  color: #a7dcd8;
  font-size: .73rem;
  font-weight: 850;
  line-height: 1.3;
  letter-spacing: .1em;
}

.article-content .demo-price-example h2 {
  margin: 12px 0 22px;
  color: #fff;
  font-size: clamp(1.65rem, 3.3vw, 2.5rem);
}

.demo-price-example > div {
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.demo-price-example > div > p {
  display: flex;
  margin: 0;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  color: #fff;
}

.demo-price-example > div > p strong {
  color: #fff;
  font-size: 1rem;
}

.demo-price-example > div > p b {
  flex: 0 0 auto;
  color: #fff;
  font-family: Sora, sans-serif;
  font-size: 1.2rem;
  white-space: nowrap;
}

.demo-price-example > div > small {
  display: block;
  margin-top: 6px;
  color: #c8dadd;
  font-size: .84rem;
  line-height: 1.55;
}

.article-content .demo-price-disclaimer {
  margin: 16px 0 0;
  color: #b9cfd3;
  font-size: .8rem;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .demo-card:nth-child(3) {
    min-height: 430px;
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .solution-builder .module-price-list > span {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .module-options-title {
    grid-column: auto;
  }

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

  .demo-card,
  .demo-card:nth-child(3) {
    min-height: 0;
    grid-column: auto;
  }

  .demo-price-example > div > p {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

/* 2026-07-30 contrast and texture polish */
.start-paths .build-choice-heading {
  position: relative;
  max-width: 980px;
  padding: clamp(25px, 4vw, 38px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 26px 8px 26px 8px;
  background:
    radial-gradient(circle at 100% 0, rgba(75, 191, 185, .18), transparent 21rem),
    linear-gradient(135deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .12),
    0 24px 55px rgba(0, 0, 0, .19);
}

.start-paths .build-choice-heading::after {
  position: absolute;
  top: -50px;
  right: -45px;
  width: 180px;
  height: 180px;
  content: "";
  opacity: .075;
  pointer-events: none;
  background: url("https://cdn.shopify.com/s/files/1/0686/5764/3564/files/Alpha_Intellux_Wolf_Head.png?v=1785014041") center / contain no-repeat;
}

.start-paths .build-choice-heading > span {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  color: #b9efea;
  border: 1px solid rgba(185, 239, 234, .28);
  border-radius: 999px;
  background: rgba(15, 108, 113, .24);
}

.start-paths .build-choice-heading h2 {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: #fff !important;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .22);
}

.start-paths .build-choice-heading p {
  position: relative;
  z-index: 1;
  max-width: 780px;
  color: #d9e8eb !important;
  font-weight: 600;
}

.adventure-controls [data-adventure-hint] {
  max-width: 660px;
  margin-inline: auto;
  padding: 12px 16px;
  color: #173743 !important;
  font-weight: 780;
  line-height: 1.55;
  border: 1px solid #bfd0ce;
  border-radius: 13px 5px 13px 5px;
  background: #edf3f0;
  box-shadow: inset 4px 0 0 #24777a;
}

/* A restrained material layer across content sections. */
main > section:not(.video-page-hero):not(.hero-video) {
  position: relative;
  isolation: isolate;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .11),
    inset 0 -1px 0 rgba(7, 31, 41, .08);
}

main > section:not(.video-page-hero):not(.hero-video)::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  opacity: .22;
  pointer-events: none;
  background-image:
    linear-gradient(115deg, transparent 0 48%, rgba(29, 97, 103, .08) 49%, transparent 50%),
    radial-gradient(circle at 1px 1px, rgba(17, 70, 77, .17) 1px, transparent 1.3px);
  background-size: 86px 86px, 24px 24px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 17%, #000 83%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 17%, #000 83%, transparent);
}

main > section.tone-dark:not(.video-page-hero)::before,
main > section.night::before,
main > section.final-cta::before,
main > section.work-hero::before,
main > section.insights-hero::before,
main > section.article-hero::before {
  opacity: .18;
  background-image:
    linear-gradient(115deg, transparent 0 48%, rgba(151, 224, 220, .1) 49%, transparent 50%),
    radial-gradient(circle at 1px 1px, rgba(206, 239, 238, .24) 1px, transparent 1.3px);
}

main > section.start-paths::before {
  opacity: .18;
  background-image:
    linear-gradient(115deg, transparent 0 48%, rgba(151, 224, 220, .10) 49%, transparent 50%),
    radial-gradient(circle at 1px 1px, rgba(206, 239, 238, .22) 1px, transparent 1.3px);
}

main > section:not(.video-page-hero):not(.hero-video) > .container,
main > section:not(.video-page-hero):not(.hero-video) > div > .container {
  position: relative;
  z-index: 1;
}

/* Fine corner-work gives primary cards a custom, architectural finish. */
.solution-module,
.clarity-offer-card,
.clarity-path-card,
.visible-price-board,
.form-card,
.demo-card,
.faq-group,
.article-content,
.article-aside-card {
  position: relative;
  isolation: isolate;
}

.solution-module::after,
.clarity-offer-card::after,
.clarity-path-card::after,
.form-card::after,
.demo-card::after,
.faq-group::after,
.article-aside-card::after {
  position: absolute;
  z-index: 0;
  top: 10px;
  right: 10px;
  width: 58px;
  height: 58px;
  content: "";
  opacity: .18;
  pointer-events: none;
  border-top: 2px solid #27777a;
  border-right: 2px solid #27777a;
  border-radius: 0 9px 0 0;
}

.solution-module > *,
.clarity-offer-card > *,
.clarity-path-card > *,
.form-card > *,
.demo-card > *,
.faq-group > *,
.article-aside-card > * {
  position: relative;
  z-index: 1;
}

.solution-module,
.clarity-offer-card,
.clarity-path-card,
.demo-card,
.form-card,
.visible-price-board {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .72),
    0 24px 62px rgba(7, 36, 46, .11);
}

.module-top {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    var(--ink) !important;
  background-size: 22px 22px;
}

.module-top::after {
  position: absolute;
  right: 18px;
  bottom: 0;
  width: 90px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, transparent, #d9795d);
}

.insights-preview,
.article-page,
.about-brian,
.clarity-offer,
.clarity-paths {
  background-attachment: scroll;
}

.insight-card,
.article-related-card,
.why-standard-card {
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, .06), transparent 38%),
    radial-gradient(circle at 100% 0, rgba(37, 122, 126, .11), transparent 16rem);
}

.fair-assurance-strip,
.clarity-assurance,
.footer-capability-line {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 20px 20px;
}

@media (max-width: 760px) {
  .start-paths .build-choice-heading {
    padding: 23px 20px;
    border-radius: 21px 7px 21px 7px;
  }

  .start-paths .build-choice-heading h2 {
    font-size: clamp(1.9rem, 9.5vw, 2.75rem);
  }

  .adventure-controls [data-adventure-hint] {
    width: 100%;
    padding: 12px 13px;
  }

  main > section:not(.video-page-hero):not(.hero-video)::before {
    opacity: .13;
    background-size: 72px 72px, 28px 28px;
  }

  .solution-module::after,
  .clarity-offer-card::after,
  .clarity-path-card::after,
  .form-card::after,
  .demo-card::after,
  .faq-group::after,
  .article-aside-card::after {
    width: 40px;
    height: 40px;
  }
}


/* 2026-07-30 final sitewide pricing and type-scale alignment */
:root {
  --max: 1320px;
}

/* Smaller, more useful display type across every major page section. */
h1 {
  font-size: clamp(2.65rem, 4.35vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: -.05em;
}

h2 {
  font-size: clamp(1.9rem, 3.1vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.hero-layout {
  grid-template-columns: minmax(0, 1.28fr) minmax(350px, .72fr);
  gap: clamp(36px, 5vw, 68px);
}

.hero-copy h1 {
  max-width: 940px;
  font-size: clamp(3rem, 4.15vw, 4.5rem);
  line-height: 1.02;
}

.page-hero h1,
.why-video-hero h1,
.insights-hero h1,
.article-hero h1,
.work-hero h1,
.colorado-hero h1 {
  max-width: 1060px;
  font-size: clamp(2.75rem, 4.15vw, 4.45rem);
  line-height: 1.03;
}

.clarity-section-head h2,
.why-standard-heading h2,
.solution-photo-panel h2,
.insights-preview-head h2,
.cta-layout h2,
.evolution-intro h2,
.footer-command-copy h2,
.start-paths-heading h2,
.pricing-section-heading h2,
.pricing-section-heading-light h2 {
  max-width: 980px;
  font-size: clamp(1.95rem, 3vw, 3.25rem);
  line-height: 1.08;
}

.dark-hero {
  min-height: 700px;
  padding: 145px 0 78px;
}

.section {
  padding: clamp(68px, 7.2vw, 108px) 0;
}

.clarity-section-head {
  max-width: 1040px;
}

/* Exact pricing detail presentation used outside the calculator. */
.offer-upfront-note {
  margin: 14px 0 0 !important;
  color: #506971 !important;
  font-size: .84rem !important;
  font-weight: 800;
  line-height: 1.45 !important;
}

.clarity-offer-card--foundation .offer-upfront-note {
  color: #d1e7e7 !important;
}

.pricing-detail-list li {
  display: grid;
  grid-template-columns: minmax(128px, auto) minmax(0, 1fr);
  align-items: baseline;
  gap: 10px;
}

.pricing-detail-list li b {
  color: #143d47;
  white-space: nowrap;
}

.clarity-offer-bottom--pricing {
  align-items: center;
}

.clarity-offer-bottom--pricing > div:first-child {
  max-width: 780px;
}

.clarity-offer-bottom--pricing p {
  margin: 0;
}

.clarity-offer-bottom--pricing p + p {
  margin-top: 10px;
}

.clarity-offer-bottom-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.solution-builder .module-price-list > span {
  justify-content: flex-start;
}

.solution-builder .module-price-list b {
  min-width: 118px;
}

@media (max-width: 980px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy {
    max-width: 880px;
  }

  .hero-visual {
    max-width: 720px;
  }

  .clarity-offer-bottom--pricing {
    align-items: stretch;
    flex-direction: column;
  }

  .clarity-offer-bottom-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: clamp(2.35rem, 10.5vw, 3.35rem);
  }

  h2 {
    font-size: clamp(1.8rem, 8.2vw, 2.65rem);
  }

  .hero-copy h1,
  .page-hero h1,
  .why-video-hero h1,
  .insights-hero h1,
  .article-hero h1,
  .work-hero h1,
  .colorado-hero h1 {
    font-size: clamp(2.45rem, 10.8vw, 3.35rem);
    line-height: 1.04;
  }

  .clarity-section-head h2,
  .why-standard-heading h2,
  .solution-photo-panel h2,
  .insights-preview-head h2,
  .cta-layout h2,
  .evolution-intro h2,
  .footer-command-copy h2,
  .start-paths-heading h2,
  .pricing-section-heading h2,
  .pricing-section-heading-light h2 {
    font-size: clamp(1.85rem, 8.5vw, 2.65rem);
  }

  .dark-hero {
    min-height: 0;
    padding: 132px 0 68px;
  }

  .section {
    padding: 64px 0;
  }

  .pricing-detail-list li {
    display: block;
  }

  .pricing-detail-list li b {
    display: block;
    margin-bottom: 2px;
  }

  .clarity-offer-bottom-actions,
  .clarity-offer-bottom-actions .button {
    width: 100%;
  }

  .solution-builder .module-price-list b {
    min-width: 0;
  }
}
