:root {
  --ink: #0b202b;
  --ink-2: #12323a;
  --panel: #183f42;
  --cream: #f4f1e8;
  --cream-2: #fffdf6;
  --gold: #b99a55;
  --gold-2: #dfc783;
  --sage: #8fa69b;
  --trust-blue: #7897a6;
  --mist: #d9e3df;
  --line: rgba(255, 255, 255, .14);
  --dark-line: rgba(11, 32, 43, .12);
  --muted: rgba(255, 250, 242, .72);
  --dark-muted: rgba(11, 32, 43, .68);
  --shadow: 0 24px 70px rgba(0, 0, 0, .28);
  --container: 1180px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --font-body: "Söhne", "Sohne", Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Tiempos Headline", "Tiempos Text", Tiempos, "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html { scroll-padding-top: 126px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--cream-2);
  background: var(--ink);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
html.lenis,
html.lenis body { height: auto; }
html.lenis.lenis-smooth { scroll-behavior: auto !important; }
html.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }
::selection { background: var(--gold-2); color: var(--ink); }

.container {
  width: min(calc(100% - 36px), var(--container));
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--gold-2);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--gold-2); outline-offset: 4px; }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 3px;
  background: rgba(255, 255, 255, .08);
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold-2), var(--sage));
  box-shadow: 0 0 18px rgba(232, 207, 131, .42);
}

.cursor-glow {
  position: fixed;
  left: var(--x, 50%);
  top: var(--y, 34%);
  z-index: 1;
  width: 360px;
  height: 360px;
  pointer-events: none;
  opacity: .5;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(232, 207, 131, .16), transparent 66%);
  filter: blur(14px);
}

.site-header {
  position: fixed;
  inset: 16px 0 auto;
  z-index: 30;
}
.nav-shell {
  width: min(calc(100% - 36px), 1220px);
  min-height: 74px;
  margin-inline: auto;
  padding: 12px 14px 12px 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s var(--ease);
}
.site-header.is-scrolled .nav-shell {
  background: rgba(255, 250, 242, .92);
  backdrop-filter: blur(18px);
  border-color: rgba(11, 32, 43, .1);
  box-shadow: 0 18px 52px rgba(0, 0, 0, .18);
}
.brand {
  display: inline-flex;
  align-items: center;
  padding: 9px 10px;
  border-radius: 8px;
  background: var(--cream-2);
}
.brand img { width: 132px; height: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: rgba(255, 250, 242, .78);
  font-size: 14px;
  font-weight: 750;
}
.site-header.is-scrolled .nav-links { color: rgba(11, 32, 43, .76); }
.nav-links a { position: relative; transition: color .2s ease; }
.nav-links a:not(.nav-call)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-links a[aria-current] { color: var(--gold-2); }
.site-header.is-scrolled .nav-links a[aria-current] { color: var(--ink); }
.nav-links a[aria-current]::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-call {
  padding: 14px 18px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--cream-2);
}
.site-header.is-scrolled .nav-call { background: var(--ink); color: var(--cream-2); }
.nav-call::after { display: none; }
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: var(--cream-2);
  background: rgba(255, 255, 255, .05);
}
.site-header.is-scrolled .menu-toggle { color: var(--ink); border-color: rgba(11, 32, 43, .14); }
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform .25s var(--ease), opacity .25s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  padding: 132px 0 76px;
  display: grid;
  align-items: center;
  overflow: visible;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(11, 32, 43, .94));
}
.hero-surface { position: absolute; inset: 0; z-index: 0; background: linear-gradient(135deg, #0b202b 0%, #12323a 48%, #183f42 100%); }
.hero-surface::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 26% 28%, rgba(223, 199, 131, .13), transparent 24%),
    radial-gradient(circle at 74% 48%, rgba(120, 151, 166, .18), transparent 28%);
  opacity: .95;
}
.surface-lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, black, transparent 76%);
}
.surface-panel {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .018));
  transform: rotate(-10deg);
  will-change: transform;
}
.surface-panel-one,
.surface-panel-two,
.clarity-stage,
.founder-image { --parallax-y: 0px; }
.surface-panel-one { width: 420px; height: 620px; right: 10%; top: 10%; }
.surface-panel-two { width: 260px; height: 380px; right: -30px; bottom: 8%; }
.surface-orbit {
  position: absolute;
  border: 1px solid rgba(232, 207, 131, .26);
  border-radius: 999px;
  opacity: .62;
  will-change: transform;
}
.surface-orbit-one {
  width: 360px;
  height: 360px;
  right: 18%;
  top: 22%;
}
.surface-orbit-two {
  width: 180px;
  height: 180px;
  left: 7%;
  bottom: 12%;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(500px, .92fr) minmax(430px, .9fr);
  gap: clamp(58px, 7vw, 124px);
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 18px;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 850;
}
.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0 6px rgba(232, 207, 131, .13);
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: var(--font-display);
  line-height: 1;
  letter-spacing: 0;
}
h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(54px, 4.8vw, 78px);
  line-height: .94;
}
h2 { margin-bottom: 22px; font-size: clamp(36px, 4.8vw, 64px); }
h3 { margin-bottom: 12px; font-size: 22px; }
p { color: var(--muted); line-height: 1.7; }
.hero-lede { max-width: 630px; margin-bottom: 28px; font-size: clamp(18px, 1.35vw, 21px); }
.hero-cta-row {
  display: flex;
  align-items: center;
  max-width: 680px;
}
.hero-actions, .mini-tags { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s ease, background .25s ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 16px 44px rgba(201, 162, 77, .22);
}
.button-primary:hover { box-shadow: 0 22px 58px rgba(201, 162, 77, .28); }
.button-secondary {
  color: var(--cream-2);
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .07);
}
.button-ghost {
  color: var(--ink);
  border-color: rgba(11, 32, 43, .14);
  background: rgba(11, 32, 43, .04);
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 560px);
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
}
.hero-metrics div {
  min-width: 0;
  padding: 14px 16px;
  border: 0;
  border-radius: 0;
  background: rgba(11, 32, 43, .35);
  backdrop-filter: none;
}
.hero-metrics strong { display: block; color: var(--cream-2); font-size: clamp(19px, 1.4vw, 24px); line-height: 1.1; white-space: nowrap; }
.hero-metrics span { display: block; margin-top: 6px; color: rgba(255, 250, 242, .72); font-size: 12px; line-height: 1.25; }

.hero-visual {
  position: relative;
  z-index: 4;
  min-height: 590px;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 18px 20px 92px;
  overflow: visible;
}
.hero-visual::before {
  content: "";
  position: absolute;
  width: min(100%, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(232, 207, 131, .2);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(232, 207, 131, .12), transparent 66%);
  animation: breathe 5.6s ease-in-out infinite;
}

.clarity-stage {
  position: relative;
  z-index: 20;
  width: min(100%, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(232, 207, 131, .14), transparent 27%),
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, .14), transparent 20%),
    rgba(255, 255, 255, .035);
  box-shadow: var(--shadow);
  overflow: visible !important;
  transform-style: preserve-3d;
  will-change: transform;
}
.clarity-stage::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 14%;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, .12);
  background: radial-gradient(circle, rgba(11, 32, 43, .16), rgba(11, 32, 43, .56));
  pointer-events: none;
}
.orbit {
  position: absolute;
  z-index: 2;
  inset: var(--inset);
  border-radius: inherit;
  border: 1px solid rgba(232, 207, 131, .28);
  border-top-color: rgba(255, 250, 242, .7);
  opacity: .78;
}
.orbit-one { --inset: 9%; animation: rotateClockwise 22s linear infinite; }
.orbit-two { --inset: 22%; animation: rotateCounter 16s linear infinite; }
.orbit-three { --inset: 34%; border-style: dashed; animation: rotateClockwise 11s linear infinite; }
.orbit-particles {
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: inherit;
  animation: rotateClockwise 13s linear infinite;
}
.orbit-particles span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold-2);
  box-shadow: 0 0 22px rgba(232, 207, 131, .9);
}
.orbit-particles span:nth-child(1) { transform: rotate(24deg) translateX(226px); }
.orbit-particles span:nth-child(2) { transform: rotate(154deg) translateX(168px); opacity: .74; }
.orbit-particles span:nth-child(3) { transform: rotate(278deg) translateX(116px); opacity: .58; }
.orbit-items {
  position: absolute;
  inset: 0;
  z-index: 40;
  pointer-events: none;
}
.orbit-label {
  position: absolute;
  display: inline-grid;
  place-items: center;
  min-width: 112px;
  min-height: 42px;
  padding: 10px 14px;
  z-index: 41;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  color: var(--cream-2);
  background: linear-gradient(135deg, rgba(11, 32, 43, .98), rgba(24, 63, 66, .96));
  box-shadow: 0 18px 48px rgba(0, 0, 0, .34), inset 0 0 0 1px rgba(223, 199, 131, .16);
  font-size: 13px;
  font-weight: 900;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .45);
  transform: translate(-50%, -50%);
  will-change: transform;
}
.orbit-label::before {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(232, 207, 131, .22), transparent 66%);
  opacity: .75;
}
.orbit-label.retirement {
  left: 50%;
  top: 8%;
  animation: floatRetirement 6.2s ease-in-out infinite;
}
.orbit-label.investments {
  right: -2%;
  top: 45%;
  animation: floatInvestments 7s ease-in-out infinite .45s;
}
.orbit-label.tax {
  left: 50%;
  bottom: 16%;
  animation: floatTax 6.6s ease-in-out infinite .9s;
}
.orbit-label.legacy {
  left: -2%;
  top: 45%;
  animation: floatLegacy 7.4s ease-in-out infinite .25s;
}
.clarity-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 190px;
  aspect-ratio: 1;
  border: 1px solid rgba(232, 207, 131, .45);
  border-radius: 999px;
  color: var(--cream-2);
  background: linear-gradient(145deg, rgba(24, 63, 66, .96), rgba(11, 32, 43, .96));
  box-shadow: inset 0 0 0 12px rgba(232, 207, 131, .07), 0 24px 80px rgba(0, 0, 0, .28);
  transform: translate(-50%, -50%);
  text-align: center;
  animation: corePulse 4s ease-in-out infinite;
}
.clarity-core span {
  color: rgba(255, 250, 242, .68);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.clarity-core strong {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 54px;
  line-height: .9;
}
.clarity-core em {
  color: var(--gold-2);
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
}
.signal-line {
  position: absolute;
  z-index: 2;
  width: 38%;
  height: 1px;
  left: 50%;
  top: 50%;
  background: linear-gradient(90deg, rgba(232, 207, 131, .7), transparent);
  transform-origin: left;
}
.signal-one { --signal-rotate: 28deg; transform: rotate(28deg); animation: signalPulse 2.4s ease-in-out infinite; }
.signal-two { --signal-rotate: 158deg; transform: rotate(158deg); animation: signalPulse 2.4s ease-in-out infinite .8s; }
.hero-data-grid {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 22;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: min(88%, 500px);
  transform: translateX(-50%);
}
.hero-data-grid div {
  min-width: 0;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 250, 242, .94);
  color: var(--ink);
  box-shadow: 0 16px 46px rgba(0, 0, 0, .2);
}
.hero-data-grid span,
.hero-data-grid strong,
.hero-data-grid small { display: block; }
.hero-data-grid span {
  color: #806624;
  font-size: 11px;
  font-weight: 950;
}
.hero-data-grid strong {
  margin-top: 4px;
  color: var(--ink);
  font-size: 15px;
}
.hero-data-grid small {
  margin-top: 4px;
  color: rgba(11, 32, 43, .68);
  font-size: 12px;
  line-height: 1.35;
}
.trust-strip {
  border-block: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .04);
}
.trust-grid {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-block: 20px;
  overflow-x: auto;
  color: rgba(255, 250, 242, .72);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 12px;
  font-weight: 850;
}
.trust-grid p { margin: 0; white-space: nowrap; }
.trust-grid p {
  animation: trustFloat 12s ease-in-out infinite alternate;
}
.trust-grid p:nth-child(even) { animation-delay: -4s; }

.section {
  position: relative;
  padding: clamp(72px, 8vw, 112px) 0;
  scroll-margin-top: 126px;
  overflow: hidden;
}
.section::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: max(24px, 8vw);
  top: 12%;
  border: 1px solid rgba(120, 151, 166, .16);
  border-radius: 999px;
  opacity: .72;
  transform: translate3d(0, 0, 0);
  animation: sectionDrift 12s ease-in-out infinite alternate;
  pointer-events: none;
}
.services::before,
.approach::before,
.contact-section::before {
  border-color: rgba(11, 32, 43, .1);
}
.interactive::before,
.questions::before,
.founder-section::before {
  border-color: rgba(223, 199, 131, .12);
}
.split-grid, .feature-grid, .calculator-grid, .faq-grid, .contact-card, .footer-grid, .founder-panel {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}
.intro-grid { align-items: center; }
.intro-brand {
  position: relative;
  min-height: clamp(230px, 30vw, 390px);
  display: grid;
  align-content: start;
}
.intro-brand .section-kicker {
  position: relative;
  z-index: 2;
}
.intro-brand img {
  position: absolute;
  left: clamp(-120px, -8vw, -56px);
  bottom: clamp(-120px, -8vw, -48px);
  width: clamp(300px, 36vw, 560px);
  max-width: none;
  opacity: .34;
  filter: saturate(.86) contrast(1.08);
  transform-origin: 44% 52%;
  animation: linkMarkFloat 12s var(--ease) infinite alternate;
}
.section-kicker {
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 13px;
  font-weight: 850;
}
.large-text { color: rgba(255, 250, 242, .76); font-size: clamp(19px, 2.4vw, 28px); }
.section-heading { max-width: 850px; margin-bottom: 46px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading.center .eyebrow { justify-content: center; }
.section-cta { margin-top: 22px; }

.services, .feature-band, .approach, .contact-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 4%, rgba(120, 151, 166, .16), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(185, 154, 85, .1), transparent 25%),
    linear-gradient(180deg, #f8f6ef, var(--cream));
}
.services { border-radius: 28px 28px 0 0; }
.services p, .feature-band p, .approach p, .contact-section p { color: var(--dark-muted); }
.services .eyebrow, .feature-band .eyebrow, .approach .eyebrow, .contact-section .eyebrow { color: #806624; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.service-card, .process-card {
  min-height: 266px;
  padding: 28px;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .66);
  box-shadow: 0 18px 50px rgba(11, 32, 43, .08);
  position: relative;
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s ease, border-color .25s ease;
  transform-style: preserve-3d;
}
.service-card::before, .process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 207, 131, .2), transparent 42%);
  opacity: 0;
  transition: opacity .25s ease;
}
.service-card:hover, .process-card:hover,
.service-card.is-active {
  background: white;
  border-color: rgba(11, 32, 43, .2);
  box-shadow: 0 24px 70px rgba(11, 32, 43, .12);
}
.service-card:hover::before, .process-card:hover::before,
.service-card.is-active::before { opacity: 1; }
.service-card::after,
.process-card::after {
  content: "";
  position: absolute;
  inset: -80% -30%;
  z-index: 0;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, .5), transparent 58%);
  opacity: 0;
  transform: translateX(-36%) rotate(8deg);
  transition: opacity .25s ease;
}
.service-card:hover::after,
.process-card:hover::after,
.service-card.is-active::after {
  opacity: .45;
  animation: premiumSheen 1.6s ease both;
}
.icon, .process-card span {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 42px;
  border-radius: 8px;
  color: var(--gold-2);
  background: var(--ink);
  font-weight: 900;
}
.service-card h3, .process-card h3 { color: var(--ink); font-size: 25px; }
.service-card p, .process-card p { color: var(--dark-muted); }
.service-card > * { position: relative; z-index: 1; }
.service-card button {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(201, 162, 77, .65);
  text-underline-offset: 5px;
}
.service-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  max-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style: none;
  color: rgba(11, 32, 43, .74);
  transition: max-height .35s var(--ease), margin-top .35s var(--ease);
}
.service-card.is-active ul,
.service-card:focus-within ul {
  max-height: 140px;
  margin-top: 16px;
}
.service-card li {
  position: relative;
  padding-left: 18px;
  line-height: 1.45;
}
.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
}

.feature-band { padding-top: 0; }
.founder-image {
  position: relative;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(11, 32, 43, .18);
  background: var(--panel);
}
.founder-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 28%, rgba(255, 255, 255, .2), transparent 46%);
  transform: translateX(-120%);
  animation: slowSheen 7s ease-in-out infinite;
  pointer-events: none;
}
.founder-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .8s var(--ease);
}
.founder-image:hover img { transform: scale(1.035); filter: saturate(1.06) contrast(1.02); }
.founder-image figcaption {
  padding: 16px 18px;
  color: var(--cream-2);
  background: var(--ink);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.links-mark {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  padding: 16px 18px;
  overflow: hidden;
  border: 1px solid rgba(11, 32, 43, .1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(217, 227, 223, .5)),
    radial-gradient(circle at 100% 0%, rgba(120, 151, 166, .18), transparent 38%);
  box-shadow: 0 18px 44px rgba(11, 32, 43, .08);
}
.links-mark::before {
  content: "";
  position: absolute;
  inset: -60% auto -60% -30%;
  width: 44%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .52), transparent);
  transform: rotate(18deg);
  animation: premiumSheen 6.5s ease-in-out infinite;
  pointer-events: none;
}
.links-mark span {
  position: relative;
  z-index: 1;
  color: rgba(11, 32, 43, .7);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.links-mark img {
  position: relative;
  z-index: 1;
  width: min(190px, 36vw);
  height: auto;
  opacity: .9;
}
.check-list { display: grid; gap: 14px; padding: 0; margin: 26px 0 0; list-style: none; }
.check-list li { position: relative; padding-left: 34px; color: rgba(11, 32, 43, .76); line-height: 1.65; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 18px;
  height: 10px;
  border-left: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  transform: rotate(-45deg);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.process-card span { border-radius: 999px; }
.founder-section {
  padding-block: clamp(68px, 7vw, 104px);
  background: var(--ink);
}
.founder-panel {
  padding: clamp(28px, 6vw, 70px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .04));
  box-shadow: var(--shadow);
}
.mini-tags { margin-top: 26px; }
.mini-tags span {
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  color: rgba(255, 250, 242, .74);
  background: rgba(255, 255, 255, .05);
}

.interactive {
  padding-block: clamp(74px, 8vw, 112px);
  background: var(--ink);
}
.planner-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--cream-2);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .22);
}
.planner-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -120px;
  top: -120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(120, 151, 166, .18), transparent 68%);
  animation: breathe 6s ease-in-out infinite;
  pointer-events: none;
}
.planner-card > * { position: relative; z-index: 1; }
.planner-card.is-strong { box-shadow: 0 28px 90px rgba(154, 174, 143, .26); }
.planner-card.is-low { box-shadow: 0 28px 90px rgba(201, 162, 77, .24); }
.score-output {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  padding: 24px;
  border-radius: 8px;
  color: var(--cream-2);
  background: linear-gradient(135deg, var(--ink), var(--ink-2));
}
.score-output span { color: rgba(255, 250, 242, .72); }
.score-output strong { font-family: var(--font-display); font-size: 62px; }
.score-meter {
  height: 10px;
  margin: -8px 0 24px;
  border-radius: 999px;
  background: rgba(11, 32, 43, .1);
  overflow: hidden;
}
.score-meter span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(.68);
  transform-origin: left;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--sage));
  transition: transform .35s var(--ease);
}
.planner-card label {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-bottom: 22px;
  color: rgba(11, 32, 43, .78);
  font-weight: 850;
}
.planner-card input[type="range"] { grid-column: 1 / -1; width: 100%; accent-color: var(--gold); }
.planner-card p { margin-bottom: 0; color: var(--dark-muted); }
.planner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.questions {
  background:
    radial-gradient(circle at 18% 24%, rgba(120, 151, 166, .14), transparent 26%),
    linear-gradient(180deg, var(--ink-2), #0b202b);
}
.faq-list { display: grid; gap: 14px; }
details {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
  overflow: hidden;
}
summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 850;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--gold-2); font-size: 26px; line-height: 1; transition: transform .2s var(--ease); }
details[open] summary::after { transform: rotate(45deg); }
details p { padding: 0 24px 24px; margin: 0; }
details[open] { background: rgba(255, 255, 255, .075); }

.contact-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 6vw, 70px);
  border-radius: 8px;
  background: var(--cream-2);
  box-shadow: 0 24px 80px rgba(11, 32, 43, .12);
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(120, 151, 166, .08), transparent),
    radial-gradient(circle at 78% 16%, rgba(185, 154, 85, .12), transparent 28%);
  pointer-events: none;
}
.contact-card > * { position: relative; z-index: 1; }
.contact-details { display: grid; gap: 12px; margin-top: 28px; }
.contact-details a, .contact-details span { color: var(--ink); font-weight: 850; }
.contact-form { display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 8px; color: rgba(11, 32, 43, .74); font-weight: 850; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid rgba(11, 32, 43, .14);
  border-radius: 8px;
  padding: 15px 16px;
  color: var(--ink);
  background: white;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 5px rgba(201, 162, 77, .16); }
.contact-form .button { width: fit-content; border: 0; }
.form-note { min-height: 24px; color: var(--dark-muted); }

.site-footer { padding: 64px 0; background: #041713; }
.footer-grid { grid-template-columns: 1.1fr .55fr 1fr; }
.footer-brand { margin-bottom: 18px; }
.site-footer a { display: block; margin-bottom: 10px; color: rgba(255, 250, 242, .68); }
.site-footer .brand {
  display: inline-flex;
  width: auto;
}
.site-footer .brand img { width: 150px; }
.site-footer h2 { margin-bottom: 18px; color: var(--gold-2); text-transform: uppercase; letter-spacing: .12em; font: 850 14px/1.2 var(--font-body); }
.site-footer p { color: rgba(255, 250, 242, .58); font-size: 14px; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
.delay-3 { transition-delay: .32s; }

@keyframes draw { from { stroke-dashoffset: 452; } to { stroke-dashoffset: 82; } }
@keyframes scaleIn { from { transform: scaleX(.1); } to { transform: scaleX(1); } }
@keyframes cardShine { 0%, 45% { transform: translateX(-62%) rotate(12deg); } 62%, 100% { transform: translateX(62%) rotate(12deg); } }
@keyframes trustFloat { from { transform: translateY(0); } to { transform: translateY(-3px); } }
@keyframes rotateClockwise { to { transform: rotate(360deg); } }
@keyframes rotateCounter { to { transform: rotate(-360deg); } }
@keyframes breathe {
  0%, 100% { transform: scale(.96); opacity: .7; }
  50% { transform: scale(1.04); opacity: 1; }
}
@keyframes signalPulse {
  0%, 100% { opacity: .18; transform: rotate(var(--signal-rotate, 0deg)) scaleX(.45); }
  45% { opacity: .9; transform: rotate(var(--signal-rotate, 0deg)) scaleX(1); }
}
@keyframes corePulse {
  0%, 100% { box-shadow: inset 0 0 0 12px rgba(232, 207, 131, .07), 0 24px 80px rgba(0, 0, 0, .28); }
  50% { box-shadow: inset 0 0 0 18px rgba(232, 207, 131, .12), 0 28px 92px rgba(201, 162, 77, .18); }
}
@keyframes floatRetirement {
  0%, 100% { transform: translate(-50%, -50%) translate3d(-10px, 0, 0); }
  45% { transform: translate(-50%, -50%) translate3d(14px, -8px, 0); }
  70% { transform: translate(-50%, -50%) translate3d(7px, 5px, 0); }
}
@keyframes floatInvestments {
  0%, 100% { transform: translateY(-50%) translate3d(0, -8px, 0); }
  50% { transform: translateY(-50%) translate3d(12px, 8px, 0); }
}
@keyframes floatTax {
  0%, 100% { transform: translate(-50%, 50%) translate3d(12px, 0, 0); }
  45% { transform: translate(-50%, 50%) translate3d(-12px, 8px, 0); }
  72% { transform: translate(-50%, 50%) translate3d(-3px, -5px, 0); }
}
@keyframes floatLegacy {
  0%, 100% { transform: translateY(-50%) translate3d(0, 8px, 0); }
  50% { transform: translateY(-50%) translate3d(-12px, -8px, 0); }
}
@keyframes sectionDrift {
  from { transform: translate3d(0, 0, 0) scale(.96); }
  to { transform: translate3d(-28px, 18px, 0) scale(1.04); }
}
@keyframes linkMarkFloat {
  from { transform: translate3d(0, 0, 0) rotate(-5deg) scale(.98); }
  to { transform: translate3d(22px, -16px, 0) rotate(4deg) scale(1.04); }
}
@keyframes premiumSheen {
  from { transform: translateX(-42%) rotate(8deg); }
  to { transform: translateX(42%) rotate(8deg); }
}
@keyframes slowSheen {
  0%, 42% { transform: translateX(-120%); opacity: 0; }
  52% { opacity: .75; }
  68%, 100% { transform: translateX(120%); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .cursor-glow { display: none; }
  .scroll-progress span { transition: none; }
}

@media (min-width: 981px) and (max-height: 820px) {
  .site-header { inset: 12px 0 auto; }
  .nav-shell { min-height: 66px; padding-block: 9px; }
  .brand img { width: 122px; }
  .hero { min-height: auto; padding: 106px 0 42px; }
  .hero-grid { align-items: start; }
  .eyebrow { margin-bottom: 12px; }
  h1 { max-width: 650px; margin-bottom: 16px; font-size: clamp(48px, 4.4vw, 70px); line-height: .94; }
  .hero-lede { max-width: 620px; font-size: 18px; line-height: 1.55; margin-bottom: 18px; }
  .hero-cta-row { max-width: 620px; }
  .button { min-height: 48px; padding-inline: 18px; }
  .hero-metrics { margin-top: 18px; width: min(100%, 540px); }
  .hero-metrics div { padding: 12px 14px; }
  .hero-metrics strong { font-size: clamp(19px, 1.4vw, 23px); }
  .hero-visual { min-height: 470px; padding: 8px 22px 82px; }
  .clarity-stage { width: min(100%, 390px); }
  .orbit-label { min-width: 94px; min-height: 36px; font-size: 11px; padding: 8px 10px; }
  .orbit-particles span:nth-child(1) { transform: rotate(24deg) translateX(170px); }
  .orbit-particles span:nth-child(2) { transform: rotate(154deg) translateX(126px); }
  .orbit-particles span:nth-child(3) { transform: rotate(278deg) translateX(88px); }
  .clarity-core { width: 156px; }
  .clarity-core strong { font-size: 44px; }
  .hero-data-grid { bottom: 8px; }
}

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 98px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    background: rgba(11, 32, 43, .96);
    box-shadow: var(--shadow);
    transform: translateY(-16px) scale(.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s var(--ease);
  }
  .nav-links.is-open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
  .nav-links a { padding: 16px; border-radius: 8px; color: var(--cream-2); }
  .nav-call { margin-top: 8px; text-align: center; color: var(--ink) !important; }
  .hero-grid, .split-grid, .feature-grid, .calculator-grid, .faq-grid, .contact-card, .footer-grid, .founder-panel { grid-template-columns: 1fr; }
  .intro-brand { min-height: 260px; }
  .intro-brand img { left: -74px; bottom: -92px; width: min(440px, 88vw); }
  .hero-cta-row { max-width: none; }
  .hero-visual { min-height: auto; padding: 36px 24px 148px; }
  .clarity-stage { width: min(100%, 460px); }
  .orbit-particles span:nth-child(1) { transform: rotate(24deg) translateX(200px); }
  .orbit-particles span:nth-child(2) { transform: rotate(154deg) translateX(148px); }
  .orbit-particles span:nth-child(3) { transform: rotate(278deg) translateX(102px); }
  .hero-data-grid { bottom: 10px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-grid, .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .surface-orbit { display: none; }
}

@media (max-width: 640px) {
  .container, .nav-shell { width: min(calc(100% - 24px), var(--container)); }
  .nav-shell { min-height: 66px; padding: 9px 10px 9px 12px; }
  .brand img { width: 118px; }
  .hero { padding-top: 118px; }
  h1 { font-size: clamp(42px, 13vw, 62px); }
  h2 { font-size: clamp(34px, 11vw, 52px); }
  .hero-actions .button { width: 100%; }
  .hero-metrics, .service-grid, .process-grid { grid-template-columns: 1fr; }
  .hero-metrics strong { white-space: normal; }
  .intro-brand { min-height: 210px; }
  .intro-brand img { left: -62px; bottom: -70px; width: min(360px, 92vw); }
  .links-mark { grid-template-columns: 1fr; align-items: start; }
  .links-mark img { width: min(210px, 72vw); }
  .hero-visual { padding: 26px 0 230px; }
  .clarity-stage { width: min(100%, 340px); }
  .orbit-label {
    min-width: 88px;
    min-height: 36px;
    font-size: 11px;
  }
  .orbit-label.retirement { top: 5%; }
  .orbit-label.investments { right: -6%; }
  .orbit-label.tax { bottom: 14%; }
  .orbit-label.legacy { left: -6%; }
  .orbit-particles span:nth-child(1) { transform: rotate(24deg) translateX(148px); }
  .orbit-particles span:nth-child(2) { transform: rotate(154deg) translateX(108px); }
  .orbit-particles span:nth-child(3) { transform: rotate(278deg) translateX(76px); }
  .clarity-core { width: 132px; }
  .clarity-core strong { font-size: 38px; }
  .hero-data-grid {
    bottom: 0;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .service-card, .process-card { min-height: auto; }
  .planner-actions .button { width: 100%; }
  .cursor-glow { display: none; }
}
