:root {
  --bg: #06101d;
  --bg2: #091522;
  --panel: #0c1726;
  --panel2: #101c2d;
  --text: #f7f8fb;
  --muted: #a4aec0;
  --line: rgba(255, 255, 255, 0.1);
  --gold: #d9aa4a;
  --gold2: #f1cf78;
  --green: #74d49f;
  --purple: #8f6dff;
  --blue: #58a6ff;
  --max: 1120px;
  --r: 18px;
  --shadow: 0 20px 55px rgba(0, 0, 0, 0.32);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background:
    radial-gradient(
      circle at 76% 4%,
      rgba(217, 170, 74, 0.07),
      transparent 24%
    ),
    linear-gradient(180deg, #06101d, #07111f 55%, #06101d);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  cursor: pointer;
}
img,
svg {
  display: block;
  max-width: 100%;
}
.wrap {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}
.section {
  padding: 18px 0;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 62px;
  background: rgba(6, 16, 29, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav {
  height: 62px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
}
.brand-name {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.05;
}
.brand-name small {
  display: block;
  color: var(--muted);
  font-size: 0.61rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-top: 3px;
}
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #dde5f1;
}
.nav-links a:hover {
  color: #fff;
}
.top-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  font-weight: 800;
  border: 1px solid rgba(217, 170, 74, 0.55);
  transition:
    0.2s transform,
    0.2s box-shadow,
    0.2s background;
}
.top-cta {
  padding: 11px 19px;
  border-radius: 999px;
  font-size: 0.8rem;
}
.top-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(217, 170, 74, 0.12);
}
.menu {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: #fff;
}
.hero {
  padding: 28px 0 16px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}
.hero-copy {
  padding: 10px 0;
}
.hero h1 {
  font-size: clamp(2.7rem, 5vw, 4.55rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
  margin: 0;
  max-width: 11ch;
}
.hero-lead {
  color: var(--muted);
  font-size: 1rem;
  max-width: 36ch;
  margin: 16px 0 0;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.btn {
  padding: 13px 18px;
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.015);
  color: #fff;
}
.btn.primary {
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  color: #08101b;
  border-color: transparent;
}
.hero-visual {
  height: 260px;
  border-radius: 20px;
  background: linear-gradient(160deg, #091322, #0b1424);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.06);
  animation: floatK 5.5s ease-in-out infinite;
}
@keyframes floatK {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.vision {
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(13, 24, 40, 0.94),
    rgba(10, 20, 34, 0.94)
  );
  border-radius: 18px;
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  overflow: hidden;
}
.vision > div {
  padding: 20px 22px;
  min-height: 128px;
}
.vision > div + div {
  border-left: 1px solid var(--line);
}
.vision-main {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
}
.vision-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(217, 170, 74, 0.52);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1.25rem;
}
.vision h2 {
  font-size: 1.35rem;
  margin: 0 0 6px;
}
.vision h3 {
  font-size: 0.92rem;
  margin: 0 0 6px;
}
.vision p {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
}
.pillar-icon {
  width: 34px;
  height: 34px;
  color: var(--gold);
  margin-bottom: 7px;
}
.section-title {
  font-size: 1.7rem;
  line-height: 1;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.venture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.venture-grid.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.venture {
  position: relative;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(12, 23, 38, 0.95),
    rgba(8, 17, 29, 0.96)
  );
  min-height: 160px;
  transition:
    0.2s transform,
    0.2s border-color,
    0.2s box-shadow;
}
.venture:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 170, 74, 0.35);
  box-shadow: var(--shadow);
}
.venture.featured {
  border-color: rgba(217, 170, 74, 0.5);
  background: linear-gradient(
    150deg,
    rgba(59, 45, 21, 0.34),
    rgba(11, 20, 34, 0.98) 46%
  );
}
.venture-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.venture-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.02);
}
.venture-icon svg {
  width: 23px;
  height: 23px;
}
.purple {
  color: var(--purple);
}
.green {
  color: var(--green);
}
.gold {
  color: var(--gold);
}
.venture h3 {
  font-size: 1.05rem;
  margin: 0;
}
.venture-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gold);
  margin: 7px 0 0;
}
.venture p {
  font-size: 0.76rem;
  color: var(--muted);
  margin: 8px 0 0;
}
.venture-link {
  display: inline-flex;
  margin-top: 10px;
  color: #f0cd7a;
  font-size: 0.74rem;
  font-weight: 800;
}
.live-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 1px solid rgba(217, 170, 74, 0.5);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: #f0cd7a;
  font-weight: 900;
}
.product {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #08111f;
  box-shadow: var(--shadow);
}
.product-main {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 260px;
}
.product-copy {
  padding: 22px 26px;
  position: relative;
  z-index: 2;
}
.eyebrow {
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--gold);
  margin: 0 0 5px;
}
.product h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  line-height: 1.05;
  margin: 0 0 8px;
  font-weight: 500;
}
.product-desc {
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 42ch;
  margin: 0;
}
.chips {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 13px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid rgba(217, 170, 74, 0.22);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.015);
  font-size: 0.68rem;
  font-weight: 700;
}
.chip svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}
.buy {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.buy .btn {
  padding: 11px 22px;
  min-width: 165px;
}
.pool-image {
  background-image:
    linear-gradient(
      90deg,
      #08111f 0%,
      rgba(8, 17, 31, 0.2) 21%,
      rgba(8, 17, 31, 0.03) 70%
    ),
    url("pool-toolkit-v12.webp");
  background-size: cover;
  background-position: 54% center;
  position: relative;
}
.pool-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.13));
}
.free-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px 24px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}
.free-row strong {
  font-size: 0.86rem;
}
.free-row p {
  font-size: 0.7rem;
  color: var(--muted);
  margin: 2px 0 0;
}
.pending {
  opacity: 0.72;
  cursor: help;
}
.development {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.dev-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: linear-gradient(
    180deg,
    rgba(11, 21, 35, 0.96),
    rgba(8, 16, 28, 0.98)
  );
}
.dev-left {
  display: flex;
  align-items: center;
  gap: 13px;
}
.dev-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(88, 166, 255, 0.45);
  display: grid;
  place-items: center;
  color: var(--blue);
  background: rgba(88, 166, 255, 0.06);
}
.dev-card h3 {
  font-size: 0.86rem;
  margin: 0;
}
.dev-card p {
  font-size: 0.68rem;
  color: var(--muted);
  margin: 3px 0 0;
}
.coming {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.65rem;
  color: var(--muted);
  white-space: nowrap;
}
.aurel {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(10, 19, 33, 0.98),
    rgba(8, 16, 28, 0.98)
  );
  padding: 18px 22px;
  box-shadow: var(--shadow);
}
.aurel h2 {
  font-size: 2rem;
  margin: 0 0 8px;
}
.aurel p {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
  max-width: 36ch;
}
.aurel .btn {
  margin-top: 15px;
  padding: 10px 16px;
}
.aurel-shot {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: #08111f;
}
.aurel-shot img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  object-position: center;
}
.footer {
  border-top: 1px solid var(--line);
  padding: 18px 0 22px;
  margin-top: 18px;
}
.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}
.footer-copy {
  color: var(--muted);
  font-size: 0.72rem;
  max-width: 46ch;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.64rem;
  margin-top: 15px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.footer-links {
  display: flex;
  gap: 18px;
}
.chat-toggle {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  border: 1px solid rgba(217, 170, 74, 0.5);
  background: #111c2d;
  color: #fff;
  border-radius: 999px;
  padding: 11px 15px;
  font-weight: 800;
  box-shadow: var(--shadow);
}
.chat {
  position: fixed;
  right: 20px;
  bottom: 72px;
  z-index: 75;
  width: min(360px, calc(100vw - 24px));
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #111d30, #091421);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: none;
}
.chat.open {
  display: block;
  animation: chatIn 0.18s ease-out;
}
@keyframes chatIn {
  from {
    transform: translateY(8px);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  border-bottom: 1px solid var(--line);
}
.chat-close {
  border: 0;
  background: none;
  color: #fff;
  font-size: 1.25rem;
}
.chat-body {
  padding: 14px;
  display: grid;
  gap: 10px;
  max-height: 330px;
  overflow: auto;
}
.bubble {
  padding: 10px 12px;
  border-radius: 13px;
  font-size: 0.78rem;
  max-width: 92%;
}
.bubble.bot {
  background: #14223a;
}
.bubble.user {
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  color: #08111f;
  margin-left: auto;
}
.quick-row {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.quick {
  border: 1px solid rgba(217, 170, 74, 0.35);
  background: transparent;
  color: #fff;
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 0.7rem;
}
.chat-form {
  padding: 12px 14px 14px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 9px;
}
.chat-form textarea {
  min-height: 68px;
  resize: vertical;
  border-radius: 11px;
  border: 1px solid var(--line);
  background: #08111f;
  color: #fff;
  padding: 10px;
}
.chat-send {
  justify-self: end;
  border: 0;
  border-radius: 10px;
  padding: 9px 14px;
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  font-weight: 800;
  color: #08111f;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%) translateY(14px);
  padding: 11px 15px;
  border-radius: 12px;
  background: #111d30;
  border: 1px solid rgba(217, 170, 74, 0.4);
  color: #fff;
  font-size: 0.76rem;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
  z-index: 100;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 920px) {
  .nav-links {
    position: fixed;
    top: 68px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: #0b1727;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }
  .nav-links.open {
    display: flex;
  }
  .menu {
    display: grid;
    place-items: center;
  }
  .top-cta {
    display: none;
  }
  .hero-grid,
  .product-main,
  .aurel {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    height: 240px;
  }
  .vision {
    grid-template-columns: 1fr 1fr;
  }
  .vision > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .vision > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }
  .venture-grid {
    grid-template-columns: 1fr;
  }
  .pool-image {
    min-height: 260px;
    order: -1;
    background-position: center 44%;
  }
  .development {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr auto;
  }
  .footer-copy {
    grid-column: 1/-1;
  }
}
@media (max-width: 620px) {
  .wrap {
    width: min(calc(100% - 22px), var(--max));
  }
  .hero h1 {
    font-size: 2.55rem;
  }
  .vision {
    grid-template-columns: 1fr;
  }
  .vision > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .free-row,
  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }
  .footer-bottom {
    gap: 10px;
  }
  .aurel-shot img {
    height: 130px;
  }
  .buy .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

.page-hero {
  padding: 56px 0 30px;
}
.page-hero .eyebrow {
  margin-bottom: 10px;
}
.page-hero h1 {
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 0;
  max-width: 13ch;
}
.page-hero .lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 62ch;
  margin-top: 18px;
}
.content-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(12, 23, 38, 0.95),
    rgba(8, 17, 29, 0.97)
  );
  padding: 28px;
  box-shadow: var(--shadow);
}
.content-card h2 {
  margin: 0 0 12px;
  font-size: 1.8rem;
}
.content-card h3 {
  margin: 24px 0 8px;
}
.content-card p,
.content-card li {
  color: var(--muted);
}
.content-card ul {
  padding-left: 20px;
}
.page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.page-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.detail-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
.detail-card .btn {
  margin-top: auto;
  align-self: flex-start;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
}
.form {
  display: grid;
  gap: 14px;
}
.field {
  display: grid;
  gap: 7px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #081321;
  color: var(--text);
  padding: 12px 13px;
}
.field textarea {
  min-height: 150px;
  resize: vertical;
}
.product-page-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}
.product-page-image {
  border-radius: 18px;
  min-height: 420px;
  background: url("pool-toolkit-v12.webp") center/cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.back-link {
  display: inline-flex;
  color: #f0cd7a;
  font-weight: 800;
  font-size: 0.82rem;
  margin-bottom: 18px;
}
.active {
  color: var(--gold2) !important;
}
.legal-note {
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  background: rgba(217, 170, 74, 0.06);
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.82rem;
}
@media (max-width: 850px) {
  .page-grid,
  .page-grid-3,
  .contact-grid,
  .product-page-grid {
    grid-template-columns: 1fr;
  }
  .product-page-image {
    min-height: 300px;
  }
}

.chat-disclosure {
  font-size: 0.66rem;
  color: var(--muted);
  padding: 0 14px 10px;
}
.chat-human {
  display: flex;
  justify-content: center;
  padding: 0 14px 14px;
}
.chat-human .btn {
  width: 100%;
  padding: 10px 13px;
  font-size: 0.72rem;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pool-image {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  background: #09111f;
}
.pool-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pool-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #08111f 0%,
    rgba(8, 17, 31, 0.18) 22%,
    rgba(8, 17, 31, 0.02) 70%
  );
  pointer-events: none;
}
.product-page-image {
  overflow: hidden;
  background: #09111f;
}
.product-page-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Final maintainable version additions */
.about-definition {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.definition-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(12, 23, 38, 0.95),
    rgba(8, 17, 29, 0.97)
  );
  padding: 28px;
  box-shadow: var(--shadow);
}
.definition-word {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  color: var(--gold2);
  line-height: 1;
  margin-bottom: 14px;
}
.architecture-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}
.architecture-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.018);
}
.architecture-item strong {
  color: var(--gold2);
}
.truth-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}
.truth-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}
.truth-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
}
.chat-contact-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 14px 10px;
}
.chat-contact-fields input {
  min-width: 0;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #081321;
  color: var(--text);
  padding: 9px 10px;
  font-size: 0.75rem;
}
.chat-status {
  font-size: 0.68rem;
  color: var(--muted);
  padding: 0 14px 10px;
}
.chat-status.online {
  color: var(--green);
}
.chat-status.error {
  color: #f6ae7b;
}
.contact-result {
  min-height: 1.4em;
  font-size: 0.82rem;
  color: var(--muted);
}
.contact-result.success {
  color: var(--green);
}
.contact-result.error {
  color: #f6ae7b;
}
@media (max-width: 850px) {
  .about-definition {
    grid-template-columns: 1fr;
  }
  .architecture-item {
    grid-template-columns: 1fr;
  }
  .chat-contact-fields {
    grid-template-columns: 1fr;
  }
}

/* v2 premium identity, animated hero and embedded portfolio */
.brand-mark {
  width: 40px;
  height: 40px;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-name {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.brand-name small {
  letter-spacing: 0.18em;
}
.site-header {
  height: 70px;
}
.nav {
  height: 70px;
}
.hero {
  padding: 44px 0 24px;
  min-height: 540px;
  display: grid;
  align-items: center;
}
.hero-grid {
  grid-template-columns: 1fr 1.2fr;
  gap: 38px;
}
.hero-copy {
  position: relative;
  z-index: 3;
}
.hero-eyebrow {
  margin: 0 0 16px;
  color: var(--gold2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.22em;
}
.hero-copy > * {
  opacity: 0;
  transform: translateY(18px);
  animation: heroTextIn 0.85s cubic-bezier(0.22, 0.8, 0.25, 1) forwards;
}
.hero-copy .hero-eyebrow {
  animation-delay: 0.05s;
}
.hero-copy h1 {
  animation-delay: 0.15s;
}
.hero-copy .hero-lead {
  animation-delay: 0.28s;
}
.hero-copy .hero-actions {
  animation-delay: 0.4s;
}
.hero-copy.hero-copy-pulse h1 {
  animation: heroPulse 0.7s ease;
}
.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  max-width: 10.5ch;
}
.hero-carousel {
  position: relative;
  height: 390px;
  border: 1px solid rgba(217, 170, 74, 0.28);
  border-radius: 24px;
  overflow: hidden;
  background: #081321;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}
.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 1.1s ease,
    transform 6.8s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-glow {
  position: absolute;
  inset: auto 8% 0 8%;
  height: 28%;
  background: radial-gradient(
    ellipse,
    rgba(217, 170, 74, 0.2),
    transparent 70%
  );
  filter: blur(18px);
  pointer-events: none;
}
.hero-dots {
  position: absolute;
  right: 20px;
  bottom: 18px;
  display: flex;
  gap: 8px;
  z-index: 4;
}
.hero-dot {
  width: 28px;
  height: 3px;
  border: 0;
  background: rgba(255, 255, 255, 0.3);
  padding: 0;
  border-radius: 99px;
  transition: 0.25s;
}
.hero-dot.active {
  background: var(--gold2);
  width: 46px;
}
.hero-carousel:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 9, 16, 0.2), transparent 45%),
    linear-gradient(0deg, rgba(3, 9, 16, 0.22), transparent 40%);
  pointer-events: none;
}
@keyframes heroTextIn {
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes heroPulse {
  0% {
    transform: none;
  }
  40% {
    transform: translateY(-4px);
  }
  100% {
    transform: none;
  }
}
.venture {
  overflow: hidden;
}
.card-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
}
.venture > *:not(.card-cover) {
  position: relative;
  z-index: 2;
}
.venture-link {
  pointer-events: none;
}
.venture:hover .venture-link {
  transform: translateX(4px);
}
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 70px;
  min-height: 360px;
  display: grid;
  align-items: end;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}
.page-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      #06101d 0%,
      rgba(6, 16, 29, 0.82) 42%,
      rgba(6, 16, 29, 0.25) 100%
    ),
    linear-gradient(0deg, #06101d 0%, transparent 55%);
}
.page-hero-art {
  position: absolute;
  inset: -12%;
  z-index: -2;
  background-size: cover;
  background-position: center;
  animation: pageHeroDrift 16s ease-in-out infinite alternate;
  filter: saturate(0.9);
}
body[data-page="vision"] .page-hero-art {
  background-image: url("vision-hero-v12.webp");
}
body[data-page="about"] .page-hero-art {
  background-image: url("about-hero-v12.webp");
}
body[data-page="ventures"] .page-hero-art {
  background-image: url("ventures-hero-v12.webp");
}
body[data-page="products"] .page-hero-art {
  background-image: url("products-hero-v12.webp");
}
body[data-page="contact"] .page-hero-art {
  background-image: url("contact-hero-v12.webp");
}
body[data-page="privacy"] .page-hero-art,
body[data-page="terms"] .page-hero-art {
  background-image: url("home-hero-v12.webp");
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}
@keyframes pageHeroDrift {
  from {
    transform: scale(1.02) translate3d(-1%, 0, 0);
  }
  to {
    transform: scale(1.09) translate3d(2%, -1%, 0);
  }
}
.architecture-item {
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  transition:
    0.22s transform,
    0.22s border-color,
    0.22s background;
}
.architecture-item:hover {
  transform: translateX(4px);
  border-color: rgba(217, 170, 74, 0.45);
  background: rgba(217, 170, 74, 0.045);
}
.architecture-item b {
  font-size: 1.2rem;
  color: var(--gold2);
}
.aurel-detail-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
}
.embedded-preview {
  min-height: 600px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #05090d;
  box-shadow: var(--shadow);
}
.embedded-preview iframe {
  width: 100%;
  height: 100%;
  min-height: 600px;
  border: 0;
  background: #05090d;
}
.aurel-shot {
  transition:
    0.3s transform,
    0.3s border-color;
}
.aurel-shot:hover {
  transform: translateY(-3px);
  border-color: rgba(217, 170, 74, 0.5);
}
@media (max-width: 920px) {
  .site-header,
  .nav {
    height: 64px;
  }
  .hero {
    min-height: auto;
    padding-top: 28px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-carousel {
    height: 320px;
  }
  .page-hero {
    padding: 76px 0 54px;
    min-height: 320px;
  }
  .aurel-detail-grid {
    grid-template-columns: 1fr;
  }
  .embedded-preview,
  .embedded-preview iframe {
    min-height: 520px;
  }
}
@media (max-width: 620px) {
  .brand-mark {
    width: 34px;
    height: 34px;
  }
  .brand-name {
    font-size: 0.82rem;
  }
  .hero-carousel {
    height: 260px;
  }
  .page-hero {
    min-height: 280px;
  }
  .page-hero h1 {
    font-size: 2.6rem;
  }
  .architecture-item {
    grid-template-columns: 1fr auto;
  }
  .architecture-item span {
    grid-column: 1/-1;
  }
  .embedded-preview,
  .embedded-preview iframe {
    min-height: 460px;
  }
}

/* v3 approved identity and meaningful visual system */
.brand {
  min-width: 0;
}
.brand-lockup {
  display: block;
  width: 178px;
  height: auto;
  object-fit: contain;
}
.footer .brand-lockup {
  width: 220px;
}
.nav {
  grid-template-columns: 190px 1fr auto;
}
.nav-links {
  gap: 20px;
  font-size: 0.78rem;
}
.hero {
  min-height: 590px;
}
.hero-carousel {
  height: 430px;
}
.hero-slide img {
  filter: saturate(0.98) contrast(1.03);
}
.hero-slide:nth-child(2) img,
.hero-slide:nth-child(3) img {
  object-position: center;
}
.hero-carousel:after {
  background:
    linear-gradient(90deg, rgba(3, 9, 16, 0.12), transparent 38%),
    linear-gradient(0deg, rgba(3, 9, 16, 0.3), transparent 45%);
}
body[data-page="vision"] .page-hero-art {
  background-image: url("vision-hero-v12.webp");
}
body[data-page="ventures"] .page-hero-art {
  background-image: url("ventures-hero-v12.webp");
}
body[data-page="about"] .page-hero-art {
  background-image: url("about-hero-v12.webp");
}
body[data-page="products"] .page-hero-art {
  background-image: url("products-hero-v12.webp");
}
body[data-page="contact"] .page-hero-art {
  background-image: url("contact-hero-v12.webp");
}
body[data-page="privacy"] .page-hero-art,
body[data-page="terms"] .page-hero-art {
  background-image: url("home-hero-v12.webp");
}
.page-hero-art {
  background-position: center 44%;
  filter: saturate(1.02) contrast(1.04);
}
.page-hero:after {
  background:
    linear-gradient(
      90deg,
      #06101d 0%,
      rgba(6, 16, 29, 0.9) 40%,
      rgba(6, 16, 29, 0.18) 100%
    ),
    linear-gradient(
      0deg,
      #06101d 0%,
      rgba(6, 16, 29, 0.08) 58%,
      rgba(6, 16, 29, 0.12)
    );
}
.aurel-exact-preview {
  position: relative;
  display: block;
  min-height: 420px;
}
.aurel-exact-preview img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}
.aurel-exact-preview > .aurel-preview-label {
  position: absolute;
  left: 22px;
  bottom: 20px;
  padding: 11px 16px;
  border: 1px solid rgba(217, 170, 74, 0.65);
  border-radius: 999px;
  background: rgba(6, 16, 29, 0.84);
  backdrop-filter: blur(10px);
  color: #f1cf78;
  font-weight: 800;
  font-size: 0.8rem;
}
.aurel-exact-preview img {
  transition: none;
}
@media (max-width: 1050px) {
  .nav {
    grid-template-columns: 165px 1fr auto;
  }
  .brand-lockup {
    width: 158px;
  }
  .nav-links {
    gap: 14px;
    font-size: 0.72rem;
  }
  .top-cta {
    padding: 10px 14px;
  }
}
@media (max-width: 850px) {
  .nav {
    display: grid;
    grid-template-columns: 1fr auto;
  }
  .brand-lockup {
    width: 170px;
  }
  .footer .brand-lockup {
    width: 190px;
  }
  .hero {
    min-height: auto;
  }
  .hero-carousel {
    height: 350px;
  }
}
@media (max-width: 620px) {
  .brand-lockup {
    width: 145px;
  }
  .footer .brand-lockup {
    width: 170px;
  }
  .hero-carousel {
    height: 285px;
  }
  .page-hero-art {
    background-position: 62% center;
  }
  .aurel-exact-preview,
  .aurel-exact-preview img {
    min-height: 300px;
  }
}

/* v7 — precise improvements on the approved v5 foundation */
.home-showcase {
  position: relative;
  isolation: isolate;
  min-height: 650px;
  padding: 0;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #06101d;
}
.home-showcase-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  z-index: -3;
  opacity: 0;
  transform: scale(1.055);
  transition:
    opacity 1.15s ease,
    transform 8s cubic-bezier(0.2, 0.65, 0.2, 1);
}
.home-showcase-slide.active {
  opacity: 1;
  transform: scale(1);
}
.home-showcase-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.04);
}
.home-showcase-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(4, 11, 20, 0.96) 0%,
      rgba(4, 11, 20, 0.83) 42%,
      rgba(4, 11, 20, 0.22) 76%,
      rgba(4, 11, 20, 0.3) 100%
    ),
    linear-gradient(
      0deg,
      #06101d 0%,
      rgba(6, 16, 29, 0.12) 40%,
      rgba(6, 16, 29, 0.18) 100%
    );
}
.home-showcase-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(217, 170, 74, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 170, 74, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 74%);
  animation: showcaseGrid 22s linear infinite;
}
.home-showcase:after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 8%;
  top: 14%;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(217, 170, 74, 0.17);
  border-radius: 50%;
  box-shadow:
    0 0 0 48px rgba(217, 170, 74, 0.025),
    0 0 0 96px rgba(217, 170, 74, 0.018);
  animation: showcaseOrbit 10s ease-in-out infinite;
}
.home-showcase-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 650px;
  padding-top: 62px;
  padding-bottom: 52px;
}
.home-showcase-copy {
  position: relative;
  max-width: 760px;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.home-showcase-copy-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(22px);
  transition:
    opacity 0.62s ease,
    transform 0.62s cubic-bezier(0.22, 0.8, 0.25, 1),
    visibility 0.62s;
}
.home-showcase-copy-panel.active {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.home-showcase .hero-eyebrow {
  margin: 0 0 18px;
  color: var(--gold2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.23em;
}
.home-showcase h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 6.4vw, 6.3rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.052em;
  max-width: 12ch;
  margin: 0;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
}
.home-showcase .hero-lead {
  font-size: 1.03rem;
  line-height: 1.65;
  max-width: 54ch;
  color: #c4ccda;
  margin: 20px 0 0;
}
.home-showcase-statement {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 0;
  color: #f1cf78;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.home-showcase-statement:before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}
.home-showcase .hero-actions {
  position: relative;
  z-index: 4;
  margin-top: auto;
  padding-top: 26px;
}
.home-showcase .hero-actions .btn {
  backdrop-filter: blur(12px);
  background: rgba(6, 16, 29, 0.42);
}
.home-showcase .hero-actions .btn.primary {
  background: linear-gradient(180deg, var(--gold2), var(--gold));
}
.home-showcase-controls {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.67rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.home-showcase-controls > div {
  display: flex;
  align-items: center;
  gap: 9px;
}
.home-showcase-dot,
.enhanced-dot {
  width: 32px;
  height: 3px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.3);
  padding: 0;
  transition: 0.3s ease;
}
.home-showcase-dot.active,
.enhanced-dot.active {
  width: 54px;
  background: var(--gold2);
  box-shadow: 0 0 18px rgba(217, 170, 74, 0.38);
}

.enhanced-hero {
  position: relative;
  isolation: isolate;
  min-height: 480px;
  padding: 82px 0 64px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.enhanced-hero:after {
  display: none;
}
.enhanced-hero-slide {
  position: absolute;
  inset: -4%;
  z-index: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.06);
  transition:
    opacity 1.05s ease,
    transform 8s cubic-bezier(0.2, 0.65, 0.2, 1);
}
.enhanced-hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.enhanced-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  filter: saturate(1.02) contrast(1.05);
}
.enhanced-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      #06101d 0%,
      rgba(6, 16, 29, 0.92) 36%,
      rgba(6, 16, 29, 0.5) 66%,
      rgba(6, 16, 29, 0.28) 100%
    ),
    linear-gradient(
      0deg,
      #06101d 0%,
      rgba(6, 16, 29, 0.15) 48%,
      rgba(6, 16, 29, 0.18) 100%
    );
}
.enhanced-hero-orbit {
  position: absolute;
  z-index: 2;
  right: 7%;
  top: 12%;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(217, 170, 74, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 40px rgba(217, 170, 74, 0.025),
    0 0 0 80px rgba(217, 170, 74, 0.016);
  animation: showcaseOrbit 9s ease-in-out infinite;
}
.enhanced-hero-content {
  position: relative;
  z-index: 3;
}
.enhanced-hero .back-link {
  margin-bottom: 20px;
}
.enhanced-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6.1vw, 5.8rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.047em;
  max-width: 13ch;
  margin: 0;
  text-shadow: 0 14px 42px rgba(0, 0, 0, 0.52);
  animation: enhancedTitleIn 0.75s cubic-bezier(0.22, 0.8, 0.25, 1) both;
}
.enhanced-hero .lead {
  font-size: 1.02rem;
  line-height: 1.65;
  color: #c3cbd8;
  max-width: 66ch;
  margin: 18px 0 0;
  animation: enhancedLeadIn 0.8s 0.12s cubic-bezier(0.22, 0.8, 0.25, 1) both;
}
.enhanced-message-stage {
  position: relative;
  min-height: 34px;
  margin-top: 21px;
  max-width: 690px;
}
.enhanced-message {
  position: absolute;
  inset: 0 auto auto 0;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--gold2);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.48s ease;
}
.enhanced-message:before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.enhanced-message.active {
  opacity: 1;
  transform: none;
}
.enhanced-hero-dots {
  display: flex;
  gap: 9px;
  margin-top: 22px;
}
.enhanced-hero[data-showcase-carousel]:before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.32;
  animation: heroLine 5s linear infinite;
}

@keyframes showcaseGrid {
  to {
    background-position: 72px 72px;
  }
}
@keyframes showcaseOrbit {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.72;
  }
  50% {
    transform: translateY(-12px) rotate(5deg);
    opacity: 1;
  }
}
@keyframes enhancedTitleIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes enhancedLeadIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes heroLine {
  0% {
    transform: translateX(-35%);
  }
  100% {
    transform: translateX(35%);
  }
}

.vision-direction,
.about-method {
  overflow: hidden;
  position: relative;
}
.vision-direction:after,
.about-method:after {
  content: "";
  position: absolute;
  right: -80px;
  top: -100px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(217, 170, 74, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(217, 170, 74, 0.02);
}
.direction-steps,
.method-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 15px;
  overflow: hidden;
}
.direction-steps > div,
.method-grid > div {
  padding: 20px;
  min-height: 180px;
  background: rgba(255, 255, 255, 0.012);
}
.direction-steps > div + div,
.method-grid > div + div {
  border-left: 1px solid var(--line);
}
.direction-steps span,
.method-grid span {
  color: var(--gold);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  font-weight: 900;
}
.direction-steps h3,
.method-grid h3 {
  margin: 12px 0 7px;
  font-size: 1rem;
}
.direction-steps p,
.method-grid p {
  font-size: 0.75rem;
  margin: 0;
}
.numbered-flow {
  counter-reset: flow;
  display: grid;
  gap: 10px;
  list-style: none;
  padding: 0 !important;
}
.numbered-flow li {
  counter-increment: flow;
  position: relative;
  padding: 12px 12px 12px 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.015);
}
.numbered-flow li:before {
  content: counter(flow, decimal-leading-zero);
  position: absolute;
  left: 13px;
  top: 12px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.aurel-preview-link {
  cursor: pointer;
}
.aurel-preview-link img {
  transition:
    transform 0.65s cubic-bezier(0.22, 0.8, 0.25, 1),
    filter 0.35s ease;
}
.aurel-preview-link:hover img {
  transform: scale(1.018);
  filter: brightness(1.06);
}
.aurel-preview-link:hover .demo-window-action {
  background: rgba(217, 170, 74, 0.94);
  color: #07101b;
}
.aurel-exact-preview img {
  object-position: center top;
}
.aurel-detail-grid {
  align-items: stretch;
}

.product-showcase {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(217, 170, 74, 0.28);
  border-radius: 20px;
  overflow: hidden;
  background: #08111f;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.product-showcase-image {
  position: absolute;
  inset: 0;
  z-index: -3;
}
.product-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.product-showcase-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(5, 13, 23, 0.98) 0%,
      rgba(5, 13, 23, 0.94) 42%,
      rgba(5, 13, 23, 0.38) 70%,
      rgba(5, 13, 23, 0.18) 100%
    ),
    linear-gradient(0deg, rgba(5, 13, 23, 0.94) 0%, transparent 34%);
}
.product-showcase:after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(
    circle at 77% 36%,
    rgba(217, 170, 74, 0.12),
    transparent 26%
  );
  pointer-events: none;
}
.product-showcase-content {
  padding: 46px 46px 126px;
  max-width: 710px;
}
.product-showcase h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 4px 0 14px;
}
.product-showcase-desc {
  max-width: 52ch;
  color: #c4ccda;
  font-size: 0.94rem;
}
.product-showcase .chips {
  max-width: 660px;
  margin-top: 24px;
}
.product-showcase .chip {
  padding: 11px 13px;
  background: rgba(6, 16, 29, 0.58);
  backdrop-filter: blur(10px);
  font-size: 0.72rem;
}
.product-showcase .buy {
  margin-top: 28px;
}
.product-showcase .buy .btn {
  min-width: 210px;
  padding: 14px 24px;
}
.product-showcase-free {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 20px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 16, 29, 0.88);
  backdrop-filter: blur(16px);
}
.product-showcase-free > div {
  display: flex;
  align-items: center;
  gap: 15px;
}
.free-icon {
  font-size: 1.7rem;
}
.product-showcase-free strong {
  font-size: 0.94rem;
}
.product-showcase-free p {
  font-size: 0.73rem;
  color: var(--muted);
  margin: 2px 0 0;
}
.aurel-product-showcase {
  min-height: 610px;
}
.aurel-product-showcase .product-showcase-image img {
  object-position: center;
  transform: none;
}
.aurel-product-showcase .product-showcase-content {
  max-width: 740px;
  padding-bottom: 58px;
}
.aurel-product-showcase .product-showcase-shade {
  background:
    linear-gradient(
      90deg,
      rgba(5, 13, 23, 0.99) 0%,
      rgba(5, 13, 23, 0.95) 45%,
      rgba(5, 13, 23, 0.3) 76%,
      rgba(5, 13, 23, 0.12) 100%
    ),
    linear-gradient(0deg, rgba(5, 13, 23, 0.82), transparent 42%);
}
.source-protection-note {
  margin: 18px 0 0;
  color: rgba(223, 229, 238, 0.68);
  font-size: 0.7rem;
  letter-spacing: 0.03em;
}

@media (max-width: 920px) {
  .venture-grid.two-up {
    grid-template-columns: 1fr;
  }
  .home-showcase,
  .home-showcase-inner {
    min-height: 600px;
  }
  .home-showcase-copy {
    max-width: 680px;
  }
  .home-showcase:after,
  .enhanced-hero-orbit {
    right: -70px;
    opacity: 0.55;
  }
  .enhanced-hero {
    min-height: 430px;
    padding: 72px 0 56px;
  }
  .direction-steps,
  .method-grid {
    grid-template-columns: 1fr 1fr;
  }
  .direction-steps > div:nth-child(3),
  .direction-steps > div:nth-child(4),
  .method-grid > div:nth-child(3),
  .method-grid > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }
  .direction-steps > div:nth-child(3),
  .method-grid > div:nth-child(3) {
    border-left: 0;
  }
  .product-showcase {
    min-height: 620px;
  }
  .product-showcase-content {
    padding: 38px 34px 140px;
    max-width: 650px;
  }
  .product-showcase-shade {
    background:
      linear-gradient(
        90deg,
        rgba(5, 13, 23, 0.97),
        rgba(5, 13, 23, 0.82) 66%,
        rgba(5, 13, 23, 0.38)
      ),
      linear-gradient(0deg, rgba(5, 13, 23, 0.95), transparent 46%);
  }
}
@media (max-width: 620px) {
  .home-showcase,
  .home-showcase-inner {
    min-height: 660px;
  }
  .home-showcase-inner {
    padding-top: 44px;
    padding-bottom: 62px;
  }
  .home-showcase-copy {
    min-height: 470px;
  }
  .home-showcase h1 {
    font-size: clamp(2.65rem, 13vw, 4.15rem);
    max-width: 11ch;
  }
  .home-showcase .hero-lead {
    font-size: 0.92rem;
    line-height: 1.55;
  }
  .home-showcase-statement {
    font-size: 0.74rem;
    line-height: 1.4;
  }
  .home-showcase .hero-actions {
    display: grid;
    gap: 9px;
    padding-top: 20px;
  }
  .home-showcase .hero-actions .btn {
    width: 100%;
  }
  .home-showcase-controls {
    left: 11px;
    right: 11px;
    bottom: 16px;
  }
  .home-showcase-controls > span {
    display: none;
  }
  .home-showcase:after {
    width: 230px;
    height: 230px;
    right: -100px;
    top: 17%;
  }
  .enhanced-hero {
    min-height: 430px;
    padding: 66px 0 48px;
  }
  .enhanced-hero h1 {
    font-size: clamp(2.6rem, 12.5vw, 4.2rem);
  }
  .enhanced-hero .lead {
    font-size: 0.91rem;
    line-height: 1.55;
  }
  .enhanced-message-stage {
    min-height: 54px;
  }
  .enhanced-message {
    font-size: 0.74rem;
    line-height: 1.45;
    align-items: flex-start;
  }
  .enhanced-message:before {
    margin-top: 0.62em;
    flex: 0 0 25px;
  }
  .enhanced-hero-orbit {
    width: 210px;
    height: 210px;
    right: -105px;
    top: 19%;
  }
  .enhanced-hero-slide img {
    object-position: 62% center;
  }
  .direction-steps,
  .method-grid {
    grid-template-columns: 1fr;
  }
  .direction-steps > div + div,
  .method-grid > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .direction-steps > div,
  .method-grid > div {
    min-height: auto;
  }
  .product-showcase {
    min-height: 760px;
  }
  .product-showcase-image img {
    object-position: 64% center;
  }
  .product-showcase-shade {
    background: linear-gradient(
      180deg,
      rgba(5, 13, 23, 0.98) 0%,
      rgba(5, 13, 23, 0.9) 56%,
      rgba(5, 13, 23, 0.55) 100%
    );
  }
  .product-showcase-content {
    padding: 30px 22px 190px;
  }
  .product-showcase h2 {
    font-size: 2.65rem;
  }
  .product-showcase .buy {
    display: grid;
  }
  .product-showcase .buy .btn {
    width: 100%;
  }
  .product-showcase-free {
    grid-template-columns: 1fr;
    padding: 17px 20px;
  }
  .product-showcase-free .btn {
    width: 100%;
  }
}

/* v7 QA refinements */
.home-showcase-copy {
  min-height: 0;
  display: block;
}
.home-showcase-copy-stage {
  position: relative;
  min-height: 405px;
}
.home-showcase .hero-actions {
  margin-top: 14px;
  padding-top: 0;
}
.aurel-exact-preview {
  display: flex;
  align-items: center;
  justify-content: center;
}
.aurel-exact-preview img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  background: #0b0d0b;
}
@media (max-width: 620px) {
  .home-showcase-copy {
    min-height: 0;
  }
  .home-showcase-copy-stage {
    min-height: 470px;
  }
  .home-showcase .hero-actions {
    margin-top: 10px;
  }
}
.aurel-exact-preview {
  align-items: flex-start;
}
.aurel-exact-preview img {
  height: auto;
}

/* v7 hero slider refinement: premium hero swaps, centered dots, stronger but controlled motion */
.home-showcase,
.enhanced-hero {
  overflow: hidden;
}
.home-showcase:before,
.enhanced-hero:before {
  content: "";
  position: absolute;
  inset: -10% -5%;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.045) 46%,
    transparent 54%
  );
  mix-blend-mode: screen;
  animation: heroSweep 16s linear infinite;
}
.home-showcase-slide img,
.enhanced-hero-slide img {
  filter: saturate(1.08) contrast(1.07) brightness(0.94);
}
.home-showcase-slide.active img,
.enhanced-hero-slide.active img {
  animation: heroZoomPulse 8.6s ease-in-out infinite;
}
.home-showcase-copy-panel.active .hero-eyebrow,
.enhanced-hero .eyebrow {
  animation: heroTextIn 0.55s cubic-bezier(0.22, 0.8, 0.25, 1) both;
}
.home-showcase-copy-panel.active h1,
.enhanced-hero h1 {
  animation: heroTextIn 0.72s 0.05s cubic-bezier(0.22, 0.8, 0.25, 1) both;
}
.home-showcase-copy-panel.active .hero-lead,
.enhanced-hero .lead {
  animation: heroTextIn 0.84s 0.12s cubic-bezier(0.22, 0.8, 0.25, 1) both;
}
.home-showcase-copy-panel.active .home-showcase-statement,
.enhanced-message.active {
  animation:
    heroTextIn 0.9s 0.18s cubic-bezier(0.22, 0.8, 0.25, 1) both,
    heroMessageGlow 4.8s ease-in-out infinite;
}
.home-showcase .hero-eyebrow,
.enhanced-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(7, 16, 29, 0.58);
  border: 1px solid rgba(217, 170, 74, 0.28);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}
.home-showcase .hero-eyebrow:before,
.enhanced-hero .eyebrow:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold2);
  box-shadow: 0 0 15px rgba(241, 207, 120, 0.7);
}
.home-showcase .hero-lead,
.enhanced-hero .lead {
  color: #d3dae4;
}
.home-showcase-statement,
.enhanced-message {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(5, 15, 27, 0.62);
  border: 1px solid rgba(217, 170, 74, 0.24);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}
.home-showcase-statement:before,
.enhanced-message:before {
  width: 30px;
  height: 2px;
  flex: 0 0 30px;
}
.home-showcase-controls {
  left: 0;
  right: 0;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.home-showcase-controls > span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(5, 15, 27, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}
.home-showcase-controls > div,
.enhanced-hero-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
}
.home-showcase-dot,
.enhanced-dot {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
  box-shadow: none;
  transition:
    transform 0.24s ease,
    background 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}
.home-showcase-dot:hover,
.enhanced-dot:hover {
  transform: scale(1.08);
  border-color: rgba(217, 170, 74, 0.62);
  background: rgba(217, 170, 74, 0.3);
}
.home-showcase-dot.active,
.enhanced-dot.active {
  width: 12px;
  height: 12px;
  background: var(--gold2);
  border-color: var(--gold2);
  box-shadow:
    0 0 0 4px rgba(217, 170, 74, 0.16),
    0 0 18px rgba(217, 170, 74, 0.38);
  transform: scale(1.06);
}
.enhanced-hero-dots {
  margin-top: 24px;
}
.enhanced-message-stage {
  min-height: 58px;
}
@keyframes heroSweep {
  0% {
    transform: translateX(-16%);
  }
  100% {
    transform: translateX(16%);
  }
}
@keyframes heroZoomPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.025);
  }
}
@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes heroMessageGlow {
  0%,
  100% {
    box-shadow:
      0 12px 30px rgba(0, 0, 0, 0.2),
      0 0 0 rgba(217, 170, 74, 0);
  }
  50% {
    box-shadow:
      0 14px 34px rgba(0, 0, 0, 0.22),
      0 0 18px rgba(217, 170, 74, 0.16);
  }
}
@media (max-width: 620px) {
  .home-showcase-controls {
    bottom: 16px;
    gap: 8px;
  }
  .home-showcase-controls > span {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    padding: 7px 11px;
  }
  .home-showcase-dot,
  .enhanced-dot {
    width: 11px;
    height: 11px;
  }
  .home-showcase-dot.active,
  .enhanced-dot.active {
    width: 11px;
    height: 11px;
  }
  .home-showcase-statement,
  .enhanced-message {
    border-radius: 18px;
    white-space: normal;
    line-height: 1.45;
    padding: 11px 14px;
  }
  .enhanced-message-stage {
    min-height: 86px;
  }
}

/* v08 — launch-focused premium layout */
.home-showcase {
  min-height: 700px;
}
.home-showcase-inner {
  min-height: 700px;
  justify-content: flex-start;
  padding-top: 78px;
  padding-bottom: 96px;
}
.home-showcase-copy {
  width: min(760px, 100%);
  max-width: none;
}
.home-showcase-copy-stage {
  min-height: 460px;
}
.home-showcase h1,
.home-showcase .hero-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.15rem, 5.05vw, 5rem);
  font-weight: 500;
  line-height: 0.99;
  letter-spacing: -0.052em;
  max-width: 13.5ch;
  margin: 0;
  color: #f8e6a4;
  text-shadow: 0 18px 55px rgba(0, 0, 0, 0.56);
}
.home-showcase-copy-panel.active .hero-title {
  animation: heroTextIn 0.72s 0.05s cubic-bezier(0.22, 0.8, 0.25, 1) both;
}
.home-showcase-statement,
.enhanced-message {
  width: fit-content;
  max-width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.home-showcase-statement:before,
.enhanced-message:before {
  width: 36px;
  flex-basis: 36px;
  height: 1px;
}
.home-showcase .hero-actions {
  margin-top: 20px;
  gap: 12px;
}
.home-showcase .hero-actions .btn {
  min-width: 190px;
  padding: 14px 20px;
  background: rgba(6, 16, 29, 0.7);
  border-color: rgba(241, 207, 120, 0.34);
}
.home-showcase-controls {
  bottom: 28px;
}
.home-showcase-controls > div {
  padding: 10px 15px;
  width: auto;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(4, 12, 22, 0.58);
  backdrop-filter: blur(14px);
}
.home-showcase-shade {
  background:
    linear-gradient(
      90deg,
      rgba(3, 10, 19, 0.98) 0%,
      rgba(3, 10, 19, 0.86) 38%,
      rgba(3, 10, 19, 0.28) 70%,
      rgba(3, 10, 19, 0.14) 100%
    ),
    linear-gradient(0deg, #06101d 0%, transparent 44%);
}
.home-showcase-slide.active img {
  animation: heroZoomPulse 10s ease-in-out infinite;
}

.enhanced-hero {
  min-height: 550px;
  padding: 96px 0 72px;
  align-items: center;
}
.enhanced-hero-content {
  width: min(calc(100% - 32px), var(--max));
}
.enhanced-hero h1 {
  max-width: 12.5ch;
  color: #f8e6a4;
}
.enhanced-hero .lead {
  max-width: 60ch;
  color: #d5dce6;
}
.enhanced-message-stage {
  min-height: 42px;
}
.enhanced-hero-dots {
  width: fit-content;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(4, 12, 22, 0.5);
  backdrop-filter: blur(14px);
}
.enhanced-hero-shade {
  background:
    linear-gradient(
      90deg,
      #06101d 0%,
      rgba(6, 16, 29, 0.92) 35%,
      rgba(6, 16, 29, 0.42) 68%,
      rgba(6, 16, 29, 0.12) 100%
    ),
    linear-gradient(0deg, #06101d 0%, transparent 48%);
}
.enhanced-hero-slide img {
  object-position: center;
}

.venture,
.content-card,
.definition-card,
.dev-card {
  overflow: hidden;
}
.venture:before,
.content-card:before,
.definition-card:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255, 255, 255, 0.025) 50%,
    transparent 80%
  );
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}
.content-card,
.definition-card {
  position: relative;
}
.venture:hover:before,
.content-card:hover:before,
.definition-card:hover:before {
  transform: translateX(100%);
}

.product {
  border-color: rgba(217, 170, 74, 0.3);
}
.product-main {
  grid-template-columns: 0.92fr 1.28fr;
  min-height: 390px;
}
.product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 36px;
  background: linear-gradient(90deg, #08111f 72%, rgba(8, 17, 31, 0.76));
}
.product h2 {
  font-size: clamp(2.55rem, 4.3vw, 4.15rem);
}
.product-desc {
  font-size: 0.9rem;
}
.pool-reference-visual {
  min-height: 390px;
}
.pool-reference-visual img {
  object-position: 82% center;
  transform: scale(1.03);
}
.free-row {
  padding: 18px 28px;
}

.product-showcase {
  min-height: 640px;
}
.product-showcase-image img {
  object-position: 82% center;
  transform: scale(1.03);
}
.product-showcase-content {
  max-width: 760px;
  padding: 58px 52px 136px;
}
.product-showcase h2 {
  font-size: clamp(3rem, 5.4vw, 5.2rem);
}
.product-showcase-shade {
  background:
    linear-gradient(
      90deg,
      rgba(5, 13, 23, 0.99) 0%,
      rgba(5, 13, 23, 0.95) 45%,
      rgba(5, 13, 23, 0.36) 72%,
      rgba(5, 13, 23, 0.12) 100%
    ),
    linear-gradient(0deg, rgba(5, 13, 23, 0.96) 0%, transparent 36%);
}

.aurel {
  grid-template-columns: 0.68fr 1.32fr;
  min-height: 390px;
  padding: 30px;
}
.aurel h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-weight: 500;
}
.aurel-shot {
  min-height: 330px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
}
.aurel-shot img {
  height: 330px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.65s ease;
}
.aurel-shot:hover img {
  transform: scale(1.02);
}
.aurel-exact-preview {
  background: #070c12;
  min-height: 440px;
}
.aurel-exact-preview img {
  min-height: 440px;
  object-fit: cover;
  object-position: center top;
}

.editorial-split {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  min-height: 430px;
  border: 1px solid rgba(217, 170, 74, 0.22);
  border-radius: 20px;
  overflow: hidden;
  background: #08111f;
  box-shadow: var(--shadow);
}
.editorial-visual {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
}
.editorial-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 50%, #08111f 100%);
}
.editorial-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.editorial-split.visible .editorial-visual img {
  transform: scale(1.045);
}
.editorial-visual figcaption {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 22px;
  padding: 9px 13px;
  border: 1px solid rgba(241, 207, 120, 0.32);
  border-radius: 999px;
  background: rgba(5, 13, 23, 0.68);
  backdrop-filter: blur(12px);
  color: var(--gold2);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.editorial-copy {
  align-self: center;
  padding: 44px 42px;
}
.editorial-copy h2 {
  margin: 8px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 3.5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.06;
}
.editorial-copy > p:not(.eyebrow) {
  color: var(--muted);
}
.principle-list {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}
.principle-list div {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}
.principle-list span {
  color: var(--gold);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
}
.principle-list strong {
  font-size: 0.82rem;
}

.contact-intro {
  padding: 0 28px 30px;
}
.contact-visual {
  height: 210px;
  margin: 0 -28px 28px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}
.contact-points span,
.form-note {
  color: var(--muted);
  font-size: 0.72rem;
}
.contact-points span {
  padding: 8px 10px;
  border: 1px solid rgba(217, 170, 74, 0.2);
  border-radius: 999px;
}
.form-note {
  margin: 0;
}
.conversation-guide {
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(217, 170, 74, 0.08), #0a1524 46%);
}
.conversation-guide h2 {
  margin: 4px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  font-weight: 500;
}
.conversation-guide > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.conversation-guide span {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.78rem;
}
.conversation-guide b {
  display: block;
  color: var(--gold);
  margin-bottom: 5px;
}

.live-demo-window {
  position: relative;
  display: grid;
  grid-template-rows: 34px 1fr;
  padding: 0;
  background: #080c10;
  overflow: hidden;
}
.demo-window-bar {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #0b1118;
}
.demo-window-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b86d4e;
}
.demo-window-bar i:nth-child(2) {
  background: #d9aa4a;
}
.demo-window-bar i:nth-child(3) {
  background: #74d49f;
}
.demo-window-bar b {
  margin-left: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.demo-window-viewport {
  position: relative;
  display: block;
  min-height: 296px;
  overflow: hidden;
  background: #111312;
}
.demo-window-viewport iframe {
  position: absolute;
  inset: 0 auto auto 0;
  width: 200%;
  height: 900px;
  border: 0;
  transform: scale(0.5);
  transform-origin: top left;
  pointer-events: none;
}
.demo-window-viewport > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 296px;
  object-fit: cover;
  object-position: center top;
}
.aurel-exact-preview.live-demo-window {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  min-width: 0;
  width: 100%;
}
.aurel-exact-preview .demo-window-viewport {
  min-height: 406px;
  width: 100%;
}
.aurel-exact-preview .demo-window-viewport > img {
  min-height: 406px;
}
.demo-window-action {
  position: absolute;
  z-index: 5;
  left: 22px;
  bottom: 20px;
  padding: 11px 16px;
  border: 1px solid rgba(217, 170, 74, 0.65);
  border-radius: 999px;
  background: rgba(6, 16, 29, 0.88);
  backdrop-filter: blur(10px);
  color: #f1cf78;
  font-weight: 800;
  font-size: 0.8rem;
  pointer-events: none;
}
.demo-window-hit {
  position: absolute;
  z-index: 4;
  inset: 0;
  cursor: pointer;
}

/* v12 — the exact Aurel preview is one full rectangular click target. */
.aurel-exact-preview.live-demo-window {
  border-radius: 18px;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.aurel-exact-preview.live-demo-window:hover,
.aurel-exact-preview.live-demo-window:focus-within {
  transform: translateY(-3px);
  border-color: rgba(217, 170, 74, 0.62);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
}
.aurel-exact-preview .demo-window-bar {
  position: relative;
  inset: auto;
  padding: 0 12px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: #0b1118;
  backdrop-filter: none;
}
.aurel-exact-preview .demo-window-viewport {
  position: relative;
  inset: auto;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #111312;
  backdrop-filter: none;
  overflow: hidden;
}
.aurel-exact-preview .demo-window-viewport > img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: center top;
}
.demo-window-hit:focus-visible {
  outline: 3px solid var(--gold2);
  outline-offset: -4px;
  border-radius: 16px;
}
.trust-card .eyebrow {
  margin-bottom: 8px;
}
.trust-card .truth-list li::marker {
  color: #74d49f;
}
.scope-card {
  border-color: rgba(116, 212, 159, 0.24);
  background:
    radial-gradient(circle at 100% 0%, rgba(116, 212, 159, 0.075), transparent 36%),
    linear-gradient(145deg, #0a1524, #08111f);
}
.scope-card h2 {
  max-width: 18ch;
}

@media (max-width: 920px) {
  .home-showcase,
  .home-showcase-inner {
    min-height: 690px;
  }
  .product-main,
  .aurel,
  .editorial-split {
    grid-template-columns: 1fr;
  }
  .pool-reference-visual {
    order: -1;
    min-height: 330px;
  }
  .aurel-shot {
    order: -1;
  }
  .editorial-visual {
    min-height: 330px;
  }
  .editorial-visual:after {
    background: linear-gradient(0deg, #08111f 0%, transparent 48%);
  }
  .conversation-guide > div {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .home-showcase,
  .home-showcase-inner {
    min-height: 710px;
  }
  .home-showcase-inner {
    padding-top: 54px;
    padding-bottom: 88px;
  }
  .home-showcase-copy-stage {
    min-height: 520px;
  }
  .home-showcase h1,
  .home-showcase .hero-title {
    font-size: clamp(2.55rem, 12vw, 3.85rem);
    max-width: 11.5ch;
  }
  .home-showcase .hero-actions {
    display: grid;
  }
  .home-showcase .hero-actions .btn {
    width: 100%;
  }
  .home-showcase-statement,
  .enhanced-message {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }
  .enhanced-hero {
    min-height: 520px;
    padding: 78px 0 62px;
  }
  .enhanced-message-stage {
    min-height: 78px;
  }
  .product-copy,
  .editorial-copy {
    padding: 30px 22px;
  }
  .product h2,
  .product-showcase h2 {
    font-size: 2.55rem;
  }
  .pool-reference-visual {
    min-height: 245px;
  }
  .product-showcase {
    min-height: 790px;
  }
  .product-showcase-content {
    padding: 34px 22px 210px;
  }
  .aurel {
    padding: 18px;
  }
  .aurel-shot,
  .aurel-shot img {
    min-height: 220px;
    height: 220px;
  }
  .aurel-shot.live-demo-window {
    min-height: 250px;
    height: 250px;
  }
  .demo-window-viewport {
    min-height: 216px;
  }
  .demo-window-viewport iframe {
    width: 250%;
    transform: scale(0.4);
  }
  .editorial-visual {
    min-height: 250px;
  }
  .editorial-visual figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    text-align: center;
  }
  .conversation-guide {
    padding: 24px 20px;
  }
}
