:root {
  --emerald-950: #041d18;
  --emerald-900: #073f34;
  --emerald-800: #0b5849;
  --charcoal: #101816;
  --charcoal-soft: #1a2521;
  --gold: #d7b56d;
  --gold-light: #ead49e;
  --ivory: #f6f1e4;
  --ivory-deep: #ebe3d2;
  --ink: #16201d;
  --muted: #65706c;
  --line: rgba(16, 24, 22, 0.15);
  --white-line: rgba(246, 241, 228, 0.18);
  --sans: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 200;
  top: 1rem;
  left: 1rem;
  transform: translateY(-180%);
  background: var(--ivory);
  color: var(--ink);
  padding: .7rem 1rem;
  border-radius: 2px;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: clamp(5rem, 9vw, 9rem) 0; }
.ivory { background: var(--ivory); }
.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1.3;
  text-transform: uppercase;
}
.display-small,
.section-intro h2,
.page-hero h1,
.article-hero h1,
.cta-inner h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.02;
}
.section-intro { max-width: 760px; margin-bottom: 3.5rem; }
.section-intro h2 { margin: 0; font-size: clamp(2.5rem, 6vw, 5.3rem); }
.section-intro p:last-child { max-width: 640px; margin: 1.4rem 0 0; color: var(--muted); font-size: 1.05rem; }
.section-intro.light h2 { color: var(--ivory); }
.section-intro.light p:last-child { color: rgba(246,241,228,.7); }
.lead { font-size: clamp(1.15rem, 2vw, 1.35rem); line-height: 1.65; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 78px;
  color: var(--ivory);
  background: rgba(4, 29, 24, .96);
  border-bottom: 1px solid rgba(215,181,109,.16);
  backdrop-filter: blur(18px);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: flex; align-items: center; gap: .85rem; font-size: .78rem; font-weight: 700; letter-spacing: .1em; line-height: 1.25; text-transform: uppercase; }
.brand picture, .brand img { width: 46px; height: 46px; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2rem); }
.desktop-nav a { color: rgba(246,241,228,.75); font-size: .78rem; letter-spacing: .07em; text-transform: uppercase; transition: color .2s ease; }
.desktop-nav a:hover { color: var(--gold-light); }
.header-cta { padding: .55rem .9rem; border: 1px solid rgba(215,181,109,.65); color: var(--gold-light) !important; }
.menu-button { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; }
.menu-button span { display: block; width: 22px; height: 1px; margin: 6px auto; background: var(--ivory); transition: .2s ease; }
.mobile-nav { display: none; }

.hero {
  position: relative;
  min-height: min(820px, calc(100vh - 78px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ivory);
  background: var(--emerald-950);
}
.hero-media, .hero-media picture, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media { opacity: .68; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,29,24,.97) 0%, rgba(4,29,24,.7) 48%, rgba(4,29,24,.18) 100%), linear-gradient(0deg, rgba(4,29,24,.7), transparent 55%); }
.hero-content { position: relative; z-index: 2; padding-block: 7rem; }
.hero h1 { max-width: 900px; margin: 0; font-family: var(--serif); font-size: clamp(3.7rem, 9vw, 8.2rem); font-weight: 400; letter-spacing: -.055em; line-height: .9; }
.hero-copy { max-width: 660px; margin: 2rem 0; color: rgba(246,241,228,.78); font-size: clamp(1.05rem, 2vw, 1.28rem); }
.hero-mark { position: absolute; z-index: 1; right: -3vw; bottom: -15vw; width: min(48vw, 620px); opacity: .08; filter: sepia(1) saturate(.7); }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 1px;
  font-size: .76rem;
  font-weight: 750;
  letter-spacing: .1em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: var(--emerald-950); }
.button-dark { background: var(--emerald-900); color: var(--ivory); }
.button-ghost { border-color: rgba(246,241,228,.4); color: var(--ivory); background: transparent; }
.button-outline { border-color: var(--emerald-900); color: var(--emerald-900); }
.microcopy { max-width: 610px; margin-top: 1.15rem; color: rgba(246,241,228,.54); font-size: .75rem; }
.text-link { display: inline-flex; gap: .5rem; align-items: center; margin-top: 1.4rem; border-bottom: 1px solid var(--gold); color: var(--emerald-900); font-size: .8rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }

.pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.pillar-card { min-height: 290px; padding: 2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.card-number { color: var(--gold); font-family: var(--serif); font-size: 1.15rem; }
.pillar-card h2 { margin: 4.5rem 0 .7rem; font-family: var(--serif); font-size: 1.6rem; font-weight: 400; }
.pillar-card p { margin: 0; color: var(--muted); font-size: .92rem; }

.founder-section { background: var(--ivory-deep); overflow: hidden; }
.split { display: grid; grid-template-columns: minmax(320px, .88fr) minmax(320px, 1fr); align-items: center; gap: clamp(3rem, 8vw, 8rem); }
.portrait-wrap { position: relative; max-width: 500px; }
.portrait { position: relative; z-index: 1; aspect-ratio: 3 / 4; object-fit: cover; object-position: top; filter: saturate(.82) contrast(1.03); }
.portrait-line { position: absolute; z-index: 0; inset: -22px 22px 22px -22px; border: 1px solid var(--gold); }
.display-small { margin: 0 0 1.8rem; font-size: clamp(2.7rem, 6vw, 5.7rem); }

.deep-section { background: var(--charcoal); color: var(--ivory); }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.gallery-item { margin: 0; overflow: hidden; background: var(--emerald-950); }
.gallery-item picture, .gallery-item img { height: 100%; }
.gallery-item img { object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.025); }
.gallery-1 { grid-column: span 5; height: 420px; }
.gallery-2 { grid-column: span 7; height: 420px; }
.gallery-3 { grid-column: span 4; height: 330px; }
.gallery-4 { grid-column: span 4; height: 330px; }
.gallery-5 { grid-column: span 4; height: 330px; }
.gallery-6 { grid-column: span 12; height: 360px; }
.center-action { display: flex; justify-content: center; margin-top: 3rem; }

.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.article-card { padding: 2rem; border: 1px solid var(--line); background: rgba(255,255,255,.22); }
.article-card h2 { margin: 1.2rem 0; font-family: var(--serif); font-size: 1.75rem; font-weight: 400; line-height: 1.15; }
.article-card p { color: var(--muted); }
.article-meta { font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.article-card .text-link { margin-top: 2rem; }

.faq-section { background: #efe8d8; }
.faq-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 8vw, 8rem); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { display: flex; justify-content: space-between; gap: 1rem; padding: 1.5rem 0; cursor: pointer; font-family: var(--serif); font-size: 1.35rem; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--gold); font-family: var(--sans); }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { max-width: 620px; margin: 0 0 1.6rem; color: var(--muted); }

.cta-band { padding: 4rem 0; background: var(--emerald-900); color: var(--ivory); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; }
.cta-inner h2 { margin: 0; font-size: clamp(2.4rem, 5vw, 4.8rem); }

.page-hero { position: relative; padding: clamp(6rem, 12vw, 11rem) 0 6rem; color: var(--ivory); background: var(--emerald-950); overflow: hidden; }
.page-hero::after { content: ""; position: absolute; right: -9rem; bottom: -10rem; width: 420px; height: 420px; border: 1px solid rgba(215,181,109,.2); border-radius: 50%; box-shadow: 0 0 0 54px rgba(215,181,109,.035), 0 0 0 108px rgba(215,181,109,.025); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 960px; margin: 0; font-size: clamp(3.8rem, 9vw, 8rem); }
.page-hero p:last-child { max-width: 690px; color: rgba(246,241,228,.7); font-size: 1.15rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .6rem; align-items: center; margin-bottom: 1.8rem; color: rgba(246,241,228,.58); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span[aria-hidden] { color: var(--gold); }

.content-section { padding: clamp(4rem, 9vw, 8rem) 0; }
.content-narrow { width: min(760px, calc(100% - 40px)); margin-inline: auto; }
.content-narrow h2 { margin: 3rem 0 1rem; font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 400; line-height: 1.08; }
.content-narrow h3 { margin-top: 2.2rem; font-size: 1.1rem; letter-spacing: .03em; }
.content-narrow p, .content-narrow li { color: #4e5b57; }
.content-narrow blockquote { margin: 2.5rem 0; padding: 1.2rem 0 1.2rem 1.6rem; border-left: 2px solid var(--gold); color: var(--emerald-900); font-family: var(--serif); font-size: 1.55rem; }
.content-narrow a { color: var(--emerald-900); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 4px; }
.legal-date { color: var(--muted); font-size: .82rem; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.feature-card { padding: 2rem; border: 1px solid var(--line); }
.feature-card h2 { font-family: var(--serif); font-size: 1.65rem; font-weight: 400; }
.feature-card p { color: var(--muted); }
.feature-icon { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--emerald-900); font-family: var(--serif); }
.photo-band { background: var(--charcoal); }
.photo-band-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 660px; }
.photo-band-grid picture, .photo-band-grid img { height: 100%; object-fit: cover; }
.photo-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 7vw, 7rem); color: var(--ivory); }
.photo-copy h2 { font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 5rem); font-weight: 400; line-height: 1; }
.photo-copy p { color: rgba(246,241,228,.7); }

.resource-list { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.resource-row { display: grid; grid-template-columns: 72px 1fr auto; gap: 1rem; align-items: center; padding: 1.5rem; background: var(--ivory); }
.resource-row h2 { margin: 0; font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
.resource-row p { margin: .25rem 0 0; color: var(--muted); }
.resource-type { color: var(--gold); font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.article-hero { padding: 7rem 0 5rem; color: var(--ivory); background: var(--emerald-950); }
.article-hero h1 { max-width: 920px; margin: 1rem 0 1.5rem; font-size: clamp(3.3rem, 8vw, 7rem); }
.article-hero .article-meta { color: var(--gold); }
.article-hero .lede { max-width: 700px; color: rgba(246,241,228,.7); font-size: 1.2rem; }
.article-note { margin-top: 3rem; padding: 1.1rem 1.3rem; border: 1px solid rgba(215,181,109,.35); color: rgba(246,241,228,.65); font-size: .78rem; }
.article-body { width: min(760px, calc(100% - 40px)); margin-inline: auto; padding: 5rem 0; }
.article-body h2 { margin: 3.6rem 0 1rem; font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3.7rem); font-weight: 400; line-height: 1.05; }
.article-body h3 { margin: 2.4rem 0 .6rem; font-size: 1.05rem; }
.article-body p, .article-body li { color: #4e5b57; }
.article-body li { margin-bottom: .75rem; }
.article-body aside { margin: 2.5rem 0; padding: 1.5rem; border: 1px solid var(--line); background: #eee7d7; }
.article-body aside strong { color: var(--emerald-900); }

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 8rem); }
.contact-links { display: grid; gap: 1rem; margin-top: 2rem; }
.contact-link { display: block; padding: 1.2rem; border: 1px solid var(--line); }
.contact-link strong { display: block; color: var(--emerald-900); }
.contact-link span { color: var(--muted); font-size: .88rem; }
.contact-form { padding: clamp(1.5rem, 5vw, 3rem); background: #eee7d7; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .5rem; margin-bottom: 1rem; }
.field label { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field textarea { width: 100%; border: 1px solid rgba(16,24,22,.25); border-radius: 0; background: var(--ivory); padding: .85rem; color: var(--ink); }
.field textarea { min-height: 150px; resize: vertical; }
.form-help { color: var(--muted); font-size: .78rem; }
.form-error { color: #8d2924; font-size: .82rem; }

.site-footer { padding: 5rem 0 2rem; color: rgba(246,241,228,.73); background: var(--charcoal); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 3rem; padding-bottom: 4rem; }
.footer-brand .brand { color: var(--ivory); }
.footer-brand > p { max-width: 370px; margin-top: 1.5rem; }
.footer-heading { color: var(--gold); font-size: .67rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.footer-links { display: grid; gap: .65rem; }
.footer-links a:hover { color: var(--ivory); }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; padding-top: 2rem; border-top: 1px solid var(--white-line); font-size: .72rem; }
.footer-bottom p { margin: 0; max-width: 780px; }

.not-found { min-height: 70vh; display: grid; place-items: center; padding: 5rem 0; text-align: center; background: var(--emerald-950); color: var(--ivory); }
.not-found strong { color: var(--gold); font-family: var(--serif); font-size: 8rem; font-weight: 400; line-height: 1; }
.not-found h1 { font-family: var(--serif); font-size: 3rem; font-weight: 400; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .mobile-nav { position: absolute; top: 78px; left: 0; right: 0; display: grid; gap: 0; padding: .7rem 20px 1.3rem; background: var(--emerald-950); border-bottom: 1px solid rgba(215,181,109,.2); transform: translateY(-140%); opacity: 0; visibility: hidden; transition: .25s ease; }
  .mobile-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .mobile-nav a { padding: .8rem 0; border-bottom: 1px solid rgba(246,241,228,.1); font-size: .82rem; text-transform: uppercase; }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .article-grid, .feature-grid { grid-template-columns: 1fr 1fr; }
  .faq-layout, .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .container, .content-narrow, .article-body { width: min(100% - 28px, 1180px); }
  .site-header { height: 70px; }
  .brand { font-size: .67rem; }
  .brand picture, .brand img { width: 40px; height: 40px; }
  .mobile-nav { top: 70px; }
  .hero { min-height: 760px; }
  .hero-shade { background: linear-gradient(90deg, rgba(4,29,24,.95), rgba(4,29,24,.62)), linear-gradient(0deg, rgba(4,29,24,.9), transparent); }
  .hero h1 { font-size: clamp(3.4rem, 16vw, 5.8rem); }
  .hero-mark { width: 82vw; right: -18vw; bottom: -5rem; }
  .button { width: 100%; }
  .pillar-grid, .article-grid, .feature-grid { grid-template-columns: 1fr; }
  .pillar-card { min-height: 235px; }
  .pillar-card h2 { margin-top: 2.5rem; }
  .split { grid-template-columns: 1fr; }
  .portrait-wrap { margin-left: 18px; }
  .gallery-grid { display: grid; grid-template-columns: 1fr 1fr; }
  .gallery-item { grid-column: auto; height: 240px; }
  .gallery-1, .gallery-2, .gallery-6 { grid-column: 1 / -1; height: 300px; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .photo-band-grid { grid-template-columns: 1fr; min-height: auto; }
  .photo-band-grid picture, .photo-band-grid img { min-height: 500px; }
  .resource-row { grid-template-columns: 1fr; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Editorial home — version two */
.editorial-hero {
  min-height: calc(100svh - 78px);
  display: grid;
  grid-template-columns: 78px minmax(0, 1.15fr) minmax(420px, .85fr);
  color: var(--ivory);
  background: var(--emerald-950);
  border-bottom: 1px solid rgba(215,181,109,.22);
}
.editorial-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  border-right: 1px solid rgba(215,181,109,.22);
  color: rgba(246,241,228,.55);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.editorial-rail span { writing-mode: vertical-rl; transform: rotate(180deg); }
.editorial-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 7vw, 8rem);
}
.hero-index {
  display: flex;
  justify-content: space-between;
  margin-bottom: clamp(3rem, 8vh, 7rem);
  padding-bottom: .8rem;
  border-bottom: 1px solid rgba(246,241,228,.18);
  color: rgba(246,241,228,.5);
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.editorial-copy h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.2rem, 8.5vw, 9.2rem);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: .79;
}
.editorial-copy h1 em {
  display: block;
  margin-left: clamp(1.5rem, 7vw, 8rem);
  color: var(--gold);
  font-weight: 400;
}
.editorial-lede {
  max-width: 570px;
  margin: 2.5rem 0 2rem;
  color: rgba(246,241,228,.72);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}
.editorial-portrait {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  border-left: 1px solid rgba(215,181,109,.22);
  background: #030706;
}
.editorial-portrait picture,
.editorial-portrait img {
  width: 100%;
  height: 100%;
}
.editorial-portrait img {
  object-fit: cover;
  object-position: 50% 18%;
}
.editorial-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4,29,24,.82) 0%, transparent 42%);
}
.portrait-number {
  position: absolute;
  z-index: 2;
  top: 1.5rem;
  right: 1.5rem;
  color: rgba(215,181,109,.7);
  font-family: var(--serif);
  font-size: clamp(5rem, 9vw, 10rem);
  line-height: 1;
  opacity: .28;
}
.portrait-caption {
  position: absolute;
  z-index: 3;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(246,241,228,.35);
}
.portrait-caption span {
  color: var(--gold);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.portrait-caption strong { font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.discipline-ticker {
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  padding: 1.15rem 2rem;
  color: var(--emerald-950);
  background: var(--gold);
  white-space: nowrap;
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.discipline-ticker span { display: inline-flex; align-items: center; gap: 2rem; }
.discipline-ticker i { font-size: .5rem; font-style: normal; }

.manifesto-section { padding: clamp(6rem, 11vw, 11rem) 0; background: var(--ivory); }
.manifesto-grid {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: clamp(3rem, 9vw, 10rem);
  margin-bottom: clamp(5rem, 10vw, 9rem);
}
.manifesto-label {
  padding-top: .7rem;
  border-top: 1px solid var(--ink);
  color: var(--muted);
  font-size: .86rem;
}
.manifesto-label .eyebrow { margin-bottom: 4rem; color: var(--emerald-900); }
.manifesto-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.3rem, 7vw, 7.2rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .94;
}
.manifesto-copy > p {
  max-width: 690px;
  margin: 2.2rem 0 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
}
.method-list { border-top: 1px solid var(--ink); }
.method-row {
  display: grid;
  grid-template-columns: 80px minmax(190px, .7fr) 1.3fr 40px;
  gap: 2rem;
  align-items: center;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--line);
  transition: color .2s ease, padding .2s ease;
}
.method-row:hover { padding-right: .75rem; padding-left: .75rem; color: var(--emerald-900); }
.method-number { color: var(--gold); font-family: var(--serif); font-size: 1.1rem; }
.method-row h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 400; text-transform: capitalize; }
.method-row p { max-width: 560px; margin: 0; color: var(--muted); }
.method-mark { color: var(--gold); font-size: 1.3rem; }

.city-statement {
  position: relative;
  min-height: 800px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ivory);
  background: var(--charcoal);
}
.city-statement > picture,
.city-statement > picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.city-statement > picture { opacity: .72; }
.city-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,29,24,.97), rgba(4,29,24,.62) 50%, rgba(4,29,24,.12)), linear-gradient(0deg, rgba(4,29,24,.65), transparent 50%); }
.city-content { position: relative; z-index: 2; }
.city-content h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .83;
}
.city-content > p:not(.eyebrow) { max-width: 520px; margin: 2.3rem 0; color: rgba(246,241,228,.7); font-size: 1.1rem; }
.city-stamp {
  position: absolute;
  z-index: 2;
  right: clamp(2rem, 8vw, 8rem);
  bottom: clamp(2rem, 6vw, 6rem);
  width: clamp(110px, 14vw, 190px);
  opacity: .72;
}

.community-editorial { padding: clamp(6rem, 10vw, 10rem) 0; color: var(--ivory); background: var(--charcoal); }
.editorial-heading {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
  margin-bottom: 4rem;
}
.editorial-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 7.8rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .9;
}
.editorial-heading > p { margin: 0 0 .7rem; color: rgba(246,241,228,.62); }
.community-collage {
  display: grid;
  grid-template-columns: 1.2fr .65fr .8fr;
  grid-template-rows: 270px 270px;
  gap: 14px;
}
.community-collage figure { position: relative; margin: 0; overflow: hidden; background: var(--emerald-950); }
.community-collage picture,
.community-collage img { width: 100%; height: 100%; }
.community-collage img { object-fit: cover; transition: transform .5s ease; }
.community-collage figure:hover img { transform: scale(1.02); }
.collage-main { grid-row: 1 / 3; }
.collage-tall { grid-row: 1 / 3; }
.collage-wide { grid-column: 3; }
.collage-main figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding-top: .8rem;
  border-top: 1px solid rgba(246,241,228,.45);
  color: var(--ivory);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.collage-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  color: var(--emerald-950);
  background: var(--gold);
}
.collage-note span { font-family: var(--serif); font-size: 1.4rem; }
.collage-note strong { font-family: var(--serif); font-size: 2rem; font-weight: 400; line-height: 1; }
.collage-note a { margin-top: 2rem; font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.journal-editorial { padding: clamp(6rem, 10vw, 10rem) 0; background: var(--ivory-deep); }
.journal-heading { color: var(--ink); }
.journal-heading .text-link { margin: 0 0 1rem auto; }
.journal-list { border-top: 1px solid var(--ink); }
.journal-row {
  display: grid;
  grid-template-columns: 70px 1.05fr .8fr 40px;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  transition: background .2s ease, padding .2s ease;
}
.journal-row:hover { padding-right: 1rem; padding-left: 1rem; background: rgba(255,255,255,.28); }
.journal-number { color: var(--gold); font-family: var(--serif); font-size: 1.2rem; }
.journal-row h3 { margin: .5rem 0 0; font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 400; line-height: 1.05; }
.journal-row p { margin: 0; color: var(--muted); }
.journal-arrow { color: var(--gold); font-size: 1.4rem; }

.faq-editorial { padding: clamp(6rem, 10vw, 10rem) 0; background: var(--ivory); }
.faq-editorial h2 {
  margin: 0 0 1.8rem;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .92;
}
.faq-editorial .faq-layout > div:first-child > p:not(.eyebrow) { max-width: 480px; color: var(--muted); }

.closing-panel { padding: clamp(5rem, 9vw, 9rem) 0; color: var(--ivory); background: var(--emerald-950); }
.closing-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(3rem, 9vw, 9rem); align-items: center; }
.closing-emblem { width: min(100%, 390px); opacity: .87; }
.closing-grid h2 { margin: 0 0 2.5rem; font-family: var(--serif); font-size: clamp(3.5rem, 7vw, 7.2rem); font-weight: 400; letter-spacing: -.055em; line-height: .9; }

/* Refresh the shared inner-page shell */
.page-hero {
  padding: clamp(6rem, 11vw, 10rem) 0 clamp(5rem, 8vw, 7rem);
  color: var(--ink);
  background: var(--ivory-deep);
  border-bottom: 1px solid var(--ink);
}
.page-hero::before {
  content: "FMC";
  position: absolute;
  right: 4vw;
  bottom: -1.4rem;
  color: rgba(7,63,52,.055);
  font-family: var(--serif);
  font-size: clamp(9rem, 25vw, 23rem);
  line-height: .7;
}
.page-hero::after { border-color: rgba(7,63,52,.12); box-shadow: 0 0 0 54px rgba(7,63,52,.018), 0 0 0 108px rgba(7,63,52,.012); }
.page-hero h1 { max-width: 1050px; font-size: clamp(3.8rem, 8.5vw, 8rem); }
.page-hero p:last-child { color: var(--muted); }
.page-hero .breadcrumbs { color: var(--muted); }

@media (max-width: 1100px) {
  .editorial-hero { grid-template-columns: 58px 1.05fr .95fr; }
  .editorial-copy { padding: clamp(3rem, 5vw, 5rem); }
  .community-collage { grid-template-columns: 1.2fr .8fr; grid-template-rows: 310px 250px; }
  .collage-main { grid-row: 1 / 3; }
  .collage-tall { grid-row: 1; }
  .collage-wide { display: none; }
  .collage-note { grid-column: 2; }
}

@media (max-width: 820px) {
  .editorial-hero { min-height: auto; grid-template-columns: 1fr; }
  .editorial-rail { display: none; }
  .editorial-copy { min-height: 700px; padding: 4.5rem 28px; }
  .hero-index { margin-bottom: 5rem; }
  .editorial-portrait { min-height: 720px; border-top: 1px solid rgba(215,181,109,.22); border-left: 0; }
  .manifesto-grid, .editorial-heading, .closing-grid { grid-template-columns: 1fr; }
  .manifesto-label .eyebrow { margin-bottom: 1.5rem; }
  .method-row { grid-template-columns: 55px 1fr 30px; gap: 1rem; }
  .method-row p { grid-column: 2 / 4; }
  .city-statement { min-height: 700px; }
  .journal-row { grid-template-columns: 50px 1fr 35px; gap: 1rem; }
  .journal-row p { grid-column: 2 / 4; }
  .journal-heading .text-link { margin: 0; }
  .closing-emblem { width: 230px; }
}

@media (max-width: 560px) {
  .editorial-copy { min-height: 670px; padding-inline: 18px; }
  .editorial-copy h1 { font-size: clamp(3.8rem, 18vw, 5.7rem); }
  .editorial-copy h1 em { margin-left: 1.2rem; }
  .editorial-portrait { min-height: 620px; }
  .discipline-ticker { justify-content: flex-start; overflow-x: auto; }
  .manifesto-grid { margin-bottom: 4rem; }
  .method-row { padding: 1.3rem 0; }
  .community-collage { grid-template-columns: 1fr; grid-template-rows: 390px 300px auto; }
  .collage-main, .collage-tall, .collage-note { grid-column: 1; grid-row: auto; }
  .collage-wide { display: none; }
  .collage-note { min-height: 230px; }
  .journal-row { padding: 1.5rem 0; }
  .city-stamp { display: none; }
}

/* Motion system — inspired by kinetic sports storytelling, adapted for FMC */
.motion-loader {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr auto auto;
  padding: clamp(1.25rem, 4vw, 3.5rem);
  color: var(--ivory);
  background:
    linear-gradient(120deg, transparent 0 52%, rgba(215,181,109,.035) 52% 53%, transparent 53%),
    var(--emerald-950);
  animation: loaderExit .48s 1.12s cubic-bezier(.7,0,.2,1) forwards;
  pointer-events: none;
}
.loader-emblem {
  align-self: center;
  justify-self: center;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(5rem, 17vw, 15rem);
  letter-spacing: -.08em;
  line-height: 1;
  animation: loaderPulse 1.1s ease-out both;
}
.loader-rule {
  height: 1px;
  overflow: hidden;
  background: rgba(246,241,228,.16);
}
.loader-rule span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform-origin: left center;
  transition: transform .08s linear;
}
.loader-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  color: rgba(246,241,228,.62);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.loader-meta strong { color: var(--gold); font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
@keyframes loaderExit {
  to { opacity: 0; visibility: hidden; transform: translateY(-100%); }
}
@keyframes loaderPulse {
  0% { opacity: 0; transform: scale(.86); letter-spacing: .12em; }
  55% { opacity: 1; }
  100% { opacity: 1; transform: scale(1); letter-spacing: -.08em; }
}

.motion-progress {
  position: fixed;
  z-index: 150;
  top: 77px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(var(--motion-progress, 0));
  transform-origin: left center;
  pointer-events: none;
}
.motion-cursor {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(215,181,109,.78);
  border-radius: 50%;
  opacity: 0;
  transform: translate3d(calc(var(--pointer-x, -100px) - 17px), calc(var(--pointer-y, -100px) - 17px), 0);
  transition: width .2s ease, height .2s ease, opacity .2s ease;
  pointer-events: none;
  mix-blend-mode: difference;
}
.motion-cursor span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
}
.pointer-active .motion-cursor { opacity: 1; }
.button {
  --magnetic-x: 0px;
  --magnetic-y: 0px;
  transform: translate3d(var(--magnetic-x), var(--magnetic-y), 0);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), background .2s ease, color .2s ease;
}
.button:hover { transform: translate3d(var(--magnetic-x), calc(var(--magnetic-y) - 2px), 0); }

.motion-enhanced .motion-target {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity .75s cubic-bezier(.2,.7,.2,1),
    transform .9s cubic-bezier(.16,1,.3,1);
}
.motion-enhanced .motion-target.is-visible { opacity: 1; transform: translateY(0); }
.motion-enhanced .method-row:nth-child(2),
.motion-enhanced .journal-row:nth-child(2) { transition-delay: .07s; }
.motion-enhanced .method-row:nth-child(3),
.motion-enhanced .journal-row:nth-child(3) { transition-delay: .14s; }
.motion-enhanced .method-row:nth-child(4) { transition-delay: .21s; }

.editorial-copy h1 { overflow: hidden; }
.editorial-copy h1 > span,
.editorial-copy h1 > em {
  display: block;
  transform-origin: left bottom;
}
.motion-loaded .editorial-copy h1 > span {
  animation: headlineIn .9s .05s cubic-bezier(.16,1,.3,1) both;
}
.motion-loaded .editorial-copy h1 > em {
  animation: headlineIn .95s .16s cubic-bezier(.16,1,.3,1) both;
}
@keyframes headlineIn {
  from { opacity: 0; transform: translateY(110%) skewY(4deg); }
  to { opacity: 1; transform: translateY(0) skewY(0); }
}

.editorial-portrait > picture {
  display: block;
  transform: translateY(var(--hero-parallax, 0px)) scale(1.035);
  transition: transform .08s linear;
}
.portrait-slices {
  position: absolute;
  z-index: 3;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.portrait-slices span {
  position: absolute;
  right: -5%;
  left: -5%;
  height: 8%;
  opacity: 0;
  background-image: url("/assets/images/founder-ashutosh.webp");
  background-repeat: no-repeat;
  background-size: 91% auto;
  filter: saturate(.92) contrast(1.08);
}
.portrait-slices span:nth-child(1) { top: 24%; background-position: 50% 20%; }
.portrait-slices span:nth-child(2) { top: 35%; background-position: 50% 31%; }
.portrait-slices span:nth-child(3) { top: 46%; background-position: 50% 42%; }
.motion-loaded .portrait-slices span:nth-child(1) { animation: sliceFlash 1.25s .1s cubic-bezier(.16,1,.3,1) both; }
.motion-loaded .portrait-slices span:nth-child(2) { animation: sliceFlash 1.15s .18s cubic-bezier(.16,1,.3,1) reverse both; }
.motion-loaded .portrait-slices span:nth-child(3) { animation: sliceFlash 1.3s .25s cubic-bezier(.16,1,.3,1) both; }
@keyframes sliceFlash {
  0% { opacity: 0; transform: translateX(-65%); }
  18% { opacity: 1; }
  72% { opacity: .95; transform: translateX(8%); }
  100% { opacity: 0; transform: translateX(55%); }
}

.discipline-ticker { display: block; padding-inline: 0; }
.ticker-track { display: flex; width: max-content; animation: tickerMove 26s linear infinite; }
.ticker-group { display: flex; align-items: center; }
.ticker-group span { padding-left: 2rem; }
@keyframes tickerMove {
  to { transform: translateX(-50%); }
}
.discipline-ticker:hover .ticker-track { animation-play-state: paused; }

.city-statement > picture {
  transform: translateY(var(--city-parallax, 0px)) scale(1.08);
  transition: transform .08s linear;
}
.city-content h2 {
  background: linear-gradient(90deg, var(--ivory) 0 49%, var(--gold) 49% 100%);
  background-size: 205% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: background-position 1.1s cubic-bezier(.16,1,.3,1);
}
.city-content.is-visible h2 { background-position: 0 0; }
.collage-main.is-visible img { animation: imageDrift 9s ease-in-out infinite alternate; }
.collage-tall.is-visible img { animation: imageDrift 11s 1s ease-in-out infinite alternate-reverse; }
@keyframes imageDrift {
  from { transform: scale(1.015) translate3d(-.5%, 0, 0); }
  to { transform: scale(1.06) translate3d(.7%, -1%, 0); }
}

.journal-row { position: relative; z-index: 0; overflow: hidden; }
.journal-row::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .45s cubic-bezier(.16,1,.3,1);
}
.journal-row:hover::before { transform: scaleX(1); transform-origin: left center; }
.journal-row:hover p,
.journal-row:hover .article-meta,
.journal-row:hover .journal-number,
.journal-row:hover .journal-arrow { color: var(--emerald-950); }

@media (max-width: 720px) {
  .motion-progress { top: 69px; }
  .motion-cursor { display: none; }
  .portrait-slices span { background-image: url("/assets/images/founder-ashutosh.avif"); }
  .ticker-track { animation-duration: 20s; }
}

@media (prefers-reduced-motion: reduce) {
  .motion-loader { display: none; }
  .motion-progress, .motion-cursor, .portrait-slices { display: none; }
  .motion-target { opacity: 1 !important; transform: none !important; }
  .editorial-portrait > picture,
  .city-statement > picture { transform: none !important; }
  .ticker-track { animation: none !important; }
  .collage-main img,
  .collage-tall img { animation: none !important; }
  .editorial-copy h1 > span,
  .editorial-copy h1 > em { animation: none !important; }
}

/* FMC minimal system — inspired by modern product storytelling */
:root {
  --apple-white: #ffffff;
  --apple-soft: #f5f5f7;
  --apple-panel: #fbfbfd;
  --apple-ink: #1d1d1f;
  --apple-muted: #6e6e73;
  --apple-blue: #0071e3;
  --apple-blue-hover: #0077ed;
  --apple-black: #000000;
  --apple-radius: 28px;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --serif: var(--sans);
}
html { background: var(--apple-white); }
body {
  background: var(--apple-white);
  color: var(--apple-ink);
  font-family: var(--sans);
  line-height: 1.47059;
  letter-spacing: -.022em;
}
.container { width: min(1024px, calc(100% - 44px)); }
.eyebrow {
  color: var(--apple-muted);
  font-size: .82rem;
  letter-spacing: -.01em;
  text-transform: none;
}

.site-header {
  position: fixed;
  right: 0;
  left: 0;
  width: 100%;
  height: 44px;
  color: var(--apple-ink);
  background: rgba(255,255,255,.82);
  border-bottom: 1px solid rgba(0,0,0,.05);
  backdrop-filter: saturate(180%) blur(20px);
}
.header-inner { width: min(1000px, calc(100% - 32px)); gap: 1.4rem; }
.brand {
  gap: .5rem;
  color: var(--apple-ink);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: -.01em;
  text-transform: none;
}
.brand span { white-space: nowrap; }
.brand picture, .brand img { width: 24px; height: 24px; }
.desktop-nav { flex: 1; justify-content: flex-end; gap: clamp(.9rem, 2.2vw, 2rem); }
.desktop-nav a {
  color: rgba(29,29,31,.84);
  font-size: .69rem;
  font-weight: 400;
  letter-spacing: -.01em;
  text-transform: none;
}
.desktop-nav a:hover { color: var(--apple-black); }
.header-cta {
  padding: .35rem .7rem;
  border: 0;
  border-radius: 999px;
  color: var(--apple-white) !important;
  background: var(--apple-blue);
}
.menu-button { height: 44px; }
.menu-button span { background: var(--apple-ink); }
.mobile-nav {
  top: 44px;
  padding: 1rem 24px 2rem;
  color: var(--apple-ink);
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(0,0,0,.08);
  backdrop-filter: blur(20px);
}
.mobile-nav a {
  border-color: rgba(0,0,0,.08);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -.025em;
  text-transform: none;
}
main { padding-top: 44px; }

.button {
  min-height: 42px;
  width: auto;
  padding: .65rem 1.15rem;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 400;
  letter-spacing: -.01em;
  text-transform: none;
  transform: none;
}
.button:hover { transform: none; }
.button-gold, .button-dark {
  color: var(--apple-white);
  background: var(--apple-blue);
}
.button-gold:hover, .button-dark:hover { background: var(--apple-blue-hover); }
.button-outline {
  color: var(--apple-blue);
  border-color: var(--apple-blue);
  background: transparent;
}
.button-ghost {
  color: var(--apple-white);
  border-color: rgba(255,255,255,.42);
  background: transparent;
}
.text-link, .apple-link {
  display: inline-flex;
  align-items: center;
  gap: .28rem;
  margin: 0;
  color: var(--apple-blue);
  border: 0;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: -.02em;
  text-transform: none;
}
.apple-link:hover { text-decoration: underline; }

.apple-notice {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  padding: .7rem 1rem;
  color: var(--apple-ink);
  background: var(--apple-white);
  font-size: .86rem;
  text-align: center;
}
.apple-notice a { color: var(--apple-blue); }
.apple-notice a:hover { text-decoration: underline; }

.apple-hero {
  position: relative;
  min-height: 920px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.apple-hero-dark { color: var(--apple-white); background: var(--apple-black); }
.apple-hero-dark .apple-link { color: #2997ff; }
.apple-hero-copy {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 32px));
  padding-top: clamp(4.5rem, 8vw, 7rem);
}
.apple-kicker {
  margin: 0 0 .55rem;
  color: inherit;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -.025em;
}
.apple-hero h1,
.apple-stage-heading h2,
.apple-skyline-copy h2,
.apple-faq h2,
.apple-final-cta h2 {
  margin: 0;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: .98;
}
.apple-hero h1 { font-size: clamp(3.4rem, 7.5vw, 6.8rem); }
.apple-hero-copy > p:not(.apple-kicker) {
  max-width: 720px;
  margin: 1.2rem auto 0;
  color: #a1a1a6;
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  line-height: 1.25;
}
.apple-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.8rem;
}
.apple-founder-visual {
  position: absolute;
  right: 0;
  bottom: -8%;
  left: 0;
  height: 67%;
  display: flex;
  justify-content: center;
}
.apple-founder-visual picture,
.apple-founder-visual img { width: auto; height: 100%; }
.apple-founder-visual picture { transform: translateY(var(--hero-float, 0px)) scale(1.03); }
.apple-founder-visual img { object-fit: contain; object-position: center bottom; }
.apple-founder-label {
  position: absolute;
  right: max(24px, calc((100vw - 1024px) / 2));
  bottom: 12%;
  display: grid;
  gap: .2rem;
  text-align: right;
}
.apple-founder-label strong { font-size: 1.1rem; }
.apple-founder-label span { color: #86868b; font-size: .8rem; }
.apple-legal-line {
  position: absolute;
  z-index: 3;
  bottom: 1.2rem;
  width: calc(100% - 32px);
  margin: 0;
  color: #86868b;
  font-size: .7rem;
}

.apple-stage {
  padding: clamp(6rem, 10vw, 9rem) max(22px, calc((100vw - 1200px) / 2));
}
.apple-stage-light { background: var(--apple-white); }
.apple-stage-soft { background: var(--apple-soft); }
.apple-stage-heading {
  width: min(900px, 100%);
  margin: 0 auto clamp(3rem, 7vw, 5rem);
  text-align: center;
}
.apple-stage-heading .apple-kicker { color: var(--apple-muted); }
.apple-stage-heading h2,
.apple-faq h2,
.apple-final-cta h2 { font-size: clamp(3rem, 6vw, 5.5rem); }
.apple-stage-heading > p:not(.apple-kicker) {
  max-width: 700px;
  margin: 1.2rem auto 0;
  color: var(--apple-muted);
  font-size: clamp(1.12rem, 2.2vw, 1.55rem);
  line-height: 1.3;
}
.apple-feature-shelf {
  width: min(1200px, 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: auto;
}
.apple-feature-card {
  position: relative;
  min-height: 330px;
  padding: 1.7rem;
  overflow: hidden;
  border-radius: var(--apple-radius);
  background: var(--apple-soft);
}
.apple-feature-card > span { color: var(--apple-muted); font-size: .75rem; }
.apple-feature-card h3 { margin: 5rem 0 .7rem; font-size: 1.6rem; font-weight: 600; letter-spacing: -.035em; text-transform: capitalize; }
.apple-feature-card p { margin: 0; color: var(--apple-muted); font-size: .93rem; }
.apple-feature-card a,
.apple-media-card a {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--apple-white);
  background: var(--apple-ink);
  font-size: 1.3rem;
}

.apple-skyline-stage {
  position: relative;
  min-height: min(900px, 90svh);
  display: grid;
  overflow: hidden;
  place-items: center;
  color: var(--apple-white);
  background: var(--apple-black);
  text-align: center;
}
.apple-skyline-stage > picture,
.apple-skyline-stage > picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.apple-skyline-stage > picture {
  opacity: .64;
  transform: translateY(var(--skyline-float, 0px)) scale(1.07);
}
.apple-skyline-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.82), rgba(0,0,0,.08) 60%), linear-gradient(90deg, rgba(0,0,0,.28), transparent, rgba(0,0,0,.28)); }
.apple-skyline-copy { position: relative; z-index: 2; width: min(900px, calc(100% - 32px)); }
.apple-skyline-copy .apple-kicker { color: rgba(255,255,255,.75); }
.apple-skyline-copy h2 { font-size: clamp(3.4rem, 7vw, 6.6rem); }
.apple-skyline-copy > p:not(.apple-kicker) { max-width: 680px; margin: 1.2rem auto 1.5rem; color: rgba(255,255,255,.72); font-size: clamp(1.15rem, 2.2vw, 1.5rem); }
.apple-link-light { color: #2997ff; }

.apple-community-grid {
  width: min(1200px, 100%);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  margin: auto;
}
.apple-media-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: var(--apple-radius);
  color: var(--apple-white);
  background: var(--apple-black);
}
.apple-media-large { grid-row: span 2; min-height: 1018px; }
.apple-media-card > picture,
.apple-media-card > picture img { width: 100%; height: 100%; }
.apple-media-card > picture { position: absolute; inset: 0; }
.apple-media-card img { object-fit: cover; }
.apple-media-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.78), transparent 58%); }
.apple-media-card > div { position: absolute; z-index: 2; right: 2rem; bottom: 2rem; left: 2rem; }
.apple-media-card > div > p { margin: 0 0 .35rem; color: rgba(255,255,255,.7); font-size: .85rem; }
.apple-media-card h3 { max-width: 560px; margin: 0; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 600; letter-spacing: -.045em; line-height: 1.03; }
.apple-media-card a { z-index: 3; background: rgba(255,255,255,.88); color: var(--apple-ink); }
.apple-media-dark > picture { inset: 7% 15% 23%; }
.apple-media-dark img { object-fit: contain; opacity: .72; }
.apple-media-dark::after { background: linear-gradient(0deg, rgba(0,0,0,.94), transparent 70%); }

.apple-journal { background: var(--apple-white); }
.apple-article-grid {
  width: min(1200px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: auto;
}
.apple-article-card {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-radius: var(--apple-radius);
  background: var(--apple-soft);
}
.apple-article-card h3 { margin: 1rem 0; font-size: 2rem; font-weight: 600; letter-spacing: -.04em; line-height: 1.05; }
.apple-article-card > p:not(.article-meta) { color: var(--apple-muted); }
.apple-article-card .apple-link { margin-top: auto; }

.apple-faq {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(6rem, 10vw, 9rem) max(22px, calc((100vw - 1100px) / 2));
  background: var(--apple-soft);
}
.apple-faq-heading > p:not(.apple-kicker) { color: var(--apple-muted); font-size: 1.05rem; }
.apple-faq .faq-list { border-color: rgba(0,0,0,.16); }
.apple-faq .faq-item { border-color: rgba(0,0,0,.14); }
.apple-faq .faq-item summary { font-family: var(--sans); font-size: 1.2rem; font-weight: 600; }
.apple-faq .faq-item summary::after { color: var(--apple-muted); }

.apple-final-cta {
  min-height: 720px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  padding: clamp(5rem, 9vw, 8rem) max(22px, calc((100vw - 1100px) / 2));
  color: var(--apple-white);
  background: var(--apple-black);
}
.apple-final-cta > picture { width: min(100%, 390px); opacity: .78; }
.apple-final-cta .apple-kicker { color: #a1a1a6; }
.apple-final-cta .apple-actions { justify-content: flex-start; }

/* Shared inner pages */
.page-hero {
  padding: clamp(7rem, 13vw, 11rem) 0 clamp(5rem, 9vw, 8rem);
  color: var(--apple-ink);
  background: var(--apple-soft);
  border: 0;
  text-align: center;
}
.page-hero::before, .page-hero::after { display: none; }
.page-hero .breadcrumbs { justify-content: center; color: var(--apple-muted); font-size: .68rem; letter-spacing: 0; text-transform: none; }
.page-hero .eyebrow { color: var(--apple-muted); font-size: 1.05rem; font-weight: 600; }
.page-hero h1 { max-width: 980px; margin-inline: auto; font-family: var(--sans); font-size: clamp(3.5rem, 8vw, 7rem); font-weight: 600; letter-spacing: -.06em; line-height: .95; }
.page-hero p:last-child { max-width: 720px; margin: 1.4rem auto 0; color: var(--apple-muted); font-size: clamp(1.15rem, 2.4vw, 1.55rem); }
.section, .content-section { background: var(--apple-white); }
.founder-section, .faq-section { background: var(--apple-soft); }
.feature-grid { gap: 18px; }
.feature-card, .article-card {
  border: 0;
  border-radius: var(--apple-radius);
  background: var(--apple-soft);
}
.feature-card h2, .article-card h2 { font-family: var(--sans); font-weight: 600; }
.feature-icon { border: 0; color: var(--apple-white); background: var(--apple-blue); font-family: var(--sans); }
.pillar-grid { gap: 18px; border: 0; }
.pillar-card { border: 0; border-radius: var(--apple-radius); background: var(--apple-soft); }
.pillar-card h2 { font-family: var(--sans); font-weight: 600; }
.deep-section, .photo-band { background: var(--apple-black); }
.resource-list { gap: 12px; border: 0; background: transparent; }
.resource-row { border-radius: 20px; background: var(--apple-soft); }
.resource-row h2 { font-family: var(--sans); font-weight: 600; }
.article-hero { text-align: center; background: var(--apple-black); }
.article-hero h1 { margin-inline: auto; font-family: var(--sans); font-weight: 600; }
.article-hero .lede, .article-hero .article-note { margin-inline: auto; }
.article-body h2, .content-narrow h2 { font-family: var(--sans); font-weight: 600; letter-spacing: -.035em; }
.contact-form { border-radius: var(--apple-radius); background: var(--apple-soft); }
.contact-link { border: 0; border-radius: 18px; background: var(--apple-soft); }
.cta-band { background: var(--apple-black); }
.cta-inner h2 { font-family: var(--sans); font-weight: 600; }
.site-footer {
  padding: 3rem 0 1.5rem;
  color: var(--apple-muted);
  background: var(--apple-soft);
}
.site-footer .brand { color: var(--apple-ink); }
.footer-grid { gap: 2rem; padding-bottom: 2.5rem; }
.footer-heading { color: var(--apple-ink); font-size: .68rem; letter-spacing: 0; text-transform: none; }
.footer-links { gap: .45rem; font-size: .76rem; }
.footer-links a:hover { color: var(--apple-ink); text-decoration: underline; }
.footer-bottom { border-color: rgba(0,0,0,.12); font-size: .67rem; }

/* Calm product-style motion */
.motion-loader, .motion-progress, .motion-cursor, .portrait-slices { display: none !important; }
.apple-motion .motion-target {
  opacity: 0;
  transform: translateY(34px) scale(.985);
  transition: opacity .7s cubic-bezier(.28,.11,.32,1), transform .85s cubic-bezier(.28,.11,.32,1);
}
.apple-motion .motion-target.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.apple-motion .apple-feature-card:nth-child(2),
.apple-motion .apple-article-card:nth-child(2) { transition-delay: .08s; }
.apple-motion .apple-feature-card:nth-child(3),
.apple-motion .apple-article-card:nth-child(3) { transition-delay: .16s; }
.apple-motion .apple-feature-card:nth-child(4) { transition-delay: .24s; }

@media (max-width: 980px) {
  .apple-feature-shelf { grid-template-columns: 1fr 1fr; }
  .apple-article-grid { grid-template-columns: 1fr; }
  .apple-article-card { min-height: 300px; }
  .apple-community-grid { grid-template-columns: 1fr 1fr; }
  .apple-media-large { grid-column: 1 / -1; grid-row: auto; min-height: 700px; }
  .apple-faq, .apple-final-cta { grid-template-columns: 1fr; }
  .apple-final-cta { text-align: center; }
  .apple-final-cta > picture { margin: auto; }
  .apple-final-cta .apple-actions { justify-content: center; }
}

@media (max-width: 720px) {
  main { padding-top: 44px; }
  .apple-notice { min-height: 62px; align-items: flex-start; flex-wrap: wrap; }
  .apple-hero { min-height: 820px; }
  .apple-hero-copy { padding-top: 4rem; }
  .apple-founder-visual { height: 55%; bottom: 0; }
  .apple-founder-label { right: 18px; bottom: 13%; }
  .apple-feature-shelf { grid-template-columns: 1fr; }
  .apple-feature-card { min-height: 300px; }
  .apple-community-grid { grid-template-columns: 1fr; }
  .apple-media-large, .apple-media-card { min-height: 580px; }
  .apple-final-cta > picture { width: 230px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .button { width: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .apple-motion .motion-target { opacity: 1 !important; transform: none !important; }
  .apple-founder-visual picture,
  .apple-skyline-stage > picture { transform: none !important; }
}

/* Trading graphics and illustrative practice mockups */
.market-visual-stage {
  position: relative;
  min-height: 980px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(5rem, 8vw, 8rem) max(22px, calc((100vw - 1200px) / 2)) 3rem;
  color: #f5f5f7;
  background: #000;
}
.market-visual-stage > picture,
.market-visual-stage > picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.market-visual-stage > picture {
  transform: translateY(var(--market-float, 0px)) scale(1.025);
}
.market-visual-stage > picture img {
  object-fit: cover;
  object-position: center 38%;
}
.market-visual-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.05) 42%, rgba(0,0,0,.94) 88%),
    linear-gradient(90deg, rgba(0,0,0,.68), transparent 45%, rgba(0,0,0,.12));
}
.market-visual-copy {
  position: absolute;
  z-index: 2;
  top: clamp(5rem, 9vw, 8rem);
  left: max(22px, calc((100vw - 1200px) / 2));
  width: min(620px, calc(100% - 44px));
}
.market-visual-copy .apple-kicker { color: rgba(255,255,255,.68); }
.market-visual-copy h2 {
  margin: 0;
  font-size: clamp(3.3rem, 6.8vw, 6.5rem);
  font-weight: 600;
  letter-spacing: -.06em;
  line-height: .95;
}
.market-visual-copy > p:not(.apple-kicker) {
  max-width: 570px;
  margin: 1.2rem 0 0;
  color: rgba(255,255,255,.65);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.35;
}
.market-interface-cards {
  position: relative;
  z-index: 2;
  width: min(1200px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 auto;
}
.market-interface-cards article {
  min-height: 160px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: rgba(18,18,20,.68);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(24px) saturate(130%);
}
.market-interface-cards article > span {
  color: rgba(255,255,255,.48);
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.market-interface-cards article > strong {
  margin-top: .35rem;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -.025em;
}
.market-interface-cards .candle-strip { margin-top: auto; }
.market-risk-meter {
  position: relative;
  height: 8px;
  margin-top: auto;
  overflow: hidden;
  border-radius: 99px;
  background: linear-gradient(90deg, #d5aa54 0 38%, rgba(255,255,255,.12) 38%);
}
.market-risk-meter::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 38%;
  width: 14px;
  height: 14px;
  border: 3px solid #111;
  border-radius: 50%;
  background: #d5aa54;
  transform: translate(-50%, -50%);
}
.market-review-bars {
  height: 48px;
  display: flex;
  align-items: flex-end;
  gap: 7px;
  margin-top: auto;
}
.market-review-bars i {
  width: 18%;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, #d8b463, #80642d);
}
.market-review-bars i:nth-child(1) { height: 38%; }
.market-review-bars i:nth-child(2) { height: 58%; }
.market-review-bars i:nth-child(3) { height: 76%; }
.market-review-bars i:nth-child(4) { height: 94%; }
.market-visual-note {
  position: relative;
  z-index: 2;
  width: min(1200px, 100%);
  margin: 1rem auto 0;
  color: rgba(255,255,255,.38);
  font-size: .67rem;
  text-align: center;
}

.pillar-graphic {
  position: relative;
  height: 82px;
  margin: 1.9rem 0 1.3rem;
  overflow: hidden;
  border-radius: 16px;
}
.apple-feature-card .pillar-graphic { margin-top: 2rem; }
.apple-feature-card h3,
.pillar-card h2 { margin-top: 1.35rem; }
.candle-strip {
  height: 92px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(4px, .8vw, 9px);
}
.candle-strip-compact { height: 62px; }
.candle {
  --candle-width: clamp(5px, .8vw, 9px);
  position: relative;
  width: var(--candle-width);
  height: var(--candle-height);
  display: block;
  border-radius: 2px;
  opacity: .94;
  transform-origin: center bottom;
  animation: candleAssemble .72s var(--candle-delay) cubic-bezier(.16,1,.3,1) both;
}
.candle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: var(--wick-height);
  background: currentColor;
  transform: translate(-50%, -50%);
}
.candle::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: currentColor;
}
.candle-up { color: #b98f3e; }
.candle-down { color: #74747a; }
.pillar-graphic-candles {
  padding: 10px 12px 6px;
  background:
    linear-gradient(rgba(0,0,0,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.045) 1px, transparent 1px);
  background-size: 18px 18px;
}
.pillar-graphic-risk {
  display: grid;
  grid-template-rows: 1fr 2px .45fr;
  gap: 6px;
  padding: 8px;
  background:
    linear-gradient(rgba(0,0,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.04) 1px, transparent 1px);
  background-size: 20px 20px;
}
.risk-zone { border-radius: 8px; }
.risk-zone-protected { background: linear-gradient(90deg, rgba(4,120,87,.08), rgba(4,120,87,.3)); }
.risk-zone-exposed { background: linear-gradient(90deg, rgba(160,42,42,.24), rgba(160,42,42,.06)); }
.risk-entry { background: #b98f3e; box-shadow: 0 0 12px rgba(185,143,62,.32); }
.pillar-graphic-psychology {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillar-graphic-psychology span {
  position: absolute;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(0,113,227,.48);
  border-radius: 50%;
  animation: psychologyPulse 3.2s ease-out infinite;
}
.pillar-graphic-psychology span:nth-child(2) { animation-delay: 1s; }
.pillar-graphic-psychology span:nth-child(3) { animation-delay: 2s; }
.pillar-graphic-discipline {
  display: grid;
  gap: 8px;
  padding: 9px;
}
.pillar-graphic-discipline > span {
  display: block;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(118,118,128,.12);
}
.pillar-graphic-discipline i {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, #8f6c2e, #d5aa54);
}
.pillar-graphic-discipline span:nth-child(1) i { width: 86%; }
.pillar-graphic-discipline span:nth-child(2) i { width: 66%; }
.pillar-graphic-discipline span:nth-child(3) i { width: 78%; }

.learning-mockup-section {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--apple-soft);
}
.learning-mockup-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.learning-mockup-copy h2 {
  margin: .55rem 0 1rem;
  font-size: clamp(2.7rem, 5vw, 4.9rem);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: .98;
}
.learning-mockup-copy > p:last-child {
  color: var(--apple-muted);
  font-size: 1.05rem;
}
.learning-chart-mockup {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  color: #f5f5f7;
  background: #0b0b0d;
  box-shadow: 0 40px 90px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.08);
}
.learning-chart-toolbar,
.learning-chart-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 1.1rem;
  color: rgba(255,255,255,.42);
  font-size: .65rem;
}
.learning-chart-toolbar { border-bottom: 1px solid rgba(255,255,255,.08); }
.learning-chart-toolbar span:first-child { color: rgba(255,255,255,.8); font-weight: 600; }
.learning-chart-grid {
  position: relative;
  height: 330px;
  padding: 4rem 1.5rem 2rem;
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 42px 42px;
}
.learning-chart-grid::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(213,170,84,.42);
  box-shadow: 0 0 16px rgba(213,170,84,.2);
}
.learning-chart-grid .candle-strip {
  position: relative;
  z-index: 2;
  height: 100%;
  gap: 12px;
}
.learning-chart-grid .candle {
  --candle-width: clamp(8px, 1.2vw, 13px);
}
.learning-chart-grid .candle-up { color: #d5aa54; }
.learning-chart-grid .candle-down { color: #8e8e93; }
.learning-chart-zones span {
  position: absolute;
  right: 4%;
  left: 38%;
  border-radius: 7px;
}
.learning-zone-context {
  top: 20%;
  height: 19%;
  background: rgba(3,105,73,.18);
  border: 1px solid rgba(48,209,88,.24);
}
.learning-zone-risk {
  bottom: 17%;
  height: 14%;
  background: rgba(169,37,37,.16);
  border: 1px solid rgba(255,69,58,.22);
}
.learning-chart-footer {
  justify-content: flex-start;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.08);
}
.learning-chart-footer span { display: inline-flex; align-items: center; gap: .35rem; }
.learning-chart-footer i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d5aa54;
}

@keyframes candleAssemble {
  from { opacity: 0; transform: scaleY(.08) translateY(18px); }
  to { opacity: .94; transform: scaleY(1) translateY(0); }
}
@keyframes psychologyPulse {
  0% { opacity: .85; transform: scale(.3); }
  82%, 100% { opacity: 0; transform: scale(3.1); }
}

[data-theme="dark"] .learning-mockup-section { color: #f5f5f7; background: #1c1c1e; }
[data-theme="dark"] .learning-mockup-copy > p:last-child { color: #a1a1a6; }
[data-theme="dark"] .pillar-graphic-candles,
[data-theme="dark"] .pillar-graphic-risk {
  background-color: rgba(255,255,255,.02);
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
}
[data-theme="dark"] .pillar-graphic-discipline > span { background: rgba(255,255,255,.11); }

@media (max-width: 980px) {
  .market-visual-stage { min-height: 1040px; }
  .market-interface-cards { grid-template-columns: 1fr; }
  .market-interface-cards article { min-height: 124px; }
  .learning-mockup-layout { grid-template-columns: 1fr; }
  .learning-mockup-copy { max-width: 720px; text-align: center; }
}

@media (max-width: 720px) {
  .market-visual-stage {
    min-height: 1160px;
    padding-bottom: 2rem;
  }
  .market-visual-stage > picture {
    top: 270px;
    bottom: auto;
    height: 430px;
    transform: none;
  }
  .market-visual-stage > picture img { object-position: 56% center; }
  .market-visual-shade {
    background:
      linear-gradient(180deg, #000 0 17%, transparent 43%, #000 63%),
      linear-gradient(90deg, rgba(0,0,0,.35), transparent);
  }
  .market-visual-copy { top: 4.5rem; }
  .market-visual-copy h2 { font-size: clamp(3rem, 15vw, 4.8rem); }
  .market-interface-cards article { min-height: 128px; }
  .learning-chart-grid { height: 280px; padding-inline: 1rem; }
  .learning-chart-grid .candle-strip { gap: 7px; }
  .learning-chart-toolbar,
  .learning-chart-footer { padding: .8rem; }
  .learning-chart-toolbar span:last-child { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .market-visual-stage > picture { transform: none !important; }
  .candle,
  .pillar-graphic-psychology span { animation: none !important; }
  .pillar-graphic-psychology span:first-child { opacity: .45; transform: scale(2.4); }
  .pillar-graphic-psychology span:nth-child(2) { opacity: .7; transform: scale(1.5); }
  .pillar-graphic-psychology span:nth-child(3) { opacity: 1; transform: scale(.6); }
}

/* Theme control */
.theme-toggle {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: grid;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--apple-ink);
  background: rgba(118,118,128,.12);
  cursor: pointer;
}
.theme-toggle:hover { background: rgba(118,118,128,.2); }
.theme-toggle span { font-size: .95rem; line-height: 1; }

[data-theme="dark"] body {
  color: #f5f5f7;
  background: #000;
}
[data-theme="dark"] .site-header {
  color: #f5f5f7;
  background: rgba(22,22,23,.82);
  border-color: rgba(255,255,255,.08);
}
[data-theme="dark"] .brand,
[data-theme="dark"] .desktop-nav a,
[data-theme="dark"] .theme-toggle { color: #f5f5f7; }
[data-theme="dark"] .desktop-nav a:hover { color: #fff; }
[data-theme="dark"] .theme-toggle { background: rgba(255,255,255,.12); }
[data-theme="dark"] .menu-button span { background: #f5f5f7; }
[data-theme="dark"] .mobile-nav {
  color: #f5f5f7;
  background: rgba(22,22,23,.97);
  border-color: rgba(255,255,255,.08);
}
[data-theme="dark"] .mobile-nav a { border-color: rgba(255,255,255,.08); }
[data-theme="dark"] .apple-notice,
[data-theme="dark"] .apple-stage-light,
[data-theme="dark"] .apple-journal,
[data-theme="dark"] .section,
[data-theme="dark"] .content-section,
[data-theme="dark"] .ivory { color: #f5f5f7; background: #000; }
[data-theme="dark"] .apple-stage-soft,
[data-theme="dark"] .apple-faq,
[data-theme="dark"] .page-hero,
[data-theme="dark"] .founder-section,
[data-theme="dark"] .faq-section,
[data-theme="dark"] .site-footer { color: #f5f5f7; background: #1c1c1e; }
[data-theme="dark"] .apple-stage-heading .apple-kicker,
[data-theme="dark"] .apple-stage-heading > p:not(.apple-kicker),
[data-theme="dark"] .apple-faq-heading > p:not(.apple-kicker),
[data-theme="dark"] .page-hero p:last-child,
[data-theme="dark"] .page-hero .breadcrumbs,
[data-theme="dark"] .page-hero .eyebrow,
[data-theme="dark"] .site-footer { color: #a1a1a6; }
[data-theme="dark"] .apple-feature-card,
[data-theme="dark"] .apple-article-card,
[data-theme="dark"] .feature-card,
[data-theme="dark"] .article-card,
[data-theme="dark"] .pillar-card,
[data-theme="dark"] .resource-row,
[data-theme="dark"] .contact-link,
[data-theme="dark"] .contact-form { color: #f5f5f7; background: #1c1c1e; }
[data-theme="dark"] .apple-feature-card p,
[data-theme="dark"] .apple-article-card > p:not(.article-meta),
[data-theme="dark"] .feature-card p,
[data-theme="dark"] .article-card p,
[data-theme="dark"] .pillar-card p,
[data-theme="dark"] .resource-row p,
[data-theme="dark"] .content-narrow p,
[data-theme="dark"] .content-narrow li,
[data-theme="dark"] .article-body p,
[data-theme="dark"] .article-body li { color: #a1a1a6; }
[data-theme="dark"] .footer-heading,
[data-theme="dark"] .site-footer .brand,
[data-theme="dark"] .resource-row h2,
[data-theme="dark"] .contact-link strong { color: #f5f5f7; }
[data-theme="dark"] .footer-bottom,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .faq-list { border-color: rgba(255,255,255,.14); }
[data-theme="dark"] .field input,
[data-theme="dark"] .field textarea {
  color: #f5f5f7;
  border-color: rgba(255,255,255,.18);
  background: #2c2c2e;
}

/* Zero-token guided chat */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.compact-chat { position: relative; z-index: 300; }
.chat-launcher {
  position: fixed;
  z-index: 301;
  right: 20px;
  bottom: 20px;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .7rem 1rem;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--apple-blue);
  box-shadow: 0 10px 35px rgba(0,0,0,.2);
  cursor: pointer;
}
.chat-launcher:hover { background: var(--apple-blue-hover); }
.chat-launcher span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--apple-blue);
  background: #fff;
  font-weight: 700;
  letter-spacing: -.1em;
}
.chat-launcher strong { font-size: .82rem; font-weight: 600; }
.chat-panel {
  position: fixed;
  z-index: 302;
  right: 20px;
  bottom: 80px;
  width: min(370px, calc(100vw - 24px));
  max-height: min(610px, calc(100svh - 110px));
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 22px;
  color: var(--apple-ink);
  background: rgba(255,255,255,.96);
  box-shadow: 0 22px 70px rgba(0,0,0,.22);
  backdrop-filter: saturate(180%) blur(24px);
}
.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.chat-header > div:first-child {
  display: grid;
  grid-template-columns: 10px auto;
  column-gap: .55rem;
  align-items: center;
}
.chat-header strong { font-size: .86rem; }
.chat-header small { grid-column: 2; color: var(--apple-muted); font-size: .68rem; }
.chat-status {
  grid-row: 1 / 3;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #34c759;
  box-shadow: 0 0 0 4px rgba(52,199,89,.12);
}
.chat-header-actions { display: flex; align-items: center; gap: .5rem; }
.chat-timer {
  min-width: 44px;
  padding: .25rem .45rem;
  border-radius: 999px;
  color: var(--apple-muted);
  background: var(--apple-soft);
  font-size: .68rem;
  text-align: center;
}
.chat-header-actions button {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--apple-muted);
  background: var(--apple-soft);
  font-size: 1.1rem;
  cursor: pointer;
}
.chat-messages {
  display: flex;
  overflow-y: auto;
  flex: 1 1 auto;
  flex-direction: column;
  gap: .65rem;
  min-height: 190px;
  padding: 1rem;
}
.chat-message {
  max-width: 86%;
  margin: 0;
  padding: .65rem .8rem;
  border-radius: 16px;
  font-size: .82rem;
  line-height: 1.42;
}
.chat-message-assistant {
  align-self: flex-start;
  color: var(--apple-ink);
  border-bottom-left-radius: 5px;
  background: var(--apple-soft);
}
.chat-message-user {
  align-self: flex-end;
  color: #fff;
  border-bottom-right-radius: 5px;
  background: var(--apple-blue);
}
.chat-suggestions {
  display: flex;
  overflow-x: auto;
  gap: .45rem;
  padding: 0 1rem .8rem;
}
.chat-suggestions button {
  flex: 0 0 auto;
  padding: .45rem .65rem;
  border: 1px solid rgba(0,113,227,.28);
  border-radius: 999px;
  color: var(--apple-blue);
  background: transparent;
  font-size: .72rem;
  cursor: pointer;
}
.chat-composer {
  display: flex;
  gap: .5rem;
  padding: .75rem 1rem;
  border-top: 1px solid rgba(0,0,0,.08);
}
.chat-composer input {
  min-width: 0;
  flex: 1;
  border: 0;
  border-radius: 999px;
  padding: .7rem .85rem;
  color: var(--apple-ink);
  background: var(--apple-soft);
  outline: none;
}
.chat-composer input:focus { box-shadow: 0 0 0 2px var(--apple-blue); }
.chat-composer button {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--apple-blue);
  cursor: pointer;
}
.chat-composer button:disabled { opacity: .35; cursor: not-allowed; }
.chat-cta { padding: 1rem; border-top: 1px solid rgba(0,0,0,.08); }
.chat-cta strong { font-size: .95rem; }
.chat-cta p { margin: .25rem 0 .8rem; color: var(--apple-muted); font-size: .75rem; }
.chat-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .45rem;
  padding: .68rem;
  border-radius: 999px;
  color: #fff;
  background: var(--apple-blue);
  font-size: .8rem;
}
.chat-cta a + a { color: var(--apple-blue); border: 1px solid var(--apple-blue); background: transparent; }
.chat-disclaimer {
  margin: 0;
  padding: 0 1rem .8rem;
  color: var(--apple-muted);
  font-size: .6rem;
  text-align: center;
}

[data-theme="dark"] .chat-panel {
  color: #f5f5f7;
  border-color: rgba(255,255,255,.12);
  background: rgba(28,28,30,.96);
}
[data-theme="dark"] .chat-header,
[data-theme="dark"] .chat-composer,
[data-theme="dark"] .chat-cta { border-color: rgba(255,255,255,.1); }
[data-theme="dark"] .chat-timer,
[data-theme="dark"] .chat-header-actions button,
[data-theme="dark"] .chat-message-assistant,
[data-theme="dark"] .chat-composer input {
  color: #f5f5f7;
  background: #2c2c2e;
}
[data-theme="dark"] .chat-composer input::placeholder { color: #8e8e93; }

@media (max-width: 720px) {
  .theme-toggle { margin-left: auto; }
  .chat-launcher { right: 12px; bottom: 12px; }
  .chat-panel {
    right: 8px;
    bottom: 68px;
    width: calc(100vw - 16px);
    max-height: min(650px, calc(100svh - 82px));
  }
}

/* Kinetic editorial experience — FMC */
:root {
  --kinetic-ivory: #f4f2ea;
  --kinetic-white: #ffffff;
  --kinetic-stone: #e8e6de;
  --kinetic-ink: #151714;
  --kinetic-forest: #182219;
  --kinetic-emerald: #073f34;
  --kinetic-gold: #c8a653;
  --kinetic-muted: #6f746f;
  --kinetic-line: rgba(21,23,20,.16);
  --apple-blue: var(--kinetic-gold);
  --apple-blue-hover: #d4b96f;
  --apple-soft: var(--kinetic-stone);
  --apple-ink: var(--kinetic-ink);
  --apple-muted: var(--kinetic-muted);
  --apple-radius: 0px;
}
[data-theme="dark"] {
  --kinetic-ivory: #080a08;
  --kinetic-white: #111410;
  --kinetic-stone: #101a15;
  --kinetic-ink: #f4f2ea;
  --kinetic-forest: #080a08;
  --kinetic-muted: #969b94;
  --kinetic-line: rgba(244,242,234,.16);
}
html { background: var(--kinetic-ivory); }
body {
  overflow-x: hidden;
  color: var(--kinetic-ink);
  background: var(--kinetic-ivory);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -.025em;
}
body.menu-open { overflow: hidden; }
main { padding-top: 0; }
.container { width: min(1180px, calc(100% - 48px)); }

.site-header.kinetic-header {
  position: fixed;
  z-index: 400;
  top: 0;
  right: 0;
  left: 0;
  height: 74px;
  color: var(--kinetic-ink);
  background: color-mix(in srgb, var(--kinetic-ivory) 82%, transparent);
  border-bottom: 1px solid var(--kinetic-line);
  backdrop-filter: blur(18px) saturate(140%);
  transition: color .4s ease, background .4s ease, border-color .4s ease;
}
.site-header.kinetic-header.menu-active {
  color: #f4f2ea;
  background: #182219;
  border-color: rgba(244,242,234,.12);
}
.kinetic-header-inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 clamp(16px, 2.5vw, 38px);
}
.kinetic-brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: inherit !important;
  font-size: clamp(.58rem, .75vw, .72rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: .82;
  text-transform: uppercase;
}
.kinetic-brand picture,
.kinetic-brand img { width: 38px; height: 38px; object-fit: contain; }
.kinetic-brand img { filter: grayscale(1) contrast(1.2); }
.menu-active .kinetic-brand img { filter: sepia(1) saturate(.9) brightness(1.35); }
.kinetic-header-actions { display: flex; align-items: center; gap: .7rem; }
.header-location {
  margin-right: 1rem;
  color: var(--kinetic-muted);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.menu-active .header-location { color: rgba(244,242,234,.48); }
.kinetic-header-cta {
  --magnetic-x: 0px;
  --magnetic-y: 0px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: .55rem .9rem;
  color: #111410 !important;
  border: 1px solid var(--kinetic-gold);
  border-radius: 0;
  background: var(--kinetic-gold);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  transform: translate3d(var(--magnetic-x), var(--magnetic-y), 0);
}
.theme-toggle {
  width: 38px;
  height: 38px;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
}
.theme-toggle:hover { color: var(--kinetic-gold); background: transparent; }
.kinetic-menu-button {
  position: relative;
  width: 42px;
  height: 38px;
  display: block !important;
  padding: 0;
  border: 1px solid currentColor;
  background: transparent;
}
.kinetic-menu-button span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 1px;
  margin: 0;
  background: currentColor;
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.kinetic-menu-button span:first-child { transform: translate(-50%, -4px); }
.kinetic-menu-button span:last-child { transform: translate(-50%, 4px); }
.kinetic-menu-button.open span:first-child { transform: translate(-50%, 0) rotate(45deg); }
.kinetic-menu-button.open span:last-child { transform: translate(-50%, 0) rotate(-45deg); }

.kinetic-menu {
  position: fixed;
  z-index: 2;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 104px clamp(24px, 4vw, 64px) 32px;
  color: #f4f2ea;
  background:
    radial-gradient(circle at 72% 52%, rgba(200,166,83,.08), transparent 25%),
    #182219;
  animation: menuReveal .6s cubic-bezier(.16,1,.3,1) both;
}
.kinetic-menu::before,
.kinetic-menu::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(244,242,234,.045);
  border-radius: 48% 52% 55% 45%;
  pointer-events: none;
}
.kinetic-menu::before { width: 44vw; height: 26vw; right: -8vw; top: 8vw; transform: rotate(18deg); }
.kinetic-menu::after { width: 34vw; height: 42vw; right: 12vw; bottom: -24vw; transform: rotate(-16deg); }
.kinetic-menu-collage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  padding-right: clamp(24px, 5vw, 84px);
}
.kinetic-menu-collage figure {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #0c110d;
  clip-path: inset(0 0 100% 0);
  animation: menuImageReveal .7s cubic-bezier(.16,1,.3,1) forwards;
}
.kinetic-menu-collage figure:nth-child(2) { animation-delay: .08s; }
.kinetic-menu-collage figure:nth-child(3) { animation-delay: .16s; }
.kinetic-menu-collage figure:nth-child(4) { animation-delay: .24s; }
.kinetic-menu-collage picture,
.kinetic-menu-collage img { width: 100%; height: 100%; }
.kinetic-menu-collage img {
  object-fit: cover;
  filter: grayscale(1) sepia(.08) contrast(1.08);
  animation: menuImageSettle .9s .1s cubic-bezier(.16,1,.3,1) both;
}
.kinetic-menu-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(244,242,234,.14);
  padding-left: clamp(24px, 5vw, 74px);
}
.kinetic-menu-label {
  margin: 0 0 1.2rem;
  color: rgba(244,242,234,.46);
  font-size: .66rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.kinetic-menu-links { display: grid; }
.kinetic-menu-links a {
  position: relative;
  width: max-content;
  max-width: 100%;
  overflow: hidden;
  color: #f4f2ea;
  font-size: clamp(2rem, 4.6vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: .88;
  text-transform: uppercase;
  animation: menuLinkIn .65s cubic-bezier(.16,1,.3,1) both;
}
.kinetic-menu-links a:nth-child(2) { animation-delay: .035s; }
.kinetic-menu-links a:nth-child(3) { animation-delay: .07s; }
.kinetic-menu-links a:nth-child(4) { animation-delay: .105s; }
.kinetic-menu-links a:nth-child(5) { animation-delay: .14s; }
.kinetic-menu-links a:nth-child(6) { animation-delay: .175s; }
.kinetic-menu-links a:nth-child(7) { animation-delay: .21s; }
.kinetic-menu-links a span {
  display: inline-block;
  width: 34px;
  color: rgba(244,242,234,.35);
  font-size: .58rem;
  letter-spacing: .08em;
  vertical-align: top;
}
.kinetic-menu-links a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 33px;
  height: 2px;
  background: var(--kinetic-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.kinetic-menu-links a:hover::after,
.kinetic-menu-links a.active::after { transform: scaleX(1); transform-origin: left; }
.kinetic-menu-links a:hover { color: var(--kinetic-gold); }
.kinetic-menu-footer {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.4rem;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(244,242,234,.14);
}
.kinetic-menu-footer a {
  color: rgba(244,242,234,.66);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.kinetic-menu-footer a:hover { color: var(--kinetic-gold); }

.button {
  --magnetic-x: 0px;
  --magnetic-y: 0px;
  position: relative;
  min-height: 48px;
  padding: .8rem 1.15rem;
  overflow: hidden;
  color: #111410;
  border: 1px solid var(--kinetic-gold);
  border-radius: 0;
  background: var(--kinetic-gold);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  transform: translate3d(var(--magnetic-x), var(--magnetic-y), 0);
}
.button:hover { color: var(--kinetic-ivory); background: var(--kinetic-emerald); transform: translate3d(var(--magnetic-x), var(--magnetic-y), 0); }
.button-ghost,
.button-outline {
  color: #f4f2ea;
  border-color: rgba(244,242,234,.48);
  background: transparent;
}
.button-ghost:hover,
.button-outline:hover { color: #111410; border-color: var(--kinetic-gold); background: var(--kinetic-gold); }
.kinetic-text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding-bottom: .35rem;
  color: inherit;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.kinetic-text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--kinetic-gold);
  transform-origin: left;
  transition: transform .3s ease;
}
.kinetic-text-link:hover::after { transform: scaleX(.35); }
.kinetic-text-link span { color: var(--kinetic-gold); transition: transform .3s ease; }
.kinetic-text-link:hover span { transform: translate(4px, -4px) rotate(35deg); }

.kinetic-hero {
  position: relative;
  min-height: max(820px, 100svh);
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  align-items: center;
  padding: 100px clamp(24px, 5vw, 76px) 54px;
  color: #151714;
  background: #f4f2ea;
}
[data-theme="dark"] .kinetic-hero { color: #f4f2ea; background: #080a08; }
.kinetic-contours { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.kinetic-contours i {
  position: absolute;
  border: 1px solid rgba(7,63,52,.09);
  border-radius: 46% 54% 62% 38%;
  animation: contourDrift 18s ease-in-out infinite alternate;
}
.kinetic-contours i:nth-child(1) { width: 58vw; height: 32vw; top: -15vw; left: -8vw; transform: rotate(11deg); }
.kinetic-contours i:nth-child(2) { width: 42vw; height: 68vw; top: 4vw; right: -15vw; animation-delay: -4s; }
.kinetic-contours i:nth-child(3) { width: 28vw; height: 19vw; left: 18vw; bottom: -8vw; animation-delay: -8s; }
.kinetic-contours i:nth-child(4) { width: 25vw; height: 13vw; top: 23vw; left: 39vw; animation-delay: -12s; }
[data-theme="dark"] .kinetic-contours i { border-color: rgba(200,166,83,.09); }
.kinetic-hero-copy {
  position: relative;
  z-index: 5;
  max-width: 760px;
  padding-bottom: 2rem;
}
.kinetic-hero-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(3rem, 7vw, 7rem);
  padding-bottom: .7rem;
  border-bottom: 1px solid currentColor;
  color: var(--kinetic-muted);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.kinetic-hero h1 {
  margin: 0;
  font-size: clamp(4.4rem, 9vw, 9.6rem);
  font-weight: 900;
  letter-spacing: -.085em;
  line-height: .74;
  text-transform: uppercase;
}
.kinetic-hero h1 span,
.kinetic-hero h1 em { display: block; overflow: hidden; font-style: normal; }
.kinetic-hero h1 em {
  width: max-content;
  max-width: 94vw;
  margin-left: clamp(1rem, 6vw, 7rem);
  color: var(--kinetic-gold);
  -webkit-text-stroke: 1px var(--kinetic-gold);
}
.kinetic-hero-copy > p {
  max-width: 580px;
  margin: 2rem 0;
  color: var(--kinetic-muted);
  font-size: clamp(1rem, 1.55vw, 1.22rem);
  line-height: 1.45;
}
.kinetic-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; }
.kinetic-hero-portrait {
  position: absolute;
  z-index: 2;
  right: 1vw;
  bottom: 0;
  width: min(57vw, 820px);
  height: calc(100% - 74px);
  pointer-events: none;
  transform: translateY(var(--hero-parallax, 0px));
}
.kinetic-hero-portrait > picture,
.kinetic-hero-portrait > picture img { width: 100%; height: 100%; }
.kinetic-hero-portrait > picture img {
  object-fit: contain;
  object-position: right bottom;
  filter: saturate(.72) contrast(1.06);
}
.kinetic-hero-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f4f2ea 0%, transparent 31%), linear-gradient(0deg, rgba(244,242,234,.74), transparent 24%);
  pointer-events: none;
}
[data-theme="dark"] .kinetic-hero-portrait::after {
  background: linear-gradient(90deg, #080a08 0%, transparent 31%), linear-gradient(0deg, rgba(8,10,8,.76), transparent 24%);
}
.kinetic-portrait-slices { position: absolute; z-index: 4; inset: 0; overflow: hidden; }
.kinetic-portrait-slices span {
  position: absolute;
  right: -3%;
  width: 88%;
  height: 8%;
  background-image: url("/assets/images/founder-ashutosh.webp");
  background-repeat: no-repeat;
  background-size: 100% auto;
  filter: grayscale(.35) contrast(1.12);
  opacity: 0;
  animation: founderSlice 9s cubic-bezier(.16,1,.3,1) infinite;
}
.kinetic-portrait-slices span:nth-child(1) { top: 22%; background-position: 50% 18%; }
.kinetic-portrait-slices span:nth-child(2) { top: 31%; background-position: 50% 28%; animation-delay: .12s; }
.kinetic-portrait-slices span:nth-child(3) { top: 40%; background-position: 50% 38%; animation-delay: .24s; }
.kinetic-portrait-slices span:nth-child(4) { top: 49%; background-position: 50% 48%; animation-delay: .36s; }
.kinetic-portrait-slices span:nth-child(5) { top: 58%; background-position: 50% 58%; animation-delay: .48s; }
.kinetic-chart-band {
  position: absolute;
  z-index: 5;
  top: 38%;
  right: -2%;
  width: 76%;
  height: 94px;
  padding: 10px 2rem;
  overflow: hidden;
  color: #151714;
  border-top: 1px solid rgba(21,23,20,.45);
  border-bottom: 1px solid rgba(21,23,20,.45);
  background: rgba(244,242,234,.76);
  backdrop-filter: blur(5px);
  animation: chartBand 9s .3s cubic-bezier(.16,1,.3,1) infinite;
}
[data-theme="dark"] .kinetic-chart-band { color: #f4f2ea; border-color: rgba(244,242,234,.35); background: rgba(8,10,8,.72); }
.kinetic-chart-band .candle-strip { height: 72px; }
.kinetic-founder-stamp {
  position: absolute;
  z-index: 6;
  right: 2rem;
  bottom: 4rem;
  display: grid;
  padding-top: .65rem;
  border-top: 1px solid currentColor;
  text-align: right;
}
.kinetic-founder-stamp strong { font-size: 1rem; text-transform: uppercase; }
.kinetic-founder-stamp span { color: var(--kinetic-muted); font-size: .66rem; text-transform: uppercase; }
.kinetic-principle-card {
  position: absolute;
  z-index: 6;
  bottom: 50px;
  left: clamp(24px, 5vw, 76px);
  width: 150px;
  display: grid;
  padding: 1rem;
  border: 1px solid currentColor;
  background: color-mix(in srgb, var(--kinetic-ivory) 72%, transparent);
  backdrop-filter: blur(12px);
}
.kinetic-principle-card span,
.kinetic-principle-card small { color: var(--kinetic-muted); font-size: .52rem; letter-spacing: .08em; text-transform: uppercase; }
.kinetic-principle-card strong { padding: .2rem 0; font-size: .66rem; letter-spacing: .04em; }
.kinetic-principle-card small { margin-top: .6rem; padding-top: .5rem; border-top: 1px solid currentColor; }
.kinetic-hero-disclaimer {
  position: absolute;
  z-index: 7;
  right: clamp(24px, 5vw, 76px);
  bottom: 1rem;
  max-width: 520px;
  margin: 0;
  color: var(--kinetic-muted);
  font-size: .58rem;
  text-align: right;
}

.kinetic-section-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid currentColor;
  color: var(--kinetic-muted);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.kinetic-manifesto {
  --manifesto-fill: 0%;
  position: relative;
  min-height: 210svh;
  color: var(--kinetic-ink);
  background: var(--kinetic-ivory);
}
.kinetic-manifesto-sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px clamp(24px, 7vw, 104px) 60px;
}
.kinetic-manifesto h2 {
  max-width: 1260px;
  margin: auto 0;
  color: transparent;
  background: linear-gradient(180deg, var(--kinetic-ink) 0 var(--manifesto-fill), transparent var(--manifesto-fill) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 1px color-mix(in srgb, var(--kinetic-ink) 38%, transparent);
  font-size: clamp(4rem, 8.5vw, 9rem);
  font-weight: 900;
  letter-spacing: -.075em;
  line-height: .84;
  text-transform: uppercase;
}
.kinetic-manifesto h2 strong {
  display: block;
  color: transparent;
  background: linear-gradient(180deg, var(--kinetic-gold) 0 var(--manifesto-fill), transparent var(--manifesto-fill) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 1px rgba(200,166,83,.48);
}
.kinetic-manifesto > *,
.kinetic-manifesto-sticky > p {
  position: relative;
  z-index: 1;
}
.kinetic-manifesto-sticky > p {
  max-width: 660px;
  margin: 1rem 0 0 auto;
  color: var(--kinetic-muted);
}
.kinetic-manifesto-line {
  height: 2px;
  overflow: hidden;
  background: var(--kinetic-line);
}
.kinetic-manifesto-line span {
  display: block;
  width: var(--manifesto-fill);
  height: 100%;
  background: var(--kinetic-gold);
}

.discipline-story { min-height: 400svh; color: #f4f2ea; background: #101a15; }
.discipline-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  padding: 92px clamp(24px, 5vw, 72px) 32px;
}
.discipline-story-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(244,242,234,.2);
  color: rgba(244,242,234,.5);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.discipline-story-header p { margin: 0; }
.discipline-stage {
  display: grid;
  min-height: 0;
  flex: 1;
  grid-template-columns: minmax(220px, .35fr) minmax(0, 1.65fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: center;
}
.discipline-index { display: grid; gap: .35rem; margin: 0; padding: 0; list-style: none; }
.discipline-index li {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  opacity: .32;
  transition: opacity .35s ease, transform .35s ease;
}
.discipline-index li.active { opacity: 1; transform: translateX(8px); }
.discipline-index li > span { color: var(--kinetic-gold); font-size: .58rem; }
.discipline-index button {
  padding: .25rem 0;
  border: 0;
  color: inherit;
  background: transparent;
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  font-weight: 800;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}
.discipline-scenes { position: relative; min-height: 570px; }
.discipline-scenes article {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(360px, 1.25fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(34px);
  transition: opacity .5s ease, transform .65s cubic-bezier(.16,1,.3,1), visibility .5s;
}
.discipline-scenes article.active { opacity: 1; visibility: visible; transform: translateY(0); }
.discipline-copy > p:first-child {
  margin: 0 0 1rem;
  color: var(--kinetic-gold);
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.discipline-copy h2 {
  margin: 0;
  font-size: clamp(4rem, 8vw, 8.2rem);
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: .78;
  text-transform: uppercase;
}
.discipline-copy > p:not(:first-child) {
  max-width: 470px;
  margin: 1.8rem 0;
  color: rgba(244,242,234,.62);
}
.discipline-copy small {
  display: block;
  max-width: 470px;
  color: rgba(244,242,234,.34);
  font-size: .58rem;
}
.discipline-chart {
  position: relative;
  height: 420px;
  overflow: hidden;
  border: 1px solid rgba(244,242,234,.18);
  background:
    linear-gradient(rgba(244,242,234,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,242,234,.045) 1px, transparent 1px);
  background-size: 44px 44px;
}
.discipline-chart-price { display: flex; align-items: flex-end; padding: 3rem 3rem 2rem; }
.discipline-chart-price .candle-strip { width: 100%; height: 82%; gap: 14px; }
.discipline-chart-price .candle { --candle-width: clamp(9px, 1.3vw, 15px); }
.chart-axis { position: absolute; background: rgba(244,242,234,.24); }
.chart-axis-y { top: 1rem; bottom: 1rem; left: 2rem; width: 1px; }
.chart-axis-x { right: 1rem; bottom: 2rem; left: 1rem; height: 1px; }
.discipline-chart-risk { display: grid; grid-template-rows: 1.25fr 2px .8fr; gap: 10px; padding: 3rem; }
.discipline-risk-zone { border: 1px solid; }
.discipline-risk-up { border-color: rgba(79,180,129,.38); background: rgba(30,104,71,.18); }
.discipline-risk-down { border-color: rgba(184,80,70,.4); background: rgba(132,47,42,.2); }
.discipline-risk-line {
  display: flex;
  align-items: center;
  color: var(--kinetic-gold);
  background: var(--kinetic-gold);
  font-size: .58rem;
  text-transform: uppercase;
}
.discipline-risk-caption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  color: rgba(244,242,234,.42);
  font-size: .58rem;
  text-transform: uppercase;
}
.discipline-chart-mind { display: grid; place-items: center; }
.mind-noise,
.mind-signal { position: absolute; right: 8%; left: 8%; height: 2px; }
.mind-noise-one {
  top: 36%;
  background: repeating-linear-gradient(90deg, transparent 0 5%, rgba(244,242,234,.35) 5% 8%, transparent 8% 12%);
  transform: skewY(6deg);
}
.mind-noise-two {
  top: 59%;
  background: repeating-linear-gradient(90deg, transparent 0 8%, rgba(244,242,234,.24) 8% 11%, transparent 11% 18%);
  transform: skewY(-4deg);
}
.mind-signal {
  top: 50%;
  height: 3px;
  background: var(--kinetic-gold);
  box-shadow: 0 0 30px rgba(200,166,83,.3);
}
.discipline-chart-process { display: grid; align-content: center; gap: 1rem; padding: 3rem; }
.discipline-chart-process > span { display: grid; grid-template-columns: 40px 1fr; gap: 1rem; align-items: center; }
.discipline-chart-process i { color: rgba(244,242,234,.4); font-size: .58rem; font-style: normal; }
.discipline-chart-process b {
  height: 8px;
  display: block;
  background: linear-gradient(90deg, var(--kinetic-gold) 0 78%, rgba(244,242,234,.1) 78%);
}
.discipline-mobile-mark { display: none; }
.discipline-progress {
  height: 2px;
  overflow: hidden;
  background: rgba(244,242,234,.12);
}
.discipline-progress span { display: block; width: var(--discipline-progress); height: 100%; background: var(--kinetic-gold); }

.kinetic-founder {
  min-height: 900px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  color: var(--kinetic-ink);
  background: var(--kinetic-stone);
}
.kinetic-founder-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 9rem);
}
.kinetic-kicker {
  margin: 0 0 1rem;
  color: var(--kinetic-gold);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.kinetic-founder-copy h2,
.kinetic-community-heading h2,
.kinetic-journal-heading h2,
.kinetic-social-heading h2,
.kinetic-faq h2,
.kinetic-closing h2 {
  margin: 0;
  font-size: clamp(3.6rem, 7vw, 7.4rem);
  font-weight: 900;
  letter-spacing: -.075em;
  line-height: .82;
  text-transform: uppercase;
}
.kinetic-founder-copy > p:not(.kinetic-kicker) {
  max-width: 560px;
  margin: 2rem 0;
  color: var(--kinetic-muted);
  font-size: 1.05rem;
}
.kinetic-founder-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--kinetic-line);
  color: var(--kinetic-muted);
  font-size: .6rem;
  text-transform: uppercase;
}
.kinetic-founder-image { position: relative; min-height: 740px; margin: 0; overflow: hidden; }
.kinetic-founder-image picture,
.kinetic-founder-image img { width: 100%; height: 100%; }
.kinetic-founder-image img {
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1) contrast(1.05);
  transform: scale(1.03);
  transition: filter .8s ease, transform 1.2s cubic-bezier(.16,1,.3,1);
}
.kinetic-founder-image:hover img { filter: grayscale(0); transform: scale(1); }
.kinetic-founder-image figcaption {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  padding-top: .7rem;
  color: #f4f2ea;
  border-top: 1px solid rgba(244,242,234,.52);
  font-size: .6rem;
  text-transform: uppercase;
}

.kinetic-community {
  overflow: hidden;
  padding: clamp(6rem, 10vw, 11rem) 0;
  color: #f4f2ea;
  background: #101a15;
}
.kinetic-community-heading {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 3rem;
  align-items: end;
  padding: 0 clamp(24px, 5vw, 72px);
}
.kinetic-community-heading .kinetic-kicker { grid-column: 1 / -1; }
.kinetic-community-heading > p:last-child { max-width: 520px; margin: 0; color: rgba(244,242,234,.6); }
.kinetic-collage-window { margin-top: clamp(4rem, 8vw, 8rem); overflow: hidden; }
.kinetic-collage-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 8vw;
  transform: translateX(calc(var(--collage-shift, 0px) * -1));
  transition: transform .08s linear;
}
.kinetic-collage-item {
  position: relative;
  width: clamp(280px, 34vw, 560px);
  height: clamp(390px, 52vw, 720px);
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  background: #080a08;
}
.kinetic-collage-item:nth-child(even) { width: clamp(260px, 26vw, 430px); height: clamp(330px, 40vw, 590px); transform: translateY(42px) rotate(1.2deg); }
.kinetic-collage-item:nth-child(3n) { transform: translateY(-26px) rotate(-1deg); }
.kinetic-collage-item picture,
.kinetic-collage-item img { width: 100%; height: 100%; }
.kinetic-collage-item img {
  object-fit: cover;
  filter: grayscale(1);
  transition: filter .7s ease, transform 1s cubic-bezier(.16,1,.3,1);
}
.kinetic-collage-item:hover img { filter: grayscale(0); transform: scale(1.025); }
.kinetic-collage-item figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: .7rem;
  color: #f4f2ea;
  border-top: 1px solid rgba(244,242,234,.55);
  font-size: .58rem;
  text-transform: uppercase;
}
.kinetic-community-link {
  display: flex;
  justify-content: space-between;
  margin: 5rem clamp(24px, 5vw, 72px) 0;
  padding: 1.2rem 0;
  color: #f4f2ea;
  border-top: 1px solid rgba(244,242,234,.35);
  border-bottom: 1px solid rgba(244,242,234,.35);
  font-size: clamp(1.8rem, 4vw, 4rem);
  font-weight: 900;
  letter-spacing: -.05em;
  text-transform: uppercase;
}
.kinetic-community-link span { color: var(--kinetic-gold); transition: transform .3s ease; }
.kinetic-community-link:hover span { transform: rotate(35deg); }

.kinetic-pathways { display: grid; grid-template-columns: 1fr 1fr; background: #080a08; }
.kinetic-panel { position: relative; min-height: 760px; overflow: hidden; color: #f4f2ea; }
.kinetic-panel + .kinetic-panel { border-left: 1px solid rgba(244,242,234,.2); }
.kinetic-panel picture,
.kinetic-panel img { position: absolute; inset: 0; width: 100%; height: 100%; }
.kinetic-panel img {
  object-fit: cover;
  filter: grayscale(1);
  clip-path: inset(0);
  transition: filter .7s ease, transform 1s cubic-bezier(.16,1,.3,1), clip-path .7s ease;
}
.kinetic-panel:hover img { filter: grayscale(.1); transform: scale(1.025); clip-path: inset(1.2rem); }
.kinetic-panel-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,10,8,.9), transparent 68%); }
.kinetic-panel > div { position: absolute; z-index: 2; right: 2.5rem; bottom: 2.5rem; left: 2.5rem; }
.kinetic-panel p { margin: 0 0 .5rem; color: rgba(244,242,234,.6); font-size: .65rem; text-transform: uppercase; }
.kinetic-panel h2 { max-width: 600px; margin: 0; font-size: clamp(3.4rem, 6vw, 6.4rem); font-weight: 900; letter-spacing: -.075em; line-height: .82; text-transform: uppercase; }
.kinetic-panel > div > span { position: absolute; right: 0; bottom: 0; color: var(--kinetic-gold); font-size: 2.5rem; transition: transform .35s ease; }
.kinetic-panel:hover > div > span { transform: translate(5px, -5px) rotate(35deg); }

.kinetic-journal {
  padding: clamp(6rem, 10vw, 10rem) clamp(24px, 5vw, 72px);
  color: var(--kinetic-ink);
  background: var(--kinetic-stone);
}
.kinetic-journal-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 4rem;
}
.kinetic-journal-heading h2 { max-width: 850px; }
.kinetic-journal-rail {
  display: grid;
  grid-auto-columns: minmax(340px, 1fr);
  grid-auto-flow: column;
  overflow-x: auto;
  border-top: 1px solid var(--kinetic-ink);
  border-bottom: 1px solid var(--kinetic-ink);
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.kinetic-journal-card {
  position: relative;
  min-height: 510px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  padding: 2rem;
  color: var(--kinetic-ink);
  border-right: 1px solid var(--kinetic-line);
  scroll-snap-align: start;
  transition: color .45s ease, background .45s ease;
}
.kinetic-journal-card:hover { color: #f4f2ea; background: #073f34; }
.kinetic-journal-number { color: var(--kinetic-gold); font-size: .75rem; }
.kinetic-journal-card > p { margin-top: auto; font-size: .65rem; text-transform: uppercase; }
.kinetic-journal-card h3 {
  max-width: 410px;
  margin: 1rem 0 0;
  font-size: clamp(2.2rem, 3.7vw, 4rem);
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: .87;
  text-transform: uppercase;
}
.kinetic-journal-arrow { position: absolute; right: 2rem; bottom: 2rem; color: var(--kinetic-gold); font-size: 1.7rem; transition: transform .35s ease; }
.kinetic-journal-card:hover .kinetic-journal-arrow { transform: translate(5px, -5px) rotate(35deg); }
.journal-chart-motif { position: absolute; top: 1.5rem; right: 1.5rem; width: 48%; height: 110px; display: flex; align-items: end; gap: 8px; opacity: .34; }
.journal-chart-motif i { width: 16%; background: currentColor; }
.journal-chart-motif i:nth-child(1) { height: 24%; }
.journal-chart-motif i:nth-child(2) { height: 47%; }
.journal-chart-motif i:nth-child(3) { height: 38%; }
.journal-chart-motif i:nth-child(4) { height: 76%; }
.journal-chart-motif i:nth-child(5) { height: 61%; }

.kinetic-social {
  padding: clamp(6rem, 10vw, 10rem) 0;
  color: var(--kinetic-ink);
  background: var(--kinetic-ivory);
}
.kinetic-social-heading {
  padding: 0 clamp(24px, 5vw, 72px);
}
.kinetic-social-heading h2 { overflow-wrap: anywhere; font-size: clamp(3.2rem, 8vw, 8.2rem); }
.kinetic-social-heading .kinetic-text-link { margin-top: 2rem; }
.kinetic-social-rail {
  display: flex;
  overflow-x: auto;
  gap: 14px;
  margin-top: 4rem;
  padding: 0 clamp(24px, 5vw, 72px) 1.5rem;
  scroll-snap-type: x mandatory;
}
.kinetic-social-rail figure {
  position: relative;
  width: clamp(260px, 30vw, 470px);
  height: clamp(360px, 42vw, 620px);
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  scroll-snap-align: start;
}
.kinetic-social-rail picture,
.kinetic-social-rail img { width: 100%; height: 100%; }
.kinetic-social-rail img { object-fit: cover; filter: grayscale(1); transition: filter .6s ease, transform .8s ease; }
.kinetic-social-rail figure:hover img { filter: grayscale(0); transform: scale(1.025); }
.kinetic-social-rail figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding-top: .6rem;
  color: #f4f2ea;
  border-top: 1px solid rgba(244,242,234,.55);
  font-size: .58rem;
  text-transform: uppercase;
}

.kinetic-faq {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(6rem, 10vw, 10rem) clamp(24px, 6vw, 92px);
  color: var(--kinetic-ink);
  background: var(--kinetic-stone);
}
.kinetic-faq-heading > p:not(.kinetic-kicker) { max-width: 520px; color: var(--kinetic-muted); }
.kinetic-faq-heading .kinetic-text-link { margin-top: 1.5rem; }
.kinetic-faq .faq-list { border-color: var(--kinetic-ink); }
.kinetic-faq .faq-item { border-color: var(--kinetic-line); }
.kinetic-faq .faq-item summary { font-family: inherit; font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 800; text-transform: uppercase; }
.kinetic-faq .faq-item p { color: var(--kinetic-muted); }

.kinetic-closing {
  position: relative;
  min-height: 820px;
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  overflow: hidden;
  padding: clamp(6rem, 10vw, 10rem) clamp(24px, 6vw, 92px);
  color: #f4f2ea;
  background: #080a08;
}
.kinetic-closing-emblem { opacity: .72; }
.kinetic-closing-emblem picture,
.kinetic-closing-emblem img { width: min(100%, 420px); }
.kinetic-closing h2 span,
.kinetic-closing h2 strong { display: block; }
.kinetic-closing h2 strong { color: var(--kinetic-gold); }
.kinetic-closing-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 3rem; }
.kinetic-closing-note { max-width: 620px; margin-top: 2rem; color: rgba(244,242,234,.42); font-size: .65rem; }
.kinetic-closing-line { position: absolute; right: 0; bottom: 0; left: 0; height: 2px; background: rgba(244,242,234,.12); }
.kinetic-closing-line span { display: block; width: calc(var(--page-progress, 0) * 100%); height: 100%; background: var(--kinetic-gold); }

.page-hero.kinetic-page-hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: 150px 0 70px;
  color: var(--kinetic-ink);
  background: var(--kinetic-stone);
  border-bottom: 1px solid var(--kinetic-ink);
  text-align: left;
}
.kinetic-page-hero::before,
.kinetic-page-hero::after { display: none; }
.page-hero-contours { position: absolute; inset: 0; overflow: hidden; }
.page-hero-contours i {
  position: absolute;
  width: 45vw;
  height: 24vw;
  border: 1px solid color-mix(in srgb, var(--kinetic-ink) 7%, transparent);
  border-radius: 48% 52% 58% 42%;
}
.page-hero-contours i:nth-child(1) { right: -9vw; top: -7vw; transform: rotate(18deg); }
.page-hero-contours i:nth-child(2) { right: 8vw; top: 18vw; transform: rotate(-11deg); }
.page-hero-contours i:nth-child(3) { left: -18vw; bottom: -15vw; transform: rotate(29deg); }
.kinetic-page-hero .container { position: relative; z-index: 1; width: min(1180px, calc(100% - 48px)); }
.page-hero-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(4rem, 8vw, 8rem);
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--kinetic-ink);
}
.kinetic-page-hero .breadcrumbs { margin: 0; color: var(--kinetic-muted); font-size: .6rem; letter-spacing: .07em; text-transform: uppercase; }
.page-hero-meta > span { color: var(--kinetic-muted); font-size: .6rem; letter-spacing: .07em; text-transform: uppercase; }
.kinetic-page-hero .eyebrow {
  margin-bottom: .8rem;
  color: var(--kinetic-gold);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-align: left;
  text-transform: uppercase;
}
.kinetic-page-hero h1 {
  max-width: 1100px;
  margin: 0;
  overflow: hidden;
  font-size: clamp(4.2rem, 9vw, 9rem);
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: .78;
  text-align: left;
  text-transform: uppercase;
}
.kinetic-page-hero h1 span { display: block; }
.kinetic-page-hero .page-hero-copy {
  max-width: 680px;
  margin: 1.8rem 0 0 auto;
  color: var(--kinetic-muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  text-align: left;
}

.section,
.content-section,
.ivory { color: var(--kinetic-ink); background: var(--kinetic-ivory); }
.founder-section,
.faq-section { color: var(--kinetic-ink); background: var(--kinetic-stone); }
.section-intro h2,
.display-small,
.article-hero h1,
.article-body h2,
.content-narrow h2,
.cta-inner h2 { font-family: inherit; font-weight: 900; letter-spacing: -.065em; text-transform: uppercase; }
.section-intro p:last-child,
.content-narrow p,
.content-narrow li,
.article-body p,
.article-body li { color: var(--kinetic-muted); }
.feature-card,
.article-card,
.pillar-card,
.resource-row,
.contact-form,
.contact-link {
  color: var(--kinetic-ink);
  border: 1px solid var(--kinetic-line);
  border-radius: 0;
  background: transparent;
}
.feature-card h2,
.article-card h2,
.pillar-card h2,
.resource-row h2 { font-family: inherit; font-weight: 900; text-transform: uppercase; }
.feature-icon { color: #111410; border-radius: 0; background: var(--kinetic-gold); }
.deep-section,
.photo-band,
.article-hero,
.cta-band { color: #f4f2ea; background: #101a15; }
.contact-link strong { color: var(--kinetic-emerald); }
.field input,
.field textarea { color: var(--kinetic-ink); border-color: var(--kinetic-line); background: var(--kinetic-ivory); }
.site-footer {
  padding: 5rem 0 2rem;
  color: rgba(244,242,234,.62);
  background: #101a15;
}
.site-footer .brand,
.site-footer .footer-heading { color: #f4f2ea; }
.footer-bottom { border-color: rgba(244,242,234,.16); }

.kinetic-loader {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr auto auto;
  padding: clamp(22px, 4vw, 56px);
  color: #f4f2ea;
  background: #080a08;
  pointer-events: none;
  animation: kineticLoaderExit .6s 1.12s cubic-bezier(.76,0,.24,1) forwards;
}
.kinetic-loader > picture { align-self: center; justify-self: center; width: clamp(100px, 18vw, 260px); }
.kinetic-loader > picture img {
  filter: sepia(1) saturate(.9) brightness(1.25);
  animation: loaderEmblemSplit 1s cubic-bezier(.16,1,.3,1) both;
}
.kinetic-loader-line { height: 1px; overflow: hidden; background: rgba(244,242,234,.15); }
.kinetic-loader-line span { display: block; width: 100%; height: 100%; background: var(--kinetic-gold); transform-origin: left; animation: loaderLine 1s .05s cubic-bezier(.16,1,.3,1) both; }
.kinetic-loader-meta { display: flex; justify-content: space-between; padding-top: .8rem; color: rgba(244,242,234,.48); font-size: .58rem; text-transform: uppercase; }
.route-transition {
  position: fixed;
  z-index: 600;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
}
.route-transition::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #101a15;
  transform: translateY(-100%);
}
.route-transition span { position: absolute; top: 0; right: 0; left: 0; height: 2px; background: var(--kinetic-gold); transform: scaleX(0); transform-origin: left; }
.route-arriving .route-transition { visibility: visible; }
.route-arriving .route-transition::before { animation: routeCurtain .72s cubic-bezier(.76,0,.24,1) both; }
.route-arriving .route-transition span { animation: routeLine .72s cubic-bezier(.16,1,.3,1) both; }
.kinetic-progress {
  position: fixed;
  z-index: 500;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--kinetic-gold);
  transform: scaleX(var(--page-progress, 0));
  transform-origin: left;
  pointer-events: none;
}
.kinetic-cursor {
  position: fixed;
  z-index: 900;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #151714;
  border: 1px solid var(--kinetic-gold);
  border-radius: 50%;
  background: rgba(200,166,83,.12);
  opacity: 0;
  transform: translate3d(calc(var(--pointer-x, -100px) - 17px), calc(var(--pointer-y, -100px) - 17px), 0);
  transition: width .25s ease, height .25s ease, opacity .2s ease, background .2s ease;
  pointer-events: none;
  backdrop-filter: blur(4px);
}
.pointer-active .kinetic-cursor { opacity: 1; }
.kinetic-cursor span { color: currentColor; font-size: 0; font-weight: 800; letter-spacing: .06em; }
.kinetic-cursor.has-label { width: 64px; height: 64px; background: var(--kinetic-gold); transform: translate3d(calc(var(--pointer-x, -100px) - 32px), calc(var(--pointer-y, -100px) - 32px), 0); }
.kinetic-cursor.has-label span { font-size: .52rem; }
.kinetic-motion .motion-target {
  opacity: 0;
  clip-path: inset(0 0 18% 0);
  transform: translateY(40px);
  transition: opacity .7s ease, transform .9s cubic-bezier(.16,1,.3,1), clip-path .9s cubic-bezier(.16,1,.3,1);
}
.kinetic-motion .motion-target.is-visible { opacity: 1; clip-path: inset(0); transform: translateY(0); }
.kinetic-motion .kinetic-hero h1 span { animation: kineticHeadline .85s .12s cubic-bezier(.16,1,.3,1) both; }
.kinetic-motion .kinetic-hero h1 span:nth-child(2) { animation-delay: .2s; }
.kinetic-motion .kinetic-hero h1 em { animation: kineticHeadline .9s .3s cubic-bezier(.16,1,.3,1) both; }

@keyframes menuReveal {
  from { opacity: 0; clip-path: inset(0 0 100% 0); }
  to { opacity: 1; clip-path: inset(0); }
}
@keyframes menuImageReveal { to { clip-path: inset(0); } }
@keyframes menuImageSettle {
  from { opacity: 0; transform: scale(1.12); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes menuLinkIn {
  from { opacity: 0; transform: translateY(100%); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes kineticHeadline {
  from { opacity: 0; transform: translateY(112%) skewY(4deg); }
  to { opacity: 1; transform: translateY(0) skewY(0); }
}
@keyframes founderSlice {
  0%, 8%, 100% { opacity: 0; transform: translateX(-85%); }
  12% { opacity: .92; }
  23% { opacity: .92; transform: translateX(9%); }
  29% { opacity: 0; transform: translateX(72%); }
}
@keyframes chartBand {
  0%, 7%, 100% { opacity: 0; transform: translateX(110%); }
  13%, 24% { opacity: 1; transform: translateX(0); }
  31% { opacity: 0; transform: translateX(-120%); }
}
@keyframes contourDrift {
  from { transform: translate3d(-1%, -1%, 0) rotate(-2deg); }
  to { transform: translate3d(2%, 1%, 0) rotate(3deg); }
}
@keyframes loaderEmblemSplit {
  0% { opacity: 0; transform: scale(.78); clip-path: inset(48% 0); }
  55% { opacity: 1; clip-path: inset(0); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes loaderLine { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes kineticLoaderExit {
  to { opacity: 0; visibility: hidden; clip-path: inset(0 0 100% 0); }
}
@keyframes routeCurtain {
  0% { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}
@keyframes routeLine {
  0% { transform: scaleX(0); }
  55%, 100% { transform: scaleX(1); }
}

@media (max-width: 1080px) {
  .kinetic-menu { grid-template-columns: .8fr 1.2fr; }
  .kinetic-hero { grid-template-columns: 1fr; padding-bottom: 0; }
  .kinetic-hero-copy { align-self: start; padding-top: 4rem; }
  .kinetic-hero-portrait { width: 72vw; height: 70%; opacity: .84; }
  .kinetic-principle-card { display: none; }
  .discipline-scenes article { grid-template-columns: 1fr 1fr; }
  .kinetic-founder { grid-template-columns: 1fr 1fr; }
  .kinetic-community-heading { grid-template-columns: 1fr; }
  .kinetic-community-heading > p:last-child { margin-top: 1rem; }
  .kinetic-faq { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .header-location { display: none; }
  .kinetic-menu {
    overflow-y: auto;
    grid-template-columns: 1fr;
    padding: 94px 18px 24px;
  }
  .kinetic-menu-collage {
    height: 280px;
    padding: 0 0 18px;
  }
  .kinetic-menu-content { padding: 24px 0 0; border-top: 1px solid rgba(244,242,234,.14); border-left: 0; }
  .kinetic-menu-links a { font-size: clamp(2.4rem, 11vw, 4.6rem); }
  .kinetic-menu-footer { margin-top: 2.5rem; }
  .kinetic-hero {
    min-height: 980px;
    align-items: start;
    padding: 110px 18px 0;
  }
  .kinetic-hero-copy { padding-top: 1rem; }
  .kinetic-hero-meta { margin-bottom: 3.5rem; }
  .kinetic-hero h1 { font-size: clamp(4rem, 17vw, 7rem); }
  .kinetic-hero h1 em { margin-left: .75rem; }
  .kinetic-hero-copy > p { max-width: 420px; }
  .kinetic-hero-portrait { right: -8vw; width: 105vw; height: 60%; opacity: .92; }
  .kinetic-hero-portrait::after {
    background: linear-gradient(180deg, #f4f2ea 0%, transparent 22%), linear-gradient(0deg, #f4f2ea 0%, transparent 26%);
  }
  [data-theme="dark"] .kinetic-hero-portrait::after {
    background: linear-gradient(180deg, #080a08 0%, transparent 22%), linear-gradient(0deg, #080a08 0%, transparent 26%);
  }
  .kinetic-chart-band { top: 41%; width: 82%; }
  .kinetic-founder-stamp { bottom: 2.7rem; }
  .kinetic-hero-disclaimer { left: 18px; text-align: left; }
  .kinetic-manifesto { min-height: auto; }
  .kinetic-manifesto-sticky {
    position: relative;
    min-height: auto;
    padding: 7rem 18px;
  }
  .kinetic-manifesto h2 {
    margin: 5rem 0;
    color: var(--kinetic-ink);
    background: none;
    -webkit-text-stroke: 0;
    font-size: clamp(3.6rem, 14vw, 6.8rem);
  }
  .kinetic-manifesto h2 strong { color: var(--kinetic-gold); background: none; -webkit-text-stroke: 0; }
  .discipline-story { min-height: auto; }
  .discipline-sticky { position: relative; height: auto; padding: 88px 18px 4rem; }
  .discipline-stage { display: block; }
  .discipline-index,
  .discipline-progress { display: none; }
  .discipline-scenes { min-height: 0; }
  .discipline-scenes article,
  .discipline-scenes article.active {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 5rem 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    border-bottom: 1px solid rgba(244,242,234,.16);
  }
  .discipline-chart { height: 340px; }
  .discipline-copy h2 { font-size: clamp(3.5rem, 14vw, 6.4rem); }
  .discipline-mobile-mark { display: none; }
  .kinetic-founder { grid-template-columns: 1fr; }
  .kinetic-founder-copy { min-height: 700px; padding: 6rem 18px; }
  .kinetic-founder-image { min-height: 680px; }
  .kinetic-pathways { grid-template-columns: 1fr; }
  .kinetic-panel { min-height: 620px; }
  .kinetic-panel + .kinetic-panel { border-top: 1px solid rgba(244,242,234,.2); border-left: 0; }
  .kinetic-journal { padding-inline: 18px; }
  .kinetic-journal-heading { align-items: flex-start; flex-direction: column; }
  .kinetic-journal-rail { grid-auto-columns: minmax(290px, 82vw); }
  .kinetic-social-heading { padding-inline: 18px; }
  .kinetic-social-rail { padding-inline: 18px; }
  .kinetic-faq { padding-inline: 18px; }
  .kinetic-closing { grid-template-columns: 1fr; padding-inline: 18px; text-align: center; }
  .kinetic-closing-emblem picture,
  .kinetic-closing-emblem img { width: min(240px, 60vw); margin: auto; }
  .kinetic-closing-actions { justify-content: center; }
  .page-hero.kinetic-page-hero { min-height: 610px; padding: 120px 0 54px; }
  .kinetic-page-hero .container { width: calc(100% - 36px); }
  .kinetic-page-hero h1 { font-size: clamp(3.8rem, 15vw, 6.7rem); }
  .page-hero-meta { margin-bottom: 4rem; }
}

@media (max-width: 560px) {
  .site-header.kinetic-header { height: 66px; }
  .kinetic-header-inner { padding-inline: 12px; }
  .kinetic-brand span { display: none; }
  .kinetic-brand picture,
  .kinetic-brand img { width: 34px; height: 34px; }
  .kinetic-header-cta { display: none; }
  .theme-toggle,
  .kinetic-menu-button { width: 38px; height: 36px; }
  .kinetic-menu-collage { height: 220px; }
  .kinetic-hero { min-height: 900px; padding-top: 94px; }
  .kinetic-hero-meta span:last-child { display: none; }
  .kinetic-hero h1 { font-size: clamp(3.7rem, 18vw, 5.7rem); }
  .kinetic-hero-copy > p { max-width: 330px; font-size: .95rem; }
  .kinetic-hero-actions { gap: 1rem; }
  .kinetic-hero-actions .button { width: auto; }
  .kinetic-hero-portrait { width: 122vw; right: -20vw; }
  .kinetic-chart-band { height: 78px; padding: 6px 1rem; }
  .kinetic-chart-band .candle-strip { height: 62px; }
  .kinetic-founder-stamp { right: 1rem; }
  .kinetic-founder-copy h2,
  .kinetic-community-heading h2,
  .kinetic-journal-heading h2,
  .kinetic-social-heading h2,
  .kinetic-faq h2,
  .kinetic-closing h2 { font-size: clamp(3.2rem, 15vw, 5.8rem); }
  .kinetic-community-heading { padding-inline: 18px; }
  .kinetic-collage-track {
    overflow-x: auto;
    width: 100%;
    padding-inline: 18px;
    transform: none;
    scroll-snap-type: x mandatory;
  }
  .kinetic-collage-item,
  .kinetic-collage-item:nth-child(even),
  .kinetic-collage-item:nth-child(3n) {
    width: 82vw;
    height: 520px;
    transform: none;
    scroll-snap-align: center;
  }
  .kinetic-community-link { margin-inline: 18px; font-size: 1.6rem; }
  .kinetic-panel { min-height: 560px; }
  .kinetic-panel > div { right: 1.25rem; bottom: 1.25rem; left: 1.25rem; }
  .kinetic-panel h2 { font-size: 3.5rem; }
  .kinetic-social-rail figure { width: 82vw; height: 500px; }
  .discipline-chart { height: 290px; }
  .discipline-chart-price { padding: 2rem 1.2rem 1.2rem; }
  .discipline-chart-price .candle-strip { gap: 7px; }
  .discipline-chart-risk,
  .discipline-chart-process { padding: 1.5rem; }
  .kinetic-cursor { display: none; }
}

@media (pointer: coarse) {
  .kinetic-cursor { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .kinetic-loader,
  .route-transition,
  .kinetic-progress,
  .kinetic-cursor { display: none !important; }
  .kinetic-motion .motion-target,
  .motion-target {
    opacity: 1 !important;
    clip-path: none !important;
    transform: none !important;
  }
  .kinetic-portrait-slices,
  .kinetic-chart-band { display: none !important; }
  .kinetic-contours i,
  .kinetic-collage-track,
  .kinetic-founder-image img,
  .kinetic-panel img { animation: none !important; transform: none !important; }
  .kinetic-manifesto { min-height: auto; }
  .kinetic-manifesto-sticky { position: relative; min-height: auto; }
  .kinetic-manifesto h2,
  .kinetic-manifesto h2 strong {
    color: var(--kinetic-ink);
    background: none;
    -webkit-text-stroke: 0;
  }
  .kinetic-manifesto h2 strong { color: var(--kinetic-gold); }
}

/* Poster-stage hero */
.kinetic-hero {
  min-height: 100svh;
  display: block;
  overflow: hidden;
  padding: 122px 18px 30px;
  color: #f4f2ea;
  background: var(--kinetic-gold);
}
[data-theme="dark"] .kinetic-hero {
  color: #f4f2ea;
  background: #080a08;
}
.kinetic-hero-stage {
  position: relative;
  min-height: calc(100svh - 152px);
  color: #f4f2ea;
  border: 1px solid rgba(200,166,83,.72);
  border-radius: 28px;
  background: #182219;
  box-shadow: 0 24px 70px rgba(8,10,8,.2);
  isolation: isolate;
}
[data-theme="dark"] .kinetic-hero-stage {
  border-color: rgba(200,166,83,.58);
  background: #101a15;
  box-shadow: 0 26px 90px rgba(0,0,0,.42);
}
.kinetic-hero-crown {
  position: absolute;
  z-index: -1;
  top: -48px;
  left: 50%;
  width: min(330px, 28vw);
  height: 78px;
  border: 1px solid rgba(200,166,83,.72);
  border-bottom: 0;
  border-radius: 50% 50% 0 0 / 90% 90% 0 0;
  background: #182219;
  transform: translateX(-50%);
}
[data-theme="dark"] .kinetic-hero-crown {
  border-color: rgba(200,166,83,.58);
  background: #101a15;
}
.kinetic-hero-crown::after {
  content: "";
  position: absolute;
  top: 27px;
  left: 50%;
  width: 70px;
  height: 1px;
  background: var(--kinetic-gold);
  box-shadow: 0 8px 0 rgba(200,166,83,.4);
  transform: translateX(-50%);
}
.kinetic-hero .kinetic-contours {
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
}
.kinetic-hero .kinetic-contours i {
  border-color: rgba(200,166,83,.105);
}
.kinetic-hero .kinetic-contours i:nth-child(1) {
  width: 50vw;
  height: 26vw;
  top: -8vw;
  left: -6vw;
}
.kinetic-hero .kinetic-contours i:nth-child(2) {
  width: 42vw;
  height: 25vw;
  top: 3vw;
  right: -8vw;
}
.kinetic-hero .kinetic-contours i:nth-child(3) {
  width: 38vw;
  height: 24vw;
  right: -5vw;
  bottom: -8vw;
  left: auto;
}
.kinetic-hero .kinetic-contours i:nth-child(4) {
  width: 34vw;
  height: 21vw;
  top: 44%;
  left: 4vw;
}
.kinetic-hero .kinetic-contours i:nth-child(5) {
  width: 26vw;
  height: 42vw;
  top: 17%;
  left: 37%;
  animation-delay: -15s;
}
.kinetic-hero-copy {
  position: absolute;
  z-index: 7;
  top: clamp(72px, 11vh, 118px);
  left: 50%;
  width: min(980px, 76vw);
  max-width: none;
  padding: 0;
  text-align: center;
  transform: translateX(-50%);
}
.kinetic-hero-meta {
  display: block;
  margin: 0 0 1.2rem;
  padding: 0;
  color: rgba(244,242,234,.54);
  border: 0;
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.kinetic-hero h1 {
  margin: 0;
  color: #f4f2ea;
  font-size: clamp(3.8rem, 6.25vw, 7.2rem);
  font-weight: 900;
  letter-spacing: -.075em;
  line-height: .78;
  text-align: center;
  text-transform: uppercase;
}
.kinetic-hero h1 > span {
  display: block;
  overflow: hidden;
  white-space: nowrap;
}
.kinetic-hero h1 em {
  display: inline;
  width: auto;
  max-width: none;
  margin: 0;
  color: var(--kinetic-gold);
  font-family: var(--serif);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -.055em;
  -webkit-text-stroke: 0;
}
.kinetic-hero-intro {
  max-width: 420px;
  margin: 1.35rem auto 0;
  color: rgba(244,242,234,.6);
  font-size: .82rem;
  line-height: 1.45;
}
.kinetic-hero-pages,
.kinetic-hero-social {
  position: absolute;
  z-index: 8;
  top: 53%;
  display: grid;
  gap: .1rem;
  transform: translateY(-50%);
}
.kinetic-hero-pages { left: clamp(30px, 8vw, 150px); }
.kinetic-hero-social { right: clamp(30px, 8vw, 150px); text-align: right; }
.kinetic-hero-pages > span,
.kinetic-hero-social > span {
  margin-bottom: .8rem;
  color: rgba(244,242,234,.42);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.kinetic-hero-pages a,
.kinetic-hero-social a {
  position: relative;
  width: max-content;
  color: #f4f2ea;
  font-size: clamp(.95rem, 1.35vw, 1.35rem);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.05;
  text-transform: uppercase;
}
.kinetic-hero-social a { margin-left: auto; }
.kinetic-hero-pages a::after,
.kinetic-hero-social a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 1px;
  background: var(--kinetic-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.kinetic-hero-pages a:hover,
.kinetic-hero-social a:hover { color: var(--kinetic-gold); }
.kinetic-hero-pages a:hover::after,
.kinetic-hero-social a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.kinetic-hero-portrait {
  z-index: 4;
  right: auto;
  bottom: 0;
  left: 50%;
  width: min(43vw, 660px);
  height: 73%;
  opacity: 1;
  pointer-events: none;
  transform: translate3d(-50%, var(--hero-parallax, 0px), 0);
}
.kinetic-hero-portrait > picture,
.kinetic-hero-portrait > picture img {
  width: 100%;
  height: 100%;
}
.kinetic-hero-portrait > picture img {
  object-fit: contain;
  object-position: center bottom;
  filter: saturate(.8) contrast(1.08);
  mix-blend-mode: lighten;
}
.kinetic-hero-portrait::after {
  inset: auto 0 0;
  height: 24%;
  background: linear-gradient(0deg, #182219 0%, transparent 100%);
}
[data-theme="dark"] .kinetic-hero-portrait::after {
  background: linear-gradient(0deg, #101a15 0%, transparent 100%);
}
.kinetic-portrait-slices {
  z-index: 5;
  inset: 0;
}
.kinetic-portrait-slices span {
  right: 0;
  width: 100%;
  height: 7%;
  background-size: 100% auto;
  mix-blend-mode: lighten;
}
.kinetic-portrait-slices span:nth-child(1) {
  top: 30%;
  background-position: 50% 27%;
}
.kinetic-portrait-slices span:nth-child(2) {
  top: 39%;
  background-position: 50% 37%;
}
.kinetic-portrait-slices span:nth-child(3) {
  top: 48%;
  background-position: 50% 47%;
}
.kinetic-founder-stamp {
  right: 1rem;
  bottom: 6.8rem;
  color: #f4f2ea;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}
.kinetic-founder-stamp span { color: rgba(244,242,234,.58); }
.kinetic-hero-actions {
  position: absolute;
  z-index: 10;
  bottom: 4.6rem;
  left: 50%;
  display: block;
  transform: translateX(-50%);
}
.kinetic-hero-actions .button {
  min-height: 46px;
  padding-inline: 1.15rem;
  white-space: nowrap;
}
.kinetic-hero-actions .button span {
  display: inline;
  margin-left: .5rem;
  transition: transform .25s ease;
}
.kinetic-hero-actions .button:hover span { transform: translate(3px, -3px) rotate(35deg); }
.kinetic-hero-disciplines {
  position: absolute;
  z-index: 7;
  right: clamp(20px, 4vw, 62px);
  bottom: 1.15rem;
  left: clamp(20px, 4vw, 62px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  color: var(--kinetic-gold);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
}
.kinetic-hero-disclaimer,
.kinetic-hero-risk-link {
  position: absolute;
  z-index: 7;
  bottom: -21px;
  margin: 0;
  color: #151714;
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.kinetic-hero-disclaimer {
  right: auto;
  left: 4px;
  max-width: 680px;
  text-align: left;
}
.kinetic-hero-risk-link { right: 4px; }
[data-theme="dark"] .kinetic-hero-disclaimer,
[data-theme="dark"] .kinetic-hero-risk-link { color: rgba(244,242,234,.62); }
.kinetic-motion .kinetic-hero h1 em { animation: none; }

@media (max-width: 980px) {
  .kinetic-hero-pages { left: 34px; }
  .kinetic-hero-social { right: 34px; }
  .kinetic-hero-portrait { width: min(58vw, 620px); }
}

@media (max-width: 820px) {
  .kinetic-hero {
    min-height: 940px;
    padding: 104px 10px 28px;
  }
  .kinetic-hero-stage {
    min-height: 808px;
    border-radius: 20px;
  }
  .kinetic-hero-crown {
    top: -31px;
    width: 170px;
    height: 52px;
  }
  .kinetic-hero-crown::after { top: 18px; width: 48px; }
  .kinetic-hero-copy {
    top: 58px;
    width: calc(100% - 28px);
    padding: 0;
  }
  .kinetic-hero h1 {
    font-size: clamp(3.4rem, 13.5vw, 6.7rem);
    line-height: .82;
  }
  .kinetic-hero h1 > span { white-space: normal; }
  .kinetic-hero-intro { max-width: 340px; margin-top: 1rem; }
  .kinetic-hero-pages,
  .kinetic-hero-social { display: none; }
  .kinetic-hero-portrait {
    right: auto;
    bottom: 0;
    left: 50%;
    width: min(96vw, 640px);
    height: 66%;
    opacity: 1;
    transform: translate3d(-50%, var(--hero-parallax, 0px), 0);
  }
  .kinetic-hero-portrait::after,
  [data-theme="dark"] .kinetic-hero-portrait::after {
    background: linear-gradient(0deg, #182219 0%, transparent 100%);
  }
  [data-theme="dark"] .kinetic-hero-portrait::after {
    background: linear-gradient(0deg, #101a15 0%, transparent 100%);
  }
  .kinetic-founder-stamp { display: none; }
  .kinetic-hero-actions { bottom: 3.8rem; }
  .kinetic-hero-disciplines {
    right: 12px;
    bottom: 1rem;
    left: 12px;
    grid-template-columns: repeat(4, max-content);
    justify-content: space-between;
    gap: .5rem;
    font-size: .48rem;
    letter-spacing: .04em;
  }
  .kinetic-hero-disclaimer {
    right: 88px;
    bottom: -22px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .kinetic-hero-risk-link { bottom: -22px; }
}

@media (max-width: 560px) {
  .kinetic-hero {
    min-height: 900px;
    padding-top: 96px;
  }
  .kinetic-hero-stage { min-height: 776px; }
  .kinetic-hero-meta { margin-bottom: .85rem; }
  .kinetic-hero h1 { font-size: clamp(3rem, 14.2vw, 4.8rem); }
  .kinetic-hero-intro { max-width: 285px; font-size: .74rem; }
  .kinetic-hero-portrait {
    width: 116vw;
    height: 63%;
  }
  .kinetic-hero-actions { bottom: 3.45rem; }
  .kinetic-hero-actions .button { min-height: 42px; font-size: .61rem; }
  .kinetic-hero-disciplines span:nth-child(2),
  .kinetic-hero-disciplines span:nth-child(3) { display: none; }
  .kinetic-hero-disciplines { grid-template-columns: 1fr 1fr; font-size: .5rem; }
  .kinetic-hero-disciplines span:first-child { text-align: left; }
  .kinetic-hero-disciplines span:last-child { text-align: right; }
}

@media (prefers-reduced-motion: reduce) {
  .kinetic-hero-portrait { transform: translateX(-50%) !important; }
}

/* Centered metallic portrait interaction */
.kinetic-hero-portrait {
  width: min(46vw, 720px);
  pointer-events: auto;
}
.kinetic-portrait-frame {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 2px solid var(--kinetic-gold);
  background: #050706;
  box-shadow:
    0 0 0 1px rgba(255,231,163,.18),
    0 28px 70px rgba(0,0,0,.42),
    inset 0 0 42px rgba(200,166,83,.11);
  transform: translateX(-50%);
  transition:
    border-color .45s ease,
    box-shadow .55s ease,
    transform .65s cubic-bezier(.16,1,.3,1);
}
.kinetic-portrait-frame::before {
  content: "";
  position: absolute;
  z-index: 6;
  top: -10%;
  bottom: -10%;
  left: -45%;
  width: 26%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,245,202,.48),
    rgba(200,166,83,.12),
    transparent
  );
  opacity: 0;
  transform: translateX(-180%) skewX(-14deg);
  transition: transform .85s cubic-bezier(.16,1,.3,1), opacity .2s ease;
  pointer-events: none;
}
.kinetic-portrait-frame::after {
  content: "";
  position: absolute;
  z-index: 5;
  inset: 9px;
  border: 1px solid rgba(255,231,163,.44);
  box-shadow: inset 0 0 0 1px rgba(99,65,10,.3);
  pointer-events: none;
}
.kinetic-portrait-base,
.kinetic-portrait-gold {
  position: absolute;
  inset: 0;
  display: block;
}
.kinetic-portrait-base img,
.kinetic-portrait-gold img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition:
    filter .65s cubic-bezier(.16,1,.3,1),
    transform .8s cubic-bezier(.16,1,.3,1),
    opacity .55s ease;
}
.kinetic-portrait-base img {
  filter: saturate(.82) contrast(1.09);
  mix-blend-mode: normal;
}
.kinetic-portrait-gold {
  z-index: 2;
  opacity: 0;
  clip-path: inset(100% 0 0);
  transition:
    clip-path .75s cubic-bezier(.16,1,.3,1),
    opacity .45s ease;
}
.kinetic-portrait-gold img {
  filter:
    grayscale(1)
    sepia(1)
    saturate(6)
    hue-rotate(350deg)
    brightness(1.32)
    contrast(1.22);
  mix-blend-mode: screen;
}
.kinetic-portrait-inner-frame {
  position: absolute;
  z-index: 4;
  inset: 0;
  background:
    linear-gradient(112deg, rgba(72,38,2,.48), transparent 28%),
    linear-gradient(104deg, transparent 36%, rgba(255,232,154,.32) 50%, transparent 62%),
    linear-gradient(0deg, rgba(112,71,5,.38), transparent 42%);
  mix-blend-mode: color;
  opacity: 0;
  transition: opacity .55s ease;
  pointer-events: none;
}
.kinetic-portrait-hover-label {
  position: absolute;
  z-index: 7;
  bottom: 9rem;
  left: 50%;
  width: max-content;
  padding: .42rem .6rem;
  color: rgba(244,242,234,.52);
  border: 1px solid rgba(200,166,83,.42);
  background: rgba(16,26,21,.72);
  font-size: .5rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition: color .35s ease, border-color .35s ease, background .35s ease;
  pointer-events: none;
  backdrop-filter: blur(8px);
}
.kinetic-hero-portrait:hover .kinetic-portrait-frame,
.kinetic-hero-portrait:active .kinetic-portrait-frame {
  border-color: #ffe7a3;
  box-shadow:
    0 0 0 1px #7d5718,
    0 0 42px rgba(200,166,83,.45),
    0 34px 90px rgba(0,0,0,.55),
    inset 0 0 64px rgba(255,223,128,.2);
  transform: translateX(-50%) scale(1.025);
}
.kinetic-hero-portrait:hover .kinetic-portrait-frame::before,
.kinetic-hero-portrait:active .kinetic-portrait-frame::before {
  opacity: 1;
  transform: translateX(680%) skewX(-14deg);
}
.kinetic-hero-portrait:hover .kinetic-portrait-base img,
.kinetic-hero-portrait:active .kinetic-portrait-base img {
  filter: grayscale(1) sepia(.82) saturate(1.6) brightness(.58) contrast(1.42);
  transform: scale(1.018);
}
.kinetic-hero-portrait:hover .kinetic-portrait-gold,
.kinetic-hero-portrait:active .kinetic-portrait-gold {
  opacity: .96;
  clip-path: inset(0);
}
.kinetic-hero-portrait:hover .kinetic-portrait-gold img,
.kinetic-hero-portrait:active .kinetic-portrait-gold img {
  transform: scale(1.018);
}
.kinetic-hero-portrait:hover .kinetic-portrait-inner-frame,
.kinetic-hero-portrait:active .kinetic-portrait-inner-frame { opacity: 1; }
.kinetic-hero-portrait:hover .kinetic-portrait-hover-label,
.kinetic-hero-portrait:active .kinetic-portrait-hover-label {
  color: #151714;
  border-color: #ffe7a3;
  background: var(--kinetic-gold);
}
.kinetic-motion .kinetic-hero-copy.motion-target {
  transform: translate3d(-50%, 40px, 0);
}
.kinetic-motion .kinetic-hero-copy.motion-target.is-visible {
  transform: translate3d(-50%, 0, 0);
}
.kinetic-motion .kinetic-hero-portrait.motion-target {
  transform: translate3d(-50%, calc(var(--hero-parallax, 0px) + 40px), 0);
}
.kinetic-motion .kinetic-hero-portrait.motion-target.is-visible {
  transform: translate3d(-50%, var(--hero-parallax, 0px), 0);
}
.kinetic-motion .kinetic-portrait-frame {
  animation: portraitFrameEnter 1s .28s cubic-bezier(.16,1,.3,1) both;
}

@keyframes portraitFrameEnter {
  from {
    opacity: 0;
    clip-path: inset(100% 0 0);
    transform: translateX(-50%) translateY(22px);
  }
  to {
    opacity: 1;
    clip-path: inset(0);
    transform: translateX(-50%) translateY(0);
  }
}

@media (max-width: 820px) {
  .kinetic-hero-portrait { width: min(104vw, 680px); }
  .kinetic-portrait-hover-label { bottom: 7.2rem; }
}

@media (max-width: 560px) {
  .kinetic-hero-portrait { width: 124vw; }
  .kinetic-portrait-frame { border-width: 1px; }
  .kinetic-portrait-frame::after { inset: 6px; }
  .kinetic-portrait-hover-label {
    bottom: 6.6rem;
    font-size: .45rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kinetic-hero-copy { transform: translateX(-50%) !important; }
  .kinetic-hero-portrait { transform: translateX(-50%) !important; }
  .kinetic-portrait-frame { animation: none !important; }
  .kinetic-portrait-frame::before { display: none; }
  .kinetic-portrait-base img,
  .kinetic-portrait-gold img,
  .kinetic-portrait-gold,
  .kinetic-portrait-inner-frame,
  .kinetic-portrait-frame { transition: none !important; }
}

/* Broker-neutral How to Trade course */
.trade-trust-strip {
  color: #f4f2ea;
  border-top: 1px solid rgba(200,166,83,.42);
  border-bottom: 1px solid rgba(200,166,83,.42);
  background: #101a15;
}
.trade-trust-strip .container {
  min-height: 98px;
  display: grid;
  grid-template-columns: .65fr 1.65fr auto;
  align-items: center;
  gap: 2rem;
}
.trade-trust-strip strong {
  color: var(--kinetic-gold);
  font-size: .72rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.trade-trust-strip p {
  max-width: 780px;
  margin: 0;
  color: rgba(244,242,234,.68);
  font-size: .82rem;
  line-height: 1.5;
}
.trade-trust-strip a {
  color: #f4f2ea;
  border-bottom: 1px solid var(--kinetic-gold);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.trade-course-map {
  padding: clamp(6rem, 10vw, 10rem) 0;
  color: var(--kinetic-ink);
  background: var(--kinetic-ivory);
}
.trade-course-heading {
  display: grid;
  grid-template-columns: .45fr 1.55fr;
  align-items: end;
  gap: 2rem;
  margin-bottom: clamp(3rem, 7vw, 6rem);
}
.trade-course-heading p { margin: 0; }
.trade-course-heading h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(3.3rem, 7vw, 7.8rem);
  font-weight: 900;
  letter-spacing: -.075em;
  line-height: .78;
  text-transform: uppercase;
}
.trade-course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--kinetic-line);
  border-bottom: 1px solid var(--kinetic-line);
}
.trade-course-grid article {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 1.4rem;
  border-left: 1px solid var(--kinetic-line);
}
.trade-course-grid article:last-child { border-right: 1px solid var(--kinetic-line); }
.trade-course-grid article > span {
  color: var(--kinetic-gold);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.trade-course-grid h3 {
  max-width: 330px;
  margin: auto 0 1.2rem;
  font-size: clamp(2rem, 3.1vw, 3.45rem);
  letter-spacing: -.06em;
  line-height: .9;
  text-transform: uppercase;
}
.trade-course-grid p {
  max-width: 340px;
  margin: 0;
  color: var(--kinetic-muted);
  line-height: 1.55;
}
.trade-guide {
  padding: 0 0 clamp(7rem, 12vw, 12rem);
  color: #f4f2ea;
  background: #101a15;
}
.trade-guide-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(3rem, 7vw, 8rem);
}
.trade-guide-index {
  position: sticky;
  top: 110px;
  height: max-content;
  padding-top: 7rem;
}
.trade-guide-index > p {
  margin: 0 0 1.25rem;
  color: var(--kinetic-gold);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.trade-guide-index nav {
  display: grid;
  border-top: 1px solid rgba(244,242,234,.18);
}
.trade-guide-index a {
  padding: .72rem 0;
  color: rgba(244,242,234,.56);
  border-bottom: 1px solid rgba(244,242,234,.12);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s ease, padding-left .2s ease;
}
.trade-guide-index a:hover,
.trade-guide-index a:focus-visible {
  padding-left: .45rem;
  color: var(--kinetic-gold);
}
.trade-guide-content { min-width: 0; }
.trade-chapter {
  position: relative;
  padding: clamp(7rem, 10vw, 10rem) 0;
  border-top: 1px solid rgba(244,242,234,.2);
  scroll-margin-top: 90px;
}
.trade-chapter:first-child { border-top: 0; }
.trade-chapter-number {
  position: absolute;
  top: 2rem;
  right: 0;
  color: rgba(200,166,83,.18);
  font-size: clamp(5rem, 12vw, 12rem);
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: 1;
}
.trade-chapter > .eyebrow {
  position: relative;
  z-index: 1;
  color: var(--kinetic-gold);
}
.trade-chapter > h2 {
  position: relative;
  z-index: 1;
  max-width: 940px;
  margin: 1rem 0 2rem;
  font-size: clamp(3.4rem, 7vw, 7.8rem);
  font-weight: 900;
  letter-spacing: -.075em;
  line-height: .79;
  text-transform: uppercase;
}
.trade-chapter-lead {
  max-width: 760px;
  margin: 0 0 3.5rem;
  color: rgba(244,242,234,.7);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.55;
}
.trade-pair-example {
  position: relative;
  min-height: 290px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 3rem);
  margin-bottom: 3rem;
  overflow: hidden;
  border: 1px solid rgba(200,166,83,.4);
  background:
    linear-gradient(rgba(200,166,83,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,166,83,.06) 1px, transparent 1px),
    #0b130f;
  background-size: 34px 34px;
}
.trade-pair-example > div {
  display: grid;
  gap: .3rem;
  text-align: center;
}
.trade-pair-example span {
  color: rgba(244,242,234,.45);
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.trade-pair-example strong {
  color: #f4f2ea;
  font-size: clamp(4rem, 9vw, 8.4rem);
  letter-spacing: -.07em;
  line-height: .8;
}
.trade-pair-example > i {
  color: var(--kinetic-gold);
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 7rem);
  font-style: normal;
  font-weight: 400;
}
.trade-pair-example small,
.trade-scenario small {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  color: rgba(244,242,234,.4);
  font-size: .52rem;
  letter-spacing: .06em;
  text-align: center;
  text-transform: uppercase;
}
.trade-glossary,
.trade-order-grid,
.trade-structure-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(244,242,234,.18);
  border-left: 1px solid rgba(244,242,234,.18);
}
.trade-glossary section,
.trade-order-grid section,
.trade-structure-grid section {
  min-height: 210px;
  padding: 1.5rem;
  border-right: 1px solid rgba(244,242,234,.18);
  border-bottom: 1px solid rgba(244,242,234,.18);
}
.trade-glossary h3,
.trade-order-grid h3,
.trade-structure-grid h3,
.trade-analysis-grid h3,
.trade-chart-types h3,
.trade-routine-list h3 {
  margin: 0 0 1rem;
  color: #f4f2ea;
  font-size: 1.15rem;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.trade-glossary p,
.trade-order-grid p,
.trade-structure-grid p,
.trade-analysis-grid p,
.trade-chart-types p,
.trade-routine-list p {
  margin: 0;
  color: rgba(244,242,234,.62);
  line-height: 1.55;
}
.trade-scenario {
  position: relative;
  min-height: 330px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding: 2rem 2rem 4.5rem;
  overflow: hidden;
  border: 1px solid rgba(200,166,83,.42);
  background:
    linear-gradient(rgba(200,166,83,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,166,83,.06) 1px, transparent 1px),
    #0b130f;
  background-size: 28px 28px;
}
.trade-scenario > div {
  position: relative;
  height: 150px;
  display: grid;
  align-content: end;
  padding: 1rem;
  border-left: 1px solid var(--kinetic-gold);
}
.trade-scenario > div::after {
  content: "";
  position: absolute;
  top: calc(20% + var(--scenario-offset, 0%));
  right: 0;
  left: 0;
  height: 2px;
  background: var(--kinetic-gold);
}
.trade-scenario > div:nth-child(2) { --scenario-offset: 22%; }
.trade-scenario > div:nth-child(3) { --scenario-offset: 48%; }
.trade-scenario > div:nth-child(4) { --scenario-offset: 13%; }
.trade-scenario span {
  color: #f4f2ea;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.trade-session-track {
  min-height: 160px;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  margin-bottom: 2.5rem;
}
.trade-session-track span {
  min-height: 86px;
  display: grid;
  place-items: center;
  color: #f4f2ea;
  border: 1px solid rgba(200,166,83,.45);
  background: rgba(200,166,83,.08);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.trade-session-track span:nth-child(2) {
  min-height: 128px;
  margin: 0 -1px;
  color: #151714;
  background: var(--kinetic-gold);
}
.trade-check-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(244,242,234,.18);
}
.trade-check-list li {
  position: relative;
  padding: 1.15rem 1rem 1.15rem 2.5rem;
  color: rgba(244,242,234,.68);
  border-bottom: 1px solid rgba(244,242,234,.14);
  line-height: 1.5;
}
.trade-check-list li::before {
  content: "✓";
  position: absolute;
  left: .7rem;
  color: var(--kinetic-gold);
}
.trade-formulas {
  display: grid;
  border-top: 1px solid rgba(244,242,234,.18);
}
.trade-formulas div {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem;
  border-bottom: 1px solid rgba(244,242,234,.18);
}
.trade-formulas span {
  color: var(--kinetic-gold);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.trade-formulas strong {
  color: #f4f2ea;
  font-size: clamp(1.4rem, 3vw, 2.8rem);
  letter-spacing: -.05em;
}
.trade-warning {
  margin-top: 2rem;
  padding: 1.5rem;
  color: #151714;
  border-left: 5px solid #151714;
  background: var(--kinetic-gold);
}
.trade-warning strong {
  display: block;
  margin-bottom: .65rem;
  text-transform: uppercase;
}
.trade-warning p {
  max-width: 760px;
  margin: 0;
  line-height: 1.55;
}
.trade-due-diligence {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(244,242,234,.18);
}
.trade-due-diligence li {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 1.5rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(244,242,234,.14);
}
.trade-due-diligence span {
  color: var(--kinetic-gold);
  font-size: .7rem;
  font-weight: 800;
}
.trade-due-diligence p {
  max-width: 770px;
  margin: 0;
  color: rgba(244,242,234,.68);
  line-height: 1.55;
}
.trade-analysis-grid,
.trade-chart-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(244,242,234,.18);
  border-left: 1px solid rgba(244,242,234,.18);
}
.trade-analysis-grid section,
.trade-chart-types section {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-right: 1px solid rgba(244,242,234,.18);
  border-bottom: 1px solid rgba(244,242,234,.18);
}
.trade-analysis-grid span {
  color: var(--kinetic-gold);
  font-size: .65rem;
  font-weight: 800;
}
.trade-analysis-grid h3,
.trade-chart-types h3 { margin-top: auto; }
.trade-footnote {
  margin: 1.5rem 0 0;
  color: rgba(244,242,234,.46);
  font-size: .62rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.trade-line-chart,
.trade-bar-chart,
.trade-candle-chart {
  position: relative;
  height: 170px;
  margin-bottom: 2rem;
  overflow: hidden;
  background:
    linear-gradient(rgba(200,166,83,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,166,83,.07) 1px, transparent 1px);
  background-size: 24px 24px;
}
.trade-line-chart i {
  position: absolute;
  width: 34%;
  height: 2px;
  background: var(--kinetic-gold);
  transform-origin: left center;
}
.trade-line-chart i:nth-child(1) { top: 70%; left: 4%; transform: rotate(-18deg); }
.trade-line-chart i:nth-child(2) { top: 54%; left: 34%; transform: rotate(12deg); }
.trade-line-chart i:nth-child(3) { top: 60%; left: 62%; transform: rotate(-32deg); }
.trade-line-chart i:nth-child(4) { top: 40%; left: 87%; width: 12%; transform: rotate(-12deg); }
.trade-bar-chart,
.trade-candle-chart {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 1rem;
}
.trade-bar-chart i {
  position: relative;
  width: 2px;
  height: var(--chart-height, 60%);
  background: var(--kinetic-gold);
}
.trade-bar-chart i:nth-child(2) { --chart-height: 78%; }
.trade-bar-chart i:nth-child(3) { --chart-height: 48%; }
.trade-bar-chart i:nth-child(4) { --chart-height: 88%; }
.trade-bar-chart i::after {
  content: "";
  position: absolute;
  top: 35%;
  left: -8px;
  width: 16px;
  height: 1px;
  background: var(--kinetic-gold);
}
.trade-candle-chart i {
  position: relative;
  width: 12px;
  height: var(--body-height, 52px);
  color: var(--kinetic-gold);
  background: currentColor;
}
.trade-candle-chart i:nth-child(2) { --body-height: 82px; color: #f4f2ea; }
.trade-candle-chart i:nth-child(3) { --body-height: 42px; }
.trade-candle-chart i:nth-child(4) { --body-height: 68px; color: #f4f2ea; }
.trade-candle-chart i::before {
  content: "";
  position: absolute;
  top: -22px;
  bottom: -22px;
  left: 50%;
  width: 1px;
  background: currentColor;
  transform: translateX(-50%);
}
.trade-structure-grid { margin-top: 2.5rem; }
.trade-routine-list { border-top: 1px solid rgba(244,242,234,.18); }
.trade-routine-list section {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.4rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(244,242,234,.14);
}
.trade-routine-list > section > span {
  color: var(--kinetic-gold);
  font-size: .7rem;
  font-weight: 800;
}
.trade-routine-list h3 { margin-bottom: .45rem; }
.trade-final-cta {
  padding: clamp(7rem, 12vw, 13rem) 0;
  color: #151714;
  background: var(--kinetic-gold);
}
.trade-final-cta h2 {
  max-width: 1120px;
  margin: 1rem 0 2rem;
  font-size: clamp(4rem, 9vw, 10rem);
  font-weight: 900;
  letter-spacing: -.085em;
  line-height: .75;
  text-transform: uppercase;
}
.trade-final-cta > .container > p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(21,23,20,.72);
  font-size: 1.05rem;
  line-height: 1.55;
}
.trade-final-cta > .container > div {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.trade-final-cta .button {
  color: #f4f2ea;
  border-color: #151714;
  background: #151714;
}
.trade-final-cta .button:hover {
  color: #151714;
  background: transparent;
}

@media (max-width: 980px) {
  .trade-trust-strip .container { grid-template-columns: 1fr; gap: .8rem; padding-block: 1.5rem; }
  .trade-course-heading { grid-template-columns: 1fr; }
  .trade-guide-layout { grid-template-columns: 1fr; }
  .trade-guide-index {
    position: relative;
    top: auto;
    padding-top: 4rem;
  }
  .trade-guide-index nav {
    grid-template-columns: repeat(4, 1fr);
    border-left: 1px solid rgba(244,242,234,.14);
  }
  .trade-guide-index a { padding: .8rem; border-right: 1px solid rgba(244,242,234,.14); }
}

@media (max-width: 760px) {
  .trade-course-map { padding-inline: 0; }
  .trade-course-grid,
  .trade-analysis-grid,
  .trade-chart-types { grid-template-columns: 1fr; }
  .trade-course-grid article {
    min-height: 300px;
    border-right: 1px solid var(--kinetic-line);
    border-bottom: 1px solid var(--kinetic-line);
  }
  .trade-guide-layout { gap: 2rem; }
  .trade-guide-index nav { grid-template-columns: repeat(2, 1fr); }
  .trade-chapter > h2 { font-size: clamp(3.2rem, 14vw, 5.8rem); }
  .trade-glossary,
  .trade-order-grid,
  .trade-structure-grid { grid-template-columns: 1fr; }
  .trade-glossary section,
  .trade-order-grid section,
  .trade-structure-grid section { min-height: 180px; }
  .trade-scenario {
    grid-template-columns: repeat(2, 1fr);
    padding-inline: 1rem;
  }
  .trade-session-track { grid-template-columns: 1fr; gap: .6rem; }
  .trade-session-track span,
  .trade-session-track span:nth-child(2) { min-height: 74px; margin: 0; }
  .trade-formulas div { grid-template-columns: 1fr; }
  .trade-analysis-grid section,
  .trade-chart-types section { min-height: 280px; }
  .trade-final-cta h2 { font-size: clamp(3.7rem, 16vw, 6rem); }
}

@media (max-width: 520px) {
  .trade-course-heading h2 { font-size: clamp(3rem, 14vw, 5rem); }
  .trade-guide-index nav { grid-template-columns: 1fr 1fr; }
  .trade-guide-index a { font-size: .58rem; }
  .trade-pair-example { min-height: 240px; }
  .trade-pair-example strong { font-size: 3.4rem; }
  .trade-scenario { grid-template-columns: 1fr; }
  .trade-scenario > div { height: 94px; }
  .trade-due-diligence li,
  .trade-routine-list section { grid-template-columns: 44px 1fr; }
}

/* FMC private trading journal */
.kinetic-trade-journal {
  min-height: 860px;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  color: #f4f2ea;
  background: #080a08;
  border-top: 1px solid rgba(244,242,234,.14);
}
.kinetic-trade-journal-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(5rem, 8vw, 9rem) clamp(24px, 6vw, 92px);
  border-right: 1px solid rgba(244,242,234,.14);
}
.kinetic-trade-journal-copy h2 {
  max-width: 750px;
  margin: 0;
  font-size: clamp(4rem, 7vw, 8rem);
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: .78;
  text-transform: uppercase;
}
.kinetic-trade-journal-copy > p:not(.kinetic-kicker) {
  max-width: 650px;
  margin: 2rem 0 0;
  color: rgba(244,242,234,.62);
  line-height: 1.6;
}
.kinetic-trade-journal-copy ul {
  display: grid;
  gap: .65rem;
  margin: 2rem 0;
  padding: 0;
  color: rgba(244,242,234,.75);
  font-size: .78rem;
  list-style: none;
}
.kinetic-trade-journal-copy li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: .5rem;
}
.kinetic-trade-journal-copy li::before {
  content: "●";
  color: var(--kinetic-gold);
  font-size: .52rem;
}
.kinetic-trade-journal-copy .button { width: max-content; margin-top: 1rem; }
.kinetic-trade-journal-visual {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 44%, rgba(7,63,52,.62), transparent 44%),
    #0d120e;
}
.kinetic-trade-journal-grid {
  position: absolute;
  inset: 0;
  opacity: .42;
  background:
    linear-gradient(rgba(200,166,83,.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,166,83,.11) 1px, transparent 1px);
  background-size: 9.5% 11%;
  mask-image: linear-gradient(135deg, transparent 8%, #000 35%, #000 70%, transparent 94%);
}
.kinetic-trade-journal-curve {
  position: absolute;
  inset: 20% 9% 24%;
}
.kinetic-trade-journal-curve i {
  position: absolute;
  left: var(--curve-left);
  top: var(--curve-top);
  width: 25%;
  height: 3px;
  background: var(--kinetic-gold);
  box-shadow: 0 0 24px rgba(200,166,83,.35);
  transform: rotate(var(--curve-angle));
  transform-origin: left center;
}
.kinetic-trade-journal-curve i::after {
  content: "";
  position: absolute;
  right: -5px;
  top: -4px;
  width: 10px;
  height: 10px;
  border: 1px solid var(--kinetic-gold);
  border-radius: 50%;
  background: #0d120e;
}
.kinetic-trade-journal-curve i:nth-child(1) { --curve-left: 2%; --curve-top: 68%; --curve-angle: -18deg; }
.kinetic-trade-journal-curve i:nth-child(2) { --curve-left: 24%; --curve-top: 53%; --curve-angle: 13deg; }
.kinetic-trade-journal-curve i:nth-child(3) { --curve-left: 47%; --curve-top: 62%; --curve-angle: -37deg; }
.kinetic-trade-journal-curve i:nth-child(4) { --curve-left: 67%; --curve-top: 38%; --curve-angle: 7deg; }
.kinetic-trade-journal-curve i:nth-child(5) { --curve-left: 89%; --curve-top: 41%; --curve-angle: -21deg; width: 12%; }
.kinetic-trade-journal-stats {
  position: absolute;
  right: 6%;
  bottom: 6%;
  left: 6%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(244,242,234,.22);
}
.kinetic-trade-journal-stats span {
  padding: 1rem .5rem;
  color: rgba(244,242,234,.48);
  border-right: 1px solid rgba(244,242,234,.14);
  font-size: .58rem;
  letter-spacing: .12em;
  text-align: center;
}
.kinetic-trade-journal-visual > strong {
  position: absolute;
  top: 8%;
  left: 7%;
  color: rgba(244,242,234,.92);
  font-size: clamp(3rem, 6vw, 7.2rem);
  font-weight: 900;
  letter-spacing: -.075em;
  line-height: .72;
}
.kinetic-trade-journal-visual > strong::first-line { color: var(--kinetic-gold); }

.journal-page-shell {
  padding: clamp(4rem, 8vw, 8rem) 0;
  color: #f4f2ea;
  background: #080a08;
}
.journal-page-shell .container { width: min(1440px, calc(100% - 48px)); }
.journal-app {
  overflow: hidden;
  border: 1px solid rgba(200,166,83,.45);
  background: #0d120e;
}
.journal-app h2,
.journal-app h3 { font-weight: 900; letter-spacing: -.05em; line-height: .95; text-transform: uppercase; }
.journal-app button { cursor: pointer; }
.journal-app-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3rem;
  padding: clamp(2rem, 4vw, 4rem);
  background:
    linear-gradient(125deg, rgba(7,63,52,.8), rgba(13,18,14,.45)),
    #101a15;
  border-bottom: 1px solid rgba(244,242,234,.14);
}
.journal-app-toolbar h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5rem);
}
.journal-app-toolbar > div:first-child > p:last-child {
  max-width: 720px;
  margin: 1.2rem 0 0;
  color: rgba(244,242,234,.62);
}
.journal-toolbar-actions {
  display: grid;
  align-content: start;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
}
.journal-control {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .7rem 1rem;
  color: #f4f2ea;
  border: 1px solid rgba(244,242,234,.3);
  background: transparent;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-align: center;
  text-transform: uppercase;
}
.journal-control:hover { color: #111410; border-color: var(--kinetic-gold); background: var(--kinetic-gold); }
.journal-control input[type="file"] { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.journal-local-notice {
  display: flex;
  gap: .7rem;
  align-items: center;
  padding: .9rem clamp(1.25rem, 3vw, 3rem);
  color: rgba(244,242,234,.64);
  border-bottom: 1px solid rgba(244,242,234,.12);
  background: #0a0d0a;
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.journal-local-notice span { color: var(--kinetic-gold); }
.journal-status {
  margin: 0;
  padding: .9rem clamp(1.25rem, 3vw, 3rem);
  color: #151714;
  background: var(--kinetic-gold);
  font-size: .72rem;
  font-weight: 800;
}
.journal-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(244,242,234,.16);
}
.journal-tabs button {
  min-height: 66px;
  color: rgba(244,242,234,.48);
  border: 0;
  border-right: 1px solid rgba(244,242,234,.13);
  background: transparent;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.journal-tabs button.active { color: #111410; background: var(--kinetic-gold); }
.journal-view { padding: clamp(1.25rem, 3vw, 3rem); }
.journal-metric-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid rgba(244,242,234,.14);
  border-left: 1px solid rgba(244,242,234,.14);
}
.journal-metric-grid article {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  border-right: 1px solid rgba(244,242,234,.14);
  border-bottom: 1px solid rgba(244,242,234,.14);
}
.journal-metric-grid span,
.journal-weekly-grid span {
  color: rgba(244,242,234,.5);
  font-size: .58rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.journal-metric-grid strong {
  margin-top: auto;
  font-size: clamp(2rem, 3vw, 3.4rem);
  letter-spacing: -.06em;
}
.journal-metric-grid small { color: rgba(244,242,234,.38); line-height: 1.35; }
.journal-app .positive { color: #86d4a3; }
.journal-app .negative { color: #e8917f; }
.journal-dashboard-grid {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  border-left: 1px solid rgba(244,242,234,.14);
}
.journal-dashboard-panel {
  min-height: 430px;
  padding: clamp(1.25rem, 2.5vw, 2.5rem);
  border-right: 1px solid rgba(244,242,234,.14);
  border-bottom: 1px solid rgba(244,242,234,.14);
}
.journal-panel-heading {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: start;
}
.journal-panel-heading .eyebrow { margin-bottom: .5rem; }
.journal-panel-heading h2,
.journal-panel-heading h3 { margin: 0; }
.journal-panel-heading > span {
  color: rgba(244,242,234,.42);
  font-size: .62rem;
  text-align: right;
  text-transform: uppercase;
}
.journal-equity-canvas { width: 100%; height: 290px; display: block; margin-top: 2rem; }
.journal-heatmap {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-top: 3.5rem;
}
.journal-heatmap-day {
  aspect-ratio: 1;
  display: block;
  border: 1px solid rgba(244,242,234,.12);
  background: rgba(244,242,234,.035);
}
.journal-heatmap-day.positive { border-color: rgba(134,212,163,.34); background: rgba(134,212,163,.52); }
.journal-heatmap-day.negative { border-color: rgba(232,145,127,.34); background: rgba(232,145,127,.52); }
.journal-heatmap-day.flat { background: rgba(200,166,83,.4); }
.journal-heatmap-key { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.2rem; color: rgba(244,242,234,.4); font-size: .58rem; }
.journal-heatmap-key span { display: flex; align-items: center; gap: .35rem; }
.journal-heatmap-key i { width: 8px; height: 8px; display: inline-block; background: rgba(244,242,234,.1); }
.journal-heatmap-key i.positive { background: rgba(134,212,163,.6); }
.journal-heatmap-key i.negative { background: rgba(232,145,127,.6); }
.journal-breakdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid rgba(244,242,234,.14);
}
.journal-breakdown-grid > article {
  min-height: 410px;
  padding: clamp(1.25rem, 2.5vw, 2.5rem);
  border-right: 1px solid rgba(244,242,234,.14);
  border-bottom: 1px solid rgba(244,242,234,.14);
}
.journal-breakdown-grid h3 { margin: 0 0 2rem; font-size: clamp(1.7rem, 2.6vw, 2.8rem); }
.journal-stat-list { border-top: 1px solid rgba(244,242,234,.14); }
.journal-stat-list > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .2rem 1rem;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(244,242,234,.12);
}
.journal-stat-list > div > span { font-weight: 800; }
.journal-stat-list > div > small { grid-column: 1 / -1; color: rgba(244,242,234,.38); }
.journal-stat-list > p,
.journal-breakdown-grid > article > small { color: rgba(244,242,234,.42); }
.journal-insight-list { display: grid; gap: .8rem; margin: 0 0 2rem; padding: 0; list-style: none; }
.journal-insight-list li {
  padding: .9rem 0 .9rem 1.25rem;
  border-bottom: 1px solid rgba(244,242,234,.12);
  color: rgba(244,242,234,.72);
}
.journal-insight-list li::before { content: "↗"; margin-left: -1.25rem; margin-right: .55rem; color: var(--kinetic-gold); }
.journal-editor,
.journal-log,
.journal-weekly-summary,
.journal-reflection-form,
.journal-review-history,
.journal-playbook-intro,
.journal-playbook-layout > form,
.journal-playbook-list {
  border: 1px solid rgba(244,242,234,.14);
  background: #101511;
}
.journal-editor { margin-bottom: 1.5rem; padding: clamp(1.25rem, 3vw, 3rem); }
.journal-editor-heading,
.journal-log-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}
.journal-editor-heading h2,
.journal-log-heading h2 { margin: 0; font-size: clamp(2rem, 4vw, 4.5rem); }
.journal-editor-heading > button {
  width: 46px;
  height: 46px;
  color: #f4f2ea;
  border: 1px solid rgba(244,242,234,.3);
  background: transparent;
  font-size: 1.5rem;
}
.journal-app form { display: grid; gap: 1rem; }
.journal-app form label,
.journal-filters label {
  display: grid;
  gap: .45rem;
  color: rgba(244,242,234,.58);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.journal-app input,
.journal-app select,
.journal-app textarea {
  width: 100%;
  color: #f4f2ea;
  border: 1px solid rgba(244,242,234,.2);
  border-radius: 0;
  background: #0a0d0a;
  outline: none;
}
.journal-app input,
.journal-app select { min-height: 48px; padding: .65rem .8rem; }
.journal-app textarea { min-height: 122px; padding: .8rem; resize: vertical; }
.journal-app input:focus,
.journal-app select:focus,
.journal-app textarea:focus { border-color: var(--kinetic-gold); box-shadow: 0 0 0 2px rgba(200,166,83,.18); }
.journal-form-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.journal-notes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.journal-checkbox {
  grid-template-columns: auto 1fr !important;
  align-items: center;
  width: max-content;
  max-width: 100%;
  padding: 1rem 0;
}
.journal-checkbox input { width: 18px; min-height: 18px; accent-color: var(--kinetic-gold); }
.journal-editor-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1rem; }
.journal-log { padding: clamp(1.25rem, 3vw, 3rem); }
.journal-filters { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: .7rem; margin-bottom: 1.3rem; }
.journal-table-wrap { overflow-x: auto; border: 1px solid rgba(244,242,234,.14); }
.journal-table-wrap table { width: 100%; min-width: 1060px; border-collapse: collapse; font-size: .72rem; }
.journal-table-wrap th {
  padding: .9rem;
  color: rgba(244,242,234,.42);
  border-bottom: 1px solid rgba(244,242,234,.16);
  font-size: .56rem;
  letter-spacing: .08em;
  text-align: left;
  text-transform: uppercase;
}
.journal-table-wrap td { padding: 1rem .9rem; border-bottom: 1px solid rgba(244,242,234,.1); color: rgba(244,242,234,.7); }
.journal-table-wrap td small { display: block; margin-top: .15rem; color: rgba(244,242,234,.34); text-transform: uppercase; }
.journal-table-wrap td:last-child { white-space: nowrap; }
.journal-table-wrap td button,
.journal-review-history button,
.journal-playbook-list button,
.journal-data-controls button {
  padding: 0;
  color: var(--kinetic-gold);
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font-size: .6rem;
  font-weight: 800;
  text-transform: uppercase;
}
.journal-table-wrap td button + button { margin-left: .7rem; color: rgba(244,242,234,.42); }
.journal-side {
  display: inline-block;
  padding: .2rem .4rem;
  border: 1px solid rgba(244,242,234,.2);
  font-size: .56rem;
  font-weight: 800;
  text-transform: uppercase;
}
.journal-side.long { color: #86d4a3; }
.journal-side.short { color: #e8917f; }
.journal-empty { padding: 3rem; color: rgba(244,242,234,.56); text-align: center; }
.journal-empty strong { display: block; color: #f4f2ea; font-size: 1.2rem; text-transform: uppercase; }
.journal-empty p { margin-bottom: 0; }
.journal-weekly-summary { padding: clamp(1.25rem, 3vw, 3rem); }
.journal-weekly-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 2rem; border-left: 1px solid rgba(244,242,234,.14); }
.journal-weekly-grid article {
  min-height: 130px;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border-top: 1px solid rgba(244,242,234,.14);
  border-right: 1px solid rgba(244,242,234,.14);
  border-bottom: 1px solid rgba(244,242,234,.14);
}
.journal-weekly-grid strong { margin-top: auto; font-size: 2rem; }
.journal-review-observations { margin-top: 2rem; padding: 1.5rem; border-left: 2px solid var(--kinetic-gold); background: rgba(200,166,83,.06); }
.journal-review-observations h3 { margin-top: 0; }
.journal-review-observations li,
.journal-review-observations p { color: rgba(244,242,234,.62); }
.journal-review-layout,
.journal-playbook-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.5rem; }
.journal-reflection-form,
.journal-review-history,
.journal-playbook-layout > form,
.journal-playbook-list { padding: clamp(1.25rem, 2.5vw, 2.5rem); }
.journal-reflection-form h3,
.journal-review-history h3,
.journal-playbook-layout h3 { margin-top: 0; font-size: clamp(1.7rem, 3vw, 3rem); }
.journal-review-history > div { display: grid; gap: .8rem; }
.journal-review-history article {
  padding: 1.2rem;
  border: 1px solid rgba(244,242,234,.14);
}
.journal-review-history article header,
.journal-playbook-list article header { display: flex; justify-content: space-between; gap: 1rem; color: rgba(244,242,234,.48); font-size: .62rem; text-transform: uppercase; }
.journal-review-history article p,
.journal-playbook-list article p { color: rgba(244,242,234,.64); font-size: .82rem; line-height: 1.55; }
.journal-playbook-intro { padding: clamp(2rem, 4vw, 4rem); }
.journal-playbook-intro h2 { max-width: 900px; margin: 0; font-size: clamp(3rem, 6vw, 6.5rem); }
.journal-playbook-intro > p:last-child { max-width: 720px; color: rgba(244,242,234,.62); }
.journal-playbook-list { display: grid; align-content: start; gap: 1rem; }
.journal-playbook-list article { padding: 1.4rem; border: 1px solid rgba(244,242,234,.14); }
.journal-playbook-list article h3 { margin: 1.5rem 0; }
.journal-data-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem clamp(1.25rem, 3vw, 3rem);
  border-top: 1px solid rgba(244,242,234,.14);
  background: #080a08;
}
.journal-data-controls strong { text-transform: uppercase; }
.journal-data-controls p { margin: .25rem 0 0; color: rgba(244,242,234,.42); font-size: .7rem; }
.journal-data-controls button { color: #e8917f; white-space: nowrap; }
.journal-risk-band {
  padding: clamp(5rem, 8vw, 8rem) 0;
  color: #151714;
  background: var(--kinetic-gold);
}
.journal-risk-band .container {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(2rem, 7vw, 7rem);
}
.journal-risk-band .eyebrow { color: #151714; opacity: .58; }
.journal-risk-band h2 { max-width: 900px; margin: 0; font-size: clamp(3rem, 6vw, 6.5rem); font-weight: 900; letter-spacing: -.075em; line-height: .82; text-transform: uppercase; }
.journal-risk-band p { color: rgba(21,23,20,.7); }
.journal-risk-band .kinetic-text-link::after { background: #151714; }
.journal-risk-band .kinetic-text-link span { color: #151714; }

@media (max-width: 1180px) {
  .journal-metric-grid { grid-template-columns: repeat(3, 1fr); }
  .journal-form-grid { grid-template-columns: repeat(2, 1fr); }
  .journal-dashboard-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .kinetic-trade-journal { grid-template-columns: 1fr; }
  .kinetic-trade-journal-copy { border-right: 0; border-bottom: 1px solid rgba(244,242,234,.14); }
  .kinetic-trade-journal-visual { min-height: 620px; }
  .journal-app-toolbar,
  .journal-risk-band .container { grid-template-columns: 1fr; }
  .journal-toolbar-actions { grid-template-columns: repeat(4, 1fr); }
  .journal-breakdown-grid { grid-template-columns: 1fr; }
  .journal-review-layout,
  .journal-playbook-layout { grid-template-columns: 1fr; }
  .journal-filters { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .kinetic-trade-journal-copy h2 { font-size: clamp(3.6rem, 16vw, 5.5rem); }
  .kinetic-trade-journal-copy .button { width: 100%; }
  .kinetic-trade-journal-visual { min-height: 500px; }
  .kinetic-trade-journal-visual > strong { font-size: clamp(3.2rem, 16vw, 5.6rem); }
  .kinetic-trade-journal-stats { grid-template-columns: repeat(2, 1fr); }
  .journal-page-shell .container { width: min(100% - 20px, 1440px); }
  .journal-app-toolbar { padding: 1.5rem; }
  .journal-toolbar-actions { grid-template-columns: 1fr 1fr; }
  .journal-tabs { grid-template-columns: 1fr 1fr; }
  .journal-tabs button { min-height: 56px; border-bottom: 1px solid rgba(244,242,234,.13); }
  .journal-view { padding: 10px; }
  .journal-metric-grid { grid-template-columns: 1fr 1fr; }
  .journal-metric-grid article { min-height: 150px; }
  .journal-panel-heading,
  .journal-editor-heading,
  .journal-log-heading { align-items: stretch; flex-direction: column; }
  .journal-panel-heading > span { text-align: left; }
  .journal-form-grid,
  .journal-notes-grid,
  .journal-filters,
  .journal-weekly-grid { grid-template-columns: 1fr; }
  .journal-editor,
  .journal-log,
  .journal-weekly-summary,
  .journal-reflection-form,
  .journal-review-history,
  .journal-playbook-intro,
  .journal-playbook-layout > form,
  .journal-playbook-list { padding: 1.25rem; }
  .journal-data-controls { align-items: start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .kinetic-trade-journal-curve i,
  .journal-app *,
  .journal-risk-band * { animation: none !important; transition: none !important; }
}
