/* ─── Aurelis Investments — shared stylesheet ─────────────────
   Mirror of vast-place-451226.framer.app
   Tokens, layout, typography reflect Framer source values.
─────────────────────────────────────────────────────────────── */

:root {
  --bg:           #000;
  --surface:      #0a0a0a;
  --surface-2:    #131313;
  --text:         #fff;
  --text-dim:     rgb(119, 119, 119);
  --text-muted:   rgba(255, 255, 255, 0.65);
  --hairline:     rgba(255, 255, 255, 0.08);
  --hairline-2:   rgba(255, 255, 255, 0.14);
  --gold:         #d4af37;
  --gold-dark:    #9a7b30;
  --max-w:        1200px;
  --content-w:    760px;
  --reading-w:    880px;
  --nav-h:        88px;
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter Tight', 'Inter Variable', system-ui, -apple-system, sans-serif;
  font-feature-settings: 'cv01' on, 'cv09' on, 'cv11' on, 'cv05' on, 'ss03' on;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3 { font-weight: 700; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: var(--reading-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Navigation ─────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  flex-shrink: 0;
}
.nav__brand-mark {
  width: 66px;
  height: 66px;
  border-radius: 4px;
  background-image: url('../images/logo-transparent.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0; /* hides the 'A' letter — logo image replaces it */
}
/* Footer mark — slightly larger for the brand lockup */
.footer__brand .nav__brand-mark {
  width: 81px;
  height: 81px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.2px;
  transition: opacity var(--transition);
}
.nav__links a:hover { opacity: 0.65; }
.nav__links a.is-current { opacity: 0.55; }
.nav__bottom-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--hairline);
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--text);
  color: #000;
  border-color: var(--text);
}
.btn--primary:hover {
  background: transparent;
  color: var(--text);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--hairline-2);
}
.btn--ghost:hover {
  border-color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}
.btn--full { width: 100%; }

/* ─── Page intro / brand image ───────────────────────────────── */
.brand-mark--lg {
  width: 100%;
  max-width: 720px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}
.brand-mark--lg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ─── Generic page header ────────────────────────────────────── */
.page-hero {
  padding: 96px 24px 48px;
  text-align: center;
}
.page-hero__title {
  font-size: clamp(36px, 6vw, 72px);
  letter-spacing: -0.04em;
  line-height: 1em;
  color: var(--text);
}
.page-hero__title--dim { color: var(--text-dim); }
.page-hero__sub {
  margin-top: 24px;
  font-size: clamp(18px, 2.4vw, 24px);
  color: var(--text-muted);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* ─── Content / text blocks ──────────────────────────────────── */
.text-block {
  padding: 24px 24px 48px;
}
.text-block p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 24px;
  text-align: center;
}
.text-block p:last-child { margin-bottom: 0; }

.legal {
  padding: 48px 24px 96px;
  max-width: 880px;
  margin: 0 auto;
}
.legal h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 40px 0 12px;
}
.legal h2:first-child { margin-top: 0; }
.legal p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ─── Quote / philosophy ─────────────────────────────────────── */
.quote {
  padding: 96px 24px;
  text-align: center;
}
.quote__line {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.25em;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 880px;
  margin: 0 auto;
}
.quote__line span { display: block; }

/* ─── Stats ──────────────────────────────────────────────────── */
.stats {
  padding: 32px 24px 120px;
}
.stats__grid {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
}
.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 16px;
}
.stats__num {
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1em;
  color: var(--text);
}
.stats__label {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2em;
  color: var(--text);
}

/* ══════════════════════════════════════════════════════════════════════════════
   LEGACY COMPONENTS (DEPRECATED — Phase 6, May 2026)
   ══════════════════════════════════════════════════════════════════════════════
   The following components were part of the original Framer export and have been
   replaced by the `.editorial-v2` design system. They are retained here temporarily
   for backwards compatibility but should not be used in new pages.

   Deprecated classes:
   - .home-hero, .marquee, .mission, .features, .feature-card
   - .contact, .team-banner, .team, .team-card
   - .faq, .pricing, .plan, .perf-gallery

   All migrated pages now use:
   - .ed-page-hero, .ed-section, .ed-pricing, .ed-plan
   - .ed-legal, .ed-profile-grid, .ed-profile-card
   - .ed-faq, .ed-perf-grid

   Scheduled for removal: after this deprecation period (one additional session).
   ══════════════════════════════════════════════════════════════════════════════ */

/* ─── Home hero ──────────────────────────────────────────────── */
.home-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 96px 24px;
  text-align: center;
}
.home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.home-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: brightness(0.7);
}
.home-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.4) 60%, #000 100%);
}
.home-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
}
.home-hero__title {
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1em;
  color: var(--text);
}
.home-hero__title span { display: block; }
.home-hero__title .em { color: var(--text-dim); }
.home-hero__actions {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── Marquee (Clarity / Confidence) ─────────────────────────── */
.marquee {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: #000;
  overflow: hidden;
  padding: 22px 0;
}
.marquee__track {
  display: inline-flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
}
.marquee__item {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.marquee__sep {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  font-size: 18px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── Mission / about block ──────────────────────────────────── */
.mission {
  padding: 120px 24px;
  text-align: center;
}
.mission__inner {
  max-width: var(--reading-w);
  margin: 0 auto;
}
.mission__eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 600;
}
.mission__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15em;
  color: var(--text);
  margin-bottom: 32px;
}
.mission__body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.mission__brand-img {
  margin: 64px auto 24px;
  max-width: 540px;
  aspect-ratio: 1 / 1;
}
.mission__brand-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.95;
}

/* ─── Feature cards (3-up) ───────────────────────────────────── */
.features {
  padding: 24px 24px 120px;
}
.features__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.feature-card:hover {
  border-color: var(--hairline-2);
  transform: translateY(-4px);
}
.feature-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #111;
}
.feature-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-card__body {
  padding: 28px 28px 32px;
}
.feature-card__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--text);
}
.feature-card__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ─── Contact form ───────────────────────────────────────────── */
.contact {
  padding: 0 24px 120px;
}
.contact__inner {
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 28px;
  padding: 56px 48px;
  text-align: center;
}
.contact__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15em;
  color: var(--text);
  margin-bottom: 12px;
}
.contact__sub {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.contact__form label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}
.contact__form input,
.contact__form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  resize: vertical;
  transition: border-color var(--transition), background var(--transition);
}
.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
}
.contact__form textarea { min-height: 140px; }
.contact__form .btn { margin-top: 8px; align-self: flex-start; }

/* ─── Team banner ────────────────────────────────────────────── */
.team-banner {
  padding: 0 24px 32px;
}
.team-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  aspect-ratio: 3 / 2;
}
.team-banner__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── Team grid ──────────────────────────────────────────────── */
.team {
  padding: 24px 24px 120px;
}
.team__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition);
}
.team-card:hover {
  border-color: var(--hairline-2);
  transform: translateY(-4px);
}
.team-card__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #111;
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card__body {
  padding: 24px 24px 28px;
}
.team-card__name {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--text);
}
.team-card__bio {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq {
  padding: 32px 24px 120px;
  max-width: 880px;
  margin: 0 auto;
}
.faq__group {
  margin-top: 64px;
}
.faq__group:first-child { margin-top: 0; }
.faq__group-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hairline);
}
.faq__item {
  padding: 20px 0;
  border-bottom: 1px solid var(--hairline);
}
.faq__q {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 10px;
}
.faq__a {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ─── Pricing (get-in) ───────────────────────────────────────── */
.pricing {
  padding: 24px 24px 96px;
}
.pricing__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.plan {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 24px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.plan:hover {
  border-color: var(--hairline-2);
  transform: translateY(-4px);
}
.plan--vip {
  border-color: var(--gold-dark);
  background: linear-gradient(180deg, rgba(212,175,55,0.06) 0%, rgba(0,0,0,0) 50%), var(--surface);
}
.plan--vip:hover { border-color: var(--gold); }
.plan__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid var(--gold-dark);
  border-radius: 999px;
  padding: 4px 10px;
}
.plan__name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--text);
}
.plan__price {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1em;
  color: var(--text);
  margin-bottom: 4px;
}
.plan__price-suffix {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  margin-bottom: 28px;
}
.plan__features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plan__features li {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
  position: relative;
  padding-left: 22px;
}
.plan__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
}
.plan__cta {
  display: block;
  text-align: center;
}
.plan__note {
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  font-style: italic;
}

/* ─── Performance gallery ────────────────────────────────────── */
.perf-gallery {
  padding: 64px 24px 96px;
}
.perf-gallery__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.perf-gallery__item {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: var(--surface);
}
.perf-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--hairline);
  padding: 56px 24px 32px;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.footer__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}
.footer__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.2px;
  transition: opacity var(--transition);
}
.footer__links a:hover { opacity: 0.65; }

.framer-badge {
  display: block;
  text-align: center;
  padding: 24px;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.01em;
}
.framer-badge a {
  color: var(--text-dim);
  text-decoration: underline;
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav__links { gap: 24px; }
  .features__grid,
  .team__grid,
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 810px) {
  :root { --nav-h: 72px; }
  .nav__links { gap: 16px; }
  .nav__links a { font-size: 13px; }
  .page-hero { padding: 56px 20px 32px; }
  .quote { padding: 64px 20px; }
  .stats { padding: 24px 20px 72px; }
  .mission { padding: 80px 20px; }
  .features { padding: 16px 20px 80px; }
  .home-hero { min-height: 70vh; padding: 64px 20px; }
  .marquee__track { gap: 36px; animation-duration: 22s; }
  .marquee__item { font-size: 22px; }
  .perf-gallery__grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav__inner { gap: 12px; }
  .nav__links { gap: 12px; }
  .nav__links a { font-size: 12px; }
  .nav__brand span:last-child { display: none; }
  .stats__grid { grid-template-columns: 1fr; gap: 8px; }
  .features__grid,
  .team__grid,
  .pricing__grid { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; align-items: center; text-align: center; }
  .home-hero__actions .btn { width: 100%; }
  .contact__inner { padding: 40px 24px; }
  .home-hero__title { font-size: 40px; }
}

/* ─── Editorial v2 — shared design system ──────────────────────
   Token block shared across all migrated pages. Page-specific
   scopes (.about-v2, .home-v2, etc.) layer on top. Old tokens
   (--gold, --gold-dark) stay in :root for unmigrated pages.
─────────────────────────────────────────────────────────────── */

.editorial-v2 {
  --about-bg:          #0B0B0D;
  --about-text:        #EFEAE0;
  --about-text-soft:   rgba(239, 234, 224, 0.86);
  --about-text-dim:    rgba(239, 234, 224, 0.58);
  --about-text-faint:  rgba(239, 234, 224, 0.55);
  --about-hairline:    rgba(239, 234, 224, 0.10);
  --about-hairline-2:  rgba(239, 234, 224, 0.18);
  --about-accent:      #C8932A;
  --about-accent-soft: rgba(200, 147, 42, 0.18);

  --font-display: 'Fraunces', 'Times New Roman', Georgia, serif;
  --font-body:    'Geist', 'Inter Tight', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

body.editorial-v2 {
  background: var(--about-bg);
  color: var(--about-text);
  font-family: var(--font-body);
  font-feature-settings: 'ss01' on;
  line-height: 1.55;
  letter-spacing: -0.005em;
}

body.editorial-v2 ::selection { background: var(--about-accent); color: #0B0B0D; }

/* Re-skin shared chrome (nav, footer) on the warmer bg. */
body.editorial-v2 .nav { background: rgba(11, 11, 13, 0.86); }
body.editorial-v2 .nav__bottom-line { background: var(--about-hairline); }
body.editorial-v2 .nav__brand,
body.editorial-v2 .nav__links a { color: var(--about-text); }
body.editorial-v2 .nav__brand-mark {
  background-image: url('../images/logo-transparent.png');
  background-color: transparent;
}
body.editorial-v2 .nav__links a.is-current { color: var(--about-text-faint); opacity: 1; }
body.editorial-v2 .footer { border-top-color: var(--about-hairline); }
body.editorial-v2 .footer__brand,
body.editorial-v2 .footer__links a { color: var(--about-text); }
body.editorial-v2 .framer-badge,
body.editorial-v2 .framer-badge a { color: var(--about-text-dim); }

/* Display headings on editorial pages take the serif. */
.editorial-v2 h1, .editorial-v2 h2, .editorial-v2 h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.025em;
  font-feature-settings: 'liga' on, 'kern' on;
}

/* All numerics in monospace with tabular figures. */
.editorial-v2 .num {
  font-family: var(--font-mono);
  font-feature-settings: 'tnum' on, 'lnum' on;
  font-variant-numeric: tabular-nums lining-nums;
}

/* 1 ─ Hero ──────────────────────────────────────────────────── */
.about-hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 96px 24px 72px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-hero__title {
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--about-text);
}
.about-hero__title em {
  font-style: italic;
  color: var(--about-accent);
}
.about-hero__lede {
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--about-text-soft);
  max-width: 46ch;
}

.about-hero__chart {
  position: relative;
  border: 1px solid var(--about-hairline);
  border-radius: 14px;
  padding: 22px 22px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.018), transparent 60%);
}
.about-hero__chart-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--about-text-dim);
}
.about-hero__chart-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.about-hero__chart-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--about-accent);
  animation: about-pulse 2s ease-out infinite;
}
@keyframes about-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(200, 147, 42, 0.45); }
  100% { box-shadow: 0 0 0 10px rgba(200, 147, 42, 0); }
}
.about-hero__chart-readout {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  letter-spacing: 0;
  text-transform: none;
}
.about-hero__chart-readout .num { font-size: 13px; color: var(--about-text); }
.about-hero__chart-readout [data-equity-delta] { color: var(--about-accent); }
.about-hero__chart-svg {
  display: block;
  width: 100%;
  height: 220px;
}
.about-hero__chart-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 10.5px;
  font-family: var(--font-mono);
  color: var(--about-text-dim);
  letter-spacing: 0.04em;
}
.about-hero__chart-note {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--about-text-faint);
}

/* 2 ─ Thesis ───────────────────────────────────────────────── */
.about-thesis {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 88px 24px 96px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  border-top: 1px solid var(--about-hairline);
}
.about-thesis__item h3 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--about-accent);
  margin-bottom: 18px;
}
.about-thesis__item p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--about-text-soft);
}

/* 3 ─ Method diagram ───────────────────────────────────────── */
.about-method {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 88px 24px 96px;
  border-top: 1px solid var(--about-hairline);
}
.about-method__eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--about-text-dim);
  margin-bottom: 14px;
  font-family: var(--font-body);
}
.about-method__title {
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 56px;
  max-width: 30ch;
  color: var(--about-text);
}
.about-method__flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  list-style: none;
}
.about-method__step {
  position: relative;
  padding: 22px 18px 22px 0;
  cursor: default;
  transition: opacity var(--transition);
}
.about-method__step + .about-method__step { padding-left: 22px; }
.about-method__step + .about-method__step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 32px;
  width: 12px;
  height: 1px;
  background: var(--about-hairline-2);
}
.about-method__step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--about-accent);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.about-method__step-label {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--about-text);
  transition: color var(--transition);
}
.about-method__step-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--about-text-dim);
}
.about-method__flow:hover .about-method__step { opacity: 0.5; }
.about-method__flow:hover .about-method__step:hover { opacity: 1; }
.about-method__step:hover .about-method__step-label { color: var(--about-accent); }

/* 4 ─ Numbers ──────────────────────────────────────────────── */
.about-numbers {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 88px 24px 96px;
  border-top: 1px solid var(--about-hairline);
}
.about-numbers__line {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.4vw, 52px);
  line-height: 1.18;
  letter-spacing: -0.025em;
  max-width: 24ch;
  color: var(--about-text-dim);
}
.about-numbers__lead { color: var(--about-text); }

/* Slot for real metrics (toggled by adding --active modifier). */
.about-numbers__grid {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-top: 56px;
}
.about-numbers__grid--active { display: grid; }
.about-numbers__metric .num {
  display: block;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--about-text);
  line-height: 1;
}
.about-numbers__metric-unit {
  margin-left: 4px;
  font-family: var(--font-mono);
  font-size: 0.46em;
  color: var(--about-text-dim);
  letter-spacing: 0;
}
.about-numbers__metric-label {
  margin-top: 12px;
  font-size: 13px;
  color: var(--about-text-dim);
  letter-spacing: 0.04em;
  font-family: var(--font-body);
}
.about-numbers__metric-note {
  margin-top: 4px;
  font-size: 11px;
  color: var(--about-text-faint);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

/* 5 ─ Founder note ─────────────────────────────────────────── */
.about-founder {
  max-width: 720px;
  margin: 0 auto;
  padding: 96px 24px;
  border-top: 1px solid var(--about-hairline);
}
.about-founder__body {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.45;
  letter-spacing: -0.012em;
  color: var(--about-text);
  font-weight: 300;
}
.about-founder__body em {
  font-style: italic;
  color: var(--about-accent);
}
.about-founder__sig {
  margin-top: 36px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  font-family: var(--font-body);
}
.about-founder__sig::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--about-hairline-2);
  align-self: center;
}
.about-founder__sig-name { color: var(--about-text); font-weight: 500; }
.about-founder__sig-role { color: var(--about-text-dim); }

/* 6 ─ CTA ──────────────────────────────────────────────────── */
.about-cta {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 88px 24px 128px;
  border-top: 1px solid var(--about-hairline);
  text-align: center;
}
.about-cta__title {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 auto 36px;
  max-width: 22ch;
  color: var(--about-text);
}
.about-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--about-accent);
  color: #0B0B0D;
  border: 1px solid var(--about-accent);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.about-cta__btn:hover {
  background: transparent;
  color: var(--about-accent);
  transform: translateY(-1px);
}
.about-cta__btn-arrow {
  transition: transform var(--transition);
  font-family: var(--font-body);
}
.about-cta__btn:hover .about-cta__btn-arrow { transform: translateX(3px); }
.about-cta__disclosure {
  margin-top: 18px;
  font-size: 12px;
  color: var(--about-text-faint);
  letter-spacing: 0.02em;
  font-family: var(--font-body);
}

/* Reveal-on-scroll utility (IntersectionObserver-driven). */
.editorial-v2 [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.editorial-v2 [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

/* Responsive ─────────────────────────────────────────────── */
@media (max-width: 980px) {
  .about-hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 72px 20px 56px;
  }
  .about-thesis {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 64px 20px 72px;
  }
  .about-method { padding: 64px 20px 72px; }
  .about-method__title { margin-bottom: 32px; }
  .about-method__flow { grid-template-columns: 1fr; gap: 0; }
  .about-method__step,
  .about-method__step + .about-method__step {
    padding: 22px 0 22px 28px;
    border-left: 1px solid var(--about-hairline);
  }
  .about-method__step + .about-method__step::before { display: none; }
  .about-method__flow:hover .about-method__step { opacity: 1; }
  .about-numbers,
  .about-founder,
  .about-cta { padding-left: 20px; padding-right: 20px; }
  .about-numbers__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .editorial-v2 [data-reveal] { opacity: 1; transform: none; transition: none; }
  .about-hero__chart-dot { animation: none; }
}

/* ─── Editorial v2 — shared components ────────────────────────
   Available to every page with body.editorial-v2. Scoped with
   body.editorial-v2 parent so tokens always resolve.
─────────────────────────────────────────────────────────────── */

/* Generic section wrapper ─────────────────────────────────── */
.ed-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 88px 24px 96px;
}
.ed-section--bordered {
  border-top: 1px solid var(--about-hairline);
}

/* Page hero — large serif headline + lede ─────────────────── */
.ed-page-hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 88px 24px 72px;
  border-bottom: 1px solid var(--about-hairline);
}
.ed-page-hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--about-text-dim);
  margin-bottom: 20px;
  font-family: var(--font-body);
}
.ed-page-hero__title {
  font-size: clamp(36px, 5.6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--about-text);
  max-width: 18ch;
}
.ed-page-hero__lede {
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--about-text-soft);
  max-width: 54ch;
}

/* Reading layout — legal pages ────────────────────────────── */
.ed-legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 24px 120px;
}
.ed-legal h1 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  color: var(--about-text);
}
.ed-legal h2 {
  font-size: 18px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 48px;
  margin-bottom: 14px;
  color: var(--about-text);
}
.ed-legal p,
.ed-legal li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--about-text-soft);
}
.ed-legal ol,
.ed-legal ul {
  padding-left: 1.4em;
  margin-top: 12px;
}
.ed-legal li + li { margin-top: 6px; }
.ed-legal__date {
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--about-text-dim);
  font-family: var(--font-mono);
  margin-bottom: 48px;
  display: block;
}

/* FAQ — native details/summary accordion ──────────────────── */
.ed-faq {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.ed-faq__group {
  border-top: 1px solid var(--about-hairline);
  padding: 40px 0 8px;
}
.ed-faq__group-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--about-text-dim);
  margin-bottom: 24px;
}
body.editorial-v2 details {
  border-bottom: 1px solid var(--about-hairline);
}
body.editorial-v2 summary {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  font-size: 15px;
  line-height: 1.4;
  color: var(--about-text);
  cursor: pointer;
  list-style: none;
  font-family: var(--font-body);
}
body.editorial-v2 summary::-webkit-details-marker { display: none; }
body.editorial-v2 summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--about-text-dim);
  flex-shrink: 0;
  transition: color var(--transition), transform var(--transition);
}
body.editorial-v2 details[open] > summary::after {
  content: '−';
  color: var(--about-accent);
}
body.editorial-v2 details > p,
body.editorial-v2 details > div {
  padding: 0 0 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--about-text-soft);
}

/* Team profile grid ───────────────────────────────────────── */
.ed-profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.ed-profile-card__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 18px;
  background: var(--about-hairline);
}
.ed-profile-card__name {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.015em;
  color: var(--about-text);
  margin-bottom: 4px;
}
.ed-profile-card__role {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--about-accent);
  font-family: var(--font-body);
  margin-bottom: 14px;
}
.ed-profile-card__bio {
  font-size: 14px;
  line-height: 1.6;
  color: var(--about-text-soft);
}

/* Editorial pricing table ─────────────────────────────────── */
.ed-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ed-plan {
  padding: 32px 28px 36px;
  border: 1px solid var(--about-hairline);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ed-plan--featured {
  border-color: var(--about-accent);
  background: rgba(200, 147, 42, 0.04);
}
.ed-plan__badge {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--about-accent);
  font-family: var(--font-body);
}
.ed-plan__name {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--about-text);
}
.ed-plan__price {
  font-family: var(--font-mono);
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.03em;
  color: var(--about-text);
  line-height: 1;
}
.ed-plan__price-note {
  font-size: 12px;
  color: var(--about-text-dim);
  margin-top: 6px;
  font-family: var(--font-body);
}
.ed-plan__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.ed-plan__features li {
  font-size: 14px;
  color: var(--about-text-soft);
  padding-left: 1.2em;
  position: relative;
}
.ed-plan__features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--about-text-dim);
}
.ed-plan__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid var(--about-hairline-2);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--about-text);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  text-align: center;
}
.ed-plan__cta:hover {
  border-color: var(--about-accent);
  color: var(--about-accent);
}
.ed-plan--featured .ed-plan__cta {
  background: var(--about-accent);
  border-color: var(--about-accent);
  color: #0B0B0D;
}
.ed-plan--featured .ed-plan__cta:hover {
  background: transparent;
  color: var(--about-accent);
}
.ed-plan__trial-note {
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--about-accent);
  font-family: var(--font-body);
  margin-top: 8px;
}
.ed-plan__ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ed-plan__cta-trial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid var(--about-hairline);
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--about-text-soft);
  text-decoration: none;
  border-radius: 4px;
  transition: border-color var(--transition), color var(--transition);
  text-align: center;
}
.ed-plan__cta-trial:hover {
  border-color: var(--about-accent);
  color: var(--about-accent);
}
.ed-plan--bespoke {
  border-style: dashed;
}
.ed-plan__price--inquiry {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 38px);
  font-style: italic;
  letter-spacing: -0.015em;
}

/* Performance image gallery ───────────────────────────────── */
.ed-perf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.ed-perf-grid__img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--about-hairline);
  display: block;
}
.ed-perf-grid__caption {
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--about-text-dim);
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
}

/* Editorial prose block — constrained reading width ────────── */
.ed-prose {
  max-width: 720px;
}
.ed-prose p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--about-text-soft);
  margin-bottom: 20px;
}
.ed-prose p:last-child { margin-bottom: 0; }
.ed-prose a {
  color: var(--about-text);
  border-bottom: 1px solid var(--about-hairline-2);
  transition: color var(--transition), border-color var(--transition);
}
.ed-prose a:hover {
  color: var(--about-accent);
  border-color: var(--about-accent);
}

/* /performance — "Year one" anchor line ────────────────────── */
.performance-v2__anchor {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 30px);
  letter-spacing: -0.02em;
  color: var(--about-text-dim);
}
.performance-v2__anchor a {
  color: var(--about-text);
  border-bottom: 1px solid var(--about-hairline-2);
  transition: color var(--transition), border-color var(--transition);
}
.performance-v2__anchor a:hover {
  color: var(--about-accent);
  border-color: var(--about-accent);
}

/* Shared component responsive overrides ───────────────────── */
@media (max-width: 810px) {
  .ed-section { padding: 64px 20px 72px; }
  .ed-page-hero { padding: 64px 20px 56px; }
  .ed-profile-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .ed-pricing { grid-template-columns: 1fr; }
  .ed-perf-grid { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 600px) {
  .ed-profile-grid { grid-template-columns: 1fr; }
  .ed-legal { padding: 56px 20px 96px; }
}

/* ─── /get-in page ──────────────────────────────────────────────
   Scoped under body.get-in-v2 (which also has .editorial-v2).
   All --about-* tokens and font vars resolve from .editorial-v2.
─────────────────────────────────────────────────────────────── */

/* Billing period toggle — pill segmented control */
body.get-in-v2 .get-in-toggle {
  display: flex;
  gap: 3px;
  margin-bottom: 48px;
  background: rgba(239, 234, 224, 0.05);
  border: 1px solid var(--about-hairline);
  border-radius: 999px;
  padding: 4px;
  width: fit-content;
}
body.get-in-v2 .get-in-toggle__btn {
  padding: 9px 22px;
  border-radius: 999px;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--about-text-dim);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--transition), color var(--transition);
}
body.get-in-v2 .get-in-toggle__btn.is-active {
  background: var(--about-hairline-2);
  color: var(--about-text);
}
body.get-in-v2 .get-in-toggle__save {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--about-accent);
}

/* Monthly/annual price visibility — toggled by data-billing on #pricing-section */
#pricing-section[data-billing="monthly"] .get-in-annual { display: none; }
#pricing-section[data-billing="annual"]  .get-in-monthly { display: none; }

/* QR code block */
body.get-in-v2 .get-in-qr {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 48px;
}
body.get-in-v2 .get-in-qr__img {
  border: 1px solid var(--about-hairline-2);
  border-radius: 8px;
  display: block;
}
body.get-in-v2 .get-in-qr__label {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--about-text-dim);
}

/* How to subscribe — numbered steps */
body.get-in-v2 .get-in-steps__heading {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: -0.02em;
  color: var(--about-text);
  margin-bottom: 48px;
}
body.get-in-v2 .get-in-steps {
  list-style: none;
  max-width: var(--content-w);
}
body.get-in-v2 .get-in-steps__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--about-hairline);
  align-items: start;
}
body.get-in-v2 .get-in-steps__item:first-child {
  border-top: 1px solid var(--about-hairline);
}
body.get-in-v2 .get-in-steps__num {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--about-text-dim);
  padding-top: 3px;
}
body.get-in-v2 .get-in-steps__label {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--about-text);
  margin-bottom: 6px;
}
body.get-in-v2 .get-in-steps__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--about-text-soft);
}
body.get-in-v2 .get-in-disclosure {
  margin-top: 40px;
  font-size: 12.5px;
  color: var(--about-text-dim);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
/* Payment method framing note — appears below the step desc, above the USDT guide */
body.get-in-v2 .get-in-steps__note {
  margin-top: 10px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--about-text-dim);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
/* Inline USDT how-to — scoped so it doesn't inherit the FAQ block-level styles */
body.get-in-v2 .get-in-steps__usdt-guide {
  margin-top: 14px;
  border: none;
  border-bottom: none;
}
body.get-in-v2 .get-in-steps__usdt-summary {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  padding: 0;
  font-size: 12.5px;
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
  color: var(--about-accent);
  cursor: pointer;
  list-style: none;
  border: none;
  font-weight: 500;
}
body.get-in-v2 .get-in-steps__usdt-summary::-webkit-details-marker { display: none; }
body.get-in-v2 .get-in-steps__usdt-summary::after { content: none; }
body.get-in-v2 .get-in-steps__usdt-steps {
  margin: 10px 0 0 0;
  padding-left: 18px;
  list-style: decimal;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
body.get-in-v2 .get-in-steps__usdt-steps li {
  font-size: 13px;
  line-height: 1.6;
  color: var(--about-text-soft);
}

@media (max-width: 600px) {
  body.get-in-v2 .get-in-steps__item { grid-template-columns: 44px 1fr; }
  body.get-in-v2 .get-in-toggle { width: 100%; justify-content: center; }
}

/* ─── /how-it-works page ────────────────────────────────────────
   Scoped under body.how-v2 (which also has .editorial-v2).
   Only vertical rhythm needed — all accordion styles are shared
   via body.editorial-v2 details/summary in the component block.
─────────────────────────────────────────────────────────────── */
body.how-v2 .how-v2__hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
body.how-v2 .how-v2__logo {
  width: 220px;
  height: 220px;
  object-fit: contain;
  mix-blend-mode: lighten; /* black bg drops out, only gold renders */
  margin-bottom: 40px;
  margin-left: -12px; /* optical alignment with text edge */
}
body.how-v2 .how-v2__faq-section {
  padding-top: 48px;
  padding-bottom: 96px;
}
body.how-v2 .ed-faq {
  max-width: var(--content-w);
}

/* What you receive — content tutorial grid */
body.how-v2 .how-v2__content-section {
  padding: 96px 0;
}
body.how-v2 .how-v2__content-header {
  max-width: var(--reading-w);
  margin: 0 auto 56px;
  text-align: left;
}
body.how-v2 .how-v2__content-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--about-text);
  margin: 8px 0 16px;
}
body.how-v2 .how-v2__content-lede {
  font-size: 16px;
  line-height: 1.6;
  color: var(--about-text-soft);
  margin: 0;
}
body.how-v2 .how-v2__content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
body.how-v2 .how-v2__content-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px;
  border: 1px solid var(--about-hairline);
  border-radius: 4px;
  background: rgba(200, 147, 42, 0.02);
  transition: border-color var(--transition), background var(--transition);
}
body.how-v2 .how-v2__content-card:hover {
  border-color: var(--about-hairline-2);
  background: rgba(200, 147, 42, 0.04);
}
body.how-v2 .how-v2__content-card-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--about-accent);
  margin: 0;
}
body.how-v2 .how-v2__content-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--about-text);
  margin: 0;
}
body.how-v2 .how-v2__content-card-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--about-text-soft);
  margin: 0;
}
@media (max-width: 1024px) {
  body.how-v2 .how-v2__content-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 600px) {
  body.how-v2 .how-v2__logo { width: 160px; height: 160px; margin-left: 0; }
  body.how-v2 .how-v2__content-section { padding: 64px 0; }
  body.how-v2 .how-v2__content-grid { grid-template-columns: 1fr; gap: 16px; }
  body.how-v2 .how-v2__content-card { padding: 24px 20px; }
}

/* ─── / (home) page ────────────────────────────────────────────────
   Scoped under body.home-v2 (which also has .editorial-v2).
─────────────────────────────────────────────────────────────────── */
body.home-v2 .ed-page-hero { margin-bottom: 0; }
body.home-v2 .home-v2__data-strip {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--about-text-dim);
  display: flex;
  flex-wrap: wrap;
  gap: 0 8px;
  align-items: center;
}

/* What you get — 3-up tiles ─────────────────────────────────────── */
body.home-v2 .home-v2__tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
body.home-v2 .home-v2__tile {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body.home-v2 .home-v2__tile-title {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.015em;
  color: var(--about-text);
}
body.home-v2 .home-v2__tile-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--about-text-soft);
}

/* Stats strip ────────────────────────────────────────────────────── */
body.home-v2 .home-v2__stats {
  background: rgba(200, 147, 42, 0.03);
  border-top: 1px solid var(--about-hairline);
  border-bottom: 1px solid var(--about-hairline);
}
body.home-v2 .home-v2__stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
body.home-v2 .home-v2__stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body.home-v2 .home-v2__stat-value {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--about-text);
  line-height: 1.1;
}
body.home-v2 .home-v2__stat-label {
  font-size: 13px;
  line-height: 1.5;
  color: var(--about-text-soft);
}
body.home-v2 .home-v2__stat-note {
  font-size: 11px;
  color: var(--about-text-dim);
}

/* Quote section ────────────────────────────────────────────────── */
body.home-v2 .home-v2__quote {
  padding: 80px 20px;
}
body.home-v2 .home-v2__quote-text {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 48px);
  letter-spacing: -0.015em;
  color: var(--about-text);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
body.home-v2 .home-v2__quote-text p {
  margin: 0;
}
body.home-v2 .home-v2__quote-text a {
  border-bottom: 1px solid var(--about-hairline-2);
  transition: color var(--transition), border-color var(--transition);
}
body.home-v2 .home-v2__quote-text a:hover {
  color: var(--about-accent);
  border-color: var(--about-accent);
}
body.home-v2 .home-v2__quote-link {
  color: inherit;
  text-decoration: none;
}

/* CTA section ───────────────────────────────────────────────────── */
body.home-v2 .home-v2__cta {
  padding: 80px 20px;
}
body.home-v2 .home-v2__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}
body.home-v2 .home-v2__cta-disclosure {
  font-size: 12.5px;
  color: var(--about-text-dim);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-align: center;
  margin: 0;
}

/* Responsive ────────────────────────────────────────────────────── */
@media (max-width: 810px) {
  body.home-v2 .home-v2__tiles { grid-template-columns: 1fr; gap: 48px; }
  body.home-v2 .home-v2__stats-grid { grid-template-columns: 1fr; gap: 40px; }
  body.home-v2 .home-v2__quote { padding: 64px 20px; }
  body.home-v2 .home-v2__quote-text { font-size: clamp(24px, 5vw, 36px); }
  body.home-v2 .home-v2__cta { padding: 64px 20px; }
  body.home-v2 .home-v2__cta-buttons { flex-direction: column; }
}
@media (max-width: 600px) {
  body.home-v2 .home-v2__data-strip { font-size: 11.5px; }
  body.home-v2 .home-v2__tiles { gap: 40px 0; }
}

/* Performance data table (performance.html) ─────────────────────── */
.perf-summary {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}
.perf-summary__intro {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 32px;
}
.perf-table-wrap {
  overflow-x: auto;
}
.perf-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 13px;
}
.perf-table caption {
  caption-side: top;
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding-bottom: 14px;
}
.perf-table th,
.perf-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--hairline);
}
.perf-table th {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
}
.perf-table {
  min-width: 480px; /* ensures horizontal scroll on narrow viewports */
}
.perf-table td { color: var(--text-muted); }
.perf-table td.perf-table__outcome--win  { color: #4ade80; }
.perf-table td.perf-table__outcome--loss { color: #f87171; }
.perf-table__note {
  margin: 16px 0 0;
  font-size: 11.5px;
  color: var(--text-dim);
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
}
.perf-table__note a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}
.perf-table__note a:hover { border-color: var(--gold); }
