/* 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;
  }
}

@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-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 i {
    transform: rotate(90deg);
  }
}

@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;
  }

  .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;
  }
}

/* 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;
  }
}
