:root {
  --bg: #0f0f13;
  --bg-deep: #080b11;
  --bg-mid: #11151c;
  --panel: rgba(28, 28, 34, 0.84);
  --panel-alt: rgba(12, 15, 22, 0.8);
  --surface: rgba(17, 20, 27, 0.84);
  --surface-soft: rgba(18, 22, 30, 0.58);
  --border: rgba(107, 138, 153, 0.18);
  --border-strong: rgba(184, 115, 51, 0.24);
  --text: #f0ede9;
  --text-soft: #b8c7cf;
  --text-muted: #8fb0bd;
  --copper: #b87333;
  --copper-soft: #d59a65;
  --slate: #6b8a99;
  --danger: #d58972;
  --shadow-xl: 0 38px 120px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 26px 90px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 24px 72px rgba(184, 115, 51, 0.12);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --space-section: 6rem;
  --space-grid: 1.5rem;
  --space-card: 1.5rem;
  --container: 78rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

input,
textarea {
  color: var(--text);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  overflow: hidden;
  padding: var(--space-section) 0;
}

.section::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(107, 138, 153, 0.026) 1px, transparent 1px),
    linear-gradient(0deg, rgba(107, 138, 153, 0.022) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  pointer-events: none;
}

.section > .container,
.site-header > .container,
.site-footer > .container,
.mobile-menu > .container {
  position: relative;
  z-index: 2;
}

.glow-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 115, 51, 0.78), rgba(107, 138, 153, 0.68), transparent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(15, 15, 19, 0.9);
  border-bottom: 1px solid rgba(107, 138, 153, 0.1);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(15, 15, 19, 0.95);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand-link {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.2;
  transition: color 0.25s ease;
}

.brand-link:hover,
.brand-link:focus-visible {
  color: var(--copper-soft);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), var(--slate));
  transition: width 0.28s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link--active {
  color: var(--copper-soft);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link--active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.cta-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.15rem;
  padding: 0.95rem 1.45rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 800;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    background 0.25s ease;
}

.cta-btn:hover,
.secondary-btn:hover,
.social-btn:hover,
.price-card:hover,
.problem-item:hover,
.panel-card:hover,
.spotlight-card:hover,
.process-card:hover,
.system-card:hover {
  transform: translateY(-2px);
}

.cta-btn {
  color: #0f0f13;
  background: linear-gradient(90deg, var(--copper), var(--slate));
  box-shadow: 0 18px 48px rgba(184, 115, 51, 0.18);
}

.cta-btn:hover,
.cta-btn:focus-visible {
  box-shadow: 0 26px 68px rgba(184, 115, 51, 0.27);
}

.secondary-btn {
  color: var(--text);
  background: rgba(17, 20, 27, 0.5);
  border: 1px solid rgba(107, 138, 153, 0.26);
}

.secondary-btn:hover,
.secondary-btn:focus-visible {
  color: var(--copper-soft);
  border-color: rgba(184, 115, 51, 0.34);
}

.cta-btn--nav {
  min-height: 2.625rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.2;
  font-weight: 600;
}

.icon-inline {
  width: 1rem;
  height: 1rem;
  transition: transform 0.25s ease;
}

.cta-btn:hover .icon-inline,
.secondary-btn:hover .icon-inline {
  transform: translateX(2px);
}

.mobile-toggle {
  display: none;
  padding: 0.5rem;
}

.mobile-menu {
  position: fixed;
  inset: 4.6rem 0 auto;
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, #0f0f13 0%, #1a1a20 50%, #0a0d14 100%);
  border-bottom: 1px solid rgba(107, 138, 153, 0.12);
  z-index: 25;
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu-inner {
  display: grid;
  gap: 1rem;
  padding: 1.5rem 0 1.75rem;
}

.hero {
  min-height: calc(100vh - 5rem);
  background: linear-gradient(180deg, #0f0f13 0%, #11151c 44%, #0a0d14 100%);
  padding-top: 5.5rem;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(107, 138, 153, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(107, 138, 153, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.38;
  animation: gridShift 22s linear infinite;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.hero-glow--one {
  width: 44rem;
  height: 44rem;
  top: -20rem;
  right: -12rem;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.18), transparent 70%);
}

.hero-glow--two {
  width: 38rem;
  height: 38rem;
  bottom: -16rem;
  left: -10rem;
  background: radial-gradient(circle, rgba(107, 138, 153, 0.12), transparent 70%);
}

.hero-layout,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 3rem;
  align-items: start;
}

.hero-layout {
  align-items: center;
}

.hero-copy,
.section-copy,
.section-intro {
  max-width: 42rem;
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .hero-subheadline,
.hero-copy .button-row {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp 1.05s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-copy .eyebrow {
  animation-delay: 0.12s;
}

.hero-copy h1 {
  animation-delay: 0.24s;
}

.hero-copy .hero-subheadline {
  animation-delay: 0.4s;
}

.hero-copy .button-row {
  animation-delay: 0.56s;
}

.eyebrow,
.card-label,
.footer-heading {
  margin: 0 0 0.9rem;
  color: var(--copper-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(2.9rem, 6vw, 5rem);
  line-height: 0.98;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.04;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.18;
  margin-bottom: 0.65rem;
}

h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

p {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.72;
}

.hero-subheadline,
.section-lead {
  font-size: 1.06rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-media {
  position: relative;
  justify-self: end;
  width: min(100%, 40rem);
  aspect-ratio: 1726 / 1200;
  min-height: 0;
}

.hero-media--alpha {
  aspect-ratio: 16 / 9;
}

.hero-media__frame {
  position: relative;
  min-height: 0;
  height: auto;
  aspect-ratio: inherit;
  overflow: hidden;
  isolation: isolate;
  contain: paint;
  clip-path: inset(0);
  background:
    radial-gradient(ellipse at 60% 44%, rgba(255, 255, 255, 0.05), transparent 32%),
    radial-gradient(ellipse at 67% 48%, rgba(107, 138, 153, 0.07), transparent 42%),
    radial-gradient(ellipse at 72% 46%, rgba(184, 115, 51, 0.08), transparent 48%);
  transform-origin: center center;
}

.hero-media__frame::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 12px;
  z-index: 10;
  background: linear-gradient(180deg, rgba(15, 15, 19, 0.24), transparent);
  pointer-events: none;
}

.hero-media__frame::after {
  content: "";
  position: absolute;
  inset: 4% 0 2% 2%;
  z-index: 0;
  background:
    radial-gradient(circle at 42% 44%, rgba(255, 255, 255, 0.08), transparent 12%),
    radial-gradient(circle at 62% 50%, rgba(255, 255, 255, 0.04), transparent 22%),
    radial-gradient(circle at 66% 54%, rgba(184, 115, 51, 0.08), transparent 22%),
    radial-gradient(circle at 50% 54%, rgba(11, 14, 20, 0.03), transparent 74%);
  filter: blur(34px);
  opacity: 0.74;
  pointer-events: none;
}

.hero-media__video {
  position: absolute;
  inset: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  object-fit: cover;
  object-position: center center;
  opacity: 0.99;
  filter:
    saturate(1.22)
    contrast(1.2)
    brightness(1.04)
    drop-shadow(0 20px 42px rgba(0, 0, 0, 0.22))
    drop-shadow(0 0 34px rgba(184, 115, 51, 0.14));
  transform: translate3d(var(--hero-video-x, 0px), var(--hero-video-y, 0px), 0) scale(var(--hero-video-scale, 1.08));
  transform-origin: center center;
  backface-visibility: hidden;
  will-change: transform;
  transition: transform 0.16s linear;
  -webkit-mask-image:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.96) 48%, rgba(0, 0, 0, 0.66) 66%, rgba(0, 0, 0, 0.18) 84%, transparent 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.96) 78%, rgba(0, 0, 0, 0.1) 95%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.96) 48%, rgba(0, 0, 0, 0.66) 66%, rgba(0, 0, 0, 0.18) 84%, transparent 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.96) 78%, rgba(0, 0, 0, 0.1) 95%, transparent 100%);
  mask-composite: intersect;
}

.hero-media--alpha .hero-media__video {
  inset: -8%;
  width: 116%;
  height: 116%;
  object-fit: cover;
  object-position: center center;
  -webkit-mask-image:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 42%, rgba(0, 0, 0, 0.72) 56%, rgba(0, 0, 0, 0.24) 72%, transparent 90%),
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.52) 13%, rgba(0, 0, 0, 1) 28%, rgba(0, 0, 0, 1) 72%, rgba(0, 0, 0, 0.52) 87%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.74) 16%, rgba(0, 0, 0, 1) 32%, rgba(0, 0, 0, 1) 76%, rgba(0, 0, 0, 0.44) 90%, transparent 100%);
  mask-image:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 42%, rgba(0, 0, 0, 0.72) 56%, rgba(0, 0, 0, 0.24) 72%, transparent 90%),
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.52) 13%, rgba(0, 0, 0, 1) 28%, rgba(0, 0, 0, 1) 72%, rgba(0, 0, 0, 0.52) 87%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.74) 16%, rgba(0, 0, 0, 1) 32%, rgba(0, 0, 0, 1) 76%, rgba(0, 0, 0, 0.44) 90%, transparent 100%);
}

.hero-media__scanline {
  position: absolute;
  inset: 10% 8% 12% 14%;
  z-index: 1;
  border: 0;
  background:
    linear-gradient(90deg, rgba(184, 115, 51, 0.035), transparent 18%, transparent 82%, rgba(107, 138, 153, 0.035)),
    repeating-linear-gradient(180deg, transparent 0 20px, rgba(240, 237, 233, 0.02) 21px);
  box-shadow: inset 0 0 30px rgba(184, 115, 51, 0.02);
  opacity: 0.04;
  pointer-events: none;
}

.hero-media__wash {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at 63% 44%, transparent 0%, rgba(15, 15, 19, 0.01) 52%, rgba(15, 15, 19, 0.08) 80%, rgba(15, 15, 19, 0.14) 100%),
    linear-gradient(90deg, rgba(15, 15, 19, 0.12) 0%, rgba(15, 15, 19, 0.03) 20%, rgba(15, 15, 19, 0) 58%, rgba(15, 15, 19, 0.12) 100%),
    linear-gradient(180deg, rgba(10, 13, 20, 0.03) 0%, rgba(10, 13, 20, 0) 56%, rgba(10, 13, 20, 0.07) 100%);
  pointer-events: none;
}

.hero-media__wash::after {
  content: "";
  position: absolute;
  inset: -4%;
  background:
    radial-gradient(ellipse at center, transparent 42%, rgba(15, 15, 19, 0.04) 64%, rgba(15, 15, 19, 0.14) 82%, rgba(15, 15, 19, 0.28) 100%);
  filter: blur(18px);
  opacity: 0.72;
  pointer-events: none;
}

.hero-media__glow {
  position: absolute;
  inset: auto 6% 4% auto;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.14), transparent 72%);
  filter: blur(26px);
  pointer-events: none;
  z-index: 3;
  animation: heroGlowPulse 6s ease-in-out infinite;
}

.panel-card,
.spotlight-card,
.problem-item,
.narrative-panel,
.process-card,
.system-card,
.price-card,
.faq-item,
.contact-form,
.final-panel,
.site-footer,
.section-shell {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--panel), var(--panel-alt));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.price-card__head,
.spotlight-caption span,
.video-support span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.badge,
.finance-line,
.process-step,
.system-number,
.form-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
}

.badge,
.process-step,
.system-number {
  background: rgba(184, 115, 51, 0.14);
  color: var(--copper-soft);
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(184, 115, 51, 0.2);
}

.visual-meta {
  color: var(--text-muted);
  background: rgba(107, 138, 153, 0.12);
  padding: 0.45rem 0.8rem;
}

.message-card__screen,
.spotlight-screen {
  margin-top: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(107, 138, 153, 0.12);
  background: linear-gradient(180deg, rgba(11, 15, 21, 0.95), rgba(15, 20, 28, 0.88));
}

.asset-line,
.signal-list div,
.warn-grid div,
.message-card__cards div,
.contact-signals a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(15, 18, 26, 0.7);
  border: 1px solid rgba(107, 138, 153, 0.12);
}

.signal-list i {
  width: 1rem;
  height: 1rem;
  color: var(--copper-soft);
}
.asset-line span,
.message-card__cards span {
  font-weight: 700;
}

.asset-line small,
.message-card__cards small,
.warn-grid small {
  color: var(--text-muted);
}

.split-grid--intro,
.split-grid--message,
.split-grid--explainer {
  align-items: center;
}

.intro-stack {
  display: grid;
  gap: 0;
}

.intro-stack .cta-btn {
  margin-top: 0.75rem;
  width: fit-content;
}

.panel-card,
.spotlight-card,
.narrative-panel,
.process-card,
.system-card,
.contact-form {
  padding: var(--space-card);
}

.signal-list,
.chip-row,
.warn-grid {
  display: grid;
  gap: 0.85rem;
}

.chip-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 1.5rem 0;
}

.chip-row--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 28rem;
}

.chip-row span {
  display: inline-flex;
  justify-content: center;
  padding: 0.75rem 0.9rem;
  border-radius: 999px;
  background: rgba(17, 20, 27, 0.84);
  border: 1px solid rgba(107, 138, 153, 0.18);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.panel-card--intro {
  position: relative;
  overflow: hidden;
}

.panel-card--intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(184, 115, 51, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 26%);
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.panel-card--intro.in-view::before {
  opacity: 1;
}

.panel-card--intro .chip-row span,
.panel-card--intro .signal-list div {
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.panel-card--intro .chip-row span:hover,
.panel-card--intro .signal-list div:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 115, 51, 0.28);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.spotlight-card {
  overflow: hidden;
}

.spotlight-frame {
  padding: 0.75rem;
  border-radius: var(--radius-md);
  background: rgba(10, 13, 20, 0.74);
  border: 1px solid rgba(107, 138, 153, 0.12);
}

.spotlight-card--video {
  align-self: start;
}

.video-embed-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #0a0d14;
  border: 1px solid rgba(107, 138, 153, 0.12);
}

.video-embed-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.spotlight-screen {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(184, 115, 51, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(8, 11, 17, 0.9), rgba(15, 20, 27, 0.82));
}

.spotlight-play {
  width: 4.25rem;
  height: 4.25rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(184, 115, 51, 0.16);
  border: 1px solid rgba(184, 115, 51, 0.2);
  box-shadow: var(--shadow-glow);
}

.spotlight-play i {
  width: 1.35rem;
  height: 1.35rem;
  color: var(--copper-soft);
}

.spotlight-caption {
  padding-top: 1rem;
}

.spotlight-caption span {
  justify-content: flex-start;
  color: var(--copper-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}

.spotlight-caption strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1.22;
  margin-bottom: 0.35rem;
}

.problem-stack {
  display: grid;
  gap: 0.9rem;
  margin: 1.5rem 0;
}

.problem-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 1rem 1.1rem;
}

.problem-item i {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--copper-soft);
}

.problem-item p {
  margin-bottom: 0;
}

.trust-gap-note {
  display: grid;
  gap: 0.25rem;
  margin: 1.75rem 0 1.25rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(184, 115, 51, 0.55);
}

.trust-gap-note strong {
  font-size: 1.15rem;
}

.trust-gap-note span {
  color: var(--copper-soft);
  font-weight: 700;
}

.panel-card--warn {
  border-color: rgba(184, 115, 51, 0.2);
}

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

.warn-grid strong {
  display: block;
}

.message-card__screen {
  padding: 1.1rem;
}

.message-card__line {
  height: 0.8rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(184, 115, 51, 0.55), rgba(107, 138, 153, 0.4));
  margin-bottom: 0.75rem;
}

.message-card__line--short {
  width: 58%;
}

.message-card__cards {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.15rem;
}

.narrative-panel {
  max-width: 62rem;
}

.process-grid,
.system-grid,
.pricing-grid {
  display: grid;
  gap: var(--space-grid);
}

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

.process-card {
  position: relative;
  min-height: 100%;
}

.process-card::after {
  content: "";
  position: absolute;
  top: 2rem;
  right: -0.8rem;
  width: 1.1rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(184, 115, 51, 0.6), rgba(107, 138, 153, 0.55));
}

.process-card:last-child::after {
  display: none;
}

.process-step {
  width: fit-content;
  margin-bottom: 1rem;
}

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

.system-card {
  min-height: 100%;
}

.system-number {
  width: fit-content;
  margin-bottom: 1rem;
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  margin-top: 2rem;
}

.pricing-carousel {
  margin-top: 2rem;
}

.pricing-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid rgba(107, 138, 153, 0.16);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(28, 28, 34, 0.76), rgba(12, 15, 22, 0.68)),
    rgba(15, 18, 26, 0.7);
  box-shadow: var(--shadow-lg);
}

.pricing-carousel__status {
  display: grid;
  gap: 0.2rem;
}

.pricing-carousel__status span {
  color: var(--copper-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-carousel__status strong {
  color: var(--text);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.2;
}

.pricing-carousel__buttons {
  display: flex;
  gap: 0.65rem;
}

.pricing-carousel__button {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(107, 138, 153, 0.22);
  border-radius: 999px;
  background: rgba(15, 18, 26, 0.78);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.pricing-carousel__button:hover,
.pricing-carousel__button:focus-visible {
  transform: translateY(-2px);
  color: var(--copper-soft);
  border-color: rgba(184, 115, 51, 0.34);
  box-shadow: var(--shadow-glow);
}

.pricing-carousel__button i,
.pricing-carousel__button svg {
  width: 1.05rem;
  height: 1.05rem;
}

.pricing-track {
  display: flex;
  gap: 0;
  align-items: stretch;
  margin-top: 0;
  padding: 0.35rem 0 1.35rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-padding-inline: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.pricing-track::-webkit-scrollbar {
  display: none;
}

.price-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 100%;
  width: 100%;
  min-height: 100%;
  padding: 1.5rem;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.price-card:hover {
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  border-color: rgba(184, 115, 51, 0.24);
}

.price-card--featured {
  border-color: rgba(184, 115, 51, 0.26);
}

.badge {
  width: fit-content;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.badge--star {
  background: linear-gradient(90deg, rgba(184, 115, 51, 0.2), rgba(107, 138, 153, 0.2));
}

.price-card__head {
  display: block;
}

.audience {
  margin-bottom: 1rem;
}

.price-row {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}

.price-row strong {
  font-size: 2rem;
  line-height: 1;
}

.finance-line {
  width: fit-content;
  padding: 0.35rem 0.7rem;
  margin-bottom: 1rem;
  background: rgba(107, 138, 153, 0.14);
  color: var(--text-soft);
}

.card-summary {
  color: var(--copper-soft);
  font-weight: 700;
}

.price-card__body {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
  flex: 1;
}

.feature-list,
.simple-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li,
.simple-list li {
  display: grid;
  gap: 0.18rem;
  padding-left: 1rem;
  position: relative;
}

.feature-list li::before,
.simple-list li::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--copper);
}

.feature-list strong {
  font-size: 0.98rem;
}

.feature-list span {
  color: var(--text-soft);
}

.mini-panel {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(15, 18, 26, 0.6);
  border: 1px solid rgba(107, 138, 153, 0.12);
}

.mini-panel p:last-child,
.simple-list:last-child,
.feature-list:last-child {
  margin-bottom: 0;
}

.multi-option-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.multi-option-grid div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0.9rem;
  border-radius: var(--radius-md);
  background: rgba(17, 20, 27, 0.72);
}

.price-card__footer {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.pricing-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.pricing-carousel__dot {
  width: 0.75rem;
  height: 0.75rem;
  border: 0;
  border-radius: 999px;
  background: rgba(107, 138, 153, 0.36);
  cursor: pointer;
  transition: width 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.pricing-carousel__dot:hover,
.pricing-carousel__dot:focus-visible {
  background: rgba(184, 115, 51, 0.8);
}

.pricing-carousel__dot.is-active {
  width: 2rem;
  background: linear-gradient(90deg, var(--copper), var(--slate));
  box-shadow: var(--shadow-glow);
}

.faq-layout {
  display: grid;
  gap: 2rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 1.35rem;
  text-align: left;
}

.faq-trigger span {
  font-weight: 700;
}

.faq-trigger i {
  width: 1rem;
  height: 1rem;
  color: var(--copper-soft);
  transition: transform 0.25s ease;
}

.faq-trigger[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.faq-panel p {
  padding: 0 1.35rem 1.25rem;
  margin-bottom: 0;
}

.contact-signals {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.contact-signals a {
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-note {
  width: fit-content;
  padding: 0.45rem 0.8rem;
  color: var(--text-soft);
  background: rgba(107, 138, 153, 0.12);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form label span {
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(107, 138, 153, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(10, 13, 20, 0.78);
  padding: 0.9rem 1rem;
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid rgba(184, 115, 51, 0.55);
  outline-offset: 1px;
  border-color: rgba(184, 115, 51, 0.3);
}

.checkbox-row {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.checkbox-row input {
  width: 1rem;
  height: 1rem;
}

.form-status {
  min-height: 1.5rem;
  margin-bottom: 0;
  color: var(--copper-soft);
  font-weight: 700;
}

.form-status[data-state="error"] {
  color: var(--danger);
}

.form-status[data-state="success"] {
  color: var(--copper-soft);
}

.contact-form button[disabled] {
  cursor: wait;
  opacity: 0.78;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0d14 0%, #0d1118 42%, #080b11 100%);
  border-top: 1px solid rgba(184, 115, 51, 0.22);
  padding-top: 2rem;
  padding-bottom: 1.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(3, minmax(10rem, 0.7fr));
  gap: 2.5rem;
  align-items: start;
  padding-top: 2.4rem;
}

.footer-brand h2 {
  font-size: 1.7rem;
  margin-bottom: 0.9rem;
}

.footer-column {
  display: grid;
  gap: 0.8rem;
}

.footer-column a,
.footer-brand a,
.social-btn {
  transition: color 0.25s ease, transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.footer-column a {
  position: relative;
  width: fit-content;
  color: var(--text);
  text-decoration: none;
}

.footer-column a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--copper), var(--slate));
  transition: width 0.25s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--copper-soft);
}

.footer-column a:hover::after,
.footer-column a:focus-visible::after {
  width: 100%;
}

.social-row {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.social-btn {
  display: inline-grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 0.9rem;
  background: rgba(17, 20, 27, 0.84);
  border: 1px solid rgba(107, 138, 153, 0.18);
  color: var(--text);
  text-decoration: none;
}

.social-btn:hover,
.social-btn:focus-visible {
  color: var(--copper-soft);
  border-color: rgba(184, 115, 51, 0.32);
  box-shadow: 0 16px 42px rgba(184, 115, 51, 0.16);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  padding-top: 2.2rem;
  margin-top: 2.2rem;
  border-top: 1px solid rgba(107, 138, 153, 0.12);
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.reveal-delay-4 {
  transition-delay: 0.32s;
}

@keyframes gridShift {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(80px, 80px);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroGlowPulse {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.06);
  }
}

@media (max-width: 1180px) {
  .hero-layout,
  .split-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    justify-self: center;
    min-height: 0;
  }

  .hero-media__frame {
    min-height: 0;
  }

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

  .process-card:nth-child(2)::after,
  .process-card:last-child::after {
    display: none;
  }

  .system-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --space-section: 4.75rem;
  }

  .desktop-nav,
  .cta-btn--nav {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .button-row,
  .price-card__footer {
    flex-direction: column;
  }

  .pricing-carousel__controls {
    align-items: stretch;
    flex-direction: column;
  }

  .pricing-carousel__buttons {
    justify-content: space-between;
  }

  .cta-btn,
  .secondary-btn {
    width: 100%;
  }

  .hero-media {
    order: 2;
    min-height: 0;
  }

  .hero-media__frame {
    min-height: 0;
  }

  .chip-row,
  .warn-grid,
  .process-grid,
  .system-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .chip-row--compact {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .process-card::after {
    display: none;
  }

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

@media (max-width: 640px) {
  .nav-row {
    padding: 0.9rem 0;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .hero-media {
    min-height: 0;
  }

  .hero-media__frame {
    border-radius: 1.4rem;
  }

  .problem-item,
  .mini-proof-grid div,
  .asset-line,
  .signal-list div,
  .warn-grid div,
  .message-card__cards div,
  .contact-signals a {
    flex-direction: column;
    align-items: flex-start;
  }

  .price-row strong {
    font-size: 1.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}

/* Shared homepage navigation */
body {
  padding-top: 4.65rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(15, 15, 19, 0.9);
  border-bottom: 1px solid rgba(107, 138, 153, 0.1);
}

.site-header > .container,
.mobile-menu > .container {
  width: min(calc(100% - 2rem), 78rem);
  margin: 0 auto;
}

.glow-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, #b87333, #6b8a99, transparent);
  opacity: 0.5;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand-link {
  color: #6b8a99;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.2;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.nav-link {
  color: #f0ede9;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #d59a65;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.cta-btn--nav,
#cta-mobile {
  min-height: 2.625rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  width: auto;
}

.mobile-toggle {
  display: none;
  padding: 0.5rem;
  border: 0;
  background: transparent;
  color: #f0ede9;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  inset: 4.6rem 0 auto;
  z-index: 40;
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, #0f0f13 0%, #1a1a20 50%, #0a0d14 100%);
  border-bottom: 1px solid rgba(107, 138, 153, 0.12);
  backdrop-filter: blur(20px);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu-inner {
  display: grid;
  gap: 1rem;
  padding: 1.5rem 0 1.75rem;
}

@media (max-width: 767px) {
  .desktop-nav,
  .cta-btn--nav {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
