@charset "UTF-8";
/* ====================================================================
   JoGi Soccer — Sporty Premium (v3)
   Dark, oversized hangul, pitch graphics, orange accent
   ==================================================================== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Brand */
  --orange: #FF5C00;
  --orange-light: #FF7A2E;
  --orange-deep: #E04A00;

  /* Dark palette */
  --ink-abs: #000000;
  --ink: #0A0A0B;
  --ink-800: #121215;
  --ink-700: #1A1A1F;
  --ink-600: #26262D;
  --ink-500: #3A3A44;
  --ink-400: #6A6A76;
  --ink-300: #A0A0AC;
  --ink-200: #D4D4DA;
  --ink-100: #E8E8EC;

  /* Light */
  --paper: #FFFFFF;
  --paper-soft: #F6F5F2;
  --paper-warm: #EEEAE2;

  /* Pitch */
  --pitch-green: #1F7A3B;
  --pitch-line: rgba(255,255,255,0.12);

  /* Type scale — BIG */
  --display: clamp(48px, 7vw, 120px);
  --h1: clamp(38px, 5.5vw, 88px);
  --h2: clamp(36px, 5vw, 80px);
  --h3: clamp(28px, 3vw, 44px);
  --h4: clamp(20px, 1.6vw, 24px);
  --body: 16px;
  --body-lg: 18px;
  --small: 13px;
  --mono: 11px;

  /* Rhythm */
  --max-w: 1440px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-pad: clamp(80px, 10vw, 160px);

  /* Easing */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Base ---------- */

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: var(--body);
  line-height: 1.55;
  color: var(--paper);
  background: var(--ink-abs);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

html[lang="ko"] body { font-family: 'Pretendard Variable', 'Pretendard', 'Inter', -apple-system, sans-serif; }
html[lang="ja"] body { font-family: 'Noto Sans JP', 'Inter', sans-serif; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* -- Focus & Accessibility -- */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

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

::selection { background: var(--orange); color: var(--ink-abs); }

/* ---------- Typography ---------- */

.display {
  font-family: 'Inter', 'Pretendard', sans-serif;
  font-weight: 900;
  font-size: var(--display);
  line-height: 0.88;
  letter-spacing: -0.035em;
  text-transform: none;
}

.h1 {
  font-family: 'Inter', 'Pretendard', sans-serif;
  font-weight: 900;
  font-size: var(--h1);
  line-height: 0.9;
  letter-spacing: -0.03em;
}
html[lang="ko"] .h1,
html[lang="ja"] .h1 {
  font-weight: 900;
  font-family: 'Pretendard Variable', 'Pretendard', 'Noto Sans JP', sans-serif;
}

.h2 {
  font-family: 'Inter', 'Pretendard', sans-serif;
  font-weight: 900;
  font-size: var(--h2);
  line-height: 0.95;
  letter-spacing: -0.025em;
}
html[lang="ko"] .h2,
html[lang="ja"] .h2 {
  font-family: 'Pretendard Variable', 'Pretendard', 'Noto Sans JP', sans-serif;
}

.h3 {
  font-weight: 800;
  font-size: var(--h3);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.h4 {
  font-weight: 700;
  font-size: var(--h4);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-300);
  font-weight: 500;
}

.eyebrow-orange { color: var(--orange); }

.italic-serif {
  font-family: 'Inter', 'Pretendard', sans-serif;
  font-style: normal;
  font-weight: 300;
  color: var(--ink-300);
}

/* Korean/Japanese: skip italic serif, use contrast weight + subtle color instead */
html[lang="ko"] .italic-serif,
html[lang="ja"] .italic-serif,
html[lang="ko"] .hero__title .italic,
html[lang="ja"] .hero__title .italic,
html[lang="ko"] .feature__title .italic,
html[lang="ja"] .feature__title .italic {
  font-family: inherit;
  font-style: normal;
  font-weight: 300;
  color: var(--ink-300);
}
html[lang="ko"] .download__title .italic,
html[lang="ja"] .download__title .italic {
  font-family: inherit;
  font-style: normal;
  font-weight: 400;
  color: #fff;
}
html[lang="ko"] .hero__title .italic,
html[lang="ja"] .hero__title .italic,
html[lang="ko"] .feature__title .italic,
html[lang="ja"] .feature__title .italic {
  font-weight: 300;
}

/* ---------- Layout ---------- */

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { position: relative; }

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}

.nav.scrolled {
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.logo img { width: 34px; height: 34px; border-radius: 7px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.nav__links a {
  color: rgba(255,255,255,0.85);
  padding: 9px 16px;
  transition: color 0.2s;
}
.nav__links a:hover { color: #fff; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--ink-abs);
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: transform 0.2s, background 0.2s;
}
.nav__cta:hover { background: var(--orange-light); transform: translateY(-1px); }

.lang-switch {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-200);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: border-color 0.2s;
}
.lang-switch:hover { border-color: rgba(255,255,255,0.25); }

.lang-switch__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--ink-800);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 6px;
  min-width: 140px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.2s, transform 0.2s;
}
.lang-switch.open .lang-switch__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.lang-switch__menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--ink-200);
}
.lang-switch__menu button:hover { background: var(--ink-700); color: var(--paper); }
.lang-switch__menu button.active { color: var(--orange); }

@media (max-width: 860px) {
  .nav__links { display: none; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  overflow: hidden;
  background: var(--ink-abs);
}

/* Pitch background graphic */
.pitch-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
}
.pitch-bg svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Radial orange glow */
.hero::before {
  content: "";
  position: absolute;
  width: 900px; height: 900px;
  right: -200px; top: 30%;
  background: radial-gradient(circle, rgba(255,92,0,0.22) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(40px);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 220px);
}

.hero__tagpills {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.tagpill {
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-100);
  letter-spacing: 0.02em;
}

.hero__title {
  font-family: 'Inter', 'Pretendard', sans-serif;
  font-weight: 900;
  font-size: var(--h1);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--paper);
  margin-bottom: 28px;
}
html[lang="ko"] .hero__title,
html[lang="ja"] .hero__title {
  font-family: 'Pretendard Variable', 'Pretendard', 'Noto Sans JP', sans-serif;
  font-weight: 900;
}

.hero__title .line { display: block; }
.hero__title .accent { color: var(--orange); }
.hero__title .italic {
  font-family: 'Inter', 'Pretendard', sans-serif;
  font-style: normal;
  font-weight: 300;
  color: var(--ink-300);
  letter-spacing: -0.02em;
}

.hero__sub {
  font-size: var(--body-lg);
  line-height: 1.6;
  color: var(--ink-200);
  max-width: 520px;
  margin-bottom: 40px;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 999px;
  transition: all 0.2s var(--ease);
  letter-spacing: 0.01em;
  cursor: pointer;
}

a.logo, .nav__links a, .nav__cta, .faq__q, .lang-switch button, .foot a {
  cursor: pointer;
}
.btn--primary {
  background: var(--orange);
  color: var(--ink-abs);
}
.btn--primary:hover { background: var(--orange-light); transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  color: var(--paper);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn--ghost:hover { border-color: var(--paper); background: rgba(255,255,255,0.05); }

.btn--dark {
  background: var(--ink-abs);
  color: var(--paper);
}
.btn--dark:hover { background: var(--ink-700); }

.btn--light {
  background: var(--paper);
  color: var(--ink-abs);
}
.btn--light:hover { background: var(--ink-100); }

.btn__meta {
  font-size: 12px;
  color: var(--ink-400);
  font-weight: 500;
  margin-left: 6px;
}

/* Hero phone */
.hero__phone-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.phone {
  position: relative;
  width: 320px;
  aspect-ratio: 320 / 650;
  border-radius: 46px;
  background: var(--ink);
  padding: 12px;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.06),
    0 40px 80px -20px rgba(0,0,0,0.6),
    0 0 100px rgba(255,92,0,0.15);
}
.phone::before {
  content: "";
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 28px;
  background: var(--ink-abs);
  border-radius: 14px;
  z-index: 3;
}
.phone__screen {
  width: 100%;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: var(--paper);
}
.phone__screen img { width: 100%; height: 100%; object-fit: cover; image-rendering: -webkit-optimize-contrast; }

.phone--small { width: 240px; }
.phone--tilted { transform: rotate(-3deg); }

/* ---------- Stats Strip ---------- */

.stats {
  padding: 80px 0;
  background: var(--ink-abs);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.stat {
  padding: 0 20px;
  border-left: 1px solid rgba(255,255,255,0.1);
}
.stat:first-child { border-left: none; padding-left: 0; }

.stat__num {
  font-family: 'Helvetica Neue', 'Helvetica', sans-serif;
  font-size: clamp(56px, 6vw, 84px);
  font-weight: 900;
  line-height: 1;
  color: var(--orange);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.stat__label {
  font-size: 13px;
  color: var(--ink-300);
  font-weight: 500;
  letter-spacing: 0.01em;
}

@media (max-width: 760px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .stat { border-left: none; padding: 0; }
}

/* ---------- Orange Marquee ---------- */

.marquee {
  padding: 22px 0;
  background: var(--orange);
  color: var(--ink-abs);
  overflow: hidden;
  border-top: 1px solid var(--orange-deep);
  border-bottom: 1px solid var(--orange-deep);
}

.marquee__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 55s linear infinite;
  width: max-content;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.marquee__item::after {
  content: "\2726";
  font-size: 13px;
  opacity: 0.5;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Feature Showcase ---------- */

.feature {
  padding: var(--section-pad) 0;
  background: var(--paper);
  color: var(--ink-abs);
  position: relative;
  overflow: hidden;
}

.feature--dark {
  background: var(--ink-abs);
  color: var(--paper);
}

.feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature__grid--reverse .feature__text {
  order: 2;
}

.feature__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.feature__eyebrow .num {
  color: var(--orange);
  font-weight: 700;
}

.feature__title {
  font-family: 'Inter', 'Pretendard', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
html[lang="ko"] .feature__title,
html[lang="ja"] .feature__title {
  font-family: 'Pretendard Variable', 'Pretendard', 'Noto Sans JP', sans-serif;
}
.feature__title .accent { color: var(--orange); }
.feature__title .italic {
  font-family: 'Inter', 'Pretendard', sans-serif;
  font-style: normal;
  font-weight: 300;
}

.feature__body {
  font-size: var(--body-lg);
  line-height: 1.6;
  color: var(--ink-500);
  max-width: 480px;
  margin-bottom: 36px;
  word-break: keep-all;
}
.feature--dark .feature__body { color: var(--ink-200); }

.feature__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature__list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  align-items: baseline;
}
.feature--dark .feature__list li { border-color: rgba(255,255,255,0.08); }
.feature__list li:last-child { border-bottom: 1px solid rgba(0,0,0,0.08); }
.feature--dark .feature__list li:last-child { border-bottom-color: rgba(255,255,255,0.08); }

.feature__list .ix {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  color: var(--ink-400);
  letter-spacing: 0.05em;
  padding-top: 4px;
}
.feature__list .tx {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  color: var(--ink-abs);
}
.feature--dark .feature__list .tx { color: var(--paper); }

/* Feature phone cluster */
.feature__phones {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
}

.feature__phones::before {
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.92;
  z-index: 0;
  top: 40px;
  right: 10%;
}

.feature--dark .feature__phones::before { opacity: 1; }

.feature__phones .phone {
  position: relative;
  z-index: 2;
}
.feature__phones .phone:first-child {
  transform: translateY(-16px) rotate(-2deg);
}
.feature__phones .phone--small {
  position: absolute;
  right: -8%;
  top: 40%;
  transform: rotate(4deg);
  z-index: 3;
}

/* Geometric accent shapes */
.shape-square {
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--orange);
  z-index: 0;
}
.shape-ring {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1.5px solid var(--ink-200);
  z-index: 0;
}

@media (max-width: 960px) {
  .feature__grid { grid-template-columns: 1fr; gap: 60px; }
  .feature__grid--reverse .feature__text { order: 0; }
  .feature__phones { min-height: 500px; }
}

/* ---------- Why Peer Eval ---------- */

.why-peer {
  padding: var(--section-pad) 0;
  background: var(--ink-800);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
/* subtle radial glow behind section */
.why-peer::before {
  content: "";
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(255,92,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* --- Head --- */
.why-peer__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
  position: relative;
}
.wp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255,92,0,0.1);
  border: 1px solid rgba(255,92,0,0.2);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
}
.why-peer__title {
  font-family: 'Inter', 'Pretendard', sans-serif;
  font-weight: 800;
  font-size: var(--h2);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--paper);
  margin-bottom: 0;
}
html[lang="ko"] .why-peer__title,
html[lang="ja"] .why-peer__title {
  font-family: 'Pretendard Variable', 'Pretendard', 'Noto Sans JP', sans-serif;
}
.why-peer__title-accent {
  display: block;
  color: var(--orange);
  margin-top: 4px;
}
.why-peer__sub {
  font-size: var(--body-lg);
  line-height: 1.65;
  color: var(--ink-300);
  margin-top: 20px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Before / After comparison --- */
.wp-compare {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 80px;
  background: var(--ink-700);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.wp-compare__col {
  padding: 36px 32px;
}
.wp-compare__col--before {
  background: transparent;
}
.wp-compare__col--after {
  background: rgba(255,92,0,0.04);
  border-left: 1px solid rgba(255,92,0,0.15);
}

.wp-compare__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.wp-compare__icon { font-size: 20px; }
.wp-compare__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-400);
  font-weight: 600;
}
.wp-compare__col--after .wp-compare__label { color: var(--orange); }

/* Divider with arrow */
.wp-compare__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink-700);
  position: relative;
}
.wp-compare__divider::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255,255,255,0.06);
}
.wp-compare__arrow-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink-abs);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(255,92,0,0.3);
}

/* Bar rows */
.wp-compare__bars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.wp-compare__row {
  display: grid;
  grid-template-columns: 100px 1fr 36px;
  gap: 12px;
  align-items: center;
}
.wp-compare__pos {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-300);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.wp-compare__bar {
  height: 24px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  overflow: hidden;
}
.wp-compare__fill {
  height: 100%;
  border-radius: 6px;
  background: var(--ink-500);
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.wp-compare__fill--low { background: var(--ink-500); }
.wp-compare__fill--peer {
  background: linear-gradient(90deg, var(--orange-deep), var(--orange));
}
.wp-compare__val {
  font-family: 'Helvetica Neue', 'Helvetica', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--ink-300);
  text-align: right;
}
.wp-compare__val--low { color: var(--ink-500); }
.wp-compare__val--peer { color: var(--orange); }

.wp-compare__note {
  font-size: 13px;
  color: var(--ink-500);
  font-weight: 600;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.wp-compare__note--good { color: var(--orange); }

/* --- Weight cards --- */
.wp-weights {
  margin-bottom: 72px;
}
.wp-weights__title {
  text-align: center;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
  color: var(--ink-200);
}
.wp-weights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.wp-weight {
  background: var(--ink-700);
  border-radius: 16px;
  padding: 32px 24px 28px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.25s, transform 0.25s;
  position: relative;
}
.wp-weight:hover {
  border-color: rgba(255,92,0,0.3);
  transform: translateY(-4px);
}
.wp-weight__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 10px;
  background: rgba(255,92,0,0.1);
  color: var(--orange);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
}
.wp-weight__name {
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.wp-weight__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-400);
  margin-bottom: 20px;
}
.wp-weight__ex {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.wp-weight__tag {
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  color: var(--ink-300);
  font-size: 11px;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.02em;
}
.wp-weight__tag--hi {
  background: rgba(255,92,0,0.12);
  color: var(--orange);
}
.wp-weight__tag--dim {
  background: rgba(255,255,255,0.03);
  color: var(--ink-500);
}

/* --- Punchline --- */
.wp-punch {
  max-width: 720px;
  margin: 0 auto;
}
.wp-punch__inner {
  text-align: center;
  padding: 48px 48px;
  background: linear-gradient(135deg, var(--ink-700) 0%, rgba(255,92,0,0.06) 100%);
  border-radius: 20px;
  border: 1px solid rgba(255,92,0,0.12);
  position: relative;
}
.wp-punch__q {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  line-height: 1.45;
  color: var(--paper);
  letter-spacing: -0.02em;
}
.wp-punch__q span { display: block; }
.wp-punch__q-em {
  color: var(--orange);
}
.wp-punch__divider {
  width: 48px;
  height: 2px;
  background: var(--orange);
  margin: 24px auto;
  border-radius: 1px;
}
.wp-punch__a {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-300);
  max-width: 480px;
  margin: 0 auto;
}

@media (max-width: 960px) {
  .wp-compare {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .wp-compare__col--after {
    border-left: none;
    border-top: 1px solid rgba(255,92,0,0.15);
  }
  .wp-compare__divider {
    padding: 0;
    height: 56px;
  }
  .wp-compare__divider::before {
    top: 50%; bottom: auto; left: 0; right: 0;
    width: auto; height: 1px;
  }
  .wp-compare__arrow-circle svg { transform: rotate(90deg); }
  .wp-weights__grid { grid-template-columns: 1fr; }
  .wp-compare__row { grid-template-columns: 80px 1fr 32px; }
  .wp-punch__inner { padding: 36px 24px; }
}

/* ---------- How it Works ---------- */

.how {
  padding: var(--section-pad) 0;
  background: var(--ink-abs);
  color: var(--paper);
}

.how__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}
.how__head-text { max-width: 480px; color: var(--ink-200); font-size: var(--body-lg); line-height: 1.6; }

.how__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.step {
  padding: 36px 28px 40px;
  border-right: 1px solid rgba(255,255,255,0.12);
  position: relative;
}
.step:last-child { border-right: none; }

.step__num {
  font-family: 'Helvetica Neue', 'Helvetica', sans-serif;
  font-size: 56px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.step__title {
  font-weight: 800;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.step__body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-300);
}

@media (max-width: 960px) {
  .how__head { grid-template-columns: 1fr; gap: 28px; }
  .how__steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2n) { border-right: none; }
  .step:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.12); }
}

/* ---------- Moat / Compare ---------- */

.moat {
  padding: var(--section-pad) 0;
  background: var(--paper);
  color: var(--ink-abs);
}

.moat__head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
}
.moat__body-sub {
  font-size: var(--body-lg);
  line-height: 1.6;
  color: var(--ink-500);
  margin-top: 24px;
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 4px;
  overflow: hidden;
}

.compare__col {
  padding: 48px 40px;
}
.compare__col--left {
  background: var(--paper-soft);
  border-right: 1px solid rgba(0,0,0,0.08);
}
.compare__col--right {
  background: var(--ink-abs);
  color: var(--paper);
}

.compare__tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 3px;
  margin-bottom: 24px;
}
.compare__col--left .compare__tag {
  background: rgba(0,0,0,0.06);
  color: var(--ink-500);
}
.compare__col--right .compare__tag {
  background: var(--orange);
  color: var(--ink-abs);
}

.compare__title {
  font-family: 'Inter', 'Pretendard', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
html[lang="ko"] .compare__title,
html[lang="ja"] .compare__title {
  font-family: 'Pretendard Variable', 'Pretendard', 'Noto Sans JP', sans-serif;
}

.compare__list { list-style: none; }
.compare__list li {
  padding: 16px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 15px;
  line-height: 1.5;
  display: flex;
  gap: 12px;
  align-items: baseline;
}
.compare__col--right .compare__list li { border-color: rgba(255,255,255,0.1); }

.compare__list .mark {
  flex: 0 0 18px;
  font-size: 14px;
  font-weight: 700;
  padding-top: 2px;
}
.compare__col--left .mark { color: var(--ink-400); }
.compare__col--right .mark { color: var(--orange); }

@media (max-width: 760px) {
  .compare { grid-template-columns: 1fr; }
  .compare__col--left { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.08); }
}

/* ---------- Pricing ---------- */

.pricing {
  padding: var(--section-pad) 0;
  background: var(--ink-abs);
  color: var(--paper);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: "FREE";
  position: absolute;
  font-family: 'Helvetica Neue', 'Helvetica', sans-serif;
  font-size: clamp(200px, 30vw, 500px);
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: -0.05em;
  pointer-events: none;
  z-index: 0;
}

.pricing__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.pricing__price {
  font-family: 'Helvetica Neue', 'Helvetica', sans-serif;
  font-size: clamp(120px, 20vw, 240px);
  line-height: 0.88;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.05em;
  margin: 24px 0 16px;
}
.pricing__price .dollar { font-size: 0.4em; vertical-align: middle; margin-right: 0.25em; color: var(--paper); }

.pricing__tagline {
  font-size: var(--body-lg);
  color: var(--ink-200);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* ---------- Download ---------- */

.download {
  padding: var(--section-pad) 0;
  background: var(--orange);
  color: var(--ink-abs);
  text-align: center;
}

.download__inner {
  max-width: 900px;
  margin: 0 auto;
}

.download__title {
  font-family: 'Inter', 'Pretendard', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}
html[lang="ko"] .download__title,
html[lang="ja"] .download__title {
  font-family: 'Pretendard Variable', 'Pretendard', 'Noto Sans JP', sans-serif;
}
.download__title .italic {
  font-family: 'Inter', 'Pretendard', sans-serif;
  font-style: italic;
  font-weight: 500;
}
/* ko/ja download italic override moved to line ~170 */

.download__sub {
  font-size: var(--body-lg);
  line-height: 1.6;
  color: rgba(0,0,0,0.7);
  margin-bottom: 44px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.download__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- FAQ ---------- */

.faq {
  padding: var(--section-pad) 0;
  background: var(--ink-abs);
  color: var(--paper);
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.faq__side { position: sticky; top: 120px; }
.faq__side .h2 { margin-bottom: 16px; }
.faq__side p { color: var(--ink-300); font-size: 15px; line-height: 1.6; max-width: 300px; word-break: keep-all; }

.faq__list {
  list-style: none;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.faq__item {
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 26px 0;
  text-align: left;
  font-weight: 700;
  font-size: 18px;
  color: var(--paper);
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: color 0.2s;
}
.faq__q:hover { color: var(--orange); }

.faq__q .chev {
  flex: 0 0 auto;
  width: 24px; height: 24px;
  transition: transform 0.3s var(--ease);
  color: var(--orange);
}
.faq__item.open .faq__q .chev { transform: rotate(45deg); }

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
  color: var(--ink-200);
  font-size: 15px;
  line-height: 1.7;
  word-break: keep-all;
}
.faq__item.open .faq__a {
  max-height: 400px;
  padding: 0 0 28px;
}

@media (max-width: 860px) {
  .faq__grid { grid-template-columns: 1fr; gap: 40px; }
  .faq__side { position: static; }
}

/* ---------- Footer ---------- */

.foot {
  padding: 80px 0 48px;
  background: var(--ink-abs);
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--ink-300);
  font-size: 14px;
}

.foot__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.foot__brand .logo { color: var(--paper); margin-bottom: 16px; }
.foot__brand p { color: var(--ink-300); line-height: 1.6; max-width: 300px; font-size: 14px; }

.foot__col h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: 18px;
  font-weight: 600;
}
.foot__col ul { list-style: none; }
.foot__col li { margin-bottom: 10px; }
.foot__col a { color: var(--ink-200); transition: color 0.2s; }
.foot__col a:hover { color: var(--orange); }

.foot__bot {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--ink-400);
}

@media (max-width: 860px) {
  .foot__top { grid-template-columns: 1fr 1fr; }
}

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 60px; padding: 20px var(--gutter) 0; }
  .hero__phone-wrap { padding: 0; }
  .phone { width: min(280px, 70vw); }
}

/* ====================================================================
   Phone Mockup Fallbacks — Designed CSS UI for preview
   ==================================================================== */

.mock {
  width: 100%;
  height: 100%;
  padding: 18px 14px;
  font-family: Pretendard, "Noto Sans JP", system-ui, sans-serif;
  font-size: 11px;
  color: #1a1a1f;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
.mock__nav {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10px; color: #6A6A76; font-weight: 500;
  padding: 4px 2px 10px;
  border-bottom: 1px solid #E8E8EC;
}
.mock__nav .mock__chip {
  background: #FF5C00; color: #fff; padding: 3px 8px;
  border-radius: 999px; font-size: 9px; font-weight: 700;
}
.mock__dot { width: 8px; height: 8px; border-radius: 50%; background: #FF5C00; }

/* --- Eval card --- */
.mock--eval .mock__player {
  display: flex; align-items: center; gap: 10px;
  padding: 4px 2px;
}
.mock__avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg,#FF5C00,#E04A00);
  color: #fff; display: grid; place-items: center;
  font-weight: 900; font-size: 13px;
}
.mock__pname { font-weight: 700; font-size: 13px; line-height: 1.2; }
.mock__pname span { display: block; font-weight: 400; font-size: 10px; color: #6A6A76; margin-top: 2px; }
.mock--eval .mock__rating {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 12px;
  background: #F6F5F2; border-radius: 10px;
}
.mock__big { font-family: "Inter", sans-serif; font-size: 34px; color: #FF5C00; line-height: 1; }
.mock__trend { font-size: 10px; color: #2E7D3E; font-weight: 700; }
.mock--eval .mock__attrs { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.mock__attr {
  display: grid; grid-template-columns: 36px 1fr 22px; align-items: center; gap: 8px;
  font-size: 10px;
}
.mock__attr span { color: #6A6A76; }
.mock__bar { background: #E8E8EC; height: 4px; border-radius: 999px; overflow: hidden; }
.mock__bar i { display: block; height: 100%; background: #FF5C00; border-radius: 999px; }
.mock__attr b { font-weight: 800; text-align: right; font-size: 10px; }

/* --- Eval2: stars --- */
.mock--eval2 .mock__stars {
  display: flex; flex-direction: column; gap: 12px; margin-top: 8px;
}
.mock__star {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px; background: #F6F5F2; border-radius: 10px;
}
.mock__star span { font-weight: 600; font-size: 12px; }
.mock__star i { color: #FF5C00; font-style: normal; font-size: 14px; letter-spacing: 2px; }
.mock__cta {
  margin-top: auto; background: #FF5C00; color: #fff; padding: 12px;
  border-radius: 10px; text-align: center; font-weight: 800; font-size: 12px;
}

/* --- Lineup: pitch --- */
.mock--lineup .mock__pitch {
  position: relative; flex: 1;
  background: linear-gradient(180deg, #2a8b45 0%, #1F7A3B 100%);
  border-radius: 12px;
  background-image:
    linear-gradient(180deg, #2a8b45 0%, #1F7A3B 100%),
    repeating-linear-gradient(90deg, transparent 0 24px, rgba(255,255,255,0.06) 24px 25px);
  background-blend-mode: overlay;
  overflow: hidden;
  margin-top: 6px;
}
.mock--lineup .mock__pitch::before {
  content: ""; position: absolute; inset: 8px;
  border: 1.5px solid rgba(255,255,255,0.3); border-radius: 6px;
}
.mock--lineup .mock__pitch::after {
  content: ""; position: absolute; left: 50%; right: 0; top: 50%;
  width: 24px; height: 24px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  transform: translate(-50%, -50%);
}
.mock__pos {
  position: absolute;
  width: 24px; height: 24px; border-radius: 50%;
  background: #fff; color: #1a1a1f;
  display: grid; place-items: center;
  font-weight: 900; font-size: 8px;
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.mock__pos--hi { background: #FF5C00; color: #fff; width: 28px; height: 28px; font-size: 9px; }

/* --- Lineup2: cards --- */
.mock--lineup2 .mock__cards {
  display: flex; flex-direction: column; gap: 8px; margin-top: 8px;
}
.mock__card {
  background: #FF5C00; color: #fff;
  padding: 14px 16px; border-radius: 12px;
  display: flex; flex-direction: column; gap: 2px;
}
.mock__card b { font-family: "Inter", sans-serif; font-size: 20px; letter-spacing: 1px; }
.mock__card span { font-size: 10px; opacity: 0.9; }
.mock__card--dim { background: #F6F5F2; color: #1a1a1f; }
.mock__card--dim span { color: #6A6A76; opacity: 1; }

/* --- Fee --- */
.mock--fee .mock__total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 16px; background: #0A0A0B; color: #fff; border-radius: 12px;
}
.mock--fee .mock__total span { font-size: 10px; color: #A0A0AC; }
.mock--fee .mock__total b { font-family: "Inter", sans-serif; font-size: 18px; color: #FF5C00; letter-spacing: 0.5px; }
.mock__ledger { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.mock__row {
  display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 10px;
  padding: 8px 12px; border-radius: 8px;
  background: #F6F5F2;
  font-size: 11px;
}
.mock__row em {
  font-style: normal; font-size: 9px; font-weight: 700;
  color: #2E7D3E; background: #E6F2EA; padding: 2px 6px; border-radius: 999px;
}
.mock__row--due em { color: #C62828; background: #FDECEC; }
.mock__row b { font-weight: 800; font-size: 10px; }

/* --- Fee2: donut --- */
.mock--fee2 .mock__donut {
  position: relative; width: 140px; height: 140px; margin: 14px auto 6px;
}
.mock--fee2 .mock__donut svg { width: 100%; height: 100%; }
.mock--fee2 .mock__center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px;
}
.mock--fee2 .mock__center b { font-family: "Inter", sans-serif; font-size: 24px; color: #FF5C00; }
.mock--fee2 .mock__center span { font-size: 10px; color: #6A6A76; }
.mock--fee2 .mock__legend {
  display: flex; flex-direction: column; gap: 6px; margin-top: 10px;
  font-size: 10px;
}
.mock--fee2 .mock__legend > div { display: flex; align-items: center; gap: 8px; }
.mock--fee2 .mock__legend i { width: 10px; height: 10px; border-radius: 3px; }

/* small phone variant — slightly smaller type */
.phone--small .mock { font-size: 10px; padding: 14px 10px; }
.phone--small .mock__big { font-size: 28px; }
.phone--small .mock__pos { width: 20px; height: 20px; font-size: 7px; }
.phone--small .mock__pos--hi { width: 24px; height: 24px; font-size: 8px; }
