:root {
  --bg: #112b53;
  --bg-soft: rgba(255, 255, 255, 0.08);
  --surface: rgba(12, 233, 186, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --text: #f4f7fb;
  --text-muted: rgba(244, 247, 251, 0.72);
  --border: rgba(255, 255, 255, 0.14);
  --accent: #0ce9ba;
  --accent-strong: #0ce9ba;
  --shadow: 0 18px 54px rgba(1, 12, 35, 0.22);
  --hero-overlay: linear-gradient(135deg, rgba(8, 20, 40, 0.24), rgba(8, 20, 40, 0.72));
  --max-width: 1200px;
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

body.light-mode {
  --bg: #f5f8fc;
  --bg-soft: rgba(17, 43, 83, 0.06);
  --surface: rgba(12, 233, 186, 0.12);
  --surface-strong: rgba(17, 43, 83, 0.08);
  --text: #112b53;
  --text-muted: rgba(17, 43, 83, 0.72);
  --border: rgba(17, 43, 83, 0.12);
  --shadow: 0 18px 50px rgba(17, 43, 83, 0.1);
  --hero-overlay: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(17, 43, 83, 0.44));
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(12, 233, 186, 0.14), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 30%),
    var(--bg);
  color: var(--text);
}

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

button,
input,
select {
  font: inherit;
}

.site-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding-bottom: 64px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 16px 0 28px;
  padding: 14px 18px;
  background: rgba(7, 17, 34, 0.55);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

body.light-mode .site-header {
  background: rgba(255, 255, 255, 0.82);
}

body.light-mode .hero h1,
body.light-mode .hero h2,
body.light-mode .hero h3,
body.light-mode .hero .eyebrow,
body.light-mode .feature-band h1,
body.light-mode .feature-band h2,
body.light-mode .feature-band h3,
body.light-mode .feature-band .eyebrow,
body.light-mode .video-parallax-band h1,
body.light-mode .video-parallax-band h2,
body.light-mode .video-parallax-band h3,
body.light-mode .video-parallax-band .eyebrow,
body.light-mode .asset-video-panel h1,
body.light-mode .asset-video-panel h2,
body.light-mode .asset-video-panel h3,
body.light-mode .asset-video-panel .eyebrow,
body.light-mode .form-video-panel h1,
body.light-mode .form-video-panel h2,
body.light-mode .form-video-panel h3,
body.light-mode .form-video-panel .eyebrow {
  color: #f4f7fb;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 12px;
}

.brand-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 72px;
  flex: 0 0 auto;
}

.brand-logo img,
.footer-logo img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand-logo .logo-light {
  display: none;
}

body.light-mode .brand-logo .logo-dark {
  display: none;
}

body.light-mode .brand-logo .logo-light {
  display: block;
}

.footer-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 96px;
}

.footer-logo .logo-light {
  display: none;
}

body.light-mode .footer-logo .logo-dark {
  display: none;
}

body.light-mode .footer-logo .logo-light {
  display: block;
}

.site-nav a,
.theme-toggle,
.hero-copy,
.hero-metrics span,
.panel p,
.asset-list p,
.service-card p,
.bullet-list,
.cta-panel p,
.form-feedback {
  color: var(--text-muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  position: relative;
  padding-bottom: 4px;
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle,
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--text);
}

.theme-toggle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.theme-icon {
  position: absolute;
  font-size: 0;
}

.theme-toggle::before {
  content: "◐";
  font-size: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: #05253e;
  box-shadow: none;
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.button-large {
  min-height: 68px;
  min-width: 260px;
  padding: 0 40px;
  font-size: 1.12rem;
  white-space: nowrap;
}

.hero,
.feature-band,
.cta-panel,
.panel,
.pillar-card,
.service-card,
.asset-list article,
.multi-step-form {
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 76vh;
  display: grid;
  align-items: end;
  padding: clamp(28px, 4vw, 44px);
  margin-bottom: 28px;
  border-radius: var(--radius-xl);
  background: rgba(6, 15, 31, 0.52);
}

.hero-finance {
  min-height: 82vh;
  padding-top: clamp(96px, 12vw, 152px);
}

.hero-media,
.feature-band::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::before,
.hero-media::after,
.feature-band::before {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-media::before,
.feature-band::before {
  background: var(--hero-overlay);
  z-index: 1;
}

.hero-media::after {
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  transform: scale(1.08);
  animation: drift 18s ease-in-out infinite alternate;
  z-index: 0;
}

.hero-media-creator::after {
  background:
    radial-gradient(circle at 22% 18%, rgba(12, 233, 186, 0.18), transparent 22%),
    linear-gradient(135deg, rgba(17, 43, 83, 0.22), rgba(7, 17, 34, 0.08));
}

.hero-media-estate::after,
.feature-offmarket::before,
.feature-estate::before {
  background-image:
    linear-gradient(115deg, rgba(4, 13, 27, 0.16), rgba(4, 13, 27, 0.82)),
    radial-gradient(circle at 82% 22%, rgba(12, 233, 186, 0.25), transparent 18%),
    linear-gradient(135deg, rgba(17, 43, 83, 0.9), rgba(7, 17, 34, 0.4)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.hero-media-cars::after,
.feature-cars::before {
  background-image:
    linear-gradient(115deg, rgba(4, 13, 27, 0.14), rgba(4, 13, 27, 0.84)),
    radial-gradient(circle at 18% 24%, rgba(12, 233, 186, 0.2), transparent 18%),
    linear-gradient(135deg, rgba(17, 43, 83, 0.85), rgba(7, 17, 34, 0.3)),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.hero-media-finance::after,
.feature-finance::before {
  background-image:
    linear-gradient(115deg, rgba(4, 13, 27, 0.14), rgba(4, 13, 27, 0.84)),
    radial-gradient(circle at 20% 18%, rgba(12, 233, 186, 0.18), transparent 18%),
    linear-gradient(135deg, rgba(17, 43, 83, 0.9), rgba(7, 17, 34, 0.26)),
    url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: 78% center;
}

.hero-content,
.feature-copy {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-side-visual {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  width: min(40vw, 500px);
  height: min(74%, 620px);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(6, 15, 31, 0.1), rgba(6, 15, 31, 0.24)),
    radial-gradient(circle at 18% 18%, rgba(12, 233, 186, 0.16), transparent 22%),
    url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: 62% center;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 24px 60px rgba(1, 12, 35, 0.24);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.95;
}

h1,
h2 {
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3.5rem, 9vw, 7rem);
  max-width: 10ch;
}

.hero-finance h1 {
  font-size: clamp(2.8rem, 6vw, 5.1rem);
  max-width: 11ch;
  line-height: 0.98;
}

.hero-title-compact {
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  max-width: 12ch;
}

.nowrap {
  white-space: nowrap;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

h3 {
  font-size: 1.3rem;
}

.hero-copy {
  max-width: 62ch;
  font-size: 1.08rem;
  line-height: 1.8;
  margin: 24px 0 0;
}

.hero-copy-tight {
  max-width: 58ch;
  margin-top: 14px;
}

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

.hero-metrics,
.stats-list,
.bullet-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}

.hero-metrics {
  display: grid;
  gap: 16px;
  max-width: 640px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-metrics li,
.stats-list li {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.hero-metrics strong,
.stats-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.section {
  padding: 48px 0;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 0 8px;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 180ms ease;
}

.footer-legal a:hover {
  color: var(--text);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.grid-two,
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.panel,
.pillar-card,
.service-card,
.asset-list article,
.multi-step-form,
.cta-panel {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
}

.panel-soft,
.service-card,
.multi-step-form,
.cta-panel {
  background: var(--bg-soft);
}

.pillar-card,
.service-card,
.asset-list article,
.multi-step-form {
  border: none;
}

.pillar-card,
.service-card,
.asset-list article {
  position: relative;
  overflow: hidden;
  transition:
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms ease,
    background 320ms ease;
}

.pillar-card::after,
.service-card::after,
.asset-list article::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -45%;
  width: 34%;
  height: 140%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.28),
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0)
  );
  transform: translate3d(-180%, 0, 0) rotate(14deg);
  opacity: 0;
  pointer-events: none;
}

.panel-dark {
  background:
    radial-gradient(circle at top left, rgba(12, 233, 186, 0.18), transparent 35%),
    rgba(255, 255, 255, 0.04);
}

.asset-video-panel {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.asset-video-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 15, 31, 0.18), rgba(6, 15, 31, 0.78)),
    radial-gradient(circle at top left, rgba(12, 233, 186, 0.14), transparent 32%);
}

.asset-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.asset-video-copy {
  position: relative;
  z-index: 2;
}

.panel-outline {
  background: transparent;
}

.pillar-grid,
.service-grid {
  display: grid;
  gap: 20px;
}

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

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

.pillar-card span,
.service-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 800;
}

.pillar-card p,
.service-card p,
.asset-list p,
.panel p,
.cta-panel p {
  line-height: 1.8;
}

.service-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  transition:
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms ease,
    background 320ms ease;
}

.service-card p {
  flex: 1;
}

.service-card span {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 20px;
  margin-bottom: 0;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(12, 233, 186, 0.08);
  border: 1px solid rgba(12, 233, 186, 0.28);
  font-size: 0.84rem;
  font-weight: 700;
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.service-card:hover span,
.service-card:focus-visible span {
  transform: scale(1.1);
  background: rgba(12, 233, 186, 0.18);
  border-color: var(--accent);
  color: var(--accent);
}

.pillar-card:hover,
.pillar-card:focus-within,
.service-card:hover,
.service-card:focus-visible,
.asset-list article:hover,
.asset-list article:focus-within {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 26px 54px rgba(1, 12, 35, 0.22);
  background: rgba(255, 255, 255, 0.09);
}

body.light-mode .pillar-card:hover,
body.light-mode .pillar-card:focus-within,
body.light-mode .service-card:hover,
body.light-mode .service-card:focus-visible,
body.light-mode .asset-list article:hover,
body.light-mode .asset-list article:focus-within {
  background: rgba(17, 43, 83, 0.08);
  box-shadow: 0 24px 44px rgba(17, 43, 83, 0.14);
}

.pillar-card:hover::after,
.pillar-card:focus-within::after,
.service-card:hover::after,
.service-card:focus-visible::after,
.asset-list article:hover::after,
.asset-list article:focus-within::after {
  opacity: 1;
  animation: sheen-pass 1.9s ease forwards;
}

.feature-band {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: end;
  padding: 36px;
  border-radius: var(--radius-xl);
  background: rgba(8, 20, 40, 0.42);
}

.video-parallax-band {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: end;
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  background: rgba(8, 20, 40, 0.42);
}

.video-parallax-band-compact {
  min-height: 320px;
}

.value-column {
  display: grid;
  gap: 18px;
  align-self: start;
}

.video-parallax-band-narrow {
  width: 100%;
}

.value-heading h2 {
  max-width: 10ch;
}

.video-parallax-media {
  position: absolute;
  inset: 0;
}

.video-parallax-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 15, 31, 0.12), rgba(6, 15, 31, 0.72)),
    radial-gradient(circle at 80% 20%, rgba(12, 233, 186, 0.16), transparent 20%);
}

.parallax-video {
  width: 100%;
  height: 120%;
  object-fit: cover;
  transform: translateY(-7%) scale(1.08);
  filter: saturate(0.95) contrast(1.02);
}

.video-parallax-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.module-grid,
.comparison-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
}

.finance-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.media-placeholder-card,
.finance-chart-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}

.media-placeholder-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.media-placeholder-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.92;
}

.media-placeholder-image::before {
  background:
    linear-gradient(180deg, rgba(6, 15, 31, 0.12), rgba(6, 15, 31, 0.86)),
    radial-gradient(circle at 20% 18%, rgba(12, 233, 186, 0.18), transparent 22%),
    linear-gradient(135deg, rgba(17, 43, 83, 0.9), rgba(7, 17, 34, 0.18)),
    url("https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.media-placeholder-video::before {
  background:
    linear-gradient(180deg, rgba(6, 15, 31, 0.1), rgba(6, 15, 31, 0.84)),
    radial-gradient(circle at 82% 22%, rgba(12, 233, 186, 0.16), transparent 18%),
    linear-gradient(135deg, rgba(17, 43, 83, 0.9), rgba(7, 17, 34, 0.16)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.media-placeholder-card > * {
  position: relative;
  z-index: 1;
}

.media-kicker {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: auto;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f4f7fb;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-placeholder-card h3,
.media-placeholder-card p {
  color: #f4f7fb;
}

.media-placeholder-card h3 {
  max-width: 16ch;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1.02;
}

.media-placeholder-card p {
  max-width: 34ch;
  line-height: 1.8;
}

.play-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin-top: 18px;
  border-radius: 50%;
  background: rgba(12, 233, 186, 0.9);
  color: #05253e;
  font-weight: 800;
}

.play-badge-ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #f4f7fb;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.media-chip-row,
.content-mini-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.media-chip-row {
  margin-top: 16px;
}

.media-chip-row span,
.content-mini-grid span,
.card-meta {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
}

.media-chip-row span {
  color: #f4f7fb;
  background: rgba(255, 255, 255, 0.12);
}

.content-mini-grid {
  margin-top: 18px;
}

.finance-chart-card {
  display: grid;
  gap: 24px;
}

.chart-copy p:last-child {
  color: var(--text-muted);
  line-height: 1.8;
}

.chart-visual {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
}

.chart-visual svg {
  width: 100%;
  height: auto;
  display: block;
}

.chart-grid-lines line {
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 1;
}

.chart-axis-labels text,
.chart-x-labels text {
  fill: rgba(244, 247, 251, 0.72);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 600;
}

.chart-line path {
  fill: none;
  stroke: url(#lineStroke);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chart-line circle {
  fill: #0ce9ba;
  stroke: rgba(5, 37, 62, 0.8);
  stroke-width: 4;
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--text-muted);
}

.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.legend-bar,
.legend-line {
  display: inline-block;
  flex: 0 0 auto;
}

.legend-bar {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(12, 233, 186, 0.9), rgba(12, 233, 186, 0.25));
}

.legend-line {
  width: 24px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0ce9ba, #8dfbe2);
}

.note-strip {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.note-strip strong {
  color: var(--text);
  white-space: nowrap;
}

.finance-highlight-panel {
  min-height: 100%;
}

.finance-highlight-panel .content-mini-grid span {
  background: rgba(255, 255, 255, 0.1);
  color: #f4f7fb;
}

.theme-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.theme-visual-card {
  position: relative;
  overflow: hidden;
  min-height: 160px;
  padding: 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-end;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.theme-visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
}

.theme-visual-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #f4f7fb;
  font-size: 0.84rem;
  font-weight: 800;
}

.theme-renewables::before {
  background:
    linear-gradient(180deg, rgba(6, 15, 31, 0.08), rgba(6, 15, 31, 0.7)),
    url("https://images.unsplash.com/photo-1466611653911-95081537e5b7?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.theme-infrastructure::before {
  background:
    linear-gradient(180deg, rgba(6, 15, 31, 0.08), rgba(6, 15, 31, 0.7)),
    url("https://images.unsplash.com/photo-1473445361085-b9a07f55608b?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.theme-private-equity::before {
  background:
    linear-gradient(180deg, rgba(6, 15, 31, 0.08), rgba(6, 15, 31, 0.7)),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.theme-private-debt::before {
  background:
    linear-gradient(180deg, rgba(6, 15, 31, 0.08), rgba(6, 15, 31, 0.7)),
    url("https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.module-story-card {
  display: grid;
  gap: 24px;
}

.module-story-image {
  min-height: 260px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(6, 15, 31, 0.14), rgba(6, 15, 31, 0.34)),
    radial-gradient(circle at 18% 18%, rgba(12, 233, 186, 0.16), transparent 20%),
    url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.comparison-story-card {
  display: grid;
  gap: 24px;
}

.comparison-image-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 150px 150px;
  gap: 14px;
}

.comparison-image {
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.comparison-image-one {
  grid-row: 1 / span 2;
  background-image:
    linear-gradient(180deg, rgba(6, 15, 31, 0.08), rgba(6, 15, 31, 0.28)),
    url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1200&q=80");
}

.comparison-image-two {
  background-image:
    linear-gradient(180deg, rgba(6, 15, 31, 0.08), rgba(6, 15, 31, 0.28)),
    url("https://images.unsplash.com/photo-1559526324-593bc073d938?auto=format&fit=crop&w=1200&q=80");
}

.comparison-image-three {
  background-image:
    linear-gradient(180deg, rgba(6, 15, 31, 0.08), rgba(6, 15, 31, 0.28)),
    url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1200&q=80");
}

.statement-copy,
.cta-subline {
  margin-top: 18px;
  font-weight: 700;
  color: var(--text);
}

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

.process-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}

.process-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--accent);
  color: #05253e;
  font-weight: 800;
}

.process-card p,
.disclaimer-panel p {
  line-height: 1.8;
  color: var(--text-muted);
}

.card-meta {
  margin-top: 18px;
  color: var(--text-muted);
}

.video-hint {
  margin: 0;
  max-width: 34ch;
  color: rgba(244, 247, 251, 0.76);
  line-height: 1.7;
}

.module-three-section {
  padding-top: 16px;
}

.module-three-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: rgba(8, 20, 40, 0.42);
  box-shadow: var(--shadow);
}

.module-three-copy p:last-of-type {
  max-width: 34ch;
  line-height: 1.8;
}

.module-three-image {
  min-height: 100%;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(6, 15, 31, 0.12), rgba(6, 15, 31, 0.28)),
    radial-gradient(circle at 18% 18%, rgba(12, 233, 186, 0.16), transparent 22%),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.finance-cta-panel {
  margin-top: 10px;
}

.disclaimer-section {
  padding-top: 18px;
}

.disclaimer-panel {
  max-width: 980px;
}

.asset-list {
  display: grid;
  gap: 18px;
}

.trust-section {
  padding-bottom: 24px;
}

.trust-logo-wrap {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 24px;
}

.trust-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 48px;
}

.trust-logo img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.trust-logo .allianz-dark {
  display: none;
}

.trust-logo .allianz-light {
  display: block;
}

body.light-mode .trust-logo .allianz-dark {
  display: block;
}

body.light-mode .trust-logo .allianz-light {
  display: none;
}

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

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.form-section .section-heading p:last-child {
  max-width: 65ch;
  line-height: 1.8;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.multi-step-form {
  max-width: 820px;
}

.form-video-panel {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: rgba(8, 20, 40, 0.42);
}

.form-video-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 15, 31, 0.08), rgba(6, 15, 31, 0.24)),
    radial-gradient(circle at top left, rgba(12, 233, 186, 0.12), transparent 28%);
}

.form-side-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-indicator {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.step-indicator span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.step-indicator .is-active {
  background: var(--accent);
  color: #05253e;
  border-color: transparent;
}

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

label {
  display: grid;
  gap: 8px;
}

label span {
  font-size: 0.92rem;
  font-weight: 700;
}

input,
select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  outline: none;
}

body.light-mode input,
body.light-mode select {
  background: rgba(17, 43, 83, 0.04);
}

input:focus,
select:focus {
  border-color: rgba(12, 233, 186, 0.6);
  box-shadow: 0 0 0 3px rgba(12, 233, 186, 0.14);
}

.field-full {
  grid-column: 1 / -1;
}

.form-feedback {
  min-height: 24px;
  margin: 20px 0 0;
}

.form-feedback.is-error {
  color: #ff8f8f;
}

.form-feedback.is-success {
  color: var(--accent);
}

.scroll-reveal {
  --reveal-x: 0px;
  --reveal-y: 54px;
  --reveal-scale: 0.985;
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
  filter: blur(12px);
  transition:
    opacity 720ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 720ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

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

.scroll-reveal.reveal-left {
  --reveal-x: -88px;
  --reveal-y: 18px;
}

.scroll-reveal.reveal-right {
  --reveal-x: 88px;
  --reveal-y: 18px;
}

.hero-content > .scroll-reveal:nth-child(1) {
  --reveal-delay: 80ms;
}

.hero-content > .scroll-reveal:nth-child(2) {
  --reveal-delay: 160ms;
}

.hero-content > .scroll-reveal:nth-child(3) {
  --reveal-delay: 260ms;
}

.hero-content > .scroll-reveal:nth-child(4) {
  --reveal-delay: 340ms;
}

.hero-content > .scroll-reveal:nth-child(5) {
  --reveal-delay: 420ms;
}

/* ── Inline link & Offlist badge ────────────────────────────── */
.inline-link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(12, 233, 186, 0.4);
  transition: text-decoration-color 180ms ease;
}

.inline-link:hover {
  text-decoration-color: var(--accent);
}

.offlist-badge {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 180ms ease, background 180ms ease;
}

.offlist-badge:hover {
  border-color: var(--accent);
  background: rgba(12, 233, 186, 0.05);
}

.offlist-badge img {
  height: 28px;
  width: auto;
  display: block;
}

/* ── Contact Pillow ─────────────────────────────────────────── */
.contact-pillow-wrap {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 56px;
}

.contact-pillow-header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.contact-pillow-sub {
  color: var(--text-muted);
  margin-top: 14px;
  font-size: 1rem;
  line-height: 1.7;
}

/* Primary action cards */
.contact-primary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-primary-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
  cursor: pointer;
}

.contact-primary-card:hover {
  border-color: var(--accent);
  background: rgba(12, 233, 186, 0.05);
  transform: translateY(-3px);
}

.contact-primary-accent {
  background: var(--surface);
  border-color: rgba(12, 233, 186, 0.32);
}

.contact-primary-accent:hover {
  background: rgba(12, 233, 186, 0.1);
  border-color: var(--accent);
}

.contact-primary-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(12, 233, 186, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 4px;
}

.contact-primary-icon svg {
  width: 26px;
  height: 26px;
}

.contact-primary-label {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.02em;
}

.contact-primary-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.contact-primary-number {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0;
  letter-spacing: 0.02em;
}

.contact-primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  transition: background 180ms ease, border-color 180ms ease;
}

.contact-primary-card:hover .contact-primary-cta {
  background: var(--accent);
  border-color: var(--accent);
  color: #112b53;
}

/* Secondary form */
.contact-form-secondary {
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.contact-form-divider {
  text-align: center;
  margin: 0 0 24px;
  position: relative;
}

.contact-form-divider span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--bg-soft);
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.contact-simple-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.csf-inline {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  align-items: end;
}

.csf-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.csf-row label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.csf-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.7;
}

.csf-row input,
.csf-row textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 11px 16px;
  color: var(--text);
  font-size: 0.9rem;
  transition: border-color 180ms ease, background 180ms ease;
  resize: none;
}

.csf-row input:focus,
.csf-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(12, 233, 186, 0.04);
}

.csf-row input::placeholder,
.csf-row textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

body.light-mode .csf-row input,
body.light-mode .csf-row textarea {
  background: rgba(17, 43, 83, 0.05);
}

.csf-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.csf-feedback {
  font-size: 0.88rem;
  font-weight: 600;
  flex: 1;
}

.csf-feedback.is-success { color: var(--accent); }
.csf-feedback.is-error   { color: #ff6b6b; }

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .scroll-reveal.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

@keyframes drift {
  from {
    transform: scale(1.06) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.12) translate3d(-12px, -10px, 0);
  }
}

@keyframes sheen-pass {
  0% {
    transform: translate3d(-180%, 0, 0) rotate(14deg);
    opacity: 0;
  }

  18% {
    opacity: 1;
  }

  100% {
    transform: translate3d(430%, 0, 0) rotate(14deg);
    opacity: 0;
  }
}

@media (max-width: 1120px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .module-grid,
  .comparison-grid,
  .process-grid,
  .finance-media-grid {
    grid-template-columns: 1fr;
  }

  .module-three-layout {
    grid-template-columns: 1fr;
  }

  .theme-visual-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-header {
    border-radius: 28px;
    padding: 14px;
    flex-wrap: wrap;
  }

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

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 10px;
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .header-actions {
    margin-left: auto;
  }

  .grid-two,
  .trust-grid,
  .field-grid,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .module-grid,
  .comparison-grid,
  .process-grid,
  .finance-media-grid {
    grid-template-columns: 1fr;
  }

  .theme-visual-grid {
    grid-template-columns: 1fr;
  }

  .module-three-layout {
    padding: 22px;
  }

  .comparison-image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 180px);
  }

  .comparison-image-one {
    grid-row: auto;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: 640px;
  }

  .hero-side-visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 520px;
    height: 340px;
    margin-top: 28px;
  }

  .video-parallax-band-narrow {
    width: 100%;
  }

  h1 {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .brand-logo {
    width: 112px;
    height: 62px;
  }

  .brand {
    margin-left: 6px;
  }

  .footer-logo {
    width: 148px;
    height: 84px;
  }

  .header-actions .button {
    display: none;
  }

  .hero,
  .feature-band,
  .panel,
  .pillar-card,
  .service-card,
  .asset-list article,
  .multi-step-form,
  .cta-panel,
  .process-card,
  .video-parallax-band {
    padding: 22px;
  }

  .hero-side-visual {
    border-radius: 24px;
  }

  .note-strip {
    flex-direction: column;
  }

  .contact-pillow-wrap {
    padding: 32px 24px;
  }

  .contact-primary-grid {
    grid-template-columns: 1fr;
  }

  .csf-inline {
    grid-template-columns: 1fr;
  }

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

/* ── Wealth Check Promo Section ─────────────────────────────── */
.wc-promo-section {
  text-align: center;
}

.wc-promo-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: clamp(48px, 6vw, 80px) clamp(24px, 4vw, 48px);
  background: radial-gradient(circle at 50% 0%, rgba(12, 233, 186, 0.12), transparent 60%), rgba(255,255,255,0.03);
  border: 1px solid rgba(12, 233, 186, 0.18);
  border-radius: 32px;
}

.wc-promo-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 233, 186, 0.12);
  border: 1px solid rgba(12, 233, 186, 0.25);
  border-radius: 50%;
  color: var(--accent);
}

.wc-promo-icon svg {
  width: 26px;
  height: 26px;
}

.wc-promo-inner .eyebrow {
  color: var(--accent);
  justify-content: center;
  display: flex;
}

.wc-promo-inner h2 {
  margin: 0;
  max-width: 520px;
}

.wc-promo-sub {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0;
  line-height: 1.7;
}

.wc-promo-btn {
  margin-top: 4px;
  font-size: 1rem;
  padding: 14px 30px;
}

.wc-promo-note {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text-muted);
  font-size: 0.82rem;
  margin: 0;
}

.wc-promo-note svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  opacity: 0.7;
}

/* Nav Wealth Check accent link */
.nav-wealthcheck {
  color: var(--accent) !important;
  font-weight: 600;
}

/* ── Wealth Check CTA Strip (Footer) ───────────────────────── */
.wc-promo-strip-section {
  padding-top: 0;
}

.wc-promo-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(32px, 4vw, 48px) clamp(32px, 5vw, 56px);
  background: radial-gradient(circle at 0% 50%, rgba(12, 233, 186, 0.1), transparent 55%), rgba(255,255,255,0.03);
  border: 1px solid rgba(12, 233, 186, 0.15);
  border-radius: 28px;
}

.wc-promo-strip-copy {
  flex: 1;
  min-width: 0;
}

.wc-promo-strip-copy .eyebrow {
  margin-bottom: 8px;
}

.wc-promo-strip-copy h2 {
  margin: 0 0 8px;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

.wc-promo-strip-copy p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.9rem;
}

.wc-promo-strip-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.wc-promo-strip-action .button {
  white-space: nowrap;
}

@media (max-width: 680px) {
  .wc-promo-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .wc-promo-strip-action {
    align-items: flex-start;
    width: 100%;
  }
  .wc-promo-strip-action .button {
    width: 100%;
    text-align: center;
  }
}
