@import url(https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&family=Outfit:wght@400;500;600;700&display=swap);
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --font-sans: "Outfit", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

body {
  margin: 0;
  font-family: var(--font-sans, "Outfit", system-ui, sans-serif);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

code {
  font-family:
    "JetBrains Mono", ui-monospace, Menlo, Monaco, Consolas, "Courier New",
    monospace;
}

/* Reset styles for body and html */
html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

:root {
  /* Zinc-forward neutrals (single warm-gray family, no purple/blue accent) */
  --color-bg: #09090b;
  --color-bg-elevated: #18181b;
  --color-border-subtle: rgba(250, 250, 250, 0.1);
  --color-text: #fafafa;
  --color-text-muted: #a1a1aa;
  /* Single accent: muted brass (saturation controlled) */
  --color-accent: #b08d52;
  --color-accent-soft: rgba(176, 141, 82, 0.22);
  --font-sans: "Outfit", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-diffuse: 0 24px 48px -18px rgba(0, 0, 0, 0.35);
  --layer-content: 1;
  --layer-nav: 20;
  --layer-overlay: 30;
  --scroll-top: auto;
  --primary-color: var(--color-bg);
  --secondary-color: var(--color-accent);
  --secondary-color-strong: #c9a66a;
  --tertiary-color: var(--color-text);
  --quarternary-color: var(--color-bg-elevated);
  --quinary-color: #27272a;
  --senary-color: rgba(9, 9, 11, 0.4);
  --septenary-color: rgba(24, 24, 27, 0.6);
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  line-height: 1.55;
}

button {
  cursor: pointer;
}

.main {
  position: relative;
  background-color: var(--color-bg);
  min-height: 100dvh;
}

.content-overlay {
  position: relative;
  z-index: var(--layer-content);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 0.8rem 2.5rem;
  box-sizing: border-box;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -200px;
  background: var(--color-accent);
  color: var(--color-bg);
  padding: 0.7rem 0.95rem;
  border-radius: 0.6rem;
  font-weight: 600;
  text-decoration: none;
  z-index: var(--layer-overlay);
}

.skip-link:focus {
  top: 0.8rem;
}

@media (max-width: 999px) {
  .content-overlay {
    padding: 0 0.45rem 2rem;
  }
}

.main.landing-page {
  background: transparent !important;
}

.app-route-fallback {
  min-height: 40dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.agents-section-main {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.agents-section-status {
  text-align: center;
  color: rgba(244, 244, 242, 0.85);
  margin: 1rem 0;
}

.paragraph-div {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 2vh;
}

.agents-section-intro {
  text-align: center;
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  width: 100%;
  max-width: 52rem;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(244, 244, 242, 0.9);
  margin: 0 auto;
}

.agents-section-intro span {
  color: var(--color-accent, #b08d52);
  font-weight: 500;
}

.carousel-group-loading {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

@keyframes fadeInLayers {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.carousel-group-loaded {
  animation: fadeInLayers 1.5s ease-in-out forwards;
}

.carousel-heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
  margin-top: 0;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #f4f4f2;
}

.carousel {
  position: relative;
  left: 50%;
  transform: translate(-50%);
  min-height: 42vh;
  width: min(960px, 100%);
  background-color: var(--senary-color);
  z-index: 1;
  box-sizing: content-box;
  border-radius: 12px;
}

.carousel-agent img {
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.agent-image:hover {
  cursor: pointer;
}

.agent-image {
  height: 30vh;
  width: auto;
  max-width: 100%;
  object-fit: cover;
  object-position: top;
  vertical-align: middle;
}

.button-group {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 950px;
  height: 5vmin;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.agent-profile-modal-heading {
  height: 3vh;
  color: var(--secondary-color);
}

.agent-profile-modal-content {
  margin-top: 25px;
}

.close-agent-profile-modal-button:hover {
  transform: scale(1.05);
  opacity: 1;
}

.custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.custom-modal-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}

.close-agent-profile-modal-button {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  height: 15px;
  width: 15px;
}

@media screen and (max-width: 1024px) {
  .carousel {
    width: min(640px, 100%);
  }

  .button-group {
    width: 740px;
  }
}

@media screen and (max-width: 768px) {
  .carousel {
    width: min(350px, 100%);
  }

  .carousel-agent {
    width: 70%;
  }

  .button-group {
    display: none;
    width: 580px;
  }

  .agent-profile-modal {
    height: 100%;
    width: 100%;
  }

  .agents-section-intro {
    font-size: 1rem;
    width: 100%;
  }

  .carousel-heading {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
}

.agent-profile-container {
  overflow-wrap: break-word;
  width: 100%;
  box-sizing: border-box;
}

.agent-profile-content > *,
.agent-profile-content > * > * {
  margin-top: 5%;
  font-weight: normal;
}

.agent-profile-heading {
  text-align: center;
  margin-bottom: 5%;
}

.agent-profile-name {
  color: black;
}

.agent-profile-image {
  margin: auto;
  display: block;
  height: 70%;
  width: 70%;
  border-radius: 5%;
}

.agent-profile-content {
  white-space: normal;
  overflow-wrap: break-word;
  width: 100%;
  box-sizing: border-box;
  /* text-align: left; */
  padding-left: 5%;
  padding-right: 5%;
}

.agent-profile-text {
  padding-bottom: 5%;
  /* background: ; */
}

@font-face {
  font-family: "revicons";
  fallback: fallback;
  src:
    url(assets/fonts/revicons.e8746a624ed098489406.woff)
      format("woff"),
    url(assets/fonts/revicons.57fd05d4ae650374c8de.ttf)
      format("ttf"),
    url(assets/fonts/revicons.a77de540a38981833f9e.eot)
      format("ttf");
}
.react-multi-carousel-list {
  display: flex;
  /* align-items: center; */
  overflow: hidden;
  position: relative;
}
.react-multi-carousel-track {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  position: relative;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, transition;
}
.react-multiple-carousel__arrow {
  position: absolute;
  outline: 0;
  transition: all 0.5s;
  border-radius: 35px;
  z-index: 1000;
  border: 0;
  background: rgba(0, 0, 0, 0.5);
  min-width: 43px;
  min-height: 43px;
  opacity: 1;
  cursor: pointer;
}
.react-multiple-carousel__arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}
.react-multiple-carousel__arrow::before {
  font-size: 20px;
  color: #fff;
  display: block;
  font-family: revicons;
  text-align: center;
  z-index: 2;
  position: relative;
}
.react-multiple-carousel__arrow:disabled {
  cursor: default;
  background: rgba(0, 0, 0, 0.5);
}
.react-multiple-carousel__arrow--left {
  left: calc(4% + 1px);
  top: calc(35% + 1px);
}
.react-multiple-carousel__arrow--left::before {
  content: "\e824";
}
.react-multiple-carousel__arrow--right {
  right: calc(4% + 1px);
  top: calc(35% + 1px);
}
.react-multiple-carousel__arrow--right::before {
  content: "\e825";
}
.react-multi-carousel-dot-list {
  position: absolute;
  bottom: 0;
  display: flex;
  left: 0;
  right: 0;
  justify-content: center;
  margin: auto;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.react-multi-carousel-dot button {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  opacity: 1;
  padding: 5px 5px 5px 5px;
  box-shadow: none;
  transition: background 0.5s;
  border-width: 2px;
  border-style: solid;
  border-color: grey;
  padding: 0;
  margin: 0;
  margin-right: 6px;
  outline: 0;
  cursor: pointer;
}
.react-multi-carousel-dot button:hover:active {
  background: #080808;
}
.react-multi-carousel-dot--active button {
  background: #080808;
}
.react-multi-carousel-item {
  transform-style: preserve-3d;
  backface-visibility: hidden;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .react-multi-carousel-item {
    flex-shrink: 0 !important;
  }
  .react-multi-carousel-track {
    overflow: visible !important;
  }
}
[dir="rtl"].react-multi-carousel-list {
  direction: rtl;
}
.rtl.react-multiple-carousel__arrow--right {
  right: auto;
  left: calc(4% + 1px);
}
.rtl.react-multiple-carousel__arrow--right::before {
  content: "\e824";
}
.rtl.react-multiple-carousel__arrow--left {
  left: auto;
  right: calc(4% + 1px);
}
.rtl.react-multiple-carousel__arrow--left::before {
  content: "\e825";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.landing-section-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.landing-page-main {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 6.5rem 1rem 5rem;
  color: #f4f4f2;
}

.ne-feature-strip {
  position: relative;
  margin-top: 4rem;
  border-radius: 0;
  overflow: hidden;
  min-height: min(52vh, 560px);
  box-shadow:
    0 40px 100px rgba(2, 5, 11, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.ne-feature-strip__img {
  display: block;
  width: 100%;
  height: min(52vh, 560px);
  object-fit: cover;
  object-position: center 42%;
  filter: sepia(0.05) saturate(0.9) brightness(0.72);
}

.ne-feature-strip__caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1.25rem;
  max-width: 42rem;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  border-radius: 1.25rem;
}

.liquid-glass-panel--inline {
  background:
    linear-gradient(148deg, rgba(14, 16, 21, 0.88), rgba(9, 12, 18, 0.82)),
    rgba(9, 12, 18, 0.78);
}

.ne-feature-strip__title {
  margin: 0;
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  color: #f4f4f2;
}

.ne-feature-strip__sub {
  margin: 0.45rem 0 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: rgba(244, 244, 242, 0.88);
  text-wrap: pretty;
}

.ne-mosaic-section {
  margin-top: 4rem;
}

.ne-mosaic-shell .section-heading-major {
  margin-top: 0.35rem;
}

.section-heading-major {
  margin: 0;
  font-size: clamp(1.65rem, 4.2vw, 2.85rem);
  letter-spacing: -0.028em;
  line-height: 1.08;
  font-weight: 620;
  color: #f4f4f2;
}

.section-lede {
  margin: 0.85rem 0 0;
  max-width: 62ch;
  font-size: 1rem;
  line-height: 1.68;
  color: rgba(244, 244, 242, 0.87);
  text-wrap: pretty;
}

.ne-mosaic-grid {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr;
}

.ne-mosaic-cell {
  margin: 0;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(2, 5, 11, 0.35);
}

.ne-mosaic-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  vertical-align: middle;
}

.place-split-section {
  margin-top: 4rem;
}

.place-split {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.place-split__body {
  margin: 0.85rem 0 0;
  font-size: 1rem;
  line-height: 1.72;
  color: rgba(244, 244, 242, 0.88);
  text-wrap: pretty;
  max-width: 56ch;
}

.place-split__figure {
  margin: 0;
  border-radius: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: 0 24px 55px rgba(2, 5, 11, 0.38);
}

.place-split__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  filter: sepia(0.04) saturate(0.9) brightness(0.88);
}

.proof-band-section {
  margin-top: 4rem;
}

.proof-band__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
}

.proof-band__heading {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 620;
  letter-spacing: -0.02em;
  color: #f7e7bb;
}

.proof-band__list p {
  margin: 0.4rem 0 0;
  font-size: 0.94rem;
  line-height: 1.62;
  color: rgba(244, 244, 242, 0.85);
  text-wrap: pretty;
}

.faq-section {
  margin-top: 4rem;
}

.faq-shell .section-heading-major {
  margin-top: 0.35rem;
}

.faq-list {
  margin: 1.25rem 0 0;
}

.faq-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-question {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #f4f4f2;
}

.faq-answer {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(244, 244, 242, 0.86);
  text-wrap: pretty;
}

.agents-on-home {
  margin-top: 4rem;
}

.agents-on-home__shell {
  padding-bottom: 2rem;
}

.hero-section {
  display: grid;
  gap: 1rem;
}

.hero-shell,
.section-shell {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(148deg, rgba(14, 16, 21, 0.86), rgba(9, 12, 18, 0.76)),
    rgba(9, 12, 18, 0.7);
  box-shadow:
    0 30px 80px rgba(2, 5, 11, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  border-radius: 2rem;
  padding: 1.5rem;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f7e7bb;
}

.company-name {
  margin: 0;
  max-width: 16ch;
  text-align: left;
  text-wrap: balance;
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-size: clamp(2rem, 7vw, 4.25rem);
  font-weight: 650;
}

.hero-description {
  margin: 1rem 0 0;
  max-width: 56ch;
  color: rgba(244, 244, 242, 0.88);
  font-size: clamp(1rem, 2.8vw, 1.18rem);
  line-height: 1.75;
  text-wrap: pretty;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.hero-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  text-decoration: none;
  font-size: 0.97rem;
  font-weight: 550;
  line-height: 1;
  transition:
    transform 0.7s cubic-bezier(0.32, 0.72, 0, 1),
    background-color 0.7s cubic-bezier(0.32, 0.72, 0, 1),
    box-shadow 0.7s cubic-bezier(0.32, 0.72, 0, 1),
    color 0.7s cubic-bezier(0.32, 0.72, 0, 1);
}

.hero-cta:focus-visible {
  outline: 2px solid #f7e7bb;
  outline-offset: 2px;
}

.primary-cta {
  color: #fdfcf8;
  background: linear-gradient(130deg, #9c7a43 0%, #b3915b 45%, #8e6f3e 100%);
  box-shadow: 0 18px 45px rgba(111, 83, 37, 0.45);
}

.secondary-cta {
  color: #f4f4f2;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(13, 18, 27, 0.62);
}

.hero-cta:hover {
  transform: translateY(-1px);
}

.hero-cta:active {
  transform: scale(0.98);
}

.primary-cta:hover {
  box-shadow: 0 24px 55px rgba(111, 83, 37, 0.55);
}

.secondary-cta:hover {
  background: rgba(24, 29, 38, 0.85);
}

.cta-island {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 8, 12, 0.24);
  transition: transform 0.7s cubic-bezier(0.32, 0.72, 0, 1);
}

.primary-cta:hover .cta-island {
  transform: translate(2px, -1px);
}

/* One glass panel + rows (avoids three tall stacked cards fighting the hero) */
.hero-stats-rail {
  width: 100%;
  align-self: start;
  border-radius: 1.35rem;
  padding: 0.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(155deg, rgba(10, 15, 24, 0.9), rgba(10, 13, 21, 0.78)),
    rgba(8, 10, 15, 0.82);
  box-shadow:
    0 18px 48px rgba(2, 5, 11, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.stat-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  gap: 0.65rem 0.85rem;
  padding: 0.55rem 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-row:last-child {
  border-bottom: none;
}

.stat-value {
  color: #f7e7bb;
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.stat-value--tabular {
  font-family: var(--font-mono, "JetBrains Mono", ui-monospace, monospace);
}

.stat-label {
  margin: 0;
  color: rgba(244, 244, 242, 0.82);
  font-size: 0.8125rem;
  line-height: 1.38;
  text-wrap: balance;
}

.story-section,
.final-cta-section {
  margin-top: 4rem;
}

.story-section h2,
.final-cta-shell h2 {
  margin: 0;
  text-wrap: balance;
  font-size: clamp(1.7rem, 4.8vw, 3.25rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  text-align: left;
  color: #f4f4f2;
  font-weight: 600;
}

.story-bento {
  margin-top: 1.35rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr;
}

.story-tile {
  border-radius: 1.35rem;
  padding: 1.15rem 1.28rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(16, 22, 34, 0.72);
}

.story-tile h3 {
  margin: 0;
  font-size: 1.06rem;
  font-weight: 620;
  letter-spacing: -0.02em;
  color: #f7e7bb;
}

.story-tile p {
  margin: 0.62rem 0 0;
  font-size: 0.96rem;
  line-height: 1.68;
  color: rgba(244, 244, 242, 0.86);
  text-wrap: pretty;
}

.story-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.story-card {
  border-radius: 1.4rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(16, 22, 34, 0.72);
}

.story-card h3 {
  margin: 0;
  font-size: 1.18rem;
  font-weight: 540;
  color: #f7e7bb;
}

.story-card p,
.final-cta-shell p {
  margin: 0.7rem 0 0;
  font-size: 0.98rem;
  line-height: 1.72;
  color: rgba(244, 244, 242, 0.85);
  text-wrap: pretty;
  max-width: 62ch;
}

.final-cta-shell {
  background:
    radial-gradient(circle at 12% 12%, rgba(181, 139, 79, 0.26), transparent 44%),
    linear-gradient(150deg, rgba(15, 18, 26, 0.92), rgba(9, 12, 18, 0.78));
}

@media (min-width: 640px) {
  .landing-page-main {
    padding: 7.2rem 1.4rem 5rem;
  }

  .hero-shell,
  .section-shell {
    padding: 1.9rem;
  }

  .hero-cta-group {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-cta {
    justify-content: space-between;
  }

  .ne-mosaic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .ne-feature-strip__caption {
    left: 1.5rem;
    right: 1.5rem;
  }
}

@media (min-width: 768px) {
  .landing-page-main {
    padding: 8rem 1.8rem 6rem;
  }

  .hero-section {
    grid-template-columns: minmax(0, 1.42fr) minmax(240px, 360px);
    align-items: start;
    gap: 1rem 1.35rem;
  }

  .hero-shell,
  .section-shell {
    padding: 2.2rem;
  }

  .hero-stats-rail {
    justify-self: end;
    width: 100%;
    max-width: 320px;
  }

  /* Split layout: number | label (compact rail; height tracks copy, not hero stretch) */
  .hero-stats {
    flex-direction: column;
  }

  .stat-row {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: none;
    justify-items: stretch;
    text-align: left;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.48rem 0.6rem;
  }

  .stat-row:last-child {
    border-bottom: none;
  }

  .stat-label {
    text-align: left;
    max-width: none;
  }

  .story-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .story-tile--lead {
    grid-column: 1 / -1;
  }

  .story-tile--compact {
    grid-column: 1;
  }

  .story-tile--wide {
    grid-column: 2;
  }

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

  .place-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
  }

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

@media (min-width: 1024px) {
  .landing-page-main {
    padding: 8.75rem 2.4rem 7rem;
  }

  .hero-shell,
  .section-shell {
    border-radius: 2.35rem;
    padding: 2.75rem;
  }

  .hero-cta {
    padding: 0.95rem 1.5rem;
  }

  .story-section,
  .final-cta-section {
    margin-top: 5.5rem;
  }

  .proof-band__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100dvh;
  z-index: -1;
  overflow: hidden;
  /* Warm “golden-hour / forest edge” dusk, not cool Pacific-northwest blue */
  background:
    radial-gradient(circle at 78% 10%, rgba(176, 140, 86, 0.22), transparent 46%),
    radial-gradient(circle at 14% 86%, rgba(32, 48, 38, 0.4), transparent 42%),
    #0a0c0a;
}

.video-background video {
  width: 100%;
  height: 100dvh;
  object-fit: cover;
  object-position: center 38%;
  min-width: 100%;
  min-height: 100dvh;
  max-width: none;
  max-height: none;
  /* Slight warmth + softened contrast: reads as New England siding, stone, and oak */
  filter: sepia(0.04) saturate(0.88) brightness(0.64) contrast(1.04);
}

.video-fallback {
  width: 100%;
  height: 100dvh;
  object-fit: cover;
  object-position: center 38%;
  filter: sepia(0.05) saturate(0.9) brightness(0.66);
}

.video-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8, 10, 9, 0.22), rgba(6, 8, 7, 0.72) 74%),
    radial-gradient(circle at 48% 12%, rgba(20, 24, 18, 0.12), transparent 48%);
  pointer-events: none;
}

/* Mobile-specific styles */
@media screen and (max-width: 768px) {
  .video-background video,
  .video-fallback {
    object-position: 58% 36%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .video-background video {
    display: none;
  }
}
.ai-facts-main {
  max-width: 980px;
  margin: 6.5rem auto 3rem;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ai-facts-shell {
  background: rgba(8, 14, 23, 0.62);
  border: 1px solid rgba(200, 163, 109, 0.22);
  border-radius: 0.9rem;
  padding: 1.15rem 1rem;
}

.ai-facts-shell h1,
.ai-facts-shell h2 {
  margin-top: 0;
  color: #f4deaf;
}

.ai-facts-shell ul {
  margin: 0.6rem 0 0;
  padding-left: 1.2rem;
}

.ai-facts-shell a {
  color: #f4deaf;
}

.ai-facts-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  margin: 0 0 0.55rem;
  opacity: 0.9;
}

.ai-facts-inline-links {
  margin-top: 0.85rem;
}

@media (min-width: 768px) {
  .ai-facts-main {
    margin-top: 7.25rem;
    padding: 0 1.25rem;
  }

  .ai-facts-shell {
    padding: 1.35rem 1.3rem;
  }
}

