/* ── Palette ── */
/* ── Reset & base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #E8ECEF;
  background: #0B0F12;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
#app {
  flex: 1;
}
a {
  color: #D96A1D;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #F2A33A;
}
/* ── Layout ── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
}
/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.btn--primary {
  background: #D96A1D;
  color: #0B0F12;
}
.btn--primary:hover {
  background: #B65216;
  color: #0B0F12;
}
.btn--secondary {
  background: transparent;
  color: #E8ECEF;
  border: 1px solid #1E272E;
}
.btn--secondary:hover {
  border-color: #6F7A83;
  color: #F2A33A;
}
/* ── Site Header ── */
.site-header {
  background: #12181D;
  border-bottom: 1px solid #1E272E;
  padding: 14px 24px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  text-decoration: none;
  color: #F4E9D8;
  letter-spacing: 0.12em;
}
.site-header__logo:hover {
  color: #F4E9D8;
}
.site-header__icon {
  width: 30px;
  height: 30px;
  display: block;
  border-radius: 6px;
  box-shadow: 0 0 0 1px rgba(30, 39, 46, 0.6);
}
.site-header__nav {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}
.site-header__nav a {
  text-decoration: none;
  font-size: 14px;
  color: #A7B0B7;
  transition: color 0.2s ease;
}
.site-header__nav a:hover {
  color: #E8ECEF;
}
.site-header__cta {
  background: #D96A1D;
  color: #0B0F12;
  padding: 8px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.site-header__cta:hover {
  background: #B65216;
  color: #0B0F12;
}
/* ── Site Footer ── */
.site-footer {
  background: #12181D;
  border-top: 1px solid #1E272E;
  padding: 56px 24px 28px;
}
.site-footer__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}
.site-footer__col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6F7A83;
  margin-bottom: 14px;
}
.site-footer__col ul {
  list-style: none;
}
.site-footer__col li {
  margin-bottom: 8px;
}
.site-footer__col a {
  font-size: 14px;
  text-decoration: none;
  color: #A7B0B7;
  transition: color 0.2s ease;
}
.site-footer__col a:hover {
  color: #D96A1D;
}
.site-footer__legal {
  border-top: 1px solid #1E272E;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: #6F7A83;
}
.site-footer__legal-links {
  display: flex;
  gap: 20px;
  list-style: none;
}
.site-footer__legal-links a {
  text-decoration: none;
  color: #6F7A83;
  transition: color 0.2s ease;
}
.site-footer__legal-links a:hover {
  color: #A7B0B7;
}
/* ── Hero ── */
.hero {
  background: linear-gradient(180deg, #0B0F12 0%, #12181D 100%);
  padding: 96px 24px 56px;
  text-align: center;
}
.hero--split {
  text-align: left;
}
.hero__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.hero--split .hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero__text {
  /* text column — no extra sizing needed */
}
.hero h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #E8ECEF;
}
.hero__title-sub {
  display: block;
  font-weight: 400;
  font-size: 32px;
  color: #A7B0B7;
  margin-top: 4px;
}
.hero__one-liner {
  font-size: 17px;
  color: #A7B0B7;
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.hero--split .hero__one-liner {
  margin-left: 0;
  margin-right: 0;
}
.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero--split .hero__actions {
  justify-content: flex-start;
}
.hero__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  border: 2px dashed #1E272E;
  border-radius: 8px;
  color: #6F7A83;
  font-size: 14px;
  overflow: hidden;
}
.hero__media--live {
  border: 1px solid #1E272E;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}
.hero__media--placeholder {
  visibility: hidden;
}
.hero__media video,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__trust-strip {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid #1E272E;
}
.hero--split .hero__trust-strip {
  justify-content: flex-start;
}
.hero__trust-strip li {
  font-size: 11px;
  color: #A7B0B7;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
}
/* ── Pillars3 ── */
.pillars3 {
  padding: 64px 24px;
  background: #0B0F12;
}
.pillars3__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.pillars3__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillars3__item {
  background: #12181D;
  border: 1px solid #1E272E;
  border-radius: 6px;
  padding: 28px;
  transition: border-color 0.2s ease;
}
.pillars3__item:hover {
  border-color: #D96A1D;
}
.pillars3__item h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #F2A33A;
}
.pillars3__item p {
  font-size: 14px;
  color: #A7B0B7;
  line-height: 1.6;
}
/* ── UseCaseCards ── */
.use-case-cards {
  padding: 64px 24px;
  background: #12181D;
}
.use-case-cards__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.use-case-cards__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.use-case-card {
  background: #0B0F12;
  border: 1px solid #1E272E;
  border-radius: 6px;
  padding: 28px;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.use-case-card:hover {
  border-color: #D96A1D;
  background: #1E272E;
}
.use-case-card--proven {
  border-color: #D96A1D;
}
.use-case-card__badge {
  display: inline-block;
  font-family: 'SF Mono', 'Consolas', 'Liberation Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #D96A1D;
  border: 1px solid #D96A1D;
  border-radius: 3px;
  padding: 3px 8px;
  margin-bottom: 12px;
}
.use-case-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #E8ECEF;
}
.use-case-card p {
  font-size: 14px;
  color: #A7B0B7;
  line-height: 1.6;
}
.use-case-cards__traits {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid #1E272E;
}
.use-case-cards__traits-label {
  display: block;
  font-size: 13px;
  color: #6F7A83;
  margin-bottom: 14px;
}
.use-case-cards__traits ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.use-case-cards__traits li {
  font-family: 'SF Mono', 'Consolas', 'Liberation Mono', monospace;
  font-size: 12px;
  color: #A7B0B7;
  letter-spacing: 0.02em;
}
/* ── FeatureGrid ── */
.feature-grid {
  padding: 64px 24px;
  background: #0B0F12;
}
.feature-grid__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.feature-grid__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-grid__item {
  background: #12181D;
  border: 1px solid #1E272E;
  border-radius: 6px;
  padding: 28px;
  transition: border-color 0.2s ease;
}
.feature-grid__item:hover {
  border-color: #D96A1D;
}
.feature-grid__item h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #F2A33A;
}
.feature-grid__item p {
  font-size: 14px;
  color: #A7B0B7;
  line-height: 1.6;
}
/* ── ArchitectureBlock ── */
.architecture-block {
  padding: 64px 24px;
  background: #12181D;
}
.architecture-block__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.architecture-block__diagram {
  border: 2px dashed #1E272E;
  border-radius: 6px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6F7A83;
  font-size: 14px;
}
.architecture-block__diagram--placeholder {
  visibility: hidden;
}
.architecture-block__bullets {
  list-style: none;
  padding-left: 0;
}
.architecture-block__bullets li {
  margin-bottom: 12px;
  font-size: 14px;
  color: #A7B0B7;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}
.architecture-block__bullets li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: #D96A1D;
  font-weight: 700;
}
/* ── CTASection ── */
.cta-section {
  padding: 80px 24px;
  text-align: center;
  background: linear-gradient(180deg, #12181D 0%, #0B0F12 100%);
}
.cta-section__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.cta-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #E8ECEF;
}
/* ── FAQBlock ── */
.faq-block {
  padding: 64px 24px;
  background: #0B0F12;
}
.faq-block__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.faq-block__item {
  border-bottom: 1px solid #1E272E;
  padding: 20px 0;
}
.faq-block__item:last-child {
  border-bottom: none;
}
.faq-block__q {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
  color: #E8ECEF;
}
.faq-block__a {
  font-size: 14px;
  color: #A7B0B7;
  line-height: 1.6;
}
/* ── Proof / Trust block ── */
.trust-block {
  padding: 64px 24px;
  background: #0B0F12;
}
.trust-block__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.trust-block__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-block__list li {
  background: #12181D;
  border: 1px solid #1E272E;
  border-radius: 6px;
  padding: 14px 24px;
  font-size: 14px;
  color: #A7B0B7;
}
/* ── LogoStrip ── */
.logo-strip {
  padding: 40px 24px;
  background: #0B0F12;
}
.logo-strip__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.logo-strip__placeholder {
  width: 100px;
  height: 40px;
  border: 1px dashed #1E272E;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #6F7A83;
}
/* ── Solution page sections ── */
.bullet-section {
  padding: 64px 24px;
  background: #0B0F12;
}
.bullet-section__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.bullet-section h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #E8ECEF;
}
.bullet-section ul {
  list-style: none;
  padding-left: 0;
}
.bullet-section li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #A7B0B7;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}
.bullet-section li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: #D96A1D;
  font-weight: 700;
}
/* ── Why strip ── */
.why-strip {
  padding: 36px 24px;
  background: #0B0F12;
  border-top: 1px solid #1E272E;
  border-bottom: 1px solid #1E272E;
}
.why-strip__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.why-strip__label {
  font-size: 13px;
  font-weight: 600;
  color: #6F7A83;
  white-space: nowrap;
}
.why-strip__items {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.why-strip__items li {
  font-family: 'SF Mono', 'Consolas', 'Liberation Mono', monospace;
  font-size: 12px;
  color: #A7B0B7;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .why-strip__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .why-strip__items {
    flex-direction: column;
    gap: 8px;
  }
}
/* ── Engagement steps ── */
.engagement-steps {
  padding: 64px 24px;
  background: #12181D;
}
.engagement-steps__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.engagement-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.engagement-step {
  background: #0B0F12;
  border: 1px solid #1E272E;
  border-radius: 6px;
  padding: 28px;
}
.engagement-step__number {
  font-size: 28px;
  font-weight: 700;
  color: #D96A1D;
  margin-bottom: 10px;
}
.engagement-step h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #E8ECEF;
}
.engagement-step p {
  font-size: 14px;
  color: #A7B0B7;
  line-height: 1.6;
}
/* ── Support tiers table ── */
.tiers-table {
  padding: 64px 24px;
  background: #0B0F12;
}
.tiers-table__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.tiers-table table {
  width: 100%;
  border-collapse: collapse;
}
.tiers-table th,
.tiers-table td {
  border: 1px solid #1E272E;
  padding: 14px 20px;
  text-align: left;
  font-size: 14px;
  color: #A7B0B7;
}
.tiers-table th {
  background: #12181D;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6F7A83;
}
/* ── Company — Why We Exist ── */
.co-why {
  padding: 80px 24px;
  background: #0B0F12;
}
.co-why__inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.co-why__inner h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #E8ECEF;
}
.co-why__thesis {
  font-size: 18px;
  color: #A7B0B7;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.6;
}
.co-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.co-pillars__item {
  background: #12181D;
  border: 1px solid #1E272E;
  border-radius: 6px;
  padding: 28px;
}
.co-pillars__item h3 {
  font-family: 'SF Mono', 'Consolas', 'Liberation Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #F2A33A;
  margin-bottom: 10px;
}
.co-pillars__item p {
  font-size: 14px;
  color: #A7B0B7;
  line-height: 1.6;
}
/* ── Company — Identity ── */
.co-identity {
  padding: 64px 24px;
  background: #12181D;
}
.co-identity__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.co-identity__inner h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #E8ECEF;
}
.co-identity__items {
  list-style: none;
  padding: 0;
}
.co-identity__items li {
  font-size: 14px;
  color: #A7B0B7;
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
  line-height: 1.6;
}
.co-identity__items li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: #D96A1D;
  font-weight: 700;
}
/* ── Company — Timeline ── */
.co-timeline {
  padding: 48px 24px;
  background: #0B0F12;
  border-top: 1px solid #1E272E;
}
.co-timeline__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.co-timeline__track {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}
.co-timeline__track::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 1px;
  background: #1E272E;
}
.co-timeline__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  flex: 1;
  text-align: center;
}
.co-timeline__marker::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D96A1D;
  border: 2px solid #0B0F12;
  position: relative;
  z-index: 1;
}
.co-timeline__year {
  font-family: 'SF Mono', 'Consolas', 'Liberation Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: #E8ECEF;
  letter-spacing: 0.04em;
}
.co-timeline__label {
  font-size: 13px;
  color: #6F7A83;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .co-pillars {
    grid-template-columns: 1fr;
  }
  .co-timeline__track {
    flex-direction: column;
    gap: 20px;
  }
  .co-timeline__track::before {
    top: 0;
    bottom: 0;
    left: 4px;
    right: auto;
    width: 1px;
    height: auto;
  }
  .co-timeline__marker {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
  }
  .co-timeline__marker::before {
    flex-shrink: 0;
    margin-top: 4px;
  }
}
/* ── Operational Independence ── */
.independence {
  padding: 64px 24px;
  background: #12181D;
  border-top: 1px solid #1E272E;
}
.independence__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.independence__inner h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #E8ECEF;
}
.independence__items {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.independence__items li {
  font-family: 'SF Mono', 'Consolas', 'Liberation Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  color: #A7B0B7;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
/* ── Contact form ── */
.contact-form {
  padding: 64px 24px;
  background: #0B0F12;
}
.contact-form__layout {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-form__row {
  margin-bottom: 18px;
}
.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #A7B0B7;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #1E272E;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  background: #12181D;
  color: #E8ECEF;
  transition: border-color 0.2s ease;
}
.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2710%27 height=%276%27%3E%3Cpath d=%27M0 0l5 6 5-6z%27 fill=%27%236F7A83%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #D96A1D;
}
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form__honeypot {
  position: absolute;
  left: -99999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.contact-form__submit {
  background: #D96A1D;
  color: #0B0F12;
  border: none;
  border-radius: 6px;
  padding: 12px 36px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease;
}
.contact-form__submit:hover {
  background: #B65216;
}
.contact-form__submit:disabled {
  opacity: 0.75;
  cursor: wait;
}
.contact-form__status {
  margin-top: 12px;
  min-height: 1.2em;
  font-size: 13px;
  color: #6F7A83;
}
.contact-form__status--pending {
  color: #6F7A83;
}
.contact-form__status--success {
  color: #F2A33A;
}
.contact-form__status--error {
  color: #f6a2a2;
}
/* Right column cards */
.contact-form__card {
  background: #12181D;
  border: 1px solid #1E272E;
  border-radius: 6px;
  padding: 28px;
  margin-bottom: 20px;
}
.contact-form__card:first-child {
  border-color: #1E272E;
  padding: 32px;
}
.contact-form__card h3 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  color: #E8ECEF;
}
.contact-form__card p {
  font-size: 14px;
  color: #A7B0B7;
  margin-bottom: 6px;
}
.contact-form__card a {
  color: #D96A1D;
}
.contact-form__steps,
.contact-form__prompts {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.contact-form__steps li {
  font-size: 14px;
  color: #A7B0B7;
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
  counter-increment: step;
}
.contact-form__steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  color: #D96A1D;
  font-size: 13px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
}
.contact-form__steps {
  counter-reset: step;
}
.contact-form__prompts li {
  font-size: 13px;
  margin-bottom: 8px;
  color: #6F7A83;
  padding-left: 18px;
  position: relative;
}
.contact-form__prompts li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: #D96A1D;
  font-weight: 700;
}
.contact-form__privacy {
  font-size: 12px;
  color: #6F7A83;
  margin-top: 10px;
  opacity: 0.7;
}
.contact-form__trust {
  font-size: 13px;
  line-height: 1.6;
  color: #6F7A83;
  padding: 0 4px;
}
/* Responsive: stack on mobile */
@media (max-width: 768px) {
  .contact-form__layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
/* ── Legal pages ── */
.legal-page {
  padding: 64px 24px;
  background: #0B0F12;
}
.legal-page__inner {
  max-width: 720px;
  margin: 0 auto;
}
.legal-page h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 28px;
  color: #E8ECEF;
}
.legal-page h2 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
  color: #E8ECEF;
}
.legal-page p,
.legal-page li {
  font-size: 14px;
  margin-bottom: 12px;
  color: #A7B0B7;
  line-height: 1.7;
}
/* ── Prose block (narrative text) ── */
.prose-block {
  padding: 64px 24px;
  background: #12181D;
}
.prose-block__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.prose-block h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #E8ECEF;
}
.prose-block p {
  font-size: 15px;
  color: #A7B0B7;
  max-width: 680px;
  line-height: 1.7;
}
/* ── Alternating section backgrounds ── */
.bullet-section:nth-child(even) {
  background: #12181D;
}
/* ── System Architecture ── */
.sys-arch {
  padding: 40px 24px 64px;
  background: #1E272E;
}
.sys-arch__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.sys-arch__inner h2 {
  font-family: 'SF Mono', 'Consolas', 'Liberation Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  color: #A7B0B7;
}
.sys-arch__layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.sys-arch__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.sys-arch__layer {
  width: 100%;
  max-width: 360px;
  padding: 16px 24px;
  border: 1px solid #12181D;
  border-radius: 2px;
  background: #0B0F12;
  text-align: center;
  font-family: 'SF Mono', 'Consolas', 'Liberation Mono', monospace;
  font-size: 13px;
  color: #E8ECEF;
  letter-spacing: 0.02em;
}
.sys-arch__arrow {
  color: #D96A1D;
  font-size: 18px;
  line-height: 1;
  padding: 6px 0;
  font-family: 'SF Mono', 'Consolas', 'Liberation Mono', monospace;
}
.sys-arch__connector {
  width: 1px;
  background: #1E272E;
  align-self: stretch;
  margin: 20px 0;
}
.sys-arch__sidecar {
  flex: 0 0 200px;
  padding-top: 20px;
}
.sys-arch__sidecar-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6F7A83;
  margin-bottom: 8px;
}
.sys-arch__sidecar-desc {
  font-size: 12px;
  color: #6F7A83;
  margin-bottom: 16px;
  line-height: 1.5;
}
.sys-arch__module {
  padding: 8px 14px;
  border: 1px solid #12181D;
  border-radius: 2px;
  background: rgba(11, 15, 18, 0.7);
  font-family: 'SF Mono', 'Consolas', 'Liberation Mono', monospace;
  font-size: 11px;
  color: #6F7A83;
  margin-bottom: 6px;
}
/* ── Runtime Model ── */
.rt-model {
  padding: 80px 24px;
  background: #12181D;
}
.rt-model__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.rt-model__inner h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #E8ECEF;
}
.rt-model__subtitle {
  font-size: 14px;
  color: #6F7A83;
  margin-bottom: 40px;
  line-height: 1.5;
}
.rt-model__entry {
  margin-bottom: 28px;
}
.rt-model__entry:last-child {
  margin-bottom: 0;
}
.rt-model__term {
  font-family: 'SF Mono', 'Consolas', 'Liberation Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #E8ECEF;
  margin-bottom: 8px;
}
.rt-model__body {
  font-size: 14px;
  color: #A7B0B7;
  line-height: 1.75;
  max-width: 720px;
}
@media (max-width: 768px) {
  .rt-model {
    padding: 56px 24px;
  }
  .rt-model__subtitle {
    margin-bottom: 28px;
  }
}
/* ── Deep Architecture ── */
.deep-arch {
  padding: 80px 24px;
  background: #0B0F12;
  position: relative;
  overflow: hidden;
}
.deep-arch::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.deep-arch__inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}
.deep-arch__inner h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #E8ECEF;
}
.deep-arch__subtitle {
  font-size: 14px;
  color: #A7B0B7;
  margin-bottom: 48px;
  line-height: 1.5;
}
.deep-arch__diagram {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0;
  align-items: start;
  position: relative;
}
.deep-arch__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.deep-arch__layer {
  width: 380px;
  padding: 13px 20px;
  border: 1px solid #2a343d;
  border-radius: 4px;
  background: #12181D;
  text-align: center;
  font-family: 'SF Mono', 'Consolas', 'Liberation Mono', monospace;
  font-size: 13px;
  color: #E8ECEF;
  letter-spacing: 0.02em;
  position: relative;
}
.deep-arch__layer--runtime {
  border: 2px solid #D96A1D;
  background: rgba(30, 39, 46, 0.8);
  padding: 16px 24px;
  font-weight: 600;
}
.deep-arch__boundary-label {
  font-family: 'SF Mono', 'Consolas', 'Liberation Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #D96A1D;
  opacity: 0.7;
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.deep-arch__arrow {
  color: #6F7A83;
  font-size: 12px;
  line-height: 1;
  padding: 5px 0;
  font-family: 'SF Mono', 'Consolas', 'Liberation Mono', monospace;
  text-align: center;
  opacity: 0.5;
}
.deep-arch__annotation {
  font-family: 'SF Mono', 'Consolas', 'Liberation Mono', monospace;
  font-size: 10px;
  color: #A7B0B7;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 6px 16px;
  margin: 2px auto 0;
  width: 380px;
  border-left: 1px solid #1E272E;
  border-right: 1px solid #1E272E;
  background: rgba(30, 39, 46, 0.3);
}
.deep-arch__layer-sub {
  display: block;
  font-family: 'SF Mono', 'Consolas', 'Liberation Mono', monospace;
  font-size: 10px;
  color: #6F7A83;
  margin-top: 3px;
  letter-spacing: 0.04em;
}
/* ── Connector lines (CSS-drawn) ── */
.deep-arch__connectors {
  width: 48px;
  position: relative;
  align-self: stretch;
}
.deep-arch__modules {
  width: 160px;
  padding-top: 0;
}
.deep-arch__mod-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6F7A83;
  margin-bottom: 4px;
  opacity: 0.8;
}
.deep-arch__mod-desc {
  font-size: 10px;
  color: #6F7A83;
  margin-bottom: 14px;
  line-height: 1.4;
  opacity: 0.6;
}
.deep-arch__mod {
  padding: 7px 12px;
  border: 1px solid rgba(30, 39, 46, 0.6);
  border-radius: 3px;
  background: rgba(18, 24, 29, 0.25);
  font-family: 'SF Mono', 'Consolas', 'Liberation Mono', monospace;
  font-size: 10px;
  color: #6F7A83;
  margin-bottom: 5px;
  position: relative;
  opacity: 0.85;
}
.deep-arch__mod::before {
  content: '';
  position: absolute;
  left: -49px;
  top: 50%;
  width: 48px;
  height: 1px;
  background: rgba(30, 39, 46, 0.5);
}
.deep-arch__mobile-caption {
  display: none;
}
/* ── Deep Architecture — tablet ── */
@media (max-width: 960px) {
  .deep-arch {
    padding: 56px 24px;
  }
  .deep-arch__diagram {
    grid-template-columns: 1fr auto auto;
  }
  .deep-arch__layer {
    width: 300px;
  }
  .deep-arch__modules {
    width: 140px;
  }
}
/* ── Deep Architecture — mobile ── */
@media (max-width: 640px) {
  .deep-arch {
    padding: 40px 24px;
  }
  .deep-arch__diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .deep-arch__layer {
    width: 100%;
    max-width: 360px;
  }
  .deep-arch__connectors {
    display: none;
  }
  .deep-arch__mod::before {
    display: none;
  }
  .deep-arch__modules {
    width: 100%;
    max-width: 360px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #1E272E;
  }
  .deep-arch__mobile-caption {
    display: block;
    font-size: 12px;
    color: #6F7A83;
    margin-top: 16px;
    text-align: center;
    font-style: italic;
  }
  .deep-arch__mod-desc {
    display: none;
  }
}
/* ── Deployment Model ── */
.deploy {
  padding: 80px 24px;
  background: #12181D;
}
.deploy__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.deploy__inner h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #E8ECEF;
}
.deploy__subtitle {
  font-size: 14px;
  color: #6F7A83;
  margin-bottom: 40px;
  line-height: 1.5;
}
.deploy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 24px;
  margin-bottom: 40px;
}
.deploy__block {
  background: #0B0F12;
  border: 1px solid #1E272E;
  border-radius: 6px;
  padding: 28px;
}
.deploy__block--primary {
  border-color: #D96A1D;
}
.deploy__term {
  font-family: 'SF Mono', 'Consolas', 'Liberation Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #E8ECEF;
  margin-bottom: 12px;
}
.deploy__body {
  font-size: 14px;
  color: #A7B0B7;
  line-height: 1.6;
  margin-bottom: 16px;
}
.deploy__items {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}
.deploy__items li {
  font-size: 13px;
  color: #A7B0B7;
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
  line-height: 1.5;
}
.deploy__items li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: #D96A1D;
  font-weight: 700;
}
.deploy__statement {
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid #1E272E;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.deploy__statement span {
  font-family: 'SF Mono', 'Consolas', 'Liberation Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: #E8ECEF;
  letter-spacing: 0.02em;
  line-height: 1.6;
}
.deploy__footer {
  font-size: 13px;
  color: #A7B0B7;
  line-height: 1.5;
  padding-top: 12px;
  border-top: 1px solid #1E272E;
}
.deploy__negations {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid #1E272E;
}
.deploy__negations li {
  font-family: 'SF Mono', 'Consolas', 'Liberation Mono', monospace;
  font-size: 11px;
  color: #6F7A83;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .deploy {
    padding: 56px 24px;
  }
  .deploy__grid {
    grid-template-columns: 1fr;
  }
  .deploy__negations {
    flex-direction: column;
    gap: 8px;
  }
}
/* ── Runtime Scope ── */
.runtime-scope {
  padding: 64px 24px;
  background: #0B0F12;
}
.runtime-scope__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.runtime-scope__inner h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 32px;
  color: #E8ECEF;
}
.runtime-scope__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.runtime-scope__col {
  background: #12181D;
  border: 1px solid #1E272E;
  border-radius: 6px;
  padding: 28px;
}
.runtime-scope__col h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #E8ECEF;
}
.runtime-scope__col--includes h3 {
  color: #F2A33A;
}
.runtime-scope__col--excludes h3 {
  color: #6F7A83;
}
.runtime-scope__col ul {
  list-style: none;
  padding: 0;
}
.runtime-scope__col li {
  font-size: 14px;
  color: #A7B0B7;
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
  line-height: 1.6;
}
.runtime-scope__col--includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F2A33A;
  font-weight: 700;
  font-size: 13px;
}
.runtime-scope__col--excludes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #6F7A83;
}
/* ── License tiers ── */
.license-tiers {
  padding: 64px 24px;
  background: #0B0F12;
}
.license-tiers__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.license-tiers__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.license-tiers__card {
  background: #12181D;
  border: 1px solid #1E272E;
  border-radius: 6px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.license-tiers__card--featured {
  border-color: #D96A1D;
}
.license-tiers__name {
  font-size: 20px;
  font-weight: 700;
  color: #E8ECEF;
  margin-bottom: 4px;
}
.license-tiers__card--featured .license-tiers__name {
  color: #D96A1D;
}
.license-tiers__price {
  font-size: 14px;
  font-weight: 600;
  color: #F2A33A;
  margin-bottom: 16px;
}
.license-tiers__summary {
  font-size: 14px;
  color: #A7B0B7;
  line-height: 1.6;
  margin-bottom: 20px;
}
.license-tiers__bullets {
  list-style: none;
  padding-left: 0;
  margin-top: auto;
}
.license-tiers__bullets li {
  font-size: 14px;
  color: #A7B0B7;
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
  line-height: 1.6;
}
.license-tiers__bullets li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: #D96A1D;
  font-weight: 700;
}
/* ── Intro prose (opening framing under hero) ── */
.intro-prose {
  padding: 64px 24px 40px;
  background: #0B0F12;
}
.intro-prose__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.intro-prose h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #E8ECEF;
  letter-spacing: -0.01em;
}
.intro-prose p {
  font-size: 17px;
  color: #A7B0B7;
  line-height: 1.7;
}
/* ── Comparison block ── */
.comparison {
  padding: 64px 24px;
  background: #12181D;
}
.comparison__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.comparison h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #E8ECEF;
  letter-spacing: -0.01em;
}
.comparison__subtitle {
  font-size: 15px;
  color: #6F7A83;
  margin-bottom: 40px;
  max-width: 640px;
  line-height: 1.6;
}
.comparison__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.comparison__card {
  background: #0B0F12;
  border: 1px solid #1E272E;
  border-radius: 6px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.comparison__card--featured {
  border-color: #D96A1D;
  background: linear-gradient(180deg, rgba(217, 106, 29, 0.06) 0%, #0B0F12 60%);
}
.comparison__name {
  font-size: 16px;
  font-weight: 700;
  color: #E8ECEF;
  margin-bottom: 6px;
}
.comparison__card--featured .comparison__name {
  color: #D96A1D;
}
.comparison__verdict {
  font-size: 13px;
  font-weight: 600;
  color: #F2A33A;
  margin-bottom: 14px;
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.comparison__card--featured .comparison__verdict {
  color: #D96A1D;
}
.comparison__body {
  font-size: 14px;
  color: #A7B0B7;
  line-height: 1.6;
}
/* ── System Fit ── */
.system-fit {
  padding: 64px 24px;
  background: #0B0F12;
}
.system-fit__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.system-fit h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #E8ECEF;
  letter-spacing: -0.01em;
}
.system-fit__subtitle {
  font-size: 15px;
  color: #A7B0B7;
  margin-bottom: 40px;
  max-width: 720px;
  line-height: 1.6;
}
.system-fit__layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.system-fit__stack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.system-fit__layer {
  padding: 16px 20px;
  border: 1px solid #1E272E;
  border-radius: 4px;
  background: #12181D;
  font-family: 'SF Mono', 'Consolas', 'Liberation Mono', monospace;
  font-size: 13px;
  color: #E8ECEF;
  letter-spacing: 0.02em;
  text-align: center;
}
.system-fit__layer--runtime {
  border: 2px solid #D96A1D;
  background: rgba(217, 106, 29, 0.08);
  font-weight: 600;
  color: #D96A1D;
}
.system-fit__arrow {
  color: #6F7A83;
  font-size: 14px;
  text-align: center;
  padding: 4px 0;
  font-family: 'SF Mono', 'Consolas', 'Liberation Mono', monospace;
}
.system-fit__sidecar {
  padding-top: 4px;
}
.system-fit__sidecar-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #F2A33A;
  margin-bottom: 6px;
}
.system-fit__sidecar-desc {
  font-size: 13px;
  color: #6F7A83;
  margin-bottom: 14px;
  line-height: 1.5;
}
.system-fit__module {
  padding: 10px 14px;
  border: 1px solid #1E272E;
  border-radius: 3px;
  background: rgba(18, 24, 29, 0.7);
  font-family: 'SF Mono', 'Consolas', 'Liberation Mono', monospace;
  font-size: 12px;
  color: #A7B0B7;
  margin-bottom: 8px;
}
.system-fit__footnote {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid #1E272E;
  font-size: 13px;
  color: #6F7A83;
  font-style: italic;
  text-align: center;
}
/* ── Cost block ── */
.cost-block {
  padding: 64px 24px;
  background: #12181D;
}
.cost-block__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.cost-block h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 32px;
  color: #E8ECEF;
  letter-spacing: -0.01em;
}
.cost-block__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.cost-block__item {
  background: #0B0F12;
  border: 1px solid #1E272E;
  border-left: 3px solid #D96A1D;
  border-radius: 6px;
  padding: 24px 28px;
}
.cost-block__item h3 {
  font-size: 15px;
  font-weight: 700;
  color: #E8ECEF;
  margin-bottom: 8px;
}
.cost-block__item p {
  font-size: 14px;
  color: #A7B0B7;
  line-height: 1.6;
}
/* ── Proof block ── */
.proof-block {
  padding: 64px 24px;
  background: #0B0F12;
  border-top: 1px solid #1E272E;
  border-bottom: 1px solid #1E272E;
}
.proof-block__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.proof-block__label {
  display: inline-block;
  font-family: 'SF Mono', 'Consolas', 'Liberation Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #D96A1D;
  border: 1px solid #D96A1D;
  border-radius: 3px;
  padding: 4px 10px;
  margin-bottom: 20px;
}
.proof-block h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #E8ECEF;
  letter-spacing: -0.01em;
}
.proof-block__body {
  font-size: 16px;
  color: #A7B0B7;
  line-height: 1.7;
  max-width: 780px;
  margin-bottom: 24px;
}
.proof-block__points {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}
.proof-block__points li {
  font-size: 14px;
  color: #A7B0B7;
  padding: 12px 16px;
  background: #12181D;
  border-left: 2px solid #D96A1D;
  border-radius: 3px;
  line-height: 1.5;
}
/* ── Risk block ── */
.risk-block {
  padding: 64px 24px;
  background: #12181D;
}
.risk-block__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.risk-block h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #E8ECEF;
  letter-spacing: -0.01em;
}
.risk-block__list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}
.risk-block__list li {
  background: #0B0F12;
  border: 1px solid #1E272E;
  border-radius: 6px;
  padding: 16px 20px;
  font-size: 14px;
  color: #A7B0B7;
  line-height: 1.5;
  position: relative;
  padding-left: 44px;
}
.risk-block__list li::before {
  content: '✓';
  position: absolute;
  left: 18px;
  top: 16px;
  color: #F2A33A;
  font-weight: 700;
  font-size: 14px;
}
/* ── Deeper link (docs handoff) ── */
.deeper-link {
  padding: 40px 24px;
  background: #0B0F12;
}
.deeper-link__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 32px;
  background: #12181D;
  border: 1px solid #1E272E;
  border-radius: 6px;
  flex-wrap: wrap;
}
.deeper-link__text h2 {
  font-size: 16px;
  font-weight: 700;
  color: #E8ECEF;
  margin-bottom: 4px;
}
.deeper-link__text p {
  font-size: 14px;
  color: #6F7A83;
  line-height: 1.5;
  max-width: 560px;
}
/* ── Responsive ── */
@media (max-width: 768px) {
  .system-fit__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .deeper-link__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero {
    padding: 64px 24px 56px;
  }
  .hero--split .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero__title-sub {
    font-size: 24px;
  }
  .pillars3__grid,
  .engagement-steps__grid,
  .license-tiers__grid {
    grid-template-columns: 1fr;
  }
  .architecture-block__inner {
    grid-template-columns: 1fr;
  }
  .site-header__nav {
    display: none;
  }
  .sys-arch__layout {
    flex-direction: column;
  }
  .sys-arch__connector {
    width: 100%;
    height: 1px;
    margin: 16px 0;
  }
  .sys-arch__sidecar {
    flex: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 0;
  }
  .sys-arch__sidecar-label {
    width: 100%;
  }
  .runtime-scope__grid {
    grid-template-columns: 1fr;
  }
  .hero__trust-strip {
    flex-direction: column;
    gap: 8px;
  }
  .hero__media {
    min-height: 200px;
  }
}

