@import "tailwindcss";
@import "tw-animate-css";
@import "../vendor/shadcn-tailwind-4.13.0.css";
:root {
  --black: #050505;
  --graphite: #121212;
  --titanium: #1e1e1e;
  --gold: #c8a96b;
  --amber: #ffb347;
  --cream: #f3e7cf;
  --muted: #8c8982;
  --line: rgba(200, 169, 107, 0.24);
}

/* WORLD 1ST / 60-SECOND SALES VIEW */
.quick-view {
  position: relative;
  padding: 125px 0;
  background: linear-gradient(180deg, #0c0b09, #080808 65%, #0b0a08);
  border-block: 1px solid rgba(200, 169, 107, 0.14);
}
.quick-intro {
  text-align: center;
  max-width: 930px;
}
.quick-intro > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.world-first {
  display: inline-flex;
  padding: 10px 14px;
  background: var(--gold);
  color: #080706;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.16em;
}
.quick-intro small {
  color: #756b5b;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.2em;
}
.quick-intro h2 {
  margin: 25px 0 20px;
  color: #f1ede5;
  font-size: clamp(42px, 5.2vw, 70px);
  line-height: 1;
  letter-spacing: -0.055em;
}
.quick-intro h2 em {
  font-style: normal;
  color: var(--gold);
}
.quick-intro > p {
  max-width: 670px;
  margin: auto;
  color: #9b958b;
  font-size: 18px;
  line-height: 1.65;
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 65px;
  border: 1px solid rgba(200, 169, 107, 0.15);
}
.quick-grid article {
  position: relative;
  min-height: 330px;
  padding: 32px 27px;
  background: rgba(10, 10, 9, 0.7);
  border-right: 1px solid rgba(200, 169, 107, 0.12);
  transition: 0.3s;
}
.quick-grid article:last-child {
  border-right: 0;
}
.quick-grid article:hover {
  background: linear-gradient(
    180deg,
    rgba(200, 169, 107, 0.08),
    rgba(10, 10, 9, 0.8)
  );
  transform: translateY(-5px);
}
.quick-grid article > span {
  position: absolute;
  right: 21px;
  top: 18px;
  color: #3f382d;
  font-size: 10px;
}
.quick-grid article > b {
  display: block;
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 0.18em;
}
.quick-grid h3 {
  margin: 48px 0 18px;
  color: #e3ddd2;
  font-size: 23px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}
.quick-grid p {
  color: #77726a;
  font-size: 12px;
  line-height: 1.7;
}
.headline-stack {
  margin-top: 60px;
}
.headline-stack p {
  margin: 0;
  padding: 23px 0;
  border-top: 1px solid rgba(200, 169, 107, 0.1);
  color: #817b72;
  text-align: center;
  font-size: clamp(18px, 2.3vw, 29px);
  letter-spacing: -0.025em;
}
.headline-stack p:last-child {
  border-bottom: 1px solid rgba(200, 169, 107, 0.1);
}
.headline-stack strong {
  color: #eee8dc;
  font-weight: 700;
}
.quick-choice {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  margin-top: 55px;
  padding: 28px 30px;
  border: 1px solid rgba(200, 169, 107, 0.25);
  background: linear-gradient(
    90deg,
    rgba(200, 169, 107, 0.09),
    rgba(200, 169, 107, 0.015)
  );
}
.quick-choice div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.quick-choice small {
  color: var(--gold);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.quick-choice b {
  color: #ded8cd;
  font-size: 17px;
}
.quick-choice .primary {
  grid-row: 1/3;
  grid-column: 2;
}
.quick-watch {
  grid-column: 1;
  color: #746e65;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
@media (max-width: 850px) {
  .quick-view {
    padding: 90px 0;
  }
  .quick-intro h2 {
    font-size: 45px;
  }
  .quick-grid {
    grid-template-columns: 1fr 1fr;
  }
  .quick-grid article {
    min-height: 280px;
    border-bottom: 1px solid rgba(200, 169, 107, 0.12);
  }
  .quick-choice {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .quick-choice .primary,
  .quick-watch {
    grid-column: 1;
    grid-row: auto;
  }
  .quick-choice div {
    align-items: center;
  }
}
@media (max-width: 540px) {
  .quick-intro > div {
    flex-direction: column;
    gap: 10px;
  }
  .quick-intro > p {
    font-size: 16px;
  }
  .quick-grid {
    grid-template-columns: 1fr;
  }
  .quick-grid article {
    min-height: auto;
    padding: 28px 24px;
  }
  .quick-grid h3 {
    margin: 35px 0 14px;
    font-size: 25px;
  }
  .headline-stack p {
    font-size: 20px;
    line-height: 1.35;
  }
  .quick-choice {
    padding: 25px 18px;
  }
  .quick-choice .primary {
    width: 100%;
  }
}

/* WORLD 1ST — Growth & Authority Engine */
.growth-authority {
  position: relative;
  overflow: hidden;
  padding: 125px 0;
  background: #060606;
  border-block: 1px solid rgba(200, 169, 107, 0.14);
}
.growth-glow {
  position: absolute;
  width: 900px;
  height: 900px;
  left: -430px;
  top: 90px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(190, 139, 53, 0.13),
    transparent 67%
  );
  pointer-events: none;
}
.growth-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(200, 169, 107, 0.14);
}
.growth-head p {
  margin: 15px 0 0;
  color: #777166;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.growth-head > strong {
  color: #4c483f;
  font: 700 11px/1 var(--sans);
  letter-spacing: 0.18em;
}
.growth-hero {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 68px;
  align-items: center;
  padding-top: 78px;
}
.growth-copy > small,
.growth-film-heading small,
.book-copy > small {
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.19em;
}
.growth-copy h2,
.growth-film-heading h2,
.book-copy h2 {
  margin: 20px 0 24px;
  color: #f0ece4;
  font-size: clamp(48px, 5vw, 78px);
  line-height: 0.94;
  letter-spacing: -0.055em;
}
.growth-copy h2 em,
.growth-film-heading h2 em,
.book-copy h2 em {
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 400;
}
.growth-lead {
  max-width: 600px;
  color: #918b80;
  font-size: 16px;
  line-height: 1.75;
}
.growth-statement {
  margin-top: 35px;
  padding: 20px 0 20px 22px;
  border-left: 2px solid var(--gold);
}
.growth-statement span,
.growth-statement b {
  display: block;
}
.growth-statement span {
  color: #777166;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.growth-statement b {
  margin-top: 8px;
  color: #d5cdbf;
  font-size: 17px;
  letter-spacing: 0.025em;
}
.authority-command {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(200, 169, 107, 0.27);
  background: linear-gradient(
    145deg,
    rgba(27, 24, 19, 0.94),
    rgba(7, 7, 7, 0.98)
  );
  box-shadow:
    0 35px 90px #000,
    inset 0 1px rgba(255, 255, 255, 0.035);
}
.authority-command:before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(200, 169, 107, 0.07);
  pointer-events: none;
}
.command-top,
.growth-film-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 19px;
  border-bottom: 1px solid rgba(200, 169, 107, 0.14);
  color: #a99d89;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.17em;
}
.command-top i,
.growth-film-status i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: #cfa85b;
  box-shadow: 0 0 12px #cfa85b;
  animation: authorityPulse 1.8s infinite;
}
.command-top small {
  color: #615c53;
  font-size: 7px;
}
.command-score {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: end;
  min-height: 150px;
  padding: 30px 12px 22px;
}
.command-score small {
  display: block;
  color: #6f695f;
  font-size: 7px;
  letter-spacing: 0.16em;
}
.command-score b {
  color: #dac083;
  font: 300 70px/1 var(--sans);
}
.command-score span {
  color: #5d584f;
  font-size: 12px;
}
.command-score svg {
  width: 100%;
  overflow: visible;
  filter: drop-shadow(0 0 8px rgba(213, 178, 105, 0.25));
}
.command-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(200, 169, 107, 0.12);
}
.command-metrics article {
  min-height: 104px;
  padding: 19px;
  border: 1px solid rgba(200, 169, 107, 0.08);
}
.command-metrics small,
.command-metrics b,
.command-metrics span {
  display: block;
}
.command-metrics small {
  color: #6e685e;
  font-size: 7px;
  letter-spacing: 0.13em;
}
.command-metrics b {
  margin: 11px 0 6px;
  color: #d7c49c;
  font-size: 22px;
}
.command-metrics span {
  color: #625e57;
  font-size: 8px;
}
.command-action {
  margin-top: 15px;
  padding: 16px 18px;
  background: rgba(200, 169, 107, 0.07);
  border-left: 2px solid var(--gold);
}
.command-action span {
  display: block;
  color: var(--gold);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.16em;
}
.command-action b {
  display: block;
  margin-top: 7px;
  color: #aea79b;
  font-size: 11px;
}
.growth-capabilities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 72px;
  border: 1px solid rgba(200, 169, 107, 0.12);
}
.growth-capabilities article {
  min-height: 210px;
  padding: 29px;
  border: 1px solid rgba(200, 169, 107, 0.09);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.018), transparent);
  transition: 0.35s ease;
}
.growth-capabilities article:hover {
  background: rgba(200, 169, 107, 0.06);
  transform: translateY(-5px);
}
.growth-capabilities span {
  color: #73613e;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.16em;
}
.growth-capabilities h3 {
  margin: 34px 0 13px;
  color: #d9d3c8;
  font-size: 20px;
}
.growth-capabilities p {
  margin: 0;
  color: #777168;
  font-size: 12px;
  line-height: 1.65;
}
.black-box-band {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 38px;
  align-items: center;
  margin-top: 64px;
  padding: 38px;
  border: 1px solid rgba(200, 169, 107, 0.21);
  background: linear-gradient(
    90deg,
    rgba(184, 134, 51, 0.12),
    rgba(255, 255, 255, 0.015)
  );
}
.black-box-mark {
  width: 122px;
  height: 122px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 20px;
  border: 1px solid #8d7444;
  box-shadow: inset 0 0 35px rgba(200, 169, 107, 0.1);
}
.black-box-mark span,
.black-box-mark small {
  color: #756b5a;
  font-size: 7px;
  letter-spacing: 0.2em;
}
.black-box-mark b {
  margin: 5px 0;
  color: #d5bb7e;
  font-size: 22px;
  line-height: 0.8;
}
.black-box-band > div:nth-child(2) small {
  color: var(--gold);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.black-box-band h3 {
  margin: 11px 0 12px;
  color: #d9d2c5;
  font-size: 25px;
  line-height: 1.18;
}
.black-box-band h3 em {
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 400;
}
.black-box-band p {
  max-width: 720px;
  margin: 0;
  color: #79736a;
  font-size: 11px;
  line-height: 1.65;
}
.black-box-band .primary {
  white-space: nowrap;
}
@keyframes authorityPulse {
  50% {
    opacity: 0.35;
    transform: scale(0.7);
  }
}

/* Dedicated Growth VSL and complimentary book */
.growth-film-section {
  padding: 125px 0 135px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 75% 23%,
      rgba(166, 117, 35, 0.11),
      transparent 30%
    ),
    #030303;
}
.growth-film-heading {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 54px;
}
.growth-film-heading p {
  color: #7e786e;
  font-size: 13px;
  line-height: 1.75;
}
.growth-film-screen {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(200, 169, 107, 0.28);
  background: radial-gradient(circle at 50% 50%, #1b160f, #050505 65%);
  box-shadow: 0 40px 120px #000;
}
.growth-film-screen video {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s;
}
.growth-film-screen.is-playing video {
  opacity: 1;
  pointer-events: auto;
}
.growth-film-screen.is-playing .growth-film-cover,
.growth-film-screen.is-playing .growth-film-play,
.growth-film-screen.is-playing .growth-film-grid,
.growth-film-screen.is-playing .growth-film-orbit {
  opacity: 0;
  pointer-events: none;
}
.growth-film-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(200, 169, 107, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 169, 107, 0.15) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle, #000, transparent 75%);
}
.growth-film-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(200, 169, 107, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: filmOrbit 18s linear infinite;
}
.growth-film-orbit.one {
  width: 470px;
  height: 470px;
}
.growth-film-orbit.two {
  width: 660px;
  height: 660px;
  animation-direction: reverse;
  animation-duration: 28s;
}
.growth-film-orbit:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  left: 50%;
  top: -4px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px var(--gold);
}
@keyframes filmOrbit {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.growth-film-cover {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: opacity 0.4s;
}
.growth-film-cover > span {
  color: #81765f;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.34em;
}
.growth-film-cover h3 {
  margin: 20px 0 13px;
  color: #f1ede5;
  font-size: clamp(56px, 7vw, 100px);
  line-height: 0.78;
  letter-spacing: -0.065em;
}
.growth-film-cover h3 em {
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 400;
}
.growth-film-cover p {
  color: #777064;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.2em;
}
.growth-film-play {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 83px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px 12px 12px;
  border: 1px solid rgba(200, 169, 107, 0.43);
  background: rgba(5, 5, 5, 0.8);
  color: #d9ceb9;
  cursor: pointer;
}
.growth-film-play i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: #080808;
  font-size: 12px;
  font-style: normal;
  box-shadow: 0 0 28px rgba(200, 169, 107, 0.35);
}
.growth-film-play span {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.16em;
}
.growth-film-status {
  position: absolute;
  z-index: 4;
  left: 24px;
  right: 24px;
  bottom: 21px;
  padding: 0;
  border: 0;
}
.growth-film-status small {
  color: #565149;
  font-size: 7px;
}
.book-experience {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: center;
  margin-top: 110px;
  padding-top: 100px;
  border-top: 1px solid rgba(200, 169, 107, 0.14);
}
.book-image-wrap {
  position: relative;
  text-align: center;
}
.book-image-wrap img {
  position: relative;
  z-index: 2;
  max-width: 470px;
  width: 90%;
  max-height: 650px;
  object-fit: contain;
  filter: drop-shadow(0 45px 45px #000);
  transform: perspective(1100px) rotateY(7deg);
}
.book-halo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 450px;
  height: 450px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(205, 160, 73, 0.27),
    transparent 68%
  );
  filter: blur(10px);
}
.book-copy > span {
  display: inline-block;
  margin-bottom: 22px;
  padding: 9px 13px;
  border: 1px solid rgba(200, 169, 107, 0.35);
  color: #d8bb7d;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.16em;
}
.book-copy p {
  max-width: 650px;
  color: #8b857b;
  font-size: 15px;
  line-height: 1.75;
}
.book-copy p strong {
  color: #c8b486;
}
.book-copy ul {
  margin: 28px 0 36px;
  padding: 0;
  list-style: none;
}
.book-copy li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(200, 169, 107, 0.1);
  color: #9d968a;
  font-size: 12px;
}
.book-copy li:before {
  content: "✓";
  margin-right: 12px;
  color: var(--gold);
}
@media (max-width: 980px) {
  .growth-hero,
  .growth-film-heading,
  .book-experience {
    grid-template-columns: 1fr;
  }
  .black-box-band {
    grid-template-columns: 120px 1fr;
  }
  .black-box-band .primary {
    grid-column: 1/-1;
  }
  .growth-capabilities {
    grid-template-columns: repeat(2, 1fr);
  }
  .growth-film-screen {
    min-height: 520px;
  }
  .growth-film-heading {
    gap: 20px;
  }
  .book-experience {
    gap: 45px;
  }
}
@media (max-width: 620px) {
  .growth-authority,
  .growth-film-section {
    padding: 85px 0;
  }
  .growth-head {
    display: block;
  }
  .growth-head > strong {
    display: none;
  }
  .growth-hero {
    padding-top: 52px;
    gap: 45px;
  }
  .growth-copy h2,
  .growth-film-heading h2,
  .book-copy h2 {
    font-size: 46px;
  }
  .command-score {
    grid-template-columns: 1fr;
  }
  .growth-capabilities {
    grid-template-columns: 1fr;
  }
  .black-box-band {
    grid-template-columns: 1fr;
    padding: 26px;
  }
  .growth-film-screen {
    min-height: 520px;
  }
  .growth-film-cover h3 {
    font-size: 52px;
  }
  .growth-film-cover p {
    max-width: 280px;
    line-height: 1.6;
  }
  .growth-film-play {
    bottom: 80px;
    width: calc(100% - 48px);
    justify-content: center;
  }
  .book-experience {
    margin-top: 75px;
    padding-top: 70px;
  }
  .book-image-wrap img {
    width: 100%;
  }
}

/* Complete interactive architecture */
.wealth-architecture {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(18, 73, 111, 0.19),
      transparent 36%
    ),
    #040506;
  border-block: 1px solid rgba(200, 169, 107, 0.16);
}
.wealth-architecture:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image:
    linear-gradient(rgba(95, 180, 225, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 180, 225, 0.22) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(transparent, #000 30%, #000 70%, transparent);
  pointer-events: none;
}
.architecture-heading {
  position: relative;
  text-align: center;
  max-width: 1050px;
}
.architecture-heading > small {
  display: block;
  margin-top: 20px;
  color: #6c7f89;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.24em;
}
.architecture-heading h2 {
  margin: 22px 0;
  color: #f0ece4;
  font-size: clamp(52px, 6vw, 86px);
  line-height: 0.92;
  letter-spacing: -0.06em;
}
.architecture-heading h2 em {
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 400;
}
.architecture-heading p {
  max-width: 790px;
  margin: 0 auto;
  color: #918b81;
  font-size: 16px;
  line-height: 1.75;
}
.architecture-explorer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.6fr);
  margin-top: 68px;
  border: 1px solid rgba(200, 169, 107, 0.24);
  background: #050607;
  box-shadow: 0 45px 130px #000;
}
.architecture-map {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  background: #020304;
}
.architecture-map > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: 0.9;
  transition:
    transform 0.8s,
    filter 0.8s;
}
.architecture-map:hover > img {
  transform: scale(1.012);
  filter: brightness(1.1);
}
.architecture-scan {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: -3px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #72d7f5, transparent);
  box-shadow: 0 0 15px #72d7f5;
  opacity: 0.45;
  animation: architectureScan 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes architectureScan {
  0%,
  100% {
    top: 2%;
    opacity: 0;
  }
  10%,
  90% {
    opacity: 0.5;
  }
  50% {
    top: 96%;
  }
}
.arch-hotspot {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  border: 1px solid rgba(117, 207, 239, 0.28);
  background: rgba(3, 8, 12, 0.82);
  color: #7994a2;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: 0.25s;
}
.arch-hotspot i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5688a0;
  box-shadow: 0 0 10px #5688a0;
}
.arch-hotspot:hover,
.arch-hotspot.active {
  color: #f2ddb0;
  border-color: #d3ad64;
  background: rgba(28, 22, 13, 0.92);
  transform: translateY(-2px);
}
.arch-hotspot.active i {
  background: #e0bd73;
  box-shadow: 0 0 14px #e0bd73;
}
.hot-core {
  left: 40%;
  top: 46%;
}
.hot-twin {
  left: 43%;
  top: 17%;
}
.hot-dashboards {
  left: 5%;
  top: 37%;
}
.hot-intelligence {
  right: 4%;
  top: 18%;
}
.hot-growth {
  left: 4%;
  top: 70%;
}
.hot-journey {
  left: 42%;
  bottom: 5%;
}
.architecture-console {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-left: 1px solid rgba(200, 169, 107, 0.2);
  background: linear-gradient(
    160deg,
    rgba(18, 20, 23, 0.98),
    rgba(5, 6, 7, 0.99)
  );
}
.arch-console-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(200, 169, 107, 0.14);
  color: #a89c87;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.17em;
}
.arch-console-top i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: #65caee;
  box-shadow: 0 0 11px #65caee;
  animation: authorityPulse 2s infinite;
}
.arch-console-top small {
  color: #575b5c;
  font-size: 7px;
}
.arch-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin: 18px 0;
}
.arch-tabs button {
  min-height: 44px;
  padding: 8px;
  border: 1px solid rgba(110, 156, 178, 0.13);
  background: #0a0d0f;
  color: #6d777a;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: left;
  cursor: pointer;
  transition: 0.25s;
}
.arch-tabs button span {
  margin-right: 6px;
  color: #3d5b68;
}
.arch-tabs button:hover,
.arch-tabs button.active {
  border-color: rgba(200, 169, 107, 0.5);
  background: rgba(200, 169, 107, 0.08);
  color: #d7c397;
}
.arch-details {
  position: relative;
  flex: 1;
  min-height: 360px;
}
.arch-details article {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: 0.35s;
}
.arch-details article.active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.arch-details article > span {
  color: var(--gold);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.arch-details h3 {
  margin: 15px 0;
  color: #dfd9cd;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.arch-details p {
  color: #827d74;
  font-size: 13px;
  line-height: 1.7;
}
.arch-details ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.arch-details li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(200, 169, 107, 0.1);
  color: #9a9388;
  font-size: 11px;
}
.arch-details li:before {
  content: "✓";
  margin-right: 10px;
  color: var(--gold);
}
.architecture-fullscreen {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(200, 169, 107, 0.3);
  background: rgba(200, 169, 107, 0.08);
  color: #ccb98f;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: 0.25s;
}
.architecture-fullscreen:hover {
  background: var(--gold);
  color: #070707;
}
.architecture-fullscreen b {
  font-size: 18px;
}
.architecture-promise {
  position: relative;
  display: grid;
  grid-template-columns: 0.2fr 1fr auto;
  gap: 45px;
  align-items: center;
  margin-top: 54px;
  padding: 36px;
  border: 1px solid rgba(200, 169, 107, 0.19);
  background: linear-gradient(
    90deg,
    rgba(200, 169, 107, 0.09),
    rgba(63, 137, 168, 0.05)
  );
}
.architecture-promise small {
  color: #6a7478;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.19em;
}
.architecture-promise strong {
  color: #d9d3c8;
  font-size: 23px;
  line-height: 1.3;
}
.architecture-promise strong em {
  color: var(--gold);
  font-style: normal;
}
.architecture-promise .primary {
  white-space: nowrap;
}
.architecture-modal {
  width: min(96vw, 1450px);
  max-width: none;
  max-height: 94vh;
  padding: 18px;
  border: 1px solid rgba(200, 169, 107, 0.45);
  background: #020304;
  box-shadow: 0 40px 150px #000;
  overflow: auto;
}
.architecture-modal::backdrop {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
}
.architecture-modal img {
  display: block;
  width: 100%;
  height: auto;
}
.architecture-close {
  position: sticky;
  z-index: 4;
  float: right;
  top: 0;
  width: 42px;
  height: 42px;
  margin: 0 0 -42px;
  border: 1px solid rgba(200, 169, 107, 0.5);
  background: #050505;
  color: #d6bd87;
  font-size: 26px;
  cursor: pointer;
}
@media (max-width: 1100px) {
  .architecture-explorer {
    grid-template-columns: 1fr;
  }
  .architecture-map {
    min-height: auto;
  }
  .architecture-console {
    border-left: 0;
    border-top: 1px solid rgba(200, 169, 107, 0.2);
  }
  .arch-details {
    min-height: 290px;
  }
  .architecture-promise {
    grid-template-columns: 1fr;
  }
  .architecture-promise .primary {
    justify-self: start;
  }
}
@media (max-width: 680px) {
  .wealth-architecture {
    padding: 90px 0;
  }
  .architecture-heading h2 {
    font-size: 47px;
  }
  .architecture-explorer {
    margin-top: 45px;
  }
  .architecture-map {
    overflow: auto;
  }
  .architecture-map > img {
    width: 900px;
    max-width: none;
    height: auto;
  }
  .arch-hotspot {
    display: none;
  }
  .architecture-console {
    padding: 18px;
  }
  .arch-tabs {
    grid-template-columns: 1fr 1fr;
  }
  .arch-details {
    min-height: 440px;
  }
  .arch-details h3 {
    font-size: 28px;
  }
  .architecture-promise {
    gap: 20px;
    padding: 25px;
  }
  .architecture-promise strong {
    font-size: 19px;
  }
}

/* WORLD-FIRST LIVING INTELLIGENCE LAYER */
.intelligence-atmosphere {
  position: fixed;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.intelligence-atmosphere i {
  position: absolute;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  opacity: 0.13;
  filter: blur(70px);
  background: radial-gradient(
    circle,
    rgba(205, 157, 76, 0.55),
    transparent 67%
  );
  animation: intelligence-drift 20s ease-in-out infinite alternate;
}
.intelligence-atmosphere i:nth-child(1) {
  left: -18vw;
  top: 8vh;
}
.intelligence-atmosphere i:nth-child(2) {
  right: -22vw;
  top: 42vh;
  animation-delay: -7s;
  animation-duration: 27s;
}
.intelligence-atmosphere i:nth-child(3) {
  left: 30vw;
  bottom: -30vw;
  animation-delay: -12s;
  animation-duration: 24s;
}
.world-first-rail {
  position: fixed;
  z-index: 120;
  left: 18px;
  top: 50%;
  display: grid;
  grid-template-rows: auto 150px auto;
  justify-items: center;
  gap: 14px;
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
body.site-ready.has-scrolled .world-first-rail {
  opacity: 1;
}
.world-first-rail > span {
  color: #a98549;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.22em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.world-first-rail > div {
  position: relative;
  width: 1px;
  height: 150px;
  overflow: hidden;
  background: rgba(207, 164, 93, 0.16);
}
.world-first-rail > div i {
  position: absolute;
  inset: 0;
  transform: scaleY(0);
  transform-origin: top;
  background: linear-gradient(#e5c47e, #8f6228);
  box-shadow: 0 0 12px rgba(222, 180, 99, 0.65);
  transition: transform 0.15s linear;
}
.world-first-rail > small {
  width: 10px;
  color: #554d42;
  font-size: 6px;
  letter-spacing: 0.15em;
  line-height: 1.4;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
body.site-ready.has-scrolled .nav {
  background: rgba(5, 5, 5, 0.76);
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}
.world-first,
.eyebrow {
  position: relative;
}
.world-first:after,
.eyebrow:after {
  position: absolute;
  right: -12px;
  top: -5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  content: "";
  animation: intelligence-signal 2.3s ease-in-out infinite;
}
.connected-system,
.alfred-everything,
.authorized-intelligence,
.household-demo,
.run-day,
.advisor-twin,
.control-room,
.offer {
  isolation: isolate;
}
.connected-system:after,
.household-demo:after,
.advisor-twin:after,
.control-room:after {
  position: absolute;
  z-index: -1;
  inset: 8% 3%;
  opacity: 0.19;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(213, 170, 91, 0.14) 50%,
    transparent 80%
  );
  filter: blur(42px);
  content: "";
  pointer-events: none;
  animation: system-sweep 11s ease-in-out infinite alternate;
}
.engine-card:hover,
.command-card:hover,
.quick-grid article:hover {
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.04),
    0 28px 75px rgba(0, 0, 0, 0.38),
    0 0 42px rgba(207, 164, 93, 0.07);
}
@keyframes intelligence-drift {
  from {
    transform: translate3d(-4%, 0, 0) scale(0.92);
  }
  to {
    transform: translate3d(8%, 7%, 0) scale(1.08);
  }
}
@keyframes system-sweep {
  from {
    transform: translateX(-18%) skewX(-8deg);
    opacity: 0.08;
  }
  to {
    transform: translateX(18%) skewX(8deg);
    opacity: 0.25;
  }
}
@media (max-width: 1200px) {
  .world-first-rail {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .intelligence-atmosphere i,
  .world-first:after,
  .eyebrow:after,
  .connected-system:after,
  .household-demo:after,
  .advisor-twin:after,
  .control-room:after {
    animation: none;
  }
}

/* NEXT BUILD — CINEMATIC MOTION SYSTEM */
.page-progress {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, #8c652c, #f2d18c 55%, #fff2c7);
  box-shadow: 0 0 18px rgba(226, 184, 102, 0.8);
  pointer-events: none;
}

.cursor-light {
  position: fixed;
  z-index: 40;
  top: -210px;
  left: -210px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  opacity: 0.2;
  background: radial-gradient(circle, rgba(211, 172, 94, 0.2), transparent 67%);
  mix-blend-mode: screen;
  pointer-events: none;
  will-change: transform;
}

.motion-ready .motion-reveal {
  opacity: 0;
  transform: translate3d(0, 36px, 0) scale(0.985);
  filter: blur(7px);
  transition:
    opacity 900ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    transform 1050ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    filter 850ms ease var(--reveal-delay, 0ms);
}

.motion-ready .motion-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.motion-ready .hero-copy.is-visible h1 {
  animation: headline-arrival 1.4s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.motion-ready .hero-backdrop {
  transform: translate3d(
      calc(var(--pointer-x, 0) * -16px),
      calc(var(--pointer-y, 0) * -10px),
      0
    )
    scale(1.035);
  transition: transform 700ms ease-out;
}

.motion-ready .hero-alfred img {
  transform: translate3d(
    calc(var(--pointer-x, 0) * 12px),
    calc(var(--pointer-y, 0) * 7px),
    0
  );
  transition: transform 650ms ease-out;
}

.motion-tilt {
  position: relative;
  isolation: isolate;
  transform: perspective(1100px) rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
  will-change: transform;
}

.motion-tilt::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0;
  background: radial-gradient(
    420px circle at var(--glow-x, 50%) var(--glow-y, 50%),
    rgba(222, 184, 107, 0.15),
    transparent 58%
  );
  content: "";
  pointer-events: none;
  transition: opacity 280ms ease;
}

.motion-tilt:hover {
  border-color: rgba(220, 182, 107, 0.42);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.motion-tilt:hover::after {
  opacity: 1;
}

.section-head::before {
  display: block;
  width: 0;
  height: 1px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, var(--gold), transparent);
  box-shadow: 0 0 16px rgba(211, 172, 94, 0.36);
  content: "";
  transition: width 1.3s 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-head.is-visible::before {
  width: min(190px, 40vw);
}

@keyframes headline-arrival {
  from {
    opacity: 0;
    transform: translateY(28px);
    letter-spacing: -0.075em;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: -0.055em;
  }
}

@media (hover: none), (max-width: 850px) {
  .cursor-light {
    display: none;
  }
  .motion-tilt {
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-progress,
  .cursor-light {
    display: none;
  }
  .motion-ready .motion-reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* NEXT BUILD — INTERACTIVE INTELLIGENCE MOTION */
.magnetic-action {
  position: relative;
  overflow: hidden;
  transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0);
  transition:
    transform 240ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 240ms ease,
    border-color 240ms ease;
  will-change: transform;
}

.magnetic-action::before {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(
    140px circle at var(--button-light-x, 50%) 50%,
    rgba(255, 247, 221, 0.3),
    transparent 65%
  );
  content: "";
  pointer-events: none;
  transition: opacity 220ms ease;
}

.magnetic-action:hover::before {
  opacity: 1;
}

.primary.magnetic-action:hover,
.nav-cta.magnetic-action:hover {
  box-shadow:
    0 14px 38px rgba(196, 150, 71, 0.2),
    0 0 30px rgba(221, 183, 106, 0.12);
}

.nav-links a {
  position: relative;
  transition: color 250ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 9px rgba(211, 172, 94, 0.65);
  content: "";
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover::after,
.nav-links a.is-current::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links a.is-current {
  color: var(--gold);
}

.control-status i,
.alfred-id i,
.result-top i {
  animation: intelligence-signal 2.2s ease-in-out infinite;
}

.control-core img {
  animation: intelligence-float 5.5s ease-in-out infinite;
  filter: drop-shadow(0 0 22px rgba(211, 172, 94, 0.14));
}

.result-ready:not([hidden]) .result-metrics b {
  text-shadow: 0 0 24px rgba(211, 172, 94, 0.22);
}

@keyframes intelligence-signal {
  0%,
  100% {
    box-shadow: 0 0 5px var(--amber);
    opacity: 0.65;
  }
  50% {
    box-shadow:
      0 0 13px var(--amber),
      0 0 25px rgba(211, 172, 94, 0.36);
    opacity: 1;
  }
}

@keyframes intelligence-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.015);
  }
}

@media (hover: none), (max-width: 850px) {
  .magnetic-action {
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .control-status i,
  .alfred-id i,
  .result-top i,
  .control-core img {
    animation: none;
  }
}

/* PROPER ONE WEALTH FILM EXPERIENCE */
.film-section {
  position: relative;
  padding: 145px 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 72%,
      rgba(169, 119, 48, 0.1),
      transparent 38%
    ),
    linear-gradient(180deg, #090806, #040404);
}
.film-experience {
  position: relative;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(238, 205, 139, 0.55),
    rgba(117, 80, 28, 0.08) 35%,
    rgba(216, 172, 91, 0.32)
  );
  box-shadow:
    0 45px 120px rgba(0, 0, 0, 0.7),
    0 0 90px rgba(174, 123, 49, 0.08);
}
.film-screen {
  position: relative;
  aspect-ratio: 16/8.3;
  min-height: 570px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 72% 50%,
      rgba(177, 122, 45, 0.21),
      transparent 34%
    ),
    linear-gradient(110deg, #030303 10%, #090704 58%, #020202);
}
.one-wealth-film {
  position: absolute;
  z-index: 8;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  background: #000;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.film-screen.is-playing .one-wealth-film {
  opacity: 1;
  pointer-events: auto;
}
.film-screen.is-playing .film-grid,
.film-screen.is-playing .film-light,
.film-screen.is-playing .film-alfred,
.film-screen.is-playing .film-copy,
.film-screen.is-playing .film-play,
.film-screen.is-playing .film-corner {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}
.film-screen.is-playing:after {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.film-screen:after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(2, 2, 2, 0.52), transparent 48%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 35%);
  pointer-events: none;
}
.film-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(202, 166, 95, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(202, 166, 95, 0.12) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(90deg, transparent, #000 35%, #000);
}
.film-light {
  position: absolute;
  right: 6%;
  top: 3%;
  width: 55%;
  aspect-ratio: 1;
  border: 1px solid rgba(211, 172, 94, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(211, 172, 94, 0.018),
    0 0 0 140px rgba(211, 172, 94, 0.012);
  animation: film-orbit 12s linear infinite;
}
.film-alfred {
  position: absolute;
  z-index: 1;
  right: 3%;
  bottom: 0;
  width: 48%;
  height: 94%;
  object-fit: contain;
  object-position: center bottom;
  filter: contrast(1.08) drop-shadow(-28px 0 42px rgba(0, 0, 0, 0.9));
}
.film-screen .film-copy {
  position: absolute;
  z-index: 3;
  left: 6%;
  top: 12%;
  width: 47%;
  transform: none;
}
.film-screen .film-copy > img {
  width: min(330px, 72%);
  height: auto;
  display: block;
  margin-bottom: 24px;
}
.film-screen .film-copy > span {
  color: #8e7449;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.27em;
}
.film-screen .film-copy h3 {
  max-width: 610px;
  margin: 20px 0 18px;
  font-size: clamp(36px, 3.5vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}
.film-screen .film-copy h3 em {
  color: var(--gold);
  font-style: normal;
}
.film-screen .film-copy p {
  max-width: 490px;
  color: #898176;
  font-size: 14px;
  line-height: 1.65;
}
.film-screen .film-play {
  position: absolute;
  z-index: 5;
  left: 52%;
  top: 59%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  transform: translate(-50%, -50%);
  border: 0;
  color: inherit;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}
.film-screen .film-play i {
  position: relative;
  display: grid;
  place-items: center;
  width: 102px;
  height: 102px;
  padding-left: 5px;
  border: 1px solid rgba(238, 202, 131, 0.7);
  border-radius: 50%;
  color: #060504;
  background: linear-gradient(135deg, #f1d595, #ae792f);
  box-shadow:
    0 0 0 12px rgba(213, 173, 96, 0.07),
    0 0 55px rgba(229, 184, 98, 0.27);
  transition: 0.35s;
}
.film-screen .film-play i:after {
  position: absolute;
  inset: -21px;
  border: 1px solid rgba(221, 181, 103, 0.18);
  border-radius: 50%;
  content: "";
  animation: film-play-pulse 2.8s ease-out infinite;
}
.film-screen .film-play b {
  color: #eee3cd;
  font-size: 9px;
  letter-spacing: 0.2em;
}
.film-screen .film-play small {
  color: #6f6658;
  font-size: 7px;
  letter-spacing: 0.18em;
}
.film-screen .film-play:hover i {
  transform: scale(1.08);
  box-shadow:
    0 0 0 15px rgba(213, 173, 96, 0.09),
    0 0 80px rgba(229, 184, 98, 0.42);
}
.film-corner {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  color: #574f43;
  font-size: 6px;
  letter-spacing: 0.22em;
}
.film-corner-left {
  left: 28px;
}
.film-corner-right {
  right: 28px;
}
.film-corner-right i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}
.film-console {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.1fr;
  min-height: 92px;
  background: #090806;
}
.film-console > * {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 22px 25px;
  border-right: 1px solid rgba(211, 172, 94, 0.12);
}
.film-console span {
  color: #765a30;
  font-size: 8px;
}
.film-console b {
  color: #857d71;
  font-size: 7px;
  letter-spacing: 0.11em;
}
.film-console > a {
  justify-content: center;
  border: 0;
  color: #181107;
  background: linear-gradient(110deg, #b68135, #e6c37d, #a96f27);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
  transition: filter 0.25s ease;
}
.film-console > a:hover {
  filter: brightness(1.12);
}
.film-transcript-link {
  display: block;
  padding: 17px;
  border-top: 1px solid rgba(211, 172, 94, 0.12);
  color: #74664f;
  background: #070706;
  text-align: center;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.15em;
  transition:
    color 0.25s ease,
    background 0.25s ease;
}
.film-transcript-link:hover {
  color: #d3b779;
  background: #0c0a07;
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 18px;
}
.legal-links a {
  color: #625b51;
  font-size: 7px;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.legal-links a:hover {
  color: #c7a565;
}
@media (max-width: 600px) {
  .legal-links {
    justify-content: flex-start;
    gap: 14px;
  }
}
@keyframes film-orbit {
  to {
    transform: rotate(360deg);
  }
}
@keyframes film-play-pulse {
  0% {
    opacity: 0.8;
    transform: scale(0.88);
  }
  80%,
  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}
@media (max-width: 900px) {
  .film-screen {
    min-height: 650px;
    aspect-ratio: auto;
  }
  .film-alfred {
    width: 62%;
    right: -7%;
  }
  .film-screen .film-copy {
    width: 55%;
    left: 5%;
  }
  .film-console {
    grid-template-columns: repeat(3, 1fr);
  }
  .film-console > a {
    grid-column: 1/-1;
  }
}
@media (max-width: 600px) {
  .film-screen {
    height: 680px;
    min-height: 0;
  }
  .film-screen:after {
    background: linear-gradient(
      0deg,
      #020202 0%,
      rgba(2, 2, 2, 0.96) 54%,
      transparent 88%
    );
  }
  .film-alfred {
    width: 104%;
    height: 62%;
    right: -31%;
    top: 0;
  }
  .film-screen .film-copy {
    top: auto;
    bottom: 35px;
    left: 22px;
    width: calc(100% - 44px);
  }
  .film-screen .film-copy > img {
    width: 240px;
  }
  .film-screen .film-copy h3 {
    font-size: 37px;
  }
  .film-screen .film-copy p {
    font-size: 12px;
  }
  .film-screen .film-play {
    top: 28%;
    left: 30%;
  }
  .film-screen .film-play i {
    width: 78px;
    height: 78px;
  }
  .film-screen .film-play b,
  .film-screen .film-play small,
  .film-corner {
    display: none;
  }
  .film-console {
    grid-template-columns: 1fr;
  }
  .film-console > * {
    min-height: 62px;
    padding: 17px 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(211, 172, 94, 0.1);
  }
  .film-console > a {
    grid-column: auto;
  }
}

/* INTERACTIVE ONE WEALTH INTELLIGENCE MAP */
.architecture {
  position: relative;
  padding: 145px 0;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(
      circle at 50% 58%,
      rgba(177, 125, 48, 0.1),
      transparent 40%
    ),
    #070707;
}
.architecture h2 em {
  color: var(--gold);
  font-style: normal;
}
.architecture-lead {
  margin: 20px 0 58px;
  color: #746e65;
  font-size: 13px;
}
.intelligence-map {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 720px;
  border: 1px solid rgba(211, 172, 94, 0.2);
  text-align: left;
  background: #080806;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
}
.map-visual {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-right: 1px solid rgba(211, 172, 94, 0.16);
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(191, 139, 58, 0.17),
      transparent 27%
    ),
    linear-gradient(145deg, #050505, #0c0905);
}
.map-visual:before {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(211, 172, 94, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(211, 172, 94, 0.1) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
  mask-image: radial-gradient(circle, #000, transparent 74%);
}
.map-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(211, 172, 94, 0.17);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.orbit-a {
  width: 250px;
  height: 250px;
  animation: map-turn 16s linear infinite;
}
.orbit-b {
  width: 430px;
  height: 430px;
  border-style: dashed;
  animation: map-turn 27s linear infinite reverse;
}
.orbit-c {
  width: 610px;
  height: 610px;
  opacity: 0.45;
}
.map-core {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(224, 188, 117, 0.5);
  border-radius: 50%;
  color: #d7bf8f;
  background: radial-gradient(circle, #1c150b, #080705 72%);
  box-shadow:
    0 0 0 18px rgba(211, 172, 94, 0.025),
    0 0 60px rgba(211, 172, 94, 0.13);
  cursor: pointer;
}
.map-core img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.map-core span {
  position: absolute;
  top: 19px;
  right: 27px;
  color: #745c35;
  font-size: 7px;
}
.map-core b {
  margin-top: -3px;
  font-size: 11px;
  letter-spacing: 0.18em;
}
.map-core small {
  margin-top: 5px;
  color: #685a44;
  font-size: 5px;
  letter-spacing: 0.16em;
}
.map-node {
  position: absolute;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 150px;
  padding: 15px 17px;
  border: 1px solid rgba(211, 172, 94, 0.14);
  color: #8b8377;
  background: rgba(8, 8, 7, 0.94);
  text-align: left;
  cursor: pointer;
  transition: 0.3s ease;
}
.map-node i {
  color: #725a34;
  font-size: 6px;
  font-style: normal;
}
.map-node b {
  font-size: 8px;
  letter-spacing: 0.12em;
}
.map-node small {
  color: #554f47;
  font-size: 7px;
}
.map-node:hover,
.map-node.active,
.map-core:hover,
.map-core.active {
  border-color: rgba(229, 192, 118, 0.65);
  color: #e3d0a8;
  box-shadow: 0 0 30px rgba(211, 172, 94, 0.1);
  transform: translateY(-3px);
}
.map-core:hover,
.map-core.active {
  transform: translate(-50%, -50%) scale(1.04);
}
.node-household {
  left: 7%;
  top: 16%;
}
.node-professionals {
  right: 5%;
  top: 18%;
}
.node-engines {
  left: 6%;
  bottom: 15%;
}
.node-action {
  right: 5%;
  bottom: 15%;
}
.map-pulse {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 210px;
  height: 210px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(221, 181, 103, 0.18);
  border-radius: 50%;
  animation: map-pulse 3s ease-out infinite;
}
.map-intelligence {
  position: relative;
  padding: 42px 45px;
  background: linear-gradient(160deg, #0d0c09, #070707);
}
.map-status {
  display: flex;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(211, 172, 94, 0.15);
}
.map-status span,
.map-status small {
  color: #716349;
  font-size: 7px;
  letter-spacing: 0.16em;
}
.map-status span i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 9px var(--gold);
}
.map-detail {
  display: none;
  animation: map-detail-in 0.48s ease;
}
.map-detail.active {
  display: block;
}
.map-detail > span {
  display: block;
  margin-top: 62px;
  color: #9a7841;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.2em;
}
.map-detail h3 {
  margin: 20px 0;
  color: #e5dfd4;
  font-size: clamp(36px, 3vw, 52px);
  line-height: 1;
  letter-spacing: -0.045em;
}
.map-detail p {
  color: #8a8379;
  font-size: 13px;
  line-height: 1.7;
}
.map-detail ul {
  display: grid;
  gap: 0;
  margin: 35px 0 0;
  padding: 0;
  list-style: none;
}
.map-detail li {
  padding: 14px 0 14px 18px;
  border-top: 1px solid rgba(211, 172, 94, 0.09);
  color: #777066;
  font-size: 9px;
  position: relative;
}
.map-detail li:before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "+";
}
.map-progress {
  position: absolute;
  right: 45px;
  bottom: 58px;
  left: 45px;
  height: 1px;
  background: rgba(211, 172, 94, 0.13);
}
.map-progress i {
  display: block;
  width: 20%;
  height: 100%;
  background: linear-gradient(90deg, #986a2d, #e1bd77);
  box-shadow: 0 0 10px rgba(211, 172, 94, 0.4);
  transition: width 0.5s ease;
}
.map-instruction {
  position: absolute;
  bottom: 28px;
  left: 45px;
  color: #48433c;
  font-size: 5px;
  letter-spacing: 0.18em;
}
@keyframes map-turn {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes map-pulse {
  0% {
    opacity: 0.75;
    transform: translate(-50%, -50%) scale(0.82);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.55);
  }
}
@keyframes map-detail-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 1000px) {
  .intelligence-map {
    grid-template-columns: 1fr;
  }
  .map-visual {
    border-right: 0;
    border-bottom: 1px solid rgba(211, 172, 94, 0.16);
  }
  .map-intelligence {
    min-height: 600px;
  }
}
@media (max-width: 600px) {
  .architecture {
    padding: 95px 0;
  }
  .architecture h2 {
    font-size: 42px;
  }
  .map-visual {
    min-height: 590px;
  }
  .orbit-a {
    width: 190px;
    height: 190px;
  }
  .orbit-b {
    width: 330px;
    height: 330px;
  }
  .orbit-c {
    width: 490px;
    height: 490px;
  }
  .map-core {
    width: 140px;
    height: 140px;
  }
  .map-core img {
    width: 62px;
    height: 62px;
  }
  .map-node {
    min-width: 125px;
    padding: 12px;
  }
  .node-household {
    left: 3%;
    top: 8%;
  }
  .node-professionals {
    right: 3%;
    top: 12%;
  }
  .node-engines {
    left: 3%;
    bottom: 10%;
  }
  .node-action {
    right: 3%;
    bottom: 7%;
  }
  .map-intelligence {
    min-height: 650px;
    padding: 30px 23px;
  }
  .map-detail > span {
    margin-top: 48px;
  }
  .map-detail h3 {
    font-size: 40px;
  }
  .map-progress {
    right: 23px;
    left: 23px;
  }
  .map-instruction {
    left: 23px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .map-orbit,
  .map-pulse,
  .map-detail {
    animation: none;
  }
}

/* SMART PRIVATE ACCESS CONVERSION DOCK */
.access-dock {
  position: fixed;
  z-index: 9000;
  right: 26px;
  bottom: 24px;
  left: 26px;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 20px;
  max-width: 1180px;
  min-height: 78px;
  margin: auto;
  padding: 10px 11px 10px 18px;
  border: 1px solid rgba(222, 184, 108, 0.34);
  opacity: 0;
  transform: translateY(120px) scale(0.98);
  background: rgba(8, 8, 7, 0.92);
  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.62),
    inset 0 1px rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(18px);
  pointer-events: none;
  transition:
    opacity 0.45s ease,
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.access-dock.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.access-dock:before {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background: linear-gradient(
    110deg,
    rgba(213, 172, 94, 0.08),
    transparent 32%,
    transparent 70%,
    rgba(213, 172, 94, 0.05)
  );
  content: "";
  pointer-events: none;
}
.access-dock-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-right: 1px solid rgba(211, 172, 94, 0.17);
  padding-right: 17px;
}
.access-dock-mark img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.access-dock-mark i {
  position: absolute;
  right: 7px;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
  animation: intelligence-signal 2.2s ease-in-out infinite;
}
.access-dock-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.access-dock-copy span {
  color: #8d7040;
  font-size: 6px;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.access-dock-copy b {
  color: #d8d0c3;
  font-size: 13px;
  letter-spacing: -0.01em;
}
.access-dock > small {
  padding: 0 22px;
  border-inline: 1px solid rgba(211, 172, 94, 0.13);
  color: #6c6458;
  font-size: 6px;
  line-height: 1.55;
  letter-spacing: 0.14em;
}
.access-dock > a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-width: 235px;
  min-height: 55px;
  padding: 0 20px;
  color: #171007;
  background: linear-gradient(110deg, #ad762e, #e6c47e, #a97028);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
  box-shadow: 0 0 30px rgba(202, 153, 71, 0.08);
  transition:
    filter 0.25s ease,
    transform 0.25s ease;
}
.access-dock > a:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}
.access-dock > a b {
  font-size: 15px;
}
.access-dock > button {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  border: 0;
  color: #5f584e;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.2s ease;
}
.access-dock > button:hover {
  color: #d4c39f;
}
@media (max-width: 850px) {
  .access-dock {
    right: 12px;
    bottom: 12px;
    left: 12px;
    grid-template-columns: auto 1fr auto;
    gap: 11px;
    min-height: 68px;
    padding: 8px 8px 8px 13px;
  }
  .access-dock-mark {
    width: 39px;
    height: 42px;
    padding-right: 12px;
  }
  .access-dock-mark img {
    width: 34px;
    height: 34px;
  }
  .access-dock-copy span,
  .access-dock > small {
    display: none;
  }
  .access-dock-copy b {
    font-size: 10px;
    line-height: 1.3;
  }
  .access-dock > a {
    min-width: 175px;
    min-height: 50px;
    padding: 0 14px;
    font-size: 7px;
  }
  .access-dock > button {
    display: none;
  }
}
@media (max-width: 560px) {
  .access-dock {
    grid-template-columns: 1fr auto;
  }
  .access-dock-mark,
  .access-dock-copy {
    display: none;
  }
  .access-dock > a {
    min-width: 0;
    width: 100%;
  }
  .access-dock:after {
    color: #706451;
    font-size: 6px;
    letter-spacing: 0.12em;
    content: "APPLICATIONS OPEN";
    grid-column: 2;
    grid-row: 1;
    padding: 0 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .access-dock {
    transition: none;
  }
  .access-dock-mark i {
    animation: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .film-light,
  .film-screen .film-play i:after {
    animation: none;
  }
}

/* BEFORE / AFTER TRANSFORMATION EXPERIENCE */
.transformation {
  position: relative;
  padding: 145px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #060606, #0b0906 52%, #050505);
}
.transformation:before {
  position: absolute;
  inset: 15% auto auto 50%;
  width: 900px;
  height: 900px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(184, 132, 54, 0.08),
    transparent 66%
  );
  content: "";
  pointer-events: none;
}
.transformation-head {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 70px;
  margin-bottom: 64px;
}
.transformation-head h2 {
  max-width: 880px;
  margin: 19px 0 0;
  font-size: clamp(48px, 5vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.052em;
}
.transformation-head h2 em {
  color: var(--gold);
  font-style: normal;
}
.transformation-head > p {
  max-width: 440px;
  color: #817a70;
  font-size: 15px;
  line-height: 1.7;
}
.transformation-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  align-items: stretch;
}
.transformation-panel {
  position: relative;
  min-height: 590px;
  padding: 52px;
  overflow: hidden;
  border: 1px solid rgba(200, 169, 107, 0.14);
}
.before-panel {
  background: linear-gradient(145deg, #0b0b0b, #060606);
}
.before-panel:after {
  position: absolute;
  inset: 0;
  opacity: 0.23;
  background: repeating-linear-gradient(
    135deg,
    transparent 0 32px,
    rgba(255, 255, 255, 0.015) 33px 34px
  );
  content: "";
  pointer-events: none;
}
.after-panel {
  border-color: rgba(217, 178, 102, 0.35);
  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(202, 153, 71, 0.16),
      transparent 35%
    ),
    linear-gradient(145deg, #131008, #070706);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.38),
    inset 0 0 70px rgba(202, 153, 71, 0.025);
}
.transformation-label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #71695e;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.2em;
}
.transformation-label i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #514d47;
}
.after-panel .transformation-label {
  color: #b39055;
}
.after-panel .transformation-label i {
  background: var(--gold);
  box-shadow: 0 0 13px var(--gold);
  animation: intelligence-signal 2.2s ease-in-out infinite;
}
.transformation-panel h3 {
  margin: 34px 0 40px;
  font-size: clamp(36px, 3.2vw, 55px);
  line-height: 1;
  letter-spacing: -0.045em;
}
.transformation-panel h3 em {
  color: var(--gold);
  font-style: normal;
}
.fragment-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
}
.fragment-list span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 56px;
  padding: 0 18px;
  background: #0a0a0a;
  color: #55514c;
}
.fragment-list b {
  font-size: 8px;
  letter-spacing: 0.15em;
}
.fragment-list small {
  font-size: 9px;
}
.fragment-list span:nth-child(2) {
  transform: translateX(9px);
}
.fragment-list span:nth-child(4) {
  transform: translateX(-7px);
}
.transformation-panel > strong {
  position: absolute;
  z-index: 2;
  right: 52px;
  bottom: 43px;
  left: 52px;
  padding-top: 21px;
  border-top: 1px solid rgba(200, 169, 107, 0.12);
  color: #777067;
  font-size: 11px;
  letter-spacing: 0.02em;
}
.after-panel > strong {
  color: #ddc693;
}
.prepared-brief {
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(224, 189, 119, 0.4),
    rgba(224, 189, 119, 0.05)
  );
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.32);
}
.prepared-brief > div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 13px;
  padding: 18px;
  background: #17130c;
  border-bottom: 1px solid rgba(211, 172, 94, 0.16);
}
.prepared-brief > div span,
.prepared-brief > div small {
  color: #77633f;
  font-size: 7px;
}
.prepared-brief > div b {
  color: #c9b27f;
  font-size: 7px;
  letter-spacing: 0.12em;
}
.prepared-brief p {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 47px;
  margin: 0;
  padding: 0 18px;
  border-bottom: 1px solid rgba(211, 172, 94, 0.07);
  background: #0d0c09;
  color: #8f8779;
  font-size: 10px;
}
.prepared-brief p i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(211, 172, 94, 0.5);
}
.transformation-bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #886a39;
}
.transformation-bridge span {
  width: 1px;
  height: 92px;
  background: linear-gradient(transparent, rgba(211, 172, 94, 0.5));
}
.transformation-bridge span:last-child {
  transform: rotate(180deg);
}
.transformation-bridge i {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(211, 172, 94, 0.3);
  border-radius: 50%;
  color: #b78f4c;
  font-size: 7px;
  font-style: normal;
  font-weight: 900;
  box-shadow: 0 0 25px rgba(211, 172, 94, 0.08);
}
.transformation-result {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  min-height: 110px;
  margin-top: 1px;
  padding: 25px 34px;
  border: 1px solid rgba(211, 172, 94, 0.17);
  background: #0b0a08;
}
.transformation-result span {
  color: #665d50;
  font-size: 7px;
  letter-spacing: 0.18em;
}
.transformation-result b {
  color: #ddd2be;
  font-size: 18px;
}
.transformation-result a {
  padding: 17px 20px;
  color: #181108;
  background: linear-gradient(110deg, #b68135, #e5c27c, #a96f27);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.1em;
}
@media (max-width: 900px) {
  .transformation-head {
    flex-direction: column;
    align-items: start;
  }
  .transformation-stage {
    grid-template-columns: 1fr;
  }
  .transformation-bridge {
    flex-direction: row;
    min-height: 64px;
  }
  .transformation-bridge span {
    width: 72px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(211, 172, 94, 0.5));
  }
  .transformation-bridge span:last-child {
    transform: rotate(180deg);
  }
  .transformation-result {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .transformation {
    padding: 95px 0;
  }
  .transformation-head {
    margin-bottom: 40px;
  }
  .transformation-head h2 {
    font-size: 43px;
  }
  .transformation-panel {
    min-height: 560px;
    padding: 30px 22px;
  }
  .transformation-panel h3 {
    margin: 28px 0 30px;
    font-size: 38px;
  }
  .transformation-panel > strong {
    right: 22px;
    bottom: 28px;
    left: 22px;
  }
  .fragment-list small {
    font-size: 7px;
  }
  .transformation-result {
    padding: 25px 22px;
  }
}

/* THE FUTURE OF WEALTH */
.future {
  position: relative;
  overflow: hidden;
  padding: 150px 0 120px;
  background:
    radial-gradient(
      circle at 50% 52%,
      rgba(200, 169, 107, 0.1),
      transparent 28%
    ),
    #080807;
  border-bottom: 1px solid rgba(200, 169, 107, 0.12);
}
.future-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(200, 169, 107, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 169, 107, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, #000, transparent 72%);
}
.future-heading {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}
.future-heading h2 {
  margin: 22px 0 25px;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  color: #f3efe7;
}
.future-heading h2 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold), #f6daa2, var(--amber));
  color: transparent;
  background-clip: text;
}
.future-heading p {
  max-width: 700px;
  margin: 0 auto;
  color: #918c83;
  font-size: 17px;
  line-height: 1.75;
}
.future-stage {
  position: relative;
  height: 720px;
  margin-top: 65px;
}
.future-stage:before,
.future-stage:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 49%;
  width: 68%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(200, 169, 107, 0.32),
    transparent
  );
  transform: translate(-50%, -50%) rotate(23deg);
}
.future-stage:after {
  transform: translate(-50%, -50%) rotate(-23deg);
}
.future-core {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 45%;
  width: 360px;
  height: 360px;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(200, 169, 107, 0.4);
  border-radius: 50%;
  background: radial-gradient(circle, #17140f 0, #0b0a08 62%, #050505 100%);
  box-shadow:
    0 0 100px rgba(200, 169, 107, 0.12),
    inset 0 0 70px rgba(200, 169, 107, 0.06);
}
.future-core:before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(200, 169, 107, 0.15);
  border-radius: 50%;
}
.future-core img {
  width: 86px;
  margin-bottom: 18px;
  filter: drop-shadow(0 0 20px rgba(200, 169, 107, 0.28));
}
.future-core span {
  color: var(--gold);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.22em;
}
.future-core strong {
  margin: 13px 0;
  color: #eee9df;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.future-core small {
  color: #625c52;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.2em;
}
.future-rings i {
  position: absolute;
  inset: -32px;
  border: 1px solid rgba(200, 169, 107, 0.16);
  border-radius: 50%;
  animation: future-pulse 4s ease-out infinite;
}
.future-rings i:nth-child(2) {
  inset: -68px;
  animation-delay: 1.3s;
}
.future-rings i:nth-child(3) {
  inset: -108px;
  animation-delay: 2.6s;
}
.future-signal {
  position: absolute;
  z-index: 2;
  width: 250px;
  padding: 20px 22px;
  border: 1px solid rgba(200, 169, 107, 0.18);
  background: linear-gradient(
    135deg,
    rgba(19, 18, 15, 0.96),
    rgba(7, 7, 7, 0.94)
  );
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition:
    opacity 0.8s ease,
    transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.future.is-visible .future-signal {
  opacity: 1;
  transform: translate(0, 0);
}
.future-signal small {
  float: right;
  color: #554b39;
  font-size: 8px;
}
.future-signal b {
  display: block;
  color: #d5c8b0;
  font-size: 11px;
  letter-spacing: 0.18em;
}
.future-signal span {
  display: block;
  margin-top: 8px;
  color: #6f6a62;
  font-size: 9px;
}
.signal-one {
  left: 2%;
  top: 13%;
  transform: translate(-40px, -20px);
}
.signal-two {
  right: 2%;
  top: 13%;
  transform: translate(40px, -20px);
}
.signal-three {
  left: 2%;
  top: 59%;
  transform: translate(-40px, 20px);
}
.signal-four {
  right: 2%;
  top: 59%;
  transform: translate(40px, 20px);
}
.future-command {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 0;
  width: min(620px, 90%);
  transform: translateX(-50%);
  padding: 22px 25px;
  border: 1px solid rgba(200, 169, 107, 0.24);
  background: rgba(9, 9, 8, 0.92);
  box-shadow: 0 25px 70px #000;
}
.future-command span {
  color: var(--gold);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.16em;
}
.future-command span i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 12px var(--amber);
}
.future-command b {
  display: block;
  margin: 11px 0 7px;
  color: #d9d3c8;
  font-size: 14px;
  line-height: 1.45;
}
.future-command small {
  color: #635f58;
  font-size: 9px;
}
.future-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-top: 60px;
  color: #746c5f;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.future-footer i {
  width: 45px;
  height: 1px;
  background: #4a3c28;
}
@keyframes future-pulse {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  40% {
    opacity: 0.65;
  }
  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}
@media (max-width: 760px) {
  .future {
    padding: 100px 0 85px;
  }
  .future-heading h2 {
    font-size: 48px;
  }
  .future-heading p {
    font-size: 15px;
  }
  .future-stage {
    height: 850px;
    margin-top: 35px;
  }
  .future-core {
    top: 42%;
    width: 260px;
    height: 260px;
  }
  .future-core img {
    width: 65px;
  }
  .future-core strong {
    font-size: 19px;
  }
  .future-rings i:nth-child(2) {
    inset: -45px;
  }
  .future-rings i:nth-child(3) {
    inset: -72px;
  }
  .future-signal {
    width: 46%;
    padding: 16px 13px;
  }
  .signal-one {
    left: 0;
    top: 5%;
  }
  .signal-two {
    right: 0;
    top: 5%;
  }
  .signal-three {
    left: 0;
    top: 62%;
  }
  .signal-four {
    right: 0;
    top: 62%;
  }
  .future-command {
    bottom: 0;
    padding: 19px 18px;
  }
  .future-footer {
    flex-direction: column;
    gap: 13px;
    margin-top: 40px;
  }
  .future-footer i {
    width: 1px;
    height: 18px;
  }
  .future-stage:before,
  .future-stage:after {
    width: 110%;
  }
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--black);
}
body {
  margin: 0;
  background: var(--black);
  color: #f5f1e8;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}
.shell {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
.ambient {
  position: absolute;
  inset: 0 0 auto;
  height: 950px;
  background:
    radial-gradient(
      circle at 72% 18%,
      rgba(255, 179, 71, 0.12),
      transparent 27%
    ),
    linear-gradient(180deg, #070707, transparent);
  pointer-events: none;
}
.opener {
  position: fixed;
  inset: 0;
  background: #010101;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--cream);
}
.opener-grid {
  position: absolute;
  inset: -15%;
  background-image:
    linear-gradient(rgba(200, 169, 107, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 169, 107, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle, #000 0, transparent 68%);
  transform: perspective(700px) rotateX(62deg) translateY(23%);
  opacity: 0.45;
}
.intro-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 44%,
    transparent 0,
    rgba(0, 0, 0, 0.18) 35%,
    #000 78%
  );
  pointer-events: none;
}
.scan-beam {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 46%,
    rgba(255, 204, 113, 0.07) 50%,
    transparent 54%
  );
  transform: translateY(-110%);
}
.is-running .scan-beam {
  animation: scan 5.2s 1.1s ease-in-out 2;
}
.intro-gate {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.intro-gate img {
  width: min(270px, 52vw);
  filter: drop-shadow(0 0 35px rgba(255, 179, 71, 0.16));
  animation: gateBreath 4s ease-in-out infinite;
}
.intro-gate > span {
  margin-top: 35px;
  color: #786a51;
  font-size: 8px;
  letter-spacing: 0.42em;
}
.intro-gate button {
  position: static;
  margin-top: 22px;
  border: 1px solid rgba(200, 169, 107, 0.55);
  background: rgba(15, 12, 8, 0.72);
  color: #d8bd88;
  padding: 16px 24px;
  font-size: 9px;
  letter-spacing: 0.22em;
  cursor: pointer;
  box-shadow: 0 0 45px rgba(255, 179, 71, 0.06);
  transition: 0.35s;
}
.intro-gate button:hover {
  border-color: #edcb85;
  box-shadow: 0 0 45px rgba(255, 179, 71, 0.18);
  color: #fff2d2;
}
.intro-gate button i {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffbe53;
  box-shadow: 0 0 10px #ffb347;
  margin-right: 10px;
}
.intro-gate small {
  margin-top: 14px;
  color: #4c4438;
  font-size: 7px;
  letter-spacing: 0.25em;
}
.is-running {
  animation: openerOut 1.4s 12s cubic-bezier(0.7, 0, 0.2, 1) forwards;
}
.orbit {
  position: absolute;
  left: 50%;
  top: 45%;
  border: 1px solid rgba(200, 169, 107, 0.11);
  border-radius: 50%;
  opacity: 0;
}
.orbit-one {
  width: 520px;
  height: 520px;
  margin: -260px;
  animation:
    orbitIn 3s 0.4s forwards,
    rotate 18s linear infinite;
}
.orbit-two {
  width: 650px;
  height: 650px;
  margin: -325px;
  border-style: dashed;
  animation:
    orbitIn 3s 1s forwards,
    rotateReverse 24s linear infinite;
}
.intro-particles {
  position: absolute;
  left: 50%;
  top: 45%;
  width: 1px;
  height: 1px;
}
.intro-particles i {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #ffd17d;
  opacity: 0;
  box-shadow: 0 0 7px #ffb347;
}
.intro-particles i:nth-child(4n) {
  transform: translate(280px, -140px);
}
.intro-particles i:nth-child(4n + 1) {
  transform: translate(-260px, 120px);
}
.intro-particles i:nth-child(4n + 2) {
  transform: translate(150px, 240px);
}
.intro-particles i:nth-child(4n + 3) {
  transform: translate(-170px, -235px);
}
.is-running .intro-particles i {
  animation: gather 4.1s calc(0.35s + var(--delay, 0s)) ease-in-out forwards;
}
.intro-particles i:nth-child(3n) {
  --delay: 0.4s;
}
.intro-particles i:nth-child(5n) {
  --delay: 0.9s;
}
.reveal-mark {
  position: absolute;
  left: 50%;
  top: 45%;
  width: min(360px, 58vw);
  height: min(360px, 58vw);
  transform: translate(-50%, -50%) scale(0.68);
  opacity: 0;
}
.is-running .reveal-mark {
  animation:
    markReveal 3.8s 1.4s cubic-bezier(0.18, 0.75, 0.16, 1) forwards,
    markDepart 1.5s 8.9s ease-in forwards;
}
.reveal-mark img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.halo {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 195, 91, 0.24),
    transparent 67%
  );
  filter: blur(24px);
  animation: haloPulse 3s ease-in-out infinite;
}
.boot-code {
  position: absolute;
  top: 45%;
  opacity: 0;
  font-size: 7px;
  letter-spacing: 0.18em;
  color: #625844;
}
.boot-code.left {
  left: 8%;
  text-align: left;
}
.boot-code.right {
  right: 8%;
  text-align: right;
}
.boot-code span,
.boot-code small {
  display: block;
}
.boot-code b {
  display: block;
  margin: 12px 0;
  color: #c39d5a;
  font-size: 27px;
  font-weight: 300;
}
.is-running .boot-code {
  animation:
    codeReveal 1.2s 4.1s forwards,
    codeOut 0.7s 8.2s forwards;
}
.startup {
  position: absolute;
  left: 50%;
  top: 72%;
  width: min(620px, 84vw);
  transform: translateX(-50%);
  text-align: center;
  opacity: 0;
}
.is-running .startup {
  animation:
    copyReveal 1.4s 4.7s forwards,
    codeOut 0.8s 8.7s forwards;
}
.startup > span {
  color: #7c6b4e;
  font-size: 7px;
  letter-spacing: 0.38em;
}
.startup h2 {
  font-size: 19px;
  letter-spacing: 0.3em;
  margin: 14px 0 20px;
  font-weight: 500;
  color: #d9bd86;
}
.startup-status {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: #5e574c;
  font-size: 6px;
  letter-spacing: 0.16em;
}
.startup-status i {
  font-style: normal;
}
.startup-status i:before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #d49b3f;
  border-radius: 50%;
  margin-right: 7px;
  box-shadow: 0 0 7px #ffb347;
}
.loadline {
  width: 100%;
  height: 2px;
  background: #201b13;
  margin: 17px auto 11px;
  overflow: hidden;
}
.loadline i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #78551f, #ffd487, #9d6a1b);
  transform-origin: left;
  animation: startupLoad 4.2s 4.8s cubic-bezier(0.3, 0.1, 0.2, 1) both;
  box-shadow: 0 0 12px rgba(255, 179, 71, 0.55);
}
.load-meta {
  display: flex;
  justify-content: space-between;
  color: #554d40;
  font-size: 7px;
  letter-spacing: 0.15em;
}
.load-meta b {
  color: #a18350;
}
.final-lockup {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(980px, 86vw);
  transform: translate(-50%, -50%) scale(0.92);
  opacity: 0;
  text-align: center;
}
.final-lockup img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 38px rgba(255, 179, 71, 0.12));
}
.final-lockup span {
  display: inline-block;
  margin-top: 24px;
  color: #b49660;
  font-size: 8px;
  letter-spacing: 0.45em;
}
.final-lockup span:before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #f3b64d;
  box-shadow: 0 0 12px #ffb347;
  margin-right: 13px;
}
.is-running .final-lockup {
  animation: finalReveal 2.2s 9.1s cubic-bezier(0.18, 0.8, 0.17, 1) forwards;
}
.opener .skip {
  position: absolute;
  right: 28px;
  bottom: 24px;
  background: none;
  border: 0;
  color: #4f493f;
  font-size: 8px;
  letter-spacing: 0.18em;
  cursor: pointer;
}
.opener .skip:hover {
  color: var(--gold);
}
.nav {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 5;
  border-bottom: 1px solid rgba(200, 169, 107, 0.09);
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--cream);
}
.brand b {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: -0.08em;
}
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 11px;
  font-weight: 700;
  color: #8a8377;
  letter-spacing: 0.08em;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-cta,
.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--gold);
  color: var(--cream);
  padding: 15px 21px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: linear-gradient(
    180deg,
    rgba(200, 169, 107, 0.1),
    rgba(200, 169, 107, 0.02)
  );
  box-shadow: inset 0 0 20px rgba(200, 169, 107, 0.04);
  transition: 0.25s;
}
.nav-cta:hover,
.primary:hover {
  background: var(--gold);
  color: #090806;
  box-shadow: 0 0 30px rgba(255, 179, 71, 0.15);
}
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  align-items: center;
  gap: 72px;
  min-height: 760px;
  padding: 70px 0 110px;
}
.eyebrow,
.section-no {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.eyebrow i,
.command-head i {
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  box-shadow: 0 0 12px var(--amber);
}
.hero h1 {
  font-size: 67px;
  line-height: 1.01;
  letter-spacing: -0.055em;
  margin: 28px 0;
  color: #f3efe7;
}
.hero h1 em,
.platform h2 em,
.control h2 em,
.offer h2 em,
.outcomes h2 em,
.alfred-copy h2 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold), #f6daa2, var(--amber));
  color: transparent;
  background-clip: text;
}
.hero-lead {
  font-size: 19px;
  line-height: 1.72;
  color: #aaa59b;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 38px;
}
.primary {
  padding: 18px 25px;
  font-size: 12px;
}
.secondary {
  font-size: 12px;
  font-weight: 800;
  color: #b9ae98;
  border-bottom: 1px solid #66583f;
  padding: 16px 0;
}
.micro {
  margin-top: 19px;
  color: #68645d;
  font-size: 10px;
  display: flex;
  gap: 7px;
  align-items: center;
}
.command {
  background: linear-gradient(145deg, #101010, #070707);
  min-height: 525px;
  padding: 27px 29px;
  border: 1px solid var(--line);
  box-shadow:
    0 40px 100px #000,
    0 0 80px rgba(255, 179, 71, 0.05);
  position: relative;
}
.command:after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(200, 169, 107, 0.06);
  pointer-events: none;
}
.command-head {
  display: flex;
  justify-content: space-between;
  color: #746b5c;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding-bottom: 55px;
}
.brief-label {
  font-size: 9px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.15em;
}
.command h2 {
  font-size: 39px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 13px 0 30px;
}
.signal {
  display: flex;
  gap: 15px;
  padding: 14px 0;
  border-top: 1px solid rgba(200, 169, 107, 0.13);
}
.signal > span {
  font-size: 10px;
  color: #726651;
  padding-top: 3px;
}
.signal.gold > span {
  color: var(--amber);
}
.signal b {
  display: block;
  font-size: 13px;
  color: #dbd3c5;
}
.signal small {
  display: block;
  color: #625f59;
  margin-top: 5px;
  font-size: 9px;
}
.command-foot {
  position: absolute;
  left: 29px;
  bottom: 23px;
  color: #625b50;
  display: flex;
  gap: 7px;
  align-items: center;
  font-size: 8px;
  font-weight: 800;
}
.proof {
  overflow: hidden;
  background: #0c0c0c;
  border-block: 1px solid rgba(200, 169, 107, 0.13);
}
.proof-track {
  display: flex;
  width: max-content;
  animation: proof-scroll 24s linear infinite;
  will-change: transform;
}
.proof-group {
  height: 72px;
  display: flex;
  align-items: center;
  flex: none;
  gap: 54px;
  padding-right: 54px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: #756d60;
  white-space: nowrap;
}
.proof i {
  display: block;
  height: 1px;
  width: 70px;
  flex: none;
  background: linear-gradient(90deg, transparent, #59482e, transparent);
}
.proof strong {
  color: var(--gold);
  text-shadow: 0 0 20px rgba(200, 169, 107, 0.25);
}
@keyframes proof-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .proof-track {
    animation-play-state: paused;
  }
}

.opener.static-exit {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}
.section {
  padding: 145px 0;
}
.section h2,
.manifesto h2,
.outcomes h2,
.offer h2,
.architecture h2,
.alfred-copy h2 {
  font-size: 52px;
  line-height: 1.04;
  letter-spacing: -0.045em;
  margin: 23px 0;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.statement {
  border-left: 1px solid var(--line);
  padding-left: 50px;
}
.statement p {
  font-size: 19px;
  color: #89857e;
  border-bottom: 1px solid rgba(200, 169, 107, 0.12);
  padding-bottom: 18px;
  margin-bottom: 18px;
}
.statement strong {
  display: block;
  font-size: 24px;
  margin-top: 30px;
  color: var(--gold);
}
.manifesto {
  background: linear-gradient(135deg, #15120d, #080808 58%);
  padding: 155px 0;
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
}
.manifesto:after {
  content: "01";
  position: absolute;
  right: -35px;
  bottom: -115px;
  font-size: 420px;
  font-weight: 900;
  color: rgba(200, 169, 107, 0.025);
}
.manifesto span,
.outcomes span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.manifesto h2 {
  font-size: 74px;
  max-width: 950px;
}
.manifesto p {
  max-width: 840px;
  color: #918b81;
  font-size: 19px;
  line-height: 1.75;
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  align-items: end;
}
.section-head > p {
  max-width: 430px;
  color: #7c7871;
  font-size: 16px;
  line-height: 1.7;
}
.day-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(200, 169, 107, 0.16);
  margin-top: 70px;
  border: 1px solid var(--line);
}
.day-grid article {
  background: #0c0c0c;
  padding: 31px;
  min-height: 290px;
  position: relative;
}
.day-grid article:hover {
  background: #14110d;
}
.day-grid article > span,
.cap-grid span {
  font-size: 10px;
  color: var(--gold);
  font-weight: 900;
}
.day-grid b {
  display: block;
  font-size: 17px;
  margin: 36px 0 16px;
  color: #ddd5c7;
}
.day-grid p,
.cap-grid p {
  color: #76736e;
  line-height: 1.65;
  font-size: 13px;
}
.day-grid small {
  position: absolute;
  bottom: 22px;
  right: 25px;
  color: #28231b;
  font-size: 30px;
  font-weight: 900;
}
.alfred-section {
  background: #080808;
  border-block: 1px solid var(--line);
  overflow: hidden;
}
.alfred-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  min-height: 720px;
}
.alfred-portrait {
  height: 720px;
  position: relative;
  background: radial-gradient(
    circle at 50% 45%,
    rgba(255, 179, 71, 0.12),
    transparent 48%
  );
}
.alfred-portrait img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 0 35px #000);
}
.alfred-portrait:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 60%, #080808),
    linear-gradient(0deg, #080808, transparent 38%);
  pointer-events: none;
}
.alfred-portrait span {
  position: absolute;
  left: 5px;
  bottom: 45px;
  z-index: 2;
  font-size: 27px;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.alfred-portrait b {
  font-size: 9px;
  color: #756a59;
  letter-spacing: 0.3em;
}
.alfred-copy {
  padding: 70px 0 70px 90px;
}
.alfred-copy > p {
  font-size: 18px;
  line-height: 1.75;
  color: #858078;
  max-width: 640px;
}
.alfred-quote {
  margin-top: 40px;
  border: 1px solid var(--line);
  padding: 28px 30px;
  display: flex;
  gap: 20px;
  color: #a29b90;
  line-height: 1.7;
  background: linear-gradient(120deg, rgba(200, 169, 107, 0.05), transparent);
}
.alfred-quote i {
  font-size: 52px;
  color: var(--gold);
  line-height: 0.8;
}
.alfred-quote b {
  color: var(--cream);
}
.platform {
  padding-top: 115px;
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 75px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.cap-grid article {
  padding: 38px 32px;
  min-height: 260px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #090909;
}
.cap-grid article:hover {
  background: #12100c;
  box-shadow: inset 0 0 35px rgba(255, 179, 71, 0.035);
}
.cap-grid h3 {
  font-size: 19px;
  margin: 31px 0 14px;
  color: #ddd5c7;
}
.architecture {
  padding: 130px 0;
  background: #080808;
  border-top: 1px solid var(--line);
  text-align: center;
}
.architecture h2 {
  font-size: 58px;
}
.architecture-frame {
  margin-top: 60px;
  padding: 12px;
  border: 1px solid var(--line);
  background: #050505;
  box-shadow: 0 35px 100px #000;
}
.architecture-frame img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.9;
}
.outcomes {
  background: linear-gradient(135deg, #15120d, #080808);
  padding: 140px 0;
  border-block: 1px solid var(--line);
}
.outcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
}
.outcomes h2 {
  font-size: 57px;
}
.outcome-grid > div:last-child p {
  display: flex;
  gap: 15px;
  border-bottom: 1px solid rgba(200, 169, 107, 0.14);
  padding: 18px 0;
  margin: 0;
  color: #a7a198;
  font-size: 14px;
}
.outcome-grid svg {
  color: var(--gold);
}
/* REBUILT FOUNDING ACTIVATION EXPERIENCE */
.activation-experience {
  margin-top: 120px;
}
.activation-title {
  text-align: center;
  max-width: 820px;
}
.activation-title small,
.activation-promise small,
.apply-steps-title small {
  color: var(--gold);
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0.2em;
}
.activation-title h3 {
  margin: 20px 0;
  color: #eee8dd;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.06em;
}
.activation-title h3 em,
.apply-steps-title h4 em {
  font-style: normal;
  color: var(--gold);
}
.activation-title p {
  color: #837d74;
  font-size: 13px;
}
.activation-line {
  position: relative;
  margin-top: 70px;
}
.activation-line:before {
  content: "";
  position: absolute;
  left: 30px;
  top: 40px;
  bottom: 40px;
  width: 1px;
  background: linear-gradient(var(--gold), rgba(200, 169, 107, 0.12));
}
.activation-line article {
  position: relative;
  display: grid;
  grid-template-columns: 85px 1fr;
  min-height: 155px;
  padding: 28px 35px;
  border-top: 1px solid rgba(200, 169, 107, 0.13);
  background: linear-gradient(
    90deg,
    rgba(200, 169, 107, 0.05),
    transparent 60%
  );
}
.activation-line article:last-child {
  border-bottom: 1px solid rgba(200, 169, 107, 0.13);
}
.activation-line article > span {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(200, 169, 107, 0.35);
  border-radius: 50%;
  background: #0b0a08;
  color: var(--gold);
  font-size: 9px;
  box-shadow: 0 0 25px rgba(200, 169, 107, 0.07);
}
.activation-line small {
  color: var(--gold);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.16em;
}
.activation-line b {
  display: block;
  margin: 11px 0;
  color: #d9d2c6;
  font-size: 22px;
  letter-spacing: -0.025em;
}
.activation-line p {
  color: #716c65;
  font-size: 10px;
}
.activation-promise {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: center;
  gap: 70px;
  margin-top: 65px;
  padding: 45px 50px;
  border: 1px solid rgba(200, 169, 107, 0.25);
  background:
    radial-gradient(
      circle at 80% 50%,
      rgba(200, 169, 107, 0.12),
      transparent 33%
    ),
    #0c0b09;
}
.activation-promise h4 {
  margin: 16px 0;
  color: #eee7db;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.activation-promise p {
  color: #777169;
  font-size: 10px;
}
.promise-value {
  padding-left: 55px;
  border-left: 1px solid rgba(200, 169, 107, 0.18);
}
.promise-value span {
  display: block;
  color: var(--gold);
  font-size: 58px;
  font-weight: 900;
  letter-spacing: -0.06em;
}
.promise-value b {
  display: block;
  margin-top: 8px;
  color: #9c9488;
  font-size: 8px;
  line-height: 1.6;
  letter-spacing: 0.12em;
}
.qualified-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 34px;
  padding: 24px;
  border-block: 1px solid rgba(200, 169, 107, 0.14);
  color: #817a70;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.qualified-strip small {
  color: var(--gold);
  font-size: 7px;
}
.qualified-strip i {
  width: 28px;
  height: 1px;
  background: #4a3e2d;
}
.qualified-strip strong {
  color: #d0c7b9;
}
.apply-steps {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 65px;
  margin-top: 90px;
  padding: 58px;
  border: 1px solid rgba(200, 169, 107, 0.22);
  background: linear-gradient(135deg, #11100e, #090909);
}
.apply-steps-title h4 {
  margin-top: 18px;
  color: #eee8dc;
  font-size: 42px;
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.apply-steps ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.apply-steps li {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 15px;
  padding: 20px 0;
  border-top: 1px solid rgba(200, 169, 107, 0.12);
}
.apply-steps li > span {
  color: var(--gold);
  font-size: 10px;
}
.apply-steps li b {
  color: #bcb4a8;
  font-size: 11px;
}
.apply-steps li p {
  margin-top: 7px;
  color: #68635c;
  font-size: 9px;
}
.apply-steps > .primary {
  grid-column: 1/3;
  width: 100%;
  margin-top: 0;
}
@media (max-width: 760px) {
  .activation-experience {
    margin-top: 90px;
  }
  .activation-line article {
    grid-template-columns: 70px 1fr;
    padding-inline: 15px;
  }
  .activation-promise,
  .apply-steps {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 38px 24px;
  }
  .promise-value {
    padding: 25px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(200, 169, 107, 0.18);
  }
  .qualified-strip {
    flex-direction: column;
  }
  .qualified-strip i {
    width: 1px;
    height: 15px;
  }
  .apply-steps > .primary {
    grid-column: 1;
  }
}

/* OLD FOUNDING OFFER STYLES — NO LONGER USED */
.offer-roadmap {
  margin-top: 120px;
}
.roadmap-head {
  text-align: center;
  max-width: 850px;
}
.roadmap-head small,
.after-apply > small {
  color: var(--gold);
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0.2em;
}
.roadmap-head h3 {
  margin: 20px 0;
  color: #f0eadf;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.roadmap-head h3 em {
  font-style: normal;
  color: var(--gold);
}
.roadmap-head p {
  max-width: 670px;
  margin: auto;
  color: #8c857b;
  font-size: 13px;
  line-height: 1.7;
}
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 55px;
  border: 1px solid rgba(200, 169, 107, 0.2);
}
.roadmap-grid article {
  position: relative;
  min-height: 300px;
  padding: 30px 22px;
  border-right: 1px solid rgba(200, 169, 107, 0.14);
  background: rgba(16, 15, 13, 0.92);
}
.roadmap-grid article:last-child {
  border-right: 0;
}
.roadmap-grid article > span {
  position: absolute;
  right: 16px;
  top: 14px;
  color: rgba(200, 169, 107, 0.35);
  font-size: 8px;
}
.roadmap-grid small {
  color: var(--gold);
  font-size: 7px;
  font-weight: 950;
  letter-spacing: 0.15em;
}
.roadmap-grid b {
  display: block;
  margin: 48px 0 18px;
  color: #e1dbd0;
  font-size: 20px;
  line-height: 1.1;
}
.roadmap-grid p {
  color: #777169;
  font-size: 10px;
  line-height: 1.6;
}
.offer-fit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 65px;
  border: 1px solid rgba(200, 169, 107, 0.2);
}
.offer-fit > div {
  padding: 48px 42px;
}
.fit-yes {
  background: linear-gradient(145deg, rgba(200, 169, 107, 0.11), #0d0c0a);
  border-right: 1px solid rgba(200, 169, 107, 0.16);
}
.fit-no {
  background: #0a0a09;
}
.offer-fit small {
  color: var(--gold);
  font-size: 7px;
  font-weight: 950;
  letter-spacing: 0.17em;
}
.offer-fit h3 {
  margin: 20px 0;
  color: #e8e1d6;
  font-size: 36px;
  line-height: 1.03;
  letter-spacing: -0.05em;
}
.offer-fit p {
  color: #807a72;
  font-size: 11px;
  line-height: 1.65;
}
.offer-fit ul {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}
.offer-fit li {
  padding: 12px 0;
  border-top: 1px solid rgba(200, 169, 107, 0.12);
  color: #989086;
  font-size: 10px;
}
.fit-yes li:before {
  content: "✓";
  margin-right: 9px;
  color: #74d69a;
}
.fit-no li:before {
  content: "—";
  margin-right: 9px;
  color: var(--gold);
}
.after-apply {
  margin-top: 65px;
  padding: 48px;
  border: 1px solid rgba(34, 24, 10, 0.23);
  background: #c6a665;
}
.after-apply > small {
  color: #211a10;
}
.after-apply > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 30px 0;
  background: rgba(34, 24, 10, 0.18);
}
.after-apply article {
  position: relative;
  min-height: 180px;
  padding: 30px 25px;
  background: #c6a665;
}
.after-apply article > span {
  position: absolute;
  right: 18px;
  top: 14px;
  color: rgba(34, 24, 10, 0.3);
  font-size: 9px;
}
.after-apply b {
  display: block;
  margin-top: 25px;
  color: #171006;
  font-size: 15px;
}
.after-apply p {
  margin-top: 12px;
  color: #594627;
  font-size: 9px;
  line-height: 1.6;
}
.after-apply .primary {
  width: 100%;
  background: #181006;
  color: #f0d89d;
  border-color: #181006;
}
@media (max-width: 900px) {
  .roadmap-grid {
    grid-template-columns: 1fr 1fr;
  }
  .roadmap-grid article {
    min-height: 240px;
    border-bottom: 1px solid rgba(34, 24, 10, 0.18);
  }
  .roadmap-grid article:last-child {
    grid-column: 1/3;
  }
  .offer-fit {
    grid-template-columns: 1fr;
  }
  .fit-yes {
    border-right: 0;
    border-bottom: 1px solid rgba(34, 24, 10, 0.18);
  }
}
@media (max-width: 560px) {
  .offer-roadmap {
    margin-top: 90px;
  }
  .roadmap-grid {
    grid-template-columns: 1fr;
  }
  .roadmap-grid article,
  .roadmap-grid article:last-child {
    grid-column: 1;
    min-height: auto;
  }
  .offer-fit > div,
  .after-apply {
    padding: 35px 23px;
  }
  .after-apply > div {
    grid-template-columns: 1fr;
  }
  .after-apply article {
    min-height: auto;
  }
}

/* ONE WEALTH CONTROL ROOM */
.control-room {
  padding: 145px 0;
  background:
    radial-gradient(
      circle at 24% 48%,
      rgba(200, 169, 107, 0.1),
      transparent 30%
    ),
    #080808;
  border-block: 1px solid rgba(200, 169, 107, 0.15);
}
.control-head {
  text-align: center;
  max-width: 940px;
}
.control-head h2 {
  margin: 25px 0 20px;
  color: #eee8dd;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.97;
  letter-spacing: -0.06em;
}
.control-head h2 em {
  font-style: normal;
  color: var(--gold);
}
.control-head > p {
  max-width: 680px;
  margin: auto;
  color: #817b73;
  font-size: 15px;
  line-height: 1.7;
}
.control-console {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  margin-top: 70px;
  border: 1px solid rgba(200, 169, 107, 0.2);
  background: #090909;
}
.control-core {
  position: relative;
  display: flex;
  min-height: 640px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 45px;
  border-right: 1px solid rgba(200, 169, 107, 0.15);
  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(200, 169, 107, 0.16),
      transparent 36%
    ),
    #0b0a09;
  text-align: center;
}
.control-status {
  position: absolute;
  left: 25px;
  right: 25px;
  top: 25px;
  display: flex;
  justify-content: space-between;
  color: #655f56;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.control-status span {
  color: var(--gold);
}
.control-status i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: #6dff9a;
  box-shadow: 0 0 12px #6dff9a;
}
.control-core img {
  width: 105px;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 28px rgba(200, 169, 107, 0.27));
}
.control-core > b {
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 0.2em;
}
.control-core > strong {
  margin: 15px 0;
  color: #eee7dc;
  font-size: 30px;
  line-height: 1.02;
}
.control-core > small {
  color: #5f5a52;
  font-size: 6px;
  font-weight: 900;
  letter-spacing: 0.17em;
}
.control-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.control-grid article {
  position: relative;
  min-height: 210px;
  padding: 35px 29px;
  border-right: 1px solid rgba(200, 169, 107, 0.1);
  border-bottom: 1px solid rgba(200, 169, 107, 0.1);
}
.control-grid article:nth-child(even) {
  border-right: 0;
}
.control-grid article > span {
  position: absolute;
  right: 18px;
  top: 15px;
  color: #484137;
  font-size: 8px;
}
.control-grid b {
  display: block;
  margin-top: 28px;
  color: #c2baae;
  font-size: 8px;
  letter-spacing: 0.13em;
}
.control-grid p {
  margin-top: 15px;
  color: #6f6a63;
  font-size: 10px;
  line-height: 1.6;
}
.control-truth {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
  border: 1px solid rgba(200, 169, 107, 0.14);
}
.control-truth > div {
  padding: 28px;
  border-right: 1px solid rgba(200, 169, 107, 0.1);
  text-align: center;
}
.control-truth > div:last-child {
  border-right: 0;
}
.control-truth small {
  display: block;
  color: var(--gold);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.15em;
}
.control-truth b {
  display: block;
  margin-top: 12px;
  color: #999186;
  font-size: 12px;
}
.control-close {
  margin-top: 90px;
  text-align: center;
  max-width: 850px;
}
.control-close h3 {
  color: #eee8dd;
  font-size: clamp(40px, 5vw, 65px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}
.control-close h3 em {
  font-style: normal;
  color: var(--gold);
}
.control-close > p {
  max-width: 650px;
  margin: 22px auto 30px;
  color: #78736b;
  font-size: 12px;
  line-height: 1.7;
}
@media (max-width: 850px) {
  .control-console {
    grid-template-columns: 1fr;
  }
  .control-core {
    min-height: 500px;
    border-right: 0;
    border-bottom: 1px solid rgba(200, 169, 107, 0.15);
  }
}
@media (max-width: 560px) {
  .control-room {
    padding: 100px 0;
  }
  .control-head h2 {
    font-size: 48px;
  }
  .control-grid,
  .control-truth {
    grid-template-columns: 1fr;
  }
  .control-grid article {
    min-height: auto;
    border-right: 0;
  }
  .control-truth > div {
    border-right: 0;
    border-bottom: 1px solid rgba(200, 169, 107, 0.1);
  }
  .control-close .primary {
    width: 100%;
  }
}

/* legacy control block retained for backward compatibility */
.control {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.control > div > p {
  color: #817d76;
  font-size: 17px;
  line-height: 1.75;
}
.orb {
  width: 380px;
  height: 380px;
  border: 1px solid rgba(200, 169, 107, 0.28);
  border-radius: 50%;
  position: relative;
  margin: auto;
  display: grid;
  place-items: center;
  box-shadow:
    inset 0 0 60px rgba(255, 179, 71, 0.035),
    0 0 50px rgba(255, 179, 71, 0.03);
}
.orb:after,
.orb:before {
  content: "";
  position: absolute;
  border: 1px solid rgba(200, 169, 107, 0.15);
  border-radius: 50%;
}
.orb:before {
  inset: 45px;
}
.orb:after {
  inset: 90px;
}
.orb > div {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.17em;
  z-index: 2;
}
.orb b {
  font-size: 22px;
  color: var(--gold);
}
.orb span {
  position: absolute;
  background: #050505;
  padding: 5px;
  font-size: 8px;
  font-weight: 900;
  color: var(--gold);
  z-index: 3;
}
.orb .a {
  top: 45px;
}
.orb .b {
  bottom: 65px;
  left: 4px;
}
.orb .c {
  right: -5px;
  top: 180px;
}
.offer {
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(255, 179, 71, 0.13),
      transparent 35%
    ),
    #090806;
  padding: 140px 0;
  border-block: 1px solid var(--gold);
}
.offer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 110px;
  align-items: center;
}
.offer-kicker {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.offer h2 {
  font-size: 64px;
}
.offer-lead {
  font-size: 18px;
  line-height: 1.7;
  color: #a7a095;
}
.primary.light {
  background: linear-gradient(90deg, #a98447, #f0cf8a, #b58c49);
  color: #080706 !important;
  border: 0;
  margin-top: 25px;
}
.value-card {
  background: #0b0b0b;
  padding: 38px 41px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px #000;
}
.value {
  display: flex;
  justify-content: space-between;
  align-items: end;
  border-bottom: 1px solid var(--line);
  padding-bottom: 25px;
  margin-bottom: 15px;
}
.value span {
  font-size: 46px;
  font-weight: 900;
  color: var(--cream);
}
.value b {
  font-size: 10px;
  color: var(--amber);
  letter-spacing: 0.12em;
}
.value-card p {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  margin: 0;
  color: #aaa399;
  font-size: 13px;
}
.value-card p svg {
  color: var(--gold);
}
.value-card > small {
  display: block;
  margin-top: 24px;
  color: #615e58;
  line-height: 1.5;
}
.apply {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}
.apply > div > p {
  font-size: 18px;
  color: #817d75;
  line-height: 1.75;
}
.availability {
  margin-top: 45px;
  display: flex;
  gap: 15px;
  align-items: center;
}
.availability > i {
  width: 9px;
  height: 9px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(255, 179, 71, 0.1);
}
.availability b,
.availability small {
  display: block;
}
.availability small {
  color: #68635b;
  margin-top: 5px;
}
.apply form {
  background: #0b0b0b;
  border: 1px solid var(--line);
  padding: 39px;
  box-shadow: 0 25px 70px #000;
}
label {
  display: block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #8f826c;
  margin-bottom: 18px;
}
input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 0;
  border-bottom: 1px solid #393127;
  background: transparent;
  padding: 12px 2px 11px;
  margin-top: 7px;
  color: #ded6c9;
  font: inherit;
  outline: none;
}
.apply form label,
.apply form .form-row {
  min-width: 0;
}
.apply form select {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
}
select option {
  background: #111;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
form button {
  width: 100%;
  border: 1px solid var(--gold);
  background: linear-gradient(90deg, #9f7b42, #e7c782, #a27c40);
  color: #080706;
  padding: 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
  font-weight: 900;
  cursor: pointer;
}
.privacy {
  display: flex;
  gap: 6px;
  justify-content: center;
  color: #5f5b55;
  margin-top: 15px;
}
.error {
  color: #d28366;
  text-align: center;
  font-size: 13px;
}
.success {
  min-height: 370px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.success svg {
  color: var(--gold);
}
.success h3 {
  font-size: 26px;
  margin: 20px 0 10px;
}
.success p {
  color: #817b72;
}
.faq {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 120px;
  padding-top: 90px;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  color: #c8c0b4;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq details p {
  color: #7d7972;
  line-height: 1.65;
  padding: 18px 35px 0 0;
  margin: 0;
}
footer {
  background: #030303;
  padding: 50px 0;
  border-top: 1px solid var(--line);
}
footer > div {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  align-items: center;
}
footer p {
  margin: 0;
  color: #766f64;
}
footer small {
  text-align: right;
  color: #504d48;
}
@keyframes gateBreath {
  50% {
    transform: scale(1.025);
    filter: drop-shadow(0 0 55px rgba(255, 179, 71, 0.26));
  }
}
@keyframes scan {
  0% {
    transform: translateY(-110%);
  }
  100% {
    transform: translateY(110%);
  }
}
@keyframes orbitIn {
  to {
    opacity: 1;
  }
}
@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotateReverse {
  to {
    transform: rotate(-360deg);
  }
}
@keyframes gather {
  0% {
    opacity: 0;
  }
  35% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: translate(0, 0);
  }
}
@keyframes markReveal {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.68);
    filter: blur(11px);
  }
  55% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    filter: blur(0) drop-shadow(0 0 34px rgba(255, 179, 71, 0.2));
  }
}
@keyframes markDepart {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.08);
    filter: blur(7px);
  }
}
@keyframes haloPulse {
  50% {
    opacity: 0.55;
    transform: scale(1.18);
  }
}
@keyframes codeReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes codeOut {
  to {
    opacity: 0;
    transform: translateY(-8px);
  }
}
@keyframes copyReveal {
  to {
    opacity: 1;
  }
}
@keyframes startupLoad {
  0% {
    transform: scaleX(0);
  }
  18% {
    transform: scaleX(0.08);
  }
  48% {
    transform: scaleX(0.42);
  }
  72% {
    transform: scaleX(0.68);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes finalReveal {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.92);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    filter: blur(0);
  }
}
@keyframes openerOut {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(1.025);
  }
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .hero,
  .split,
  .control,
  .offer-grid,
  .apply,
  .faq,
  .outcome-grid,
  .alfred-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 40px;
    gap: 55px;
  }
  .hero h1 {
    font-size: 49px;
  }
  .command {
    max-width: 570px;
  }
  .section-head {
    align-items: start;
    flex-direction: column;
  }
  .day-grid,
  .cap-grid {
    grid-template-columns: 1fr 1fr;
  }
  .offer-grid,
  .apply,
  .faq {
    gap: 55px;
  }
  .manifesto h2 {
    font-size: 56px;
  }
  .alfred-portrait {
    height: 600px;
  }
  .alfred-copy {
    padding: 70px 0 110px;
  }
  footer > div {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  footer small {
    text-align: left;
  }
}
@media (max-width: 600px) {
  .shell {
    width: calc(100% - 30px);
  }
  .nav {
    height: 78px;
  }
  .nav-cta {
    font-size: 0;
    padding: 12px;
  }
  .brand span {
    font-size: 11px;
  }
  .hero {
    min-height: auto;
    padding: 55px 0 80px;
  }
  .hero h1 {
    font-size: 41px;
  }
  .hero-lead {
    font-size: 16px;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .primary {
    width: 100%;
  }
  .secondary {
    text-align: center;
  }
  .command {
    padding: 22px 20px;
    min-height: 500px;
  }
  .command h2 {
    font-size: 31px;
  }
  .proof-track {
    animation-duration: 19s;
  }
  .proof-group {
    height: 62px;
    gap: 28px;
    padding-right: 28px;
  }
  .proof i {
    width: 34px;
  }
  .section {
    padding: 95px 0;
  }
  .section h2,
  .offer h2,
  .outcomes h2,
  .architecture h2,
  .alfred-copy h2 {
    font-size: 39px;
  }
  .manifesto {
    padding: 95px 0;
  }
  .manifesto h2 {
    font-size: 44px;
  }
  .day-grid,
  .cap-grid {
    grid-template-columns: 1fr;
  }
  .day-grid article {
    min-height: 220px;
  }
  .cap-grid article {
    min-height: auto;
  }
  .alfred-portrait {
    height: 510px;
  }
  .alfred-copy {
    padding: 60px 0 90px;
  }
  .architecture-frame {
    margin-inline: -8px;
    padding: 3px;
  }
  .orb {
    width: 285px;
    height: 285px;
  }
  .apply form {
    padding: 25px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .reveal-mark {
    width: 240px;
    height: 240px;
  }
  .startup {
    top: 70%;
  }
  .startup h2 {
    font-size: 14px;
    letter-spacing: 0.2em;
  }
  .startup-status {
    font-size: 5px;
  }
  .boot-code {
    display: none;
  }
  .final-lockup {
    width: 92vw;
  }
  .orbit-one {
    width: 360px;
    height: 360px;
    margin: -180px;
  }
  .orbit-two {
    width: 450px;
    height: 450px;
    margin: -225px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .is-running {
    animation: openerOut 0.5s 1.2s forwards;
  }
  .is-running .reveal-mark {
    animation: none;
    opacity: 1;
  }
  .orbit,
  .intro-particles,
  .boot-code,
  .startup,
  .final-lockup,
  .scan-beam {
    display: none;
  }
}
.shell {
  width: min(1480px, calc(100% - 80px));
}
.nav {
  height: 100px;
}
.brand-logo {
  width: 245px;
  height: 72px;
  overflow: hidden;
}
.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 12px rgba(255, 179, 71, 0.09));
}
.hero {
  position: relative;
  min-height: calc(100vh - 100px);
  height: auto;
  padding: 0;
  display: block;
  overflow: hidden;
  border-bottom: 1px solid rgba(200, 169, 107, 0.18);
  background: #050505;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 75% 42%,
      rgba(199, 147, 65, 0.22),
      transparent 27%
    ),
    linear-gradient(
      90deg,
      #050505 0%,
      #070706 42%,
      rgba(6, 6, 6, 0.55) 65%,
      #040404 100%
    );
}
.hero-backdrop:after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 169, 107, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 169, 107, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}
.hero-alfred {
  position: absolute;
  right: 3vw;
  bottom: 0;
  width: min(48vw, 760px);
  height: 97%;
  z-index: 1;
}
.hero-alfred:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #050505 0%, transparent 23%),
    linear-gradient(0deg, #050505 0%, transparent 25%);
  pointer-events: none;
}
.hero-alfred img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(-28px 10px 45px #000);
}
.alfred-id {
  position: absolute;
  right: 4%;
  bottom: 7%;
  z-index: 3;
  color: #d6b677;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.28em;
  display: flex;
  align-items: center;
  gap: 9px;
}
.alfred-id i {
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--amber);
}
.alfred-id span {
  color: #625c53;
  font-size: 7px;
  margin-left: 5px;
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
}
.hero-copy {
  width: min(760px, 57vw);
  padding: 90px 0 130px;
}
.hero h1 {
  font-size: clamp(64px, 6.2vw, 108px);
  line-height: 0.91;
  letter-spacing: -0.065em;
  margin: 34px 0 31px;
  max-width: 920px;
}
.hero-lead {
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.72;
  max-width: 720px;
  color: #aaa59b;
}
.secondary {
  display: inline-flex;
  gap: 9px;
  align-items: center;
}
.hero-brief {
  position: absolute;
  left: 0;
  bottom: 29px;
  width: min(700px, 53vw);
  border-top: 1px solid rgba(200, 169, 107, 0.25);
  padding-top: 15px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 22px;
}
.hero-brief span {
  grid-row: 1/3;
  color: #9d7d46;
  font-size: 8px;
  letter-spacing: 0.17em;
  padding-top: 3px;
}
.hero-brief b {
  font-size: 12px;
  color: #c8c0b2;
}
.hero-brief small {
  font-size: 9px;
  color: #625e57;
}
.film-section {
  padding: 145px 0 0;
  background: linear-gradient(180deg, #0a0907, #050505);
}
.film-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 70px;
  margin-bottom: 65px;
}
.film-heading h2 {
  font-size: clamp(50px, 5vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin: 20px 0 0;
}
.film-heading h2 em {
  font-style: normal;
  color: var(--gold);
}
.film-heading > p {
  max-width: 500px;
  color: #868078;
  font-size: 17px;
  line-height: 1.7;
}
.film-stage {
  position: relative;
  width: 100%;
  height: min(76vw, 850px);
  min-height: 620px;
  overflow: hidden;
  background: #030303;
  border-block: 1px solid rgba(200, 169, 107, 0.25);
}
.film-stage:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      #020202 0%,
      rgba(2, 2, 2, 0.82) 40%,
      transparent 70%
    ),
    linear-gradient(0deg, #020202 0%, transparent 35%);
}
.film-stage > img {
  position: absolute;
  right: 4%;
  bottom: 0;
  width: 52%;
  height: 96%;
  object-fit: contain;
  object-position: center bottom;
  filter: contrast(1.08) drop-shadow(-25px 0 45px #000);
}
.film-glow {
  position: absolute;
  right: 8%;
  top: 4%;
  width: 48vw;
  height: 48vw;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 179, 71, 0.18),
    transparent 65%
  );
  filter: blur(20px);
}
.film-copy {
  position: absolute;
  left: max(40px, 7vw);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: min(640px, 44vw);
}
.film-copy > img {
  width: 360px;
  max-width: 80%;
  height: auto;
  display: block;
  margin-bottom: 30px;
}
.film-copy > span {
  font-size: 9px;
  color: #8e7449;
  letter-spacing: 0.27em;
}
.film-copy h3 {
  font-size: clamp(39px, 4vw, 67px);
  line-height: 1;
  letter-spacing: -0.045em;
  margin: 22px 0 38px;
}
.film-play {
  display: grid;
  grid-template-columns: 68px auto;
  grid-template-rows: 1fr 1fr;
  width: max-content;
  column-gap: 17px;
  align-items: center;
}
.film-play i {
  grid-row: 1/3;
  width: 68px;
  height: 68px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #e5c079;
  box-shadow: 0 0 40px rgba(255, 179, 71, 0.1);
  transition: 0.3s;
}
.film-play b {
  align-self: end;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: #d8c8aa;
}
.film-play small {
  align-self: start;
  color: #6f6658;
  font-size: 8px;
  letter-spacing: 0.12em;
  margin-top: 5px;
}
.film-play:hover i {
  background: var(--gold);
  color: #080706;
  transform: scale(1.05);
}
.film-runtime {
  position: absolute;
  right: 35px;
  bottom: 27px;
  z-index: 3;
  color: #5c554b;
  font-size: 7px;
  letter-spacing: 0.2em;
}
@media (max-width: 900px) {
  .shell {
    width: calc(100% - 42px);
  }
  .brand-logo {
    width: 205px;
  }
  .hero {
    min-height: 900px;
  }
  .hero-content {
    min-height: 900px;
    align-items: start;
  }
  .hero-copy {
    width: 100%;
    padding: 95px 0 0;
  }
  .hero-alfred {
    width: 70vw;
    height: 58%;
    right: 0;
  }
  .hero h1 {
    font-size: 70px;
  }
  .hero-lead {
    max-width: 620px;
  }
  .hero-brief {
    width: 62%;
    left: 0;
  }
  .film-heading {
    align-items: start;
    flex-direction: column;
  }
  .film-stage {
    height: 780px;
  }
  .film-stage > img {
    width: 70%;
    right: -8%;
  }
  .film-copy {
    width: 58vw;
    left: 5vw;
  }
}
@media (max-width: 600px) {
  .shell {
    width: calc(100% - 30px);
  }
  .nav {
    height: 82px;
  }
  .brand-logo {
    width: 155px;
    height: 58px;
  }
  .hero {
    min-height: 850px;
  }
  .hero-content {
    min-height: 850px;
  }
  .hero-copy {
    padding-top: 65px;
    width: 100%;
  }
  .hero h1 {
    font-size: 53px;
  }
  .hero-lead {
    font-size: 16px;
    max-width: 96%;
  }
  .hero-alfred {
    width: 100vw;
    height: 48%;
    right: -20%;
  }
  .alfred-id {
    right: 22%;
    bottom: 4%;
  }
  .hero-brief {
    width: 75%;
    bottom: 20px;
  }
  .hero-brief span {
    display: none;
  }
  .hero-brief b {
    font-size: 10px;
  }
  .film-section {
    padding-top: 90px;
  }
  .film-heading {
    margin-bottom: 42px;
  }
  .film-heading h2 {
    font-size: 45px;
  }
  .film-heading > p {
    font-size: 15px;
  }
  .film-stage {
    height: 760px;
    min-height: 0;
  }
  .film-stage:after {
    background: linear-gradient(
      0deg,
      #020202 0%,
      rgba(2, 2, 2, 0.92) 43%,
      transparent 80%
    );
  }
  .film-stage > img {
    width: 105%;
    height: 60%;
    right: -28%;
    top: 0;
  }
  .film-copy {
    top: auto;
    bottom: 75px;
    transform: none;
    left: 25px;
    width: calc(100% - 50px);
  }
  .film-copy > img {
    width: 260px;
  }
  .film-copy h3 {
    font-size: 40px;
  }
  .film-runtime {
    right: 20px;
    bottom: 20px;
  }
}

/* EVERYTHING CONNECTED / FIVE AI ENGINES */
.connected-system {
  position: relative;
  padding: 145px 0;
  background: linear-gradient(180deg, #080808, #0d0b08 44%, #070707);
  overflow: hidden;
}
.connected-system:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 42%,
    rgba(200, 169, 107, 0.1),
    transparent 30%
  );
  pointer-events: none;
}
.connected-head {
  position: relative;
  text-align: center;
}
.connected-head > p {
  margin: 18px 0;
  color: #776f63;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.2em;
}
.connected-head h2 {
  margin: 25px auto 18px;
  max-width: 1000px;
  color: #f1ece3;
  font-size: clamp(48px, 6.5vw, 90px);
  line-height: 0.95;
  letter-spacing: -0.065em;
}
.connected-head h2 em {
  font-style: normal;
  color: var(--gold);
}
.connected-head > strong {
  display: block;
  color: #fff;
  font-size: clamp(20px, 3vw, 38px);
  letter-spacing: 0.08em;
}
.discipline-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 70px;
  border: 1px solid rgba(200, 169, 107, 0.2);
}
.discipline-grid article {
  position: relative;
  min-height: 315px;
  padding: 28px 22px;
  border-right: 1px solid rgba(200, 169, 107, 0.13);
  background: rgba(9, 9, 8, 0.76);
}
.discipline-grid article:last-child {
  border-right: 0;
}
.discipline-grid article > span {
  position: absolute;
  right: 16px;
  top: 14px;
  color: #3f382e;
  font-size: 8px;
}
.discipline-grid i {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 30px 0;
  border: 1px solid rgba(200, 169, 107, 0.35);
  border-radius: 50%;
  color: var(--gold);
  font-style: normal;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.05em;
}
.discipline-grid b {
  display: block;
  color: #d7d0c4;
  font-size: 9px;
  letter-spacing: 0.12em;
}
.discipline-grid p {
  margin-top: 17px;
  color: #6d6962;
  font-size: 10px;
  line-height: 1.65;
}
.engine-intro {
  position: relative;
  margin-top: 130px;
  text-align: center;
}
.engine-intro small {
  color: var(--gold);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.2em;
}
.engine-intro h3 {
  margin: 18px 0;
  color: #eee8dd;
  font-size: clamp(40px, 5vw, 68px);
  letter-spacing: -0.055em;
}
.engine-intro p {
  max-width: 700px;
  margin: auto;
  color: #89847c;
  font-size: 16px;
  line-height: 1.7;
}
.engine-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  margin-top: 65px;
}
.engine-list > div {
  position: relative;
  padding: 22px 25px 22px 78px;
  border-top: 1px solid rgba(200, 169, 107, 0.12);
}
.engine-list > div:last-child {
  border-bottom: 1px solid rgba(200, 169, 107, 0.12);
}
.engine-list span {
  position: absolute;
  left: 20px;
  top: 23px;
  color: var(--gold);
  font-size: 7px;
  font-weight: 900;
}
.engine-list b {
  display: block;
  color: #cfc8bc;
  font-size: 10px;
  letter-spacing: 0.13em;
}
.engine-list small {
  display: block;
  margin-top: 8px;
  color: #68645e;
  font-size: 9px;
  line-height: 1.5;
}
.engine-core {
  position: relative;
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 410px;
  height: 410px;
  border: 1px solid rgba(200, 169, 107, 0.34);
  border-radius: 50%;
  text-align: center;
  background: radial-gradient(circle, #18140e, #090908 68%);
  box-shadow: 0 0 110px rgba(200, 169, 107, 0.12);
}
.engine-core img {
  width: 92px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 22px rgba(200, 169, 107, 0.25));
}
.engine-core > span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.25em;
}
.engine-core > b {
  margin: 12px 0;
  color: #eee8dc;
  font-size: 28px;
  line-height: 1.02;
}
.engine-core > small {
  color: #5f5a52;
  font-size: 6px;
  font-weight: 900;
  letter-spacing: 0.17em;
}
.engine-orbit {
  position: absolute;
  inset: -35px;
  border: 1px solid rgba(200, 169, 107, 0.13);
  border-radius: 50%;
  animation: engine-turn 18s linear infinite;
}
.engine-orbit:before,
.engine-orbit:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 15px var(--gold);
}
.engine-orbit:before {
  left: 12%;
  top: 18%;
}
.engine-orbit:after {
  right: 8%;
  bottom: 25%;
}
.engine-orbit.two {
  inset: -77px;
  animation-direction: reverse;
  animation-duration: 25s;
  opacity: 0.55;
}
.done-for-you {
  position: relative;
  margin-top: 160px;
}
.dfy-head {
  text-align: center;
  max-width: 850px;
  margin: auto;
}
.dfy-head small {
  color: var(--gold);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.2em;
}
.dfy-head h3 {
  margin: 20px 0;
  color: #eee8dd;
  font-size: clamp(44px, 5.5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}
.dfy-head h3 em {
  font-style: normal;
  color: var(--gold);
}
.dfy-head p {
  max-width: 680px;
  margin: auto;
  color: #88837a;
  font-size: 15px;
  line-height: 1.7;
}
.meeting-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
  border: 1px solid rgba(200, 169, 107, 0.17);
}
.meeting-flow article {
  min-height: 420px;
  padding: 34px 32px;
  border-right: 1px solid rgba(200, 169, 107, 0.12);
  background: #0a0a09;
}
.meeting-flow article:last-child {
  border-right: 0;
}
.meeting-flow .meeting-now {
  background: linear-gradient(180deg, rgba(200, 169, 107, 0.1), #0a0a09);
}
.meeting-flow article > span {
  color: var(--gold);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.2em;
}
.meeting-flow h4 {
  margin: 38px 0 28px;
  color: #ded7cb;
  font-size: 28px;
  letter-spacing: -0.04em;
}
.meeting-flow ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.meeting-flow li {
  padding: 12px 0;
  border-top: 1px solid rgba(200, 169, 107, 0.09);
  color: #77716a;
  font-size: 10px;
}
.meeting-flow li:before {
  content: "✓";
  margin-right: 9px;
  color: var(--gold);
}
.advisor-control {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: center;
  gap: 25px;
  margin-top: 45px;
  padding: 38px 42px;
  border: 1px solid rgba(200, 169, 107, 0.28);
  background: linear-gradient(
    90deg,
    rgba(200, 169, 107, 0.1),
    rgba(200, 169, 107, 0.02)
  );
}
.advisor-control > div {
  display: flex;
  flex-direction: column;
  color: #837b6e;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.8;
}
.advisor-control > strong {
  color: #f0e9dd;
  font-size: clamp(25px, 3vw, 40px);
  line-height: 1;
}
.advisor-control > p {
  grid-column: 1/3;
  margin: 0;
  color: #625e57;
  font-size: 8px;
  line-height: 1.5;
}
.advisor-control > .primary {
  grid-column: 1/3;
  width: 100%;
}
@keyframes engine-turn {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 950px) {
  .discipline-grid {
    grid-template-columns: 1fr 1fr;
  }
  .discipline-grid article {
    min-height: 260px;
    border-bottom: 1px solid rgba(200, 169, 107, 0.12);
  }
  .discipline-grid article:last-child {
    grid-column: 1/3;
  }
  .engine-stage {
    grid-template-columns: 1fr;
    gap: 100px;
  }
  .engine-core {
    grid-row: 1;
  }
  .meeting-flow {
    grid-template-columns: 1fr;
  }
  .meeting-flow article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(200, 169, 107, 0.12);
  }
  .advisor-control {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .advisor-control > div {
    align-items: center;
  }
  .advisor-control > p,
  .advisor-control > .primary {
    grid-column: 1;
  }
}
@media (max-width: 560px) {
  .connected-system {
    padding: 100px 0;
  }
  .connected-head h2 {
    font-size: 49px;
  }
  .discipline-grid {
    grid-template-columns: 1fr;
  }
  .discipline-grid article,
  .discipline-grid article:last-child {
    grid-column: 1;
    min-height: auto;
  }
  .engine-intro {
    margin-top: 95px;
  }
  .engine-core {
    width: 255px;
    height: 255px;
  }
  .engine-core img {
    width: 65px;
  }
  .engine-core > b {
    font-size: 21px;
  }
  .engine-orbit.one {
    inset: -24px;
  }
  .engine-orbit.two {
    inset: -48px;
  }
  .engine-list > div {
    padding-left: 60px;
  }
  .done-for-you {
    margin-top: 120px;
  }
  .dfy-head h3 {
    font-size: 47px;
  }
  .meeting-flow article {
    padding: 30px 24px;
  }
  .advisor-control {
    padding: 30px 20px;
  }
  .advisor-control > strong {
    font-size: 29px;
  }
}

/* THREE PERSONALIZED COMMAND CENTRES */
.audience-paths {
  padding: 145px 0;
  background: linear-gradient(180deg, #080808, #0d0b08);
  border-block: 1px solid rgba(200, 169, 107, 0.14);
}
.paths-head {
  text-align: center;
}
.paths-head > small {
  color: var(--gold);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.2em;
}
.paths-head h2 {
  margin: 20px 0;
  color: #eee8dc;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.97;
  letter-spacing: -0.06em;
}
.paths-head h2 em {
  font-style: normal;
  color: var(--gold);
}
.paths-head > p {
  color: #807a72;
  font-size: 15px;
}
.path-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
  border: 1px solid rgba(200, 169, 107, 0.18);
}
.path-tabs button {
  position: relative;
  min-height: 120px;
  padding: 28px 25px 25px 65px;
  border: 0;
  border-right: 1px solid rgba(200, 169, 107, 0.13);
  background: #0a0a09;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: 0.25s;
}
.path-tabs button:last-child {
  border-right: 0;
}
.path-tabs button:hover,
.path-tabs button.active {
  background: linear-gradient(180deg, rgba(200, 169, 107, 0.11), #0a0a09);
}
.path-tabs button.active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--gold);
  box-shadow: 0 0 15px var(--gold);
}
.path-tabs span {
  position: absolute;
  left: 23px;
  top: 31px;
  color: #4f473b;
  font-size: 8px;
}
.path-tabs button.active span {
  color: var(--gold);
}
.path-tabs b {
  display: block;
  color: #b6aea2;
  font-size: 9px;
  letter-spacing: 0.13em;
}
.path-tabs small {
  display: block;
  margin-top: 10px;
  color: #635f58;
  font-size: 8px;
}
.path-panels {
  border: 1px solid rgba(200, 169, 107, 0.18);
  border-top: 0;
}
.path-panel {
  display: none;
  grid-template-columns: 1.25fr 0.75fr;
  min-height: 610px;
  animation: path-in 0.45s ease;
}
.path-panel.active {
  display: grid;
}
.path-copy {
  padding: 65px 55px;
}
.path-copy > span {
  color: var(--gold);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.path-copy h3 {
  margin: 26px 0 20px;
  color: #e9e3d8;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.path-copy h3 em {
  font-style: normal;
  color: var(--gold);
}
.path-copy > p {
  max-width: 640px;
  color: #817b73;
  font-size: 13px;
  line-height: 1.75;
}
.path-outcomes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 35px 0;
  background: rgba(200, 169, 107, 0.13);
}
.path-outcomes b {
  padding: 15px;
  background: #0b0b0a;
  color: #827b70;
  font-size: 8px;
  font-weight: 800;
}
.path-outcomes b:before {
  content: "✓";
  margin-right: 8px;
  color: var(--gold);
}
.path-brief {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 45px 38px;
  border-left: 1px solid rgba(200, 169, 107, 0.14);
  background:
    radial-gradient(
      circle at 50% 25%,
      rgba(200, 169, 107, 0.12),
      transparent 40%
    ),
    #0a0a09;
}
.path-brief > small {
  color: var(--gold);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.path-brief > strong {
  margin: 20px 0 35px;
  color: #ddd6ca;
  font-size: 27px;
  line-height: 1.1;
}
.path-brief > div {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid rgba(200, 169, 107, 0.11);
}
.path-brief > div span {
  color: var(--gold);
  font-size: 27px;
}
.path-brief > div b {
  color: #817a6f;
  font-size: 7px;
  letter-spacing: 0.12em;
}
.path-brief > p {
  margin-top: 25px;
  color: #605c55;
  font-size: 9px;
  line-height: 1.55;
}
@keyframes path-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 820px) {
  .path-tabs {
    grid-template-columns: 1fr;
  }
  .path-tabs button {
    min-height: 95px;
    border-right: 0;
    border-bottom: 1px solid rgba(200, 169, 107, 0.12);
  }
  .path-panel.active {
    grid-template-columns: 1fr;
  }
  .path-brief {
    border-left: 0;
    border-top: 1px solid rgba(200, 169, 107, 0.14);
  }
}
@media (max-width: 540px) {
  .audience-paths {
    padding: 100px 0;
  }
  .paths-head h2 {
    font-size: 48px;
  }
  .path-copy,
  .path-brief {
    padding: 38px 23px;
  }
  .path-outcomes {
    grid-template-columns: 1fr;
  }
  .path-copy .primary {
    width: 100%;
  }
}

/* ALFRED READS, LISTENS + CONNECTS */
.alfred-everything {
  padding: 145px 0;
  background: #070707;
  border-top: 1px solid rgba(200, 169, 107, 0.12);
}
.ae-head {
  text-align: center;
  max-width: 900px;
}
.ae-head small,
.run-day-head small {
  color: var(--gold);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.2em;
}
.ae-head h2 {
  margin: 22px 0;
  color: #eee9df;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}
.ae-head h2 em {
  font-style: normal;
  color: var(--gold);
}
.ae-head p {
  max-width: 700px;
  margin: auto;
  color: #817d75;
  font-size: 14px;
  line-height: 1.7;
}
.ae-stage {
  display: grid;
  grid-template-columns: 1fr 330px 1fr;
  align-items: center;
  gap: 42px;
  margin-top: 75px;
}
.ae-inputs article {
  min-height: 120px;
  padding: 23px 25px;
  border-top: 1px solid rgba(200, 169, 107, 0.13);
}
.ae-inputs article:last-child {
  border-bottom: 1px solid rgba(200, 169, 107, 0.13);
}
.ae-inputs span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.ae-inputs b {
  color: #a9a298;
  font-size: 11px;
  line-height: 1.55;
}
.ae-inputs.left {
  text-align: right;
}
.ae-core {
  position: relative;
  height: 470px;
  overflow: hidden;
  border: 1px solid rgba(200, 169, 107, 0.25);
  background:
    radial-gradient(
      circle at 50% 35%,
      rgba(200, 169, 107, 0.15),
      transparent 40%
    ),
    #0b0a09;
  text-align: center;
}
.ae-core img {
  width: 100%;
  height: 77%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.75) contrast(1.08);
}
.ae-core > span {
  display: block;
  color: var(--gold);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.25em;
}
.ae-core > b {
  display: block;
  margin-top: 8px;
  color: #eee7da;
  font-size: 16px;
  line-height: 1.05;
}
.ae-scan {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 20px var(--gold);
  animation: alfred-scan 5s ease-in-out infinite;
}
.ae-statement {
  margin-top: 65px;
  padding: 28px;
  border-block: 1px solid rgba(200, 169, 107, 0.13);
  color: #777169;
  text-align: center;
  font-size: clamp(18px, 2.4vw, 29px);
}
.ae-statement strong {
  color: #eee8dd;
}
/* WORLD 1ST AUTHORIZED INTELLIGENCE */
.authorized-intelligence {
  padding: 145px 0;
  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(200, 169, 107, 0.13),
      transparent 32%
    ),
    #0b0907;
  border-block: 1px solid rgba(200, 169, 107, 0.2);
  overflow: hidden;
}
.auth-world {
  text-align: center;
}
.auth-world > span {
  display: block;
  color: var(--gold);
  font-size: clamp(82px, 14vw, 190px);
  font-weight: 950;
  line-height: 0.78;
  letter-spacing: -0.075em;
  text-shadow: 0 0 70px rgba(200, 169, 107, 0.18);
}
.auth-world > small {
  display: block;
  margin-top: 35px;
  color: #8d826f;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.35em;
}
.auth-head {
  margin-top: 70px;
  text-align: center;
}
.auth-head h2 {
  color: #f0eadf;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}
.auth-head p {
  max-width: 700px;
  margin: 25px auto 0;
  color: #888178;
  font-size: 16px;
  line-height: 1.7;
}
.auth-verbs {
  display: flex;
  width: max-content;
  margin-top: 85px;
  animation: auth-scroll 34s linear infinite;
  color: #71685b;
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.045em;
  white-space: nowrap;
}
.auth-verbs > div {
  display: flex;
}
.auth-verbs span,
.auth-verbs strong {
  padding-right: 55px;
}
.auth-verbs strong {
  color: var(--gold);
}
.auth-power {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 80px;
  margin-top: 100px;
  padding-block: 50px;
  border-block: 1px solid rgba(200, 169, 107, 0.14);
}
.auth-power small {
  color: var(--gold);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.2em;
}
.auth-power h3 {
  margin-top: 18px;
  color: #e8e1d5;
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.03;
  letter-spacing: -0.05em;
}
.auth-power > p {
  color: #817b72;
  font-size: 13px;
  line-height: 1.8;
}
.auth-outcome {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 65px;
  border: 1px solid rgba(200, 169, 107, 0.15);
}
.auth-outcome article {
  padding: 30px 24px;
  border-right: 1px solid rgba(200, 169, 107, 0.12);
  text-align: center;
}
.auth-outcome article:last-child {
  border-right: 0;
}
.auth-outcome span {
  display: block;
  color: #655e53;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.15em;
}
.auth-outcome b {
  display: block;
  margin-top: 14px;
  color: #d7cfc2;
  font-size: 18px;
}
.auth-final {
  margin-top: 100px;
  text-align: center;
}
.auth-final > span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.22em;
}
.auth-final h3 {
  margin-top: 20px;
  color: #eee7dc;
  font-size: clamp(38px, 5vw, 67px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}
.auth-final h3 em {
  font-style: normal;
  color: var(--gold);
}
.site-disclosure {
  padding: 30px 0;
  background: #060606;
  border-top: 1px solid rgba(200, 169, 107, 0.12);
}
.site-disclosure .shell {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 35px;
}
.site-disclosure b {
  color: #756d60;
  font-size: 7px;
  letter-spacing: 0.16em;
}
.site-disclosure p {
  margin: 0;
  color: #4f4c47;
  font-size: 7px;
  line-height: 1.65;
}
@keyframes auth-scroll {
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 760px) {
  .authorized-intelligence {
    padding: 105px 0;
  }
  .auth-world > span {
    font-size: 86px;
  }
  .auth-power {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .auth-outcome {
    grid-template-columns: 1fr 1fr;
  }
  .auth-outcome article {
    border-bottom: 1px solid rgba(200, 169, 107, 0.12);
  }
  .site-disclosure .shell {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* LIVE HOUSEHOLD EXPERIENCE */
.household-demo {
  padding: 145px 0;
  background: #070707;
  border-bottom: 1px solid rgba(200, 169, 107, 0.14);
}
.demo-head {
  text-align: center;
  max-width: 900px;
}
.demo-head > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.demo-head > div small {
  color: #746c60;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.19em;
}
.demo-head h2 {
  margin: 24px 0 20px;
  color: #eee9df;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.97;
  letter-spacing: -0.06em;
}
.demo-head h2 em {
  font-style: normal;
  color: var(--gold);
}
.demo-head > p {
  max-width: 690px;
  margin: auto;
  color: #87827a;
  font-size: 15px;
  line-height: 1.7;
}
.demo-shell {
  display: grid;
  grid-template-columns: 320px 1fr;
  margin-top: 70px;
  border: 1px solid rgba(200, 169, 107, 0.2);
  background: #090909;
  box-shadow: 0 50px 120px #000;
}
.demo-steps {
  border-right: 1px solid rgba(200, 169, 107, 0.14);
}
.demo-steps button {
  position: relative;
  display: block;
  width: 100%;
  min-height: 102px;
  padding: 22px 20px 20px 62px;
  border: 0;
  border-bottom: 1px solid rgba(200, 169, 107, 0.1);
  background: #090909;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: 0.25s;
}
.demo-steps button:last-child {
  border-bottom: 0;
}
.demo-steps button:hover,
.demo-steps button.active {
  background: linear-gradient(90deg, rgba(200, 169, 107, 0.11), transparent);
}
.demo-steps button.active:after {
  content: "";
  position: absolute;
  right: -1px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  box-shadow: 0 0 16px var(--gold);
}
.demo-steps button > span {
  position: absolute;
  left: 20px;
  top: 23px;
  color: #554c3e;
  font-size: 8px;
}
.demo-steps button.active > span {
  color: var(--gold);
}
.demo-steps b {
  display: block;
  color: #aaa297;
  font-size: 8px;
  letter-spacing: 0.13em;
}
.demo-steps small {
  display: block;
  margin-top: 8px;
  color: #5e5a54;
  font-size: 8px;
  line-height: 1.4;
}
.demo-screen {
  position: relative;
  min-height: 680px;
  padding: 38px 42px 90px;
  background:
    radial-gradient(
      circle at 70% 30%,
      rgba(200, 169, 107, 0.07),
      transparent 37%
    ),
    #0b0b0a;
}
.demo-screen-top {
  display: flex;
  justify-content: space-between;
  color: #746d61;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.16em;
}
.demo-screen-top > span {
  color: var(--gold);
}
.demo-screen-top i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 12px var(--amber);
}
.demo-panel {
  display: none;
  padding-top: 58px;
  animation: demo-in 0.45s ease;
}
.demo-panel.active {
  display: block;
}
.demo-kicker {
  color: var(--gold);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.demo-panel blockquote {
  margin: 45px 0 35px;
  padding: 0;
  border: 0;
  color: #e3ddd2;
  font-size: clamp(28px, 3.5vw, 45px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}
.demo-client {
  padding: 22px;
  border: 1px solid rgba(200, 169, 107, 0.18);
  background: rgba(200, 169, 107, 0.045);
}
.demo-client span {
  display: block;
  color: #736b5e;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.demo-client b {
  display: block;
  margin: 10px 0 5px;
  color: #d2cabd;
  font-size: 14px;
}
.demo-client small {
  color: #625e57;
  font-size: 8px;
}
.demo-panel h3 {
  margin: 25px 0 30px;
  color: #e4ddd2;
  font-size: 37px;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.demo-panel > p {
  margin-top: 28px;
  color: #79746c;
  font-size: 11px;
  line-height: 1.7;
}
.context-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.context-chips span {
  padding: 12px 14px;
  border: 1px solid rgba(200, 169, 107, 0.17);
  color: #817a6e;
  font-size: 8px;
}
.mini-engines {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.mini-engines span {
  padding: 16px;
  border: 1px solid rgba(200, 169, 107, 0.14);
  color: #8c857a;
  font-size: 8px;
  letter-spacing: 0.08em;
}
.mini-engines b {
  margin-right: 9px;
  color: var(--gold);
}
.recommendation-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.recommendation-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 17px 0;
  border-top: 1px solid rgba(200, 169, 107, 0.12);
}
.recommendation-list span {
  color: var(--gold);
  font-size: 7px;
  font-weight: 900;
}
.recommendation-list b {
  color: #aaa298;
  font-size: 10px;
  line-height: 1.5;
}
.meeting-pack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(200, 169, 107, 0.13);
}
.meeting-pack span {
  padding: 18px;
  background: #0c0c0b;
  color: #8b857c;
  font-size: 9px;
}
.action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.action-grid article {
  padding: 18px;
  border: 1px solid rgba(200, 169, 107, 0.15);
}
.action-grid b {
  display: block;
  color: #8b8377;
  font-size: 7px;
  letter-spacing: 0.12em;
}
.action-grid span {
  display: block;
  margin-top: 9px;
  color: var(--gold);
  font-size: 9px;
}
.demo-controls {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(200, 169, 107, 0.12);
}
.demo-controls button {
  border: 0;
  background: none;
  color: #8a8275;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.1em;
  cursor: pointer;
}
.demo-controls button:disabled {
  opacity: 0.3;
  cursor: default;
}
.demo-controls span {
  color: #5b554c;
  font-size: 8px;
}
.demo-controls b {
  color: var(--gold);
}
.demo-close {
  margin-top: 95px;
  text-align: center;
}
.demo-close small {
  color: var(--gold);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.2em;
}
.demo-close h3 {
  margin: 20px 0 30px;
  color: #eee8dd;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}
.demo-close h3 em {
  font-style: normal;
  color: var(--gold);
}
@keyframes demo-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 850px) {
  .demo-shell {
    grid-template-columns: 1fr;
  }
  .demo-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-right: 0;
    border-bottom: 1px solid rgba(200, 169, 107, 0.14);
  }
  .demo-steps button {
    min-height: 88px;
  }
  .demo-steps button.active:after {
    left: 0;
    right: 0;
    top: auto;
    height: 2px;
    width: auto;
  }
  .demo-screen {
    min-height: 700px;
  }
}
@media (max-width: 560px) {
  .household-demo {
    padding: 100px 0;
  }
  .demo-head > div {
    flex-direction: column;
  }
  .demo-head h2 {
    font-size: 47px;
  }
  .demo-shell {
    width: calc(100% - 20px);
  }
  .demo-steps {
    grid-template-columns: 1fr;
  }
  .demo-steps button {
    min-height: 80px;
  }
  .demo-screen {
    padding: 28px 20px 90px;
    min-height: 730px;
  }
  .demo-panel h3 {
    font-size: 30px;
  }
  .meeting-pack,
  .action-grid {
    grid-template-columns: 1fr 1fr;
  }
  .demo-controls {
    left: 20px;
    right: 20px;
  }
  .demo-controls button {
    max-width: 120px;
    line-height: 1.5;
  }
  .recommendation-list li {
    grid-template-columns: 72px 1fr;
  }
}

/* DAILY COMMAND */
.run-day {
  padding: 145px 0;
  background:
    radial-gradient(
      circle at 25% 55%,
      rgba(200, 169, 107, 0.08),
      transparent 35%
    ),
    #0a0908;
}
.run-day-head {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 60px;
}
.run-day-head h2 {
  margin: 18px 0 0;
  color: #eee8de;
  font-size: clamp(46px, 5.5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}
.run-day-head h2 em {
  font-style: normal;
  color: var(--gold);
}
.run-day-head > p {
  color: #817c73;
  font-size: 14px;
  line-height: 1.7;
}
.day-command {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1px;
  margin-top: 65px;
  background: rgba(200, 169, 107, 0.17);
  border: 1px solid rgba(200, 169, 107, 0.17);
}
.day-screen {
  padding: 42px;
  background: linear-gradient(145deg, #12100d, #080808);
}
.day-screen-top {
  display: flex;
  justify-content: space-between;
  color: #756e62;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.17em;
}
.day-screen-top span {
  color: var(--gold);
}
.day-screen-top i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 12px var(--amber);
}
.day-screen h3 {
  margin: 48px 0 35px;
  color: #eee8dc;
  font-size: 39px;
  letter-spacing: -0.05em;
}
.day-priority {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(200, 169, 107, 0.12);
}
.day-priority > span {
  color: var(--gold);
  font-size: 9px;
}
.day-priority b {
  display: block;
  color: #c2baae;
  font-size: 12px;
}
.day-priority small {
  display: block;
  margin-top: 6px;
  color: #645f57;
  font-size: 8px;
}
.day-steps {
  background: #090909;
}
.day-steps article {
  position: relative;
  min-height: 140px;
  padding: 27px 30px 24px 85px;
  border-bottom: 1px solid rgba(200, 169, 107, 0.11);
}
.day-steps article:last-child {
  border-bottom: 0;
}
.day-steps span {
  position: absolute;
  left: 25px;
  top: 29px;
  width: 45px;
  color: #625b50;
  font-size: 7px;
  line-height: 1.3;
}
.day-steps b {
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 0.17em;
}
.day-steps p {
  margin-top: 12px;
  color: #777169;
  font-size: 10px;
  line-height: 1.55;
}
/* ADVISOR TWIN */
.advisor-twin {
  padding: 150px 0;
  background: linear-gradient(180deg, #070707, #0d0b08 55%, #070707);
  border-block: 1px solid rgba(200, 169, 107, 0.12);
}
.twin-head {
  text-align: center;
  max-width: 930px;
}
.twin-head h2 {
  margin: 25px 0 20px;
  color: #eee8dd;
  font-size: clamp(50px, 6.5vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.065em;
}
.twin-head h2 em {
  font-style: normal;
  color: var(--gold);
}
.twin-head p {
  max-width: 680px;
  margin: auto;
  color: #88837a;
  font-size: 15px;
  line-height: 1.7;
}
.twin-stage {
  display: grid;
  grid-template-columns: 1fr 190px 1fr;
  align-items: center;
  margin-top: 75px;
}
.twin-you,
.twin-alfred {
  min-height: 390px;
  padding: 42px;
  border: 1px solid rgba(200, 169, 107, 0.2);
  background: #0b0b0a;
}
.twin-you small,
.twin-alfred small {
  color: var(--gold);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.twin-you b,
.twin-alfred b {
  display: block;
  margin: 55px 0 30px;
  color: #e1dbd0;
  font-size: 24px;
  line-height: 1.1;
}
.twin-you span,
.twin-alfred span {
  display: block;
  padding: 11px 0;
  border-top: 1px solid rgba(200, 169, 107, 0.1);
  color: #777169;
  font-size: 10px;
}
.twin-alfred {
  background: linear-gradient(145deg, rgba(200, 169, 107, 0.1), #0b0b0a);
}
.twin-learning {
  display: flex;
  position: relative;
  z-index: 2;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  height: 260px;
  margin-inline: -15px;
  border-block: 1px solid rgba(200, 169, 107, 0.3);
  background: #100e0a;
  color: #766d5f;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.16em;
}
.twin-learning i {
  display: block;
  width: 1px;
  height: 35px;
  background: linear-gradient(transparent, var(--gold));
}
.twin-learning i:last-child {
  background: linear-gradient(var(--gold), transparent);
}
.learning-loop {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 55px;
  border: 1px solid rgba(200, 169, 107, 0.14);
}
.learning-loop article {
  position: relative;
  min-height: 210px;
  padding: 28px 24px;
  border-right: 1px solid rgba(200, 169, 107, 0.11);
}
.learning-loop article:last-child {
  border-right: 0;
}
.learning-loop span {
  position: absolute;
  right: 18px;
  top: 15px;
  color: #4a4236;
  font-size: 8px;
}
.learning-loop b {
  display: block;
  margin-top: 30px;
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 0.15em;
}
.learning-loop p {
  margin-top: 18px;
  color: #716c64;
  font-size: 10px;
  line-height: 1.6;
}
.twin-promise {
  margin-top: 85px;
  text-align: center;
  max-width: 900px;
}
.twin-promise > small {
  color: var(--gold);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.2em;
}
.twin-promise h3 {
  margin: 22px 0;
  color: #eee8dd;
  font-size: clamp(37px, 5vw, 64px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}
.twin-promise h3 em {
  font-style: normal;
  color: var(--gold);
}
.twin-promise > p {
  max-width: 720px;
  margin: 0 auto 30px;
  color: #77726a;
  font-size: 11px;
  line-height: 1.7;
}
.twin-promise .primary {
  min-width: 330px;
}
@keyframes alfred-scan {
  0%,
  100% {
    top: 3%;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  90% {
    top: 74%;
    opacity: 0;
  }
}
@media (max-width: 900px) {
  .ae-stage {
    grid-template-columns: 1fr 1fr;
  }
  .ae-core {
    grid-column: 1/3;
    grid-row: 1;
    width: 330px;
    justify-self: center;
  }
  .ae-inputs.left {
    text-align: left;
  }
  .run-day-head,
  .day-command {
    grid-template-columns: 1fr;
  }
  .twin-stage {
    grid-template-columns: 1fr;
  }
  .twin-learning {
    height: 150px;
    margin: 0;
  }
  .learning-loop {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .alfred-everything,
  .run-day,
  .advisor-twin {
    padding: 100px 0;
  }
  .ae-head h2,
  .run-day-head h2,
  .twin-head h2 {
    font-size: 48px;
  }
  .ae-stage {
    grid-template-columns: 1fr;
  }
  .ae-core {
    grid-column: 1;
    width: 100%;
  }
  .ae-inputs.left {
    text-align: left;
  }
  .day-screen {
    padding: 30px 22px;
  }
  .day-screen h3 {
    font-size: 34px;
  }
  .twin-you,
  .twin-alfred {
    padding: 30px 24px;
    min-height: auto;
  }
  .learning-loop {
    grid-template-columns: 1fr;
  }
  .learning-loop article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(200, 169, 107, 0.1);
  }
  .twin-promise .primary {
    min-width: 0;
    width: 100%;
  }
}

/* ADVISOR INTELLIGENCE EXPERIENCE */
.advisor-diagnostic {
  position: relative;
  padding: 140px 0;
  background:
    radial-gradient(
      circle at 78% 58%,
      rgba(200, 169, 107, 0.1),
      transparent 32%
    ),
    #070707;
  border-bottom: 1px solid rgba(200, 169, 107, 0.13);
}
.diagnostic-head {
  text-align: center;
  max-width: 850px;
}
.diagnostic-head > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.diagnostic-head > div small {
  color: #71695d;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.diagnostic-head h2 {
  margin: 25px 0 20px;
  color: #eee9df;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}
.diagnostic-head h2 em {
  font-style: normal;
  color: var(--gold);
}
.diagnostic-head > p {
  max-width: 620px;
  margin: auto;
  color: #8c877f;
  font-size: 16px;
  line-height: 1.7;
}
.diagnostic-shell {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  margin-top: 65px;
  border: 1px solid rgba(200, 169, 107, 0.18);
  background: #0a0a09;
  box-shadow: 0 45px 120px #000;
}
.diagnostic-form {
  padding: 38px 40px;
  border-right: 1px solid rgba(200, 169, 107, 0.13);
}
.diag-progress {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 35px;
  color: #6e675c;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.15em;
}
.diag-progress i {
  height: 1px;
  background: #30291f;
}
.diag-progress i b {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.diagnostic-form label {
  display: block;
  margin-bottom: 25px;
}
.diagnostic-form label > span {
  display: block;
  margin-bottom: 10px;
  color: #cfc8bc;
  font-size: 11px;
  font-weight: 750;
}
.diagnostic-form select,
.diagnostic-form input {
  width: 100%;
  height: 51px;
  padding: 0 15px;
  border: 1px solid rgba(200, 169, 107, 0.17);
  border-radius: 0;
  background: #0e0e0d;
  color: #aaa49a;
  font: inherit;
  font-size: 12px;
  outline: none;
}
.diagnostic-form select:focus,
.diagnostic-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(200, 169, 107, 0.07);
}
.diagnostic-form label > small {
  display: block;
  margin-top: 6px;
  color: #55514b;
  font-size: 8px;
}
.diagnostic-form > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #080706;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.1em;
  cursor: pointer;
}
.diagnostic-form > button span {
  font-size: 18px;
}
.diag-disclaimer {
  display: block;
  margin-top: 13px;
  color: #524f49;
  font-size: 8px;
  line-height: 1.5;
  text-align: center;
}
.diagnostic-result {
  position: relative;
  min-height: 620px;
  padding: 45px;
  display: flex;
  align-items: center;
  background: linear-gradient(
    145deg,
    rgba(200, 169, 107, 0.045),
    transparent 50%
  );
}
.result-waiting {
  text-align: center;
  margin: auto;
  max-width: 360px;
}
.result-waiting img {
  width: 90px;
  filter: drop-shadow(0 0 25px rgba(200, 169, 107, 0.2));
}
.result-waiting span {
  display: block;
  margin: 24px 0 13px;
  color: var(--gold);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.2em;
}
.result-waiting h3 {
  color: #ded8cd;
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}
.result-waiting p {
  margin-top: 13px;
  color: #69655e;
  font-size: 11px;
  line-height: 1.6;
}
.result-ready {
  width: 100%;
}
.result-ready[hidden],
.result-waiting[hidden] {
  display: none;
}
.result-top {
  display: flex;
  justify-content: space-between;
  color: #777064;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.15em;
}
.result-top span {
  color: var(--gold);
}
.result-top i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 12px var(--amber);
}
.result-ready > h3 {
  margin: 30px 0 13px;
  color: #eee8dc;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.045em;
}
.result-ready > p {
  color: #817c73;
  font-size: 12px;
  line-height: 1.65;
}
.result-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 28px 0;
  background: rgba(200, 169, 107, 0.15);
}
.result-metrics div {
  padding: 20px;
  background: #0b0b0a;
}
.result-metrics small {
  display: block;
  color: #625c52;
  font-size: 6px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.result-metrics b {
  display: block;
  margin: 8px 0 2px;
  color: var(--gold);
  font-size: 34px;
  line-height: 1;
}
.result-metrics span {
  color: #646059;
  font-size: 8px;
}
.alfred-action {
  padding: 20px;
  border-left: 2px solid var(--gold);
  background: rgba(200, 169, 107, 0.06);
}
.alfred-action span {
  display: block;
  margin-bottom: 9px;
  color: var(--gold);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.16em;
}
.alfred-action b {
  color: #bbb3a6;
  font-size: 11px;
  line-height: 1.55;
}
.result-note {
  margin: 17px 0 !important;
  color: #524f49 !important;
  font-size: 7px !important;
}
.result-ready .primary {
  width: 100%;
}
.diag-reset {
  display: block;
  margin: 14px auto 0;
  border: 0;
  background: none;
  color: #655f56;
  font-size: 8px;
  text-decoration: underline;
  cursor: pointer;
}
@media (max-width: 850px) {
  .advisor-diagnostic {
    padding: 95px 0;
  }
  .diagnostic-shell {
    grid-template-columns: 1fr;
  }
  .diagnostic-form {
    border-right: 0;
    border-bottom: 1px solid rgba(200, 169, 107, 0.13);
  }
  .diagnostic-result {
    min-height: 540px;
  }
}
@media (max-width: 540px) {
  .diagnostic-head > div {
    flex-direction: column;
  }
  .diagnostic-head h2 {
    font-size: 48px;
  }
  .diagnostic-form,
  .diagnostic-result {
    padding: 27px 20px;
  }
  .result-metrics {
    grid-template-columns: 1fr;
  }
  .result-ready > h3 {
    font-size: 29px;
  }
}
