:root {
  --ink: #17323b;
  --paper: #fcfdfb;
  --white: #ffffff;
  --primary: #08b9d4;
  --primary-dark: #087f91;
  --primary-soft: #e7f9fc;
  --accent: #f4b84c;
  --accent-soft: #fff5df;
  --coral: #eb8d7d;
  --coral-soft: #fff0eb;
  --sky: #e4f7fb;
  --mint: #e8f5ef;
  --line: #dce7e9;
  --muted: #61737a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
::selection { background: var(--accent-soft); color: var(--ink); }
.phrase { display: inline-block; white-space: nowrap; }

.arrow-icon {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
}
.arrow-icon::before {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  content: "";
}
.arrow-icon::after {
  position: absolute;
  left: 1px;
  bottom: 1px;
  width: 11px;
  height: 1.5px;
  background: currentColor;
  content: "";
  transform: rotate(-45deg);
  transform-origin: left center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 0 max(24px, calc((100vw - 1200px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
}
.brand, .footer-brand { display: inline-flex; align-items: center; width: max-content; }
.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  color: var(--ink);
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: 26px;
  font-weight: 950;
  letter-spacing: .04em;
  line-height: 1;
  white-space: nowrap;
}
.brand-word { display: inline-flex; align-items: baseline; white-space: nowrap; }
.brand-word strong { margin-right: .02em; color: var(--primary); font-size: 1.18em; font-weight: 950; letter-spacing: 0; }
.desktop-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 42px); }
.desktop-nav a { font-size: 14px; font-weight: 600; }
.desktop-nav a:hover { color: var(--primary); }
.header-cta {
  position: relative;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 6px;
  background: var(--primary);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}
.header-cta:hover { background: var(--primary-dark); color: var(--white); }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
  min-height: 700px;
  padding: clamp(80px, 9vw, 120px) max(24px, calc((100vw - 1200px) / 2));
  background: var(--white);
  overflow: hidden;
}
.hero::before,
.hero::after { display: none; }
.hero-copy, .hero-visual { position: relative; z-index: 1; }
.hero-copy { min-width: 0; }
.eyebrow, .section-label {
  margin: 0 0 24px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}
.hero h1 {
  max-width: 9.5em;
  margin: 0;
  font-size: clamp(44px, 5vw, 66px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: 1.25;
  line-break: strict;
  text-wrap: balance;
  word-break: normal;
}
.hero h1 .accent { color: var(--primary); }
.hero-lead {
  max-width: 580px;
  margin: 30px 0 0;
  color: #50656c;
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 500;
  line-height: 2;
}
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 36px; }
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-width: 220px;
  min-height: 58px;
  padding: 0 26px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  transition: background .2s, transform .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--primary); color: var(--white); }
.button-primary:hover { background: var(--primary-dark); color: var(--white); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.hero-visual { min-width: 0; }
.hero-diagram {
  padding: 22px 0 18px;
  border-top: 1px solid #b8e6ed;
  border-bottom: 1px solid #b8e6ed;
}
.hero-diagram-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}
.hero-diagram-head p {
  margin: 0;
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 700;
}
.hero-diagram-head span {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
}
.hero-network {
  position: relative;
  min-height: clamp(360px, 34vw, 430px);
  margin-top: 14px;
}
.hero-route {
  position: absolute;
  left: 50%;
  top: 51%;
  z-index: 0;
  display: block;
  width: 39%;
  height: 1px;
  background: #9edce5;
  transform-origin: 0 50%;
}
.hero-route::after {
  position: absolute;
  right: -3px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  content: "";
}
.route-one { width: 34%; transform: rotate(-90deg); }
.route-two { width: 43%; transform: rotate(39deg); }
.route-three { width: 43%; transform: rotate(141deg); }
.hero-core {
  position: absolute;
  left: 50%;
  top: 51%;
  z-index: 2;
  display: flex;
  width: 148px;
  height: 148px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 10px solid var(--primary-soft);
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  text-align: center;
  transform: translate(-50%, -50%);
}
.hero-core small { font-family: Arial, sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.hero-core strong { margin: 5px 0 3px; font-family: Arial, sans-serif; font-size: 34px; letter-spacing: -.06em; line-height: 1; }
.hero-core span { font-size: 10px; font-weight: 700; }
.hero-node {
  position: absolute;
  z-index: 2;
  display: flex;
  width: min(43%, 200px);
  min-height: 100px;
  flex-direction: column;
  justify-content: center;
  padding: 16px 4px;
  border-top: 2px solid var(--primary);
  background: var(--white);
}
.hero-node-one { left: 50%; top: 0; transform: translateX(-50%); }
.hero-node-two { right: 0; bottom: 0; }
.hero-node-three { left: 0; bottom: 0; }
.hero-node small {
  color: var(--primary-dark);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
}
.hero-node strong { margin-top: 10px; font-size: clamp(13px, 1.25vw, 17px); line-height: 1.65; }
.hero-diagram-foot {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid #d9eef1;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.value-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 70px);
  min-height: 76px;
  padding: 18px 24px;
  background: var(--primary);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
}
.value-strip i { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

.section,
.fit-section,
.cycle-section,
.philosophy,
.entry {
  padding: clamp(82px, 10vw, 130px) max(24px, calc((100vw - 1200px) / 2));
}
.section-heading h2, .intro h2, .fit-section h2, .private-hub h2, .cycle-section h2, .bonus h2, .members h2, .entry h2, .final-cta h2 {
  margin: 0;
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.35;
  line-break: strict;
  text-wrap: balance;
  word-break: normal;
}
.section-label.light { color: rgba(255,255,255,.72); }

.intro {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(50px, 8vw, 100px);
  background: var(--paper);
}
.intro-body { padding-top: 52px; }
.intro-body > p { max-width: 720px; margin: 0 0 24px; color: #4d6269; font-size: 16px; line-height: 2.1; }
.intro-body .intro-lead { color: var(--ink); font-size: clamp(19px, 1.8vw, 25px); font-weight: 600; line-height: 1.8; }
.intro-lead strong { color: var(--primary); }
.tmc-meaning {
  margin-top: 36px;
  padding: 20px 0;
  border-top: 1px solid #cddfe2;
  border-bottom: 1px solid #cddfe2;
}
.tmc-meaning > p { margin: 0 0 16px; color: var(--primary-dark); font-size: 12px; font-weight: 700; }
.tmc-meaning-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; }
.tmc-meaning-grid > div {
  display: flex;
  min-width: 0;
  min-height: 112px;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 6px 24px 6px 0;
}
.tmc-meaning-grid > div + div { padding-left: 24px; border-left: 1px solid #cddfe2; }
.tmc-meaning-grid small { color: var(--primary-dark); font-family: Arial, sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .08em; }
.tmc-meaning-grid .tmc-expansion b { font-size: 1.35em; font-weight: 900; letter-spacing: .01em; line-height: 1; }
.tmc-meaning-grid strong { font-size: clamp(14px, 1.15vw, 16px); line-height: 1.75; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 42px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-grid > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
  padding: 22px 18px 22px 0;
}
.stats-grid > div + div { padding-left: 18px; border-left: 1px solid var(--line); }
.stats-grid strong { color: var(--primary); font-size: clamp(20px, 2vw, 28px); letter-spacing: -.03em; }
.stats-grid strong small { font-size: .48em; }
.stats-grid span { color: var(--muted); font-size: 13px; font-weight: 600; }

.fit-section {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(50px, 8vw, 100px);
  background: #fff3ed;
  color: var(--ink);
}
.fit-section .section-label.light { color: var(--primary-dark); }
.fit-copy > p:last-child { max-width: 500px; margin: 28px 0 0; color: var(--muted); font-size: 16px; line-height: 2; }
.fit-list { border-top: 1px solid #edcfc5; }
.fit-item {
  display: grid;
  grid-template-columns: 38px 1fr 30px;
  align-items: center;
  gap: 18px;
  min-height: 92px;
  border-bottom: 1px solid #edcfc5;
}
.fit-item > span { color: var(--primary-dark); font-family: Arial, sans-serif; font-size: 12px; font-weight: 700; }
.fit-item p { margin: 0; font-size: clamp(15px, 1.4vw, 19px); font-weight: 600; line-height: 1.7; }
.fit-item i {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-style: normal;
  font-weight: 800;
}

.private-hub {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: start;
  gap: clamp(50px, 7vw, 90px);
  background: var(--white);
}
.hub-intro { padding-top: 4px; }
.hub-lead { margin: 28px 0 0; font-size: clamp(18px, 1.6vw, 23px); font-weight: 700; line-height: 1.7; }
.hub-description { max-width: 520px; margin: 14px 0 0; color: var(--muted); font-size: 16px; line-height: 2; }
.hub-keywords { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.hub-keywords span {
  padding: 7px 10px;
  border: 1px solid #cce8ec;
  border-radius: 999px;
  background: var(--white);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
}
.hub-features {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}
.hub-feature {
  display: flex;
  min-width: 0;
  min-height: 232px;
  flex-direction: column;
  padding: 26px;
  border: 0;
  border-radius: 0;
  background: var(--white);
}
.hub-feature-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.hub-number { color: var(--primary-dark); font-family: Arial, sans-serif; font-size: 20px; font-weight: 700; }
.hub-code {
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--primary-dark);
  font-size: 10px;
  font-weight: 700;
}
.hub-icon,
.feature-icon {
  position: relative;
  display: block;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary);
}
.hub-icon { margin: 26px 0 22px; }
.hub-icon::before,
.hub-icon::after,
.hub-icon i::before,
.hub-icon i::after,
.feature-icon::before,
.feature-icon::after,
.feature-icon i::before,
.feature-icon i::after {
  position: absolute;
  display: block;
  content: "";
}
.hub-icon-1::before { left: 14px; top: 15px; width: 24px; height: 3px; border-radius: 2px; background: currentColor; box-shadow: 0 8px 0 currentColor, 0 16px 0 currentColor; }
.hub-icon-2::before { left: 12px; top: 13px; width: 27px; height: 21px; border: 2px solid currentColor; border-radius: 7px; }
.hub-icon-2::after { left: 18px; top: 32px; width: 8px; height: 8px; border-left: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: skewY(-35deg); }
.hub-icon-3::before, .hub-icon-3::after { top: 17px; width: 18px; height: 18px; border: 2px solid currentColor; border-radius: 50%; }
.hub-icon-3::before { left: 9px; }
.hub-icon-3::after { right: 9px; }
.hub-icon-4::before { left: 13px; top: 13px; width: 26px; height: 26px; border: 2px solid currentColor; transform: rotate(45deg); }
.hub-icon-4::after { left: 24px; top: 8px; width: 3px; height: 36px; border-radius: 2px; background: currentColor; }
.hub-icon-5::before { left: 14px; top: 20px; width: 24px; height: 20px; border: 2px solid currentColor; border-radius: 3px; }
.hub-icon-5::after { left: 17px; top: 11px; width: 18px; height: 18px; border-left: 2px solid currentColor; border-top: 2px solid currentColor; transform: rotate(45deg); }
.hub-icon-6::before { left: 11px; top: 11px; width: 30px; height: 30px; border: 6px solid currentColor; border-radius: 50%; }
.hub-icon-6::after { left: 22px; top: 22px; width: 8px; height: 8px; border-radius: 50%; background: var(--white); }
.hub-icon-7::before { left: 15px; top: 10px; width: 22px; height: 28px; border: 2px solid currentColor; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); }
.hub-icon-7::after { left: 23px; top: 18px; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.hub-feature:nth-child(2n) .hub-icon { background: var(--sky); color: var(--primary-dark); }
.hub-feature:nth-child(3n) .hub-icon { background: var(--coral-soft); color: var(--coral); }
.hub-feature:nth-child(4n) .hub-icon { background: var(--accent-soft); color: #a96c08; }
.hub-feature h3 {
  margin: auto 0 10px;
  font-size: clamp(17px, 1.45vw, 21px);
  letter-spacing: -.025em;
  line-height: 1.55;
  word-break: normal;
}
.hub-feature p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.9; }
.hub-feature:nth-child(odd) { background: #fbfeff; }
.hub-feature-1, .hub-feature-2, .hub-feature-6, .hub-feature-7 { grid-column: span 6; }
.hub-feature-3, .hub-feature-4, .hub-feature-5 { grid-column: span 4; }
.hub-feature-1 { min-height: 232px; }
.hub-feature-1 .hub-number, .hub-feature-7 .hub-number, .hub-feature-7 .hub-code { color: var(--primary-dark); font-size: 20px; }
.hub-feature-1 h3 { max-width: none; font-size: clamp(17px, 1.45vw, 21px); }
.hub-feature-1 p, .hub-feature-3 p, .hub-feature-4 p, .hub-feature-7 p { color: var(--muted); }
.hub-feature-7 h3 { color: var(--ink); }
.hub-swipe-hint { display: none; }

.features { background: var(--paper); }
.feature-heading { display: block; }
.feature-heading h2 { max-width: none; white-space: nowrap; }
.feature-heading > p:last-child { max-width: 720px; margin: 22px 0 0; color: var(--muted); font-size: 16px; line-height: 1.9; }
.feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 46px; margin-top: 54px; border-top: 1px solid var(--line); }
.feature-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  column-gap: 18px;
  min-height: 210px;
  padding: 28px clamp(20px, 3vw, 34px);
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}
.feature-top { grid-column: 1 / -1; display: flex; align-items: center; justify-content: flex-start; gap: 12px; margin-bottom: 22px; }
.feature-top span { color: var(--primary-dark); font-family: Arial, sans-serif; font-size: 21px; font-weight: 700; }
.feature-top small { padding: 0; border-radius: 0; background: transparent; color: var(--muted); font-size: 12px; font-weight: 700; }
.feature-icon { grid-column: 1; grid-row: 2 / 4; margin: 0; }
.feature-icon-01::before { left: 12px; top: 12px; width: 28px; height: 28px; border: 3px solid currentColor; border-right-color: transparent; border-radius: 50%; }
.feature-icon-01::after { right: 8px; top: 12px; width: 0; height: 0; border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-left: 8px solid currentColor; transform: rotate(-20deg); }
.feature-icon-02::before, .feature-icon-02::after { width: 25px; height: 18px; border: 2px solid currentColor; border-radius: 6px; }
.feature-icon-02::before { left: 9px; top: 11px; }
.feature-icon-02::after { right: 8px; bottom: 10px; background: var(--white); }
.feature-icon-03::before, .feature-icon-03::after { top: 15px; width: 19px; height: 19px; border: 3px solid currentColor; border-radius: 50%; }
.feature-icon-03::before { left: 8px; }
.feature-icon-03::after { right: 8px; }
.feature-icon-04::before { left: 24px; top: 9px; width: 4px; height: 34px; border-radius: 3px; background: currentColor; }
.feature-icon-04::after { left: 9px; top: 24px; width: 34px; height: 4px; border-radius: 3px; background: currentColor; }
.feature-icon-04 i::before { left: 12px; top: 12px; width: 6px; height: 6px; border-radius: 50%; background: currentColor; box-shadow: 22px 22px 0 currentColor; }
.feature-icon-05::before { left: 13px; top: 15px; width: 26px; height: 16px; border-left: 4px solid currentColor; border-bottom: 4px solid currentColor; transform: rotate(-45deg); }
.feature-icon-06::before { left: 12px; bottom: 12px; width: 6px; height: 14px; border-radius: 3px 3px 0 0; background: currentColor; box-shadow: 11px -8px 0 currentColor, 22px -17px 0 currentColor; }
.feature-card:nth-child(2) .feature-icon { background: var(--coral-soft); color: var(--coral); }
.feature-card:nth-child(3) .feature-icon { background: var(--accent-soft); color: #a96c08; }
.feature-card:nth-child(4) .feature-icon { background: var(--sky); color: var(--primary-dark); }
.feature-card:nth-child(5) .feature-icon { background: var(--mint); color: #3a9c75; }
.feature-card:nth-child(6) .feature-icon { background: #f1ebff; color: #8062ca; }
.feature-card h3 { grid-column: 2; grid-row: 2; margin: 0 0 8px; font-size: 19px; letter-spacing: -.02em; line-height: 1.6; }
.feature-card > p { grid-column: 2; grid-row: 3; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.9; }

.cycle-section {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: center;
  gap: clamp(50px, 8vw, 100px);
  background: var(--primary-soft);
}
.cycle-copy > p:not(.section-label) { max-width: 520px; margin: 26px 0 0; color: var(--muted); font-size: 16px; line-height: 2; }
.cycle-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.cycle-tags span { padding: 7px 10px; border: 1px solid #c7e4e8; border-radius: 999px; background: var(--white); color: var(--primary-dark); font-size: 12px; font-weight: 700; }
.cycle-visual {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1;
  margin: 0 auto;
}
.cycle-visual::before {
  position: absolute;
  inset: 14%;
  border: 1px solid #8fd5df;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  content: "";
}
.cycle-center {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: flex;
  width: 136px;
  height: 136px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 10px solid rgba(255,255,255,.78);
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  text-align: center;
  transform: translate(-50%, -50%);
}
.cycle-center small { font-size: 10px; font-weight: 700; }
.cycle-center strong { margin-top: 5px; font-family: Arial, sans-serif; font-size: 15px; letter-spacing: .04em; }
.cycle-step {
  position: absolute;
  z-index: 3;
  display: flex;
  width: 172px;
  min-height: 108px;
  flex-direction: column;
  justify-content: center;
  padding: 16px 18px;
  border: 1px solid #c6e4e8;
  border-top: 3px solid var(--primary);
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(8,127,145,.08);
}
.cycle-step small { color: var(--primary-dark); font-family: Arial, sans-serif; font-size: 12px; font-weight: 700; }
.cycle-step strong { margin: 7px 0 4px; font-size: 17px; }
.cycle-step span { color: var(--muted); font-size: 13px; line-height: 1.7; }
.step-one { left: 50%; top: 0; transform: translateX(-50%); }
.step-two { right: 0; top: 50%; transform: translateY(-50%); }
.step-three { bottom: 0; left: 50%; transform: translateX(-50%); }
.step-four { left: 0; top: 50%; transform: translateY(-50%); }
.cycle-arrow {
  position: absolute;
  z-index: 1;
  display: block;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 9px solid var(--primary);
}
.arrow-one { right: 18%; top: 21%; transform: rotate(42deg); }
.arrow-two { right: 18%; bottom: 21%; transform: rotate(132deg); }
.arrow-three { left: 18%; bottom: 21%; transform: rotate(222deg); }
.arrow-four { left: 18%; top: 21%; transform: rotate(312deg); }

.bonus { background: var(--white); }
.bonus-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: clamp(45px, 7vw, 90px);
  padding: clamp(38px, 5vw, 68px);
  border: 1px solid #f1d69d;
  border-radius: 6px;
  background: var(--accent-soft);
}
.bonus-badge {
  position: absolute;
  right: 24px;
  top: 24px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}
.bonus-copy > p:last-child { margin: 26px 0 0; color: var(--muted); font-size: 16px; line-height: 2; }
.bonus-card ul { align-self: end; margin: 0; padding: 0; border-top: 1px solid #e4d3af; list-style: none; }
.bonus-card li { display: flex; gap: 20px; padding: 15px 0; border-bottom: 1px solid #e4d3af; font-size: 14px; font-weight: 600; }
.bonus-card li span { color: var(--primary-dark); font-family: Arial, sans-serif; font-size: 12px; font-weight: 700; }

.philosophy { background: var(--coral-soft); color: var(--ink); }
.philosophy .section-label.light { color: var(--primary-dark); }
.philosophy blockquote {
  max-width: none;
  margin: 34px 0 64px;
  font-size: clamp(32px, 3.25vw, 44px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: 1.3;
  line-break: strict;
  text-wrap: balance;
  word-break: normal;
  white-space: nowrap;
}
.philosophy blockquote > span:first-child { display: none; }
.lime { color: var(--primary); text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: .16em; }
.reason-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 1080px; }
.reason-grid > div { min-height: 165px; padding: 24px 0 0; border: 0; border-top: 2px solid var(--primary); border-radius: 0; background: transparent; }
.reason-grid span { color: var(--primary-dark); font-family: Arial, sans-serif; font-size: 12px; font-weight: 700; }
.reason-grid strong { display: block; margin-top: 36px; font-size: clamp(15px, 1.35vw, 19px); line-height: 1.7; }
.philosophy-note { max-width: 720px; margin: 48px 0 0; padding-left: 20px; border-left: 2px solid var(--primary); color: var(--muted); font-size: 16px; line-height: 2.1; }

.members { background: var(--paper); }
.members-heading { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(45px, 7vw, 85px); align-items: end; }
.members-heading .section-label { grid-column: 1 / -1; }
.members-heading > p:last-child { margin: 0 0 8px; color: var(--muted); font-size: 16px; line-height: 1.9; }
.member-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 54px; }
.member-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.member-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: 0 14px 34px rgba(8,185,212,.13); }
.member-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--primary-soft);
}
.member-photo img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.member-card:hover .member-photo img { transform: scale(1.03); }
.member-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background: var(--accent-soft);
  color: var(--primary);
  font-size: 42px;
  font-weight: 800;
}
.member-card-body { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; min-height: 132px; padding: 20px; }
.member-card-body > .arrow-icon { margin-top: 4px; color: var(--primary); }
.member-text { display: flex; min-width: 0; flex-direction: column; gap: 6px; }
.member-text strong { font-size: 17px; }
.member-text > span { min-height: 3.4em; color: var(--muted); font-size: 14px; line-height: 1.7; }
.member-text small { color: var(--primary-dark); font-size: 12px; font-weight: 600; }
.reel-showcase {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(340px, 1fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
  margin-top: 72px;
  padding: clamp(30px, 5vw, 64px);
  overflow: hidden;
  border: 1px solid #ccebef;
  border-radius: 8px;
  background: linear-gradient(135deg, #f4fcfd 0%, #fff 56%);
}
.reel-kicker { display: flex; align-items: center; gap: 9px; margin: 0 0 24px; color: var(--primary-dark); font-family: Arial, sans-serif; font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.reel-kicker > span { position: relative; width: 18px; height: 18px; border: 2px solid var(--primary); border-radius: 5px; }
.reel-kicker > span::before { position: absolute; left: 4px; top: 4px; width: 6px; height: 6px; border: 2px solid var(--primary); border-radius: 50%; content: ""; }
.reel-kicker > span::after { position: absolute; right: 2px; top: 2px; width: 3px; height: 3px; border-radius: 50%; background: var(--primary); content: ""; }
.reel-copy h3 { margin: 0; font-size: clamp(30px, 3.4vw, 46px); font-weight: 800; letter-spacing: -.045em; line-height: 1.38; }
.reel-description { max-width: 420px; margin: 26px 0 0; color: var(--muted); font-size: 15px; line-height: 2; }
.reel-controls { display: flex; align-items: center; gap: 13px; margin-top: 32px; }
.reel-controls button { display: grid; place-items: center; width: 42px; height: 42px; padding: 0; border: 1px solid #b9e4e9; border-radius: 50%; background: var(--white); color: var(--primary-dark); cursor: pointer; transition: background .2s, border-color .2s, color .2s; }
.reel-controls button:hover { border-color: var(--primary); background: var(--primary); color: var(--white); }
.reel-controls button i { width: 9px; height: 9px; border-bottom: 2px solid currentColor; border-left: 2px solid currentColor; transform: rotate(45deg); }
.reel-controls button:last-child i { transform: rotate(225deg); }
.reel-controls > span { min-width: 62px; color: var(--muted); font-family: Arial, sans-serif; font-size: 11px; text-align: center; }
.reel-controls > span strong { color: var(--ink); font-size: 16px; }
.reel-profile-link { display: inline-flex; align-items: center; gap: 15px; margin-top: 28px; color: var(--primary-dark); font-size: 14px; font-weight: 800; }
.reel-profile-link .arrow-icon { color: var(--primary); }
.reel-stage { position: relative; width: min(100%, 430px); justify-self: end; padding: 10px; border-radius: 7px; background: var(--ink); box-shadow: 18px 22px 0 var(--primary-soft); }
.reel-frame { overflow: hidden; min-height: 590px; border-radius: 4px; background: var(--white); }
.reel-frame iframe { display: block; width: 100%; height: 590px; border: 0; background: var(--white); }
.reel-stage-meta { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 12px 3px 2px; color: var(--white); font-family: Arial, sans-serif; font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.reel-stage-meta > div { display: flex; gap: 4px; }
.reel-stage-meta i { width: 12px; height: 2px; border-radius: 99px; background: rgba(255,255,255,.28); }
.reel-stage-meta i.active { width: 24px; background: var(--primary); }

.entry {
  display: grid;
  grid-template-columns: .82fr 1fr 1.08fr;
  gap: 16px;
  background: var(--white);
}
.entry-head { padding-right: 3vw; }
.entry-head > p:last-child { margin: 26px 0 0; color: var(--muted); font-size: 16px; line-height: 2; }
.price-card, .steps-card { padding: clamp(26px, 3vw, 40px); border: 1px solid var(--line); border-radius: 5px; background: var(--white); }
.price-card > p { margin: 0; color: var(--primary-dark); font-size: 13px; font-weight: 700; }
.price { display: flex; align-items: flex-end; gap: 8px; margin: 38px 0 44px; }
.price strong { color: var(--primary); font-family: Arial, sans-serif; font-size: clamp(46px, 4.6vw, 66px); letter-spacing: -.07em; line-height: .85; }
.price > span { font-size: 14px; font-weight: 600; line-height: 1.5; }
.price-card ul { margin: 0; padding: 0; list-style: none; }
.price-card li { padding: 14px 0 14px 22px; border-top: 1px solid var(--line); font-size: 14px; line-height: 1.65; }
.price-card li::before { content: "✓"; margin-left: -22px; margin-right: 10px; color: var(--primary); }
.steps-card h3 { margin: 0 0 24px; font-size: 19px; }
.steps-card ol { margin: 0 0 26px; padding: 0; list-style: none; }
.steps-card li { display: grid; grid-template-columns: 36px 1fr; gap: 10px; padding: 15px 0; border-top: 1px solid var(--line); }
.steps-card li > span { color: var(--primary-dark); font-family: Arial, sans-serif; font-size: 12px; font-weight: 700; }
.steps-card li p { display: flex; flex-direction: column; gap: 5px; margin: 0; }
.steps-card li strong { font-size: 15px; }
.steps-card li strong .line-mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #06c755;
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(6, 199, 85, .2);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.steps-card li strong .line-mini-button:hover {
  background: #05ad4a;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(6, 199, 85, .26);
}
.steps-card li small { color: var(--muted); font-size: 12px; }
.button-lime { width: 100%; background: var(--primary); color: var(--white); }
.button-lime:hover { background: var(--primary-dark); color: var(--white); }
.support-link { margin: 14px 0 0; color: var(--muted); text-align: center; font-size: 12px; }
.support-link a { color: var(--primary-dark); text-decoration: underline; }

.final-cta {
  position: relative;
  display: flex;
  min-height: 500px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 90px 24px;
  overflow: hidden;
  background: var(--primary-soft);
  text-align: center;
}
.final-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  color: rgba(8, 185, 212, .09);
  font-family: Arial, sans-serif;
  font-size: clamp(180px, 32vw, 480px);
  font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}
.final-cta > p, .final-cta h2, .final-cta .button { position: relative; z-index: 1; }
.final-cta > p { margin: 0; color: var(--primary-dark); font-size: 13px; font-weight: 700; }
.final-cta h2 { margin: 18px 0 34px; }

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 110px;
  padding: 24px max(24px, calc((100vw - 1200px) / 2));
  border-top: 1px solid var(--line);
  background: var(--white);
}
.footer-links { display: flex; gap: 26px; color: var(--muted); font-size: 12px; }
footer > p { justify-self: end; color: var(--muted); font-family: Arial, sans-serif; font-size: 12px; }
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 55;
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  border: 1px solid #bdeff4;
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  color: var(--primary-dark);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  box-shadow: 0 10px 30px rgba(8, 127, 145, .14);
  backdrop-filter: blur(10px);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.back-to-top:hover {
  border-color: var(--primary);
  background: var(--primary-soft);
  color: var(--primary-dark);
  transform: translateY(-3px);
}
.back-to-top-arrow {
  width: 10px;
  height: 10px;
  margin-top: 4px;
  border-top: 2px solid var(--primary);
  border-left: 2px solid var(--primary);
  transform: rotate(45deg);
}
.mobile-sticky { display: none; }

@media (max-width: 1020px) {
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { max-width: 760px; }
  .hero-visual { max-width: 760px; }
  .intro, .fit-section, .private-hub, .cycle-section { grid-template-columns: 1fr; gap: 44px; }
  .intro-body { padding-top: 0; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .member-grid { grid-template-columns: repeat(2, 1fr); }
  .entry { grid-template-columns: 1fr 1fr; }
  .entry-head { grid-column: 1 / -1; margin-bottom: 24px; }
}

@media (max-width: 760px) {
  .site-header { min-height: 62px; grid-template-columns: 1fr auto; padding: 0 18px; }
  .brand-wordmark {
    gap: .24em;
    font-size: clamp(19px, 5.3vw, 21px);
    font-weight: 950;
    letter-spacing: -.055em;
    -webkit-text-stroke: .25px var(--ink);
  }
  .brand-word strong {
    font-size: 1.2em;
    -webkit-text-stroke: .25px var(--primary);
  }
  .desktop-nav { display: none; }
  .header-cta { min-height: 38px; padding: 0 16px; }
  .hero { gap: 40px; padding: 68px 20px 72px; }
  .eyebrow, .section-label { margin-bottom: 18px; font-size: 12px; }
  .hero h1 { font-size: clamp(34px, 10vw, 44px); line-height: 1.3; }
  .hero-lead { margin-top: 24px; line-height: 1.9; }
  .hero-lead br { display: none; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; margin-top: 30px; }
  .button { width: 100%; min-height: 56px; }
  .text-link { width: max-content; }
  .hero-diagram { padding-top: 18px; }
  .hero-diagram-head p { font-size: 13px; }
  .hero-diagram-head span { font-size: 9px; }
  .hero-network { min-height: 380px; }
  .hero-core { width: 116px; height: 116px; border-width: 8px; }
  .hero-core strong { font-size: 27px; }
  .hero-core span { font-size: 10px; }
  .hero-node { width: 142px; min-height: 92px; padding: 12px 2px; }
  .hero-node-one { width: 166px; }
  .hero-node small { font-size: 9px; }
  .hero-node strong { margin-top: 7px; font-size: 13px; line-height: 1.65; }
  .hero-diagram-foot { font-size: 11px; }
  .value-strip {
    display: grid;
    grid-template-columns: repeat(5, auto);
    justify-content: space-between;
    gap: 4px;
    min-height: 66px;
    padding: 16px 14px;
    font-size: 12px;
  }
  .value-strip i { display: none; }
  .section, .fit-section, .cycle-section, .philosophy, .entry { padding: 72px 20px; }
  .section-heading h2, .intro h2, .fit-section h2, .private-hub h2, .cycle-section h2, .bonus h2, .members h2, .entry h2, .final-cta h2 { font-size: clamp(29px, 8.5vw, 37px); line-height: 1.42; }
  .tmc-meaning { padding: 16px; }
  .tmc-meaning-grid { grid-template-columns: 1fr; }
  .tmc-meaning-grid > div { min-height: 116px; gap: 16px; padding: 16px; }
  .tmc-meaning-grid > div + div { border-top: 1px solid #cddfe2; border-left: 0; }
  .tmc-meaning-grid strong br { display: none; }
  .stats-grid { grid-template-columns: 1fr; }
  .stats-grid > div { padding: 20px 0; }
  .stats-grid > div + div { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .fit-item { grid-template-columns: 30px 1fr 28px; gap: 12px; min-height: 88px; }
  .feature-grid, .cycle-visual, .reason-grid, .member-grid { grid-template-columns: 1fr; }
  .hub-features {
    display: flex;
    gap: 12px;
    margin-right: -20px;
    padding-right: 20px;
    overflow-x: auto;
    border: 0;
    background: transparent;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .hub-features::-webkit-scrollbar { display: none; }
  .hub-feature {
    grid-column: auto;
    min-height: 252px;
    flex: 0 0 min(82vw, 330px);
    padding: 24px;
    border: 1px solid var(--line);
    scroll-snap-align: start;
  }
  .hub-feature-top { flex-direction: row; align-items: center; }
  .hub-code { display: block; }
  .hub-icon { width: 46px; height: 46px; margin: 22px 0 18px; }
  .hub-feature h3 { margin: 0 0 10px; }
  .hub-feature-1 { min-height: 252px; }
  .hub-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin: 12px 0 0;
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
  }
  .hub-swipe-hint span { font-family: Arial, sans-serif; font-size: 15px; }
  .feature-heading, .members-heading { grid-template-columns: 1fr; gap: 20px; }
  .feature-heading .section-label, .members-heading .section-label { grid-column: auto; }
  .feature-grid, .member-grid { margin-top: 38px; }
  .member-card { display: grid; grid-template-columns: 112px 1fr; }
  .member-photo { height: 100%; min-height: 132px; aspect-ratio: 1; }
  .member-card-body { min-height: 132px; padding: 16px; }
  .member-text > span { min-height: auto; }
  .feature-card { min-height: 0; padding: 24px 18px; }
  .cycle-visual { width: 100%; max-width: 370px; margin: 8px auto 0; }
  .cycle-visual::before { inset: 16%; }
  .cycle-center { width: 96px; height: 96px; border-width: 7px; }
  .cycle-center small { font-size: 10px; }
  .cycle-center strong { font-size: 12px; }
  .cycle-step { width: 132px; min-height: 90px; padding: 10px 12px; }
  .cycle-step small { font-size: 9px; }
  .cycle-step strong { margin: 4px 0 2px; font-size: 15px; }
  .cycle-step span { font-size: 11px; line-height: 1.5; }
  .cycle-arrow { border-top-width: 4px; border-bottom-width: 4px; border-left-width: 7px; }
  .bonus-card { grid-template-columns: 1fr; gap: 40px; padding: 52px 20px 28px; }
  .bonus-badge { right: 18px; top: 16px; }
  .philosophy blockquote { margin: 28px 0 48px; font-size: clamp(32px, 9.5vw, 42px); line-height: 1.42; }
  .reason-grid > div { min-height: 116px; padding-top: 18px; }
  .reason-grid strong { margin-top: 24px; }
  .philosophy-note { margin-top: 38px; padding-left: 16px; }
  .reel-showcase { grid-template-columns: 1fr; gap: 36px; margin-top: 48px; padding: 28px 16px 24px; }
  .reel-copy h3 { font-size: 30px; }
  .reel-description { margin-top: 20px; }
  .reel-stage { width: 100%; justify-self: stretch; padding: 7px; box-shadow: 9px 12px 0 var(--primary-soft); }
  .reel-frame, .reel-frame iframe { min-height: 570px; height: 570px; }
  .entry { grid-template-columns: 1fr; }
  .entry-head { grid-column: auto; margin-bottom: 10px; padding-right: 0; }
  .final-cta { min-height: 440px; padding: 76px 20px; }
  footer { grid-template-columns: 1fr; gap: 24px; padding: 38px 20px 96px; }
  .footer-links { align-items: flex-start; flex-direction: column; gap: 12px; }
  footer > p { justify-self: start; }
  .mobile-sticky {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 18px;
    border-radius: 8px;
    background: var(--primary);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(8, 127, 145, .22);
  }
  .back-to-top {
    right: 18px;
    bottom: 82px;
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button, .member-card, .back-to-top { transition: none; }
}

/* Editorial pass: TMC is shown through its weekly practice, not abstract tech motifs. */
.site-header {
  background: var(--white);
  backdrop-filter: none;
}

.hero {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  min-height: 600px;
  text-align: center;
}

.hero-copy {
  display: flex;
  width: 100%;
  max-width: 1200px;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  max-width: none;
  font-size: clamp(38px, 4vw, 54px);
  letter-spacing: -.045em;
  line-height: 1.22;
  white-space: nowrap;
}

.hero-lead {
  max-width: 650px;
  margin-right: auto;
  margin-left: auto;
}

.hero-actions {
  justify-content: center;
}

.reel-profile-frame,
.reel-profile-frame iframe {
  min-height: 620px;
  height: 620px;
}

.header-cta,
.button,
.line-mini-button,
.mobile-sticky,
.cycle-tags span,
.hub-lead span {
  border-radius: 0;
  box-shadow: none;
}

.button:hover,
.header-cta:hover,
.member-card:hover {
  transform: none;
  box-shadow: none;
}

.section-heading h2,
.intro h2,
.fit-section h2,
.private-hub h2,
.cycle-section h2,
.bonus h2,
.members h2,
.entry h2,
.final-cta h2 {
  font-size: clamp(31px, 3.3vw, 44px);
}

.hub-grid,
.feature-grid,
.member-grid {
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.hub-feature,
.feature-card,
.member-card,
.reel-section,
.price-card,
.steps-card {
  border-radius: 0;
  box-shadow: none;
}

.hub-feature,
.feature-card,
.member-card {
  border-top: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 0;
}

.reel-section {
  background: var(--white);
}

.reel-stage {
  border-radius: 0;
  box-shadow: 10px 10px 0 var(--primary-soft);
}

.final-mark {
  display: none;
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero h1 {
    white-space: normal;
  }

  .feature-heading h2 {
    white-space: normal;
  }

  .philosophy blockquote {
    white-space: normal;
  }
}

@media (max-width: 620px) {
  .hero h1 {
    font-size: clamp(27px, 7.2vw, 30px);
    line-height: 1.32;
  }

  .hero-lead br {
    display: none;
  }

  .mobile-sticky {
    box-shadow: none;
  }
}

/* MY MEDIA direction: black editorial surfaces with a restrained yellow accent. */
:root {
  --ink: #edf1f2;
  --paper: #050709;
  --white: #0b0f12;
  --primary: #d8b94e;
  --primary-dark: #d8b94e;
  --primary-soft: #18150a;
  --accent: #d8b94e;
  --accent-soft: #211d0d;
  --coral: #d8b94e;
  --coral-soft: #0d1317;
  --sky: #10161a;
  --mint: #10161a;
  --line: rgba(255, 255, 255, .12);
  --muted: #9aa7ac;
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
}

body {
  background: #050709;
  color: #edf1f2;
}

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

.site-header {
  border-bottom-color: rgba(255, 255, 255, .16);
  background: rgba(5, 7, 9, .96);
  color: #edf1f2;
}

.brand-wordmark {
  color: var(--primary);
  letter-spacing: .02em;
  -webkit-text-stroke: 0;
}

.desktop-nav a {
  color: #c4cdcf;
  font-weight: 500;
}

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

.header-cta,
.button-primary,
.button-lime {
  border: 1px solid var(--primary);
  background: var(--primary);
  color: #050709;
}

.header-cta:hover,
.button-primary:hover,
.button-lime:hover {
  background: transparent;
  color: #edf1f2;
}

.hero {
  min-height: 620px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  background: #050709;
}

.eyebrow,
.section-label,
.section-label.light {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: .13em;
}

.hero h1,
.section-heading h2,
.intro h2,
.fit-section h2,
.private-hub h2,
.cycle-section h2,
.bonus h2,
.members h2,
.entry h2,
.final-cta h2,
.philosophy blockquote,
.reel-copy h3 {
  font-family: var(--serif);
  font-weight: 400;
}

.hero h1 {
  font-size: clamp(38px, 3.45vw, 48px);
  letter-spacing: -.045em;
  line-height: 1.35;
}

.hero h1 .accent,
.intro-lead strong,
.lime {
  color: var(--primary);
}

.hero-lead {
  color: #c3cccf;
  font-weight: 400;
}

.text-link {
  border-bottom-color: var(--primary);
  color: #edf1f2;
}

.value-strip {
  min-height: 72px;
  border-bottom: 1px solid rgba(216, 185, 78, .42);
  background: #0b0f12;
  color: #d8dde0;
  font-weight: 500;
}

.value-strip i {
  background: var(--primary);
}

.intro,
.features,
.members {
  background: #050709;
}

.fit-section,
.cycle-section,
.philosophy,
.final-cta {
  background: #0b0f12;
  color: #edf1f2;
}

.private-hub,
.bonus,
.entry,
footer {
  background: #080b0d;
  color: #edf1f2;
}

.intro-body > p,
.fit-copy > p:last-child,
.hub-description,
.feature-heading > p:last-child,
.cycle-copy > p:not(.section-label),
.bonus-copy > p:last-child,
.members-heading > p:last-child,
.reel-description,
.entry-head > p:last-child,
.philosophy-note {
  color: var(--muted);
}

.tmc-meaning,
.tmc-meaning-grid > div + div,
.fit-list,
.fit-item,
.bonus-card ul,
.bonus-card li {
  border-color: var(--line);
}

.tmc-meaning-grid small,
.tmc-meaning > p,
.fit-item > span,
.hub-number,
.hub-code,
.feature-top span,
.bonus-card li span,
.reason-grid span,
.price-card > p,
.steps-card li > span,
.reel-kicker,
.reel-profile-link,
.support-link a {
  color: var(--primary);
}

.hub-keywords span,
.cycle-tags span {
  border-color: rgba(216, 185, 78, .42);
  background: transparent;
  color: var(--primary);
}

.hub-features,
.hub-grid,
.feature-grid,
.member-grid {
  border-color: var(--line);
  background: transparent;
}

.hub-feature,
.hub-feature:nth-child(odd),
.feature-card,
.member-card,
.price-card,
.steps-card,
.bonus-card,
.reel-showcase,
.reel-section {
  border-color: var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hub-feature,
.feature-card,
.member-card {
  border-right-color: var(--line);
  border-bottom-color: var(--line);
}

.hub-icon,
.feature-icon,
.hub-feature:nth-child(2n) .hub-icon,
.hub-feature:nth-child(3n) .hub-icon,
.hub-feature:nth-child(4n) .hub-icon,
.feature-card:nth-child(2) .feature-icon,
.feature-card:nth-child(3) .feature-icon,
.feature-card:nth-child(4) .feature-icon,
.feature-card:nth-child(5) .feature-icon,
.feature-card:nth-child(6) .feature-icon {
  border: 1px solid rgba(216, 185, 78, .34);
  border-radius: 0;
  background: #18150a;
  color: var(--primary);
}

.hub-feature p,
.hub-feature-1 p,
.hub-feature-3 p,
.hub-feature-4 p,
.hub-feature-7 p,
.feature-card > p,
.member-text > span,
.member-text small,
.steps-card li small,
.support-link,
.footer-links,
footer > p {
  color: var(--muted);
}

.feature-icon-02::after {
  background: #18150a;
}

.cycle-visual::before,
.cycle-center,
.cycle-step {
  border-color: rgba(216, 185, 78, .45);
}

.cycle-center,
.cycle-step {
  background: #050709;
  color: #edf1f2;
}

.bonus-card {
  border-top: 1px solid rgba(216, 185, 78, .55);
}

.bonus-badge {
  border: 1px solid var(--primary);
  border-radius: 0;
  background: transparent;
  color: var(--primary);
}

.philosophy blockquote {
  color: #edf1f2;
}

.lime {
  text-decoration-color: var(--primary);
}

.reason-grid > div {
  border-top-color: var(--primary);
}

.member-card:hover {
  border-color: rgba(216, 185, 78, .72);
  box-shadow: none;
}

.member-photo,
.member-placeholder {
  background: #10161a;
}

.reel-showcase {
  border-top-color: rgba(216, 185, 78, .55);
}

.reel-stage {
  border: 1px solid rgba(216, 185, 78, .58);
  border-radius: 0;
  background: #050709;
  box-shadow: 10px 10px 0 #18150a;
}

.reel-frame,
.reel-frame iframe {
  border-radius: 0;
}

.reel-controls button {
  border-color: rgba(216, 185, 78, .45);
  border-radius: 0;
  background: transparent;
  color: var(--primary);
}

.reel-controls button:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #050709;
}

.reel-controls > span strong,
.hub-feature-7 h3 {
  color: #edf1f2;
}

.price strong,
.price-card li::before,
.member-card-body > .arrow-icon,
.reel-profile-link .arrow-icon {
  color: var(--primary);
}

.steps-card li strong .line-mini-button {
  border-radius: 0;
  box-shadow: none;
}

.final-cta {
  border-top: 1px solid rgba(216, 185, 78, .35);
}

.final-cta > p {
  color: var(--primary);
}

footer {
  border-top-color: var(--line);
}

.footer-brand .brand-wordmark {
  color: var(--primary);
}

.back-to-top {
  border-color: rgba(216, 185, 78, .55);
  border-radius: 0;
  background: rgba(5, 7, 9, .94);
  color: var(--primary);
  box-shadow: none;
}

.back-to-top:hover {
  border-color: var(--primary);
  background: #18150a;
  color: var(--primary);
}

@media (max-width: 760px) {
  .brand-wordmark {
    -webkit-text-stroke: 0;
  }

  .hero {
    padding-top: 74px;
    padding-bottom: 78px;
  }

  .hero h1 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .value-strip {
    border-top: 1px solid rgba(216, 185, 78, .28);
  }

  .hub-feature {
    border-color: var(--line);
    background: #0b0f12;
  }

  .reel-stage {
    box-shadow: 7px 7px 0 #18150a;
  }

  .mobile-sticky {
    border: 1px solid var(--primary);
    border-radius: 0;
    background: var(--primary);
    color: #050709;
  }
}
.back-to-top{position:fixed;right:24px;bottom:24px;z-index:55;display:inline-flex;width:56px;height:56px;align-items:center;justify-content:center;flex-direction:column;gap:4px;border:1px solid #bdeff4;border-radius:18px;background:#fffffff5;color:var(--primary-dark);font-family:Arial,sans-serif;font-size:9px;font-weight:800;letter-spacing:.12em;box-shadow:0 10px 30px #087f9124;backdrop-filter:blur(10px);transition:transform .2s ease,border-color .2s ease,background .2s ease}.back-to-top:hover{border-color:var(--primary);background:var(--primary-soft);color:var(--primary-dark);transform:translateY(-3px)}.back-to-top-arrow{width:10px;height:10px;margin-top:4px;border-top:2px solid var(--primary);border-left:2px solid var(--primary);transform:rotate(45deg)}@media(max-width:720px){.back-to-top{right:18px;bottom:82px;width:50px;height:50px;border-radius:16px}}@media(prefers-reduced-motion:reduce){.back-to-top{transition:none}}.steps-card li strong a{color:var(--primary-dark);text-decoration:underline;text-decoration-color:var(--primary);text-decoration-thickness:2px;text-underline-offset:4px;transition:color .2s}.steps-card li strong a:hover{color:var(--primary)}.steps-card li strong .line-mini-button{display:inline-flex;align-items:center;margin-right:5px;padding:5px 10px;border-radius:999px;background:#06c755;color:var(--white);font-family:Arial,sans-serif;font-size:11px;font-weight:800;letter-spacing:.02em;line-height:1;text-decoration:none;box-shadow:0 4px 12px #06c75533;transition:background .2s,transform .2s,box-shadow .2s}.steps-card li strong .line-mini-button:hover{background:#05ad4a;color:var(--white);transform:translateY(-1px);box-shadow:0 6px 16px #06c75542}.tmc-meaning-grid .tmc-expansion b{font-size:1.35em;font-weight:900;letter-spacing:.01em;line-height:1}