:root {
  --ink: #100b17;
  --ink-soft: #191020;
  --paper: #f5f0e8;
  --paper-deep: #ede3d6;
  --white: #fff;
  --primary: #6d28d9;
  --primary-light: #b78aff;
  --primary-deep: #4c1d95;
  --gold: #d4a84f;
  --gold-light: #f0d08a;
  --gold-deep: #8c6119;
  --accent: var(--primary);
  --accent-deep: var(--primary-deep);
  --muted-dark: #b5aebe;
  --muted-light: #625b67;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(16, 11, 23, 0.15);
  --header-height: 84px;
  --shell: min(1320px, calc(100vw - 72px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--primary);
  color: var(--white);
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
p,
ul,
ol,
figure,
blockquote {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-160%);
  background: var(--primary);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  z-index: 160;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--primary);
  will-change: transform;
}

.site-header {
  position: fixed;
  z-index: 120;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background-color 260ms ease, border-color 260ms ease, backdrop-filter 260ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: var(--line-dark);
  background: rgba(16, 11, 23, 0.9);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  background: var(--primary);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.brand-mark-logo {
  width: 76px;
  height: 54px;
  overflow: hidden;
  padding: 0;
  background: transparent;
}

.brand-mark-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(109, 40, 217, 0.28));
}

.legal-page .brand-mark-logo {
  padding: 4px;
  background: var(--ink);
}

.brand-copy {
  display: grid;
  width: 132px;
  justify-items: center;
  line-height: 1.15;
}

.brand-copy strong {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  white-space: nowrap;
  text-transform: uppercase;
}

.brand-copy small {
  display: block;
  width: 100%;
  margin-top: 5px;
  color: var(--muted-dark);
  font-size: 0.6rem;
  letter-spacing: 0.52em;
  text-align: center;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 42px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding-block: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  content: "";
  transition: transform 240ms var(--ease);
}

.desktop-nav a:hover {
  color: var(--white);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 16px 22px;
  border: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.065em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, transform 220ms var(--ease), box-shadow 220ms ease;
}

.button span {
  font-size: 1.15em;
  transition: transform 220ms var(--ease);
}

.button:hover {
  transform: translateY(-3px);
}

.button:hover span {
  transform: translate(3px, -3px);
}

.button-small {
  min-height: 46px;
  padding: 12px 18px;
  font-size: 0.67rem;
}

.button-large {
  min-height: 66px;
  padding: 20px 28px;
}

.button-accent {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 16px 52px rgba(109, 40, 217, 0.22);
}

.button-accent:hover {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 20px 70px rgba(212, 168, 79, 0.24);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: var(--gold);
  color: var(--ink);
}

.menu-toggle,
.mobile-menu,
.mobile-sticky-cta {
  display: none;
}

.mobile-cta-sticker {
  display: none;
}

.hero {
  position: relative;
  min-height: max(820px, 100svh);
  overflow: hidden;
  background: var(--ink);
}

.hero-grid,
.final-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 84%);
}

.hero-glow {
  position: absolute;
  top: -22vw;
  right: -18vw;
  width: 65vw;
  height: 65vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 40, 217, 0.22), transparent 66%);
  filter: blur(20px);
  pointer-events: none;
}

.hero-ghost {
  position: absolute;
  z-index: 0;
  right: -0.025em;
  bottom: -0.22em;
  color: transparent;
  font-size: clamp(6rem, 15.8vw, 16rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.055);
  user-select: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: max(820px, 100svh);
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
  align-items: center;
  gap: clamp(48px, 6vw, 98px);
  padding-top: calc(var(--header-height) + 62px);
  padding-bottom: 96px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 810px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary-light);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

.eyebrow-dark {
  color: var(--primary-deep);
}

.hero h1 {
  max-width: 13ch;
  margin-top: 26px;
  font-size: clamp(3.85rem, 6.25vw, 7.15rem);
  font-weight: 900;
  letter-spacing: -0.072em;
  line-height: 0.91;
}

.hero h1 em {
  display: inline-block;
  color: var(--gold-light);
  letter-spacing: -0.045em;
}

.hero-lead {
  max-width: 680px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease;
}

.text-link:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.hero-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 530px);
  transform: translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
}

.photo-frame {
  position: relative;
  height: clamp(570px, 68vh, 760px);
  overflow: hidden;
  clip-path: polygon(8% 0, 100% 0, 100% 92%, 91% 100%, 0 100%, 0 8%);
  background: #21172a;
}

.photo-frame::after {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  clip-path: inherit;
  content: "";
  pointer-events: none;
}

.photo-frame picture,
.photo-frame img {
  width: 100%;
  height: 100%;
}

.photo-frame img {
  object-fit: cover;
  object-position: 50% 45%;
  filter: saturate(0.72) contrast(1.08);
}

.photo-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 11, 23, 0.56), transparent 38%), linear-gradient(120deg, rgba(109, 40, 217, 0.14), transparent 42%);
  pointer-events: none;
}

.visual-stamp {
  position: absolute;
  top: -24px;
  right: -22px;
  display: grid;
  width: 142px;
  height: 142px;
  align-content: space-between;
  padding: 19px;
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.visual-stamp > span {
  font-size: 0.65rem;
  font-weight: 900;
}

.visual-stamp p {
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.24;
}

.visual-note {
  position: absolute;
  right: -8px;
  bottom: 38px;
  display: flex;
  width: min(310px, 76%);
  align-items: flex-start;
  gap: 12px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(16, 11, 23, 0.86);
  backdrop-filter: blur(15px);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.73rem;
  line-height: 1.55;
}

.visual-note strong {
  color: var(--white);
  font-size: 0.78rem;
}

.pulse-dot {
  position: relative;
  width: 8px;
  height: 8px;
  margin-top: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(212, 168, 79, 0.14);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  width: 52px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: var(--gold);
  content: "";
  animation: cue 2s var(--ease) infinite;
}

@keyframes cue {
  0% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}

.principles {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding-block: 19px;
  border-block: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--primary);
  color: var(--white);
}

.principles-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 22px;
  will-change: transform;
  animation: principles-marquee 26s linear infinite;
}

.principles:hover .principles-track {
  animation-play-state: paused;
}

@keyframes principles-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 11px)); }
}

.principles span {
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.principles i {
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  background: var(--gold);
}

.section-light {
  position: relative;
  background: var(--paper);
  color: var(--ink);
}

.section-dark {
  position: relative;
  background: var(--ink);
  color: var(--white);
}

.problem {
  padding: 150px 0 92px;
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(200px, 0.34fr) minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}

.display-title {
  max-width: 13ch;
  font-size: clamp(3rem, 5.25vw, 6.2rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.display-title em {
  letter-spacing: -0.035em;
}

.section-light .display-title em {
  color: var(--primary-deep);
}

.section-dark .display-title em,
.process .display-title em {
  color: var(--gold-light);
}

.section-lead {
  max-width: 680px;
  margin-top: 28px;
  color: var(--muted-light);
  font-size: clamp(1.05rem, 1.4vw, 1.23rem);
  line-height: 1.7;
}

.friction-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 100px;
}

.friction-card {
  position: relative;
  display: flex;
  min-height: 340px;
  flex-direction: column;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(16, 11, 23, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 48px rgba(16, 11, 23, 0.08);
  backdrop-filter: blur(14px);
  transition: background-color 240ms ease, border-color 240ms ease, box-shadow 240ms ease, transform 240ms var(--ease);
}

.friction-card:hover {
  z-index: 1;
  transform: translateY(-7px);
  border-color: rgba(109, 40, 217, 0.2);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 26px 64px rgba(16, 11, 23, 0.14);
}

.friction-card > span,
.included-item > span {
  color: var(--primary-deep);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.friction-card h3 {
  margin-top: auto;
  font-size: clamp(1.35rem, 1.65vw, 1.8rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.friction-card p {
  margin-top: 18px;
  color: var(--muted-light);
  font-size: 0.92rem;
  line-height: 1.62;
}

.friction-card-accent,
.friction-card-accent:hover {
  border-color: rgba(183, 138, 255, 0.32);
  background: rgba(109, 40, 217, 0.88);
  box-shadow: 0 24px 64px rgba(76, 29, 149, 0.24);
  color: var(--white);
}

.friction-card-accent > span,
.friction-card-accent p {
  color: rgba(255, 255, 255, 0.76);
}

.belief {
  position: relative;
  display: grid;
  min-height: 330px;
  margin-top: 52px;
  place-items: center;
  overflow: hidden;
  padding: clamp(40px, 7vw, 100px);
  border: 1px solid rgba(16, 11, 23, 0.12);
  border-radius: 8px;
  background: rgba(16, 11, 23, 0.94);
  box-shadow: 0 28px 72px rgba(16, 11, 23, 0.18);
  backdrop-filter: blur(14px);
  color: var(--white);
  text-align: center;
}

.belief::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
}

.belief > span {
  position: absolute;
  top: -0.42em;
  left: 0.07em;
  color: rgba(109, 40, 217, 0.2);
  font-family: Georgia, serif;
  font-size: 16rem;
  line-height: 1;
}

.belief p {
  position: relative;
  max-width: 960px;
  font-size: clamp(2rem, 3.7vw, 4.1rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.story {
  overflow: hidden;
  padding: 155px 0;
}

.story::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 52%;
  background: radial-gradient(circle at 60% 40%, rgba(109, 40, 217, 0.13), transparent 45%);
  content: "";
}

.story-word {
  position: absolute;
  right: -0.02em;
  bottom: -0.12em;
  color: transparent;
  font-size: clamp(6rem, 14vw, 14rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.055);
}

.story-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(380px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(64px, 9vw, 145px);
}

.story-photo {
  position: relative;
  transform: translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
}

.story-photo::before {
  position: absolute;
  z-index: -1;
  top: -18px;
  right: 28px;
  bottom: 18px;
  left: -18px;
  border: 1px solid rgba(212, 168, 79, 0.52);
  content: "";
}

.story-photo picture,
.story-photo img {
  width: 100%;
}

.story-photo img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.82) contrast(1.04);
}

.story-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(16, 11, 23, 0.9);
  backdrop-filter: blur(12px);
}

.story-photo figcaption span {
  color: var(--gold-light);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-photo figcaption small {
  max-width: 230px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.63rem;
  line-height: 1.45;
  text-align: right;
}

.story-copy .display-title {
  margin-top: 24px;
}

.story-text {
  max-width: 660px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.69);
  font-size: 1.06rem;
  line-height: 1.78;
}

.story-text p + p {
  margin-top: 18px;
}

.manifesto {
  display: grid;
  gap: 14px;
  max-width: 660px;
  margin-top: 38px;
  padding-block: 28px;
  border-block: 1px solid var(--line-dark);
}

.manifesto p {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 800;
}

.manifesto span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 0.65rem;
}

.story-note {
  max-width: 610px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  line-height: 1.65;
}

.process {
  padding: 145px 0 155px;
  border-top: 1px solid var(--line-dark);
}

.split-intro-dark .section-lead {
  color: var(--muted-dark);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 104px;
}

.process-step {
  min-height: 330px;
  padding-right: 34px;
}

.step-number {
  color: var(--gold-light);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.step-line {
  position: relative;
  width: 100%;
  height: 1px;
  margin-top: 28px;
  background: var(--line-dark);
}

.step-line i {
  position: absolute;
  top: -4px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(212, 168, 79, 0.11);
}

.process-step h3 {
  margin-top: 54px;
  font-size: clamp(1.45rem, 2vw, 2.15rem);
  font-weight: 850;
  letter-spacing: -0.045em;
}

.process-step p {
  max-width: 280px;
  margin-top: 18px;
  color: var(--muted-dark);
  font-size: 0.92rem;
  line-height: 1.7;
}

.offer {
  padding: 155px 0;
}

.offer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  align-items: start;
  gap: clamp(62px, 8vw, 128px);
}

.offer-copy .display-title {
  margin-top: 24px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 72px;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.included-item {
  min-height: 230px;
  padding: 26px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.included-item h3 {
  margin-top: 44px;
  font-size: 1.2rem;
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.included-item p {
  margin-top: 12px;
  color: var(--muted-light);
  font-size: 0.85rem;
  line-height: 1.62;
}

.offer-card {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  overflow: hidden;
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 32px 90px rgba(76, 29, 149, 0.22);
}

.offer-card::after {
  position: absolute;
  top: 60px;
  right: -82px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.offer-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.offer-card-main {
  position: relative;
  z-index: 1;
  padding: 48px 34px 42px;
}

.offer-kicker {
  color: var(--gold-light);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-card-main h3 {
  max-width: 8ch;
  margin-top: 16px;
  font-size: clamp(2.5rem, 3.9vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.offer-card-main > p {
  max-width: 30ch;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  line-height: 1.7;
}

.offer-card-bottom {
  position: relative;
  z-index: 1;
  padding: 26px 34px 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.offer-card-bottom .button {
  width: 100%;
}

.faq {
  padding: 140px 0 155px;
  border-top: 1px solid var(--line-light);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.74fr) minmax(0, 1.26fr);
  align-items: start;
  gap: clamp(70px, 10vw, 160px);
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 34px);
}

.faq-heading .display-title {
  margin-top: 24px;
}

.faq-list {
  border-top: 1px solid var(--line-light);
}

.faq-item {
  border-bottom: 1px solid var(--line-light);
}

.faq-item summary {
  display: grid;
  min-height: 100px;
  grid-template-columns: 40px 1fr 24px;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary > span {
  color: var(--primary-deep);
  font-size: 0.65rem;
  font-weight: 900;
}

.faq-item summary strong {
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  font-weight: 820;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.faq-item summary i {
  position: relative;
  width: 20px;
  height: 20px;
}

.faq-item summary i::before,
.faq-item summary i::after {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 220ms ease;
}

.faq-item summary i::after {
  transform: rotate(90deg);
}

.faq-item[open] summary i::after {
  transform: rotate(0);
}

.faq-item p {
  max-width: 690px;
  padding: 0 44px 28px 58px;
  color: var(--muted-light);
  line-height: 1.75;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 800px;
  place-items: center;
  overflow: hidden;
  padding: 140px 0;
  background: var(--ink-soft);
  text-align: center;
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  border: 1px solid rgba(212, 168, 79, 0.2);
  border-radius: 50%;
  content: "";
}

.final-cta::before {
  width: 640px;
  height: 640px;
}

.final-cta::after {
  width: 860px;
  height: 860px;
}

.final-grid {
  mask-image: radial-gradient(circle, black, transparent 72%);
}

.final-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

.final-brand-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: min(620px, 72vw);
  height: auto;
  opacity: 0.075;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.final-content .eyebrow {
  justify-content: center;
}

.final-content h2 {
  max-width: 13ch;
  margin-top: 30px;
  font-size: clamp(3.2rem, 6.5vw, 7.2rem);
  font-weight: 900;
  letter-spacing: -0.073em;
  line-height: 0.92;
}

.final-content h2 em {
  color: var(--gold-light);
}

.final-content > p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.1rem;
  line-height: 1.7;
}

.final-content .button {
  margin-top: 40px;
}

.final-content small {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
}

.site-footer {
  padding: 72px 0 28px;
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
}

.brand-footer-logo {
  gap: 16px;
}

.footer-logo {
  display: block;
  width: 112px;
  height: auto;
  object-fit: contain;
  image-rendering: auto;
  filter: drop-shadow(0 10px 24px rgba(109, 40, 217, 0.22));
}

.legal-page {
  background: var(--paper);
  color: var(--ink);
}

.legal-header {
  border-bottom: 1px solid var(--line-light);
  background: var(--paper);
}

.legal-header-inner {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-page .brand-copy small {
  color: var(--muted-light);
}

.legal-back {
  padding-block: 10px;
  border-bottom: 1px solid var(--line-light);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 180ms ease;
}

.legal-back:hover {
  border-color: var(--ink);
}

.legal-main {
  max-width: 980px;
  padding-top: 112px;
  padding-bottom: 130px;
}

.legal-main h1 {
  max-width: 10ch;
  margin-top: 24px;
  font-size: clamp(3.6rem, 7vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.legal-updated {
  margin-top: 24px;
  color: var(--muted-light);
  font-size: 0.72rem;
  font-weight: 750;
}

.legal-intro {
  max-width: 820px;
  margin-top: 44px;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.65;
}

.legal-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 0.62fr);
  gap: 48px;
  margin-top: 72px;
  padding-top: 32px;
  border-top: 1px solid var(--line-light);
}

.legal-section h2 {
  font-size: 1.12rem;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.legal-section > :not(h2) {
  grid-column: 2;
}

.legal-section p,
.legal-section li {
  color: #4e544f;
  line-height: 1.75;
}

.legal-section p + p,
.legal-section ul + p {
  margin-top: 18px;
}

.legal-section ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.legal-section li {
  position: relative;
  padding-left: 20px;
}

.legal-section li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  content: "";
}

.legal-section a {
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-weight: 750;
}

.legal-note {
  margin-top: 80px;
  padding: 32px;
  background: var(--gold);
}

.legal-note strong {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.legal-note p {
  margin-top: 8px;
  color: rgba(16, 11, 23, 0.76);
}

.legal-footer {
  border-top: 1px solid var(--line-light);
  background: var(--paper-deep);
}

.legal-footer .shell {
  display: flex;
  min-height: 100px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-footer a {
  border-bottom: 1px solid var(--line-light);
}

/* Websther Silva profile */
.profile-page {
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
}

.profile-header {
  border-bottom: 1px solid var(--line-dark);
  color: var(--white);
  background: var(--ink);
}

.profile-header-inner {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.profile-home-link {
  min-height: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.profile-home-link:hover,
.profile-home-link:focus-visible {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.profile-hero {
  position: relative;
  min-height: min(760px, calc(100svh - 150px));
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.profile-hero-media,
.profile-hero-media img,
.profile-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.profile-hero-media img {
  object-fit: cover;
  object-position: 62% 30%;
}

.profile-hero-shade {
  background: rgba(10, 7, 15, 0.62);
}

.profile-hero-content {
  position: relative;
  z-index: 1;
  min-height: min(760px, calc(100svh - 150px));
  padding-block: 80px 72px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.profile-hero-content h1 {
  max-width: 9ch;
  margin: 14px 0 18px;
  font-size: clamp(4rem, 9vw, 8.5rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
}

.profile-hero-content > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.profile-hero-content .button {
  margin-top: 28px;
}

.brand-profile-hero .profile-hero-content h1 {
  max-width: 11ch;
}

.brand-profile-hero .profile-hero-media img {
  object-position: 62% 34%;
}

.profile-intro,
.profile-principles {
  padding-block: 112px;
}

.profile-current {
  padding-block: 96px;
  border-bottom: 1px solid var(--line-light);
}

.profile-current-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.42fr);
  align-items: start;
  gap: clamp(48px, 8vw, 112px);
}

.profile-current-copy h2 {
  max-width: 13ch;
  margin-top: 14px;
  font-size: clamp(2.2rem, 4.7vw, 4.8rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.profile-current-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 24px;
  color: #4e544f;
  font-size: 1.04rem;
  line-height: 1.75;
}

.profile-current-facts {
  margin: 0;
  border-top: 1px solid var(--line-light);
}

.profile-current-facts div {
  padding-block: 18px;
  border-bottom: 1px solid var(--line-light);
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 20px;
}

.profile-current-facts dt {
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1.45;
  text-transform: uppercase;
}

.profile-current-facts dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.45;
}

.profile-copy-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.43fr) minmax(0, 0.57fr);
  gap: clamp(46px, 8vw, 120px);
}

.profile-copy-grid h2,
.profile-brand-layout h2,
.profile-principles-head h2,
.profile-cta h2 {
  margin-top: 14px;
  font-size: clamp(2.2rem, 4.7vw, 4.8rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.profile-prose {
  display: grid;
  gap: 22px;
}

.profile-prose p,
.profile-brand-layout p,
.profile-principles-list p,
.profile-cta > .shell > p:not(.eyebrow) {
  font-size: 1.04rem;
  line-height: 1.75;
}

.profile-prose p,
.profile-principles-list p {
  color: #4e544f;
}

.profile-brand-section {
  padding-block: 104px;
  color: var(--white);
  background: var(--ink);
}

.profile-brand-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.4fr) minmax(0, 0.6fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}

.profile-brand-mark {
  min-height: 360px;
  display: grid;
  place-items: center;
}

.profile-brand-mark img {
  width: min(100%, 420px);
  height: auto;
  filter: brightness(1.18) drop-shadow(0 22px 36px rgba(109, 40, 217, 0.28));
}

.profile-brand-layout h2 {
  max-width: 11ch;
  margin-bottom: 28px;
}

.profile-brand-layout p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.7);
}

.profile-brand-layout p + p {
  margin-top: 18px;
}

.profile-brand-link {
  width: fit-content;
  margin-top: 28px;
  color: var(--gold-light);
}

.profile-light-link {
  border-bottom-color: rgba(76, 29, 149, 0.36);
  color: var(--primary-deep);
}

.profile-light-link:hover,
.profile-light-link:focus-visible {
  border-bottom-color: var(--primary-deep);
  color: var(--ink);
}

.profile-principles-head {
  max-width: 850px;
}

.profile-principles-list {
  margin-top: 72px;
  border-top: 1px solid var(--line-light);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.profile-principles-list article {
  min-width: 0;
  padding: 32px 34px 0 0;
}

.profile-principles-list article + article {
  padding-left: 34px;
  border-left: 1px solid var(--line-light);
}

.profile-principles-list span {
  color: var(--primary);
  font-size: 0.74rem;
  font-weight: 900;
}

.profile-principles-list h3 {
  margin: 18px 0 12px;
  font-size: 1.28rem;
  letter-spacing: 0;
}

.profile-cta {
  padding-block: 108px;
  color: var(--white);
  background: #17101f;
}

.profile-cta > .shell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.profile-cta h2 {
  max-width: 13ch;
}

.profile-cta > .shell > p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.68);
}

.profile-cta .button {
  margin-top: 32px;
}

.profile-footer {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  align-items: start;
  gap: 50px;
}

.footer-main > p {
  color: rgba(255, 255, 255, 0.56);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.5;
}

.footer-links {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.footer-links a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 750;
  transition: border-color 180ms ease, color 180ms ease;
}

.footer-links a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 760ms var(--ease), transform 760ms var(--ease), clip-path 850ms var(--ease);
}

.motion-ready .reveal-title {
  clip-path: inset(0 0 100% 0);
  transform: translateY(12px);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .reveal-title.is-visible {
  clip-path: inset(0 0 0 0);
}

.motion-ready [data-delay="1"] { transition-delay: 90ms; }
.motion-ready [data-delay="2"] { transition-delay: 180ms; }
.motion-ready [data-delay="3"] { transition-delay: 270ms; }
.motion-ready [data-delay="4"] { transition-delay: 360ms; }

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 48px, 1080px);
  }

  .desktop-nav {
    gap: 18px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.75fr);
    gap: 46px;
  }

  .hero h1 {
    font-size: clamp(3.65rem, 6.2vw, 5.6rem);
  }

  .visual-stamp {
    right: -8px;
  }

  .friction-card {
    min-height: 290px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 76px;
  }

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

  .nav-wrap {
    height: var(--header-height);
  }

  .site-header.is-open {
    height: 100dvh;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: grid;
    width: 48px;
    height: 48px;
    place-content: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 20px;
    height: 1px;
    background: var(--white);
    transition: transform 220ms ease;
  }

  .site-header.is-open .menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .site-header.is-open .menu-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    z-index: 2;
    inset: var(--header-height) 0 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-color: var(--gold) var(--ink);
    scrollbar-width: thin;
    padding: 44px 24px calc(28px + env(safe-area-inset-bottom));
    transform: translateY(-14px);
    visibility: hidden;
    opacity: 0;
    background: var(--ink);
    transition: visibility 0s linear 240ms, opacity 240ms ease, transform 240ms var(--ease);
  }

  .mobile-menu::-webkit-scrollbar {
    width: 7px;
  }

  .mobile-menu::-webkit-scrollbar-thumb {
    background: var(--gold);
  }

  .site-header.is-open .mobile-menu {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
  }

  .mobile-menu nav {
    display: grid;
  }

  .mobile-menu nav a {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line-dark);
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 850;
    letter-spacing: -0.05em;
  }

  .mobile-menu nav span {
    color: var(--gold-light);
    font-size: 0.65rem;
    letter-spacing: 0;
  }

  .mobile-menu > .button {
    width: 100%;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    padding-top: calc(var(--header-height) + 78px);
    padding-bottom: 110px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(3.8rem, 10vw, 6.4rem);
  }

  .hero-visual {
    width: min(88vw, 590px);
    margin-top: 22px;
    justify-self: center;
  }

  .photo-frame {
    height: min(740px, 92vw);
  }

  .scroll-cue {
    display: none;
  }

  .split-intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .story-photo {
    width: min(100%, 650px);
  }

  .story-copy {
    max-width: 780px;
  }

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

  .process-step {
    min-height: 280px;
  }

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

  .offer-card {
    position: relative;
    top: auto;
    width: min(100%, 600px);
  }

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

  .faq-heading {
    position: relative;
    top: auto;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 110;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    left: 14px;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    overflow: visible;
    padding: 14px 112px 14px 18px;
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
    font-size: 0.71rem;
    font-weight: 950;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: transform 240ms var(--ease), opacity 240ms ease;
  }

  .mobile-cta-arrow {
    margin-left: auto;
  }

  .mobile-cta-sticker {
    position: absolute;
    z-index: 2;
    right: 7px;
    bottom: 5px;
    display: block;
    width: 102px;
    height: auto;
    filter: drop-shadow(0 12px 16px rgba(16, 11, 23, 0.28));
    opacity: 1;
    pointer-events: none;
    transform: rotate(-2deg);
    transform-origin: 72% 100%;
    transition: opacity 260ms ease 80ms, transform 420ms var(--ease) 50ms;
    user-select: none;
  }

  .mobile-sticky-cta.is-hidden {
    transform: translateY(130%);
    opacity: 0;
    pointer-events: none;
  }

  .mobile-sticky-cta.is-hidden .mobile-cta-sticker,
  body.menu-open .mobile-cta-sticker {
    opacity: 0;
    transform: translate3d(18px, 18px, 0) rotate(5deg) scale(0.82);
  }

  body.menu-open .mobile-sticky-cta {
    transform: translateY(130%);
    opacity: 0;
    pointer-events: none;
  }

  .site-footer {
    padding-bottom: calc(90px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .brand-copy {
    width: 116px;
  }

  .brand-copy strong {
    font-size: 0.69rem;
    letter-spacing: 0.08em;
  }

  .brand-copy small {
    display: block;
    font-size: 0.52rem;
    letter-spacing: 0.48em;
  }

  .brand-mark {
    width: 68px;
    height: 48px;
  }

  .mobile-sticky-cta {
    padding-right: 102px;
  }

  .mobile-cta-sticker {
    right: 4px;
    width: 94px;
  }

  .hero-layout {
    gap: 42px;
    padding-top: calc(var(--header-height) + 52px);
    padding-bottom: 78px;
  }

  .eyebrow {
    font-size: 0.61rem;
    line-height: 1.5;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(3.15rem, 15vw, 4.85rem);
    line-height: 0.91;
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
    margin-top: 30px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .text-link {
    width: max-content;
  }

  .hero-visual {
    width: 100%;
  }

  .photo-frame {
    height: 128vw;
    max-height: 650px;
  }

  .visual-stamp {
    top: -12px;
    right: -4px;
    width: 116px;
    height: 116px;
    padding: 15px;
  }

  .visual-stamp p {
    font-size: 0.72rem;
  }

  .visual-note {
    right: 10px;
    bottom: 18px;
  }

  .hero-ghost {
    font-size: 7rem;
    writing-mode: vertical-rl;
  }

  .problem,
  .story,
  .process,
  .offer,
  .faq {
    padding-block: 96px;
  }

  .display-title {
    font-size: clamp(2.45rem, 10.9vw, 3.35rem);
    line-height: 0.96;
  }

  .friction-grid {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .friction-card {
    min-height: 260px;
    padding: 24px;
  }

  .belief {
    min-height: 390px;
    padding: 36px 24px;
  }

  .belief p {
    font-size: 2.05rem;
  }

  .story-photo figcaption {
    display: grid;
  }

  .story-photo figcaption small {
    text-align: left;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 45px;
    margin-top: 68px;
  }

  .process-step {
    min-height: 0;
    padding-right: 0;
  }

  .process-step h3 {
    margin-top: 34px;
  }

  .included-grid {
    grid-template-columns: 1fr;
    margin-top: 56px;
  }

  .included-item {
    min-height: 200px;
  }

  .offer-card-main,
  .offer-card-bottom {
    padding-inline: 24px;
  }

  .offer-card-main h3 {
    font-size: 3.2rem;
  }

  .faq-item summary {
    grid-template-columns: 28px 1fr 20px;
    gap: 12px;
  }

  .faq-item p {
    padding: 0 0 26px 40px;
  }

  .final-cta {
    min-height: 720px;
    padding-block: 100px;
  }

  .final-content h2 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .final-content .button {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-logo {
    width: 98px;
  }

  .footer-links {
    grid-column: auto;
    grid-row: auto;
    justify-items: start;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
  }

  .legal-header-inner {
    min-height: 78px;
  }

  .legal-brand .brand-copy {
    display: none;
  }

  .legal-main {
    padding-top: 78px;
    padding-bottom: 88px;
  }

  .legal-main h1 {
    font-size: clamp(3.3rem, 16vw, 5rem);
  }

  .legal-intro {
    margin-top: 34px;
  }

  .legal-section {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 58px;
  }

  .legal-section > :not(h2) {
    grid-column: 1;
  }

  .legal-note {
    padding: 24px;
  }

  .legal-footer .shell {
    display: grid;
    min-height: 120px;
    align-content: center;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-visual,
  .story-photo {
    transform: none !important;
  }

  .principles-track {
    transform: translateX(0) !important;
    animation: none !important;
  }

}
@media (max-width: 820px) {
  .profile-header-inner {
    min-height: 78px;
  }

  .profile-hero,
  .profile-hero-content {
    min-height: calc(100svh - 118px);
  }

  .profile-hero-content {
    padding-block: 54px 46px;
  }

  .profile-hero-content h1 {
    font-size: clamp(3.3rem, 15vw, 6rem);
  }

  .profile-hero-media img {
    object-position: 61% 26%;
  }

  .profile-intro,
  .profile-current,
  .profile-principles,
  .profile-brand-section,
  .profile-cta {
    padding-block: 78px;
  }

  .profile-copy-grid,
  .profile-current-layout,
  .profile-brand-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .profile-brand-mark {
    min-height: 230px;
  }

  .profile-brand-mark img {
    width: min(78vw, 350px);
  }

  .profile-principles-list {
    margin-top: 48px;
    grid-template-columns: 1fr;
  }

  .profile-principles-list article,
  .profile-principles-list article + article {
    padding: 28px 0;
    border-bottom: 1px solid var(--line-light);
    border-left: 0;
  }
}

@media (max-width: 520px) {
  .profile-header .brand-copy {
    display: none;
  }

  .profile-home-link {
    font-size: 0.64rem;
  }

  .profile-hero,
  .profile-hero-content {
    min-height: calc(100svh - 116px);
  }

  .profile-hero-content {
    padding-block: 40px 38px;
  }

  .profile-hero-content > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .profile-hero-content .button,
  .profile-cta .button {
    width: 100%;
  }

  .profile-copy-grid h2,
  .profile-current-copy h2,
  .profile-brand-layout h2,
  .profile-principles-head h2,
  .profile-cta h2 {
    font-size: clamp(2.15rem, 10vw, 3.05rem);
  }

  .profile-intro,
  .profile-current,
  .profile-principles,
  .profile-brand-section,
  .profile-cta {
    padding-block: 64px;
  }

  .profile-current-facts div {
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 14px;
  }
}

/* First-party analytics consent */
.footer-link-button {
  padding: 0;
  border: 0;
  color: inherit;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.footer-link-button:hover,
.footer-link-button:focus-visible {
  color: var(--gold-light);
}

.analytics-consent[hidden] {
  display: none;
}

.analytics-consent {
  position: fixed;
  z-index: 300;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  left: max(18px, env(safe-area-inset-left));
  width: auto;
  max-width: 760px;
  margin-inline: auto;
  padding: 18px;
  border: 1px solid rgba(240, 208, 138, 0.38);
  border-radius: 8px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  color: var(--white);
  background: rgba(16, 11, 23, 0.98);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.38);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.analytics-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.analytics-consent strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-light);
  font-size: 0.95rem;
}

.analytics-consent p {
  max-width: 540px;
  color: var(--muted-dark);
  font-size: 0.84rem;
  line-height: 1.55;
}

.analytics-consent a {
  color: var(--gold-light);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.analytics-consent a:hover,
.analytics-consent a:focus-visible {
  color: var(--white);
}

.analytics-consent-actions {
  display: flex;
  gap: 8px;
}

.analytics-consent-actions button,
.legal-preferences-button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.analytics-consent-reject {
  color: var(--white);
  background: transparent;
}

.analytics-consent-accept,
.legal-preferences-button {
  border-color: var(--gold);
  color: var(--ink);
  background: var(--gold-light);
}

.analytics-consent-accept:disabled {
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--muted-dark);
  background: rgba(255, 255, 255, 0.08);
  cursor: not-allowed;
}

.legal-preferences-button {
  margin-top: 16px;
}

@media (max-width: 680px) {
  .analytics-consent {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    left: max(12px, env(safe-area-inset-left));
    width: auto;
    max-width: 520px;
    margin-inline: auto;
    padding: 16px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .analytics-consent-actions {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
  }

  .analytics-consent-actions button {
    width: 100%;
    padding-inline: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .analytics-consent {
    transition: none;
  }
}

/* Editorial hero: full-bleed portrait with live text overlay. */
.hero-editorial {
  --hero-image-y: 0px;
  --hero-image-scale: 1.025;
  --hero-copy-y: 0px;
  --hero-rail-progress: 0;
  --hero-rail-y: 0%;
  min-height: max(840px, 100svh);
  isolation: isolate;
  background: #100b17;
}

.hero-media {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(72vw, 1120px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 24%, #000 100%);
  pointer-events: none;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media img {
  position: absolute;
  top: -36px;
  left: 0;
  width: 100%;
  height: calc(100% + 72px);
  max-width: none;
  object-fit: cover;
  object-position: 64% 30%;
  transform: translate3d(0, var(--hero-image-y), 0) scale(var(--hero-image-scale));
  transform-origin: 58% 34%;
  filter: saturate(1.01) contrast(1.02) brightness(1.05);
  transition: transform 80ms linear;
  will-change: transform;
}

.hero-veil {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, #100b17 0%, rgba(16, 11, 23, 0.96) 26%, rgba(16, 11, 23, 0.58) 48%, rgba(16, 11, 23, 0.14) 72%, rgba(16, 11, 23, 0.05) 100%),
    linear-gradient(0deg, rgba(16, 11, 23, 0.88) 0%, transparent 34%),
    linear-gradient(180deg, rgba(16, 11, 23, 0.42) 0%, transparent 28%);
  pointer-events: none;
}

.hero-editorial .hero-grid {
  z-index: 2;
  opacity: 0.64;
  mix-blend-mode: soft-light;
}

.hero-editorial .hero-glow,
.hero-editorial .hero-ghost {
  z-index: 2;
}

.hero-editorial .hero-layout {
  z-index: 3;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  min-height: max(840px, 100svh);
}

.hero-editorial .hero-copy {
  width: min(100%, 1000px);
  max-width: none;
  transform: translate3d(0, var(--hero-copy-y), 0);
  will-change: transform;
}

.hero-identity {
  position: absolute;
  z-index: 4;
  top: calc(var(--header-height) + 42px);
  right: 0;
  left: 0;
  display: flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-inline: auto;
  color: #d3b6ff;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-align: center;
  text-shadow: 0 2px 18px rgba(16, 11, 23, 0.75);
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-identity::before,
.hero-identity::after {
  width: clamp(24px, 5vw, 64px);
  height: 1px;
  flex: 0 0 auto;
  background: linear-gradient(90deg, transparent, rgba(240, 208, 138, 0.76));
  content: "";
}

.hero-identity::after {
  transform: scaleX(-1);
}

.hero-editorial .eyebrow {
  color: #d3b6ff;
  text-shadow: 0 2px 18px rgba(16, 11, 23, 0.75);
}

.hero-editorial h1 {
  width: min(100%, 960px);
  max-width: none;
  margin-top: 24px;
  font-size: 5.6rem;
  letter-spacing: 0;
  line-height: 0.9;
  text-shadow: 0 10px 42px rgba(16, 11, 23, 0.5);
}

.hero-title-main,
.hero-editorial h1 em {
  display: block;
  width: fit-content;
}

.hero-title-line {
  display: inline;
}

.hero-title-main {
  max-width: 14.5ch;
}

.hero-editorial h1 em {
  max-width: 15ch;
  margin-top: 0.08em;
  color: #f1cf87;
  letter-spacing: 0;
  text-shadow: 0 9px 36px rgba(16, 11, 23, 0.56);
}

.hero-editorial .hero-lead {
  max-width: 590px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 3px 18px rgba(16, 11, 23, 0.8);
}

.hero-editorial .hero-actions {
  text-shadow: 0 2px 14px rgba(16, 11, 23, 0.72);
}

.hero-depth-rail {
  position: absolute;
  z-index: 4;
  top: calc(var(--header-height) + 70px);
  right: 8px;
  bottom: 74px;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.hero-depth-rail span {
  position: absolute;
  inset: 0;
  transform: scaleY(var(--hero-rail-progress));
  transform-origin: top;
  background: linear-gradient(var(--gold-light), var(--primary-light));
  will-change: transform;
}

.hero-depth-rail i {
  position: absolute;
  top: var(--hero-rail-y);
  left: 50%;
  width: 9px;
  height: 9px;
  transform: translate(-50%, -50%);
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 168, 79, 0.16);
  will-change: top;
}

.hero-editorial .scroll-cue {
  z-index: 4;
}

@media (max-width: 1180px) {
  .hero-media {
    width: 76vw;
  }

  .hero-editorial h1 {
    width: min(100%, 800px);
    font-size: 4.8rem;
  }

  .hero-editorial .hero-copy {
    width: min(100%, 840px);
  }
}

@media (max-width: 980px) {
  .hero-editorial {
    min-height: max(880px, 100svh);
  }

  .hero-media {
    width: 100%;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-media img {
    object-position: 62% 30%;
    transform-origin: 62% 30%;
  }

  .hero-veil {
    background:
      linear-gradient(90deg, rgba(16, 11, 23, 0.58) 0%, rgba(16, 11, 23, 0.18) 68%, rgba(16, 11, 23, 0.04) 100%),
      linear-gradient(0deg, rgba(16, 11, 23, 0.97) 0%, rgba(16, 11, 23, 0.78) 48%, rgba(16, 11, 23, 0.12) 78%),
      linear-gradient(180deg, rgba(16, 11, 23, 0.48) 0%, transparent 28%);
  }

  .hero-editorial .hero-layout {
    min-height: max(880px, 100svh);
    align-items: end;
    padding-bottom: 74px;
  }

  .hero-editorial .hero-copy {
    width: min(100%, 700px);
  }

  .hero-editorial h1 {
    width: min(100%, 650px);
    font-size: 4.5rem;
  }

  .hero-depth-rail {
    display: none;
  }
}

@media (max-width: 680px) {
  .hero-editorial {
    min-height: 940px;
  }

  .hero-media img {
    top: 10px;
    width: 100%;
    height: 66%;
    object-position: 50% 18%;
    transform-origin: 50% 18%;
  }

  .hero-veil {
    background:
      linear-gradient(90deg, rgba(16, 11, 23, 0.28) 0%, rgba(16, 11, 23, 0.08) 68%, transparent 100%),
      linear-gradient(0deg, rgba(16, 11, 23, 0.76) 0%, rgba(16, 11, 23, 0.46) 42%, rgba(16, 11, 23, 0.08) 74%),
      linear-gradient(180deg, rgba(16, 11, 23, 0.24) 0%, transparent 26%);
  }

  .hero-editorial .hero-layout {
    min-height: 940px;
    gap: 0;
    padding-top: calc(var(--header-height) + 96px);
    padding-bottom: 58px;
  }

  .hero-identity {
    top: calc(var(--header-height) + 4px);
    right: -4px;
    left: -4px;
    max-width: calc(100% + 8px);
    gap: 7px;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(0.51rem, 2.15vw, 0.61rem);
    letter-spacing: 0.115em;
    text-shadow: 0 2px 15px rgba(16, 11, 23, 0.88);
  }

  .hero-identity::before,
  .hero-identity::after {
    width: clamp(14px, 5vw, 26px);
  }

  .hero-editorial h1 {
    width: 100%;
    margin-top: 0;
    font-size: clamp(2.3rem, 9vw, 2.55rem);
    line-height: 0.88;
  }

  .hero-title-main,
  .hero-editorial h1 em {
    width: 100%;
    max-width: none;
  }

  .hero-editorial h1 em {
    margin-top: 0.15em;
    font-size: 0.94em;
  }

  .hero-title-line {
    display: block;
    width: fit-content;
    max-width: 100%;
  }

  .hero-title-line-1 {
    margin-left: 1.02em;
  }

  .hero-title-line-2 {
    margin-left: 0.5em;
  }

  .hero-title-line-3 {
    margin-left: 0;
  }

  .hero-editorial h1 em .hero-title-line-1 {
    margin-left: 0.8em;
  }

  .hero-editorial h1 em .hero-title-line-2 {
    margin-left: 0.36em;
  }

  .hero-editorial .hero-lead {
    width: 100%;
    max-width: 36ch;
    margin: 30px auto 0;
    padding: clamp(16px, 4vw, 20px) clamp(14px, 4vw, 18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background:
      linear-gradient(135deg, rgba(16, 11, 23, 0.68), rgba(34, 21, 48, 0.36)),
      radial-gradient(circle at 20% 0%, rgba(109, 40, 217, 0.12), transparent 44%);
    box-shadow:
      0 24px 72px rgba(16, 11, 23, 0.52),
      0 -18px 48px rgba(16, 11, 23, 0.36),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    color: rgba(255, 255, 255, 0.84);
    overflow-wrap: break-word;
  }

  .hero-editorial .hero-actions {
    margin-top: 24px;
  }

  .hero-editorial .hero-ghost {
    opacity: 0.45;
  }
}

@media (max-width: 420px) {
  .hero-editorial h1 {
    font-size: 2.3rem;
  }
}

@media (max-width: 360px) {
  .mobile-sticky-cta {
    min-height: 54px;
    gap: 8px;
    padding-right: 90px;
    font-size: 0.65rem;
  }

  .mobile-cta-sticker {
    right: 3px;
    width: 84px;
  }
}

/* Desktop-only hero refinement. Mobile and tablet layouts remain unchanged. */
@media (min-width: 981px) {
  .hero-media {
    right: clamp(-36px, -1.5vw, -16px);
  }

  .hero-editorial .hero-copy {
    width: min(100%, 860px);
  }

  .hero-identity {
    right: auto;
    left: 0;
    width: 720px;
    max-width: 58vw;
    justify-content: center;
    margin-inline: 0;
  }

  .hero-editorial h1 {
    width: min(100%, clamp(740px, 40vw, 820px));
    font-size: clamp(4.75rem, 4.1vw, 5.15rem);
    line-height: 0.92;
  }

  .hero-title-main {
    max-width: 13.5ch;
  }

  .hero-editorial h1 em {
    max-width: 14ch;
  }

  .hero-editorial .hero-lead {
    max-width: 540px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-editorial .hero-copy {
    transform: none !important;
  }

  .hero-depth-rail {
    display: none;
  }
}
