/* =========================================================
   NoLimits — 6月限定オンラインパーソナル キャンペーンLP
   "近未来 / HUD" リメイクテーマ
   ========================================================= */

:root {
  /* base */
  --bg:        #06080d;
  --bg-2:      #0a0e16;
  --surface:   #0e131d;
  --surface-2: #121826;
  --line:      rgba(170, 195, 230, 0.12);
  --line-soft: rgba(170, 195, 230, 0.07);

  --ink:       #eef3fb;
  --ink-dim:   #93a0b6;
  --ink-faint: #5d687d;

  /* accents (tweakable) */
  --red:       #ff2b46;
  --red-deep:  #d20a23;
  --cyan:      #38e6ff;
  --accent:    var(--red);
  --glow:      0.85; /* 0–1 glow intensity multiplier */

  --red-glow:  0 0 calc(38px * var(--glow)) rgba(255, 43, 70, calc(0.55 * var(--glow)));
  --cyan-glow: 0 0 calc(30px * var(--glow)) rgba(56, 230, 255, calc(0.42 * var(--glow)));

  /* type */
  --font-jp:   "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --font-tech: "Oxanium", "Chakra Petch", var(--font-jp);
  --font-mono: "Chakra Petch", "Oxanium", ui-monospace, monospace;

  --maxw: 1180px;
  --radius: 4px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-jp);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- global futuristic backdrop ---- */
body::before {
  /* grid lines */
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(120, 160, 220, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 160, 220, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 120% 80% at 50% 0%, #000 35%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 120% 80% at 50% 0%, #000 35%, transparent 85%);
  opacity: var(--grid-on, 1);
  transition: opacity .4s ease;
}
body::after {
  /* ambient glows */
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(48rem 38rem at 82% -6%, rgba(255, 43, 70, 0.14), transparent 60%),
    radial-gradient(42rem 34rem at 8% 12%, rgba(56, 230, 255, 0.08), transparent 60%),
    radial-gradient(60rem 50rem at 50% 108%, rgba(255, 43, 70, 0.10), transparent 60%);
}

#lp { position: relative; z-index: 1; }

/* =========================================================
   Reusable primitives
   ========================================================= */

.wrap { width: min(100% - 36px, var(--maxw)); margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cyan);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  box-shadow: var(--cyan-glow);
}
.eyebrow .idx { color: var(--ink-faint); }

.section {
  position: relative;
  padding: clamp(64px, 11vw, 124px) 0;
}
.section__head {
  max-width: 760px;
  margin: 0 0 44px;
}
.section__head.center { margin-inline: auto; text-align: center; }
.section__head.center .eyebrow { justify-content: center; }

h2.title {
  margin: 16px 0 0;
  font-size: clamp(28px, 5.4vw, 52px);
  font-weight: 900;
  line-height: 1.24;
  letter-spacing: -0.01em;
}
.title .hot { color: var(--accent); text-shadow: var(--red-glow); }
.title .nowrap { white-space: nowrap; }

.lede {
  margin: 18px 0 0;
  color: var(--ink-dim);
  font-size: clamp(15px, 1.9vw, 17px);
  font-weight: 500;
  line-height: 1.95;
}

/* HUD panel base */
.panel {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 40%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
/* corner ticks */
.panel.corners::before,
.panel.corners::after {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  pointer-events: none;
}
.panel.corners::before {
  top: -1px; left: -1px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}
.panel.corners::after {
  bottom: -1px; right: -1px;
  border-bottom: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}

/* chip */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.chip .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); box-shadow: var(--red-glow);
}
.chip.cyan .dot { background: var(--cyan); box-shadow: var(--cyan-glow); }

/* buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 30px;
  font-family: var(--font-jp);
  font-size: 15.5px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #fff;
  cursor: pointer;
  border: 1px solid transparent;
  overflow: hidden;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  transition: transform .18s ease, box-shadow .25s ease, filter .25s ease;
}
.btn .arrow { font-family: var(--font-mono); font-weight: 700; transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn::after {
  content: "";
  position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg);
  transition: left .6s ease;
}
.btn:hover::after { left: 140%; }
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  box-shadow: var(--red-glow), inset 0 0 0 1px rgba(255,255,255,0.12);
}
.btn--primary:hover { box-shadow: 0 0 calc(48px*var(--glow)) rgba(255,43,70,calc(.7*var(--glow))), inset 0 0 0 1px rgba(255,255,255,0.2); }
.btn--ghost {
  color: var(--ink);
  background: rgba(255,255,255,0.02);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--cyan); color: #fff; box-shadow: var(--cyan-glow); }
.btn--cyan {
  color: #04121a;
  background: linear-gradient(135deg, #6ff0ff, var(--cyan));
  box-shadow: var(--cyan-glow);
}
.btn--block { width: 100%; }

/* data readout number */
.readout {
  font-family: var(--font-tech);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 0.95;
}

/* =========================================================
   Sticky header
   ========================================================= */
.hdr {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(16px, 4vw, 40px);
  background: rgba(6, 8, 13, 0.55);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(10px);
  transition: background .3s ease, border-color .3s ease, padding .3s ease;
}
.hdr.scrolled {
  background: rgba(6, 8, 13, 0.9);
  border-bottom-color: var(--line);
  padding-top: 10px;
  padding-bottom: 10px;
}
.hdr__brand { display: flex; align-items: baseline; gap: 12px; min-width: 0; }
.hdr__logo {
  font-family: var(--font-tech);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: 0.01em;
  color: #fff;
}
.hdr__logo .lim { color: var(--accent); text-shadow: var(--red-glow); }
.hdr__sub {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hdr__cta { display: flex; align-items: center; gap: 12px; }
.hdr__tag {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  border: 1px solid rgba(255,43,70,0.4);
  padding: 6px 12px;
  border-radius: 999px;
}
.hdr .btn { min-height: 44px; padding: 0 20px; font-size: 13.5px; }
@media (max-width: 720px) {
  .hdr__sub { display: none; }
  .hdr__tag { display: none; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(120px, 18vw, 180px) 0 clamp(60px, 9vw, 110px);
  overflow: hidden;
}
.hero__scan {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 4px);
  mask-image: linear-gradient(180deg, #000, transparent 70%);
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 70%);
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.hero__copy { max-width: 720px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 22px; }
.hero h1 {
  margin: 18px 0 0;
  font-size: clamp(34px, 8vw, 76px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.hero h1 .l1 { display: block; color: var(--ink); }
.hero h1 .l2 { display: block; color: #fff; }
.hero h1 .deep {
  color: var(--accent);
  text-shadow: var(--red-glow);
}
.hero__lead {
  margin: 26px 0 0;
  max-width: 560px;
  color: var(--ink-dim);
  font-size: clamp(15px, 2.2vw, 18px);
  font-weight: 500;
  line-height: 1.95;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__period {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
}
.hero__period b { color: var(--cyan); font-weight: 700; }

/* hero telemetry panel */
.telemetry {
  padding: 26px 24px 22px;
}
.telemetry__head {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.18em;
  color: var(--ink-dim); text-transform: uppercase;
  padding-bottom: 16px; margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.telemetry__live { display: inline-flex; align-items: center; gap: 7px; color: var(--cyan); }
.telemetry__live::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan); box-shadow: var(--cyan-glow);
  animation: blink 1.6s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }

.telemetry__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.tcell { padding: 6px 0; }
.tcell__label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  color: var(--ink-faint); text-transform: uppercase;
}
.tcell__val {
  margin-top: 6px;
  font-family: var(--font-tech);
  font-weight: 800;
  font-size: clamp(26px, 5vw, 40px);
  color: #fff;
  line-height: 1;
}
.tcell__val .u { font-size: 0.45em; color: var(--ink-dim); margin-left: 2px; }
.tcell--hot .tcell__val { color: var(--accent); text-shadow: var(--red-glow); }

.telemetry__foot {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.08em;
  color: var(--ink-dim);
}
.telemetry__foot .ipf {
  font-weight: 800; color: var(--cyan); letter-spacing: 0.16em;
}

@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.15fr 0.85fr; gap: 56px; }
}

/* =========================================================
   marquee strip
   ========================================================= */
.strip {
  position: relative;
  z-index: 1;
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  padding: 14px 0;
}
.strip__track {
  display: flex; gap: 48px; white-space: nowrap;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.strip__track span {
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--ink-dim); text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 48px;
}
.strip__track span::after { content: "◆"; color: var(--accent); font-size: 9px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   Flyer / overview (framed as a monitor screen)
   ========================================================= */
.flyer { margin: 0; padding: 0; overflow: hidden; }
.flyer__bar {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-bottom: 1px solid var(--line);
  background: var(--bg-2); font-family: var(--font-mono);
}
.flyer__dots { display: inline-flex; gap: 7px; }
.flyer__dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.flyer__dots i:first-child { background: var(--accent); box-shadow: var(--red-glow); }
.flyer__dots i:nth-child(2) { background: rgba(255,194,74,0.7); }
.flyer__dots i:nth-child(3) { background: rgba(56,230,255,0.6); }
.flyer__name { font-size: 12px; letter-spacing: 0.08em; color: var(--ink-dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.flyer__live { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; font-size: 11px; letter-spacing: 0.16em; color: var(--cyan); }
.flyer__live::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: var(--cyan-glow); animation: blink 1.6s infinite; }
.flyer__screen { position: relative; background: #000; }
.flyer__screen img { width: 100%; display: block; }
.flyer__screen::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,0.035) 0 2px, transparent 2px 4px);
}

/* =========================================================
   Intro / Message
   ========================================================= */
.intro__body {
  display: grid; gap: 22px;
  font-size: clamp(15px, 2vw, 18px);
  color: var(--ink-dim);
  font-weight: 500;
  line-height: 2.05;
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
}
.intro__body p { margin: 0; }
.intro__body strong { color: var(--ink); font-weight: 700; }
.intro__body em {
  font-style: normal; color: #fff; font-weight: 700;
  border-bottom: 2px solid var(--accent);
  box-shadow: inset 0 -10px 0 rgba(255,43,70,0.12);
}

/* =========================================================
   Audience cards
   ========================================================= */
.aud {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
}
.aud__card { padding: 30px 26px; }
.aud__card .tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; color: var(--cyan);
}
.aud__card--red .tag { color: #ffd2d8; }
.aud__card h3 { margin: 14px 0 0; font-size: clamp(20px, 3vw, 26px); font-weight: 900; line-height: 1.4; }
.aud__card ul { margin: 20px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.aud__card li {
  position: relative; padding-left: 26px;
  color: var(--ink-dim); font-weight: 500; line-height: 1.7;
}
.aud__card li::before {
  content: "▸"; position: absolute; left: 4px; top: 0;
  color: var(--accent); font-family: var(--font-mono);
}
.aud__card--red {
  background:
    linear-gradient(135deg, rgba(255,43,70,0.16), rgba(255,43,70,0.04)),
    var(--surface);
  border-color: rgba(255,43,70,0.35);
}
.aud__card--red li::before { color: #ff8a98; }
@media (min-width: 820px) { .aud { grid-template-columns: 1fr 1fr; } }

/* =========================================================
   Coach profile
   ========================================================= */
.coach { display: grid; gap: 40px; grid-template-columns: 1fr; align-items: start; }
.coach__visual { position: relative; }
.coach__photo {
  position: relative;
  padding: 14px;
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(56,230,255,0.10), transparent 60%),
    var(--surface);
}
.coach__photo img { border-radius: 2px; width: 100%; }
.coach__cap {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 14px;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.12em;
  color: var(--ink-dim); text-transform: uppercase;
}
.coach__cap .ipf { color: var(--cyan); font-weight: 800; }

.records {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
  margin: 26px 0 0;
}
.records .tcell { padding: 18px 16px; background: var(--bg-2); border: 1px solid var(--line); }
.records .tcell__val { font-size: clamp(26px, 5vw, 38px); }

.coach__list { margin: 26px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.coach__list li {
  position: relative; padding-left: 28px;
  color: var(--ink-dim); font-weight: 500; line-height: 1.6;
}
.coach__list li::before {
  content: "›"; position: absolute; left: 6px; top: -1px;
  color: var(--cyan); font-family: var(--font-mono); font-weight: 700;
}
.coach__list li b { color: var(--ink); font-weight: 700; }
@media (min-width: 880px) { .coach { grid-template-columns: 0.82fr 1.18fr; gap: 52px; } }

/* =========================================================
   Products
   ========================================================= */
.plans { display: grid; gap: 22px; grid-template-columns: 1fr; }
.plan { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.plan__media {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: #000;
}
.plan__media img { width: 100%; }
.plan__media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,0.06) 0 2px, transparent 2px 4px);
  mix-blend-mode: multiply;
}
.plan__dur {
  position: absolute; top: 0; left: 0; z-index: 2;
  display: flex; align-items: baseline; gap: 4px;
  padding: 10px 16px;
  font-family: var(--font-tech); font-weight: 800;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #fff;
  box-shadow: var(--red-glow);
}
.plan__dur .n { font-size: 30px; line-height: 1; }
.plan__dur .w { font-size: 12px; font-weight: 700; }
.plan__body { padding: 26px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.plan__label {
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; color: var(--cyan); text-transform: uppercase;
}
.plan h3 { margin: 12px 0 0; font-size: clamp(19px, 2.6vw, 23px); font-weight: 900; line-height: 1.45; }
.plan p { margin: 12px 0 0; color: var(--ink-dim); font-weight: 500; font-size: 14.5px; }
.plan__price {
  margin: 22px 0; padding: 18px;
  background: var(--bg-2); border: 1px solid var(--line);
  display: grid; gap: 8px;
}
.plan__price .row { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.plan__price dt { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--ink-faint); }
.plan__price dd { margin: 0; font-family: var(--font-tech); font-weight: 800; font-size: 22px; color: var(--accent); }
.plan__price .old { color: var(--ink-faint); text-decoration: line-through; font-size: 16px; }
.plan__price .save dd { color: var(--cyan); }
.plan .btn { margin-top: auto; }
.plan--featured { border-color: rgba(255,43,70,0.45); box-shadow: var(--red-glow); }
.plan__flag {
  position: absolute; top: 0; right: 0; z-index: 2;
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.1em; color: #04121a;
  background: linear-gradient(135deg, #6ff0ff, var(--cyan));
  padding: 8px 14px; box-shadow: var(--cyan-glow);
}
@media (min-width: 760px) { .plans { grid-template-columns: 1fr 1fr; align-items: stretch; } }

/* =========================================================
   Offer 1 panel
   ========================================================= */
.offer { display: grid; gap: 0; grid-template-columns: 1fr; overflow: hidden; }
.offer__main { padding: 34px 30px; }
.offer__main .lead { margin: 0; font-size: clamp(19px, 3vw, 26px); font-weight: 900; line-height: 1.5; }
.offer__main ul { margin: 24px 0 0; padding: 0; list-style: none; display: grid; gap: 13px; }
.offer__main li { position: relative; padding-left: 28px; color: var(--ink-dim); font-weight: 500; }
.offer__main li::before { content: "✓"; position: absolute; left: 2px; color: var(--cyan); font-weight: 800; font-family: var(--font-mono); }
.offer__side {
  padding: 34px 30px;
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(255,43,70,0.16), transparent 55%),
    var(--bg-2);
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: center;
}
.offer__side .k { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; color: var(--cyan); text-transform: uppercase; }
.offer__side .big { margin: 10px 0 0; font-family: var(--font-tech); font-weight: 800; font-size: clamp(30px, 5vw, 44px); line-height: 1; color: #fff; }
.offer__side p { margin: 14px 0 0; color: var(--ink-dim); font-size: 14px; font-weight: 500; }
@media (min-width: 820px) { .offer { grid-template-columns: 1.3fr 0.7fr; } }

/* =========================================================
   Coupon code chip (10%OFF クーポン)
   ========================================================= */
.codechip {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px;
  margin: 26px 0 0; padding: 18px 20px;
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(56,230,255,0.10), transparent 60%),
    var(--bg-2);
  border: 1px dashed rgba(56,230,255,0.5); border-radius: var(--radius);
}
.codechip__label {
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; color: var(--cyan); text-transform: uppercase;
}
.codechip__code {
  font-family: var(--font-tech); font-weight: 800;
  font-size: clamp(26px, 5vw, 34px); letter-spacing: 0.14em;
  color: var(--ink); user-select: all;
}
.codechip__note { flex-basis: 100%; margin: 0; color: var(--ink-dim); font-size: 13px; font-weight: 500; line-height: 1.7; }
.codechip__copy {
  margin-left: auto;
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; color: var(--cyan); text-transform: uppercase;
  background: transparent; border: 1px solid rgba(56,230,255,0.5);
  border-radius: 999px; padding: 9px 18px; cursor: pointer;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.codechip__copy:hover { background: var(--cyan); color: #04121a; box-shadow: var(--cyan-glow); }
.codechip__copy.copied { background: var(--cyan); color: #04121a; border-color: transparent; }

/* compact coupon line inside each plan card */
.plan__coupon {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px;
  margin: 0 0 16px; padding: 13px 15px;
  background: rgba(56,230,255,0.06);
  border: 1px dashed rgba(56,230,255,0.45); border-radius: var(--radius);
}
.plan__coupon .lbl {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; color: var(--cyan); text-transform: uppercase;
}
.plan__coupon .code {
  font-family: var(--font-tech); font-weight: 800; font-size: 19px;
  letter-spacing: 0.12em; color: var(--ink); user-select: all;
}
.plan__coupon .desc { flex-basis: 100%; margin: 0; color: var(--ink-dim); font-size: 13px; font-weight: 500; }
.plan__coupon .desc b { color: var(--ink); }

/* =========================================================
   Coupon (Offer 2)
   ========================================================= */
.coupon { display: grid; gap: 36px; grid-template-columns: 1fr; align-items: center; }
.coupon__media { position: relative; padding: 14px; }
.coupon__media img { width: 100%; }
.coupon__media .frameTag {
  position: absolute; top: 22px; left: 22px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  color: var(--cyan); text-transform: uppercase;
}
.coupon__copy h3 { margin: 0; font-size: clamp(20px, 3.2vw, 28px); font-weight: 900; line-height: 1.5; }
.coupon__copy > p { margin: 16px 0 0; color: var(--ink-dim); font-weight: 500; line-height: 2; }
.coupon__price {
  margin: 24px 0; padding: 22px;
  text-align: center; position: relative;
}
.coupon__price .was { font-family: var(--font-mono); color: var(--ink-faint); text-decoration: line-through; font-size: 14px; }
.coupon__price .now { display: block; margin: 6px 0; font-family: var(--font-tech); font-weight: 800; font-size: clamp(34px, 6vw, 52px); color: var(--accent); text-shadow: var(--red-glow); line-height: 1; }
.coupon__price .off { font-family: var(--font-mono); font-weight: 700; letter-spacing: 0.1em; color: var(--cyan); }
.warn {
  margin: 22px 0; padding: 18px 20px;
  background: rgba(255,43,70,0.06);
  border: 1px solid rgba(255,43,70,0.3);
  border-radius: var(--radius);
}
.warn strong { display: flex; align-items: center; gap: 8px; color: #ff8a98; font-size: 15px; font-weight: 900; }
.warn p { margin: 10px 0 0; color: var(--ink-dim); font-size: 13.5px; line-height: 1.85; }
@media (min-width: 820px) { .coupon { grid-template-columns: 0.92fr 1.08fr; } }

/* =========================================================
   Voices
   ========================================================= */
.voices__filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin: 0 auto 30px;
}
.fbtn {
  font-family: var(--font-mono); font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.06em; color: var(--ink-dim);
  padding: 9px 16px; cursor: pointer;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line); border-radius: 999px;
  transition: all .2s ease;
}
.fbtn:hover { color: #fff; border-color: var(--cyan); }
.fbtn[aria-pressed="true"] {
  color: #fff; background: linear-gradient(135deg, var(--red), var(--red-deep));
  border-color: transparent; box-shadow: var(--red-glow);
}

.voices__list { display: grid; gap: 12px; max-width: 920px; margin: 0 auto; }
.voices__rest { display: grid; gap: 12px; }
.voices__rest[hidden] { display: none; }

.nl-voice {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.nl-voice[open] { border-color: rgba(255,43,70,0.4); box-shadow: var(--red-glow); }
.nl-voice__head {
  position: relative; list-style: none; cursor: pointer;
  padding: 20px 52px 20px 22px;
}
.nl-voice__head::-webkit-details-marker { display: none; }
.nl-voice__head::after {
  content: "+"; position: absolute; right: 22px; top: 18px;
  font-family: var(--font-mono); font-size: 22px; font-weight: 700;
  color: var(--accent); transition: transform .25s ease;
}
.nl-voice[open] .nl-voice__head::after { content: "−"; }
.nl-voice__head:focus-visible { outline: 1px solid var(--cyan); outline-offset: -1px; }
.nl-voice__title { display: block; font-size: 15.5px; font-weight: 700; line-height: 1.6; color: var(--ink); }
.nl-voice__title .hl { color: var(--accent); }
.nl-voice__meta {
  display: block; margin-top: 9px;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.04em;
  color: var(--ink-faint);
}
.nl-voice__body { padding: 2px 22px 24px; }
.nl-voice__stats {
  margin: 0 0 14px; padding: 16px;
  background: var(--bg-2); border: 1px solid var(--line);
  border-left: 3px solid var(--accent); border-radius: 2px;
}
.nl-voice__stats p { margin: 0; font-family: var(--font-mono); font-size: 13.5px; color: var(--ink-dim); line-height: 1.9; }
.nl-voice__stats b { color: var(--accent); font-weight: 800; }
.nl-voice__stats hr { margin: 8px 0; border: 0; border-top: 1px dashed var(--line); }
.nl-voice__total { color: var(--cyan); font-weight: 800; }
.nl-voice__note { font-size: 12px; color: var(--ink-faint); }
.nl-voice__digest {
  margin: 0 0 14px; padding: 16px;
  background: rgba(56,230,255,0.05); border: 1px solid rgba(56,230,255,0.18);
  border-radius: 2px; color: var(--ink-dim); font-size: 14px; font-weight: 500; line-height: 1.95;
}
.nl-voice__digest-label {
  display: inline-block; margin-right: 9px; padding: 2px 10px;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em;
  color: #04121a; background: var(--cyan); border-radius: 999px; vertical-align: middle;
}
.nl-voice__full { border-top: 1px dashed var(--line); padding-top: 4px; }
.nl-voice__full p { margin: 14px 0 0; color: var(--ink-dim); font-size: 13.5px; font-weight: 500; line-height: 1.95; }
.nl-voice__full p strong { color: #fff; font-weight: 700; }
.voices__toggle-wrap { margin-top: 26px; text-align: center; }
.voices__empty {
  display: none; text-align: center; color: var(--ink-faint);
  font-family: var(--font-mono); padding: 30px;
}

/* =========================================================
   Big3 reviews
   ========================================================= */
.bigstat {
  display: flex; align-items: center; justify-content: center; gap: 26px;
  max-width: 520px; margin: 0 auto 32px; padding: 24px 30px;
}
.bigstat__score { font-family: var(--font-tech); font-weight: 800; font-size: 64px; line-height: 1; color: var(--accent); text-shadow: var(--red-glow); }
.bigstat__meta { text-align: left; }
.bigstat__stars { color: #ffc24a; font-size: 20px; letter-spacing: 2px; }
.bigstat__count { margin: 6px 0 0; font-family: var(--font-mono); font-size: 12px; color: var(--ink-dim); letter-spacing: 0.04em; }

.reviews { display: grid; gap: 14px; grid-template-columns: 1fr; max-width: 920px; margin: 0 auto; }
.review { padding: 22px; }
.review__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.review__stars { color: #ffc24a; font-size: 15px; letter-spacing: 1px; }
.review__date { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-faint); letter-spacing: 0.06em; }
.review__text { margin: 0; color: var(--ink-dim); font-size: 14px; font-weight: 500; line-height: 1.95; }
.bigvoices__more { margin-top: 28px; text-align: center; }
@media (min-width: 760px) { .reviews { grid-template-columns: 1fr 1fr; } }

/* =========================================================
   Flow
   ========================================================= */
.flow { display: grid; gap: 14px; grid-template-columns: 1fr; padding: 0; list-style: none; margin: 0; counter-reset: step; }
.flow li {
  position: relative; padding: 26px 22px 24px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
}
.flow li::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--font-tech); font-weight: 800; font-size: 46px;
  color: transparent; -webkit-text-stroke: 1px rgba(56,230,255,0.4);
  line-height: 1; display: block;
}
.flow li strong { display: block; margin: 14px 0 0; font-size: 18px; font-weight: 900; }
.flow li p { margin: 8px 0 0; color: var(--ink-dim); font-size: 13.5px; font-weight: 500; }
.flow li::after {
  content: ""; position: absolute; top: 0; left: 0; width: 3px; height: 0;
  background: var(--accent); box-shadow: var(--red-glow); transition: height .5s ease;
}
.flow li.in::after { height: 100%; }
@media (min-width: 820px) { .flow { grid-template-columns: repeat(4, 1fr); } }

/* =========================================================
   Urgency / Final CTA
   ========================================================= */
.urgency {
  position: relative;
  overflow: hidden;
}
.urgency__box {
  position: relative; z-index: 2;
  max-width: 920px; margin: 0 auto; text-align: center;
  padding: clamp(36px, 6vw, 64px) clamp(24px, 5vw, 56px);
}
.urgency__box .alert {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; color: var(--accent); text-transform: uppercase;
}
.urgency__box .alert .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: var(--red-glow); animation: blink 1.4s infinite; }
.urgency__box h2 { margin: 18px 0 0; font-size: clamp(26px, 5vw, 46px); font-weight: 900; line-height: 1.3; }
.urgency__box .tagline {
  margin: 26px auto 0; max-width: 720px;
  font-size: clamp(17px, 3vw, 24px); font-weight: 900; line-height: 1.5; color: #fff;
}
.urgency__box .tagline .hot { color: var(--accent); text-shadow: var(--red-glow); }
.urgency__box p.sub { margin: 18px auto 0; max-width: 640px; color: var(--ink-dim); font-weight: 500; }

/* slots countdown */
.countdown { display: flex; justify-content: center; gap: 12px; margin: 30px 0 6px; }
.cd { min-width: 76px; padding: 14px 10px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); }
.cd .n { font-family: var(--font-tech); font-weight: 800; font-size: clamp(26px, 5vw, 40px); color: #fff; line-height: 1; }
.cd .l { margin-top: 6px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.12em; color: var(--ink-faint); text-transform: uppercase; }
.urgency__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 30px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { display: grid; gap: 12px; max-width: 860px; margin: 0 auto; }
.faq details { padding: 18px 22px; }
.faq summary {
  position: relative; cursor: pointer; list-style: none;
  font-weight: 700; font-size: 15.5px; padding-right: 34px; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "Q"; font-family: var(--font-mono); color: var(--accent); font-weight: 800; margin-right: 12px; }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: -2px;
  font-family: var(--font-mono); font-size: 20px; color: var(--cyan); transition: transform .2s;
}
.faq details[open] summary::after { content: "−"; }
.faq p { margin: 14px 0 0 26px; color: var(--ink-dim); font-size: 14px; font-weight: 500; line-height: 1.9; }

/* =========================================================
   Footer
   ========================================================= */
.ftr {
  position: relative; z-index: 1;
  padding: 44px 0; text-align: center;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.ftr__logo { font-family: var(--font-tech); font-weight: 800; font-size: 22px; }
.ftr__logo .lim { color: var(--accent); text-shadow: var(--red-glow); }
.ftr p { margin: 12px 0 0; font-family: var(--font-mono); font-size: 12px; color: var(--ink-faint); letter-spacing: 0.06em; }

/* =========================================================
   Scroll reveal
   ========================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .strip__track, .telemetry__live::before, .urgency__box .alert .dot { animation: none; }
}

/* divider line accent at section tops */
.section::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(100% - 36px, var(--maxw)); height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-soft) 30%, var(--line-soft) 70%, transparent);
}
.hero::before, .strip::before { display: none; }

/* =========================================================
   Mobile: tighten section heading sizes so long Japanese
   titles don't wrap awkwardly; keep every section title uniform.
   ========================================================= */
@media (max-width: 560px) {
  h2.title { font-size: 22px; line-height: 1.4; word-break: keep-all; overflow-wrap: anywhere; }
  .urgency__box h2 { font-size: 21px; line-height: 1.45; word-break: keep-all; overflow-wrap: anywhere; }
  /* smaller, uniform achievement list so long entries (e.g. 全日本パワー…20回優勝) fit one line */
  .coach__list li { font-size: 14px; }
  /* keep the 3 hero badges on a single line on phones */
  .hero__badges { gap: 6px; }
  .hero__badges .chip { font-size: 11px; padding: 7px 10px; gap: 5px; letter-spacing: 0.02em; }
}

/* Coach section: center its heading like every other section while stacked */
@media (max-width: 879px) {
  .coach__copy { text-align: center; }
  .coach__copy .eyebrow { justify-content: center; }
  .coach__list, .records { text-align: left; }
}
