:root {
  --black: #0b0b0b;
  --charcoal: #1a1a1a;
  --ink: #171717;
  --gray: #171717;
  --light-gray: #eeeeec;
  --ivory: #f7f4ee;
  --white: #ffffff;
  --red: #8b1e1e;
  --red-dark: #640d0d;
  --gold: #c9ccd0;
  --gold-deep: #5f6367;
  --line: #d8dadd;
  /* T2S 赤系トークン（FV由来で統一）
     --t2s-red-main: FV申込CTA（.hero-cta グラデ）のビビッド赤の実値
     --t2s-red-deep: 見出しのえんじ（既存 --red と同値）
     --t2s-red-bordeaux: mirror-section 背景（既存 --red-dark と同値）
     --t2s-red-bright: 暗背景上のアクセント文字用に main を明度アップ */
  --t2s-red-main: #d51b28;
  --t2s-red-deep: #8b1e1e;
  --t2s-red-bordeaux: #640d0d;
  --t2s-red-bright: #f2555b;
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", Georgia, serif;
  --sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  --display: "Times New Roman", "Yu Mincho", serif;
  --shadow: 0 18px 46px rgba(11, 11, 11, 0.11);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

svg {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  stroke-width: 1.6;
}

h1,
h2,
h3,
p,
dl,
dd,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.48;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  padding: 8px 12px;
  color: var(--white);
  background: var(--red);
  transform: translateY(-150%);
}

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

.container {
  width: min(1180px, calc(100% - 64px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

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

.section-kicker {
  margin-bottom: 20px;
  color: var(--gold-deep);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-kicker::before {
  display: inline-block;
  width: 34px;
  height: 1px;
  margin-right: 12px;
  background: currentColor;
  vertical-align: middle;
  content: "";
}

.section-kicker.light {
  color: var(--gold);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 60px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .section-kicker::after {
  display: inline-block;
  width: 34px;
  height: 1px;
  margin-left: 12px;
  background: currentColor;
  vertical-align: middle;
  content: "";
}

.section-heading h2,
.new-year-copy h2,
.trainer-copy h2,
.mirror-section h2,
.venue-content h2,
.voices-copy h2,
.online-copy h2,
.overview-heading h2,
.briefing-copy h2,
.final-cta-content h2,
.access-copy h2 {
  margin-bottom: 24px;
  font-size: 46px;
}

.section-heading p:last-child,
.new-year-copy .lead,
.trainer-copy > p,
.venue-content > p,
.voices-copy > p,
.online-copy > p,
.briefing-copy > p {
  color: var(--gray);
}

.centered p:last-child {
  margin-right: auto;
  margin-left: auto;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button:focus-visible,
.menu-button:focus-visible,
.voice-tabs button:focus-visible,
summary:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(180, 184, 188, 0.72);
  outline-offset: 3px;
}

.button-primary {
  color: var(--white);
  border-color: #bc342f;
  background: var(--red);
  box-shadow: 0 9px 24px rgba(139, 30, 30, 0.26);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-outline-light {
  color: var(--ink);
  border-color: rgba(180, 184, 188, 0.75);
  background: var(--white);
}

.button-outline-light:hover {
  color: var(--ink);
  border-color: var(--gold-deep);
  background: var(--ivory);
}

.button-outline-dark {
  color: var(--white);
  border-color: var(--gold-deep);
  background: var(--gold-deep);
}

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

.button-small {
  min-height: 42px;
  padding: 9px 18px;
  font-size: 14px;
}

.button-large {
  min-width: 260px;
  min-height: 60px;
  font-size: 18px;
}

.button-wide {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--ink);
  border-bottom: 1px solid rgba(167, 123, 24, 0.3);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(15px);
}

.header-inner {
  display: flex;
  width: min(1440px, calc(100% - 48px));
  height: 76px;
  align-items: center;
  margin-inline: auto;
}

.company-brand {
  display: flex;
  width: 72px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  border-right: 1px solid var(--line);
}

.company-brand img {
  width: 56px;
  height: 32px;
  object-fit: contain;
}

.brand {
  display: inline-flex;
  width: 214px;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.brand-t2s {
  color: var(--gold-deep);
  font-family: var(--display);
  font-size: 32px;
  line-height: 0.95;
}

.brand-sub {
  margin-top: 7px;
  font-family: var(--display);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-left: auto;
  font-size: 14px;
}

.desktop-nav a,
.text-link {
  position: relative;
  padding: 8px 0;
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: 32px;
}

.text-link {
  font-size: 14px;
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero-desktop {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.hero-desktop img {
  width: 100%;
  height: auto;
}

.hero-mobile {
  display: none;
}

.quick-facts {
  position: relative;
  z-index: 4;
  color: var(--white);
  background: var(--charcoal);
}

.quick-facts-inner {
  display: grid;
  width: min(1320px, calc(100% - 48px));
  min-height: 118px;
  grid-template-columns: repeat(3, 1fr) 1.35fr;
  align-items: stretch;
  margin-inline: auto;
}

.quick-fact {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 24px 26px;
  border-right: 1px solid rgba(180, 184, 188, 0.24);
}

.quick-fact svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.quick-fact span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.55;
}

.quick-fact b {
  display: block;
  color: var(--white);
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
}

.quick-cta {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 20px 34px;
  background: var(--red);
  transition: background-color 180ms ease;
}

.quick-cta:hover {
  background: var(--red-dark);
}

.quick-cta span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
}

.quick-cta b {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
}

.new-year-section {
  overflow: hidden;
  color: var(--ink);
  background-color: #F2F4F5;
  background-image:
    linear-gradient(rgba(180, 184, 188, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 184, 188, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
}

.new-year-section::before,
.new-year-section::after {
  position: absolute;
  width: 330px;
  height: 2px;
  background: var(--gold);
  transform: rotate(-18deg);
  opacity: 0.38;
  content: "";
}

.new-year-section::before {
  top: 72px;
  right: -60px;
}

.new-year-section::after {
  right: -12px;
  bottom: 64px;
}

.new-year-layout {
  display: grid;
  grid-template-columns: 190px minmax(0, 760px);
  align-items: center;
  justify-content: center;
  gap: 78px;
}

.new-year-mark {
  display: flex;
  width: 150px;
  height: 150px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--white);
  border: 7px double rgba(255, 255, 255, 0.72);
  background: var(--red);
  box-shadow: 0 14px 34px rgba(139, 30, 30, 0.2);
  transform: rotate(-3deg);
}

.new-year-mark span {
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1.2;
}

.new-year-mark small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--display);
  font-size: 12px;
}

.new-year-copy h2 {
  font-size: 50px;
}

.gold-rule {
  width: 110px;
  height: 3px;
  margin: 30px 0;
  border-top: 1px solid var(--gold-deep);
  border-bottom: 1px solid var(--gold-deep);
}

.new-year-copy .lead {
  max-width: 710px;
}

.new-year-signature {
  margin-top: 32px;
  color: var(--red);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-card {
  position: relative;
  min-width: 0;
  padding: 46px 38px 42px;
  border-right: 1px solid var(--line);
}

.value-card:last-child {
  border-right: 0;
}

.value-card > svg {
  width: 36px;
  height: 36px;
  margin-bottom: 28px;
  color: var(--gold-deep);
}

.card-number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: #e8e3da;
  font-family: var(--display);
  font-size: 50px;
  line-height: 1;
}

.card-en {
  margin-bottom: 9px;
  color: var(--gold-deep);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
}

.value-card h3 {
  margin-bottom: 20px;
  font-size: 25px;
}

.value-card > p:last-child {
  margin: 0;
  color: var(--gray);
  font-size: 14px;
}

.benefits-section {
  background: #F2F4F5;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.benefit-item {
  position: relative;
  min-height: 260px;
  padding: 32px 28px;
  background: var(--white);
}

.benefit-item > span:first-child {
  color: #d1c9bb;
  font-family: var(--display);
  font-size: 16px;
}

.benefit-item > svg {
  display: block;
  width: 32px;
  height: 32px;
  margin: 26px 0 22px;
  color: var(--red);
}

.benefit-item h3 {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 500;
}

.benefit-item p {
  margin: 0;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
}

.growth-diagram {
  display: grid;
  margin-top: 70px;
  grid-template-columns: 145px 1fr;
  align-items: center;
  gap: 25px;
}

.growth-start {
  display: flex;
  width: 138px;
  height: 138px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--white);
  border: 6px double var(--gold);
  border-radius: 50%;
  background: var(--red-dark);
  text-align: center;
}

.growth-start span {
  color: var(--gold);
  font-family: var(--display);
  font-size: 12px;
}

.growth-start strong {
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.45;
}

.growth-steps {
  display: grid;
  min-width: 0;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(6, 1fr);
  list-style: none;
}

.growth-steps li {
  position: relative;
  min-height: 106px;
  padding: 18px 14px;
  border-top: 1px solid var(--gold-deep);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.growth-steps li::after {
  position: absolute;
  top: -5px;
  right: -5px;
  z-index: 2;
  width: 9px;
  height: 9px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--gold-deep);
  content: "";
}

.growth-steps li:last-child::after {
  display: none;
}

.growth-steps b {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-deep);
  font-family: var(--display);
  font-size: 12px;
}

.growth-steps span {
  display: block;
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.55;
}

.growth-steps .is-goal {
  color: var(--white);
  border-bottom-color: var(--red);
  background: var(--red);
}

.growth-steps .is-goal b {
  color: var(--gold);
}

.movie-section {
  color: var(--white);
  background: var(--black);
}

.movie-section::after {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(180, 184, 188, 0.28);
  pointer-events: none;
  content: "";
}

.movie-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 72px;
}

.movie-copy {
  position: relative;
  z-index: 2;
}

.movie-copy h2 {
  margin-bottom: 24px;
  font-size: 40px;
}

.movie-copy > p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.66);
}

.check-list {
  display: grid;
  margin: 32px 0 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.check-list svg {
  color: var(--gold);
}

.video-frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(180, 184, 188, 0.56);
  border-radius: 4px;
  background: #050505;
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.4);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.repeat-section {
  color: var(--white);
  background: var(--charcoal);
}

.repeat-lead {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: center;
  gap: 82px;
}

.repeat-lead h2 {
  margin-bottom: 22px;
  font-size: 46px;
}

.repeat-lead > div:last-child > p:last-child {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.64);
}

.repeat-number {
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
  justify-content: center;
  padding: 34px 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.repeat-number strong {
  color: var(--gold);
  font-family: var(--display);
  font-size: 124px;
  font-weight: 400;
  line-height: 0.8;
}

.repeat-number > span {
  color: var(--gold);
  font-family: var(--display);
  font-size: 42px;
  line-height: 1;
}

.repeat-number small {
  grid-column: 1 / -1;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--display);
  font-size: 12px;
  text-align: center;
}

.repeat-voices {
  display: grid;
  margin-top: 72px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(180, 184, 188, 0.35);
  border-bottom: 1px solid rgba(180, 184, 188, 0.35);
}

.repeat-voices blockquote {
  position: relative;
  margin: 0;
  padding: 34px 28px 32px 48px;
  border-right: 1px solid rgba(180, 184, 188, 0.25);
  font-family: var(--serif);
  font-size: 15px;
}

.repeat-voices blockquote:last-child {
  border-right: 0;
}

.repeat-voices blockquote::before {
  position: absolute;
  top: 24px;
  left: 22px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 40px;
  line-height: 1;
  content: "“";
}

.inline-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 54px;
  gap: 14px;
}

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

.learning-steps {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(10, 1fr);
  align-items: end;
  list-style: none;
}

.learning-steps li {
  display: flex;
  min-width: 0;
  height: 106px;
  justify-content: flex-end;
  flex-direction: column;
  padding: 16px 10px;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  background: var(--charcoal);
}

.learning-steps li:nth-child(2) { height: 118px; }
.learning-steps li:nth-child(3) { height: 130px; }
.learning-steps li:nth-child(4) { height: 142px; }
.learning-steps li:nth-child(5) { height: 154px; }
.learning-steps li:nth-child(6) { height: 166px; }
.learning-steps li:nth-child(7) { height: 178px; }
.learning-steps li:nth-child(8) { height: 190px; }
.learning-steps li:nth-child(9) { height: 202px; }
.learning-steps li:nth-child(10) { height: 214px; background: var(--red); }

.learning-steps b {
  margin-bottom: 12px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 12px;
}

.learning-steps span {
  writing-mode: vertical-rl;
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.3;
}

.learning-result {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  margin-top: 28px;
  color: var(--gray);
  font-family: var(--display);
  font-size: 12px;
}

.learning-result svg {
  color: var(--gold-deep);
}

.learning-result strong {
  color: var(--red);
  font-size: 14px;
}

.trainer-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  padding: 0;
  background: #F2F4F5;
}

.trainer-photo {
  min-height: 740px;
}

.trainer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
}

.trainer-copy {
  display: flex;
  max-width: 680px;
  justify-content: center;
  flex-direction: column;
  padding: 88px 72px;
}

.trainer-copy h2 {
  font-size: 38px;
}

.trainer-name {
  margin: 8px 0 24px;
  color: var(--ink) !important;
  font-family: var(--serif);
  font-size: 30px;
}

.trainer-name span {
  display: block;
  color: var(--gold-deep);
  font-family: var(--sans);
  font-size: 12px;
}

.trainer-stats {
  display: grid;
  margin-top: 32px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trainer-stats div {
  display: flex;
  min-width: 0;
  align-items: flex-end;
  gap: 7px;
  padding: 20px 10px;
  border-right: 1px solid var(--line);
}

.trainer-stats div:last-child {
  border-right: 0;
}

.trainer-stats strong {
  color: var(--red);
  font-family: var(--display);
  font-size: 35px;
  font-weight: 400;
  line-height: 1;
}

.trainer-stats span {
  color: var(--gray);
  font-size: 12px;
  line-height: 1.45;
}

.mirror-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  color: var(--white);
  background: var(--red-dark);
  text-align: center;
}

.mirror-section::before,
.mirror-section::after {
  position: absolute;
  top: 50%;
  width: 23%;
  height: 1px;
  background: rgba(180, 184, 188, 0.7);
  content: "";
}

.mirror-section::before { left: 0; }
.mirror-section::after { right: 0; }

.mirror-section p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.mirror-section h2 {
  margin: 0;
  font-size: 34px;
}

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

.balance-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: 82px;
}

.balance-layout .section-heading {
  margin: 0;
}

.balance-map {
  display: grid;
  aspect-ratio: 1 / 0.78;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 8px;
}

.balance-map > div {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  border: 1px solid var(--line);
  background: var(--ivory);
}

.balance-map > div:nth-child(1),
.balance-map > div:nth-child(3),
.balance-map > div:nth-child(7),
.balance-map > div:nth-child(9) {
  background: var(--white);
}

.balance-map svg {
  width: 25px;
  height: 25px;
  color: var(--gold-deep);
}

.balance-map span {
  font-family: var(--serif);
  font-size: 15px;
}

.balance-map .balance-center {
  grid-column: 2;
  grid-row: 2;
  color: var(--white);
  border: 4px double var(--gold);
  background: var(--red-dark);
}

.balance-center small {
  color: var(--gold);
  font-family: var(--display);
  font-size: 12px;
}

.balance-center strong {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}

.balance-center span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

.program-section {
  background: #F2F4F5;
}

.day-switch {
  display: grid;
  max-width: 860px;
  margin: -10px auto 54px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.day-switch > span {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border: 1px solid var(--line);
  background: var(--white);
  font-family: var(--serif);
  font-size: 14px;
}

.day-switch b {
  color: var(--gold-deep);
  font-family: var(--display);
  font-size: 12px;
}

.day-switch > svg {
  color: var(--red);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.program-card {
  position: relative;
  min-height: 370px;
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold-deep);
  background: var(--white);
}

.program-icon {
  display: flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  color: var(--white);
  background: var(--charcoal);
}

.program-icon svg {
  width: 26px;
  height: 26px;
}

.program-card > p {
  margin-bottom: 13px;
  color: var(--gold-deep);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
}

.program-card > p b {
  font-size: 18px;
  font-weight: 400;
}

.program-card h3 {
  min-height: 76px;
  margin-bottom: 18px;
  font-size: 21px;
}

.program-card > span {
  color: var(--gray);
  font-size: 14px;
}

.opening-movies {
  margin-top: 100px;
}

.opening-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.opening-heading h3 {
  margin-bottom: 20px;
  font-size: 26px;
}

.movie-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.movie-link {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 4px;
  background: var(--black);
}

.movie-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  transition: transform 300ms ease, opacity 300ms ease;
}

.movie-link:hover img {
  opacity: 0.78;
  transform: scale(1.035);
}

.movie-link > span {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
}

.movie-link > span svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  color: var(--black);
  border-radius: 50%;
  background: var(--gold);
}

.venue-experience {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.venue-experience > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.76) 47%, rgba(0, 0, 0, 0.2) 100%);
}

.venue-content {
  width: min(1180px, calc(100% - 64px));
  margin-inline: auto;
}

.venue-content h2 {
  max-width: 700px;
  font-size: 44px;
}

.venue-content > p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.7);
}

.venue-points {
  display: flex;
  max-width: 780px;
  margin-top: 42px;
  border-top: 1px solid rgba(180, 184, 188, 0.5);
  border-bottom: 1px solid rgba(180, 184, 188, 0.5);
}

.venue-points span {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 10px;
  padding: 18px 14px;
  border-right: 1px solid rgba(180, 184, 188, 0.3);
  font-size: 12px;
}

.venue-points span:last-child {
  border-right: 0;
}

.venue-points svg {
  color: var(--gold);
}

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

.number-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.number-grid > div {
  display: flex;
  min-height: 180px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 22px 14px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.number-grid > div:last-child {
  border-right: 0;
}

.number-grid small {
  margin-bottom: 18px;
  color: var(--gold-deep);
  font-family: var(--display);
  font-size: 12px;
}

.number-grid strong {
  color: var(--red);
  font-family: var(--display);
  font-size: 31px;
  font-weight: 400;
  line-height: 1.2;
}

.number-grid em {
  font-family: var(--serif);
  font-size: 14px;
  font-style: normal;
}

.number-grid span {
  margin-top: 9px;
  color: var(--gray);
  font-size: 12px;
}

.data-note,
.price-note {
  margin-top: 16px;
  color: var(--gray);
  font-size: 12px;
  text-align: center;
}

.voices-section {
  background: #F2F4F5;
}

.voices-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 68px;
}

.voices-copy h2 {
  font-size: 38px;
}

.voice-tabs {
  display: grid;
  margin-top: 36px;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.voice-tabs button {
  min-height: 48px;
  padding: 10px 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--white);
  cursor: pointer;
  font-size: 14px;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.voice-tabs button:hover,
.voice-tabs button.is-active {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

.voice-player .video-frame {
  box-shadow: var(--shadow);
}

.voice-caption {
  display: grid;
  margin-top: 18px;
  grid-template-columns: auto 1fr;
  align-items: end;
  column-gap: 18px;
}

.voice-caption small {
  grid-row: 1 / 3;
  color: var(--gold-deep);
  font-family: var(--display);
  font-size: 12px;
  writing-mode: vertical-rl;
}

.voice-caption strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}

.voice-caption span {
  color: var(--gray);
  font-size: 12px;
}

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

.online-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 72px;
}

.online-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  background: var(--ivory);
}

.online-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.online-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: var(--white);
  background: var(--red);
  font-family: var(--display);
  font-size: 12px;
}

.online-copy h2 {
  font-size: 44px;
}

.online-benefits {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  list-style: none;
}

.online-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.online-benefits svg {
  color: var(--gold-deep);
}

.online-flow {
  display: grid;
  margin-top: 72px;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.online-flow > div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
}

.online-flow b {
  grid-row: 1 / 3;
  color: var(--gold-deep);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.online-flow span {
  color: var(--gray);
  font-family: var(--display);
  font-size: 12px;
  line-height: 1;
}

.online-flow strong {
  margin-top: 7px;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
}

.online-flow > svg {
  color: var(--gold-deep);
}

.overview-section {
  background: #F2F4F5;
}

.overview-layout {
  display: grid;
  grid-template-columns: 0.6fr 1.15fr 0.55fr;
  align-items: stretch;
  gap: 36px;
}

.overview-heading h2 {
  font-size: 40px;
}

.edition-sign {
  margin-top: 54px;
  color: var(--gold-deep);
  font-family: var(--display);
  font-size: 12px;
  line-height: 1.2;
}

.edition-sign span {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 78px;
}

.overview-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.overview-list > div {
  display: grid;
  min-height: 78px;
  grid-template-columns: 120px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.overview-list dt {
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 14px;
}

.overview-list dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.overview-list dd b {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
}

.deadline-panel {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px 20px;
  color: var(--white);
  border: 1px solid var(--gold);
  background: var(--charcoal);
  text-align: center;
}

.deadline-panel p {
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 14px;
}

.deadline-panel strong {
  font-family: var(--display);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.25;
}

.deadline-panel strong small {
  color: var(--gold);
  font-size: 12px;
}

.deadline-panel > span {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.countdown {
  width: 100%;
  margin-top: 25px;
  padding-top: 16px;
  color: var(--gold);
  border-top: 1px solid rgba(180, 184, 188, 0.34);
  font-family: var(--display);
  font-size: 12px;
}

.price-section {
  color: var(--white);
  background: var(--red-dark);
}

.price-section::before {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(180, 184, 188, 0.36);
  pointer-events: none;
  content: "";
}

.price-section .section-heading {
  position: relative;
  z-index: 2;
}

.price-section .section-heading p:last-child {
  color: rgba(255, 255, 255, 0.65);
}

.price-grid {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 900px;
  margin-inline: auto;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.price-card {
  padding: 34px 40px 32px;
  color: var(--ink);
  border-top: 4px solid var(--gold);
  border-radius: 3px;
  background: var(--white);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

.price-card.featured {
  color: var(--white);
  border: 1px solid var(--gold);
  border-top-width: 4px;
  background: var(--charcoal);
}

.price-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.featured .price-label {
  border-color: rgba(255, 255, 255, 0.2);
}

.price-label span {
  color: var(--gray);
  font-size: 14px;
}

.featured .price-label span {
  color: rgba(255, 255, 255, 0.58);
}

.price-label strong {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
}

.regular-price {
  margin-top: 24px;
  color: var(--gray);
  font-size: 14px;
  text-align: center;
}

.early-price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 8px 0 18px;
}

.early-price small {
  align-self: flex-end;
  margin-top: 0;
  margin-right: 12px;
  margin-bottom: 8px;
  color: var(--red);
  font-family: var(--serif);
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
  writing-mode: horizontal-tb;
}

.featured .early-price small {
  color: var(--gold);
}

.early-price strong {
  color: var(--red);
  font-family: var(--display);
  font-size: 58px;
  font-weight: 400;
  line-height: 1;
}

.featured .early-price strong {
  color: var(--gold);
}

.early-price span {
  align-self: flex-end;
  margin-left: 8px;
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1;
}

.price-card > p {
  margin: 0;
  padding-top: 18px;
  color: var(--gray);
  border-top: 1px solid var(--line);
  font-size: 12px;
  text-align: center;
}

.featured > p {
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
}

.price-note {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.56);
}

.center-actions {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 42px;
}

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

.seating-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
  gap: 48px;
}

.seat-map {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--ivory);
}

.seat-map img {
  width: 100%;
  height: auto;
}

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

.seat-list > div {
  display: grid;
  min-height: 78px;
  grid-template-columns: 86px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.seat-list > div > b {
  color: var(--gold-deep);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
}

.seat-list span {
  color: var(--gray);
  font-size: 12px;
  line-height: 1.55;
}

.seat-list span strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
}

.access-section {
  padding: 0;
  background: #F2F4F5;
}

.access-layout {
  display: grid;
  width: 100%;
  max-width: none;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: stretch;
}

.access-copy {
  display: flex;
  min-height: 520px;
  justify-content: center;
  flex-direction: column;
  padding: 80px max(64px, calc((100vw - 1180px) / 2));
}

.access-copy h2 {
  font-size: 36px;
}

.access-copy > p:not(.section-kicker) {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.access-copy > p svg {
  color: var(--red);
}

.access-copy small {
  max-width: 500px;
  color: var(--gray);
  font-size: 12px;
}

.map-frame {
  min-height: 520px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  filter: grayscale(0.7) contrast(1.05);
}

.support-section {
  background: #F2F4F5;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.support-item {
  display: flex;
  min-height: 330px;
  align-items: flex-start;
  flex-direction: column;
  padding: 40px 38px;
  border-right: 1px solid var(--line);
  background: transparent;
  transition: background-color 180ms ease, color 180ms ease;
}

.support-item:last-child {
  border-right: 0;
}

.support-item:hover {
  color: var(--white);
  background: var(--charcoal);
}

.support-item > svg {
  width: 35px;
  height: 35px;
  margin-bottom: 30px;
  color: var(--gold-deep);
}

.support-item small {
  color: var(--gold-deep);
  font-family: var(--display);
  font-size: 12px;
}

.support-item h3 {
  margin: 7px 0 10px;
  font-size: 24px;
}

.support-item p {
  color: var(--gray);
  font-size: 14px;
}

.support-item:hover p {
  color: rgba(255, 255, 255, 0.62);
}

.support-item > span {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-family: var(--serif);
  font-size: 14px;
}

.support-item > span svg {
  width: 15px;
  height: 15px;
}

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

.briefing-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 72px;
}

.briefing-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 4px;
  background: var(--charcoal);
}

.briefing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.briefing-thumbnail-label {
  position: absolute;
  z-index: 1;
  top: 24px;
  left: 24px;
  padding: 9px 14px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .7);
  background: rgba(93, 15, 20, .88);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1;
}

.briefing-image > a {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  color: var(--black);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.briefing-image > a:hover {
  transform: translate(-50%, -50%) scale(1.06);
}

.briefing-image > a svg {
  width: 25px;
  height: 25px;
}

.briefing-copy h2 {
  font-size: 38px;
}

.briefing-copy .button {
  margin-top: 20px;
}

.faq-section {
  background: #F2F4F5;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  align-items: start;
  gap: 80px;
}

.faq-layout .section-heading {
  position: sticky;
  top: 120px;
  margin: 0;
}

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

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

.faq-list summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 4px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 16px;
  list-style: none;
}

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

.faq-list summary svg {
  color: var(--gold-deep);
  transition: transform 180ms ease;
}

.faq-list details[open] summary svg {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -4px 0 24px;
  padding-right: 48px;
  color: var(--gray);
  font-size: 14px;
}

.final-cta-section {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.final-cta-image {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.74) 52%, rgba(0, 0, 0, 0.22) 100%), url("./codex-assets/codex-venue-stage.jpg");
  background-position: center;
  background-size: cover;
}

.final-cta-section::after {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(180, 184, 188, 0.45);
  pointer-events: none;
  content: "";
}

.final-cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 690px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.final-cta-content h2 {
  font-size: 56px;
}

.final-deadline {
  display: flex;
  flex-direction: column;
  margin: 8px 0 34px;
  padding: 16px 28px;
  border-left: 3px solid var(--gold);
  background: rgba(139, 30, 30, 0.76);
}

.final-deadline span {
  color: var(--gold);
  font-size: 12px;
}

.final-deadline strong {
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
}

.final-actions {
  display: flex;
  gap: 14px;
}

.site-footer {
  color: var(--white);
  background: var(--charcoal);
}

.footer-inner {
  display: grid;
  padding: 62px 0 54px;
  grid-template-columns: 1fr 1fr 0.8fr;
  align-items: start;
  gap: 60px;
}

.footer-brand .brand-t2s {
  font-size: 46px;
}

.footer-brand small {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--display);
  font-size: 12px;
}

.footer-brand p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 28px;
  font-size: 12px;
}

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

.footer-company img {
  width: 200px;
  max-width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-company span {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.footer-bottom {
  padding: 16px;
  color: rgba(255, 255, 255, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--display);
  font-size: 12px;
  text-align: center;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 18px;
  }

  .header-actions {
    margin-left: 20px;
  }

  .text-link {
    display: none;
  }

  .quick-facts-inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .quick-cta {
    grid-column: 1 / -1;
    min-height: 78px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .growth-steps span {
    font-size: 12px;
  }

  .trainer-copy {
    padding: 70px 48px;
  }

  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .program-card {
    min-height: 320px;
  }

  .overview-layout {
    grid-template-columns: 0.65fr 1.35fr;
  }

  .deadline-panel {
    grid-column: 1 / -1;
    min-height: 190px;
    flex-direction: row;
    gap: 32px;
  }

  .deadline-panel p,
  .deadline-panel > span,
  .deadline-panel .countdown {
    margin: 0;
  }

  .deadline-panel .countdown {
    width: auto;
    padding: 0;
    border: 0;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 88px 0;
  }

  .section-heading h2,
  .new-year-copy h2,
  .trainer-copy h2,
  .venue-content h2,
  .voices-copy h2,
  .online-copy h2,
  .briefing-copy h2,
  .access-copy h2 {
    font-size: 36px;
  }

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

  .menu-button {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    color: var(--ink);
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .mobile-nav {
    position: fixed;
    top: 76px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    display: flex;
    padding: 28px 32px;
    flex-direction: column;
    color: var(--white);
    background: rgba(11, 11, 11, 0.98);
    transform: translateX(100%);
    transition: transform 220ms ease;
  }

  .mobile-nav.is-open {
    transform: translateX(0);
  }

  .mobile-nav a {
    padding: 18px 2px;
    border-bottom: 1px solid rgba(180, 184, 188, 0.24);
    font-family: var(--serif);
  }

  .mobile-nav a.mobile-nav-cta {
    margin-top: 24px;
    padding: 13px 26px;
    border-bottom: 0;
  }

  .quick-facts-inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .quick-fact {
    flex-direction: column;
    align-items: flex-start;
  }

  .new-year-layout {
    grid-template-columns: 130px 1fr;
    gap: 42px;
  }

  .new-year-mark {
    width: 120px;
    height: 120px;
  }

  .new-year-mark span {
    font-size: 30px;
  }

  .value-card {
    padding: 38px 25px;
  }

  .growth-diagram {
    grid-template-columns: 1fr;
  }

  .growth-start {
    width: 110px;
    height: 110px;
  }

  .growth-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .movie-layout,
  .repeat-lead,
  .balance-layout,
  .voices-layout,
  .online-layout,
  .briefing-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .repeat-voices {
    grid-template-columns: 1fr;
  }

  .repeat-voices blockquote {
    border-right: 0;
    border-bottom: 1px solid rgba(180, 184, 188, 0.25);
  }

  .repeat-voices blockquote:last-child {
    border-bottom: 0;
  }

  .learning-steps {
    grid-template-columns: repeat(5, 1fr);
    align-items: stretch;
  }

  .learning-steps li {
    height: 126px;
  }

  .learning-steps span {
    writing-mode: horizontal-tb;
  }

  .trainer-section {
    grid-template-columns: 1fr;
  }

  .trainer-photo {
    min-height: 560px;
  }

  .trainer-copy {
    max-width: 100%;
  }

  .number-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .number-grid > div:nth-child(3) {
    border-right: 0;
  }

  .number-grid > div:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .online-flow {
    grid-template-columns: 1fr;
  }

  .online-flow > svg {
    transform: rotate(90deg);
  }

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

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

  .access-copy {
    min-height: auto;
    padding: 72px 32px;
  }

  .support-item {
    padding: 34px 24px;
  }

  .faq-layout .section-heading {
    position: static;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 66px;
  }

  body {
    padding-bottom: 68px;
    font-size: 15px;
  }

  .container {
    width: min(560px, calc(100% - 36px));
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2,
  .new-year-copy h2,
  .trainer-copy h2,
  .mirror-section h2,
  .venue-content h2,
  .voices-copy h2,
  .online-copy h2,
  .overview-heading h2,
  .briefing-copy h2,
  .access-copy h2 {
    font-size: 28px;
  }

  .section-heading h2 br,
  .new-year-copy h2 br,
  .trainer-copy h2 br,
  .voices-copy h2 br,
  .online-copy h2 br,
  .briefing-copy h2 br,
  .access-copy h2 br {
    display: none;
  }

  .section-kicker {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .section-kicker::before,
  .section-heading.centered .section-kicker::after {
    width: 22px;
  }

  .header-inner {
    width: calc(100% - 28px);
    height: 66px;
  }

  .brand {
    width: 150px;
  }

  .company-brand {
    width: 58px;
    height: 42px;
    margin-right: 10px;
  }

  .company-brand img {
    width: 46px;
    height: 28px;
  }

  .brand-t2s {
    font-size: 27px;
  }

  .brand-sub {
    margin-top: 5px;
    font-size: 12px;
  }

  .mobile-nav {
    top: 66px;
  }

  .hero-desktop {
    display: none;
  }

  .hero-mobile {
    position: relative;
    display: block;
    min-height: 720px;
    color: var(--white);
  }

  .hero-mobile-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.92) 58%, rgba(0, 0, 0, 1)), url("./codex-assets/codex-venue-stage.jpg");
    background-position: 57% center;
    background-size: cover;
  }

  .hero-mobile::after {
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(180, 184, 188, 0.55);
    pointer-events: none;
    content: "";
  }

  .hero-mobile-inner {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 720px;
    justify-content: flex-end;
    flex-direction: column;
    padding: 56px 30px 42px;
  }

  .hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--gold);
    font-family: var(--serif);
    font-size: 14px;
  }

  .hero-eyebrow::before {
    width: 26px;
    height: 1px;
    background: currentColor;
    content: "";
  }

  .hero-edition {
    margin-bottom: 0;
    font-family: var(--serif);
    font-size: 27px;
  }

  .hero-mobile h1 {
    margin-bottom: 24px;
    color: var(--gold);
    font-family: var(--display);
    font-size: 29px;
    line-height: 1.2;
  }

  .hero-mobile h1 span {
    display: block;
    font-size: 86px;
    line-height: 0.95;
  }

  .hero-meta {
    display: grid;
    margin-bottom: 18px;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(180, 184, 188, 0.54);
    border-bottom: 1px solid rgba(180, 184, 188, 0.54);
  }

  .hero-meta > div {
    padding: 14px 12px 14px 0;
    border-right: 1px solid rgba(180, 184, 188, 0.3);
  }

  .hero-meta > div:last-child {
    padding-left: 15px;
    border-right: 0;
  }

  .hero-meta dt {
    color: var(--gold);
    font-family: var(--display);
    font-size: 12px;
  }

  .hero-meta dd {
    margin: 4px 0 0;
    font-family: var(--serif);
    font-size: 14px;
    line-height: 1.5;
  }

  .hero-meta dd small {
    margin: 0 3px;
    font-size: 12px;
  }

  .hero-deadline {
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
    padding: 10px 12px;
    border: 1px solid rgba(180, 184, 188, 0.6);
    background: rgba(100, 13, 13, 0.75);
    text-align: center;
  }

  .hero-deadline strong {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 500;
  }

  .hero-deadline span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
  }

  .quick-facts-inner {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .quick-fact {
    min-height: 84px;
    flex-direction: row;
    align-items: center;
    padding: 16px 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(180, 184, 188, 0.2);
  }

  .quick-fact svg {
    width: 24px;
    height: 24px;
  }

  .quick-cta {
    min-height: 76px;
    padding: 16px 24px;
  }

  .quick-cta b {
    font-size: 16px;
  }

  .new-year-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .new-year-mark {
    width: 88px;
    height: 88px;
    justify-self: start;
    border-width: 4px;
  }

  .new-year-mark span {
    font-size: 23px;
  }

  .new-year-mark small {
    font-size: 12px;
  }

  .new-year-copy h2 {
    font-size: 31px;
  }

  .gold-rule {
    margin: 23px 0;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    padding: 34px 26px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .value-card:last-child {
    border-bottom: 0;
  }

  .benefit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .benefit-item {
    min-height: 230px;
    padding: 24px 20px;
  }

  .benefit-item > svg {
    width: 27px;
    height: 27px;
    margin: 19px 0 17px;
  }

  .benefit-item h3 {
    font-size: 16px;
  }

  .benefit-item p {
    font-size: 12px;
  }

  .growth-diagram {
    margin-top: 48px;
  }

  .growth-start {
    width: 94px;
    height: 94px;
  }

  .growth-start strong {
    font-size: 14px;
  }

  .growth-steps {
    grid-template-columns: 1fr 1fr;
  }

  .growth-steps li {
    min-height: 90px;
  }

  .movie-section::after,
  .price-section::before,
  .final-cta-section::after {
    inset: 10px;
  }

  .movie-layout {
    gap: 36px;
  }

  .movie-copy h2,
  .repeat-lead h2 {
    font-size: 29px;
  }

  .repeat-lead {
    gap: 38px;
  }

  .repeat-number strong {
    font-size: 90px;
  }

  .repeat-number > span {
    font-size: 30px;
  }

  .repeat-voices {
    margin-top: 46px;
  }

  .inline-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .learning-steps {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, 0.35);
  }

  .learning-steps li {
    height: auto;
    min-height: 86px;
  }

  .learning-result {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .trainer-photo {
    min-height: 420px;
  }

  .trainer-copy {
    padding: 62px 22px;
  }

  .trainer-name {
    font-size: 25px;
  }

  .trainer-stats div {
    flex-direction: column;
    align-items: flex-start;
  }

  .trainer-stats strong {
    font-size: 30px;
  }

  .mirror-section {
    padding: 78px 0;
  }

  .mirror-section::before,
  .mirror-section::after {
    display: none;
  }

  .mirror-section h2 {
    font-size: 24px;
  }

  .balance-layout {
    gap: 44px;
  }

  .balance-map {
    aspect-ratio: auto;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .balance-map > div {
    min-height: 112px;
  }

  .balance-map .balance-center {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 130px;
    order: -1;
  }

  .day-switch {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .day-switch > svg {
    justify-self: center;
    transform: rotate(90deg);
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .program-card {
    min-height: 300px;
  }

  .program-card h3 {
    min-height: 0;
  }

  .opening-movies {
    margin-top: 72px;
  }

  .opening-heading {
    display: block;
  }

  .movie-link-grid {
    grid-template-columns: 1fr;
  }

  .venue-experience {
    min-height: 690px;
  }

  .venue-overlay {
    align-items: flex-end;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.72) 54%, rgba(0, 0, 0, 0.08) 100%);
  }

  .venue-content {
    width: calc(100% - 36px);
    padding-bottom: 62px;
  }

  .venue-content h2 {
    font-size: 29px;
  }

  .venue-points {
    flex-direction: column;
  }

  .venue-points span {
    border-right: 0;
    border-bottom: 1px solid rgba(180, 184, 188, 0.3);
  }

  .venue-points span:last-child {
    border-bottom: 0;
  }

  .number-grid {
    grid-template-columns: 1fr 1fr;
  }

  .number-grid > div {
    min-height: 150px;
    border-right: 1px solid var(--line) !important;
    border-bottom: 1px solid var(--line);
  }

  .number-grid > div:nth-child(even) {
    border-right: 0 !important;
  }

  .number-grid > div:last-child {
    grid-column: 1 / -1;
    border-right: 0 !important;
    border-bottom: 0;
  }

  .voice-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .online-layout {
    gap: 38px;
  }

  .online-benefits {
    grid-template-columns: 1fr;
  }

  .online-flow {
    margin-top: 48px;
  }

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

  .edition-sign {
    display: none;
  }

  .overview-list > div {
    min-height: 88px;
    grid-template-columns: 86px 1fr;
  }

  .deadline-panel {
    min-height: 330px;
    flex-direction: column;
    gap: 0;
  }

  .deadline-panel p {
    margin-bottom: 18px;
  }

  .deadline-panel > span {
    margin-top: 14px;
  }

  .deadline-panel .countdown {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(180, 184, 188, 0.34);
  }

  .price-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 30px 24px;
  }

  .early-price strong {
    font-size: 52px;
  }

  .center-actions,
  .final-actions {
    flex-direction: column;
  }

  .button-large {
    width: 100%;
    min-width: 0;
  }

  .seat-list > div {
    grid-template-columns: 72px 1fr;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 380px;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .support-item {
    min-height: 280px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .support-item:last-child {
    border-bottom: 0;
  }

  .briefing-layout {
    gap: 38px;
  }

  .briefing-image > a {
    width: 58px;
    height: 58px;
  }

  .faq-layout {
    gap: 34px;
  }

  .faq-list summary {
    min-height: 76px;
    font-size: 14px;
  }

  .faq-list details p {
    padding-right: 20px;
  }

  .final-cta-section,
  .final-cta-content {
    min-height: 650px;
  }

  .final-cta-image {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.72) 62%, rgba(0, 0, 0, 0.35) 100%), url("./codex-assets/codex-venue-stage.jpg");
    background-position: 58% center;
  }

  .final-cta-content {
    justify-content: flex-end;
    padding-bottom: 72px;
  }

  .final-cta-content h2 {
    font-size: 38px;
  }

  .final-deadline {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 150;
    display: grid;
    height: 68px;
    grid-template-columns: 1fr;
    align-items: stretch;
    color: var(--white);
    border-top: 1px solid rgba(180, 184, 188, 0.5);
    background: rgba(11, 11, 11, 0.98);
  }

  .mobile-sticky-cta > a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: var(--red);
    font-family: var(--serif);
    font-size: 14px;
  }

  .mobile-sticky-cta svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 900px) {
  .codex-edited-lp .trainer-photo-meta {
    background: #181818 !important;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Content-complete LP components */
.new-year-lead {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 22px;
}

.new-year-principle {
  display: flex;
  margin-bottom: 24px;
  flex-direction: column;
  padding: 17px 20px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.66);
}

.new-year-principle strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
}

.new-year-principle span {
  color: var(--gray);
  font-size: 12px;
}

.new-year-signature {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
}

.new-year-signature small {
  color: var(--gold-deep);
  font-family: var(--display);
  font-size: 12px;
}

.new-year-signature span {
  color: var(--gray);
  font-family: var(--sans);
  font-size: 12px;
}

.about-movie {
  display: grid;
  margin-top: 72px;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 64px;
  padding: 54px;
  color: var(--white);
  border: 1px solid rgba(180, 184, 188, 0.42);
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.about-movie-copy h3 {
  margin-bottom: 22px;
  font-size: 30px;
}

.about-movie-copy > p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.68);
}

.about-movie-copy > strong {
  display: block;
  padding: 13px 15px;
  color: var(--gold);
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.05);
  font-size: 14px;
  font-weight: 500;
}

.benefit-item {
  min-height: 390px;
}

.benefit-item > img {
  width: calc(100% + 56px);
  height: 126px;
  margin: 14px -28px 22px;
  object-fit: cover;
}

.benefits-more {
  display: grid;
  margin-top: 38px;
  grid-template-columns: 240px 1fr;
  align-items: center;
  gap: 30px;
  padding: 28px 32px;
  border: 1px solid var(--line);
  background: var(--white);
}

.benefits-more h3 {
  margin: 0;
  font-size: 22px;
}

.benefits-more ul {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 28px;
  list-style: none;
}

.benefits-more li {
  position: relative;
  padding-left: 18px;
  color: var(--gray);
  font-size: 14px;
}

.benefits-more li::before {
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold-deep);
  transform: rotate(45deg);
  content: "";
}

.growth-diagram-six {
  display: block;
}

.growth-diagram-six .growth-steps li {
  min-height: 178px;
  padding: 22px 16px;
}

.growth-diagram-six .growth-steps strong {
  display: block;
  min-height: 58px;
  margin-bottom: 11px;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.growth-diagram-six .growth-steps span {
  color: var(--gray);
  font-family: var(--sans);
  font-size: 12px;
}

.growth-diagram-six .growth-steps .is-goal span {
  color: rgba(255, 255, 255, 0.75);
}

.benefits-note {
  max-width: 860px;
  margin: 36px auto 0;
  color: var(--gray);
  font-size: 14px;
  text-align: center;
}

.benefits-conclusion {
  max-width: 920px;
  margin: 58px auto 0;
  padding: 38px 46px;
  border-top: 1px solid var(--gold-deep);
  border-bottom: 1px solid var(--gold-deep);
  text-align: center;
}

.benefits-conclusion small {
  color: var(--gold-deep);
  font-family: var(--display);
  font-size: 12px;
}

.benefits-conclusion h3 {
  margin: 13px 0 20px;
  font-size: 27px;
}

.benefits-conclusion p {
  margin: 0;
  color: var(--gray);
  font-size: 14px;
}

.repeat-evolution-block,
.repeat-return-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 76px;
  align-items: start;
}

.repeat-evolution-block {
  padding-bottom: 74px;
  border-bottom: 1px solid rgba(180, 184, 188, 0.3);
}

.repeat-return-block {
  margin-top: 74px;
  grid-template-columns: 0.62fr 1.38fr;
  align-items: center;
}

.repeat-evolution-block h2,
.repeat-return-block h2 {
  font-size: 42px;
}

.repeat-body > strong {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
}

.repeat-body > p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.66);
}

.learning-intro {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 80px;
  align-items: end;
}

.learning-intro > div:last-child > strong {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
}

.learning-intro > div:last-child > p {
  margin: 0;
  color: var(--gray);
  font-size: 14px;
}

.learning-reasons {
  display: grid;
  margin: 66px 0;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 38px;
}

.learning-reasons > div {
  padding: 34px 40px;
  border: 1px solid var(--line);
}

.learning-reasons h3 {
  margin-bottom: 26px;
  font-size: 27px;
}

.learning-reasons ol {
  margin: 0;
  padding: 0;
  counter-reset: relearn;
  list-style: none;
}

.learning-reasons li {
  position: relative;
  display: flex;
  min-height: 58px;
  justify-content: center;
  flex-direction: column;
  padding: 10px 0 10px 46px;
  border-bottom: 1px solid var(--line);
  counter-increment: relearn;
}

.learning-reasons li:last-child {
  border-bottom: 0;
}

.learning-reasons li::before {
  position: absolute;
  left: 0;
  color: var(--gold-deep);
  font-family: var(--display);
  font-size: 20px;
  content: counter(relearn, decimal-leading-zero);
}

.learning-reasons li b {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
}

.learning-reasons li span {
  color: var(--gray);
  font-size: 12px;
}

.learning-reasons aside {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 42px;
  color: var(--white);
  border: 1px solid var(--gold-deep);
  background: var(--charcoal);
}

.learning-reasons aside small,
.learning-outcomes small {
  color: var(--gold);
  font-family: var(--display);
  font-size: 12px;
}

.learning-reasons aside strong {
  margin: 15px 0;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
}

.learning-reasons aside p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.learning-phases {
  display: grid;
  max-width: 820px;
  margin: 0 auto 28px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.learning-phases span {
  display: flex;
  flex-direction: column;
  padding: 15px 20px;
  border: 1px solid var(--line);
  text-align: center;
}

.learning-phases small {
  color: var(--gold-deep);
  font-family: var(--display);
  font-size: 12px;
}

.learning-phases b {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
}

.learning-phases i {
  color: var(--red);
  font-family: var(--serif);
  font-size: 12px;
  font-style: normal;
  text-align: center;
}

.learning-steps span small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--sans);
  font-size: 12px;
}

.learning-outcomes {
  display: grid;
  margin-top: 30px;
  grid-template-columns: 1fr 1fr 1.3fr;
  border: 1px solid var(--line);
}

.learning-outcomes > div {
  display: flex;
  min-height: 126px;
  justify-content: center;
  flex-direction: column;
  padding: 23px 26px;
  border-right: 1px solid var(--line);
}

.learning-outcomes > div:last-child {
  color: var(--white);
  border-right: 0;
  background: var(--red);
}

.learning-outcomes > div:last-child small {
  color: var(--gold);
}

.learning-outcomes strong {
  margin: 6px 0;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
}

.learning-outcomes span {
  color: var(--gray);
  font-size: 12px;
}

.learning-outcomes > div:last-child span {
  color: rgba(255, 255, 255, 0.72);
}

.repeat-followup {
  padding: 86px 0;
  color: var(--white);
  background: var(--charcoal);
}

.repeat-followup .repeat-voices {
  display: block;
  margin-top: 0;
}

.repeat-followup .repeat-voices > p {
  margin-bottom: 8px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 12px;
}

.repeat-followup .repeat-voices > h3 {
  margin-bottom: 28px;
  font-size: 26px;
}

.repeat-followup .repeat-voices > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.first-timer-section {
  background: #F2F4F5;
}

.first-timer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: var(--white);
}

.first-timer-grid article {
  position: relative;
  min-height: 290px;
  padding: 42px 34px;
  border-right: 1px solid var(--line);
}

.first-timer-grid article:last-child {
  border-right: 0;
}

.first-timer-grid article > b {
  position: absolute;
  top: 26px;
  right: 28px;
  color: #e6dfd2;
  font-family: var(--display);
  font-size: 42px;
  font-weight: 400;
}

.first-timer-grid svg {
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  color: var(--red);
}

.first-timer-grid h3 {
  margin-bottom: 15px;
  font-size: 21px;
}

.first-timer-grid p {
  margin: 0;
  color: var(--gray);
  font-size: 14px;
}

.first-timer-section .center-actions {
  margin-top: 36px;
}

.trainer-copy {
  max-width: 760px;
  padding-block: 92px;
}

.trainer-copy .trainer-intro,
.trainer-copy .trainer-en {
  color: var(--gold-deep);
  font-size: 12px;
}

.trainer-copy h2 {
  margin: 8px 0 0;
  font-size: 46px;
}

.trainer-copy .trainer-role {
  margin: 14px 0 30px;
  color: var(--ink);
  font-size: 12px;
}

.trainer-copy h3 {
  margin: 0 0 30px;
  color: var(--red);
  font-size: 25px;
}

.trainer-copy blockquote {
  margin: 30px 0;
  padding: 25px 0;
  color: var(--red);
  border-top: 1px solid var(--gold-deep);
  border-bottom: 1px solid var(--gold-deep);
  font-family: var(--serif);
  font-size: 24px;
  text-align: center;
}

.trainer-bio {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.trainer-bio p {
  color: var(--gray);
  font-size: 12px;
}

.program-card {
  min-height: 430px;
  overflow: hidden;
}

.program-card > img {
  width: calc(100% + 56px);
  height: 150px;
  margin: -30px -28px 28px;
  object-fit: cover;
}

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

.opening-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.opening-grid article h3 {
  margin: 18px 2px 0;
  font-size: 17px;
}

.experience-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  background: #F2F4F5;
}

.experience-image {
  min-height: 680px;
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 82px 72px;
}

.experience-copy h2 {
  margin-bottom: 24px;
  font-size: 40px;
}

.experience-copy > p:not(.section-kicker) {
  color: var(--gray);
}

.experience-copy ul {
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.experience-copy li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  color: var(--gray);
  font-size: 12px;
}

.experience-copy li svg {
  color: var(--gold-deep);
}

.experience-copy li b,
.online-benefits li b {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
}

.number-note {
  margin-top: 16px;
  color: var(--gray);
  font-size: 12px;
  text-align: center;
}

.voice-tabs button {
  display: flex;
  align-items: center;
  gap: 9px;
  text-align: left;
}

.voice-tabs button span,
.voice-tabs button b {
  display: block;
}

.voice-tabs button b {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
}

.voice-tabs button span {
  color: inherit;
  font-size: 12px;
}

.voice-meta {
  margin-top: 18px;
}

.voice-meta small {
  color: var(--gold-deep);
  font-size: 12px;
}

.voice-meta h3 {
  margin: 5px 0 0;
  font-size: 21px;
}

.audience-note {
  display: flex;
  max-width: 820px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 66px auto 0;
  padding: 24px 30px;
  color: var(--white);
  border-left: 3px solid var(--gold);
  background: var(--charcoal);
}

.audience-note b {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
}

.audience-note span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

.online-benefits li {
  align-items: flex-start;
}

.online-benefits li > span {
  color: var(--gray);
  font-size: 12px;
}

.online-note {
  max-width: 720px;
  margin: 28px auto 0;
  color: var(--gray);
  font-size: 12px;
  text-align: center;
}

.seat-map > small {
  display: block;
  padding: 9px 14px;
  color: var(--gray);
  font-size: 12px;
}

.seat-list span > small {
  display: block;
  margin-top: 4px;
  color: var(--gold-deep);
}

.special-seat {
  display: grid;
  margin-top: 62px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 42px 48px;
  color: var(--white);
  border: 1px solid var(--gold-deep);
  background: var(--charcoal);
}

.special-seat h3 {
  margin: 0 0 14px;
  font-size: 25px;
}

.special-seat span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}

.venue-content .button {
  margin-top: 30px;
}

@media (max-width: 1100px) {
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .growth-diagram-six .growth-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .about-movie,
  .repeat-evolution-block,
  .repeat-return-block,
  .learning-intro,
  .learning-reasons,
  .experience-section {
    grid-template-columns: 1fr;
  }

  .about-movie {
    gap: 38px;
  }

  .repeat-return-block {
    gap: 46px;
  }

  .repeat-number {
    max-width: 420px;
  }

  .learning-intro,
  .learning-reasons {
    gap: 38px;
  }

  .repeat-followup .repeat-voices > div {
    grid-template-columns: 1fr;
  }

  .first-timer-grid {
    grid-template-columns: 1fr;
  }

  .first-timer-grid article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .first-timer-grid article:last-child {
    border-bottom: 0;
  }

  .experience-image {
    min-height: 520px;
  }

  .experience-copy {
    padding: 70px 48px;
  }

  .opening-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .special-seat {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .new-year-lead {
    font-size: 18px;
  }

  .new-year-principle {
    padding: 14px 16px;
  }

  .about-movie {
    margin-top: 52px;
    padding: 34px 22px;
  }

  .about-movie-copy h3 {
    font-size: 24px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-item {
    min-height: 0;
  }

  .benefit-item > img {
    width: calc(100% + 40px);
    margin-right: -20px;
    margin-left: -20px;
  }

  .benefits-more {
    grid-template-columns: 1fr;
    padding: 24px 22px;
  }

  .benefits-more ul {
    grid-template-columns: 1fr;
  }

  .growth-diagram-six .growth-steps {
    grid-template-columns: 1fr;
  }

  .growth-diagram-six .growth-steps li,
  .growth-diagram-six .growth-steps strong {
    min-height: 0;
  }

  .benefits-conclusion {
    padding: 30px 8px;
  }

  .benefits-conclusion h3 {
    font-size: 22px;
  }

  .repeat-evolution-block h2,
  .repeat-return-block h2 {
    font-size: 29px;
  }

  .repeat-evolution-block,
  .repeat-return-block {
    gap: 34px;
  }

  .learning-reasons > div,
  .learning-reasons aside {
    padding: 28px 22px;
  }

  .learning-phases {
    grid-template-columns: 1fr;
  }

  .learning-phases i {
    padding: 8px 0;
  }

  .learning-outcomes {
    grid-template-columns: 1fr;
  }

  .learning-outcomes > div {
    min-height: 108px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .learning-outcomes > div:last-child {
    border-bottom: 0;
  }

  .repeat-followup {
    padding: 72px 0;
  }

  .first-timer-grid article {
    padding: 36px 24px;
  }

  .trainer-copy h2 {
    font-size: 36px;
  }

  .trainer-copy h3 {
    font-size: 21px;
  }

  .trainer-copy blockquote {
    font-size: 20px;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .program-card {
    min-height: 0;
  }

  .experience-image {
    min-height: 400px;
  }

  .experience-copy {
    padding: 64px 22px;
  }

  .experience-copy h2 {
    font-size: 28px;
  }

  .audience-note {
    align-items: flex-start;
    flex-direction: column;
    margin: 52px 18px 0;
  }

  .voice-tabs {
    grid-template-columns: 1fr;
  }

  .online-benefits li {
    padding: 13px 0;
  }

  .special-seat {
    padding: 32px 24px;
  }
}

/* 2026-07 visual refinement: editorial, bright and easy to scan */
body {
  background: var(--white);
}

.section-heading {
  max-width: 690px;
}

.section-heading > p:not(.section-kicker) {
  max-width: 650px;
  color: var(--gray);
  line-height: 2;
}

.section-heading.centered > p:not(.section-kicker) {
  margin-right: auto;
  margin-left: auto;
}

.new-year-section {
  display: flex;
  min-height: 720px;
  align-items: center;
  background-color: #F2F4F5;
  background-image: url("./codex-assets/codex-future-compass-silver.jpg");
  background-position: center;
  background-size: cover;
}

.new-year-section::before,
.new-year-section::after {
  display: none;
}

.new-year-layout {
  position: relative;
  grid-template-columns: 130px minmax(0, 650px);
  justify-content: start;
  gap: 48px;
}

.new-year-copy {
  padding: 24px 0;
}

.new-year-copy .lead {
  max-width: 610px;
  color: #4f4f4f;
}

.new-year-principle {
  max-width: 540px;
  border-left-color: var(--red);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(8px);
}

.new-year-signature {
  max-width: 520px;
  padding-top: 18px;
  border-top: 1px solid rgba(167, 123, 24, 0.42);
}

.value-grid {
  border-top: 2px solid var(--gold-deep);
  box-shadow: none;
}

.value-card {
  min-height: 310px;
}

.about-movie {
  position: relative;
  overflow: hidden;
  margin-top: 88px;
  padding: 60px;
  border: 0;
  border-left: 4px solid var(--red);
  background:
    linear-gradient(100deg, rgba(11, 11, 11, 0.98), rgba(26, 26, 26, 0.92)),
    url("./codex-assets/codex-venue-stage.jpg") center / cover;
  box-shadow: none;
}

.benefits-section {
  background: #f5f5f3;
}

.benefit-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  overflow: visible;
  border: 0;
  background: transparent;
}

.benefit-item {
  display: grid;
  min-height: 218px;
  grid-template-columns: 150px 1fr;
  grid-template-rows: auto auto 1fr;
  column-gap: 24px;
  padding: 24px;
  border: 1px solid var(--line);
}

.benefit-item > span:first-child {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--red);
}

.benefit-item > img {
  width: 150px;
  height: 168px;
  margin: 0;
  grid-row: 1 / 4;
  object-fit: cover;
}

.benefit-item h3 {
  align-self: end;
  margin: 14px 0 10px;
  font-size: 19px;
}

.benefit-item p {
  font-size: 12px;
}

.growth-diagram-six .growth-steps {
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.growth-diagram-six .growth-steps li {
  min-height: 145px;
  border: 0;
}

.growth-diagram-six .growth-steps li::after {
  display: none;
}

.growth-diagram-six .growth-steps strong {
  min-height: 0;
}

.benefits-conclusion {
  padding: 44px 48px;
  color: var(--white);
  border: 0;
  background: var(--charcoal);
}

.benefits-conclusion small {
  color: var(--gold);
}

.benefits-conclusion p {
  color: rgba(255, 255, 255, 0.68);
}

.repeat-section {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.98), rgba(26, 26, 26, 0.94)),
    url("./codex-assets/codex-venue-stage.jpg") center / cover;
}

.repeat-evolution-block {
  padding-bottom: 66px;
}

.repeat-return-block {
  margin-top: 66px;
}

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

.learning-visual {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  margin: 66px 0 0;
  color: var(--white);
  background: var(--black);
}

.learning-visual img {
  width: 100%;
  height: 470px;
  object-fit: cover;
}

.learning-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 11, 11, 0.86), rgba(11, 11, 11, 0.06) 62%);
  content: "";
}

.learning-visual figcaption {
  position: absolute;
  bottom: 58px;
  left: 58px;
  z-index: 2;
  display: flex;
  max-width: 390px;
  flex-direction: column;
}

.learning-visual figcaption small {
  color: var(--gold);
  font-family: var(--display);
  font-size: 12px;
}

.learning-visual figcaption strong {
  margin: 10px 0;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 500;
}

.learning-visual figcaption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.learning-reasons {
  margin-top: 40px;
}

.learning-steps {
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  align-items: stretch;
  background: var(--line);
}

.learning-steps li,
.learning-steps li:nth-child(2),
.learning-steps li:nth-child(3),
.learning-steps li:nth-child(4),
.learning-steps li:nth-child(5),
.learning-steps li:nth-child(6),
.learning-steps li:nth-child(7),
.learning-steps li:nth-child(8),
.learning-steps li:nth-child(9),
.learning-steps li:nth-child(10) {
  height: 118px;
  justify-content: center;
  border: 0;
  background: var(--charcoal);
}

.learning-steps li:nth-child(n + 8) {
  background: var(--red);
}

.learning-steps span {
  writing-mode: horizontal-tb;
  font-size: 14px;
}

.repeat-followup {
  color: var(--ink);
  background: var(--ivory);
}

.repeat-followup .repeat-voices {
  border-color: var(--line);
}

.repeat-followup .repeat-voices > div {
  gap: 12px;
}

.repeat-followup .repeat-voices blockquote {
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--white);
}


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

.first-timer-grid {
  gap: 14px;
  border: 0;
  background: transparent;
}

.first-timer-grid article {
  border: 1px solid var(--line);
  background: var(--ivory);
}

.trainer-section {
  background: #F2F4F5;
}

.trainer-copy {
  padding-block: 80px;
}

.trainer-details {
  margin-top: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trainer-details summary {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 14px;
  list-style: none;
}

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

.trainer-details summary svg {
  color: var(--gold-deep);
  transition: transform 180ms ease;
}

.trainer-details[open] summary svg {
  transform: rotate(45deg);
}

.trainer-details .trainer-bio {
  margin-top: 0;
  padding: 0 0 24px;
  border-top: 0;
}

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

.balance-layout {
  grid-template-columns: 0.78fr 1.22fr;
  gap: 68px;
}

.balance-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  align-items: center;
  gap: 24px;
}

.balance-visual > img {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--ivory);
}

.balance-legend {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}

.balance-legend span {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 10px;
  color: var(--gray);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.balance-legend svg {
  color: var(--red);
}

.section-story-visual {
  position: relative;
  min-height: 410px;
  aspect-ratio: 16 / 7;
  margin: 0 0 48px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ivory);
}

.section-story-visual > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-story-visual figcaption {
  position: absolute;
  bottom: 44px;
  left: 44px;
  display: grid;
  max-width: 390px;
  gap: 10px;
  color: var(--ink);
}

.section-story-visual figcaption small {
  color: var(--red);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.section-story-visual figcaption strong {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.45;
}

.section-story-visual figcaption span {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.8;
}

.benefit-item {
  min-height: 186px;
  grid-template-columns: 60px 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 22px;
  padding: 30px;
}

.benefit-icon {
  display: grid;
  width: 60px;
  height: 60px;
  grid-row: 1 / 3;
  place-items: center;
  color: var(--red);
}

.benefit-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.5;
}

.benefit-item h3 {
  align-self: end;
  margin: 0 42px 10px 0;
}

.benefit-item p {
  margin: 0;
}

.program-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.program-card {
  display: grid;
  min-height: 230px;
  grid-template-columns: 68px 1fr;
  grid-template-rows: auto auto auto;
  align-content: start;
  column-gap: 24px;
  padding: 32px;
  border-top-width: 1px;
}

.program-card .program-icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0;
  grid-row: 1 / 4;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--gold-deep);
  background: var(--charcoal);
}

.program-card .program-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

.program-card > p {
  align-self: end;
  margin-top: 8px;
}

.program-card h3 {
  min-height: 0;
  margin-bottom: 10px;
}

.program-card > span {
  align-self: start;
  min-height: 0;
}

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

.opening-grid {
  gap: 24px;
}

.experience-copy {
  max-width: 720px;
}

.number-grid > div {
  min-height: 200px;
}

.number-grid strong {
  font-size: 34px;
}

.voices-section {
  background: #f5f5f3;
}

.voice-tabs button {
  min-height: 60px;
}

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

.online-benefits {
  gap: 0 20px;
}

.overview-section {
  background: #F2F4F5;
}

.price-section {
  background: var(--charcoal);
}

.seating-section,
.support-section,
.faq-section {
  background: var(--white);
}

.briefing-section {
  background: #F2F4F5;
}

@media (max-width: 1100px) {
  .new-year-section {
    background-position: 58% center;
  }

  .new-year-layout {
    grid-template-columns: 110px minmax(0, 590px);
    gap: 34px;
  }

  .benefit-item {
    grid-template-columns: 60px 1fr;
  }

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

  .balance-visual {
    max-width: 760px;
    margin-inline: auto;
  }
}

@media (max-width: 900px) {
  .new-year-section {
    min-height: 680px;
    background-position: 64% center;
  }

  .new-year-layout {
    grid-template-columns: 96px minmax(0, 560px);
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-item {
    max-width: 720px;
    margin-inline: auto;
  }

  .program-card {
    grid-template-columns: 68px 1fr;
  }
}

@media (max-width: 680px) {
  .new-year-section {
    min-height: auto;
    padding-top: 360px;
    background-position: 72% top;
    background-size: auto 420px;
    background-repeat: no-repeat;
  }

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

  .new-year-mark {
    position: absolute;
    top: -318px;
    left: 0;
  }

  .new-year-copy {
    padding: 0;
  }

  .about-movie {
    padding: 34px 22px;
    background: var(--charcoal);
  }

  .benefit-item {
    grid-template-columns: 50px 1fr;
    grid-template-rows: auto 1fr;
    padding: 22px 18px;
    column-gap: 16px;
  }

  .benefit-icon {
    width: 50px;
    height: 50px;
  }

  .benefit-icon svg {
    width: 23px;
    height: 23px;
  }

  .benefit-item h3 {
    margin: 0 28px 8px 0;
    font-size: 16px;
  }

  .section-story-visual {
    min-height: 0;
    aspect-ratio: auto;
  }

  .section-story-visual > img {
    position: relative;
    height: 300px;
    object-position: 62% center;
  }

  .program-story-visual > img {
    height: 250px;
    object-position: center;
  }

  .section-story-visual figcaption {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    max-width: none;
    padding: 24px 22px 26px;
    background: var(--white);
  }

  .section-story-visual figcaption strong {
    font-size: 25px;
  }

  .growth-diagram-six .growth-steps {
    grid-template-columns: 1fr 1fr;
  }

  .learning-visual {
    min-height: 430px;
    margin-top: 48px;
  }

  .learning-visual img {
    height: 430px;
    object-position: 63% center;
  }

  .learning-visual::after {
    background: linear-gradient(0deg, rgba(11, 11, 11, 0.9), rgba(11, 11, 11, 0.08) 76%);
  }

  .learning-visual figcaption {
    right: 22px;
    bottom: 28px;
    left: 22px;
  }

  .learning-visual figcaption strong {
    font-size: 25px;
  }

  .learning-steps {
    grid-template-columns: 1fr 1fr;
  }

  .learning-steps li,
  .learning-steps li:nth-child(2),
  .learning-steps li:nth-child(3),
  .learning-steps li:nth-child(4),
  .learning-steps li:nth-child(5),
  .learning-steps li:nth-child(6),
  .learning-steps li:nth-child(7),
  .learning-steps li:nth-child(8),
  .learning-steps li:nth-child(9),
  .learning-steps li:nth-child(10) {
    height: 94px;
  }

  .balance-visual {
    grid-template-columns: 1fr;
  }

  .balance-legend {
    grid-template-columns: 1fr 1fr;
  }

  .balance-legend span:nth-child(odd) {
    padding-right: 10px;
    border-right: 1px solid var(--line);
  }

  .balance-legend span:nth-child(even) {
    padding-left: 10px;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .program-card {
    min-height: 210px;
    grid-template-columns: 54px 1fr;
    grid-template-rows: auto auto 1fr;
    column-gap: 18px;
    padding: 22px;
  }

  .program-card .program-icon {
    width: 54px;
    height: 54px;
    grid-row: 1 / 4;
  }

  .program-card .program-icon svg {
    width: 23px;
    height: 23px;
  }
}

/* Edited LP: header actions and new-year parallax composition */
.codex-edited-lp .company-brand {
  border-right: 0;
}

.codex-edited-lp .header-movie-button {
  min-width: 178px;
  padding-inline: 16px;
  white-space: nowrap;
}

.codex-edited-lp .header-actions .button-small {
  width: 178px;
  min-width: 178px;
}

.codex-edited-lp .header-actions .button-primary.button-small {
  gap: 8px;
  padding-inline: 11px;
  white-space: nowrap;
}

.codex-edited-lp .header-actions .button-primary.button-small svg {
  width: 18px;
  height: 18px;
}

.codex-edited-lp .new-year-section {
  z-index: 1;
  background-attachment: fixed;
  background-image: url("./codex-assets/codex-future-compass-silver.jpg");
  background-position: 8% center;
}

.codex-edited-lp .new-year-layout {
  grid-template-columns: 88px minmax(0, 660px);
}

.codex-edited-lp .new-year-copy {
  position: relative;
  grid-column: 2;
  padding: 34px 0 30px;
  background: transparent;
  box-shadow: none;
}

.codex-edited-lp .new-year-copy::before {
  display: none;
}

.codex-edited-lp .new-year-copy .section-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
  padding: 7px 13px 8px 0;
  color: var(--gold-deep);
  border: 0;
}

.codex-edited-lp .new-year-copy h2 {
  max-width: 660px;
  margin-bottom: 28px;
  color: #111111;
  font-size: 52px;
  line-height: 1.42;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.92);
}

.codex-edited-lp .new-year-heading-accent {
  color: var(--red);
}

.codex-edited-lp .new-year-copy .gold-rule {
  width: 142px;
  margin: 26px 0 30px;
  border-top-color: var(--red);
  border-bottom-color: var(--gold);
}

.codex-edited-lp .new-year-lead {
  margin-bottom: 22px;
  color: var(--red);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.65;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
}

.codex-edited-lp .new-year-copy .lead {
  max-width: 590px;
  color: #303030;
  font-size: 16px;
  line-height: 2;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.88);
}

.codex-edited-lp .new-year-signature {
  position: relative;
  max-width: 590px;
  margin-top: 38px;
  gap: 8px;
  padding: 24px 28px 24px 31px;
  color: var(--white);
  border: 0;
  background: linear-gradient(120deg, #0b0b0b, #1a1a1a 72%, #24211d);
  box-shadow: 0 14px 34px rgba(11, 11, 11, 0.18);
}

.codex-edited-lp .new-year-signature::after {
  display: none;
}

.codex-edited-lp .new-year-signature small {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-deep);
  font-size: 12px;
}

.codex-edited-lp .new-year-signature small::after {
  width: 72px;
  height: 1px;
  background: currentColor;
  content: "";
}

.codex-edited-lp .new-year-signature strong {
  color: #f7f4ee;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.55;
}

.codex-edited-lp .new-year-signature span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
}

.codex-edited-lp .parallax-overlap-section {
  z-index: 2;
  margin-top: -88px;
  padding-top: 168px;
  background: none;
  box-shadow: none;
}

@media (min-width: 901px) {
  .codex-edited-lp .parallax-overlap-section {
    background-color: transparent;
    background-image: url("./codex-assets/codex-future-compass-silver.jpg");
    background-position: 8% center;
    background-size: cover;
    background-attachment: fixed;
  }
}

.codex-edited-lp .parallax-overlap-section > .container {
  position: relative;
  z-index: 1;
}

.codex-edited-lp .parallax-overlap-section .section-heading {
  color: var(--ink);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
}

@media (min-width: 901px) {
  .codex-edited-lp .new-year-section {
    padding-block: 90px;
  }
}

.codex-edited-lp #introduction {
  border-left: 0;
}

.codex-edited-lp .about-movie-copy > strong {
  color: var(--black);
  border-left: 0;
  background: var(--white);
}

.codex-edited-lp .about-movie-copy > strong span {
  color: var(--red);
  font-weight: 700;
}

@media (max-width: 1180px) {
  .codex-edited-lp .header-movie-button {
    min-width: 170px;
    padding-inline: 12px;
  }

  .codex-edited-lp .header-actions .button-small {
    width: 170px;
    min-width: 170px;
  }
}

@media (max-width: 1100px) {
  .codex-edited-lp .new-year-layout {
    grid-template-columns: 60px minmax(0, 620px);
  }

  .codex-edited-lp .new-year-copy {
    grid-column: 2;
  }

  .codex-edited-lp .new-year-copy h2 {
    font-size: 49px;
  }

  .codex-edited-lp .section-story-visual {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 900px) {
  .codex-edited-lp .new-year-section {
    background-attachment: scroll;
    background-position: 22% center;
  }

  .codex-edited-lp .new-year-layout {
    grid-template-columns: 48px minmax(0, 560px);
  }

  .codex-edited-lp .new-year-copy h2 {
    font-size: 42px;
  }

  .codex-edited-lp .new-year-lead {
    font-size: 22px;
  }

  .codex-edited-lp .new-year-signature strong {
    font-size: 22px;
  }

  .codex-edited-lp .parallax-overlap-section {
    margin-top: -56px;
    padding-top: 128px;
    background: none;
  }

  .codex-edited-lp .mobile-nav {
    bottom: auto;
    height: calc(100vh - 76px);
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: none;
    transition: opacity 180ms ease, visibility 0s linear 180ms;
  }

  .codex-edited-lp .mobile-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0s;
  }

}

@media (max-width: 680px) {
  .codex-edited-lp .new-year-layout {
    grid-template-columns: 1fr;
  }

  .codex-edited-lp .new-year-copy {
    grid-column: 1;
    padding: 0;
  }

  .codex-edited-lp .new-year-copy::before {
    top: 64px;
    left: -12px;
    width: 2px;
    height: 72px;
  }

  .codex-edited-lp .new-year-copy .section-kicker {
    margin-bottom: 19px;
    padding-block: 6px;
  }

  .codex-edited-lp .new-year-copy h2 {
    margin-bottom: 22px;
    font-size: 34px;
    line-height: 1.5;
  }

  .codex-edited-lp .new-year-copy .gold-rule {
    width: 96px;
    margin: 20px 0 23px;
  }

  .codex-edited-lp .new-year-lead {
    margin-bottom: 18px;
    font-size: 20px;
  }

  .codex-edited-lp .new-year-copy .lead {
    font-size: 15px;
    line-height: 1.9;
  }

  .codex-edited-lp .new-year-signature {
    margin-top: 30px;
    padding: 20px 18px 20px 22px;
  }

  .codex-edited-lp .new-year-signature::after {
    display: none;
  }

  .codex-edited-lp .new-year-signature strong {
    font-size: 20px;
  }

  .codex-edited-lp .parallax-overlap-section {
    margin-top: -40px;
    padding-top: 104px;
  }

  .codex-edited-lp .mobile-nav {
    height: calc(100vh - 66px);
  }
}

/* First view: live typography over the supplied PC/SP artwork. */
.codex-edited-lp .hero {
  aspect-ratio: 16 / 9;
  min-height: 0;
  isolation: isolate;
  color: var(--white);
  background: #000;
}

.codex-edited-lp .hero-media,
.codex-edited-lp .hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.codex-edited-lp .hero-media img {
  max-width: none;
  object-fit: cover;
}

.codex-edited-lp .hero-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  font-family: var(--serif);
}

.codex-edited-lp .hero-announcement,
.codex-edited-lp .hero-title,
.codex-edited-lp .hero-subtitle,
.codex-edited-lp .hero-deadline > strong > span,
.codex-edited-lp .hero-deadline b {
  color: #e6bc57;
  background: linear-gradient(180deg, #9a6214 0%, #ffe9a2 34%, #d39c2d 58%, #fff1b2 78%, #9b6010 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.codex-edited-lp .hero-announcement {
  position: absolute;
  top: 7.55%;
  left: 3.8%;
  width: 29%;
  margin: 0;
  padding: 12px 8px 13px;
  border-top: 1px solid #c99b3d;
  border-bottom: 1px solid #c99b3d;
  font-size: 26px;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
}

.codex-edited-lp .hero-brand-block {
  position: absolute;
  top: 18.3%;
  left: 3.8%;
  width: 40%;
}

.codex-edited-lp .hero-edition {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 4px;
  color: var(--white);
  font-size: 40px;
  line-height: 1;
}

.codex-edited-lp .hero-edition strong {
  font-family: var(--display);
  font-size: 76px;
  font-weight: 400;
  line-height: 0.9;
}

.codex-edited-lp .hero-edition,
.codex-edited-lp .hero-edition strong {
  color: transparent;
  background: linear-gradient(180deg, #8f5a13 0%, #ffe9a2 34%, #d39c2d 58%, #fff1b2 78%, #9b6010 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .38);
}

.codex-edited-lp .hero-brand-block h1 {
  display: flex;
  align-items: flex-end;
  gap: 30px;
  margin: 0;
  line-height: 1;
}

.codex-edited-lp .hero-title {
  flex: 0 0 auto;
  font-family: var(--display);
  font-size: 142px;
  font-weight: 400;
  line-height: 0.9;
}

/* Keep the existing T2S lettering and give only it a silver-metal finish. */
.codex-edited-lp .hero-title {
  color: transparent;
  background: linear-gradient(180deg, #ffffff 0%, #aeb6bd 19%, #f8fbfd 41%, #79838d 64%, #f4f7f8 83%, #8d979f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 2px 0 rgba(255, 255, 255, .35)) drop-shadow(0 8px 12px rgba(0, 0, 0, .42));
  text-shadow: none;
}

.codex-edited-lp .hero-subtitle {
  padding-bottom: 3px;
  font-family: var(--display);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.25;
  white-space: nowrap;
}

.codex-edited-lp .hero-details {
  position: absolute;
  top: 49.7%;
  left: 3.8%;
  width: 35%;
  padding: 20px 8px 0;
  border-top: 1px solid rgba(207, 162, 68, 0.8);
}

.codex-edited-lp .hero-date {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin: 0 0 5px;
  color: var(--white);
  font-family: var(--display);
  font-size: 30px;
  line-height: 1;
  white-space: nowrap;
}

.codex-edited-lp .hero-date strong {
  font-size: 44px;
  font-weight: 400;
}

.codex-edited-lp .hero-date small {
  font-family: var(--serif);
  font-size: 19px;
}

.codex-edited-lp .hero-date span {
  margin-inline: 7px;
}

.codex-edited-lp .hero-venue {
  margin: 0;
  color: var(--white);
  font-size: 22px;
  line-height: 1.45;
  white-space: nowrap;
}

.codex-edited-lp .hero-deadline {
  position: absolute;
  top: 63.4%;
  left: 3.8%;
  display: flex;
  width: 33.5%;
  margin: 0;
  padding: 8px 18px 10px;
  border: 1px solid #b98929;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.42);
  text-align: center;
}

.codex-edited-lp .hero-deadline::before,
.codex-edited-lp .hero-deadline::after {
  position: absolute;
  width: 7px;
  height: 7px;
  border-color: #d1a342;
  content: "";
}

.codex-edited-lp .hero-deadline::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.codex-edited-lp .hero-deadline::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

/* Keep the deadline panel clean at every desktop width.  The corner brackets
   sat outside the border and appeared detached at larger viewports. */
.codex-edited-lp .hero-deadline::before,
.codex-edited-lp .hero-deadline::after {
  display: none;
  content: none;
}

.codex-edited-lp .hero-deadline > strong {
  display: block;
  margin-bottom: 5px;
  padding: 2px 12px 3px;
  color: #e6bc57;
  background: linear-gradient(90deg, #390000 0%, #831010 48%, #390000 100%);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.25;
  -webkit-box-decoration-break: clone;
}

.codex-edited-lp .hero-deadline > strong > span {
  display: block;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.codex-edited-lp .hero-deadline > span {
  color: #e8c36d;
  font-size: 20px;
  line-height: 1.3;
  white-space: nowrap;
}

.codex-edited-lp .hero-deadline b {
  margin-inline: 4px;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
}

.codex-edited-lp .hero-cta {
  position: absolute;
  top: 77.5%;
  left: 3.8%;
  display: flex;
  width: 33.5%;
  min-height: 9.5%;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 8px 16px;
  color: var(--white);
  border: 2px solid #c9ccd0;
  border-radius: 3px;
  background: linear-gradient(135deg, #b71f24 0%, #8d080c 46%, #3e0001 100%);
  box-shadow: inset 0 0 26px rgba(255, 177, 71, 0.14), 0 0 18px rgba(198, 123, 20, 0.14);
  font-size: 24px;
  line-height: 1.2;
  text-align: center;
  transition: filter 180ms ease, transform 180ms ease;
}

.codex-edited-lp .hero-cta::after {
  position: absolute;
  right: 12%;
  bottom: -3px;
  left: 12%;
  height: 4px;
  background: radial-gradient(ellipse at center, #fff 0%, #ffbe3f 18%, rgba(255, 111, 0, 0) 70%);
  content: "";
}

.codex-edited-lp .hero-cta:hover {
  filter: brightness(1.16);
  transform: translateY(-2px);
}

.codex-edited-lp .hero-cta svg {
  width: 31px;
  height: 31px;
  color: #e6b94f;
  stroke-width: 1.5;
}

@media (max-width: 1180px) and (min-width: 681px) {
  .codex-edited-lp .hero-announcement {
    font-size: 22px;
  }

  .codex-edited-lp .hero-edition {
    font-size: 33px;
  }

  .codex-edited-lp .hero-edition strong {
    font-size: 62px;
  }

  .codex-edited-lp .hero-brand-block h1 {
    gap: 22px;
  }

  .codex-edited-lp .hero-title {
    font-size: 88px;
  }

  .codex-edited-lp .hero-subtitle {
    font-size: 31px;
  }

  .codex-edited-lp .hero-date {
    font-size: 26px;
  }

  .codex-edited-lp .hero-date strong {
    font-size: 36px;
  }

  .codex-edited-lp .hero-date small {
    font-size: 16px;
  }

  .codex-edited-lp .hero-venue {
    font-size: 19px;
  }

  .codex-edited-lp .hero-deadline > strong {
    font-size: 22px;
  }

  .codex-edited-lp .hero-deadline > span {
    font-size: 17px;
  }

  .codex-edited-lp .hero-deadline b {
    font-size: 27px;
  }

  .codex-edited-lp .hero-cta {
    font-size: 22px;
  }
}

@media (max-width: 900px) and (min-width: 681px) {
  .codex-edited-lp .hero-announcement {
    padding-block: 9px;
    font-size: 18px;
  }

  .codex-edited-lp .hero-edition {
    gap: 5px;
    font-size: 29px;
  }

  .codex-edited-lp .hero-edition strong {
    font-size: 52px;
  }

  .codex-edited-lp .hero-title {
    font-size: 74px;
  }

  .codex-edited-lp .hero-subtitle {
    font-size: 26px;
  }

  .codex-edited-lp .hero-details {
    padding-top: 13px;
  }

  .codex-edited-lp .hero-date {
    font-size: 21px;
  }

  .codex-edited-lp .hero-date strong {
    font-size: 30px;
  }

  .codex-edited-lp .hero-date small {
    font-size: 13px;
  }

  .codex-edited-lp .hero-venue {
    font-size: 14px;
  }

  .codex-edited-lp .hero-deadline {
    top: 68.2%;
    width: 36%;
    padding: 4px 8px 5px;
  }

  .codex-edited-lp .hero-deadline > strong {
    margin-bottom: 2px;
    padding-block: 1px;
    font-size: 16px;
  }

  .codex-edited-lp .hero-deadline > span {
    font-size: 12px;
  }

  .codex-edited-lp .hero-deadline b {
    font-size: 20px;
  }

  .codex-edited-lp .hero-cta {
    top: 80%;
    left: 3.8%;
    width: 36%;
    min-height: 9.5%;
    gap: 8px;
    padding: 8px 14px;
    font-size: 18px;
  }

  .codex-edited-lp .hero-cta svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 720px) and (min-width: 681px) {
  .codex-edited-lp .hero-announcement {
    padding-block: 7px;
    font-size: 17px;
  }

  .codex-edited-lp .hero-brand-block {
    top: 18.8%;
  }

  .codex-edited-lp .hero-edition {
    font-size: 27px;
  }

  .codex-edited-lp .hero-edition strong {
    font-size: 48px;
  }

  .codex-edited-lp .hero-brand-block h1 {
    gap: 18px;
  }

  .codex-edited-lp .hero-title {
    font-size: 70px;
  }

  .codex-edited-lp .hero-subtitle {
    font-size: 24px;
  }

  .codex-edited-lp .hero-details {
    top: 50%;
    padding-top: 10px;
  }

  .codex-edited-lp .hero-date {
    font-size: 19px;
  }

  .codex-edited-lp .hero-date strong {
    font-size: 27px;
  }

  .codex-edited-lp .hero-date small {
    font-size: 12px;
  }

  .codex-edited-lp .hero-venue {
    font-size: 13px;
  }

  .codex-edited-lp .hero-deadline {
    top: 69%;
  }

  .codex-edited-lp .hero-cta {
    top: 81.5%;
    font-size: 17px;
  }
}

@media (max-width: 680px) {
  .codex-edited-lp .hero {
    aspect-ratio: 862 / 1824;
  }

  .codex-edited-lp .hero-desktop,
  .codex-edited-lp .hero-mobile {
    display: none;
  }

  .codex-edited-lp .hero-announcement {
    top: 7.65%;
    left: 6.85%;
    width: 45.2%;
    padding: 11px 3px 12px;
    font-size: 18px;
  }

  .codex-edited-lp .hero-brand-block {
    top: 18.55%;
    left: 6.85%;
    width: 86.2%;
  }

  .codex-edited-lp .hero-edition {
    gap: 7px;
    margin-bottom: 8px;
    font-size: 32px;
  }

  .codex-edited-lp .hero-edition strong {
    font-size: 58px;
  }

  .codex-edited-lp .hero-brand-block h1 {
    display: block;
  }

  .codex-edited-lp .hero-title,
  .codex-edited-lp .hero-subtitle {
    display: block;
  }

  .codex-edited-lp .hero-title {
    margin-bottom: 0;
    font-size: 118px;
  }

  .codex-edited-lp .hero-subtitle {
    padding: 0;
    font-size: 27px;
    line-height: 1.3;
  }

  .codex-edited-lp .hero-details {
    top: 49.65%;
    left: 6.85%;
    width: 86.2%;
    padding: 21px 0 0;
  }

  .codex-edited-lp .hero-date {
    justify-content: center;
    gap: 1px;
    margin-bottom: 17px;
    font-size: 30px;
  }

  .codex-edited-lp .hero-date strong {
    font-size: 48px;
  }

  .codex-edited-lp .hero-date small {
    font-size: 18px;
  }

  .codex-edited-lp .hero-date span {
    margin-inline: 5px;
  }

  .codex-edited-lp .hero-venue {
    font-size: 17px;
    text-align: center;
  }

  .codex-edited-lp .hero-deadline {
    top: 65.15%;
    left: 6.85%;
    width: 86.2%;
    padding: 6px 14px 8px;
  }

  .codex-edited-lp .hero-deadline > strong {
    margin-bottom: 4px;
    padding-block: 2px 3px;
    font-size: 25px;
  }

  .codex-edited-lp .hero-deadline > span {
    font-size: 17px;
  }

  .codex-edited-lp .hero-deadline b {
    font-size: 35px;
  }

  .codex-edited-lp .hero-cta {
    top: 81.35%;
    left: 6.85%;
    width: 86.2%;
    min-height: 8.9%;
    gap: 17px;
    padding: 10px 14px;
    font-size: 27px;
  }

  .codex-edited-lp .hero-cta svg {
    width: 31px;
    height: 31px;
  }
}

@media (max-width: 360px) {
  .codex-edited-lp .hero-announcement {
    font-size: 14px;
  }

  .codex-edited-lp .hero-edition {
    margin-bottom: 2px;
    font-size: 26px;
  }

  .codex-edited-lp .hero-edition strong {
    font-size: 48px;
  }

  .codex-edited-lp .hero-title {
    margin-bottom: 0;
    font-size: 96px;
  }

  .codex-edited-lp .hero-subtitle {
    font-size: 24px;
    line-height: 1.25;
  }

  .codex-edited-lp .hero-date {
    margin-bottom: 10px;
    font-size: 26px;
  }

  .codex-edited-lp .hero-date strong {
    font-size: 42px;
  }

  .codex-edited-lp .hero-date small {
    font-size: 16px;
  }

  .codex-edited-lp .hero-venue {
    font-size: 15px;
  }

  .codex-edited-lp .hero-deadline > strong {
    font-size: 21px;
  }

  .codex-edited-lp .hero-deadline > span {
    font-size: 16px;
  }

  .codex-edited-lp .hero-deadline b {
    font-size: 31px;
  }

  .codex-edited-lp .hero-cta {
    font-size: 21px;
  }
}

/* Browser review: header, benefits, and repeat-return refinements. */
.codex-edited-lp .site-header {
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-bottom-color: var(--line);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.codex-edited-lp .text-accent-red {
  color: var(--red);
}

.codex-edited-lp .text-accent-gold {
  color: var(--gold);
}

.codex-edited-lp .repeat-rate-accent {
  color: var(--red);
}

.codex-edited-lp .benefits-more li {
  padding-left: 24px;
}

.codex-edited-lp .benefits-more li::before {
  top: 0.28em;
  left: 3px;
  width: 6px;
  height: 11px;
  border: 0;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  background: transparent;
  transform: rotate(45deg);
}

.codex-edited-lp .repeat-return-block {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 76px;
}

.codex-edited-lp .repeat-rate-accent {
  white-space: nowrap;
}

.codex-edited-lp .repeat-seven {
  display: inline-block;
  font-size: 1.32em;
  line-height: 0.75;
  transform: translateY(0.04em);
}

.codex-edited-lp .new-year-layout {
  width: min(1180px, calc(100% - 64px));
  max-width: none;
  grid-template-columns: minmax(0, 660px) 1fr;
  justify-content: start;
  gap: 0;
}

.codex-edited-lp .new-year-copy {
  grid-column: 1;
}

.codex-edited-lp .new-year-signature {
  background: linear-gradient(120deg, #781017, #9f1b22 72%, #b1272d);
  box-shadow: 0 14px 34px rgba(120, 16, 23, 0.24);
}

.codex-edited-lp .new-year-signature small {
  color: #d8dadd;
}

.codex-edited-lp .new-year-signature strong {
  color: #ffffff;
}

.codex-edited-lp .new-year-signature span {
  color: rgba(255, 255, 255, 0.84);
}

.codex-edited-lp .benefit-item {
  min-height: 0;
}

.codex-edited-lp .supplied-diagram {
  margin: 64px 0;
}

.codex-edited-lp .supplied-diagram img {
  display: block;
  width: 100%;
  height: auto;
}

.codex-edited-lp .growth-supplied-diagram {
  margin-top: 42px;
}

.codex-edited-lp .learning-supplied-diagram {
  margin-bottom: 42px;
}

@media (max-width: 900px) {
  .codex-edited-lp .new-year-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .codex-edited-lp .repeat-return-block {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 680px) {
  .codex-edited-lp .site-header {
    background: #ffffff;
  }

  .codex-edited-lp .new-year-layout {
    width: min(560px, calc(100% - 36px));
  }

  .codex-edited-lp .supplied-diagram {
    margin-block: 36px;
  }
}

/* 2026-07-16 browser review: responsive typography and connected layouts. */
.codex-edited-lp .text-accent-red {
  color: var(--red) !important;
}

/* Comments 1, 5, 6: explicit desktop/mobile type sizes. */
.codex-edited-lp .new-year-copy h2 {
  font-size: 48px !important;
}

.codex-edited-lp .benefits-note {
  font-size: 16px !important;
}

/* Comments 4, 49: keep every benefit card horizontal and its icon visible. */
.codex-edited-lp .benefit-item {
  position: relative;
  overflow: visible;
  grid-template-columns: 60px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: center;
}

.codex-edited-lp .benefit-item > span:first-child {
  writing-mode: horizontal-tb !important;
  word-break: keep-all;
}

.codex-edited-lp .benefit-item .benefit-icon {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1 / 3;
  flex: 0 0 auto;
}

.codex-edited-lp .benefit-item h3,
.codex-edited-lp .benefit-item p {
  min-width: 0;
  grid-column: 2;
  writing-mode: horizontal-tb !important;
  word-break: normal;
  overflow-wrap: anywhere;
}

.codex-edited-lp .benefit-item:not(:has(.benefit-icon)) h3,
.codex-edited-lp .benefit-item:not(:has(.benefit-icon)) p {
  grid-column: 1 / -1;
}

/* Comment 9: the two relearning cards read as one connected step. */
.codex-edited-lp .learning-reasons {
  position: relative;
  gap: 0;
  overflow: visible;
  color: #ffffff;
  border: 1px solid rgba(180, 184, 188, 0.64);
  background: #102f5f;
  box-shadow: 0 18px 44px rgba(10, 30, 60, 0.14);
}

.codex-edited-lp .learning-reasons > div,
.codex-edited-lp .learning-reasons aside {
  border: 0;
}

.codex-edited-lp .learning-reasons > div {
  position: relative;
  z-index: 2;
  padding-right: 54px;
  color: #ffffff;
  background: linear-gradient(135deg, #176cc5, #0e4e9b);
}

.codex-edited-lp .learning-reasons > div::after {
  position: absolute;
  top: 50%;
  right: -28px;
  z-index: 3;
  width: 56px;
  height: 56px;
  border-top: 1px solid rgba(180, 184, 188, 0.65);
  border-right: 1px solid rgba(180, 184, 188, 0.65);
  background: #0e4e9b;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.codex-edited-lp .learning-reasons aside {
  position: relative;
  z-index: 1;
  padding-left: 58px;
  color: #ffffff;
  background: linear-gradient(135deg, #102f5f, #0a1f42);
}

.codex-edited-lp .learning-reasons h3,
.codex-edited-lp .learning-reasons li b,
.codex-edited-lp .learning-reasons aside strong {
  color: #ffffff;
}

.codex-edited-lp .learning-reasons li,
.codex-edited-lp .learning-reasons li span,
.codex-edited-lp .learning-reasons aside p {
  color: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.2);
}

.codex-edited-lp .learning-reasons .section-kicker,
.codex-edited-lp .learning-reasons li::before,
.codex-edited-lp .learning-reasons aside small {
  color: #d8dadd;
}

/* Comment 11: first-timer indices. */
.codex-edited-lp .first-timer-grid article > b {
  font-size: 64px;
  line-height: 1;
}

/* Comments 12-17: sticky trainer portrait and readable scrolling copy. */
@media (min-width: 901px) {
  .codex-edited-lp .trainer-section {
    grid-template-columns: minmax(360px, 42vw) minmax(0, 1fr);
    align-items: start;
  }

  .codex-edited-lp .trainer-photo {
    position: sticky;
    top: 77px;
    display: grid;
    height: calc(100vh - 77px);
    min-height: 620px;
    grid-template-rows: minmax(0, 1fr) auto;
    align-self: start;
    overflow: hidden;
    background: var(--charcoal);
  }

  .codex-edited-lp .trainer-photo > img {
    min-height: 0;
    object-position: 55% center;
  }

  .codex-edited-lp .trainer-copy {
    width: min(100%, 760px);
    max-width: 760px;
    padding: 80px 64px 100px;
  }
}

.codex-edited-lp .trainer-photo-meta {
  position: relative;
  z-index: 2;
  padding: 18px 28px 20px;
  color: var(--ink);
  border-top: 1px solid var(--gold-deep);
  background: rgba(255, 255, 255, 0.96);
}

.codex-edited-lp .trainer-photo-meta h2 {
  margin: 0;
  font-size: 27px;
}

.codex-edited-lp .trainer-photo-meta .trainer-en,
.codex-edited-lp .trainer-photo-meta .trainer-role {
  display: block;
  margin-top: 5px;
  color: var(--gray);
  font-size: 12px;
}

.codex-edited-lp .trainer-copy h3,
.codex-edited-lp .trainer-copy blockquote {
  font-size: 32px !important;
}

.codex-edited-lp .trainer-stats {
  gap: 10px;
  border: 0;
}

.codex-edited-lp .trainer-stats > div {
  display: grid;
  min-height: 132px;
  grid-template-columns: 30px auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 20px 14px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.codex-edited-lp .trainer-stats > div::before {
  width: 27px;
  height: 27px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}

.codex-edited-lp .trainer-stats > div:nth-child(1)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238b1e1e' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 21V7l8-4 8 4v14'/%3E%3Cpath d='M9 21v-5h6v5M8 9h.01M12 9h.01M16 9h.01M8 12h.01M12 12h.01M16 12h.01'/%3E%3C/svg%3E");
}

.codex-edited-lp .trainer-stats > div:nth-child(2)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238b1e1e' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cellipse cx='12' cy='7' rx='7' ry='3'/%3E%3Cpath d='M5 7v5c0 1.7 3.1 3 7 3s7-1.3 7-3V7M5 12v5c0 1.7 3.1 3 7 3s7-1.3 7-3v-5'/%3E%3C/svg%3E");
}

.codex-edited-lp .trainer-stats > div:nth-child(3)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238b1e1e' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='8' r='3'/%3E%3Ccircle cx='17' cy='9' r='2.5'/%3E%3Cpath d='M3 20c.5-4 2.5-6 6-6s5.5 2 6 6M14 15c3.8-.8 6.4 1 7 5'/%3E%3C/svg%3E");
}

.codex-edited-lp .trainer-stats > div:has(> svg, > i, > .stat-icon)::before {
  display: none;
}

.codex-edited-lp .trainer-stats > div > svg,
.codex-edited-lp .trainer-stats > div > i,
.codex-edited-lp .trainer-stats .stat-icon {
  width: 27px;
  height: 27px;
  color: var(--red);
}

.codex-edited-lp .trainer-stats strong {
  font-size: 32px;
}

.codex-edited-lp .trainer-details summary {
  display: none;
}

.codex-edited-lp .trainer-details .trainer-bio {
  display: block;
  padding-top: 26px;
}

.codex-edited-lp .trainer-details-heading {
  margin: 0;
  padding: 22px 0 14px;
  color: var(--red);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}

/* Comment 18: remove the empty rule to the right of the balance image. */
.codex-edited-lp .balance-legend {
  display: none;
}

.codex-edited-lp .balance-visual {
  grid-template-columns: minmax(0, 1fr);
}

/* Comments 21-22: DAY headers and chapters become one connected route. */
.codex-edited-lp .day-switch {
  max-width: none;
  margin-bottom: 0;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.codex-edited-lp .day-switch > svg {
  display: none;
}

.codex-edited-lp .day-switch > span {
  min-height: 78px;
  padding: 18px 38px;
  color: #ffffff;
  border: 1px solid rgba(180, 184, 188, 0.62);
  background: linear-gradient(135deg, #176cc5, #0e4e9b);
}

.codex-edited-lp .day-switch > span:first-child {
  z-index: 2;
  margin-right: -25px;
  padding-right: 58px;
  clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 50%, calc(100% - 25px) 100%, 0 100%);
}

.codex-edited-lp .day-switch > span:last-child {
  padding-left: 58px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 25px 50%);
  background: linear-gradient(135deg, #143d78, #0a2853);
}

.codex-edited-lp .day-switch b {
  color: #d8dadd;
  font-size: 14px;
}

@media (min-width: 901px) {
  .codex-edited-lp .program-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }
}

.codex-edited-lp .program-card {
  min-height: 260px;
  border-color: #b9c9db;
  border-top: 4px solid #176cc5;
  background: linear-gradient(180deg, #f6faff, #edf4fb);
  box-shadow: none;
}

.codex-edited-lp .program-card:nth-child(n + 3) {
  border-top-color: #143d78;
  background: linear-gradient(180deg, #f1f5fa, #e8eef5);
}

.codex-edited-lp .program-card .program-icon {
  color: #d8dadd;
  border-color: #315d91;
  background: #102f5f;
}

/* The HTML groups each DAY with its two chapters. */
.codex-edited-lp .program-grid.program-days {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.codex-edited-lp .program-day-group {
  position: relative;
  min-width: 0;
}

.codex-edited-lp .program-day-heading {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 16px;
  padding: 18px 38px;
  color: #ffffff;
  border: 1px solid rgba(180, 184, 188, 0.62);
  background: linear-gradient(135deg, #176cc5, #0e4e9b);
}

.codex-edited-lp .program-day-heading b {
  color: #d8dadd;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.codex-edited-lp .program-day-heading span {
  font-family: var(--serif);
  font-size: 15px;
}

.codex-edited-lp .program-day-1 .program-day-heading {
  margin-right: -25px;
  padding-right: 58px;
  clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 50%, calc(100% - 25px) 100%, 0 100%);
}

.codex-edited-lp .program-day-2 .program-day-heading {
  padding-left: 58px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 25px 50%);
  background: linear-gradient(135deg, #143d78, #0a2853);
}

.codex-edited-lp .program-day-chapters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.codex-edited-lp .program-day-2 .program-card {
  border-top-color: #143d78;
  background: linear-gradient(180deg, #f1f5fa, #e8eef5);
}

/* Comments 23, 25: full-bleed venue/experience panels with a CSS fade. */
.codex-edited-lp .venue-experience,
.codex-edited-lp .experience-section {
  min-height: max(720px, 92svh);
}

.codex-edited-lp .experience-section {
  position: relative;
  display: block;
  overflow: hidden;
  isolation: isolate;
  color: #ffffff;
  background: #05080c;
}

.codex-edited-lp .experience-section::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(4, 9, 16, 0.93) 0%, rgba(4, 9, 16, 0.72) 48%, rgba(4, 9, 16, 0.12) 84%);
  pointer-events: none;
  content: "";
}

.codex-edited-lp .experience-image {
  position: absolute;
  inset: 0;
  min-height: 0;
}

.codex-edited-lp .experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.codex-edited-lp .experience-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.5) 47%, rgba(0, 0, 0, 0.12) 100%);
}

.codex-edited-lp .experience-copy {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 64px));
  min-height: max(720px, 92svh);
  max-width: none;
  margin-inline: auto;
  padding: 88px 52% 88px 0;
}

.codex-edited-lp .experience-copy .section-kicker,
.codex-edited-lp .experience-copy h2,
.codex-edited-lp .experience-copy li b {
  color: #ffffff;
}

.codex-edited-lp .experience-copy > p:not(.section-kicker),
.codex-edited-lp .experience-copy li,
.codex-edited-lp .experience-copy li span {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.24);
}

@supports (animation-timeline: view()) {
  .codex-edited-lp .experience-image {
    animation: codex-experience-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 36%;
  }
}

@keyframes codex-experience-fade {
  from {
    opacity: 0.15;
    transform: scale(1.035);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Comment 26: count-up values dominate; labels remain compact. */
.codex-edited-lp .number-grid > div {
  min-height: 210px;
  padding: 24px 10px;
}

.codex-edited-lp .number-grid small {
  margin-bottom: 12px;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.codex-edited-lp .number-grid strong {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1px;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.1;
}

.codex-edited-lp .number-grid .number-value {
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(46px, 4.2vw, 66px);
  font-weight: 400;
  line-height: 0.95;
}

.codex-edited-lp .number-grid .number-prefix,
.codex-edited-lp .number-grid .number-suffix,
.codex-edited-lp .number-grid .number-separator,
.codex-edited-lp .number-grid > div > span {
  font-size: 11px;
}

/* Comments 29-30: one-line audience bar on desktop. */
.codex-edited-lp .audience-note {
  width: min(1120px, calc(100% - 64px));
  max-width: none;
}

.codex-edited-lp .audience-note b {
  font-size: 18px;
  white-space: nowrap;
}

.codex-edited-lp .audience-note span {
  white-space: nowrap;
}

/* Comment 33: online participation reads as a connected color flow. */
.codex-edited-lp .online-flow {
  gap: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(180, 184, 188, 0.62);
  background: #102f5f;
}

.codex-edited-lp .online-flow > div {
  min-height: 116px;
  padding: 22px 26px;
  color: #ffffff;
  background: #176cc5;
}

.codex-edited-lp .online-flow > div:nth-of-type(2) {
  background: #0e4e9b;
}

.codex-edited-lp .online-flow > div:nth-of-type(3) {
  background: #102f5f;
}

.codex-edited-lp .online-flow > div b,
.codex-edited-lp .online-flow > div span {
  color: #d8dadd;
}

.codex-edited-lp .online-flow > div strong {
  color: #ffffff;
}

.codex-edited-lp .online-flow > svg {
  width: 42px;
  height: 116px;
  padding: 9px;
  color: #d8dadd;
  background: linear-gradient(90deg, #176cc5, #0e4e9b);
}

/* Comment 35: the event date is intentionally gothic/sans-serif. */
.codex-edited-lp .overview-list > div:first-child dd b {
  font-family: var(--sans);
  font-weight: 600;
}

.codex-edited-lp .overview-date {
  font-family: var(--sans);
  font-weight: 600;
}

/* Comment 37: the repeat-attendee card becomes a silver feature card. */
.codex-edited-lp .price-card.featured {
  color: #1c1d1e;
  border-color: var(--t2s-red-main);
  background: linear-gradient(145deg, rgba(213, 27, 40, 0.04) 0%, rgba(213, 27, 40, 0.10) 46%, rgba(213, 27, 40, 0.20) 100%), #ffffff;
  box-shadow: 0 22px 52px rgba(139, 30, 30, 0.2);
}

.codex-edited-lp .price-card.featured .price-label {
  border-color: rgba(28, 29, 30, 0.28);
}

.codex-edited-lp .price-card.featured .price-label span,
.codex-edited-lp .price-card.featured .regular-price,
.codex-edited-lp .price-card.featured > p {
  color: rgba(28, 29, 30, 0.72);
}

.codex-edited-lp .price-card.featured .early-price small,
.codex-edited-lp .price-card.featured .early-price strong {
  color: var(--t2s-red-deep);
}

.codex-edited-lp .price-card.featured > p {
  border-color: rgba(28, 29, 30, 0.28);
}

/* Comment 38: distinguish each seating tier without losing the LP palette. */
.codex-edited-lp .seat-list {
  border-top: 0;
}

.codex-edited-lp .seat-list > div {
  margin-bottom: 8px;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-left-width: 5px;
}

/* VIP = ゴールド系（上品な金・金属質感） */
.codex-edited-lp .seat-list > div:nth-child(1) {
  border-color: #c9a24b;
  background: linear-gradient(90deg, #e6d09a 0%, #f7efd9 55%, #ffffff 100%);
}

/* SS = シルバー系（FVのシルバー域） */
.codex-edited-lp .seat-list > div:nth-child(2) {
  border-color: #9aa0a6;
  background: linear-gradient(90deg, #cdd2d7 0%, #eef0f2 55%, #ffffff 100%);
}

/* S = メインレッド基調 */
.codex-edited-lp .seat-list > div:nth-child(3) {
  border-color: var(--t2s-red-main);
  background: linear-gradient(90deg, rgba(213, 27, 40, 0.14), #ffffff);
}

/* A-D = ニュートラルグレー */
.codex-edited-lp .seat-list > div:nth-child(4) {
  border-color: #7b7b76;
  background: linear-gradient(90deg, #e4e4e1, #ffffff);
}

/* GROUP = ボルドー基調 */
.codex-edited-lp .seat-list > div:nth-child(5) {
  border-color: var(--t2s-red-bordeaux);
  background: linear-gradient(90deg, rgba(100, 13, 13, 0.16), #ffffff);
}

/* Comments 39, 51: special-seat CTA width. */
.codex-edited-lp .special-seat > .button {
  width: 250px;
}

/* Comments 40-41: desktop venue-access spacing and heading. */
@media (min-width: 901px) {
  .codex-edited-lp .access-copy {
    padding-right: 0;
    padding-left: 0;
  }

  .codex-edited-lp .access-copy h2 {
    font-size: 38px;
  }
}

/* Comments 44-45: final title and FV-derived deadline panel. */
.codex-edited-lp .final-cta-content h2 {
  font-size: 42px !important;
}

.codex-edited-lp .final-deadline {
  position: relative;
  min-width: 340px;
  padding: 17px 28px;
  border: 1px solid #c9ccd0;
  border-left-width: 4px;
  background: linear-gradient(135deg, rgba(183, 31, 36, 0.94), rgba(62, 0, 1, 0.92));
  box-shadow: inset 0 0 24px rgba(255, 177, 71, 0.12), 0 12px 30px rgba(0, 0, 0, 0.2);
}

.codex-edited-lp .final-deadline span {
  color: #d8dadd;
}

.codex-edited-lp .final-deadline strong {
  color: #ffffff;
}

.codex-edited-lp .final-deadline .final-deadline-label {
  display: block;
  color: #d8dadd;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
}

.codex-edited-lp .final-deadline .final-deadline-date,
.codex-edited-lp .final-deadline .final-deadline-date b {
  display: block;
  margin-top: 5px;
  color: #ffffff;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
}

.codex-edited-lp .footer-brand-logo {
  display: block;
  width: 200px;
  max-width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

@media (max-width: 900px) {
  .codex-edited-lp .trainer-photo {
    position: static;
    display: grid;
    height: auto;
    min-height: 0;
    grid-template-rows: auto auto;
  }

  .codex-edited-lp .trainer-photo > img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }

  .codex-edited-lp .day-switch {
    margin-bottom: 18px;
  }

  .codex-edited-lp .program-grid.program-days {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .codex-edited-lp .program-day-1 .program-day-heading,
  .codex-edited-lp .program-day-2 .program-day-heading {
    margin: 0;
    padding: 18px 28px;
    clip-path: none;
  }
}

@media (max-width: 680px) {
  .codex-edited-lp .new-year-copy h2 {
    font-size: 28px !important;
  }

  .codex-edited-lp .benefits-note {
    font-size: 14px !important;
  }

  .codex-edited-lp .benefit-item {
    grid-template-columns: 50px minmax(0, 1fr);
    padding: 24px 18px;
  }

  .codex-edited-lp .benefit-item .benefit-icon {
    width: 50px;
    height: 50px;
    overflow: visible;
  }

  .codex-edited-lp .benefit-item:not(:has(.benefit-icon)) h3,
  .codex-edited-lp .benefit-item:not(:has(.benefit-icon)) p {
    grid-column: 1 / -1;
  }

  .codex-edited-lp .benefits-conclusion {
    padding-right: 14px;
    padding-left: 14px;
  }

  .codex-edited-lp .benefits-conclusion h3 {
    font-size: 24px !important;
  }

  .codex-edited-lp .learning-reasons > div,
  .codex-edited-lp .learning-reasons aside {
    padding: 30px 22px;
  }

  .codex-edited-lp .learning-reasons > div::after {
    top: auto;
    right: auto;
    bottom: -20px;
    left: 50%;
    width: 40px;
    height: 40px;
    transform: translateX(-50%) rotate(135deg);
  }

  .codex-edited-lp .first-timer-grid article > b {
    font-size: 48px;
  }

  .codex-edited-lp .trainer-photo-meta {
    padding: 16px 20px 18px;
  }

  .codex-edited-lp .trainer-copy h3,
  .codex-edited-lp .trainer-copy blockquote {
    font-size: 28px !important;
  }

  .codex-edited-lp .trainer-stats {
    grid-template-columns: 1fr;
  }

  .codex-edited-lp .trainer-stats > div {
    min-height: 100px;
  }

  .codex-edited-lp .day-switch {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .codex-edited-lp .day-switch > span:first-child,
  .codex-edited-lp .day-switch > span:last-child {
    margin: 0;
    padding: 17px 24px;
    clip-path: none;
  }

  .codex-edited-lp .program-card {
    min-height: 0;
  }

  .codex-edited-lp .program-day-chapters {
    grid-template-columns: 1fr;
  }

  .codex-edited-lp .venue-content {
    width: calc(100% - 32px);
  }

  .codex-edited-lp .venue-content .button {
    width: 100% !important;
  }

  .codex-edited-lp .venue-experience,
  .codex-edited-lp .experience-section,
  .codex-edited-lp .experience-copy {
    min-height: 720px;
  }

  .codex-edited-lp .experience-section::after {
    background: linear-gradient(0deg, rgba(4, 9, 16, 0.96) 0%, rgba(4, 9, 16, 0.76) 66%, rgba(4, 9, 16, 0.28) 100%);
  }

  .codex-edited-lp .experience-image img {
    object-position: 58% center;
  }

  .codex-edited-lp .experience-copy {
    width: calc(100% - 36px);
    justify-content: flex-end;
    padding: 72px 0 48px;
  }

  .codex-edited-lp .number-grid .number-value {
    font-size: 44px;
  }

  .codex-edited-lp .audience-note {
    width: auto;
  }

  .codex-edited-lp .audience-note b,
  .codex-edited-lp .audience-note span {
    white-space: normal;
  }

  .codex-edited-lp .online-flow {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .codex-edited-lp .online-flow > div {
    width: 100%;
    min-height: 104px;
  }

  .codex-edited-lp .online-flow > svg {
    width: 100%;
    height: 34px;
    padding: 7px;
    transform: rotate(90deg);
  }

  .codex-edited-lp .special-seat > .button {
    width: 100%;
  }

  .codex-edited-lp .final-cta-content h2 {
    font-size: 32px !important;
  }

  .codex-edited-lp .final-deadline {
    width: 100%;
    min-width: 0;
  }

  .codex-edited-lp .final-actions,
  .codex-edited-lp .final-actions > .button {
    width: 100%;
  }

  .codex-edited-lp .final-actions {
    flex-direction: column;
  }

  .codex-edited-lp .mobile-sticky-cta > a {
    width: 100%;
    padding-inline: 12px;
    font-size: 14px;
    white-space: nowrap;
  }

  .codex-edited-lp .hero-cta {
    font-size: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .codex-edited-lp .experience-image {
    animation: none;
  }
}

/* Comment 25: venue and experience share one sticky viewport and crossfade in place. */
.codex-edited-lp .venue-experience-stage {
  --experience-progress: 0;
  position: relative;
  display: grid;
  height: 200svh;
  grid-template: 1fr / 1fr;
  isolation: isolate;
  background: #05080c;
}

.codex-edited-lp .venue-experience-stage > .venue-experience,
.codex-edited-lp .venue-experience-stage > .experience-section {
  position: sticky;
  top: 77px;
  grid-area: 1 / 1;
  width: 100%;
  height: calc(100svh - 77px);
  min-height: 0;
  align-self: start;
}

.codex-edited-lp .venue-experience-stage > .venue-experience {
  z-index: 1;
  opacity: calc(1 - var(--experience-progress));
}

.codex-edited-lp .venue-experience-stage > .experience-section {
  z-index: 2;
  opacity: var(--experience-progress);
  pointer-events: none;
}

.codex-edited-lp .venue-experience-stage .experience-image {
  animation: none !important;
}

.codex-edited-lp .venue-experience-stage .experience-copy {
  height: 100%;
  min-height: 0;
}

.codex-edited-lp .venue-experience-stage.is-experience-active > .venue-experience {
  pointer-events: none;
}

.codex-edited-lp .venue-experience-stage.is-experience-active > .experience-section {
  pointer-events: auto;
}

@media (max-width: 680px) {
  .codex-edited-lp .venue-experience-stage {
    height: 190svh;
  }

  .codex-edited-lp .venue-experience-stage > .venue-experience,
  .codex-edited-lp .venue-experience-stage > .experience-section {
    top: 67px;
    height: calc(100svh - 67px);
    min-height: 0;
  }

  .codex-edited-lp .venue-experience-stage .experience-copy {
    min-height: 0;
  }
}

/* 2026-07-16 follow-up review: comments 1-42 */
.codex-edited-lp .benefit-item {
  grid-template-columns: 76px minmax(0, 1fr) !important;
}

.codex-edited-lp .benefit-item > span:first-child {
  left: 10px !important;
  width: 32px !important;
}

.codex-edited-lp .benefit-item .benefit-icon {
  margin-left: 16px;
}

.codex-edited-lp .growth-supplied-diagram {
  margin-bottom: 0 !important;
}

.codex-edited-lp .benefits-note {
  margin-top: 0 !important;
}

.codex-edited-lp .benefits-conclusion .text-accent-red {
  color: var(--t2s-red-main) !important;
}

.codex-edited-lp .benefits-wish-break,
.codex-edited-lp .voices-break-mobile,
.codex-edited-lp .support-break-mobile {
  display: none;
}

.codex-edited-lp .repeat-rate-number {
  font-size: 65px !important;
  line-height: .82;
}

.codex-edited-lp .learning-reasons {
  border: 0 !important;
}

.codex-edited-lp .learning-reasons > div {
  background: linear-gradient(135deg, var(--t2s-red-main), var(--t2s-red-deep)) !important;
  border: 0 !important;
}

.codex-edited-lp .learning-reasons > div::after {
  background: var(--t2s-red-deep) !important;
  border: 0 !important;
}

.codex-edited-lp .learning-reasons > aside {
  background: linear-gradient(145deg, var(--t2s-red-deep) 0%, var(--t2s-red-bordeaux) 100%) !important;
  border: 0 !important;
}

.codex-edited-lp .trainer-copy blockquote {
  text-align: left !important;
}

.codex-edited-lp .trainer-photo-meta {
  background: transparent !important;
  border: 0 !important;
  color: #fff !important;
  padding-inline: 0 !important;
}

.codex-edited-lp .trainer-photo-meta .component-heading {
  color: #fff !important;
}

.codex-edited-lp .trainer-photo-meta .trainer-en {
  color: #c9ccd0 !important;
}

.codex-edited-lp .trainer-photo-meta .trainer-role {
  color: rgba(255,255,255,.9) !important;
  font-size: 14px !important;
}

.codex-edited-lp .trainer-details-expanded .trainer-bio p {
  font-size: 14px !important;
}

.codex-edited-lp .balance-visual {
  display: flex !important;
  justify-content: center;
  align-items: center;
  background: transparent !important;
}

.codex-edited-lp .balance-visual > img {
  width: min(100%, 560px) !important;
  max-width: 560px !important;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  background: transparent !important;
  border: 0 !important;
}

.codex-edited-lp .program-day-heading b,
.codex-edited-lp .program-day-heading span {
  font-size: 18px !important;
}

.codex-edited-lp .program-day-heading {
  background: var(--t2s-red-deep) !important;
  border-color: #c9ccd0 !important;
}

.codex-edited-lp .program-day-2 .program-day-heading {
  background: var(--t2s-red-bordeaux) !important;
}

.codex-edited-lp .program-day-chapters {
  grid-template-columns: 1fr !important;
  grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  height: 100%;
}

.codex-edited-lp .program-day-group {
  display: grid !important;
  grid-template-rows: auto 1fr !important;
}

.codex-edited-lp .program-card {
  height: 100%;
}

.codex-edited-lp .program-card {
  min-height: 220px !important;
  background: #fffaf7 !important;
  border-color: rgba(139,30,30,.28) !important;
  border-top: 3px solid var(--t2s-red-deep) !important;
}

.codex-edited-lp .program-day-2 .program-card {
  border-top-color: var(--t2s-red-bordeaux) !important;
}

.codex-edited-lp .program-icon {
  background: var(--t2s-red-bordeaux) !important;
  border-color: #c9ccd0 !important;
  color: #c9ccd0 !important;
}

.codex-edited-lp #venue .venue-content > .button {
  width: 320px !important;
  max-width: 100%;
}

.codex-edited-lp .experience-copy .text-accent-red {
  color: var(--t2s-red-main) !important;
}

.codex-edited-lp .experience-copy li b {
  font-size: 18px !important;
}

.codex-edited-lp .experience-copy {
  box-sizing: border-box !important;
  width: min(1180px, calc(100% - 64px)) !important;
  max-width: none !important;
  margin-inline: auto !important;
  padding: 56px 55% 56px 0 !important;
  writing-mode: horizontal-tb !important;
}

.codex-edited-lp .experience-copy > * {
  max-width: 520px;
}

.codex-edited-lp .experience-copy .component-heading {
  word-break: normal !important;
  overflow-wrap: normal !important;
}

.codex-edited-lp .number-grid small,
.codex-edited-lp .number-grid > div > span {
  font-size: 14px !important;
}

.codex-edited-lp .number-prefix,
.codex-edited-lp .number-suffix,
.codex-edited-lp .number-separator {
  font-size: 18px !important;
}

.codex-edited-lp .online-flow > div:nth-of-type(1) {
  background: #b4232b !important;
}

.codex-edited-lp .online-flow > div:nth-of-type(2) {
  background: #861820 !important;
}

.codex-edited-lp .online-flow > div:nth-of-type(3) {
  background: #5d0e14 !important;
}

.codex-edited-lp .online-flow > svg {
  background: transparent !important;
  color: #c9ccd0 !important;
}

.codex-edited-lp .online-note {
  font-size: 14px !important;
}

.codex-edited-lp .overview-date,
.codex-edited-lp .overview-date b {
  font: inherit !important;
  font-weight: 400 !important;
  color: inherit !important;
}

.codex-edited-lp .final-deadline.hero-deadline-style {
  width: min(450px, 100%) !important;
  padding: 6px 12px 10px !important;
  background: rgba(0,0,0,.86) !important;
  border: 1px solid #c9ccd0 !important;
  border-left-width: 1px !important;
  color: #c9ccd0 !important;
  box-shadow: none !important;
}

.codex-edited-lp .final-deadline .final-deadline-label {
  display: block !important;
  width: 100%;
  padding: 3px 8px !important;
  background: #7e070b !important;
  color: #c9ccd0 !important;
  text-align: center;
}

.codex-edited-lp .final-deadline .final-deadline-date {
  display: block !important;
  padding-top: 7px;
  color: #c9ccd0 !important;
  text-align: center;
}

.codex-edited-lp .final-deadline .final-deadline-date b {
  color: #c9ccd0 !important;
  font-size: 20px !important;
}

.codex-edited-lp .growth-steps-mobile {
  display: none;
}

.codex-edited-lp .learning-steps-mobile {
  display: none;
}

/* Instant venue/experience cut: never show both panels at once. */
.codex-edited-lp .venue-experience-stage > .venue-experience {
  opacity: 1 !important;
  visibility: visible;
  transition: none !important;
}

.codex-edited-lp .venue-experience-stage > .experience-section {
  opacity: 0 !important;
  visibility: hidden;
  transition: none !important;
}

.codex-edited-lp .venue-experience-stage.is-experience-active > .venue-experience {
  opacity: 0 !important;
  visibility: hidden;
}

.codex-edited-lp .venue-experience-stage.is-experience-active > .experience-section {
  opacity: 1 !important;
  visibility: visible;
}

/* Follow-up: remove the scroll-linked section switch entirely. */
.codex-edited-lp .venue-experience-stage {
  display: block !important;
  height: auto !important;
  background: #05080c;
}

.codex-edited-lp .venue-experience-stage > .venue-experience,
.codex-edited-lp .venue-experience-stage > .experience-section,
.codex-edited-lp .venue-experience-stage.is-experience-active > .venue-experience,
.codex-edited-lp .venue-experience-stage.is-experience-active > .experience-section {
  position: relative !important;
  top: auto !important;
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 100svh !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transition: none !important;
}

@media (max-width: 680px) {
  .codex-edited-lp .new-year-section,
  .codex-edited-lp #about {
    background-attachment: fixed !important;
    background-position: center center !important;
    background-size: cover !important;
  }

  .codex-edited-lp #about {
    background-image: linear-gradient(rgba(247,244,238,.88), rgba(247,244,238,.92)), url("./codex-assets/codex-future-compass.jpg") !important;
  }

  .codex-edited-lp .benefit-item {
    grid-template-columns: 88px minmax(0, 1fr) !important;
  }

  .codex-edited-lp .benefit-item .benefit-icon {
    margin-left: 28px !important;
  }

  .codex-edited-lp .benefits-more-break {
    display: none !important;
  }

  .codex-edited-lp .benefits-wish-break {
    display: inline !important;
  }

  .codex-edited-lp .voices-break-mobile,
  .codex-edited-lp .support-break-mobile {
    display: block !important;
  }

  .codex-edited-lp .trainer-stat-break {
    display: none;
  }

  .codex-edited-lp .trainer-stats span {
    white-space: nowrap;
    font-size: 11px !important;
  }

  .codex-edited-lp .balance-visual > img {
    width: min(88vw, 440px) !important;
  }

  .codex-edited-lp #venue .venue-content > .button {
    width: 100% !important;
  }

  .codex-edited-lp .experience-copy {
    width: calc(100% - 32px) !important;
    padding: 40px 0 36px !important;
  }

  .codex-edited-lp .experience-copy > * {
    max-width: 100%;
  }

  .codex-edited-lp .online-flow {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    overflow: hidden !important;
    border: 0 !important;
  }

  .codex-edited-lp .online-flow > div {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 112px;
  }

  .codex-edited-lp .online-flow > svg {
    width: 34px !important;
    height: 34px !important;
    margin: -2px auto !important;
    padding: 7px !important;
    transform: rotate(90deg) !important;
    background: transparent !important;
    border-radius: 0;
  }

  .codex-edited-lp .final-deadline.hero-deadline-style {
    width: 100% !important;
  }

  .codex-edited-lp .repeat-rate-number {
    font-size: 56px !important;
  }
}

/* Final review overrides: keep these last so editor/review rules cannot win. */
.codex-edited-lp #trainer .trainer-photo .trainer-photo-meta {
  background-color: #181818 !important;
  background-image: none !important;
  border: 0 !important;
}

.codex-edited-lp main#main .section.online-section .online-flow {
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.codex-edited-lp main#main .section.online-section .online-flow > svg {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border-block: 0 !important;
}

.codex-edited-lp main#main .section.online-section .online-flow > div {
  border-block: 0 !important;
}

@media (min-width: 681px) {
  .codex-edited-lp .experience-section .experience-copy {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    width: min(1180px, calc(100% - 64px)) !important;
    max-width: none !important;
    min-height: max(720px, 92svh) !important;
    margin-inline: auto !important;
    padding: 72px 0 !important;
  }

  .codex-edited-lp .experience-section .experience-copy > * {
    box-sizing: border-box !important;
    width: min(520px, 46vw) !important;
    max-width: 520px !important;
    min-width: 0 !important;
  }

  .codex-edited-lp .experience-section .experience-copy .component-heading {
    word-break: keep-all !important;
    overflow-wrap: normal !important;
  }
}

/* Mobile readability: keep text natural and let wide diagrams remain legible. */
@media (max-width: 680px) {
  .codex-edited-lp {
    overflow-x: clip;
  }

  .codex-edited-lp .codex-break-all {
    display: none;
  }

  .codex-edited-lp .section-heading .component-heading,
  .codex-edited-lp .new-year-heading,
  .codex-edited-lp .benefits-conclusion h3 {
    font-size: clamp(26px, 7.2vw, 32px) !important;
    line-height: 1.42 !important;
    letter-spacing: .015em;
  }

  .codex-edited-lp .section-heading > p,
  .codex-edited-lp .lead,
  .codex-edited-lp .benefits-conclusion > p {
    line-height: 1.9;
  }

  .codex-edited-lp .supplied-diagram {
    width: calc(100% + 32px);
    margin-inline: -16px;
    padding: 0 16px 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-color: rgba(126, 7, 11, .55) transparent;
  }

  .codex-edited-lp .supplied-diagram img {
    width: 680px;
    max-width: none;
    min-width: 680px;
  }

  .codex-edited-lp .growth-supplied-diagram {
    width: 100%;
    margin-inline: 0;
    padding: 0;
    overflow: visible;
  }

  .codex-edited-lp .growth-supplied-diagram > img,
  .codex-edited-lp .growth-supplied-diagram .diagram-scroll-hint {
    display: none;
  }

  .codex-edited-lp .learning-supplied-diagram {
    width: 100%;
    margin-inline: 0;
    padding: 0;
    overflow: visible;
  }

  .codex-edited-lp .learning-supplied-diagram > img,
  .codex-edited-lp .learning-supplied-diagram .diagram-scroll-hint {
    display: none;
  }

  .codex-edited-lp .growth-steps-mobile {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: growth-step;
  }

  .codex-edited-lp .growth-steps-mobile li {
    position: relative;
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    grid-template-areas: "step title" "step description";
    column-gap: 14px;
    min-height: 122px;
    padding: 20px 20px 20px 16px;
    color: #171313;
    background: linear-gradient(105deg, rgba(213, 27, 40, 0.05), rgba(213, 27, 40, 0.16)), #ffffff;
    border-left: 4px solid var(--t2s-red-deep);
    border-radius: 3px;
  }

  .codex-edited-lp .growth-steps-mobile li:not(:last-child)::after {
    position: absolute;
    z-index: 1;
    bottom: -17px;
    left: 50%;
    width: 22px;
    height: 22px;
    background: var(--t2s-red-deep);
    border-right: 3px solid #f7f4ee;
    border-bottom: 3px solid #f7f4ee;
    content: "";
    transform: translateX(-50%) rotate(45deg);
  }

  .codex-edited-lp .growth-steps-mobile li:not(:last-child)::before {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: -12px;
    left: 0;
    width: 10px;
    height: 10px;
    margin: auto;
    background: #f7f4ee;
    border-radius: 50%;
    content: "";
  }

  .codex-edited-lp .growth-steps-mobile li:nth-child(2) { background: linear-gradient(105deg, rgba(213, 27, 40, 0.10), rgba(213, 27, 40, 0.26)), #ffffff; }
  .codex-edited-lp .growth-steps-mobile li:nth-child(3) { background: linear-gradient(105deg, rgba(213, 27, 40, 0.16), rgba(213, 27, 40, 0.40)), #ffffff; }
  .codex-edited-lp .growth-steps-mobile li:nth-child(4) { color: #fff; background: linear-gradient(105deg, var(--t2s-red-main), var(--t2s-red-deep)); }
  .codex-edited-lp .growth-steps-mobile li:nth-child(5) { color: #fff; background: linear-gradient(105deg, var(--t2s-red-deep), var(--t2s-red-bordeaux)); }
  .codex-edited-lp .growth-steps-mobile li:nth-child(6) { color: #fff; background: linear-gradient(105deg, var(--t2s-red-bordeaux), #4a0808); }

  .codex-edited-lp .growth-steps-mobile li:nth-child(1)::after { background: rgba(213, 27, 40, 0.45); }
  .codex-edited-lp .growth-steps-mobile li:nth-child(2)::after { background: rgba(213, 27, 40, 0.6); }
  .codex-edited-lp .growth-steps-mobile li:nth-child(3)::after { background: rgba(213, 27, 40, 0.78); }
  .codex-edited-lp .growth-steps-mobile li:nth-child(4)::after { background: var(--t2s-red-main); }
  .codex-edited-lp .growth-steps-mobile li:nth-child(5)::after { background: var(--t2s-red-deep); }

  .codex-edited-lp .growth-steps-mobile span {
    grid-area: step;
    align-self: start;
    color: inherit;
    font-family: var(--display);
    font-size: 12px;
    letter-spacing: .08em;
    line-height: 1.1;
  }

  .codex-edited-lp .growth-steps-mobile span b {
    display: block;
    margin-top: 3px;
    font-size: 42px;
    font-weight: 400;
    letter-spacing: 0;
  }

  .codex-edited-lp .growth-steps-mobile strong {
    grid-area: title;
    align-self: end;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(159, 119, 27, .68);
    color: inherit;
    font-family: var(--serif);
    font-size: 23px;
    font-weight: 500;
    line-height: 1.35;
  }

  .codex-edited-lp .growth-steps-mobile li:nth-child(n + 4) strong {
    border-color: rgba(216, 218, 221, .7);
  }

  .codex-edited-lp .growth-steps-mobile small {
    grid-area: description;
    align-self: start;
    padding-top: 12px;
    color: inherit;
    font-family: var(--serif);
    font-size: 15px;
    line-height: 1.55;
  }

  .codex-edited-lp .learning-steps-mobile {
    display: grid;
    gap: 3px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .codex-edited-lp .learning-steps-mobile li {
    position: relative;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    box-sizing: border-box;
    min-height: 56px;
    padding: 12px 16px;
    color: #fff;
    background: linear-gradient(105deg, #292929, #111);
    border-left: 3px solid #b78b36;
    border-radius: 2px 4px 4px 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
  }

  .codex-edited-lp .learning-steps-mobile li:nth-child(1) { width: 82%; }
  .codex-edited-lp .learning-steps-mobile li:nth-child(2) { width: 82%; margin-left: 2%; background: linear-gradient(105deg, #2b2929, #171415); }
  .codex-edited-lp .learning-steps-mobile li:nth-child(3) { width: 82%; margin-left: 4%; background: linear-gradient(105deg, #302829, #1e1618); }
  .codex-edited-lp .learning-steps-mobile li:nth-child(4) { width: 82%; margin-left: 6%; background: linear-gradient(105deg, #36292b, #261719); }
  .codex-edited-lp .learning-steps-mobile li:nth-child(5) { width: 82%; margin-left: 8%; background: linear-gradient(105deg, #41292b, #301719); }
  .codex-edited-lp .learning-steps-mobile li:nth-child(6) { width: 82%; margin-left: 10%; background: linear-gradient(105deg, #4c292b, #3b181b); }
  .codex-edited-lp .learning-steps-mobile li:nth-child(7) { width: 82%; margin-left: 12%; background: linear-gradient(105deg, #59282b, #47171b); }
  .codex-edited-lp .learning-steps-mobile li:nth-child(8) { width: 82%; margin-left: 14%; background: linear-gradient(105deg, #67262a, #54151a); }
  .codex-edited-lp .learning-steps-mobile li:nth-child(9) { width: 82%; margin-left: 16%; background: linear-gradient(105deg, #742329, #621219); }
  .codex-edited-lp .learning-steps-mobile li:nth-child(10) { width: 82%; margin-left: 18%; background: linear-gradient(105deg, #822027, #6e0e16); }

  .codex-edited-lp .learning-steps-mobile li:not(:last-child)::after {
    position: absolute;
    z-index: 1;
    bottom: -12px;
    left: 50%;
    width: 16px;
    height: 16px;
    background: #3a2022;
    border-right: 2px solid #f7f4ee;
    border-bottom: 2px solid #f7f4ee;
    content: "";
    transform: translateX(-50%) rotate(45deg);
  }

  .codex-edited-lp .learning-steps-mobile b {
    color: #e5bb5b;
    font-family: var(--display);
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
  }

  .codex-edited-lp .learning-steps-mobile b::before {
    margin-right: 5px;
    content: "STEP";
    font-size: 10px;
    letter-spacing: .06em;
    vertical-align: middle;
  }

  .codex-edited-lp .learning-steps-mobile span {
    color: inherit;
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 500;
    line-height: 1.35;
  }

  .codex-edited-lp .diagram-scroll-hint {
    display: block;
    position: sticky;
    left: 16px;
    width: max-content;
    margin-top: 10px;
    color: var(--gray);
    font-size: 12px;
    line-height: 1.5;
  }

  .codex-edited-lp .number-grid > div {
    min-height: 138px;
    padding: 18px 8px;
  }

  .codex-edited-lp .number-grid strong {
    font-size: clamp(24px, 7.2vw, 30px) !important;
  }

  .codex-edited-lp .number-grid small,
  .codex-edited-lp .number-grid > div > span {
    font-size: 11px !important;
    line-height: 1.45;
  }

  .codex-edited-lp .seat-map {
    overflow: visible;
  }

  .codex-edited-lp .seat-map img {
    display: block;
    width: 100%;
  }

  .codex-edited-lp #trainer .trainer-photo {
    width: auto;
    margin-inline: 16px;
    overflow: hidden;
    border-radius: 4px;
  }

  .codex-edited-lp .briefing-thumbnail-label {
    top: 16px;
    left: 16px;
    padding: 8px 11px;
    font-size: 15px;
  }

  .codex-edited-lp .final-actions,
  .codex-edited-lp .inline-cta,
  .codex-edited-lp .center-actions {
    gap: 12px;
  }

  .codex-edited-lp .final-actions .button,
  .codex-edited-lp .inline-cta .button,
  .codex-edited-lp .center-actions .button {
    min-height: 54px;
    line-height: 1.35;
    white-space: normal;
  }
}

/* Tablet overflow guard: keep the audience note and online flow inside the viewport. */
@media (min-width: 681px) and (max-width: 900px) {
  .codex-edited-lp .audience-note {
    box-sizing: border-box;
    width: calc(100% - 36px) !important;
    max-width: calc(100% - 36px) !important;
    margin-right: 18px !important;
    margin-left: 18px !important;
  }

  .codex-edited-lp .audience-note b,
  .codex-edited-lp .audience-note span {
    width: 100%;
    min-width: 0;
    white-space: normal !important;
    overflow-wrap: anywhere;
  }

  .codex-edited-lp .online-flow {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    overflow: hidden !important;
  }

  .codex-edited-lp .online-flow > div {
    box-sizing: border-box;
    width: 100% !important;
    min-width: 0 !important;
  }

  .codex-edited-lp .online-flow > svg {
    display: block;
    width: 34px !important;
    height: 34px !important;
    margin: -2px auto !important;
    padding: 7px !important;
    transform: rotate(90deg) !important;
  }

  .codex-edited-lp .learning-reasons {
    overflow: hidden;
  }

  .codex-edited-lp .learning-reasons > div::after {
    top: auto;
    right: auto;
    bottom: -20px;
    left: 50%;
    width: 40px;
    height: 40px;
    transform: translateX(-50%) rotate(135deg);
  }
}

/* Review items 3-9: hero message, clearer supporting copy, and readable labels. */
.codex-edited-lp .hero-message {
  position: absolute;
  top: 48.5%;
  left: 3.8%;
  display: flex;
  width: 38%;
  flex-direction: column;
  gap: 4px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .75);
}

.codex-edited-lp .hero-message strong {
  color: #fff;
  font-size: clamp(18px, 1.65vw, 28px);
  font-weight: 500;
  line-height: 1.35;
}

.codex-edited-lp .hero-message span {
  color: #e8c36d;
  font-size: clamp(13px, 1vw, 17px);
  line-height: 1.45;
}

.codex-edited-lp .hero-details {
  top: 60%;
}

.codex-edited-lp .hero-deadline {
  top: 74.5%;
}

.codex-edited-lp .hero-cta {
  top: 89.5%;
}

.codex-edited-lp .overview-date {
  display: grid;
  gap: 5px;
}

.codex-edited-lp .price-early-reason,
.codex-edited-lp .briefing-discount-note {
  display: block;
  color: #d8dadd;
  font-weight: 600;
}

.codex-edited-lp .price-early-reason {
  margin-bottom: 5px;
}

.codex-edited-lp .briefing-discount-note {
  margin-top: 12px;
  color: #8b1e1e;
}

.codex-edited-lp .number-grid small,
.codex-edited-lp .number-grid > div > span {
  font-size: 13px !important;
  line-height: 1.45;
}

@media (min-width: 681px) and (max-width: 900px) {
  .codex-edited-lp .hero {
    aspect-ratio: 1.48 / 1;
  }

  .codex-edited-lp .hero-message {
    top: 43%;
    width: 40%;
    gap: 2px;
  }

  .codex-edited-lp .hero-message strong {
    font-size: 16px;
  }

  .codex-edited-lp .hero-message span {
    font-size: 11.5px;
    white-space: nowrap;
  }

  .codex-edited-lp .hero-details {
    top: 57%;
  }

  .codex-edited-lp .hero-deadline {
    top: 72%;
  }

  .codex-edited-lp .hero-cta {
    top: 86%;
  }
}

@media (max-width: 680px) {
  .codex-edited-lp .hero-brand-block {
    top: 18%;
  }

  .codex-edited-lp .hero-title {
    font-size: 108px;
  }

  .codex-edited-lp .hero-subtitle {
    font-size: 24px;
  }

  .codex-edited-lp .hero-message {
    top: 47.5%;
    left: 6.85%;
    width: 86.2%;
    gap: 3px;
    text-align: center;
  }

  .codex-edited-lp .hero-message strong {
    font-size: 18px;
    line-height: 1.3;
  }

  .codex-edited-lp .hero-message span {
    font-size: clamp(11px, 3vw, 12px);
    line-height: 1.4;
    white-space: nowrap;
  }

  .codex-edited-lp .hero-details {
    top: 57.5%;
    padding-top: 14px;
  }

  .codex-edited-lp .hero-date {
    margin-bottom: 10px;
  }

  .codex-edited-lp .hero-deadline {
    top: 70%;
  }

  .codex-edited-lp .hero-cta {
    top: 84.5%;
  }

  .codex-edited-lp .number-grid small,
  .codex-edited-lp .number-grid > div > span {
    font-size: 12px !important;
  }
}

@media (max-width: 360px) {
  .codex-edited-lp .hero-title {
    font-size: 92px;
  }

  .codex-edited-lp .hero-subtitle {
    font-size: 22px;
  }

  .codex-edited-lp .hero-message strong {
    font-size: 16px;
  }

  .codex-edited-lp .hero-message span {
    font-size: 10.5px;
  }
}

/* Mobile visual polish: clearer hierarchy, balanced centering and readable copy. */
.codex-edited-lp .benefits-note > strong,
.codex-edited-lp .benefits-note > span {
  display: block;
}

.codex-edited-lp .benefits-note > span {
  margin-top: 14px;
}

.codex-edited-lp .hero-message-break {
  display: none;
}

.codex-edited-lp .program-lead-break {
  display: none;
}

.codex-edited-lp .experience-duration {
  white-space: nowrap;
}

@media (max-width: 680px) {
  .codex-edited-lp .benefits-note {
    box-sizing: border-box;
    width: 100%;
    margin: 30px auto 0 !important;
    padding: 25px 16px 24px;
    border-top: 1px solid rgba(159, 119, 27, 0.38);
    border-bottom: 1px solid rgba(159, 119, 27, 0.38);
    background: linear-gradient(135deg, rgba(255, 250, 241, 0.98), rgba(247, 240, 226, 0.72));
    box-shadow: 0 12px 30px rgba(78, 49, 27, 0.07);
    text-align: center;
  }

  .codex-edited-lp .benefits-note strong {
    display: block;
    color: #8b1e1e;
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.75;
  }

  .codex-edited-lp .benefits-note span {
    display: block;
    margin-top: 15px;
    color: #292929;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.9;
  }

  .codex-edited-lp .learning-steps-mobile {
    gap: 8px;
  }

  .codex-edited-lp .learning-steps-mobile li,
  .codex-edited-lp .learning-steps-mobile li:nth-child(n) {
    width: 100%;
    margin-left: 0;
  }

  .codex-edited-lp .learning-steps-mobile li:not(:last-child)::after {
    bottom: -13px;
  }

  .codex-edited-lp .online-copy {
    text-align: left;
  }

  .codex-edited-lp .online-copy .section-kicker {
    justify-content: flex-start;
  }

  .codex-edited-lp .online-copy h2 {
    margin-right: 0;
    margin-left: 0;
    font-size: clamp(31px, 9vw, 38px);
    line-height: 1.55;
    text-wrap: balance;
  }

  .codex-edited-lp .online-intro-copy {
    max-width: 34em;
    margin-right: auto;
    margin-left: auto;
    color: #292929;
    font-size: 16px;
    line-height: 2;
    text-align: left;
  }

  .codex-edited-lp .online-intro-copy strong {
    color: #8b1e1e;
    font-weight: 700;
  }

  .codex-edited-lp .support-section .section-heading {
    text-align: center;
  }

  .codex-edited-lp .support-section .section-kicker {
    justify-content: center;
  }

  .codex-edited-lp .support-section .section-heading h2 {
    max-width: 11em;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(28px, 8vw, 34px) !important;
    line-height: 1.55 !important;
    text-wrap: balance;
  }

  .codex-edited-lp .final-cta-section,
  .codex-edited-lp .final-cta-content {
    min-height: 680px;
  }

  .codex-edited-lp .final-cta-content {
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    padding: 88px 18px 94px !important;
    text-align: center;
  }

  .codex-edited-lp .final-cta-content .section-kicker {
    justify-content: center;
    text-align: center;
  }

  .codex-edited-lp .final-cta-content h2 {
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(30px, 8.8vw, 36px) !important;
    line-height: 1.55;
    text-wrap: balance;
  }

  .codex-edited-lp .final-deadline,
  .codex-edited-lp .final-actions {
    box-sizing: border-box;
    width: min(100%, 420px);
    margin-right: auto;
    margin-left: auto;
  }

  .codex-edited-lp .footer-inner {
    justify-items: center;
    padding: 56px 20px 48px;
    gap: 34px;
    text-align: center;
  }

  .codex-edited-lp .footer-brand,
  .codex-edited-lp .footer-company {
    width: 100%;
    text-align: center;
  }

  .codex-edited-lp .footer-brand-logo {
    margin-right: auto;
    margin-left: auto;
  }

  .codex-edited-lp .footer-links {
    width: min(100%, 320px);
    justify-items: center;
    gap: 18px 28px;
    font-size: 14px;
    text-align: center;
  }

  .codex-edited-lp .footer-company span {
    margin-top: 0;
    font-size: 13px;
  }

  .codex-edited-lp .voice-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .codex-edited-lp .voice-tabs button {
    box-sizing: border-box;
    min-width: 0;
    min-height: 72px;
    gap: 7px;
    padding: 10px 8px;
  }

  .codex-edited-lp .voice-tabs button svg {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
  }

  .codex-edited-lp .voice-tabs button span {
    min-width: 0;
    font-size: 12px;
    line-height: 1.45;
  }

  .codex-edited-lp .voice-tabs button b {
    margin-bottom: 2px;
    font-size: 14px;
    line-height: 1.35;
    white-space: nowrap;
  }

  .codex-edited-lp #trainer .trainer-photo .trainer-photo-meta {
    box-sizing: border-box;
    width: 100%;
    padding: 24px 22px 26px !important;
    text-align: center;
  }

  .codex-edited-lp #trainer .trainer-photo .trainer-photo-meta h2,
  .codex-edited-lp #trainer .trainer-photo .trainer-photo-meta .trainer-en,
  .codex-edited-lp #trainer .trainer-photo .trainer-photo-meta .trainer-role {
    margin-right: auto;
    margin-left: auto;
  }

  .codex-edited-lp #trainer .trainer-photo .trainer-photo-meta .trainer-role {
    margin-top: 10px;
    line-height: 1.75;
  }

  .codex-edited-lp .repeat-return-line {
    display: inline-block;
    /* nowrapの1行が画面内に必ず収まるよう、画面幅連動でサイズを決める（14文字想定） */
    font-size: clamp(19px, 6.4vw, 29px);
    white-space: nowrap;
    max-width: 100%;
  }

  .codex-edited-lp .benefits-section .benefits-heading-break {
    display: block !important;
  }

  .codex-edited-lp .benefits-section .benefits-heading-line {
    display: inline-block;
    white-space: nowrap;
  }

  .codex-edited-lp #about .section-heading h2 {
    font-size: clamp(23px, 6.8vw, 28px) !important;
    line-height: 1.5 !important;
  }

  .codex-edited-lp #about .about-heading-break {
    display: block !important;
  }

  .codex-edited-lp #about .about-heading-line {
    display: inline-block;
    white-space: nowrap;
  }

  .codex-edited-lp .hero-message {
    top: 47%;
    box-sizing: border-box;
    gap: 7px;
    padding: 0 8px;
  }

  .codex-edited-lp .hero-message strong {
    font-size: clamp(22px, 6.4vw, 25px);
    font-weight: 600;
    line-height: 1.32;
  }

  .codex-edited-lp .hero-message span {
    font-size: clamp(14px, 4vw, 16px);
    font-weight: 600;
    line-height: 1.5;
    white-space: normal;
  }

  .codex-edited-lp .hero-message-break {
    display: block;
  }

  .codex-edited-lp .hero-details {
    top: 62%;
  }

  .codex-edited-lp .hero-deadline {
    top: 74%;
  }

  .codex-edited-lp .hero-cta {
    top: 87%;
  }

  .codex-edited-lp .learning-steps-mobile > li,
  .codex-edited-lp .learning-steps-mobile > li:nth-child(n) {
    width: 100% !important;
    max-width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    justify-self: stretch;
    transform: none !important;
  }

  .codex-edited-lp #program .program-lead-break {
    display: block;
  }

  .codex-edited-lp #program .program-lead-line {
    display: inline-block;
    white-space: nowrap;
  }

  .codex-edited-lp .experience-copy h2 {
    font-size: clamp(23px, 6.8vw, 28px) !important;
    line-height: 1.5 !important;
  }

  .codex-edited-lp .experience-copy .experience-heading-break {
    display: block !important;
  }

  .codex-edited-lp .experience-copy .experience-heading-line {
    display: inline-block;
    white-space: nowrap;
  }

  .codex-edited-lp .access-copy h2 {
    font-size: clamp(23px, 6.5vw, 27px) !important;
    line-height: 1.55 !important;
  }

  .codex-edited-lp .access-copy .access-heading-break {
    display: block !important;
  }

  .codex-edited-lp .access-copy .access-heading-line {
    display: inline-block;
    white-space: nowrap;
  }

  .codex-edited-lp .support-section .support-heading-break {
    display: block !important;
  }

  .codex-edited-lp .support-section .support-heading-line {
    display: inline-block;
    white-space: nowrap;
  }

  .codex-edited-lp .final-cta-content .final-cta-kicker {
    width: 100%;
    justify-content: center;
    font-size: 14px !important;
    line-height: 1.55;
    text-align: center;
  }

  .codex-edited-lp .final-cta-content .final-cta-kicker span {
    display: block;
    white-space: nowrap;
  }

  .codex-edited-lp .final-cta-content h2 {
    font-size: clamp(27px, 8vw, 30px) !important;
    line-height: 1.55;
  }

  .codex-edited-lp .final-cta-content .final-heading-break {
    display: block !important;
  }

  .codex-edited-lp .final-cta-content .final-heading-line {
    display: inline-block;
    white-space: nowrap;
  }
}

/* Final readability pass: give the key promises and learning guidance enough
   visual weight to be read comfortably without enlarging decorative labels. */
@media (min-width: 901px) {
  .codex-edited-lp .hero-message {
    top: 47.5%; /* 43.5%だとロゴ下のTakahashi 2days Seminarと重なるため */
    gap: 6px;
    width: 50%; /* 見出しを1行に収めて、下の開催日ブロックとの重なりを防ぐ */
  }

  .codex-edited-lp .hero-message strong {
    font-size: clamp(24px, 2.2vw, 30px);
    font-weight: 600;
    line-height: 1.32;
    white-space: nowrap;
  }

  .codex-edited-lp .hero-message strong br {
    display: none; /* PCは1行で表示（改行はスマホ用） */
  }

  .codex-edited-lp .hero-message span {
    font-size: clamp(17px, 1.5vw, 21px);
    font-weight: 600;
    line-height: 1.55;
  }

  .codex-edited-lp .hero-deadline {
    padding: 6px 14px 7px;
  }

  .codex-edited-lp .hero-cta {
    top: 88.5%;
  }

  .codex-edited-lp .benefits-note {
    max-width: 920px;
    font-size: 20px !important;
    line-height: 1.8;
  }

  .codex-edited-lp .benefits-note strong {
    color: #8b1e1e;
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.55;
  }

  .codex-edited-lp .benefits-note span {
    margin-top: 14px;
  }

  .codex-edited-lp .learning-reasons h3 {
    font-size: 32px;
  }

  .codex-edited-lp .learning-reasons li {
    min-height: 76px;
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .codex-edited-lp .learning-reasons li::before {
    font-size: 24px;
  }

  .codex-edited-lp .learning-reasons li b {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.45;
  }

  .codex-edited-lp .learning-reasons li span {
    margin-top: 3px;
    font-size: 16px;
    line-height: 1.65;
  }

  .codex-edited-lp .learning-reasons aside strong {
    font-size: 28px;
    line-height: 1.5;
  }

  .codex-edited-lp .learning-reasons aside p {
    font-size: 17px;
    line-height: 1.75;
  }
}

@media (max-width: 680px) {
  .codex-edited-lp .learning-reasons li b {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
  }

  .codex-edited-lp .learning-reasons li span,
  .codex-edited-lp .learning-reasons aside p {
    font-size: 14px;
    line-height: 1.7;
  }
}

@media (min-width: 681px) {
  .codex-edited-lp #trainer .trainer-photo .trainer-photo-meta {
    padding: 18px 28px 20px !important;
  }
}

/* Enlarge the smallest reading text while leaving decorative labels and
   section markers at their established scale. */
@media (min-width: 681px) {
  .codex-edited-lp .section p:not(.section-kicker):not(.benefits-note):not(.number-note):not(.card-en),
  .codex-edited-lp .section li span,
  .codex-edited-lp .section article > span {
    font-size: 17px !important;
    line-height: 1.8;
  }

  .codex-edited-lp .trainer-details-expanded .trainer-bio p,
  .codex-edited-lp .learning-reasons aside p {
    font-size: 18px !important;
  }
}

@media (max-width: 680px) {
  .codex-edited-lp .section p:not(.section-kicker):not(.benefits-note):not(.number-note):not(.card-en),
  .codex-edited-lp .section li span,
  .codex-edited-lp .section article > span {
    font-size: 16px !important;
    line-height: 1.75;
  }

  .codex-edited-lp .trainer-details-expanded .trainer-bio p,
  .codex-edited-lp .learning-reasons aside p {
    font-size: 16px !important;
  }
}

/* Typography audit: promote reading copy while keeping legal notes compact. */
.codex-edited-lp .program-card > span,
.codex-edited-lp .price-card > p,
.codex-edited-lp .briefing-copy > p,
.codex-edited-lp .online-note {
  font-size: 16px !important;
  line-height: 1.7 !important;
}

.codex-edited-lp .seat-list span {
  font-size: 15px !important;
  line-height: 1.7 !important;
}

.codex-edited-lp .seat-list span > small {
  font-size: 13px !important;
  line-height: 1.6 !important;
}

.codex-edited-lp .seat-map > small,
.codex-edited-lp .price-note,
.codex-edited-lp .data-note,
.codex-edited-lp .number-note {
  font-size: 13px !important;
  line-height: 1.7 !important;
}

.codex-edited-lp .trainer-stats span,
.codex-edited-lp .voice-tabs button span {
  font-size: 14px !important;
  line-height: 1.55 !important;
}

.codex-edited-lp .number-grid small,
.codex-edited-lp .number-grid > div > span {
  font-size: 13px !important;
  line-height: 1.5 !important;
}

.codex-edited-lp .price-card > p:first-of-type,
.codex-edited-lp .briefing-discount-note {
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.7 !important;
}

@media (min-width: 681px) {
  .codex-edited-lp .hero-cta {
    white-space: nowrap;
  }

  .codex-edited-lp .hero-cta::after {
    right: 14%;
    bottom: 1px;
    left: 14%;
  }
}

/* ===== 可読性最終調整（2026-07-17 ノーミス指摘反映） ===== */
/* 残っていた12px/14pxの本文・重要情報を引き上げる。見出し・英字ラベルは対象外 */

/* 10ステップ図の補足（SNSや勉強会で〜／成長そのものを楽しむ 等） */
.codex-edited-lp .learning-outcomes div span {
  font-size: 14px;
  line-height: 1.6;
}

/* 参加者の声：名前と見出し */
.codex-edited-lp .voice-player .voice-meta small {
  font-size: 14px;
}
.codex-edited-lp .voice-player .voice-meta h3 {
  font-size: 16px;
  line-height: 1.6;
}

/* 参加者の声：セクション共通の注記 */
.codex-edited-lp .voices-section .audience-note span {
  font-size: 14px;
  line-height: 1.7;
}

/* 特別席への誘導文（コンバージョン文言） */
.codex-edited-lp .special-seat div span {
  font-size: 15px;
  line-height: 1.7;
}

/* 会場アクセスの案内 */
.codex-edited-lp .access-copy small {
  font-size: 13px;
  line-height: 1.7;
}

/* フッター最終CTAの締切表示（12日間限定 最安値／先行価格は） */
.codex-edited-lp .final-deadline .final-deadline-label span,
.codex-edited-lp .final-deadline .final-deadline-prefix {
  font-size: 15px;
}

/* 「さらに、こんな変化も」リスト */
.codex-edited-lp .benefits-more ul li {
  font-size: 15px;
  line-height: 1.7;
}

/* オープニング動画のタイトル */
.codex-edited-lp .opening-grid article h3 {
  font-size: 16px;
  line-height: 1.6;
}

/* 開催概要の表（開催日時・会場など中核情報） */
.codex-edited-lp .overview-list dt,
.codex-edited-lp .overview-list dd {
  font-size: 16px;
  line-height: 1.7;
}

/* 価格カード：区分ラベルと定価（対比訴求） */
.codex-edited-lp .price-card .price-label span {
  font-size: 15px;
}
.codex-edited-lp .price-card .regular-price {
  font-size: 16px;
}

/* 座席エリア：列表示（最前列 1-3列 等） */
.codex-edited-lp .seat-list span strong {
  font-size: 15px;
}

/* 開催日時（.overview-date）は font:inherit!important で固定されているため、後勝ちで16pxに */
.codex-edited-lp .overview-date {
  font-size: 16px !important;
}

/* フッターのリンクと主催表記 */
.codex-edited-lp .site-footer .footer-links a,
.codex-edited-lp .site-footer .footer-company span,
.codex-edited-lp .site-footer .footer-inner small {
  font-size: 13px;
}

/* 8つの効果カード：イラストアイコン（SVG→PNG差し替え対応） */
.codex-edited-lp .benefit-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
}
@media (max-width: 680px) {
  .codex-edited-lp .benefit-icon img {
    width: 42px;
    height: 42px;
  }
}


/* 再受講セクション：グリッド列が内容幅で広がってoverflow:hiddenに切られるのを防ぐ */
@media (max-width: 680px) {
  .codex-edited-lp .repeat-evolution-block,
  .codex-edited-lp .repeat-return-block {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* 320px級の狭い端末でnowrap行がはみ出さないよう、画面幅連動でサイズ調整 */
@media (max-width: 360px) {
  .codex-edited-lp .program-lead-line {
    font-size: clamp(12px, 4.4vw, 16px);
  }
  .codex-edited-lp .final-heading-line {
    font-size: clamp(21px, 7.9vw, 27px);
  }
}

/* 講師セクション再構成：実績→プロフィール→メッセージの間隔 */
.codex-edited-lp .trainer-copy .trainer-stats {
  margin-top: 26px;
}
.codex-edited-lp .trainer-message-block {
  margin-top: 40px;
}
.codex-edited-lp .trainer-message-block .trainer-intro {
  display: block;
  margin-bottom: 10px;
}

/* 6ステップ（モバイル図）：見出しが1〜2文字だけ折り返すのを防ぐ */
@media (max-width: 680px) {
  .codex-edited-lp .growth-steps-mobile li strong {
    font-size: 20px;
    text-wrap: balance; /* 2行になる場合も1文字だけの折り返しを防ぐ */
  }
  .codex-edited-lp .trainer-message-block h3 {
    text-wrap: balance;
  }
}

/* FVのサブタイトル：T2Sの下に控えめに1行で（下のメッセージを主役にする） */
@media (max-width: 680px) {
  .codex-edited-lp .hero-subtitle {
    font-size: 15px;
    letter-spacing: 2px;
    white-space: nowrap;
  }
}

/* FVメッセージの強調：T2Sロゴに寄せて上へ、サブコピーを大きく */
@media (max-width: 680px) {
  .codex-edited-lp .hero-message {
    top: 42.5%;
  }
  .codex-edited-lp .hero-message strong {
    font-size: 24px;
    line-height: 1.35;
  }
  .codex-edited-lp .hero-message span {
    font-size: 18px;
    line-height: 1.45;
  }
}

/* 鍵括弧フレーズの途中折り返し防止 */
.codex-edited-lp .nobr {
  white-space: nowrap;
}

/* STEP03見出し：導入フレーズは小さめの1行、本題は見出しサイズのまま */
.codex-edited-lp .growth-steps-mobile li strong .step-quote-lead {
  display: block;
  font-size: 16px;
  font-family: inherit;
  white-space: nowrap;
  margin-bottom: 2px;
}

/* 独立セクション化した紹介動画：aboutセクション内用の上余白をリセット */
.codex-edited-lp #introduction-movie .about-movie {
  margin-top: 0;
}
.codex-edited-lp #introduction-movie {
  padding-top: 56px;
  padding-bottom: 56px;
}

/* 講師実績：モバイルは縦積みカードをやめて横一列のコンパクト表示に */
@media (max-width: 680px) {
  .codex-edited-lp .trainer-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .codex-edited-lp .trainer-stats > div {
    min-height: 0;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 5px;
    padding: 14px 6px 12px;
  }
  .codex-edited-lp .trainer-stats strong {
    font-size: 24px;
    line-height: 1.1;
  }
  .codex-edited-lp .trainer-stats span {
    font-size: 11px;
    line-height: 1.45;
    max-width: 100%;
    white-space: normal;
  }
}

/* 実績数字：単位を数字の直後に赤字でまとめて表示。「のべ」は数字行の上に小さく独立させ、数字行の横幅を圧迫しないようにする */
.codex-edited-lp .trainer-stats .stat-prefix {
  display: block;
  color: var(--red);
  font-size: 12px;
}
.codex-edited-lp .trainer-stats .stat-line {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.codex-edited-lp .trainer-stats .stat-number-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
  white-space: nowrap;
}
.codex-edited-lp .trainer-stats .stat-unit {
  color: var(--red);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
}
@media (min-width: 681px) {
  .codex-edited-lp .trainer-stats .stat-line {
    align-items: flex-start;
  }
  .codex-edited-lp .trainer-stats .stat-prefix {
    text-align: left;
  }
}
@media (max-width: 680px) {
  .codex-edited-lp .trainer-stats .stat-prefix {
    text-align: center;
  }
}

/* 6ステップ図（5ステップ統合版）：PC・タブレットは元の横並び矢羽根デザインを
   HTML/CSSで再現（旧6ステップ画像は非表示のまま） */
@media (min-width: 681px) {
  .codex-edited-lp .growth-supplied-diagram {
    width: 100%;
    margin-inline: 0;
    padding: 0;
    overflow: visible;
  }

  .codex-edited-lp .growth-supplied-diagram > img,
  .codex-edited-lp .growth-supplied-diagram .diagram-scroll-hint {
    display: none;
  }

  .codex-edited-lp .growth-steps-mobile {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .codex-edited-lp .growth-steps-mobile li {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 235px;
    padding: 24px 30px 24px 24px;
    color: #171313;
    background: linear-gradient(105deg, rgba(213, 27, 40, 0.05), rgba(213, 27, 40, 0.16)), #ffffff;
    clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 50%, calc(100% - 26px) 100%, 0 100%, 26px 50%);
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, .08));
  }

  .codex-edited-lp .growth-steps-mobile li:first-child {
    clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 50%, calc(100% - 26px) 100%, 0 100%);
    padding-left: 26px;
  }

  .codex-edited-lp .growth-steps-mobile li:not(:first-child) {
    margin-left: -14px;
    padding-left: 44px;
  }

  .codex-edited-lp .growth-steps-mobile li::after,
  .codex-edited-lp .growth-steps-mobile li::before {
    display: none;
  }

  .codex-edited-lp .growth-steps-mobile li:nth-child(2) { background: linear-gradient(105deg, rgba(213, 27, 40, 0.10), rgba(213, 27, 40, 0.26)), #ffffff; }
  .codex-edited-lp .growth-steps-mobile li:nth-child(3) { background: linear-gradient(105deg, rgba(213, 27, 40, 0.16), rgba(213, 27, 40, 0.40)), #ffffff; }
  .codex-edited-lp .growth-steps-mobile li:nth-child(4) { color: #fff; background: linear-gradient(105deg, var(--t2s-red-main), var(--t2s-red-deep)); }
  .codex-edited-lp .growth-steps-mobile li:nth-child(5) { color: #fff; background: linear-gradient(105deg, var(--t2s-red-deep), var(--t2s-red-bordeaux)); }

  .codex-edited-lp .growth-steps-mobile span {
    color: inherit;
    font-family: var(--display);
    font-size: 12px;
    letter-spacing: .08em;
    line-height: 1.1;
  }

  .codex-edited-lp .growth-steps-mobile span b {
    display: block;
    margin-top: 4px;
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 0;
  }

  .codex-edited-lp .growth-steps-mobile strong {
    margin-top: auto;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(159, 119, 27, .68);
    color: inherit;
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 500;
    line-height: 1.4;
    text-wrap: balance;
  }

  .codex-edited-lp .growth-steps-mobile li:nth-child(n + 4) strong {
    border-color: rgba(216, 218, 221, .7);
  }

  .codex-edited-lp .growth-steps-mobile li strong .step-quote-lead {
    font-size: 14px;
    margin-bottom: 2px;
    white-space: normal;
  }

  .codex-edited-lp .growth-steps-mobile small {
    padding-top: 12px;
    color: inherit;
    font-family: var(--serif);
    font-size: 13px;
    line-height: 1.55;
  }
}

/* 8つの効果カード：見出しを太字に */
.codex-edited-lp .benefit-item h3 {
  font-weight: 700;
}

/* 320px級の狭い端末向け調整 */
@media (max-width: 680px) {
  /* 会場アクセス：最小64pxの左右パディングが320pxでは横はみ出しの原因になる */
  .codex-edited-lp .access-copy {
    padding-right: max(18px, calc((100vw - 1180px) / 2));
    padding-left: max(18px, calc((100vw - 1180px) / 2));
  }
  .codex-edited-lp .access-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 360px) {
  /* FVメッセージ：375px用サイズのままだと開催日ブロックに重なる */
  .codex-edited-lp .hero-message strong {
    font-size: 21px;
  }
  .codex-edited-lp .hero-message span {
    font-size: 15px;
  }
}

/* 320px級：固定CTAバーの中身がはみ出してボタン右端が欠けるのを防ぐ */
@media (max-width: 360px) {
  .codex-edited-lp .mobile-sticky-cta > a {
    padding: 0 10px;
    font-size: 13px;
  }
}


/* 横並び矢羽根：タブレット幅ではカードが細くなるため文字と余白を縮小 */
@media (min-width: 681px) and (max-width: 1023px) {
  .codex-edited-lp .growth-steps-mobile li {
    min-height: 215px;
    padding: 16px 22px 16px 16px;
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 0 100%, 16px 50%);
  }
  .codex-edited-lp .growth-steps-mobile li:first-child {
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 0 100%);
    padding-left: 16px;
  }
  .codex-edited-lp .growth-steps-mobile li:not(:first-child) {
    margin-left: -8px;
    padding-left: 28px;
  }
  .codex-edited-lp .growth-steps-mobile span b {
    font-size: 26px;
  }
  .codex-edited-lp .growth-steps-mobile strong {
    font-size: 14px;
    padding-bottom: 8px;
  }
  .codex-edited-lp .growth-steps-mobile li strong .step-quote-lead {
    font-size: 11px;
  }
  .codex-edited-lp .growth-steps-mobile small {
    padding-top: 8px;
    font-size: 11px;
  }
}

/* PC幅ではSTEP03の導入フレーズを1行固定＋小さめにして右側に余白を確保 */
@media (min-width: 1024px) {
  .codex-edited-lp .growth-steps-mobile li strong .step-quote-lead {
    white-space: nowrap;
    /* 汎用の段落サイズルール（:not連鎖で詳細度が高い）に勝つため!important */
    font-size: 13px !important;
    letter-spacing: .02em;
  }
}

/* 5ステップ直下の結論文：PCでは1行で表示 */
@media (min-width: 1024px) {
  .codex-edited-lp .benefits-note strong {
    font-size: 22px;
    white-space: nowrap;
  }
}

/* 5ステップ図と結論文の間に呼吸の余白（既存の margin-top:0!important より後勝ち） */
@media (min-width: 681px) {
  .codex-edited-lp .benefits-note {
    margin-top: 34px !important;
  }
}
@media (max-width: 680px) {
  .codex-edited-lp .benefits-note {
    margin-top: 26px !important;
  }
}

/* 10ステップ導入「わかっている／やっている」：PCは大きく1行で */
@media (min-width: 1024px) {
  .codex-edited-lp .learning-intro strong,
  .codex-edited-lp #learning strong[data-codex-id="node-0148"] {
    font-size: 30px;
    white-space: nowrap;
  }
  .codex-edited-lp .learning-lead-break {
    display: none;
  }
}

/* 8バランス見出し：PC・タブレットは「幸せは、8つのバランスで／できている。」の2行
   （改行はcodex-break-all。スマホでは非表示になり自然折り返し） */

/* 8バランス見出し：「幸せは、8つのバランスで」が1行に収まるサイズに */
@media (min-width: 1024px) {
  .codex-edited-lp .balance-section h2,
  .codex-edited-lp #balance h2 {
    font-size: 36px !important;
  }
}

/* 申込専用窓口カード：見出しを太字に */
.codex-edited-lp .support-item h3 {
  font-weight: 700;
}

/* 申込専用窓口カード：「◯◯フォームへ」リンクを赤字に（見出しは黒のまま） */
.codex-edited-lp .support-item > span {
  color: var(--red);
  font-weight: 600;
}

/* 参加者の声 見出し：PC・タブレットは2行にバランス良く収める */
@media (min-width: 681px) {
  .codex-edited-lp .voices-heading {
    text-wrap: balance;
  }
}

/* T2S IN NUMBERS 見出し：PC・タブレットは改行なしの1行（句点の孤立を防ぐため少し縮小） */
@media (min-width: 681px) {
  .codex-edited-lp .numbers-heading-break {
    display: none;
  }
  .codex-edited-lp .numbers-heading {
    font-size: 38px;
  }
}

/* FAQ見出し「よくあるご質問」：PC・タブレットは改行なし1行（わずかに縮小して収める） */
@media (min-width: 681px) {
  .codex-edited-lp .faq-heading-break {
    display: none;
  }
  .codex-edited-lp .faq-heading {
    font-size: 40px;
  }
}

/* 2026-07-18 FV renewal: supplied key visual and transparent title artwork. */
.codex-edited-lp .site-header {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, .12);
  background: #050608 !important;
}

.codex-edited-lp .header-inner {
  width: min(1440px, calc(100% - 40px));
  height: 64px;
}

.codex-edited-lp .company-brand {
  width: 58px;
  height: 42px;
  margin-right: 12px;
  border-right: 0;
}

.codex-edited-lp .company-brand img {
  width: 38px;
  height: 34px;
  filter: brightness(0) invert(1);
}

.codex-edited-lp .desktop-nav {
  gap: 26px;
  color: rgba(255, 255, 255, .9);
  font-size: 13px;
}

.codex-edited-lp .desktop-nav a::after {
  background: #c9202b;
}

.codex-edited-lp .header-actions {
  gap: 16px;
  margin-left: 30px;
}

.codex-edited-lp .header-actions .button-small {
  min-height: 38px;
  padding: 8px 17px;
  border-radius: 3px;
  font-size: 13px;
}

.codex-edited-lp .header-actions .header-movie-button {
  color: #fff;
  border-color: #7c8591;
  background: #11151a;
}

.codex-edited-lp .header-actions .header-movie-button svg {
  color: #fff;
}

.codex-edited-lp .header-actions .button-primary {
  color: #fff;
  border-color: #c72a31;
  background: linear-gradient(135deg, #b41420, #75030b);
  box-shadow: inset 0 0 18px rgba(255, 84, 84, .12), 0 0 18px rgba(143, 0, 10, .22);
}

.codex-edited-lp .hero {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 3344 / 1882;
  background: #050608;
}

/* 幅901〜1172px帯：16:9だとヒーローの高さが660px未満になり、
   開催日・早割・CTAが互いに重なるため、この帯だけ比率を外して高さを固定する。
   （1173px以上は16:9のままで自然に660pxを超える） */
@media (min-width: 901px) and (max-width: 1172px) {
  .codex-edited-lp .hero {
    aspect-ratio: auto;
    height: 660px;
  }
}

/* 幅1173px以上：ヘッダー分の高さを引かないと16:9のヒーローが
   ビューポートより高くなり、CTAボタンが画面外に落ちる。
   ヒーローの高さをビューポート基準に抑え、タグライン/ロゴ画像は
   幅基準ではなく高さ基準のサイズに切り替えて縦の詰まりに追従させる。 */
@media (min-width: 1173px) {
  .codex-edited-lp .hero {
    aspect-ratio: auto;
    height: max(660px, min(calc(100vh - 64px), calc(100vw / (3344 / 1882))));
  }

  /* ヒーローの高さを詰めても、テキスト/画像レイヤーは常に元の16:9比率を
     保ったまま中央でレターボックスさせる。こうすることで各要素のtop/left%が
     指しているレイアウトの縦横関係が一切変わらず、詰め方向のテキスト同士の
     重なりが起きない。 */
  .codex-edited-lp .hero-content {
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    width: auto;
    height: 100%;
    aspect-ratio: 3344 / 1882;
    max-width: 100%;
    transform: translate(-50%, -50%);
  }
}

.codex-edited-lp .hero-media img {
  object-fit: cover;
  object-position: center;
}

.codex-edited-lp .hero-tagline-art,
.codex-edited-lp .hero-logo-art {
  position: absolute;
  display: block;
  margin: 0;
  pointer-events: none;
}

.codex-edited-lp .hero-tagline-art {
  top: -.5%;
  left: 2.1%;
  width: 41%;
  height: auto;
}

.codex-edited-lp .hero-logo-art {
  top: 8.8%;
  left: -0.65%;
  width: 48%;
}

@media (min-width: 681px) and (max-width: 1100px) {
  .codex-edited-lp .hero-tagline-art {
    top: 1%;
    left: 1%;
    width: 34%;
  }

  .codex-edited-lp .hero-logo-art {
    top: 21%;
    left: -0.5%;
    width: 38%;
  }
}

.codex-edited-lp .hero-logo-art img {
  display: block;
  width: 100%;
  height: auto;
}

.codex-edited-lp .hero-message {
  top: 55%;
  left: 3.8%;
  width: 50%;
  gap: 6px;
  padding: 0;
  text-align: left;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .88);
}

.codex-edited-lp .hero-message strong {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: .01em;
  white-space: nowrap;
}

.codex-edited-lp .hero-message strong br {
  display: none;
}

.codex-edited-lp .hero-message span {
  color: rgba(255, 255, 255, .78);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.45;
}

.codex-edited-lp .hero-message-break {
  display: none;
}

.codex-edited-lp .hero-details {
  top: 73%;
  left: 3.8%;
  width: 35%;
  padding: 20px 8px 0;
  border-top: 1px solid rgba(255, 255, 255, .8);
}

.codex-edited-lp .hero-date {
  margin: 0 0 5px;
  gap: 2px;
  font-size: 30px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .9);
}

.codex-edited-lp .hero-date strong {
  font-size: 44px;
}

.codex-edited-lp .hero-date small {
  font-size: 19px;
}

.codex-edited-lp .hero-venue {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 22px;
  text-shadow: 0 2px 7px rgba(0, 0, 0, .95);
}

.codex-edited-lp .hero-venue svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: #ef1d2d;
  stroke-width: 2.5;
}

.codex-edited-lp .hero-cta {
  top: 88.5%;
  left: 3.8%;
  width: 33.5%;
  min-height: 9.5%;
  gap: 18px;
  padding: 8px 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 1px;
  background: linear-gradient(100deg, #d51b28 0%, #a40812 55%, #590006 100%);
  box-shadow: inset 0 0 26px rgba(255, 255, 255, .08), 0 0 18px rgba(204, 20, 31, .24);
  font-size: 24px;
  font-weight: 600;
}

.codex-edited-lp .hero-cta::after {
  display: none;
  content: none;
}

.codex-edited-lp .hero-cta svg {
  width: 25px;
  height: 25px;
  color: #fff;
  stroke-width: 1.5;
}

@media (max-width: 1000px) and (min-width: 681px) {
  .codex-edited-lp .desktop-nav {
    gap: 16px;
    font-size: 12px;
  }

  .codex-edited-lp .header-actions {
    gap: 8px;
    margin-left: 18px;
  }

  .codex-edited-lp .header-actions .button-small {
    padding-inline: 12px;
    font-size: 12px;
  }

}

@media (min-width: 901px) and (max-width: 1180px) {
  .codex-edited-lp .hero-message strong {
    font-size: 30px;
  }

  .codex-edited-lp .hero-message span {
    font-size: 21px;
  }

  .codex-edited-lp .hero-date {
    font-size: 26px;
  }

  .codex-edited-lp .hero-date strong {
    font-size: 36px;
  }

  .codex-edited-lp .hero-date small {
    font-size: 16px;
  }

  .codex-edited-lp .hero-venue {
    font-size: 16px;
  }

  .codex-edited-lp .hero-cta {
    font-size: 22px;
  }
}

@media (min-width: 681px) and (max-width: 900px) {
  .codex-edited-lp .hero-message {
    top: 43%;
    width: 40%;
    gap: 2px;
  }

  .codex-edited-lp .hero-message strong {
    font-size: 16px;
  }

  .codex-edited-lp .hero-message span {
    font-size: 11.5px;
  }

  .codex-edited-lp .hero-details {
    top: 57%;
  }

  .codex-edited-lp .hero-date {
    font-size: 21px;
  }

  .codex-edited-lp .hero-date strong {
    font-size: 30px;
  }

  .codex-edited-lp .hero-date small {
    font-size: 13px;
  }

  .codex-edited-lp .hero-venue {
    font-size: 14px;
  }

  .codex-edited-lp .hero-cta {
    top: 86%;
    width: 36%;
    font-size: 18px;
  }
}

@media (max-width: 680px) {
  .codex-edited-lp .site-header {
    background: #050608 !important;
  }

  .codex-edited-lp .header-inner {
    width: calc(100% - 24px);
    height: 60px;
  }

  .codex-edited-lp .company-brand {
    width: 48px;
    height: 36px;
    margin-right: auto;
  }

  .codex-edited-lp .company-brand img {
    width: 34px;
    height: 30px;
  }

  .codex-edited-lp .menu-button {
    color: #fff;
  }

  .codex-edited-lp .mobile-nav {
    color: #fff;
    background: #090b0e;
  }

  .codex-edited-lp .hero {
    height: auto;
    aspect-ratio: 941 / 1672;
  }

  .codex-edited-lp .hero-tagline-art {
    top: 1%;
    left: 0;
    width: 54%;
  }

  .codex-edited-lp .hero-logo-art {
    top: 3.5%;
    left: 1%;
    width: 46%;
  }

  .codex-edited-lp .hero-message {
    top: 50%;
    left: 6.85%;
    width: 86.2%;
    gap: 7px;
    padding: 0 8px;
    text-align: center;
  }

  .codex-edited-lp .hero-message strong {
    font-size: 24px;
    line-height: 1.35;
    white-space: normal;
  }

  .codex-edited-lp .hero-message strong br {
    display: block;
  }

  .codex-edited-lp .hero-message span {
    font-size: 18px;
    line-height: 1.45;
    white-space: normal;
  }

  .codex-edited-lp .hero-message-break {
    display: block;
  }

  .codex-edited-lp .hero-details {
    top: 70%;
    left: 6.85%;
    width: 86.2%;
    padding: 14px 0 0;
  }

  .codex-edited-lp .hero-date {
    justify-content: center;
    margin-bottom: 10px;
    font-size: 30px;
  }

  .codex-edited-lp .hero-date strong {
    font-size: 48px;
  }

  .codex-edited-lp .hero-date small {
    font-size: 18px;
  }

  .codex-edited-lp .hero-venue {
    justify-content: center;
    font-size: 17px;
    text-align: center;
    white-space: nowrap;
  }

  .codex-edited-lp .hero-venue svg {
    width: 14px;
    height: 14px;
  }

  .codex-edited-lp .hero-cta {
    top: 90%;
    left: 6.85%;
    width: 86.2%;
    min-height: 8.9%;
    gap: 17px;
    padding: 10px 14px;
    font-size: 27px;
  }

  .codex-edited-lp .hero-cta svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 360px) {
  .codex-edited-lp .hero-message strong {
    font-size: 21px;
  }

  .codex-edited-lp .hero-message span {
    font-size: 15px;
  }

  .codex-edited-lp .hero-date {
    font-size: 26px;
  }

  .codex-edited-lp .hero-date strong {
    font-size: 42px;
  }

  .codex-edited-lp .hero-date small {
    font-size: 16px;
  }

  .codex-edited-lp .hero-venue {
    font-size: 15px;
  }

  .codex-edited-lp .hero-cta {
    font-size: 21px;
  }
}


/* =====================================================================
   価格セクション（2026-07-19）: 期限バッジ＋価格ラベルの強調
   ===================================================================== */
.codex-edited-lp .early-price {
  margin-bottom: 10px;
}

.codex-edited-lp .early-price small {
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 3px;
  background: var(--t2s-red-main);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.codex-edited-lp .price-card.featured .early-price small {
  background: var(--t2s-red-bordeaux);
  color: #fff;
}

.codex-edited-lp .price-deadline {
  margin: 0 0 18px;
  text-align: center;
}

.codex-edited-lp .price-deadline strong {
  display: inline-block;
  padding: 7px 18px;
  border: 1px solid var(--t2s-red-main);
  border-radius: 999px;
  background: rgba(213, 27, 40, 0.07);
  color: var(--t2s-red-main);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* =====================================================================
   最終CTA（2026-07-19）: スマホ表示にシルバーのT2Sワードマーク
   ===================================================================== */
.final-cta-logo {
  display: none;
}

@media (max-width: 680px) {
  .final-cta-logo {
    display: block;
    margin: 0 auto 6px;
    background: linear-gradient(
      168deg,
      #f7f9fa 8%,
      #c9ccd0 30%,
      #878d93 48%,
      #eef1f3 62%,
      #9aa0a6 82%,
      #d7dade 96%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: var(--display);
    font-size: 84px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-align: center;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.55));
  }
}

/* =====================================================================
   スマホ固定CTA（2026-07-19）: ホームバー領域を黒で確保し、
   Safari下部バーが赤を拾わないようにする（viewport-fit=cover前提）
   ===================================================================== */
@media (max-width: 680px) {
  .codex-edited-lp .mobile-sticky-cta {
    height: calc(68px + env(safe-area-inset-bottom, 0px));
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: #050608;
  }
}

/* =====================================================================
   スマホ固定CTA（2026-07-19 v2）: バーを黒地にし赤ボタンを内側に浮かせる。
   最下端が常に黒になるため、Safari下部バーの色被りが赤→黒になる
   ===================================================================== */
@media (max-width: 680px) {
  .codex-edited-lp .mobile-sticky-cta {
    height: auto;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    background: #050608;
    border-top: 1px solid rgba(180, 184, 188, 0.35);
  }

  .codex-edited-lp .mobile-sticky-cta > a {
    min-height: 50px;
    border-radius: 6px;
  }
}
