/* ===== KTMS Landing Page — Bushido Digital ===== */

html {
  scroll-behavior: smooth;
}

/* ===== Landing layout tokens ===== */
:root {
  --l-nav-h: 64px;
  --l-max-w: 1200px;
  --l-pad: clamp(16px, 5vw, 48px);
  --l-section: clamp(80px, 10vw, 140px);
}

/* Dark-first landing theme */
.l-page {
  background: var(--c-ink);
  color: #fafafa;
}

/* ===== Shared ===== */
.l-container {
  max-width: var(--l-max-w);
  margin: 0 auto;
  padding: 0 var(--l-pad);
}
.l-section {
  padding: var(--l-section) 0;
}
.l-section-label {
  font-family: var(--f-mono);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-red);
  margin-bottom: var(--s-3);
}
.l-section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: var(--fw-black);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: #fafafa;
  margin: 0 0 var(--s-3) 0;
}
.l-section-sub {
  font-size: clamp(var(--fs-base), 1.5vw, var(--fs-md));
  color: rgba(255, 255, 255, 0.45);
  max-width: 540px;
  line-height: 1.6;
  margin: 0 0 var(--s-12) 0;
}

/* ===== Navbar ===== */
.l-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--l-nav-h);
  display: flex;
  align-items: center;
  transition:
    background var(--t-slow),
    border-color var(--t-slow);
}
.l-nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.l-nav__inner {
  display: flex;
  align-items: center;
  gap: var(--s-8);
  width: 100%;
}
.l-logo {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  text-decoration: none;
  color: #fafafa;
  font-weight: var(--fw-black);
  font-size: var(--fs-md);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.l-logo__kanji {
  color: var(--c-red);
  font-size: 1.4em;
}
.l-nav__links {
  display: flex;
  gap: var(--s-6);
  margin-left: auto;
}
.l-nav__links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: var(--fs-sm);
  letter-spacing: 0.04em;
  transition: color var(--t-fast);
}
.l-nav__links a:hover {
  color: #fafafa;
}
.l-nav__cta {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

/* ===== CTA Buttons ===== */
.btn--red {
  background: var(--c-red);
  border: 1px solid var(--c-red);
  color: #fff;
  padding: 10px var(--s-6);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  font-family: var(--f-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition:
    background var(--t-fast),
    border-color var(--t-fast),
    transform var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  text-decoration: none;
}
.btn--red:hover {
  background: var(--c-red-deep);
  border-color: var(--c-red-deep);
}
.btn--red:active {
  transform: translateY(1px);
}

.btn--ghost-white {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.75);
  padding: 10px var(--s-6);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  font-family: var(--f-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition:
    border-color var(--t-fast),
    color var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  text-decoration: none;
}
.btn--ghost-white:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.btn--sm-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  padding: 6px 14px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  font-family: var(--f-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all var(--t-fast);
  text-decoration: none;
}
.btn--sm-ghost:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

/* ===== Hero ===== */
.l-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-ink);
  padding-top: var(--l-nav-h);
}
.l-hero__bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(255, 255, 255, 0.035) 1px,
    transparent 0
  );
  background-size: 28px 28px;
  pointer-events: none;
}
.l-hero__glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, transparent 68%);
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  pointer-events: none;
}
.l-hero__kanji {
  position: absolute;
  right: -4rem;
  top: 50%;
  transform: translateY(-52%);
  font-size: min(58vw, 680px);
  font-weight: var(--fw-black);
  color: var(--c-red);
  opacity: 0.028;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}
.l-hero__content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: clamp(60px, 8vw, 120px) 0;
}
.l-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--f-mono);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-red);
  border: 1px solid rgba(230, 57, 70, 0.28);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: var(--s-6);
  opacity: 0;
  animation: fade-up 0.5s 0.15s both;
}
.l-eyebrow__dot {
  width: 6px;
  height: 6px;
  background: var(--c-red);
  border-radius: 50%;
  animation: pulse 1.2s ease-in-out infinite;
}
.l-hero__h1 {
  margin: 0 0 var(--s-6) 0;
  font-size: clamp(48px, 8.5vw, 100px);
  font-weight: var(--fw-black);
  line-height: 0.94;
  letter-spacing: -0.035em;
  color: #fafafa;
}
.l-hero__h1 .word {
  display: inline-block;
  opacity: 0;
  animation: fade-up 0.65s both;
}
.l-hero__h1 .word--red {
  color: var(--c-red);
}
.l-hero__h1 .break {
  display: block;
  height: 0.06em;
}
.l-hero__sub {
  font-size: clamp(var(--fs-base), 2vw, var(--fs-lg));
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
  max-width: 560px;
  margin-bottom: var(--s-10);
  opacity: 0;
  animation: fade-up 0.5s 0.85s both;
}
.l-hero__actions {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  flex-wrap: wrap;
  margin-bottom: var(--s-16);
  opacity: 0;
  animation: fade-up 0.5s 1.05s both;
}
.l-hero__stats {
  display: flex;
  gap: var(--s-12);
  flex-wrap: wrap;
  padding-top: var(--s-8);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  opacity: 0;
  animation: fade-up 0.5s 1.2s both;
}
/* ===== Feature Chips (Hero) ===== */
.l-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  padding-top: var(--s-8);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  opacity: 0;
  animation: fade-up 0.5s 1.2s both;
}
.l-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-mono);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5px 12px;
  border-radius: 2px;
  transition:
    color var(--t-fast),
    border-color var(--t-fast);
}
.l-chip i {
  color: var(--c-red);
  font-size: 10px;
}

/* ===== Logo strip ===== */
.l-logos {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: var(--s-8) 0;
  background: rgba(255, 255, 255, 0.015);
}
.l-logos__label {
  text-align: center;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: var(--s-5);
  font-family: var(--f-mono);
}
.l-logos__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 60px);
  flex-wrap: wrap;
}
.l-logos__item {
  font-family: var(--f-mono);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--t-base);
  cursor: default;
}
.l-logos__item:hover {
  color: rgba(255, 255, 255, 0.45);
}

/* ===== Features Bento ===== */
.l-features {
  background: var(--c-ink);
}
.l-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.l-bento__cell {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: var(--s-8);
  transition:
    border-color var(--t-slow),
    transform var(--t-slow);
  position: relative;
  overflow: hidden;
}
.l-bento__cell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(230, 57, 70, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-slow);
}
.l-bento__cell:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}
.l-bento__cell:hover::before {
  opacity: 1;
}

.l-bento__cell--span8 {
  grid-column: span 8;
}
.l-bento__cell--span4 {
  grid-column: span 4;
}
.l-bento__cell--span4x3 {
  grid-column: span 4;
}

.l-bento__icon {
  width: 38px;
  height: 38px;
  background: rgba(230, 57, 70, 0.08);
  border: 1px solid rgba(230, 57, 70, 0.18);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-red);
  font-size: 15px;
  margin-bottom: var(--s-4);
  position: relative;
}
.l-bento__title {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: #fafafa;
  margin: 0 0 var(--s-2) 0;
}
.l-bento__desc {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.6;
  margin: 0;
}

/* Live score in featured cell */
.l-live-preview {
  margin-top: var(--s-6);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  padding: var(--s-4) var(--s-6);
}
.l-live-preview__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--s-4);
}
.l-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--c-red);
  padding: 2px 8px;
  border-radius: 2px;
}
.l-live-badge__dot {
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.2s ease-in-out infinite;
}
.l-live-preview__timer {
  font-family: var(--f-mono);
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.35);
}
.l-live-preview__board {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--s-4);
  align-items: center;
}
.l-live-preview__fighter {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: rgba(255, 255, 255, 0.6);
}
.l-live-preview__fighter--aka {
  color: rgba(230, 57, 70, 0.9);
}
.l-live-preview__fighter--ao {
  color: rgba(2, 132, 199, 0.9);
  text-align: right;
}
.l-live-preview__score {
  font-family: var(--f-mono);
  font-size: 56px;
  font-weight: var(--fw-bold);
  color: #fafafa;
  text-align: center;
  letter-spacing: -0.03em;
  min-width: 120px;
  line-height: 1;
}
.l-live-preview__score-sep {
  font-size: 32px;
  color: rgba(255, 255, 255, 0.15);
}

/* ===== How It Works ===== */
.l-how {
  background: #070707;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.l-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-8);
  position: relative;
}
.l-steps::after {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(16.5% + 28px);
  right: calc(16.5% + 28px);
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--c-red) 0%,
    rgba(230, 57, 70, 0.3) 50%,
    rgba(230, 57, 70, 0.1) 100%
  );
}
.l-step__num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.08);
  border: 1px solid rgba(230, 57, 70, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--c-red);
  margin-bottom: var(--s-6);
  position: relative;
  z-index: 1;
  background-clip: padding-box;
}
.l-step__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: #fafafa;
  margin: 0 0 var(--s-2) 0;
}
.l-step__desc {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.6;
  margin: 0;
}

/* ===== Dashboard Demo ===== */
.l-demo {
  background: var(--c-ink);
  overflow: hidden;
}
.l-demo__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--s-16);
  align-items: center;
}
.l-browser {
  background: #171717;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 40px 80px -20px rgba(0, 0, 0, 0.7);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform var(--t-slow);
}
.l-demo__inner:hover .l-browser {
  transform: perspective(1200px) rotateY(0) rotateX(0);
}
.l-browser__bar {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  padding: 10px var(--s-4);
  background: #1e1e1e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.l-browser__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.l-browser__dot:nth-child(1) {
  background: #ff5f57;
}
.l-browser__dot:nth-child(2) {
  background: #febc2e;
}
.l-browser__dot:nth-child(3) {
  background: #28c840;
}
.l-browser__url {
  flex: 1;
  max-width: 280px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  padding: 3px 12px;
  font-family: var(--f-mono);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}

/* ===== Admin Mockup (light theme) ===== */
.l-mock {
  display: grid;
  grid-template-rows: 56px 1fr;
  height: 440px;
  overflow: hidden;
  background: #fafafa;
}
.l-mock__topbar {
  background: #0a0a0a;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
  grid-column: 1 / -1;
}
.l-mock__brand {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fafafa;
  display: flex;
  align-items: center;
  gap: 6px;
}
.l-mock__brand span {
  color: #e63946;
}
.l-mock__nav-links {
  display: flex;
  gap: 2px;
  margin-left: auto;
}
.l-mock__nav-link {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
  padding: 4px 8px;
  border-radius: 2px;
}
.l-mock__nav-link--active {
  color: #fafafa;
  background: rgba(255, 255, 255, 0.07);
}
.l-mock__body {
  display: grid;
  grid-template-columns: 180px 1fr;
  overflow: hidden;
}
.l-mock__sidebar {
  background: #fff;
  border-right: 1px solid #e5e5e5;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.l-mock__nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 3px;
  font-size: 11px;
  color: #737373;
}
.l-mock__nav-item--active {
  background: #fafafa;
  color: #0a0a0a;
  font-weight: 600;
  border-left: 2px solid #e63946;
  padding-left: 6px;
}
.l-mock__content {
  background: #fafafa;
  padding: 16px;
  overflow: hidden;
}
.l-mock__page-title {
  font-size: 14px;
  font-weight: 700;
  color: #0a0a0a;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.l-mock__stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.l-mock__stat-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 10px;
}
.l-mock__stat-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #737373;
  margin-bottom: 3px;
}
.l-mock__stat-val {
  font-family: var(--f-mono);
  font-size: 20px;
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1;
}
.l-mock__tatami-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.l-mock__tatami {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 8px;
  position: relative;
  overflow: hidden;
}
.l-mock__tatami::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.l-mock__tatami--live::before {
  background: #e63946;
}
.l-mock__tatami--idle::before {
  background: #e5e5e5;
}
.l-mock__tatami-name {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #737373;
  margin-bottom: 6px;
}
.l-mock__tatami-score {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 3px;
}
.l-mock__tatami-player {
  font-size: 9px;
  color: #737373;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.l-mock__tatami-player--aka {
  color: #e63946;
  font-weight: 600;
}
.l-mock__tatami-player--ao {
  color: #0284c7;
  font-weight: 600;
  text-align: right;
}
.l-mock__tatami-pts {
  font-family: var(--f-mono);
  font-size: 18px;
  font-weight: 700;
  color: #0a0a0a;
  text-align: center;
  line-height: 1;
}
.l-mock__tatami-sep {
  font-family: var(--f-mono);
  font-size: 12px;
  color: #e5e5e5;
  text-align: center;
}
.l-mock__live-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #e63946;
  color: #fff;
  padding: 1px 5px;
  border-radius: 2px;
  margin-top: 4px;
}
.l-mock__live-chip::before {
  content: '';
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.2s ease-in-out infinite;
}

/* ===== Pricing ===== */
.l-pricing {
  background: #070707;
}
.l-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  align-items: start;
}
.l-price-card {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  padding: var(--s-8);
  position: relative;
  transition:
    transform var(--t-slow),
    border-color var(--t-base);
}
.l-price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.14);
}
.l-price-card--featured {
  border-color: var(--c-red);
  background: linear-gradient(160deg, rgba(230, 57, 70, 0.07) 0%, #111111 55%);
  margin-top: -var(--s-4);
}
.l-price-card--featured:hover {
  border-color: var(--c-red-deep);
}
.l-price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--c-red);
  color: #fff;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 12px;
  border-radius: 2px;
}
.l-price-tier {
  font-family: var(--f-mono);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: var(--s-4);
}
.l-price-amount {
  margin-bottom: var(--s-2);
  line-height: 1;
}
.l-price-amount__val {
  font-size: clamp(40px, 4vw, 56px);
  font-weight: var(--fw-black);
  color: #fafafa;
  letter-spacing: -0.04em;
}
.l-price-amount__period {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.3);
  margin-left: 4px;
}
.l-price-desc {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.55;
  margin-bottom: var(--s-6);
  min-height: 56px;
}
.l-price-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: var(--s-6);
}
.l-price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-8) 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.l-price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.4;
}
.l-price-features li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  background: rgba(230, 57, 70, 0.12);
  border: 1px solid rgba(230, 57, 70, 0.25);
  border-radius: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23e63946' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.l-price-features li.muted {
  color: rgba(255, 255, 255, 0.28);
}
.l-price-features li.muted::before {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='2' viewBox='0 0 10 2' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1H9' stroke='rgba(255,255,255,0.2)' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-color: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

/* ===== Early Access ===== */
.l-early {
  background: var(--c-ink);
}
.l-early__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--s-16);
  align-items: start;
}
.l-early__perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}
.l-early__perks li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-4);
}
.l-early__perk-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(230, 57, 70, 0.08);
  border: 1px solid rgba(230, 57, 70, 0.18);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-red);
  font-size: 14px;
  margin-top: 1px;
}
.l-early__perks li div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.l-early__perks li strong {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: #fafafa;
}
.l-early__perks li span {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.5;
}
.l-early__card {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 2px solid var(--c-red);
  border-radius: 4px;
  padding: var(--s-8);
  display: flex;
  flex-direction: column;
}
.l-early__card-label {
  font-family: var(--f-mono);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-red);
  margin-bottom: var(--s-3);
}
.l-early__card-desc {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin: 0 0 var(--s-6) 0;
}
.l-early__card-hint {
  font-family: var(--f-mono);
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.22);
  text-align: center;
  margin: var(--s-4) 0 0 0;
}

@media (max-width: 960px) {
  .l-early__inner {
    grid-template-columns: 1fr;
  }
  .l-early__card {
    max-width: 420px;
  }
}

/* ===== Final CTA ===== */
.l-cta-section {
  background: #070707;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
.l-cta-section__kanji {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: min(60vw, 500px);
  font-weight: var(--fw-black);
  color: var(--c-red);
  opacity: 0.016;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.l-cta-section__content {
  position: relative;
  z-index: 1;
}
.l-cta-section__title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: var(--fw-black);
  letter-spacing: -0.03em;
  color: #fafafa;
  margin: 0 auto var(--s-4) auto;
  max-width: 800px;
  line-height: 1.04;
}
.l-cta-section__sub {
  font-size: clamp(var(--fs-base), 1.5vw, var(--fs-md));
  color: rgba(255, 255, 255, 0.42);
  margin: 0 auto var(--s-10) auto;
  max-width: 480px;
  line-height: 1.55;
}
.l-cta-section__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--s-4);
  flex-wrap: wrap;
}

/* ===== Footer ===== */
.l-footer {
  background: var(--c-ink);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: var(--s-16) 0 var(--s-8);
}
.l-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: var(--s-16);
  align-items: start;
  margin-bottom: var(--s-12);
}
.l-footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.l-footer__brand-name {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-weight: var(--fw-black);
  font-size: var(--fs-md);
  color: #fafafa;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}
.l-footer__brand-name span {
  color: var(--c-red);
}
.l-footer__tagline {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.28);
  max-width: 220px;
  line-height: 1.55;
}
.l-footer__col-title {
  font-family: var(--f-mono);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: var(--s-3);
}
.l-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.l-footer__links a {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color var(--t-fast);
}
.l-footer__links a:hover {
  color: #fafafa;
}
.l-footer__bottom {
  padding-top: var(--s-6);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.22);
  font-family: var(--f-mono);
  flex-wrap: wrap;
  gap: var(--s-3);
}

/* ===== Login Modal ===== */
.l-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-4);
  animation: fade-in 150ms both;
}
.l-modal-backdrop[hidden] {
  display: none;
}
.l-modal {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 2px solid var(--c-red);
  border-radius: 4px;
  width: 100%;
  max-width: 400px;
  padding: var(--s-8);
  animation: slide-up 0.28s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  position: relative;
}
.l-modal__close {
  position: absolute;
  top: var(--s-4);
  right: var(--s-4);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  font-size: 18px;
  padding: 4px;
  line-height: 1;
  transition: color var(--t-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-modal__close:hover {
  color: #fafafa;
}
.l-modal__logo {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-weight: var(--fw-black);
  font-size: var(--fs-md);
  color: #fafafa;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.l-modal__logo span:first-child {
  color: var(--c-red);
}
.l-modal__subtitle {
  font-family: var(--f-mono);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: var(--s-6);
}
.l-form__field {
  margin-bottom: var(--s-4);
}
.l-form__label {
  display: block;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.42);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--s-1);
}
.l-form__input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: #fafafa;
  padding: 10px var(--s-4);
  font-size: var(--fs-base);
  font-family: var(--f-body);
  transition:
    border-color var(--t-fast),
    box-shadow var(--t-fast);
  box-sizing: border-box;
}
.l-form__input:focus {
  outline: none;
  border-color: var(--c-red);
  box-shadow: 0 0 0 2px rgba(230, 57, 70, 0.15);
}
.l-form__input::placeholder {
  color: rgba(255, 255, 255, 0.18);
}
.l-form__error {
  color: var(--c-red);
  font-size: var(--fs-xs);
  margin-top: var(--s-2);
  display: none;
  font-family: var(--f-mono);
}
.l-modal__actions {
  margin-top: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.l-modal__actions .btn--red {
  width: 100%;
  justify-content: center;
  padding: 12px;
}
.l-modal__hint {
  text-align: center;
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.25);
  font-family: var(--f-mono);
}

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 {
  transition-delay: 0.08s;
}
.reveal-d2 {
  transition-delay: 0.16s;
}
.reveal-d3 {
  transition-delay: 0.24s;
}
.reveal-d4 {
  transition-delay: 0.32s;
}
.reveal-d5 {
  transition-delay: 0.4s;
}

/* ===== Keyframes ===== */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .l-bento__cell--span8 {
    grid-column: span 12;
  }
  .l-bento__cell--span4 {
    grid-column: span 6;
  }
  .l-bento__cell--span4x3 {
    grid-column: span 6;
  }
  .l-steps {
    grid-template-columns: 1fr;
  }
  .l-steps::after {
    display: none;
  }
  .l-demo__inner {
    grid-template-columns: 1fr;
  }
  .l-browser {
    transform: none !important;
  }
  .l-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .l-price-card--featured {
    margin-top: 0;
  }
  .l-testimonials-grid {
    grid-template-columns: 1fr;
  }
  .l-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-8);
  }
  .l-nav__links {
    display: none;
  }
  .l-mock__stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .l-mock__tatami-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .l-bento__cell--span4 {
    grid-column: span 12;
  }
  .l-bento__cell--span4x3 {
    grid-column: span 12;
  }
  .l-hero__stats {
    flex-direction: column;
    gap: var(--s-4);
  }
  .l-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .l-cta-section__actions {
    flex-direction: column;
    align-items: center;
  }
  .l-footer__inner {
    grid-template-columns: 1fr;
  }
  .l-mock__sidebar {
    display: none;
  }
  .l-mock {
    grid-template-columns: 1fr;
  }
  .l-mock__tatami-grid {
    grid-template-columns: 1fr;
  }
  .l-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}

/* ===== Karatemaennchen — scroll-gebundene Kata-Posen unten rechts ===== */
#kata-figure {
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: 140px;
  z-index: 50;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  user-select: none;
}

#kata-label {
  background: rgba(0, 0, 0, 0.65);
  color: var(--c-red, #ff4d4d);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 6px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 77, 77, 0.25);
  transition: opacity 200ms ease;
}

#kata-svg-wrap {
  width: 100px;
  height: 160px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: opacity 200ms ease;
}

#kata-svg-wrap.fading {
  opacity: 0;
}

#kata-shadow {
  width: 80px;
  height: 6px;
  margin-top: -3px;
  background: radial-gradient(ellipse, rgba(255, 77, 77, 0.4) 0%, transparent 70%);
  border-radius: 50%;
}

@media (max-width: 768px) {
  #kata-figure {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  #kata-label,
  #kata-svg-wrap {
    transition: none;
  }
}

