/*
Theme Name: Quantum Modular Home
Theme URI: https://quantummodulars.com/
Author: Quantum Modular Home
Description: Quantum Modular Home / BOXWAY marketing site converted to a WordPress theme. A faithful, design-complete brochure theme with auto-generated pages, models catalog, technology, dealer, investor and applications sections, plus the client-side AI Advisor.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: quantum-modular
*/

:root {
  --cream: #f4efe5;
  --cream-deep: #e4dccd;
  --navy-950: #091425;
  --navy-900: #0d1d32;
  --navy-850: #13253d;
  --navy-800: #1a2d48;
  --slate: #7c8797;
  --white: #fbfaf7;
  --copper: #cb7a35;
  --copper-soft: #d79b61;
  --line-light: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(9, 20, 37, 0.12);
  --shadow-dark: 0 32px 80px rgba(4, 10, 21, 0.35);
  --shadow-soft: 0 24px 60px rgba(11, 24, 44, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 48px));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  font-family: "Manrope", "Avenir Next", sans-serif;
  background: var(--cream);
  color: var(--navy-950);
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-shell {
  overflow-x: clip;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(16px);
  background: rgba(244, 239, 229, 0.92);
  border-bottom: 1px solid rgba(9, 20, 37, 0.06);
  box-shadow: 0 10px 28px rgba(9, 20, 37, 0.06);
}

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

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

.brand-logo {
  display: block;
  width: auto;
  height: 76px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  flex: 1;
  min-width: 0;
}

.site-nav a {
  position: relative;
  font-size: 0.97rem;
  color: rgba(9, 20, 37, 0.78);
  white-space: nowrap;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  overflow: hidden;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease,
    color 180ms ease, box-shadow 180ms ease;
}

.nav-cta::after,
.button::after,
.model-link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(215, 155, 97, 0);
  box-shadow: 0 0 0 1px rgba(215, 155, 97, 0);
  pointer-events: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.nav-cta {
  padding-inline: 28px;
  min-width: max-content;
  background: var(--navy-950);
  color: var(--white) !important;
  -webkit-text-fill-color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}

.nav-cta:hover,
.button:hover,
.model-link:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 36px rgba(4, 10, 21, 0.16),
    0 0 22px rgba(215, 155, 97, 0.1);
}

.nav-cta:hover::after,
.button:hover::after,
.model-link:hover::after {
  border-color: rgba(215, 155, 97, 0.32);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 18px rgba(215, 155, 97, 0.12);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(9, 20, 37, 0.12);
  border-radius: 999px;
  background: transparent;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

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

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

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

.hero {
  position: relative;
  color: var(--white);
  background: #091425;
}

.hero-media {
  position: relative;
  height: clamp(400px, 52vw, 760px);
  overflow: hidden;
  background: #091425;
}

.hero-banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(9, 20, 37, 0.72) 0%,
      rgba(9, 20, 37, 0.42) 38%,
      rgba(9, 20, 37, 0.06) 72%
    ),
    linear-gradient(
      180deg,
      rgba(9, 20, 37, 0.02) 0%,
      rgba(9, 20, 37, 0.02) 74%,
      rgba(9, 20, 37, 0.14) 88%,
      rgba(9, 20, 37, 0.42) 100%
    );
  pointer-events: none;
}

.hero-layout {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-actions-wrap {
  height: 100%;
  position: relative;
  padding-bottom: 42px;
}

.eyebrow {
  margin: 0 0 20px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--copper-soft);
}

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

.hero-title,
.section h2,
.visual-core h2,
.network-panel h2,
.cta-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.hero-caption {
  position: absolute;
  top: 44%;
  left: 0;
  width: min(840px, 76%);
  min-height: 9rem;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-title {
  max-width: 100%;
  font-size: 4.6rem;
  line-height: 0.96;
  letter-spacing: 0;
  text-shadow: 0 18px 42px rgba(4, 10, 21, 0.36);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.hero-title span {
  display: block;
  color: var(--copper-soft);
  white-space: nowrap;
}

.hero-title span:first-child {
  color: var(--white);
}

.hero-scene-title {
  position: absolute;
  left: 0;
  top: 50%;
  width: min(640px, 100%);
  margin: 0;
  color: var(--white);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  text-shadow: 0 16px 36px rgba(4, 10, 21, 0.4);
  transform: translateY(calc(-50% + 12px));
  opacity: 0;
  transition: opacity 420ms ease, transform 420ms ease;
}

.hero-caption.is-main-title .hero-title,
.hero-caption.is-scene-title .hero-scene-title {
  opacity: 1;
  transform: translateY(0);
}

.hero-caption.is-scene-title .hero-scene-title {
  transform: translateY(-50%);
}

.hero-actions {
  position: absolute;
  left: 0;
  bottom: 42px;
}

.hero-text {
  max-width: 40rem;
  margin: 28px 0 0;
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(251, 250, 247, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: fit-content;
  padding: 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(9, 20, 37, 0.08);
}

.button {
  font-weight: 700;
}

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

.button-primary:hover {
  background: #d28543;
  border-color: rgba(215, 155, 97, 0.26);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(251, 250, 247, 0.92);
  background: rgba(255, 255, 255, 0.03);
}

.hero-actions .button-secondary {
  background: rgba(9, 20, 37, 0.22);
}

.button-secondary.light {
  border-color: rgba(244, 239, 229, 0.22);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(215, 155, 97, 0.26);
}

.button-secondary.light:hover {
  background: rgba(255, 255, 255, 0.08);
}

.visual-panel {
  position: relative;
  min-height: 600px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02)),
    linear-gradient(150deg, rgba(17, 34, 56, 0.9), rgba(11, 21, 36, 0.5));
  box-shadow: var(--shadow-dark);
  overflow: hidden;
}

.visual-panel::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius-xl) - 8px);
}

.visual-tag {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(6, 12, 24, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(251, 250, 247, 0.78);
  font-size: 0.85rem;
}

.visual-core {
  position: absolute;
  left: 48px;
  right: 48px;
  top: 132px;
  z-index: 1;
}

.visual-label {
  margin-bottom: 14px;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  color: rgba(251, 250, 247, 0.5);
}

.visual-core h2 {
  max-width: 10ch;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 0.98;
}

.visual-core p {
  max-width: 28rem;
  margin-top: 20px;
  line-height: 1.7;
  color: rgba(251, 250, 247, 0.78);
}

.visual-layers {
  position: absolute;
  right: -30px;
  bottom: 82px;
  width: min(60%, 340px);
  aspect-ratio: 1 / 1.2;
}

.visual-layers span {
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background: linear-gradient(155deg, rgba(36, 56, 81, 0.92), rgba(14, 25, 40, 0.65));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.visual-layers span:nth-child(1) {
  transform: rotate(-8deg) translate(-42px, -34px);
}

.visual-layers span:nth-child(2) {
  transform: rotate(-3deg) translate(-20px, -16px);
}

.visual-layers span:nth-child(3) {
  background:
    radial-gradient(circle at 24% 24%, rgba(203, 122, 53, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(32, 53, 80, 0.95), rgba(16, 28, 45, 0.82));
}

.visual-metrics {
  position: absolute;
  left: 48px;
  right: 48px;
  bottom: 42px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.visual-metrics article {
  padding: 18px;
  border-radius: 20px;
  background: rgba(6, 11, 20, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.visual-metrics strong,
.network-matrix strong,
.investor-callout h3,
.advisor-mode strong {
  display: block;
  font-weight: 700;
}

.visual-metrics span,
.network-matrix span {
  display: block;
  margin-top: 8px;
  color: rgba(251, 250, 247, 0.7);
  line-height: 1.55;
}

.hero-stats-shell {
  background:
    linear-gradient(180deg, rgba(6, 12, 24, 0.96) 0%, rgba(14, 28, 48, 0.98) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 24px 0 30px;
}

.stat {
  padding-top: 24px;
}

.stat strong {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.25rem, 4vw, 3.6rem);
  font-weight: 500;
  color: var(--white);
}

.stat strong[data-counter="94"]::after {
  content: "%";
  font-size: 1.2rem;
  color: var(--copper-soft);
}

.stat strong[data-counter="5"]::after {
  content: " days";
  font-size: 1.2rem;
  margin-left: 4px;
  color: var(--copper-soft);
}

.stat strong[data-counter="10"]::after {
  content: " yr";
  font-size: 1.2rem;
  margin-left: 4px;
  color: var(--copper-soft);
}

.stat span {
  display: block;
  margin-top: 8px;
  color: rgba(251, 250, 247, 0.62);
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: 110px 0;
}

.section-cream {
  background:
    radial-gradient(circle at 8% 12%, rgba(203, 122, 53, 0.08), transparent 22%),
    linear-gradient(180deg, #f6f1e7 0%, #efe7d8 100%);
}

.section-dark {
  background:
    radial-gradient(circle at 80% 14%, rgba(203, 122, 53, 0.16), transparent 24%),
    linear-gradient(180deg, var(--navy-900) 0%, #102039 100%);
  color: var(--white);
}

.section-deep {
  background:
    radial-gradient(circle at 78% 18%, rgba(203, 122, 53, 0.16), transparent 20%),
    linear-gradient(180deg, #112137 0%, #0d1a2d 100%);
  color: var(--white);
}

.section-final {
  background:
    linear-gradient(135deg, rgba(203, 122, 53, 0.12), transparent 30%),
    linear-gradient(180deg, #0a1525 0%, #102039 100%);
  color: var(--white);
}

.section-cta-final {
  background:
    radial-gradient(circle at 10% 10%, rgba(203, 122, 53, 0.12), transparent 20%),
    radial-gradient(circle at 88% 22%, rgba(12, 32, 56, 0.05), transparent 20%),
    linear-gradient(180deg, #f7f2e9 0%, #efe7d9 100%);
  color: var(--navy-950);
}

.section h2,
.network-panel h2,
.cta-copy h2 {
  font-size: clamp(2.6rem, 5vw, 4.3rem);
  line-height: 0.98;
}

.section-heading {
  max-width: 54rem;
}

.section-heading.narrow {
  max-width: 46rem;
}

.section-heading p:last-child,
.section-copy p:last-child,
.network-panel p,
.cta-copy p,
.resource-copy > p {
  margin-top: 18px;
  font-size: 1.06rem;
  line-height: 1.8;
  color: inherit;
  opacity: 0.82;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 42px;
  align-items: start;
}

.split-layout.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
}

.why-layout {
  display: grid;
  gap: 56px;
}

.why-top {
  align-items: start;
}

.why-copy h2 span {
  display: block;
}

.why-copy h2 {
  font-size: clamp(3.4rem, 7vw, 5.7rem);
  line-height: 0.94;
}

.why-intro {
  max-width: 34rem;
  margin: 22px 0 0;
  font-size: 1.06rem;
  line-height: 1.8;
  color: inherit;
  opacity: 0.82;
}

.why-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.why-band {
  padding: 28px 34px 18px;
  border: 1px solid rgba(9, 20, 37, 0.08);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 24px 60px rgba(11, 24, 44, 0.07);
}

.why-badge {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 6px 24px 6px 0;
  border-right: 1px solid rgba(9, 20, 37, 0.1);
}

.why-badge:last-child {
  padding-right: 0;
  border-right: 0;
}

.why-badge h3 {
  margin: 14px 0 0;
  max-width: 13ch;
  font-size: 1.22rem;
  line-height: 1.35;
}

.why-badge p {
  max-width: 18ch;
  margin: 10px 0 0;
  font-size: 1rem;
  line-height: 1.55;
  color: inherit;
  opacity: 0.72;
}

.why-disclaimer {
  max-width: 56rem;
  margin: 18px 0 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(9, 20, 37, 0.54);
}

.why-badge-icon,
.why-card-icon {
  color: #314b3e;
}

.why-badge-icon svg,
.why-card-icon svg {
  width: 52px;
  height: 52px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-cards {
  display: grid;
  gap: 22px;
}

.why-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 30px 32px;
  border: 1px solid rgba(9, 20, 37, 0.08);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 60px rgba(11, 24, 44, 0.08);
}

.why-card-icon {
  width: 110px;
  height: 110px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(236, 228, 214, 0.95));
}

.why-card-icon svg {
  width: 58px;
  height: 58px;
}

.why-card-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  line-height: 1.1;
}

.why-card-copy p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: inherit;
  opacity: 0.8;
}

.feature-stack,
.network-matrix,
.resource-cards {
  display: grid;
  gap: 18px;
}

.feature-stack article,
.tech-card,
.investor-callout,
.resource-cards article,
.lead-form,
.advisor-panel,
.territory-card,
.network-panel {
  border-radius: var(--radius-lg);
}

.feature-stack article {
  padding: 28px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow-soft);
}

.feature-stack h3,
.model-card h3,
.tech-card h3,
.application-grid h3,
.investor-callout h3,
.resource-cards h3,
.roadmap h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.feature-stack p,
.model-card p,
.tech-card p,
.application-grid p,
.investor-callout p,
.resource-cards p,
.roadmap p,
.territory-card li,
.advisor-mode p {
  margin: 0;
  line-height: 1.7;
  color: inherit;
  opacity: 0.78;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
  margin-top: 44px;
}

.model-card {
  position: relative;
  display: grid;
  grid-column: span 4;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 70%),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  min-height: 100%;
  box-shadow: 0 18px 42px rgba(4, 10, 21, 0.18);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.model-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(215, 155, 97, 0);
  box-shadow: 0 0 0 1px rgba(215, 155, 97, 0);
  pointer-events: none;
  transition: border-color 240ms ease, box-shadow 240ms ease;
}

.model-card:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 155, 97, 0.2);
  box-shadow:
    0 30px 64px rgba(4, 10, 21, 0.28),
    0 0 0 1px rgba(215, 155, 97, 0.08);
}

.model-card:hover::after {
  border-color: rgba(215, 155, 97, 0.34);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 28px rgba(215, 155, 97, 0.12);
}

.model-card-featured {
  grid-column: span 8;
}

.model-card-wide {
  grid-column: span 8;
}

.model-size {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--copper-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.model-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(251, 250, 247, 0.78);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.model-visual {
  position: relative;
  min-height: 260px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background-color: #21324d;
  overflow: hidden;
}

.model-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 320ms ease;
}

.model-card:hover .model-image {
  transform: scale(1.045);
}

.model-card-featured .model-visual,
.model-card-wide .model-visual {
  min-height: 300px;
}

.model-visual::before,
.model-visual::after {
  content: "";
  position: absolute;
  inset: 0;
}

.model-visual::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 38%),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(14, 25, 42, 0.04), rgba(14, 25, 42, 0.5));
}

.model-visual::after {
  background:
    linear-gradient(180deg, transparent 60%, rgba(8, 16, 29, 0.82) 100%),
    radial-gradient(circle at 74% 30%, rgba(255, 255, 255, 0.14), transparent 24%),
    radial-gradient(circle at 40% 110%, rgba(21, 32, 52, 0.95) 0, rgba(21, 32, 52, 0.95) 22%, transparent 23%);
}

.model-visual-265 {
  background-color: #6f8db4;
}

.model-visual-480 {
  background:
    linear-gradient(180deg, rgba(238, 212, 180, 0.18), transparent 35%),
    linear-gradient(180deg, #7ea1b7 0%, #beced7 44%, #556f81 100%);
}

.model-visual-560 {
  background:
    linear-gradient(180deg, rgba(215, 140, 77, 0.22), transparent 34%),
    linear-gradient(180deg, #7f8e9f 0%, #adb7c2 45%, #4d5c6d 100%);
}

.model-visual-702 {
  background:
    linear-gradient(180deg, rgba(235, 202, 158, 0.15), transparent 34%),
    linear-gradient(180deg, #8ea3b3 0%, #c3d0db 42%, #576c7c 100%);
}

.model-visual-720 {
  background:
    linear-gradient(180deg, rgba(193, 125, 68, 0.24), transparent 34%),
    linear-gradient(180deg, #69839f 0%, #adc2d3 42%, #3f556a 100%);
}

.model-visual-940 {
  background:
    linear-gradient(180deg, rgba(216, 149, 84, 0.24), transparent 34%),
    linear-gradient(180deg, #73879b 0%, #b1bec9 44%, #475567 100%);
}

.model-visual-custom {
  background:
    linear-gradient(180deg, rgba(183, 126, 73, 0.22), transparent 34%),
    linear-gradient(180deg, #7c91a6 0%, #b4c1cd 44%, #4a6177 100%);
}

.model-body {
  display: grid;
  align-content: start;
  gap: 0;
  padding: 26px 26px 28px;
}

.model-metric {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: grid;
  gap: 2px;
  padding: 12px 14px 10px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 16, 29, 0.42);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(4, 9, 18, 0.22);
}

.model-metric-value {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.6rem, 4vw, 3.5rem);
  line-height: 0.95;
  color: var(--white);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.model-metric-note {
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(251, 250, 247, 0.72);
}

.model-body h3 {
  margin: 0 0 12px;
  font-size: 1.48rem;
  line-height: 1.18;
}

.model-link {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  margin-top: 24px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-weight: 700;
  overflow: hidden;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease,
    box-shadow 180ms ease;
}

.model-link:hover {
  background: rgba(203, 122, 53, 0.16);
  border-color: rgba(203, 122, 53, 0.32);
}

.model-card ul,
.territory-card ul {
  margin: 20px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.home-technology {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(203, 122, 53, 0.06), transparent 24%),
    linear-gradient(180deg, #fbfaf7 0%, #f6f1e8 100%);
}

.home-tech-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: 48px;
  align-items: end;
}

.home-tech-intro h2 {
  max-width: 760px;
  margin: 0;
  color: var(--navy-950);
}

.home-tech-intro-copy {
  display: grid;
  gap: 24px;
  align-content: end;
  justify-items: start;
}

.home-tech-intro-copy p {
  margin: 0;
  color: rgba(9, 20, 37, 0.72);
  font-size: 1.02rem;
  line-height: 1.75;
}

.home-tech-proof-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 46px;
}

.home-tech-proof-card {
  display: grid;
  align-content: start;
  gap: 11px;
  min-height: 164px;
  padding: 20px;
  border: 1px solid rgba(9, 20, 37, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 38px rgba(11, 24, 44, 0.07);
}

.home-tech-proof-card span {
  color: rgba(9, 20, 37, 0.48);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.25;
  text-transform: uppercase;
}

.home-tech-proof-card strong {
  color: var(--navy-950);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.15rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
}

.home-tech-proof-card p {
  margin: 0;
  color: rgba(9, 20, 37, 0.62);
  font-size: 0.88rem;
  line-height: 1.5;
}

.home-tech-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.home-tech-feature-card {
  display: grid;
  align-content: start;
  gap: 15px;
  min-height: 258px;
  padding: 26px;
  border: 1px solid rgba(9, 20, 37, 0.09);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.home-tech-feature-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(203, 122, 53, 0.14);
  color: var(--copper);
  font-weight: 800;
}

.home-tech-feature-card h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 1.32rem;
  line-height: 1.2;
}

.home-tech-feature-card p {
  margin: 0;
  color: rgba(9, 20, 37, 0.68);
  line-height: 1.7;
}

.home-tech-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 18px 22px;
  border: 1px solid rgba(203, 122, 53, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.home-tech-note strong {
  color: var(--copper);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-tech-note p {
  margin: 0;
  color: rgba(9, 20, 37, 0.64);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .home-tech-intro {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  .home-tech-proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .home-tech-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-tech-feature-grid {
    grid-template-columns: 1fr;
  }

  .home-tech-feature-card {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .home-tech-proof-grid {
    grid-template-columns: 1fr;
  }

  .home-tech-proof-card {
    min-height: 0;
  }

  .home-tech-note {
    grid-template-columns: 1fr;
  }
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.tech-card {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
}

.tech-card-hero {
  min-height: 320px;
}

.tech-card-hero-wide {
  grid-column: span 6;
}

.tech-card-hero-narrow {
  grid-column: span 4;
}

.tech-card-support {
  grid-column: span 5;
  min-height: 228px;
  padding: 24px 26px;
  gap: 14px;
}

.tech-card-top {
  display: grid;
  gap: 14px;
}

.tech-card-index,
.roadmap span,
.advisor-mode span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin-bottom: 18px;
  background: rgba(203, 122, 53, 0.14);
  color: var(--copper);
  font-weight: 800;
}

.tech-card-index {
  width: 48px;
  height: 48px;
}

.tech-card p {
  margin: 0;
}

.tech-icon-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tech-icon-points li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  min-height: 68px;
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(9, 20, 37, 0.08);
  font-size: 0.92rem;
  line-height: 1.35;
  color: rgba(9, 20, 37, 0.82);
}

.tech-icon-points li strong {
  display: block;
  font-size: 0.8rem;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(9, 20, 37, 0.52);
}

.tech-icon-points li span:last-child {
  display: block;
  margin-top: 4px;
  line-height: 1.45;
  color: rgba(9, 20, 37, 0.84);
}

.tech-mini-icon {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #f0b278, var(--copper));
  box-shadow: 0 0 0 4px rgba(203, 122, 53, 0.12);
  margin-top: 7px;
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.tech-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(9, 20, 37, 0.1);
  background: rgba(255, 255, 255, 0.54);
  color: rgba(9, 20, 37, 0.8);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tech-metric-block,
.tech-warranty {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(203, 122, 53, 0.18);
  background: linear-gradient(135deg, rgba(203, 122, 53, 0.12), rgba(255, 255, 255, 0.56));
}

.tech-metric-block strong,
.tech-warranty {
  display: block;
  font-size: 1.15rem;
  line-height: 1.35;
  color: var(--navy-950);
}

.tech-metric-block span {
  display: block;
  margin-top: 8px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(9, 20, 37, 0.62);
}

.tech-section-cta {
  margin-top: 24px;
  width: fit-content;
}

.model-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.model-filter-button {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(9, 20, 37, 0.1);
  background: rgba(255, 255, 255, 0.58);
  color: rgba(9, 20, 37, 0.76);
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease,
    background 180ms ease, box-shadow 180ms ease;
}

.model-filter-button:hover {
  transform: translateY(-2px);
  border-color: rgba(203, 122, 53, 0.22);
  box-shadow: 0 14px 28px rgba(11, 24, 44, 0.08);
}

.model-filter-button.is-active {
  border-color: rgba(203, 122, 53, 0.32);
  background: rgba(203, 122, 53, 0.14);
  color: var(--navy-950);
  box-shadow: 0 14px 28px rgba(11, 24, 44, 0.08);
}

.section-heading.compact {
  max-width: 38rem;
}

.section-heading.compact h2 {
  font-size: clamp(2.2rem, 4vw, 3.15rem);
}

.model-catalog-intro {
  margin-bottom: 10px;
}

.featured-models-shell {
  margin-top: 42px;
}

.featured-models-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.models-catalog-grid {
  margin-top: 32px;
}

.featured-model-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(9, 20, 37, 0.08);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 22px 52px rgba(11, 24, 44, 0.11);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.featured-model-card::after,
.custom-capability-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(215, 155, 97, 0);
  box-shadow: 0 0 0 1px rgba(215, 155, 97, 0);
  pointer-events: none;
  transition: border-color 240ms ease, box-shadow 240ms ease;
}

.featured-model-card:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 155, 97, 0.22);
  box-shadow:
    0 32px 70px rgba(11, 24, 44, 0.15),
    0 0 0 1px rgba(215, 155, 97, 0.08);
}

.featured-model-card:hover::after,
.custom-capability-banner:hover::after {
  border-color: rgba(215, 155, 97, 0.3);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 28px rgba(215, 155, 97, 0.12);
}

.featured-model-media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: rgba(17, 34, 56, 0.08);
}

.featured-model-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 12, 24, 0) 0%, rgba(6, 12, 24, 0.04) 58%, rgba(6, 12, 24, 0.22) 100%);
  pointer-events: none;
}

.featured-model-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 320ms ease;
}

.featured-model-card:hover .featured-model-image {
  transform: scale(1.045);
}

.featured-model-body {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 24px 24px 26px;
}

.featured-model-body h3 {
  margin: 0;
  font-size: 1.72rem;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.featured-model-meta {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  color: rgba(9, 20, 37, 0.66);
}

.featured-model-description {
  margin: 0;
  line-height: 1.7;
  color: rgba(9, 20, 37, 0.78);
}

.collection-heading {
  margin-top: 72px;
}

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

.models-catalog-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(9, 20, 37, 0.08);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 20px 46px rgba(11, 24, 44, 0.09);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.models-catalog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(215, 155, 97, 0);
  box-shadow: 0 0 0 1px rgba(215, 155, 97, 0);
  pointer-events: none;
  transition: border-color 240ms ease, box-shadow 240ms ease;
}

.models-catalog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 155, 97, 0.22);
  box-shadow:
    0 30px 66px rgba(11, 24, 44, 0.14),
    0 0 0 1px rgba(215, 155, 97, 0.08);
}

.models-catalog-card:hover::after {
  border-color: rgba(215, 155, 97, 0.32);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 28px rgba(215, 155, 97, 0.12);
}

.models-catalog-card.is-hidden {
  display: none;
}

.models-catalog-media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: rgba(17, 34, 56, 0.08);
}

.models-catalog-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 12, 24, 0) 0%, rgba(6, 12, 24, 0.04) 58%, rgba(6, 12, 24, 0.24) 100%);
  pointer-events: none;
}

.models-catalog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 320ms ease;
}

.models-catalog-card:hover .models-catalog-image {
  transform: scale(1.045);
}

.models-catalog-card-future {
  grid-column: 1 / -1;
  background:
    radial-gradient(circle at 10% 18%, rgba(203, 122, 53, 0.12), transparent 20%),
    rgba(255, 255, 255, 0.72);
}

.future-model-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.88fr);
  gap: 24px;
  min-height: 100%;
}

.future-model-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 20px 28px 26px;
}

.future-model-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.future-model-copy .catalog-description {
  max-width: 36rem;
}

.future-model-visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-left: 1px solid rgba(9, 20, 37, 0.08);
  background:
    linear-gradient(135deg, rgba(14, 28, 46, 0.96), rgba(8, 18, 32, 1));
}

.future-model-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.46;
}

.future-model-visual::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -44px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(203, 122, 53, 0.28) 0%, rgba(203, 122, 53, 0) 72%);
}

.future-model-frame {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.future-model-card {
  position: absolute;
  display: block;
  object-fit: cover;
  object-position: center center;
  border: 1px solid rgba(240, 212, 181, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 30px rgba(3, 10, 21, 0.18);
  overflow: hidden;
}

.future-model-card-1 {
  width: 170px;
  height: 82px;
  transform: translate(-54px, 28px);
}

.future-model-card-2 {
  width: 132px;
  height: 68px;
  transform: translate(44px, -36px);
}

.future-model-card-3 {
  width: 102px;
  height: 54px;
  transform: translate(86px, 54px);
}

.models-catalog-body {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 20px 20px 22px;
}

.models-catalog-body h3 {
  margin: 0;
  font-size: 1.42rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.catalog-meta {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
  color: rgba(9, 20, 37, 0.66);
}

.catalog-description {
  margin: 0;
  line-height: 1.64;
  color: rgba(9, 20, 37, 0.74);
}

.catalog-bestfor {
  display: grid;
  gap: 8px;
}

.catalog-list-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(9, 20, 37, 0.44);
}

.catalog-checks {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.catalog-checks li {
  position: relative;
  padding-left: 28px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(9, 20, 37, 0.82);
}

.catalog-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--copper);
  font-size: 0.98rem;
  font-weight: 800;
}

.catalog-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 6px;
}

.catalog-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.catalog-tag {
  background: rgba(17, 34, 56, 0.06);
  color: rgba(9, 20, 37, 0.64);
}

.featured-model-card .model-link,
.models-catalog-card .model-link {
  min-height: 40px;
  padding: 0 16px;
  border-color: rgba(9, 20, 37, 0.1);
  background: rgba(9, 20, 37, 0.03);
  color: var(--navy-950);
  font-size: 0.9rem;
}

.featured-model-card .model-link:hover,
.models-catalog-card .model-link:hover {
  background: rgba(203, 122, 53, 0.12);
  border-color: rgba(203, 122, 53, 0.24);
}

.custom-capability-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.96fr);
  gap: 28px;
  align-items: center;
  margin-top: 36px;
  padding: 34px;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 8% 16%, rgba(203, 122, 53, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(13, 28, 48, 0.98), rgba(7, 18, 34, 1));
  box-shadow: var(--shadow-dark);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.custom-capability-banner:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 155, 97, 0.24);
  box-shadow:
    0 36px 74px rgba(4, 10, 21, 0.28),
    0 0 0 1px rgba(215, 155, 97, 0.08);
}

.custom-capability-copy,
.custom-capability-visual {
  position: relative;
  z-index: 1;
}

.custom-capability-copy h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--white);
}

.custom-capability-copy p:last-of-type {
  margin: 18px 0 0;
  max-width: 34rem;
  line-height: 1.8;
  color: rgba(251, 250, 247, 0.8);
}

.custom-capability-copy .button {
  margin-top: 24px;
}

.custom-capability-visual {
  min-height: 260px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.custom-capability-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 320ms ease;
}

.custom-capability-banner:hover .custom-capability-image {
  transform: scale(1.045);
}

.model-detail-visual-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 60%),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-dark);
}

.model-detail-visual-media {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 24px;
  background: #14253c;
}

.model-detail-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.model-detail-visual-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 16, 29, 0.04) 0%, rgba(8, 16, 29, 0.12) 50%, rgba(8, 16, 29, 0.42) 100%);
}

.model-detail-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.model-detail-metrics article {
  padding: 18px 18px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.model-detail-metrics strong {
  display: block;
  font-size: 1.08rem;
  color: var(--white);
}

.model-detail-metrics span {
  display: block;
  margin-top: 8px;
  line-height: 1.55;
  color: rgba(251, 250, 247, 0.7);
}

.model-detail-copy h2 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.model-detail-copy p {
  max-width: 38rem;
}

.model-detail-hero {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.model-detail-hero-inner {
  align-items: start;
}

.model-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(251, 250, 247, 0.52);
}

.model-breadcrumb a,
.model-breadcrumb span {
  position: relative;
}

.model-breadcrumb a {
  color: rgba(251, 250, 247, 0.72);
}

.model-breadcrumb a:hover {
  color: var(--white);
}

.model-breadcrumb a::after,
.model-breadcrumb span:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
  color: rgba(251, 250, 247, 0.32);
}

.button-secondary-solid {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--white);
  background: rgba(20, 40, 66, 0.92);
}

.button-secondary-solid:hover {
  background: rgba(24, 49, 80, 1);
  border-color: rgba(215, 155, 97, 0.26);
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(251, 250, 247, 0.86);
  background: transparent;
}

.button-ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(215, 155, 97, 0.24);
}

.model-detail-hero-actions {
  align-items: stretch;
}

.model-detail-hero-actions .button {
  min-width: 0;
}

.model-ideal-panel {
  margin-top: 24px;
  padding: 22px 22px 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.model-ideal-panel strong {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(251, 250, 247, 0.68);
}

.model-ideal-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.model-ideal-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(251, 250, 247, 0.88);
  line-height: 1.55;
}

.model-ideal-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--copper-soft);
  font-weight: 800;
}

.model-detail-hero-visual {
  padding-bottom: 22px;
}

.hero-model-switcher {
  display: grid;
  gap: 16px;
}

.hero-model-stage {
  min-height: 500px;
}

.hero-switcher-image[hidden],
.hero-switcher-card[hidden] {
  display: none;
}

.hero-switcher-card {
  position: absolute;
  inset: 18px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 14px;
  padding: 28px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(13, 28, 48, 0.96), rgba(7, 18, 34, 1));
  color: var(--white);
  box-shadow: 0 22px 42px rgba(4, 10, 21, 0.24);
}

.hero-switcher-card strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 0.98;
}

.hero-switcher-card p {
  max-width: 28rem;
  margin: 0;
  line-height: 1.8;
  color: rgba(251, 250, 247, 0.78);
}

.hero-model-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.hero-model-thumb {
  display: grid;
  gap: 9px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease,
    background 180ms ease;
}

.hero-model-thumb img,
.hero-thumb-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
}

.hero-model-thumb img {
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-thumb-placeholder {
  display: grid;
  place-items: center;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 18% 18%, rgba(203, 122, 53, 0.14), transparent 26%),
    rgba(255, 255, 255, 0.05);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(251, 250, 247, 0.64);
}

.hero-model-thumb > span:last-child:not(.hero-thumb-placeholder) {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: rgba(251, 250, 247, 0.8);
}

.hero-model-thumb:hover,
.hero-model-thumb.is-active {
  transform: translateY(-3px);
  border-color: rgba(215, 155, 97, 0.24);
  box-shadow: 0 18px 34px rgba(3, 10, 21, 0.22);
}

.hero-model-thumb.is-active {
  background: rgba(203, 122, 53, 0.08);
}

.model-gallery-section {
  border-top: 1px solid rgba(9, 20, 37, 0.06);
}

.product-gallery {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.gallery-stage {
  display: grid;
  gap: 16px;
}

.gallery-display-media {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 30px;
  border: 1px solid rgba(9, 20, 37, 0.08);
  touch-action: pan-y;
  background:
    radial-gradient(circle at 14% 18%, rgba(203, 122, 53, 0.1), transparent 22%),
    rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.gallery-display-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 12, 24, 0) 0%, rgba(6, 12, 24, 0.02) 58%, rgba(6, 12, 24, 0.18) 100%);
  pointer-events: none;
}

.gallery-display-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 320ms ease;
}

.gallery-display-image[hidden],
.gallery-display-card[hidden] {
  display: none;
}

.gallery-display-media:hover .gallery-display-image {
  transform: scale(1.06);
}

.gallery-display-card {
  position: absolute;
  inset: 20px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 14px;
  padding: 28px;
  border-radius: 22px;
  border: 1px solid rgba(9, 20, 37, 0.08);
  background:
    linear-gradient(135deg, rgba(13, 28, 48, 0.96), rgba(7, 18, 34, 1));
  color: var(--white);
  box-shadow: 0 22px 42px rgba(4, 10, 21, 0.24);
}

.gallery-display-card strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.gallery-display-card p {
  max-width: 30rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(251, 250, 247, 0.78);
}

.gallery-stage-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  padding: 0 6px;
}

.gallery-stage-title {
  font-size: 1.18rem;
  line-height: 1.3;
  color: var(--navy-950);
}

.gallery-stage-copy {
  max-width: 44rem;
  margin: 0;
  line-height: 1.7;
  color: rgba(9, 20, 37, 0.72);
}

.gallery-collections {
  display: grid;
  gap: 28px;
}

.gallery-collection {
  display: grid;
  gap: 16px;
}

.gallery-collection-head {
  display: grid;
  gap: 6px;
}

.gallery-collection-head strong {
  font-size: 1.2rem;
  color: var(--navy-950);
}

.gallery-collection-head p {
  margin: 0;
  line-height: 1.65;
  color: rgba(9, 20, 37, 0.68);
}

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

.gallery-thumb {
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 20px;
  border: 1px solid rgba(9, 20, 37, 0.08);
  background: rgba(255, 255, 255, 0.58);
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease,
    background 180ms ease;
}

.gallery-thumb img,
.gallery-thumb-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
}

.gallery-thumb img {
  object-fit: cover;
  object-position: center center;
  display: block;
}

.gallery-thumb-placeholder {
  display: grid;
  place-items: center;
  border: 1px dashed rgba(9, 20, 37, 0.16);
  background:
    radial-gradient(circle at 18% 18%, rgba(203, 122, 53, 0.12), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(232, 224, 208, 0.78));
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(9, 20, 37, 0.54);
}

.gallery-thumb > span:last-child:not(.gallery-thumb-placeholder) {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
  color: rgba(9, 20, 37, 0.78);
}

.gallery-stage-simplified {
  gap: 0;
}

.gallery-thumbs-gallery {
  grid-template-columns: repeat(8, minmax(0, 1fr));
  margin-top: 2px;
}

.gallery-thumbs-gallery .gallery-thumb {
  gap: 0;
  padding: 8px;
}

.gallery-thumbs-gallery .gallery-thumb img,
.gallery-thumbs-gallery .gallery-thumb-placeholder {
  aspect-ratio: 1 / 1;
}

.gallery-thumbs-gallery .gallery-thumb-placeholder {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-align: center;
}

.gallery-thumb:hover,
.gallery-thumb.is-active {
  transform: translateY(-3px);
  border-color: rgba(203, 122, 53, 0.24);
  box-shadow: 0 18px 34px rgba(11, 24, 44, 0.1);
}

.gallery-thumb.is-active {
  background: rgba(203, 122, 53, 0.08);
}

.section-heading-light h2,
.section-heading-light p {
  color: var(--white);
}

.section-heading-light p:not(.eyebrow) {
  color: rgba(251, 250, 247, 0.78);
}

.model-floorplan-section {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.floorplan-section-shell {
  display: grid;
  gap: 34px;
}

.floorplan-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 36px;
  align-items: start;
}

.floorplan-copy > p:last-of-type {
  max-width: 34rem;
  margin-top: 18px;
  line-height: 1.8;
  color: rgba(251, 250, 247, 0.78);
}

.floorplan-specs {
  display: grid;
  gap: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.floorplan-spec-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.floorplan-spec-row:last-child {
  border-bottom: 0;
}

.floorplan-spec-row span {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(251, 250, 247, 0.66);
}

.floorplan-spec-row strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--white);
}

.floorplan-stack {
  margin-top: 28px;
}

.floorplan-stack article {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.floorplan-stack h3,
.floorplan-stack p {
  color: var(--white);
}

.floorplan-visual-block {
  display: grid;
}

.floorplan-visual-card {
  display: grid;
  gap: 18px;
  padding: 26px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 60%),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-dark);
}

.floorplan-visual-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 20px;
}

.floorplan-visual-head strong {
  font-size: 1.14rem;
  color: var(--white);
}

.floorplan-visual-head span {
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(251, 250, 247, 0.58);
}

.floorplan-blueprint {
  overflow: hidden;
  min-height: 420px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, rgba(16, 35, 58, 1), rgba(9, 20, 37, 1));
  background-size: 26px 26px, 26px 26px, auto;
}

.floorplan-blueprint svg {
  width: 100%;
  height: 100%;
  display: block;
  stroke: rgba(240, 212, 181, 0.86);
  stroke-width: 4;
  fill: none;
}

.floorplan-blueprint text {
  fill: rgba(251, 250, 247, 0.78);
  stroke: none;
  font-family: "Manrope", "Avenir Next", sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.floorplan-layout-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.floorplan-layout-notes span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(251, 250, 247, 0.8);
}

.floorplan-actions {
  margin-top: 8px;
}

.floorplan-tablist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.floorplan-tab {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(251, 250, 247, 0.74);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease,
    transform 180ms ease;
}

.floorplan-tab:hover,
.floorplan-tab.is-active {
  transform: translateY(-2px);
  border-color: rgba(215, 155, 97, 0.26);
  background: rgba(203, 122, 53, 0.14);
  color: var(--white);
}

.floorplan-panel[hidden] {
  display: none;
}

.floorplan-panel {
  display: grid;
  gap: 16px;
}

.floorplan-panel-frame {
  overflow: hidden;
  min-height: 460px;
  padding: 0;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: zoom-in;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, rgba(16, 35, 58, 1), rgba(9, 20, 37, 1));
  background-size: 26px 26px, 26px 26px, auto;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.floorplan-panel-frame:hover {
  transform: translateY(-3px);
  border-color: rgba(215, 155, 97, 0.24);
  box-shadow: 0 22px 42px rgba(4, 10, 21, 0.24);
}

.floorplan-panel-image {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.floorplan-panel-copy {
  margin: 0;
  line-height: 1.75;
  color: rgba(251, 250, 247, 0.78);
}

.boxway-reinforcement-section {
  border-top: 1px solid rgba(9, 20, 37, 0.06);
}

.boxway-reinforcement-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.boxway-reinforcement-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(9, 20, 37, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.boxway-reinforcement-card:hover {
  transform: translateY(-4px);
  border-color: rgba(203, 122, 53, 0.24);
  box-shadow: 0 22px 40px rgba(11, 24, 44, 0.12);
}

.boxway-reinforcement-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(203, 122, 53, 0.12);
  color: var(--copper);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.boxway-reinforcement-card strong {
  font-size: 1.05rem;
  color: var(--navy-950);
}

.boxway-reinforcement-card p {
  margin: 0;
  line-height: 1.7;
  color: rgba(9, 20, 37, 0.72);
}

.related-models-section {
  border-top: 1px solid rgba(9, 20, 37, 0.06);
}

.related-models-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.related-model-card {
  display: grid;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(9, 20, 37, 0.08);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.related-model-card:hover {
  transform: translateY(-4px);
  border-color: rgba(203, 122, 53, 0.24);
  box-shadow: 0 24px 42px rgba(11, 24, 44, 0.12);
}

.related-model-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: rgba(17, 34, 56, 0.08);
}

.related-model-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 320ms ease;
}

.related-model-card:hover .related-model-media img {
  transform: scale(1.045);
}

.related-model-copy {
  display: grid;
  gap: 12px;
  padding: 22px 22px 24px;
}

.related-model-copy h3 {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.related-model-copy .catalog-description {
  max-width: none;
}

.lightbox-modal[hidden] {
  display: none;
}

.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(6, 12, 24, 0.82);
  backdrop-filter: blur(10px);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  width: min(1100px, calc(100vw - 40px));
  margin: 40px auto;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(14, 28, 46, 0.98), rgba(8, 18, 32, 1));
  box-shadow: 0 36px 84px rgba(3, 10, 21, 0.4);
}

.lightbox-close {
  justify-self: end;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox-image {
  width: 100%;
  max-height: calc(100vh - 140px);
  object-fit: contain;
  object-position: center center;
  display: block;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.technology-page-main {
  background: var(--cream);
}

.technology-hero {
  overflow: hidden;
}

.technology-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 36px;
  align-items: center;
}

.technology-hero-copy h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.2rem, 7vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.technology-hero-copy p:last-of-type {
  max-width: 40rem;
  margin: 20px 0 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(251, 250, 247, 0.8);
}

.technology-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.technology-hero-panel {
  padding: 30px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 60%),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-dark);
}

.technology-hero-badge {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(203, 122, 53, 0.14);
  color: var(--copper-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

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

.technology-hero-list article {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.technology-hero-list strong {
  display: block;
  color: var(--white);
}

.technology-hero-list span {
  display: block;
  margin-top: 8px;
  line-height: 1.6;
  color: rgba(251, 250, 247, 0.72);
}

.technology-boxway-logo {
  width: min(300px, 78%);
  margin-bottom: 22px;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 40px rgba(3, 8, 16, 0.24);
}

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

.technology-hero-dashboard div {
  min-height: 118px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.035);
}

.technology-hero-dashboard span,
.technology-proof-card strong,
.technology-performance-card h3 {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.02em;
}

.technology-hero-dashboard span {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 0.95;
  font-weight: 600;
}

.technology-hero-dashboard strong {
  display: block;
  margin-top: 10px;
  color: rgba(251, 250, 247, 0.68);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.technology-proof-grid,
.technology-performance-grid,
.technology-support-grid {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

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

.technology-proof-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 230px;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(9, 20, 37, 0.1);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
}

.technology-proof-card span,
.technology-performance-card > span {
  color: rgba(9, 20, 37, 0.54);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.technology-proof-card strong {
  color: var(--navy-950);
  font-size: clamp(2.15rem, 4vw, 3.25rem);
  line-height: 0.96;
  font-weight: 600;
}

.technology-proof-card p,
.technology-performance-card p,
.technology-support-grid p,
.technology-notes p {
  margin: 0;
  line-height: 1.72;
}

.technology-proof-card p {
  color: rgba(9, 20, 37, 0.68);
}

.technology-proof-card-dark {
  border-color: rgba(203, 122, 53, 0.24);
  background:
    linear-gradient(145deg, rgba(203, 122, 53, 0.22), rgba(255, 255, 255, 0.08)),
    var(--navy-900);
  box-shadow: var(--shadow-dark);
}

.technology-proof-card-dark span,
.technology-proof-card-dark p {
  color: rgba(251, 250, 247, 0.7);
}

.technology-proof-card-dark strong {
  color: var(--white);
}

.technology-thermal-performance {
  display: grid;
  gap: 24px;
  margin-top: 38px;
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 12% 0%, rgba(203, 122, 53, 0.18), transparent 26%),
    linear-gradient(180deg, #1d1d1d 0%, #181818 100%);
  color: var(--white);
  box-shadow: var(--shadow-dark);
}

.technology-thermal-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr);
  gap: 28px;
  align-items: end;
}

.technology-thermal-copy .eyebrow {
  margin-bottom: 12px;
}

.technology-thermal-copy h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
}

.technology-thermal-copy p:last-child {
  margin: 0;
  color: rgba(251, 250, 247, 0.68);
  line-height: 1.7;
}

.technology-thermal-table-wrap {
  overflow-x: auto;
}

.technology-thermal-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.technology-thermal-table th,
.technology-thermal-table td {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(251, 250, 247, 0.94);
  font-size: 1.08rem;
  line-height: 1.4;
  text-align: left;
}

.technology-thermal-table th {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.technology-thermal-table td {
  font-weight: 800;
}

.technology-thermal-table tbody tr:last-child td {
  border-bottom: 0;
}

.technology-thermal-note {
  margin: 0;
  color: rgba(251, 250, 247, 0.86);
  font-size: 1rem;
  line-height: 1.6;
}

.technology-thermal-note strong {
  color: var(--white);
}

.technology-assembly-section {
  overflow: hidden;
}

.technology-assembly-shell {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.technology-assembly-viewer {
  overflow: hidden;
  height: min(78vh, 760px);
  min-height: 620px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-dark);
}

.technology-assembly-viewer iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.technology-assembly-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.technology-assembly-steps span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(251, 250, 247, 0.76);
  font-size: 0.84rem;
  font-weight: 800;
}

.technology-panel-system-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: 42px;
  align-items: center;
}

.technology-layer-diagram {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(9, 20, 37, 0.1);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow-soft);
}

.technology-layer {
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(9, 20, 37, 0.08);
  background: rgba(255, 255, 255, 0.68);
}

.technology-layer strong {
  color: var(--navy-950);
  font-size: 1.2rem;
}

.technology-layer span {
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.layer-core {
  background:
    linear-gradient(135deg, rgba(203, 122, 53, 0.16), rgba(255, 255, 255, 0.76));
}

.technology-data-table {
  display: grid;
  overflow: hidden;
  margin-top: 36px;
  border-radius: 24px;
  border: 1px solid rgba(9, 20, 37, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.technology-data-table > div {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(230px, 0.82fr) minmax(260px, 1fr);
  border-bottom: 1px solid rgba(9, 20, 37, 0.08);
}

.technology-data-table > div:last-child {
  border-bottom: 0;
}

.technology-data-table span {
  min-height: 66px;
  padding: 16px 18px;
  border-right: 1px solid rgba(9, 20, 37, 0.08);
  color: rgba(9, 20, 37, 0.76);
  line-height: 1.55;
}

.technology-data-table span:last-child {
  border-right: 0;
}

.technology-data-table-head span {
  min-height: 54px;
  background: var(--navy-950);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.technology-structure-gallery {
  display: grid;
  gap: 20px;
  max-width: 860px;
  margin: 34px auto 0;
}

.technology-structure-gallery-copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.technology-structure-gallery-copy h3 {
  max-width: 16ch;
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1;
}

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

.technology-structure-grid figure {
  overflow: hidden;
  min-height: 0;
  margin: 0;
  border-radius: 18px;
  border: 1px solid rgba(9, 20, 37, 0.1);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
}

.technology-structure-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
  transition: transform 320ms ease;
}

.technology-structure-grid figure:hover img {
  transform: scale(1.04);
}

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

.technology-performance-card {
  display: grid;
  gap: 13px;
  min-height: 250px;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 70%),
    rgba(255, 255, 255, 0.028);
  box-shadow: 0 18px 42px rgba(4, 10, 21, 0.18);
}

.technology-performance-card-featured {
  grid-column: span 2;
  align-content: start;
  min-height: 350px;
  border-color: rgba(203, 122, 53, 0.28);
  background:
    radial-gradient(circle at 8% 0%, rgba(203, 122, 53, 0.28), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), transparent 74%),
    rgba(255, 255, 255, 0.035);
}

.technology-performance-card > span {
  color: var(--copper-soft);
}

.technology-performance-card h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1;
  font-weight: 600;
}

.technology-performance-card-featured h3 {
  max-width: 15ch;
  font-size: clamp(2.35rem, 5vw, 3.8rem);
}

.technology-performance-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.technology-performance-list li {
  min-height: 48px;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(251, 250, 247, 0.82);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

.technology-performance-card p,
.technology-notes p {
  color: rgba(251, 250, 247, 0.72);
}

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

.technology-support-grid article {
  min-height: 210px;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(9, 20, 37, 0.1);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow-soft);
}

.technology-support-grid h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.technology-support-grid p {
  color: rgba(9, 20, 37, 0.68);
}

.technology-notes-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  gap: 42px;
  align-items: start;
}

.technology-notes h2,
.technology-final-cta h2 {
  margin: 0;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 0.98;
}

.technology-notes p {
  max-width: 46rem;
  margin-top: 20px;
}

.technology-compliance-list {
  display: grid;
  gap: 12px;
}

.technology-compliance-list div {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.035);
}

.technology-compliance-list strong {
  color: var(--copper-soft);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.technology-compliance-list span {
  color: rgba(251, 250, 247, 0.76);
  line-height: 1.55;
}

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

.technology-report-list span {
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(9, 20, 37, 0.1);
  background: rgba(255, 255, 255, 0.66);
  color: rgba(9, 20, 37, 0.72);
  font-size: 0.92rem;
  line-height: 1.45;
}

.technology-final-cta {
  text-align: center;
}

.technology-final-cta-shell {
  display: grid;
  justify-items: center;
  gap: 22px;
}

.technology-final-cta h2 {
  max-width: 11ch;
}

.technology-final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.investor-page-main {
  background: var(--cream);
}

.investor-page-hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
  background: #071122;
}

.investor-page-hero-image,
.investor-page-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.investor-page-hero-image {
  object-fit: cover;
  object-position: center center;
}

.investor-page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 13, 25, 0.9) 0%, rgba(6, 13, 25, 0.72) 42%, rgba(6, 13, 25, 0.42) 100%),
    linear-gradient(180deg, rgba(6, 13, 25, 0.14) 0%, rgba(6, 13, 25, 0.52) 78%, rgba(6, 13, 25, 0.94) 100%);
}

.investor-page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  gap: 42px;
  align-items: center;
  padding: 96px 0;
}

.investor-page-hero-copy h1 {
  max-width: 780px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 5.1rem;
  line-height: 0.95;
  letter-spacing: 0;
  color: var(--white);
}

.investor-page-hero-copy > p:last-of-type,
.investor-platform-header > p,
.investor-traction-copy p,
.investor-final-shell > p {
  max-width: 48rem;
  margin: 22px 0 0;
  color: rgba(251, 250, 247, 0.78);
  font-size: 1.08rem;
  line-height: 1.78;
}

.investor-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.investor-platform-card {
  display: grid;
  gap: 18px;
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 16% 0%, rgba(203, 122, 53, 0.26), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(10px);
}

.investor-card-kicker,
.investor-platform-feature span,
.investor-product-card span,
.investor-funding-path span,
.investor-traction-table span {
  color: var(--copper-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.investor-platform-card h2 {
  margin: 0;
  color: var(--white);
  font-size: 1.7rem;
  line-height: 1.1;
}

.investor-platform-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.investor-platform-card li {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(251, 250, 247, 0.84);
  font-weight: 800;
  line-height: 1.35;
}

.investor-why-now {
  padding: 0;
  background: var(--navy-950);
  color: var(--white);
}

.investor-opportunity-hero {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: grid;
  align-items: center;
}

.investor-opportunity-hero img,
.investor-opportunity-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.investor-opportunity-hero img {
  object-fit: cover;
  object-position: center center;
}

.investor-opportunity-hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 17, 35, 0.98) 0%, rgba(3, 17, 35, 0.82) 34%, rgba(3, 17, 35, 0.18) 74%, rgba(3, 17, 35, 0.02) 100%),
    linear-gradient(180deg, rgba(3, 17, 35, 0.1) 0%, rgba(3, 17, 35, 0.62) 100%);
}

.investor-opportunity-copy {
  position: relative;
  z-index: 1;
  padding: 74px 0 64px;
}

.investor-opportunity-copy h2 {
  max-width: 12ch;
  margin: 10px 0 0;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 4.75rem;
  line-height: 0.94;
  letter-spacing: 0;
}

.investor-opportunity-rule {
  display: block;
  width: 92px;
  height: 2px;
  margin: 28px 0 20px;
  background: var(--copper-soft);
}

.investor-opportunity-copy > p:last-child {
  max-width: 33rem;
  margin: 0;
  color: rgba(251, 250, 247, 0.9);
  font-size: 1.2rem;
  line-height: 1.7;
}

.investor-opportunity-metrics {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(90deg, rgba(6, 25, 48, 0.98), rgba(7, 34, 58, 0.82)),
    radial-gradient(circle at 76% 20%, rgba(203, 122, 53, 0.14), transparent 32%);
}

.investor-opportunity-metric-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.investor-opportunity-metric-grid article {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 8px;
  min-height: 220px;
  padding: 30px 22px 26px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.investor-opportunity-metric-grid article:last-child {
  border-right: 0;
}

.investor-opportunity-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 4px;
  border-radius: 50%;
  border: 1px solid rgba(215, 155, 97, 0.72);
  color: var(--copper-soft);
  font-size: 0.88rem;
  font-weight: 800;
}

.investor-opportunity-metric-grid strong {
  color: var(--white);
  font-size: 2.25rem;
  line-height: 1;
}

.investor-opportunity-metric-grid h3 {
  margin: 0;
  color: var(--copper-soft);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: uppercase;
}

.investor-opportunity-metric-grid p {
  margin: 0;
  color: rgba(251, 250, 247, 0.82);
  line-height: 1.55;
}

.investor-opportunity-lower {
  background: linear-gradient(90deg, #fbfaf7 0%, #fbfaf7 64%, var(--navy-950) 64%, var(--navy-950) 100%);
}

.investor-opportunity-lower-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(360px, 0.72fr);
  align-items: stretch;
}

.investor-market-drivers {
  padding: 34px 34px 34px 0;
  color: var(--navy-950);
}

.investor-market-drivers h3,
.investor-supply-chart h3 {
  margin: 0 0 22px;
  color: var(--copper);
  font-size: 1.03rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.investor-driver-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.investor-driver-grid article {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 10px;
  min-height: 160px;
  padding: 0 20px;
  text-align: center;
  border-right: 1px solid rgba(9, 20, 37, 0.18);
}

.investor-driver-grid article:last-child {
  border-right: 0;
}

.investor-driver-grid span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(9, 20, 37, 0.18);
  color: var(--navy-950);
  font-size: 0.78rem;
  font-weight: 800;
}

.investor-driver-grid strong {
  color: var(--navy-950);
  font-size: 0.92rem;
  line-height: 1.25;
}

.investor-driver-grid p {
  margin: 0;
  color: rgba(9, 20, 37, 0.74);
  font-size: 0.86rem;
  line-height: 1.45;
}

.investor-supply-chart {
  padding: 34px 0 28px 34px;
  color: var(--white);
}

.investor-chart-legend {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.investor-chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(251, 250, 247, 0.86);
  font-size: 0.9rem;
}

.investor-chart-legend i {
  display: inline-block;
  width: 22px;
  height: 3px;
  border-radius: 999px;
}

.investor-chart-legend .demand-line {
  background: #57b4ff;
}

.investor-chart-legend .supply-line {
  background: #f8a31b;
}

.investor-supply-chart svg {
  width: 100%;
  max-width: 520px;
  height: auto;
  overflow: visible;
}

.investor-supply-chart line {
  stroke: rgba(251, 250, 247, 0.28);
  stroke-width: 1.5;
}

.investor-supply-chart polyline {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.investor-supply-chart .demand {
  stroke: #57b4ff;
}

.investor-supply-chart .supply {
  stroke: #f8a31b;
}

.investor-supply-chart circle {
  stroke: var(--navy-950);
  stroke-width: 2;
}

.investor-supply-chart .demand-points circle {
  fill: #57b4ff;
}

.investor-supply-chart .supply-points circle {
  fill: #f8a31b;
}

.investor-supply-chart text {
  fill: rgba(251, 250, 247, 0.88);
  font-size: 16px;
  font-family: "Manrope", Arial, sans-serif;
}

.investor-supply-chart .chart-gap-label {
  fill: var(--copper-soft);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.investor-opportunity-tagline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  padding: 26px 0 28px;
  color: var(--white);
}

.investor-opportunity-tagline span {
  color: rgba(251, 250, 247, 0.92);
  font-size: 1.18rem;
}

.investor-opportunity-tagline strong {
  color: var(--copper-soft);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

.investor-opportunity-source {
  margin: -10px auto 0;
  padding: 0 0 28px;
  color: rgba(251, 250, 247, 0.58);
  font-size: 0.84rem;
  line-height: 1.55;
}

.investor-market-grid,
.investor-product-grid,
.investor-funding-path,
.investor-funds-grid,
.investor-milestone-grid,
.investor-lessons-grid {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.investor-market-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.investor-market-card,
.investor-product-card,
.investor-funding-path article,
.investor-lessons-grid article {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(9, 20, 37, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.investor-market-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 230px;
  padding: 24px;
}

.investor-market-card span {
  color: rgba(9, 20, 37, 0.5);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.investor-market-card strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--navy-950);
  font-size: 2.75rem;
  line-height: 0.95;
}

.investor-market-card p,
.investor-product-card p,
.investor-funding-path p,
.investor-funds-grid p,
.investor-milestone-grid p,
.investor-lessons-grid p {
  margin: 0;
  color: rgba(9, 20, 37, 0.66);
  line-height: 1.65;
}

.investor-platform-section,
.investor-traction-section,
.investor-funds-section,
.investor-milestone-section,
.investor-final-section {
  overflow: hidden;
}

.investor-platform-header {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.58fr);
  gap: 42px;
  align-items: end;
}

.investor-platform-header h2,
.investor-traction-copy h2,
.investor-final-shell h2 {
  margin: 0;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 4.45rem;
  line-height: 0.98;
  letter-spacing: 0;
}

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

.investor-platform-feature {
  overflow: hidden;
  display: grid;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow-dark);
}

.investor-platform-feature-large {
  grid-row: span 2;
}

.investor-platform-feature img,
.investor-product-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center center;
}

.investor-platform-feature-large img {
  min-height: 520px;
}

.investor-platform-feature div,
.investor-product-card div {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.investor-platform-feature h3,
.investor-product-card h3,
.investor-funding-path h3,
.investor-roadmap-card h3,
.investor-milestone-grid strong,
.investor-lessons-grid strong {
  margin: 0;
  color: var(--navy-950);
  font-size: 1.34rem;
  line-height: 1.2;
}

.investor-platform-feature h3,
.investor-platform-feature p {
  color: var(--white);
}

.investor-platform-feature p {
  margin: 0;
  color: rgba(251, 250, 247, 0.72);
  line-height: 1.7;
}

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

.investor-product-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.investor-product-card img {
  min-height: 240px;
  aspect-ratio: 16 / 10;
}

.investor-traction-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  gap: 42px;
  align-items: start;
}

.investor-traction-metrics {
  display: grid;
  gap: 14px;
}

.investor-traction-metrics article,
.investor-funds-grid article,
.investor-milestone-grid article {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.investor-traction-metrics span {
  color: var(--copper-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.investor-traction-metrics strong,
.investor-funds-grid span {
  display: block;
  margin-top: 10px;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.65rem;
  line-height: 0.95;
}

.investor-traction-metrics p {
  margin: 10px 0 0;
  color: rgba(251, 250, 247, 0.72);
  line-height: 1.65;
}

.investor-traction-table-wrap {
  margin-top: 36px;
}

.investor-traction-table {
  display: grid;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
}

.investor-traction-table div {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) 1fr;
  gap: 20px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.investor-traction-table div:last-child {
  border-bottom: 0;
}

.investor-traction-table strong {
  color: rgba(251, 250, 247, 0.82);
  font-weight: 700;
  line-height: 1.5;
}

.investor-funding-path {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.investor-funding-path article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 265px;
  padding: 26px;
}

.investor-funding-path strong {
  color: var(--copper);
  font-size: 1.05rem;
}

.investor-disclaimer-inline {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(203, 122, 53, 0.2);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(9, 20, 37, 0.68);
  line-height: 1.65;
}

.investor-funds-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(0, 0.86fr);
  gap: 42px;
  align-items: start;
}

.investor-funds-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.investor-funds-grid article {
  display: grid;
  gap: 12px;
  min-height: 210px;
}

.investor-funds-grid strong {
  color: var(--white);
  line-height: 1.3;
}

.investor-funds-grid p {
  color: rgba(251, 250, 247, 0.72);
}

.investor-funds-note {
  margin-top: 18px;
  color: rgba(251, 250, 247, 0.62);
  font-size: 0.92rem;
  line-height: 1.65;
}

.investor-roadmap-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(360px, 0.76fr);
  gap: 42px;
  align-items: start;
}

.investor-roadmap-card {
  position: relative;
  display: grid;
  padding: 30px 30px 30px 34px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 84% 8%, rgba(203, 122, 53, 0.2), transparent 22%),
    linear-gradient(150deg, rgba(14, 27, 44, 0.98), rgba(8, 17, 31, 0.96));
  box-shadow: var(--shadow-dark);
}

.investor-roadmap-card::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 58px;
  bottom: 58px;
  width: 1px;
  background: linear-gradient(180deg, rgba(215, 155, 97, 0.8), rgba(255, 255, 255, 0.12));
}

.investor-roadmap-card article {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 20px 0 20px 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.investor-roadmap-card article:last-child {
  border-bottom: 0;
}

.investor-roadmap-card article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--navy-950);
  border: 1px solid rgba(215, 155, 97, 0.92);
  box-shadow: 0 0 0 8px rgba(203, 122, 53, 0.08);
}

.investor-roadmap-card span,
.investor-milestone-grid span {
  color: var(--copper-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.investor-roadmap-card h3 {
  color: var(--white);
}

.investor-roadmap-card p {
  margin: 0;
  color: rgba(251, 250, 247, 0.72);
  line-height: 1.65;
}

.investor-milestone-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.investor-milestone-grid article {
  display: grid;
  gap: 12px;
  min-height: 220px;
}

.investor-milestone-grid strong {
  color: var(--white);
}

.investor-milestone-grid p {
  color: rgba(251, 250, 247, 0.72);
}

.investor-lessons-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.investor-lessons-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 210px;
  padding: 22px;
}

.investor-final-section {
  text-align: center;
}

.investor-final-shell {
  display: grid;
  justify-items: center;
}

.investor-final-shell h2 {
  max-width: 760px;
}

.investor-securities-disclaimer {
  max-width: 960px;
  margin-top: 38px;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  text-align: left;
}

.investor-securities-disclaimer strong {
  display: block;
  color: var(--copper-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.investor-securities-disclaimer p {
  margin: 10px 0 0;
  color: rgba(251, 250, 247, 0.72);
  line-height: 1.7;
}

.models-hero .technology-hero-inner {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: 46px;
  align-items: start;
}

.models-hero .technology-hero-copy h1 {
  max-width: 8.8ch;
  font-size: clamp(2.8rem, 5.85vw, 4.55rem);
  text-wrap: balance;
}

.models-hero-subcopy {
  max-width: 34rem;
  margin: 20px 0 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(251, 250, 247, 0.8);
}

.models-trust-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(251, 250, 247, 0.68);
}

.models-trust-line::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #f0b278, var(--copper));
  box-shadow: 0 0 0 5px rgba(203, 122, 53, 0.1);
}

.model-system-visual {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 62%),
    linear-gradient(135deg, rgba(13, 28, 48, 0.82), rgba(7, 18, 34, 0.94));
}

.model-system-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 100%);
  pointer-events: none;
}

.model-system-visual::after {
  content: "";
  position: absolute;
  right: -72px;
  bottom: -84px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(203, 122, 53, 0.22) 0%, rgba(203, 122, 53, 0) 72%);
  pointer-events: none;
}

.model-system-header,
.model-system-grid {
  position: relative;
  z-index: 1;
}

.model-system-header {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.model-system-caption {
  margin: 0;
  max-width: 24rem;
  line-height: 1.6;
  color: rgba(251, 250, 247, 0.72);
}

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

.model-system-tile {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  gap: 16px;
  min-height: 168px;
  padding: 18px 18px 16px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 22px 40px rgba(3, 10, 21, 0.22);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease,
    background 220ms ease;
}

.model-system-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(215, 155, 97, 0);
  box-shadow: 0 0 0 1px rgba(215, 155, 97, 0);
  pointer-events: none;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.model-system-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 155, 97, 0.2);
  box-shadow:
    0 28px 54px rgba(3, 10, 21, 0.3),
    0 0 0 1px rgba(215, 155, 97, 0.08);
}

.model-system-tile:hover::after {
  border-color: rgba(215, 155, 97, 0.26);
  box-shadow: 0 0 24px rgba(215, 155, 97, 0.12);
}

.model-system-tile-featured {
  background:
    linear-gradient(180deg, rgba(203, 122, 53, 0.16), rgba(255, 255, 255, 0.02) 48%),
    rgba(255, 255, 255, 0.04);
}

.model-system-icon {
  display: flex;
  align-items: flex-start;
  min-height: 56px;
  color: rgba(240, 212, 181, 0.92);
}

.model-system-icon svg {
  width: 84px;
  max-width: 100%;
  height: auto;
  display: block;
}

.model-system-copy {
  display: grid;
  gap: 8px;
}

.model-system-copy strong {
  display: block;
  font-size: clamp(1.42rem, 2vw, 1.9rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
}

.model-system-copy span {
  display: block;
  font-size: 0.94rem;
  line-height: 1.45;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(251, 250, 247, 0.74);
}

.model-system-tile-featured .model-system-copy strong {
  color: var(--copper-soft);
}

.model-system-outline {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  min-height: 28px;
  margin-top: auto;
  color: rgba(240, 212, 181, 0.48);
}

.model-system-outline svg {
  width: 108px;
  max-width: 100%;
  height: auto;
  display: block;
}

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

.process-band > div {
  padding: 24px;
  border: 1px solid rgba(9, 20, 37, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.46);
}

.process-band small {
  display: block;
  margin-bottom: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--copper);
}

.process-band strong {
  display: block;
  font-size: 1.12rem;
}

.process-band span {
  display: block;
  margin-top: 10px;
  line-height: 1.6;
  opacity: 0.76;
}

.dealer-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 34px;
  align-items: start;
}

.dealer-copy {
  display: grid;
  align-content: start;
}

.dealer-intro {
  margin: 18px 0 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(251, 250, 247, 0.8);
}

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

.dealer-mini-card {
  padding: 22px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.dealer-mini-card h3 {
  margin: 0 0 12px;
  font-size: 1.16rem;
  line-height: 1.3;
}

.dealer-mini-card p {
  margin: 0;
  line-height: 1.7;
  color: rgba(251, 250, 247, 0.74);
}

.dealer-visual-card {
  position: relative;
  padding: 20px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 60%),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-dark);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.dealer-visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(215, 155, 97, 0);
  box-shadow: 0 0 0 1px rgba(215, 155, 97, 0);
  pointer-events: none;
  transition: border-color 240ms ease, box-shadow 240ms ease;
}

.dealer-visual-card:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 155, 97, 0.18);
  box-shadow:
    0 32px 72px rgba(4, 10, 21, 0.34),
    0 0 0 1px rgba(215, 155, 97, 0.08);
}

.dealer-visual-card:hover::after {
  border-color: rgba(215, 155, 97, 0.3);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 28px rgba(215, 155, 97, 0.12);
}

.dealer-visual-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 24px;
  background: #162339;
}

.dealer-visual-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 320ms ease;
}

.dealer-visual-card:hover .dealer-visual-image {
  transform: scale(1.045);
}

.dealer-visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 16, 29, 0.08), rgba(8, 16, 29, 0.2) 52%, rgba(8, 16, 29, 0.82) 100%),
    linear-gradient(90deg, rgba(8, 16, 29, 0.08), transparent 42%, rgba(8, 16, 29, 0.2) 100%);
}

.dealer-visual-caption {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  z-index: 1;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--white);
}

.dealer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.dealer-actions .button-secondary {
  background: rgba(255, 255, 255, 0.04);
}

.dealer-page-main {
  overflow: clip;
}

.dealer-page-hero {
  padding-bottom: 104px;
}

.dealer-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  gap: 34px;
  align-items: center;
}

.dealer-page-copy {
  display: grid;
  align-content: start;
}

.dealer-page-copy h1 {
  max-width: 10ch;
}

.dealer-page-intro {
  margin: 18px 0 0;
  max-width: 36rem;
  font-size: 1.08rem;
  line-height: 1.82;
  color: rgba(251, 250, 247, 0.82);
}

.dealer-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.dealer-trust-chips span,
.dealer-tag-cloud span,
.territory-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--white);
}

.dealer-page-visual {
  padding: 18px;
}

.dealer-page-visual .dealer-visual-media {
  min-height: 580px;
}

.dealer-hero-media-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.dealer-hero-media-note span {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: rgba(251, 250, 247, 0.72);
}

.dealer-hero-media-note strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--white);
}

.dealer-benefit-grid,
.dealer-profile-grid,
.dealer-support-grid {
  display: grid;
  gap: 20px;
}

.dealer-benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.dealer-profile-grid,
.dealer-support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.dealer-benefit-card,
.dealer-flow-card,
.dealer-profile-card,
.dealer-revenue-card,
.dealer-support-card,
.dealer-form-info-card,
.dealer-form-tag-card,
.dealer-timeline-step,
.territory-map-card,
.dealer-investor-note {
  position: relative;
  border-radius: 28px;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.dealer-benefit-card,
.dealer-profile-card,
.dealer-revenue-card {
  padding: 26px 24px;
  border: 1px solid rgba(9, 20, 37, 0.08);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 44px rgba(11, 24, 44, 0.08);
}

.dealer-benefit-card:hover,
.dealer-profile-card:hover,
.dealer-revenue-card:hover,
.dealer-flow-card:hover,
.dealer-support-card:hover,
.territory-map-card:hover,
.dealer-form-info-card:hover,
.dealer-form-tag-card:hover,
.dealer-timeline-step:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 90, 30, 0.2);
  box-shadow:
    0 26px 56px rgba(11, 24, 44, 0.12),
    0 0 24px rgba(198, 90, 30, 0.08);
}

.dealer-benefit-card h3,
.dealer-flow-card h3,
.dealer-profile-card h3,
.dealer-revenue-card strong,
.dealer-support-card h3,
.dealer-timeline-step h3,
.dealer-form-info-card strong {
  margin: 0 0 12px;
}

.dealer-benefit-card p,
.dealer-flow-card p,
.dealer-profile-card p,
.dealer-revenue-card p,
.dealer-support-card p,
.dealer-timeline-step p,
.dealer-investor-note span,
.territory-copy-note,
.territory-map-footer p,
.dealer-compliance-strip p,
.dealer-form-disclaimer {
  margin: 0;
  line-height: 1.72;
}

.dealer-card-index {
  display: inline-flex;
  margin-bottom: 18px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--copper);
}

.dealer-section-cta {
  display: flex;
  justify-content: flex-start;
  margin-top: 28px;
}

.dealer-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.dealer-flow-card,
.dealer-support-card,
.territory-map-card,
.dealer-form-info-card,
.dealer-form-tag-card,
.dealer-timeline-step {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 72%),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-dark);
}

.dealer-flow-card {
  padding: 28px 24px;
}

.dealer-flow-kicker,
.territory-map-kicker,
.dealer-form-tag-card small {
  display: inline-flex;
  margin-bottom: 16px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: rgba(215, 155, 97, 0.92);
}

.dealer-card-list,
.dealer-check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dealer-card-list li,
.dealer-check-list li {
  position: relative;
  padding-left: 20px;
  line-height: 1.7;
}

.dealer-card-list li::before,
.dealer-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--copper);
  transform: translateY(-50%);
}

.territory-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  gap: 34px;
  align-items: start;
}

.territory-copy {
  display: grid;
  align-content: start;
}

.territory-copy .section-heading {
  margin-bottom: 0;
}

.territory-copy-note {
  margin-top: 20px;
  color: rgba(9, 20, 37, 0.72);
}

.territory-visual {
  display: grid;
}

.territory-map-card {
  padding: 28px;
  overflow: hidden;
}

.territory-map-surface {
  position: relative;
  min-height: 380px;
  margin-top: 6px;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(198, 90, 30, 0.16), transparent 18%),
    radial-gradient(circle at 72% 34%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(9, 20, 37, 0.16), rgba(9, 20, 37, 0.3)),
    #13233a;
}

.territory-map-surface::before,
.territory-map-surface::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.territory-map-surface::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.22;
}

.territory-map-surface::after {
  background:
    radial-gradient(circle at 24% 24%, rgba(255, 255, 255, 0.18), transparent 9%),
    radial-gradient(circle at 28% 58%, rgba(255, 255, 255, 0.12), transparent 8%),
    radial-gradient(circle at 58% 26%, rgba(255, 255, 255, 0.12), transparent 8%),
    radial-gradient(circle at 68% 54%, rgba(255, 255, 255, 0.12), transparent 8%),
    radial-gradient(circle at 78% 68%, rgba(255, 255, 255, 0.14), transparent 8%);
  opacity: 0.9;
}

.territory-marker {
  position: absolute;
  z-index: 1;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 26px rgba(5, 12, 25, 0.22);
}

.territory-marker-west { top: 16%; left: 10%; }
.territory-marker-central { top: 26%; left: 27%; }
.territory-marker-ontario { top: 20%; left: 47%; }
.territory-marker-california { top: 50%; left: 18%; }
.territory-marker-arizona { top: 58%; left: 30%; }
.territory-marker-texas { top: 58%; left: 50%; }
.territory-marker-florida { top: 70%; left: 72%; }

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

.territory-map-footer small {
  display: block;
  margin-bottom: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(215, 155, 97, 0.92);
}

.dealer-revenue-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.dealer-revenue-card strong {
  display: block;
  font-size: 1.08rem;
}

.dealer-investor-note {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 22px 24px;
  border: 1px solid rgba(9, 20, 37, 0.08);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 44px rgba(11, 24, 44, 0.08);
}

.dealer-investor-note strong {
  color: var(--copper);
}

.dealer-support-card {
  padding: 26px 24px;
}

.dealer-support-card span,
.dealer-timeline-step span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(198, 90, 30, 0.14);
  color: var(--copper-soft);
  font-size: 0.96rem;
  font-weight: 800;
}

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

.dealer-timeline-step {
  padding: 24px 22px;
}

.dealer-form-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: 24px;
  align-items: start;
  margin-top: 34px;
}

.dealer-form-sidebar {
  display: grid;
  gap: 18px;
}

.dealer-form-info-card,
.dealer-form-tag-card {
  padding: 24px 22px;
}

.dealer-form-tag-card small {
  color: rgba(215, 155, 97, 0.92);
}

.dealer-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dealer-tag-cloud span {
  color: rgba(251, 250, 247, 0.86);
}

.dealer-discovery-form {
  padding: 28px;
}

#application-form .dealer-discovery-form,
#application-form .dealer-form-info-card,
#application-form .dealer-form-tag-card {
  border: 1px solid rgba(9, 20, 37, 0.1);
  background: rgba(255, 255, 255, 0.74);
  color: var(--navy-950);
  box-shadow: var(--shadow-soft);
}

#application-form .dealer-form-info-card strong {
  color: var(--navy-950);
}

#application-form .dealer-form-info-card .dealer-card-list li {
  color: rgba(9, 20, 37, 0.74);
}

#application-form .dealer-form-tag-card small {
  color: var(--copper);
}

#application-form .dealer-tag-cloud span {
  border-color: rgba(9, 20, 37, 0.1);
  background: rgba(9, 20, 37, 0.04);
  color: rgba(9, 20, 37, 0.72);
}

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

.dealer-discovery-form label {
  margin-bottom: 0;
  color: rgba(9, 20, 37, 0.78);
}

.dealer-discovery-form label span {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(9, 20, 37, 0.76);
}

.dealer-discovery-form input,
.dealer-discovery-form textarea,
.dealer-discovery-form select {
  border-color: rgba(9, 20, 37, 0.14);
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy-950);
}

.dealer-discovery-form input::placeholder,
.dealer-discovery-form textarea::placeholder {
  color: rgba(9, 20, 37, 0.42);
}

.dealer-discovery-form select option {
  color: var(--navy-950);
  background: var(--white);
}

.dealer-form-span-2 {
  grid-column: 1 / -1;
}

.dealer-discovery-form input[type="file"] {
  padding-block: 12px;
}

.dealer-discovery-form button[type="submit"] {
  margin-top: 22px;
}

.dealer-form-disclaimer {
  margin-top: 18px;
  font-size: 0.9rem;
  color: rgba(9, 20, 37, 0.58);
}

.dealer-compliance-strip {
  padding: 28px 0;
}

.dealer-compliance-strip p {
  max-width: 70rem;
  color: rgba(9, 20, 37, 0.68);
}

.dealer-final-cta {
  padding-top: 92px;
}

.dealer-final-shell {
  max-width: 54rem;
}

.dealer-final-shell h2,
.dealer-final-shell p:last-of-type {
  max-width: 20ch;
}

.dealer-sticky-mobile {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 30;
  display: none;
  pointer-events: none;
}

.dealer-sticky-mobile .button {
  pointer-events: auto;
  box-shadow: 0 18px 40px rgba(7, 16, 30, 0.24);
}

.network-panel {
  padding: 34px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.04);
}

.network-chip {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  background: rgba(203, 122, 53, 0.14);
  color: var(--copper-soft);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.network-matrix {
  margin-top: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.network-matrix article {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.territory-card {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(244, 239, 229, 0.14);
  background:
    radial-gradient(circle at 70% 18%, rgba(203, 122, 53, 0.15), transparent 22%),
    rgba(6, 12, 24, 0.35);
  overflow: hidden;
}

.territory-rings {
  position: relative;
  height: 220px;
  margin: 18px 0 10px;
}

.territory-rings span {
  position: absolute;
  inset: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(244, 239, 229, 0.18);
}

.territory-rings span:nth-child(1) {
  width: 90px;
  height: 90px;
}

.territory-rings span:nth-child(2) {
  width: 170px;
  height: 170px;
}

.territory-rings span:nth-child(3) {
  width: 250px;
  height: 250px;
}

.resource-layout,
.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: 28px;
  margin-top: 40px;
  align-items: start;
}

.cta-shell {
  display: grid;
  gap: 24px;
}

.cta-header {
  max-width: 40rem;
}

.cta-header h2 {
  max-width: 9ch;
}

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

.cta-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px 18px 16px;
  overflow: hidden;
  border-radius: 26px;
  background:
    radial-gradient(circle at 82% 14%, rgba(203, 122, 53, 0.12), transparent 20%),
    linear-gradient(180deg, #12243d 0%, #0d1d33 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(4, 10, 21, 0.18);
  color: var(--white);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(215, 155, 97, 0);
  box-shadow: 0 0 0 1px rgba(215, 155, 97, 0);
  pointer-events: none;
  transition: border-color 240ms ease, box-shadow 240ms ease;
}

.cta-card:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 155, 97, 0.2);
  box-shadow:
    0 30px 64px rgba(4, 10, 21, 0.28),
    0 0 0 1px rgba(215, 155, 97, 0.08);
}

.cta-card:hover::after {
  border-color: rgba(215, 155, 97, 0.34);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 28px rgba(215, 155, 97, 0.12);
}

.cta-card-icon,
.cta-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(215, 155, 97, 0.34);
  color: var(--copper-soft);
}

.cta-card-icon svg,
.cta-contact-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-card h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.cta-card p {
  margin: 0;
  max-width: 18rem;
  line-height: 1.68;
  color: rgba(251, 250, 247, 0.74);
}

.cta-card-media {
  position: relative;
  overflow: hidden;
  margin-top: 4px;
  border-radius: 18px;
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.04);
}

.cta-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 12, 24, 0) 0%, rgba(6, 12, 24, 0.04) 56%, rgba(6, 12, 24, 0.22) 100%);
  pointer-events: none;
}

.cta-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 320ms ease;
}

.cta-card:hover .cta-card-image {
  transform: scale(1.045);
}

.cta-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 2px;
  color: var(--copper-soft);
  font-weight: 800;
}

.cta-card-link span {
  font-size: 1.15rem;
}

.cta-contact-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  margin-top: 2px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 84% 16%, rgba(203, 122, 53, 0.12), transparent 20%),
    linear-gradient(180deg, #12243d 0%, #0d1d33 100%);
  box-shadow: 0 18px 42px rgba(4, 10, 21, 0.18);
}

.cta-contact-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  min-height: 96px;
  padding: 20px 22px;
  color: var(--white);
}

.cta-contact-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-contact-copy strong {
  display: block;
  font-size: 1rem;
}

.cta-contact-copy {
  min-width: 0;
}

.cta-contact-copy span {
  display: block;
  margin-top: 6px;
  line-height: 1.6;
  color: rgba(251, 250, 247, 0.72);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.section-investor {
  background:
    radial-gradient(circle at 8% 14%, rgba(203, 122, 53, 0.11), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(17, 37, 61, 0.08), transparent 22%),
    linear-gradient(180deg, #f7f2e9 0%, #eee5d7 100%);
}

.investor-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}

.investor-narrative h2 {
  max-width: 10.6ch;
  font-size: clamp(3.3rem, 6vw, 5.3rem);
  line-height: 0.92;
}

.investor-intro {
  max-width: 41rem;
  margin-top: 24px;
  font-size: 1.12rem;
  line-height: 1.78;
  color: rgba(9, 20, 37, 0.74);
}

.investor-home-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 46rem;
  margin-top: 30px;
}

.investor-home-metrics article {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 132px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(9, 20, 37, 0.1);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 16px 36px rgba(11, 24, 44, 0.06);
}

.investor-home-metrics strong {
  color: var(--navy-950);
  font-size: 1.58rem;
  line-height: 1;
}

.investor-home-metrics span {
  color: rgba(9, 20, 37, 0.66);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.45;
}

.investor-thesis {
  max-width: 42rem;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(9, 20, 37, 0.12);
}

.investor-thesis h3 {
  margin: 0;
  font-size: 1.16rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.investor-points {
  display: grid;
  gap: 0;
  margin-top: 18px;
}

.investor-point {
  position: relative;
  padding: 22px 0 22px 26px;
  border-bottom: 1px solid rgba(9, 20, 37, 0.08);
}

.investor-point:first-child {
  padding-top: 0;
}

.investor-point:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.investor-point::before {
  content: "";
  position: absolute;
  left: 0;
  top: 29px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 32%, #ebb784 0%, #cb7a35 72%, #8b4d1d 100%);
  box-shadow: 0 0 0 8px rgba(203, 122, 53, 0.08);
}

.investor-point:first-child::before {
  top: 7px;
}

.investor-point h4 {
  margin: 0 0 8px;
  font-size: 1.34rem;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.investor-point p {
  margin: 0;
  max-width: 34rem;
  line-height: 1.7;
  color: rgba(9, 20, 37, 0.68);
}

.investor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button-secondary-dark {
  border-color: rgba(9, 20, 37, 0.14);
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.54);
}

.button-secondary-dark:hover {
  background: rgba(255, 255, 255, 0.78);
}

.investor-visual {
  position: relative;
}

.investor-visual-frame {
  position: relative;
  overflow: hidden;
  padding: 34px 32px 32px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 82% 14%, rgba(203, 122, 53, 0.2), transparent 18%),
    radial-gradient(circle at 18% 88%, rgba(55, 89, 130, 0.2), transparent 22%),
    linear-gradient(150deg, rgba(14, 27, 44, 0.98), rgba(8, 17, 31, 0.96));
  box-shadow: 0 32px 70px rgba(6, 13, 26, 0.22);
}

.investor-visual-frame::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.investor-visual-frame::after {
  content: "";
  position: absolute;
  top: 28px;
  right: -42px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 0 0 38px rgba(255, 255, 255, 0.02),
    0 0 0 76px rgba(255, 255, 255, 0.015);
  opacity: 0.85;
}

.investor-visual-kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(215, 155, 97, 0.96);
}

.investor-visual h3 {
  position: relative;
  z-index: 1;
  max-width: 12ch;
  margin: 0 0 28px;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 0.98;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.investor-phases {
  position: relative;
  z-index: 1;
}

.investor-phases::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(180deg, rgba(215, 155, 97, 0.64), rgba(255, 255, 255, 0.12));
}

.investor-phase {
  position: relative;
  padding: 24px 0 24px 68px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.investor-phase:first-child {
  padding-top: 12px;
  border-top: 0;
}

.investor-phase:last-child {
  padding-bottom: 4px;
}

.investor-phase::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 30px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #091425;
  border: 1px solid rgba(215, 155, 97, 0.92);
  box-shadow:
    0 0 0 8px rgba(203, 122, 53, 0.08),
    0 0 36px rgba(203, 122, 53, 0.18);
}

.investor-phase:first-child::before {
  top: 18px;
}

.investor-phase-step {
  display: block;
  margin-bottom: 10px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(215, 155, 97, 0.96);
}

.investor-phase h4 {
  margin: 0 0 8px;
  font-size: 1.38rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--white);
}

.investor-phase p {
  margin: 0;
  max-width: 24rem;
  line-height: 1.7;
  color: rgba(251, 250, 247, 0.74);
}

.legal-section {
  min-height: 62vh;
}

.legal-shell {
  max-width: 880px;
}

.legal-shell h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.95;
  color: var(--navy-950);
}

.legal-shell p:not(.eyebrow) {
  margin: 22px 0 0;
  color: rgba(9, 20, 37, 0.72);
  font-size: 1.05rem;
  line-height: 1.78;
}

.legal-shell a {
  color: var(--copper);
  font-weight: 800;
}

.legal-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.legal-meta-grid article {
  display: grid;
  gap: 8px;
  min-width: 0;
  min-height: 118px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(9, 20, 37, 0.1);
  background: rgba(255, 255, 255, 0.66);
}

.legal-meta-grid span {
  color: rgba(9, 20, 37, 0.5);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-meta-grid strong {
  color: var(--navy-950);
  font-size: 0.96rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.legal-lede {
  max-width: 58rem;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(203, 122, 53, 0.2);
  background: rgba(255, 255, 255, 0.7);
}

.legal-policy-section {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(9, 20, 37, 0.1);
}

.legal-policy-section h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: 1.52rem;
  line-height: 1.18;
}

.legal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.legal-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(9, 20, 37, 0.72);
  line-height: 1.55;
}

.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 5px rgba(203, 122, 53, 0.1);
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
}

.application-section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.application-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-height: 100%;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(4, 10, 21, 0.18);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.application-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(215, 155, 97, 0);
  box-shadow: 0 0 0 1px rgba(215, 155, 97, 0);
  pointer-events: none;
  transition: border-color 240ms ease, box-shadow 240ms ease, opacity 240ms ease;
}

.application-card:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 155, 97, 0.2);
  box-shadow:
    0 30px 64px rgba(4, 10, 21, 0.28),
    0 0 0 1px rgba(215, 155, 97, 0.08);
}

.application-card:hover::after {
  border-color: rgba(215, 155, 97, 0.34);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 28px rgba(215, 155, 97, 0.12);
}

.application-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.application-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 12, 24, 0) 0%, rgba(6, 12, 24, 0.06) 54%, rgba(6, 12, 24, 0.28) 100%);
  pointer-events: none;
}

.application-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 320ms ease;
}

.application-card:hover .application-image {
  transform: scale(1.045);
}

.application-body {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px 22px 24px;
}

.application-label {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper-soft);
}

.application-body h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
}

.application-body p:last-child {
  margin: 0;
  line-height: 1.72;
  color: rgba(251, 250, 247, 0.72);
}

.applications-page-main {
  background: var(--cream);
}

.applications-hero {
  overflow: hidden;
  padding: 84px 0 94px;
}

.applications-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 42px;
  align-items: center;
}

.applications-hero-copy h1,
.application-detail-copy h3,
.dealer-opportunity-copy h2,
.application-advisor-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0;
}

.applications-hero-copy h1 {
  max-width: 18ch;
  font-size: 3.55rem;
}

.applications-hero-copy > p:last-of-type,
.dealer-opportunity-copy > p,
.application-advisor-copy > p {
  max-width: 42rem;
  margin: 22px 0 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(251, 250, 247, 0.8);
}

.applications-hero-actions,
.applications-hero-chips,
.application-tag-list,
.applications-section-actions {
  display: flex;
  flex-wrap: wrap;
}

.applications-hero-actions {
  gap: 14px;
  margin-top: 30px;
}

.applications-hero-chips {
  gap: 10px;
  margin-top: 28px;
}

.applications-hero-chips span,
.application-tag-list span,
.momentum-status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.applications-hero-chips span {
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(251, 250, 247, 0.76);
  background: rgba(255, 255, 255, 0.04);
}

.applications-hero-visual {
  position: relative;
  min-width: 0;
}

.applications-collage {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: repeat(3, minmax(120px, 1fr));
  gap: 14px;
  padding: 14px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-dark);
}

.applications-collage figure {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  margin: 0;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
}

.applications-collage-large {
  grid-row: span 3;
}

.applications-collage img,
.applications-overview-media img,
.application-detail-media img,
.momentum-card img,
.concept-card img,
.dealer-opportunity-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.applications-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
}

.applications-overview-card,
.application-revenue-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(9, 20, 37, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(11, 24, 44, 0.08);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.applications-overview-card::after,
.application-revenue-card::after,
.momentum-card::after,
.concept-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(215, 155, 97, 0);
  pointer-events: none;
  transition: border-color 240ms ease, box-shadow 240ms ease;
}

.applications-overview-card:hover,
.application-revenue-card:hover,
.momentum-card:hover,
.concept-card:hover {
  transform: translateY(-4px);
  border-color: rgba(203, 122, 53, 0.2);
  box-shadow:
    0 26px 56px rgba(11, 24, 44, 0.12),
    0 0 24px rgba(203, 122, 53, 0.08);
}

.applications-overview-card:hover::after,
.application-revenue-card:hover::after,
.momentum-card:hover::after,
.concept-card:hover::after {
  border-color: rgba(203, 122, 53, 0.28);
  box-shadow: 0 0 22px rgba(203, 122, 53, 0.08);
}

.applications-overview-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: rgba(9, 20, 37, 0.06);
}

.applications-overview-media img,
.application-detail-media img,
.momentum-card img,
.concept-card img {
  transition: transform 320ms ease;
}

.applications-overview-card:hover .applications-overview-media img,
.application-tab-panel:hover .application-detail-media img,
.momentum-card:hover img,
.concept-card:hover img {
  transform: scale(1.045);
}

.applications-overview-body {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.applications-overview-body h3,
.application-revenue-card h3,
.momentum-card h3,
.concept-card h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 1.35rem;
  line-height: 1.16;
  letter-spacing: 0;
}

.applications-overview-body p:not(.application-label),
.application-revenue-card p,
.concept-card p {
  margin: 0;
  line-height: 1.68;
  color: rgba(9, 20, 37, 0.68);
}

.model-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.model-pill-list span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 16px;
  border: 1px solid rgba(9, 20, 37, 0.1);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(9, 20, 37, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.model-pill-list-dark span {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(251, 250, 247, 0.8);
}

.application-tabs {
  display: grid;
  grid-template-columns: minmax(210px, 0.32fr) minmax(0, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.application-tab-list {
  display: grid;
  gap: 10px;
  align-self: start;
  position: sticky;
  top: 112px;
}

.application-tab {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(251, 250, 247, 0.72);
  cursor: pointer;
  text-align: left;
  font-weight: 800;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.application-tab:hover,
.application-tab.is-active {
  transform: translateX(4px);
  border-color: rgba(203, 122, 53, 0.34);
  background: rgba(203, 122, 53, 0.13);
  color: var(--white);
}

.application-tab-panel[hidden] {
  display: none;
}

.application-tab-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  min-height: 520px;
  padding: 18px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 18px 42px rgba(4, 10, 21, 0.16);
}

.application-detail-media {
  overflow: hidden;
  min-height: 460px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.application-detail-media-gallery {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 12px;
}

.application-detail-media-gallery img {
  min-height: 0;
  border-radius: 18px;
}

.application-detail-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 18px 22px 18px 0;
}

.application-detail-copy h3 {
  max-width: 14ch;
  color: var(--white);
  font-size: 2.95rem;
}

.application-detail-copy > p:not(.eyebrow):not(.application-model-note):not(.application-disclaimer) {
  max-width: 44rem;
  margin: 0;
  color: rgba(251, 250, 247, 0.78);
  font-size: 1.03rem;
  line-height: 1.78;
}

.application-tag-list {
  gap: 9px;
}

.application-tag-list span {
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(251, 250, 247, 0.78);
  background: rgba(255, 255, 255, 0.04);
}

.application-tag-list.dark span {
  border-color: rgba(9, 20, 37, 0.12);
  color: rgba(9, 20, 37, 0.72);
  background: rgba(255, 255, 255, 0.7);
}

.application-model-note,
.application-disclaimer {
  margin: 0;
  line-height: 1.65;
}

.application-model-note {
  color: var(--copper-soft);
  font-weight: 800;
}

.application-disclaimer,
.applications-section-note {
  color: rgba(251, 250, 247, 0.62);
}

.application-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--copper-soft);
  font-weight: 800;
}

.application-text-link span,
.cta-card-link span {
  transition: transform 180ms ease;
}

.application-text-link:hover span,
.cta-card-link:hover span {
  transform: translateX(4px);
}

.application-accordion {
  display: none;
}

.application-accordion details {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 14px 34px rgba(4, 10, 21, 0.14);
}

.application-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 0 18px;
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.application-accordion summary::-webkit-details-marker {
  display: none;
}

.application-accordion summary::after {
  content: "+";
  color: var(--copper-soft);
  font-size: 1.35rem;
  line-height: 1;
}

.application-accordion details[open] summary::after {
  content: "-";
}

.application-accordion-body {
  display: grid;
  gap: 16px;
  padding: 0 14px 18px;
}

.application-accordion-gallery {
  display: grid;
  gap: 12px;
}

.application-accordion-body img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
}

.application-accordion-body h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.55rem;
  line-height: 1.15;
}

.application-accordion-body p {
  margin: 0;
  color: rgba(251, 250, 247, 0.76);
  line-height: 1.72;
}

.application-matrix {
  display: grid;
  overflow: hidden;
  margin-top: 36px;
  border-radius: 24px;
  border: 1px solid rgba(9, 20, 37, 0.09);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.application-matrix-row {
  display: grid;
  grid-template-columns: minmax(170px, 0.7fr) minmax(240px, 1fr) minmax(260px, 1.12fr);
  border-bottom: 1px solid rgba(9, 20, 37, 0.08);
}

.application-matrix-row:last-child {
  border-bottom: 0;
}

.application-matrix-row > span {
  display: grid;
  align-items: center;
  min-height: 72px;
  padding: 18px 20px;
  line-height: 1.56;
  color: rgba(9, 20, 37, 0.72);
  border-right: 1px solid rgba(9, 20, 37, 0.08);
}

.application-matrix-row > span:last-child {
  border-right: 0;
}

.application-matrix-row > span:first-child {
  color: var(--navy-950);
  font-weight: 800;
}

.application-matrix-head {
  background: var(--navy-950);
}

.application-matrix-head span,
.application-matrix-head span:first-child {
  min-height: 58px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.matrix-pills span {
  min-height: 30px;
  background: rgba(244, 239, 229, 0.82);
}

.momentum-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
}

.momentum-card,
.concept-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 18px 42px rgba(4, 10, 21, 0.18);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.momentum-card > img {
  aspect-ratio: 16 / 10;
}

.momentum-card-body {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.momentum-status {
  width: fit-content;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.status-ordered {
  color: #f3c36f;
  background: rgba(243, 195, 111, 0.1);
}

.status-permit,
.status-permits {
  color: #9ec3ff;
  background: rgba(158, 195, 255, 0.1);
}

.status-discussion {
  color: #b9d8b8;
  background: rgba(185, 216, 184, 0.1);
}

.momentum-card h3 {
  color: var(--white);
}

.momentum-location,
.momentum-card p {
  margin: 0;
  line-height: 1.64;
}

.momentum-location {
  color: var(--copper-soft);
  font-weight: 800;
}

.momentum-card p:not(.momentum-location) {
  color: rgba(251, 250, 247, 0.72);
}

.momentum-card dl {
  display: grid;
  gap: 8px;
  margin: 4px 0 0;
}

.momentum-card dl div {
  display: grid;
  gap: 4px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.momentum-card dt,
.momentum-card dd {
  margin: 0;
}

.momentum-card dt {
  color: rgba(251, 250, 247, 0.48);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.momentum-card dd {
  color: rgba(251, 250, 247, 0.82);
}

.applications-section-note {
  max-width: 62rem;
  margin: 28px 0 0;
  line-height: 1.7;
  font-size: 0.94rem;
}

.application-revenue-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.application-revenue-card {
  display: grid;
  gap: 14px;
  padding: 26px 24px;
}

.application-revenue-card span {
  color: var(--copper);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 38px;
}

.concept-card {
  display: grid;
  grid-template-columns: minmax(170px, 0.62fr) minmax(0, 1fr);
  min-height: 230px;
}

.concept-card img {
  min-height: 100%;
}

.concept-card div {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 24px;
}

.concept-card h3 {
  color: var(--white);
}

.concept-card p {
  color: rgba(251, 250, 247, 0.72);
}

.dealer-opportunity-shell,
.application-advisor-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 34px;
  align-items: center;
}

.dealer-opportunity-copy {
  display: grid;
  gap: 18px;
}

.dealer-opportunity-copy h2,
.application-advisor-copy h2 {
  max-width: 12ch;
  color: var(--navy-950);
  font-size: 3.6rem;
}

.dealer-opportunity-copy > p {
  color: rgba(9, 20, 37, 0.72);
}

.dealer-opportunity-copy .button {
  width: fit-content;
  margin-top: 4px;
}

.dealer-opportunity-media {
  overflow: hidden;
  min-height: 430px;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.application-advisor-shell {
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
}

.application-advisor-copy {
  display: grid;
  gap: 20px;
}

.application-advisor-copy h2 {
  color: var(--white);
}

.application-advisor-copy > p {
  margin-top: 0;
}

.application-advisor-copy .button {
  width: fit-content;
}

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

.advisor-question-grid span {
  display: grid;
  align-items: center;
  min-height: 86px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(251, 250, 247, 0.82);
  font-weight: 800;
  line-height: 1.42;
}

.resource-cards {
  margin-top: 26px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.resource-cards article {
  padding: 24px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.52);
}

.advisor-panel {
  padding: 26px;
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.76)),
    linear-gradient(135deg, rgba(203, 122, 53, 0.08), transparent 35%);
  box-shadow: var(--shadow-soft);
}

.advisor-mode {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(9, 20, 37, 0.1);
}

.advisor-mode:last-child {
  border-bottom: 0;
}

.lead-form {
  padding: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-dark);
}

.lead-form label {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.95rem;
  color: rgba(251, 250, 247, 0.84);
}

.lead-form input,
.lead-form textarea,
.lead-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  padding: 15px 16px;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(251, 250, 247, 0.42);
}

.form-note {
  margin: 16px 0 0;
  font-size: 0.9rem;
  color: rgba(251, 250, 247, 0.56);
}

.site-footer {
  background: #050d1a;
  color: rgba(251, 250, 247, 0.8);
  padding: 26px 0 34px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin: 8px 0 0;
  max-width: 34rem;
  line-height: 1.6;
}

.footer-brand {
  display: grid;
  gap: 10px;
}

.footer-logo {
  display: block;
  width: auto;
  height: 82px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal="left"] {
  transform: translateX(30px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 16px;
  }

  .split-layout,
  .split-layout.reverse,
  .investor-shell,
  .resource-layout,
  .cta-layout {
    grid-template-columns: 1fr;
  }

  .floorplan-layout {
    grid-template-columns: 1fr;
  }

  .model-grid,
  .tech-grid,
  .application-grid,
  .boxway-reinforcement-grid,
  .related-models-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .models-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-models-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-contact-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-contact-item {
    min-height: 88px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .cta-contact-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .cta-contact-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .model-card,
  .model-card-wide,
  .model-card-featured {
    grid-column: span 1;
  }

  .tech-card-hero-wide,
  .tech-card-hero-narrow,
  .tech-card-support {
    grid-column: span 1;
  }

  .network-matrix,
  .resource-cards,
  .process-band {
    grid-template-columns: 1fr;
  }

  .technology-hero-inner {
    grid-template-columns: 1fr;
  }

  .applications-hero-inner,
  .dealer-opportunity-shell,
  .application-advisor-shell {
    grid-template-columns: 1fr;
  }

  .applications-overview-grid,
  .momentum-grid,
  .application-revenue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .application-detail-row,
  .application-detail-row.reverse {
    grid-template-columns: 1fr;
  }

  .application-detail-row.reverse .application-detail-media,
  .application-detail-row.reverse .application-detail-copy {
    order: initial;
  }

  .application-detail-copy,
  .application-detail-row.reverse .application-detail-copy {
    padding: 12px 10px 16px;
  }

  .concept-card {
    grid-template-columns: 1fr;
  }

  .concept-card img {
    aspect-ratio: 16 / 10;
  }

  .models-hero .technology-hero-inner {
    grid-template-columns: 1fr;
  }

  .technology-proof-grid,
  .technology-performance-grid,
  .technology-support-grid,
  .technology-structure-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .technology-thermal-copy {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .technology-panel-system-grid,
  .technology-notes-grid {
    grid-template-columns: 1fr;
  }

  .custom-capability-banner {
    grid-template-columns: 1fr;
  }

  .future-model-shell {
    grid-template-columns: 1fr;
  }

  .future-model-visual {
    min-height: 240px;
    border-left: 0;
    border-top: 1px solid rgba(9, 20, 37, 0.08);
  }

  .hero-model-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dealer-layout,
  .dealer-card-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    max-width: 100%;
    font-size: 4rem;
  }

  .hero-scene-title {
    font-size: 2.35rem;
  }

  .investor-page-hero-inner,
  .investor-platform-header,
  .investor-traction-layout,
  .investor-funds-layout,
  .investor-roadmap-layout,
  .investor-opportunity-lower-grid {
    grid-template-columns: 1fr;
  }

  .investor-opportunity-lower {
    background: #fbfaf7;
  }

  .investor-opportunity-metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .investor-opportunity-metric-grid article {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .investor-opportunity-metric-grid article:nth-child(2n) {
    border-right: 0;
  }

  .investor-opportunity-metric-grid article:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .investor-market-drivers {
    padding-right: 0;
  }

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

  .investor-driver-grid article {
    min-height: 0;
    padding: 0 18px 18px;
  }

  .investor-supply-chart {
    margin: 0 0 34px;
    padding: 30px;
    border-radius: 24px;
    background: var(--navy-950);
  }

  .investor-market-grid,
  .investor-milestone-grid,
  .investor-lessons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .investor-product-grid,
  .investor-funding-path {
    grid-template-columns: 1fr;
  }

  .investor-platform-feature-large {
    grid-row: span 1;
  }

  .investor-platform-feature-large img {
    min-height: 320px;
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(100% - 32px, 1180px);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 88px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 12px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(244, 239, 229, 0.98);
    border: 1px solid rgba(9, 20, 37, 0.08);
    box-shadow: 0 20px 40px rgba(8, 15, 27, 0.18);
    transform: scale(0.96);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-nav.is-open {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .technology-proof-grid,
  .technology-performance-grid,
  .technology-support-grid,
  .technology-report-list,
  .technology-structure-grid {
    grid-template-columns: 1fr;
  }

  .technology-performance-card-featured {
    grid-column: span 1;
    min-height: 0;
  }

  .technology-performance-card-featured h3 {
    max-width: none;
  }

  .technology-performance-list {
    grid-template-columns: 1fr;
  }

  .technology-structure-gallery-copy {
    display: grid;
    justify-content: start;
  }

  .technology-assembly-viewer {
    height: 680px;
    min-height: 680px;
    border-radius: 22px;
  }

  .technology-thermal-performance {
    padding: 22px;
    border-radius: 24px;
  }

  .technology-thermal-table {
    min-width: 700px;
  }

  .technology-thermal-table th,
  .technology-thermal-table td {
    padding: 18px 16px 18px 0;
    font-size: 1rem;
  }

  .technology-data-table {
    gap: 12px;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .technology-data-table-head {
    display: none !important;
  }

  .technology-data-table > div {
    grid-template-columns: 1fr;
    overflow: hidden;
    border: 1px solid rgba(9, 20, 37, 0.1);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 14px 32px rgba(11, 24, 44, 0.07);
  }

  .technology-data-table span {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(9, 20, 37, 0.08);
  }

  .technology-data-table span:last-child {
    border-bottom: 0;
  }

  .investor-page-hero {
    min-height: auto;
  }

  .investor-page-hero-inner {
    padding: 72px 0;
  }

  .investor-page-hero-copy h1,
  .investor-opportunity-copy h2,
  .investor-platform-header h2,
  .investor-traction-copy h2,
  .investor-final-shell h2 {
    font-size: 3.25rem;
  }

  .investor-opportunity-hero {
    min-height: 390px;
  }

  .investor-driver-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .investor-platform-grid,
  .investor-funds-grid,
  .investor-market-grid,
  .investor-milestone-grid,
  .investor-lessons-grid,
  .legal-meta-grid,
  .legal-list {
    grid-template-columns: 1fr;
  }

  .investor-traction-table div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .investor-roadmap-card::before {
    left: 36px;
  }

  .nav-cta {
    width: 100%;
    min-width: 0;
  }

  .hero-media {
    height: clamp(340px, 64vw, 560px);
  }

  .hero-actions-wrap {
    padding-bottom: 28px;
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(9, 20, 37, 0.76) 0%,
        rgba(9, 20, 37, 0.46) 48%,
        rgba(9, 20, 37, 0.1) 100%
      ),
      linear-gradient(
        180deg,
        rgba(9, 20, 37, 0.04) 0%,
        rgba(9, 20, 37, 0.04) 68%,
        rgba(9, 20, 37, 0.22) 86%,
        rgba(9, 20, 37, 0.48) 100%
      );
  }

  .hero-title {
    max-width: 100%;
    font-size: 3.1rem;
  }

  .hero-caption {
    top: 40%;
    width: min(680px, 100%);
  }

  .hero-scene-title {
    font-size: 2rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .models-catalog-grid {
    grid-template-columns: 1fr;
  }

  .featured-models-grid {
    grid-template-columns: 1fr;
  }

  .boxway-reinforcement-grid,
  .related-models-grid {
    grid-template-columns: 1fr;
  }

  .gallery-display-media {
    min-height: 420px;
  }

  .hero-model-stage {
    min-height: 420px;
  }

  .model-detail-metrics {
    grid-template-columns: 1fr;
  }

  .cta-card-grid {
    grid-template-columns: 1fr;
  }

  .investor-visual-frame {
    padding: 30px 28px;
  }

  .investor-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .investor-actions .button {
    width: 100%;
  }

  .investor-home-metrics {
    grid-template-columns: 1fr;
  }

  .why-band {
    padding: 24px 26px 16px;
  }

  .why-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 24px;
  }

  .why-badge {
    padding: 0 20px 0 0;
  }

  .why-badge:nth-child(2),
  .why-badge:nth-child(4) {
    padding-right: 0;
    border-right: 0;
  }

  .why-badge:nth-child(3),
  .why-badge:nth-child(4) {
    padding-top: 8px;
  }

  .why-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px;
  }

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

  .model-visual {
    min-height: 230px;
  }

  .why-card-icon {
    width: 92px;
    height: 92px;
  }

  .tech-icon-points {
    grid-template-columns: 1fr;
  }

  .technology-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .applications-hero-copy h1 {
    max-width: 12ch;
    font-size: 3.15rem;
  }

  .application-detail-copy h3,
  .dealer-opportunity-copy h2,
  .application-advisor-copy h2 {
    font-size: 3rem;
  }

  .applications-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .applications-hero-actions .button,
  .dealer-opportunity-copy .button,
  .application-advisor-copy .button {
    width: 100%;
  }

  .application-tabs {
    display: none;
  }

  .application-accordion {
    display: grid;
    gap: 14px;
    margin-top: 34px;
  }

  .technology-hero-actions .button {
    width: 100%;
  }

  .model-system-visual {
    padding: 28px;
  }

  .model-system-grid {
    gap: 12px;
  }

  .custom-capability-banner {
    padding: 28px;
  }

  .custom-capability-visual {
    min-height: 220px;
  }

  .future-model-copy {
    padding: 24px 20px 10px;
  }

  .future-model-visual {
    min-height: 200px;
  }

  .hero-model-thumbs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
  }

  .hero-model-thumb {
    min-width: 170px;
    flex: 0 0 170px;
    scroll-snap-align: start;
  }

  .gallery-thumbs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
  }

  .gallery-thumb {
    min-width: 180px;
    flex: 0 0 180px;
    scroll-snap-align: start;
  }

  .gallery-display-card {
    inset: 16px;
    padding: 24px;
  }

  .floorplan-spec-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .floorplan-blueprint {
    min-height: 340px;
  }

  .floorplan-panel-frame,
  .floorplan-panel-image {
    min-height: 360px;
  }

  .dealer-visual-media {
    min-height: 440px;
  }

  .dealer-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .dealer-actions .button {
    width: 100%;
  }

  .cta-contact-strip {
    grid-template-columns: 1fr;
  }

  .cta-contact-item,
  .cta-contact-item:nth-child(odd) {
    border-right: 0;
  }

  .cta-contact-item:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .cta-contact-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 88px 0;
  }
}

@media (max-width: 620px) {
  .header-inner {
    min-height: 76px;
  }

  .site-nav {
    top: 78px;
  }

  .section-heading p:last-child,
  .section-copy p:last-child,
  .why-intro,
  .network-panel p,
  .cta-copy p,
  .resource-copy > p,
  .investor-intro {
    font-size: 1rem;
  }

  .hero-actions,
  .footer-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .investor-page-actions,
  .investor-page-actions .button {
    width: 100%;
  }

  .investor-page-hero-copy h1,
  .investor-opportunity-copy h2,
  .investor-platform-header h2,
  .investor-traction-copy h2,
  .investor-final-shell h2 {
    font-size: 2.6rem;
  }

  .investor-opportunity-copy {
    padding: 56px 0 50px;
  }

  .investor-opportunity-copy > p:last-child {
    font-size: 1.03rem;
  }

  .investor-opportunity-metric-grid,
  .investor-driver-grid {
    grid-template-columns: 1fr;
  }

  .investor-opportunity-metric-grid article,
  .investor-opportunity-metric-grid article:nth-child(2n),
  .investor-driver-grid article {
    border-right: 0;
  }

  .investor-opportunity-metric-grid article:last-child {
    grid-column: auto;
  }

  .investor-driver-grid article {
    padding: 0 0 18px;
    border-bottom: 1px solid rgba(9, 20, 37, 0.14);
  }

  .investor-driver-grid article:last-child {
    border-bottom: 0;
  }

  .investor-supply-chart {
    padding: 24px 18px;
  }

  .investor-opportunity-tagline {
    padding: 24px 0;
  }

  .investor-platform-card,
  .investor-roadmap-card,
  .investor-securities-disclaimer {
    padding: 22px;
    border-radius: 22px;
  }

  .investor-roadmap-card article {
    padding-left: 48px;
  }

  .hero-actions {
    width: min(100%, 360px);
    border-radius: 24px;
  }

  .hero-title {
    font-size: 2.35rem;
    line-height: 1;
  }

  .hero-caption {
    top: 36%;
    width: 100%;
    min-height: 7rem;
  }

  .hero-title span {
    white-space: normal;
  }

  .hero-scene-title {
    width: 100%;
    font-size: 1.55rem;
  }

  .button,
  .button-secondary,
  .button-primary {
    width: 100%;
  }

  .applications-hero-copy h1 {
    font-size: 2.65rem;
  }

  .technology-hero-dashboard {
    grid-template-columns: 1fr;
  }

  .technology-boxway-logo {
    width: 100%;
  }

  .technology-proof-card,
  .technology-performance-card,
  .technology-structure-grid figure,
  .technology-support-grid article {
    min-height: 0;
    padding: 22px;
  }

  .technology-structure-grid figure {
    padding: 0;
  }

  .technology-assembly-viewer {
    height: 640px;
    min-height: 640px;
  }

  .technology-layer-diagram {
    padding: 16px;
  }

  .technology-final-actions,
  .technology-final-actions .button {
    width: 100%;
  }

  .application-detail-copy h3,
  .dealer-opportunity-copy h2,
  .application-advisor-copy h2 {
    font-size: 2.45rem;
  }

  .applications-collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .applications-collage-large {
    grid-row: auto;
  }

  .applications-collage figure {
    min-height: 190px;
  }

  .applications-overview-grid,
  .momentum-grid,
  .application-revenue-grid,
  .concept-grid,
  .advisor-question-grid {
    grid-template-columns: 1fr;
  }

  .application-detail-row {
    padding: 14px;
    border-radius: 26px;
  }

  .application-detail-media,
  .dealer-opportunity-media {
    min-height: 280px;
    border-radius: 20px;
  }

  .application-matrix {
    gap: 12px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .application-matrix-head {
    display: none;
  }

  .application-matrix-row {
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    border: 1px solid rgba(9, 20, 37, 0.09);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 14px 32px rgba(11, 24, 44, 0.07);
  }

  .application-matrix-row > span {
    min-height: 0;
    padding: 14px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(9, 20, 37, 0.08);
  }

  .application-matrix-row > span:last-child {
    border-bottom: 0;
  }

  .hero-stats,
  .model-grid,
  .tech-grid,
  .application-grid,
  .models-catalog-grid,
  .featured-models-grid,
  .resource-cards,
  .why-badges {
    grid-template-columns: 1fr;
  }

  .gallery-display-media {
    min-height: 320px;
  }

  .hero-model-stage {
    min-height: 320px;
  }

  .model-system-grid {
    grid-template-columns: 1fr;
  }

  .model-system-tile {
    min-height: 0;
  }

  .custom-capability-copy .button {
    width: 100%;
  }

  .gallery-display-card {
    inset: 12px;
    padding: 20px;
  }

  .gallery-display-card strong {
    font-size: 1.8rem;
  }

  .gallery-thumb {
    min-width: 164px;
    flex-basis: 164px;
  }

  .hero-model-thumb {
    min-width: 156px;
    flex-basis: 156px;
  }

  .floorplan-blueprint {
    min-height: 280px;
  }

  .floorplan-panel-frame,
  .floorplan-panel-image {
    min-height: 280px;
  }

  .floorplan-layout-notes {
    gap: 8px;
  }

  .cta-header h2 {
    max-width: 10ch;
  }

  .cta-card {
    padding: 16px 16px 15px;
  }

  .cta-contact-item {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 12px;
    padding: 18px 18px 16px;
  }

  .investor-shell {
    gap: 24px;
  }

  .investor-home-metrics article {
    min-height: 0;
  }

  .investor-thesis {
    margin-top: 34px;
  }

  .investor-point {
    padding-left: 22px;
  }

  .investor-point h4,
  .investor-phase h4 {
    font-size: 1.24rem;
  }

  .investor-visual-frame {
    padding: 26px 22px;
  }

  .investor-visual-frame::before {
    inset: 16px;
  }

  .investor-visual-frame::after {
    right: -72px;
    width: 180px;
    height: 180px;
  }

  .investor-phase {
    padding: 22px 0 22px 56px;
  }

  .investor-phases::before {
    left: 13px;
  }

  .investor-phase::before {
    left: 5px;
  }

  .model-body {
    padding: 24px 22px 24px;
  }

  .model-visual {
    min-height: 210px;
  }

  .why-band {
    padding: 22px 22px 14px;
  }

  .dealer-visual-card {
    padding: 16px;
  }

  .dealer-visual-media {
    min-height: 340px;
  }

  .dealer-visual-caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .why-badge,
  .why-badge:nth-child(2),
  .why-badge:nth-child(4) {
    padding: 0;
    border-right: 0;
  }

  .stat strong {
    font-size: 2.6rem;
  }

  .footer-links {
    gap: 12px;
  }

  .brand-logo {
    height: 58px;
  }

  .footer-logo {
    height: 62px;
  }
}

@media (max-width: 1180px) {
  .dealer-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dealer-profile-grid,
  .dealer-support-grid,
  .dealer-revenue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .dealer-hero-shell,
  .territory-shell,
  .dealer-form-layout {
    grid-template-columns: 1fr;
  }

  .dealer-page-visual .dealer-visual-media {
    min-height: 500px;
  }

  .territory-map-surface {
    min-height: 340px;
  }

  .dealer-form-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .dealer-flow-grid,
  .dealer-timeline {
    grid-template-columns: 1fr;
  }

  .dealer-discovery-form,
  .territory-map-card,
  .dealer-flow-card,
  .dealer-support-card,
  .dealer-benefit-card,
  .dealer-profile-card,
  .dealer-revenue-card,
  .dealer-timeline-step {
    border-radius: 24px;
  }

  .dealer-form-grid {
    grid-template-columns: 1fr;
  }

  .dealer-form-span-2 {
    grid-column: auto;
  }

  .dealer-page-copy h1 {
    max-width: 12ch;
  }

  .dealer-final-shell h2,
  .dealer-final-shell p:last-of-type {
    max-width: none;
  }
}

@media (max-width: 620px) {
  .dealer-benefit-grid,
  .dealer-profile-grid,
  .dealer-support-grid,
  .dealer-revenue-grid,
  .dealer-form-sidebar,
  .territory-map-footer {
    grid-template-columns: 1fr;
  }

  .dealer-page-hero {
    padding-bottom: 88px;
  }

  .dealer-page-visual .dealer-visual-media {
    min-height: 360px;
  }

  .dealer-hero-media-note {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .dealer-benefit-grid,
  .dealer-flow-grid,
  .dealer-profile-grid,
  .dealer-support-grid,
  .dealer-revenue-grid,
  .dealer-timeline,
  .dealer-form-layout {
    gap: 16px;
  }

  .dealer-trust-chips {
    gap: 8px;
  }

  .dealer-trust-chips span,
  .dealer-tag-cloud span,
  .territory-marker {
    width: 100%;
    justify-content: flex-start;
  }

  .territory-map-surface {
    min-height: 420px;
  }

  .territory-marker-west { top: 10%; left: 10%; right: 10%; }
  .territory-marker-central { top: 24%; left: 10%; right: 10%; }
  .territory-marker-ontario { top: 38%; left: 10%; right: 10%; }
  .territory-marker-california { top: 52%; left: 10%; right: 10%; }
  .territory-marker-arizona { top: 66%; left: 10%; right: 10%; }
  .territory-marker-texas { top: 80%; left: 10%; right: 10%; }
  .territory-marker-florida { top: 94%; left: 10%; right: 10%; transform: translateY(-100%); }

  .dealer-discovery-form {
    padding: 22px 18px;
  }

  .dealer-sticky-mobile {
    display: block;
  }
}

/* ===========================================================================
   AI Advisor widget
   =========================================================================== */
.ai-advisor-launcher {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px 12px 16px;
  border: none;
  border-radius: 999px;
  background: var(--copper);
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(203, 122, 53, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.ai-advisor-launcher:hover {
  transform: translateY(-2px);
  background: #b96a2a;
  box-shadow: 0 22px 48px rgba(203, 122, 53, 0.45);
}
.ai-advisor-launcher svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.ai-advisor-open .ai-advisor-launcher {
  opacity: 0;
  pointer-events: none;
}

.ai-advisor-panel {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1300;
  width: min(400px, calc(100vw - 32px));
  height: min(620px, calc(100vh - 48px));
  display: flex;
  flex-direction: column;
  background: var(--navy-900);
  color: var(--cream);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dark);
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.ai-advisor-panel[hidden] {
  display: none;
}
.ai-advisor-panel.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.ai-advisor-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: var(--navy-950);
  border-bottom: 1px solid var(--line-light);
}
.ai-advisor-head-title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ai-advisor-head-title strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}
.ai-advisor-head-title span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--slate);
}
.ai-advisor-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.18);
}
.ai-advisor-close {
  border: none;
  background: transparent;
  color: var(--slate);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 6px;
  transition: color 0.2s ease;
}
.ai-advisor-close:hover {
  color: var(--white);
}

.ai-advisor-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scroll-behavior: smooth;
}

.ai-advisor-msg {
  max-width: 88%;
  font-size: 0.92rem;
  line-height: 1.5;
}
.ai-advisor-msg-user {
  align-self: flex-end;
  background: var(--copper);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 16px 16px 4px 16px;
  font-weight: 600;
}
.ai-advisor-msg-bot {
  align-self: flex-start;
  background: var(--navy-850);
  border: 1px solid var(--line-light);
  padding: 14px 16px;
  border-radius: 16px 16px 16px 4px;
}
.ai-advisor-answer {
  margin: 0;
  color: var(--cream);
}
.ai-advisor-meta {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.66rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate);
}
.ai-advisor-note {
  margin: 10px 0 0;
  padding-top: 10px;
  border-top: 1px solid var(--line-light);
  font-size: 0.74rem;
  color: var(--slate);
}
.ai-advisor-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  padding: 9px 16px;
  background: var(--copper);
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.ai-advisor-cta:hover {
  background: #b96a2a;
}

.ai-advisor-chiplist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.ai-advisor-chip {
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream);
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  padding: 7px 12px;
  border-radius: 999px;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.ai-advisor-chip:hover {
  background: rgba(203, 122, 53, 0.18);
  border-color: var(--copper-soft);
}
.ai-advisor-chip-cat {
  font-weight: 600;
}

.ai-advisor-suggestions {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 18px 0;
  scrollbar-width: none;
}
.ai-advisor-suggestions::-webkit-scrollbar {
  display: none;
}
.ai-advisor-chip-starter {
  white-space: nowrap;
  flex: 0 0 auto;
}

.ai-advisor-form {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
}
.ai-advisor-form input {
  flex: 1;
  background: var(--navy-850);
  border: 1px solid var(--line-light);
  border-radius: 999px;
  padding: 12px 16px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
}
.ai-advisor-form input::placeholder {
  color: var(--slate);
}
.ai-advisor-form input:focus {
  outline: none;
  border-color: var(--copper-soft);
}
.ai-advisor-form button {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--copper);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.ai-advisor-form button:hover {
  background: #b96a2a;
}
.ai-advisor-form button svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.ai-advisor-disclaimer {
  margin: 0;
  padding: 0 18px 14px;
  font-size: 0.68rem;
  line-height: 1.4;
  color: var(--slate);
}

@media (max-width: 600px) {
  .ai-advisor-panel {
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    border-radius: 0;
    border: none;
  }
  .ai-advisor-launcher span {
    display: none;
  }
  .ai-advisor-launcher {
    right: 18px;
    bottom: 18px;
    padding: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ai-advisor-panel,
  .ai-advisor-launcher {
    transition: none;
  }
}

/* Footer copyright line (added during WordPress conversion) */
.footer-copyright{margin-top:28px;padding-top:22px;border-top:1px solid rgba(251,250,247,0.14);text-align:center;}
.footer-copyright p{margin:0;font-size:0.85rem;letter-spacing:0.02em;color:rgba(251,250,247,0.6);}

/* FAQ page (SEO/GEO) */
.faq-shell{max-width:900px;margin:0 auto;}
.faq-category{margin-top:40px;}
.faq-category > h2{font-size:1.45rem;margin:0 0 6px;}
.faq-category-rule{height:1px;background:rgba(9,20,37,0.12);margin:0 0 8px;}
.faq-item{padding:18px 0;border-bottom:1px solid rgba(9,20,37,0.1);}
.faq-item h3{font-size:1.02rem;margin:0 0 6px;color:var(--navy-950,#091425);}
.faq-item p{margin:0;line-height:1.65;color:rgba(9,20,37,0.82);overflow-wrap:anywhere;}
.faq-toc{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px;}
.faq-toc a{font-size:0.85rem;padding:7px 14px;border-radius:999px;border:1px solid rgba(9,20,37,0.16);text-decoration:none;color:var(--navy-950,#091425);}
.faq-toc a:hover{background:rgba(9,20,37,0.06);}
