:root {
  --ink: #08110e;
  --night: #07120f;
  --night-2: #0b1b17;
  --paper: #f3f5ef;
  --paper-2: #e7ebe3;
  --line: rgba(8, 17, 14, .16);
  --lime: #baf234;
  --lime-dark: #6d9414;
  --amber: #ff9c52;
  --blue: #74c9ff;
  --white: #f8fbf5;
  --muted: #657069;
  --wrap: min(1180px, calc(100% - 48px));
  --radius: 3px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--night);
  background: var(--lime);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,.14);
  color: var(--white);
}
.header-inner {
  width: var(--wrap);
  height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  color: var(--night);
  background: var(--lime);
  border-radius: 50%;
}
.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(7,18,15,.34);
  border-radius: 50%;
}
.brand-mark::after { inset: -7px 18px; border-radius: 0; transform: rotate(28deg); }
.brand-mark i { position: absolute; width: 1px; height: 100%; background: rgba(7,18,15,.22); transform: rotate(-35deg); }
.brand-mark b { position: relative; z-index: 1; font-size: 12px; letter-spacing: -.04em; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong { font-size: 19px; letter-spacing: .18em; }
.brand-copy small { margin-top: 6px; font-size: 9px; letter-spacing: .13em; opacity: .64; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a {
  position: relative;
  padding: 31px 0 27px;
  color: rgba(255,255,255,.76);
  font-size: 14px;
  transition: color .2s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.site-nav a:hover, .site-nav a:focus-visible { color: #fff; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); }
.menu-toggle { display: none; }

.hero {
  min-height: 850px;
  position: relative;
  display: flex;
  align-items: stretch;
  color: var(--white);
  background: #06100e;
  overflow: hidden;
}
.hero-picture, .hero-shade, .pitch-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-picture { display: block; overflow: hidden; }
.hero-picture .hero-image { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(3,10,9,.96) 0%, rgba(3,10,9,.80) 37%, rgba(3,10,9,.25) 72%, rgba(3,10,9,.34) 100%),
    linear-gradient(0deg, rgba(3,10,9,.90) 0%, transparent 40%, rgba(3,10,9,.32) 100%);
}
.pitch-lines {
  opacity: .18;
  background-image: linear-gradient(rgba(186,242,52,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(186,242,52,.10) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: var(--wrap);
  margin: 0 auto;
  padding: 166px 0 148px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .7fr);
  align-items: center;
  gap: 9vw;
}
.hero-copy { max-width: 670px; }
.eyebrow, .section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow { color: rgba(255,255,255,.66); }
.eyebrow span { width: 27px; height: 2px; background: var(--lime); }
.hero h1 {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: clamp(3.9rem, 7.4vw, 7.5rem);
  line-height: .95;
  letter-spacing: -.08em;
  font-weight: 900;
}
.hero h1::after { content: "."; color: var(--lime); }
.hero-lead { max-width: 630px; margin-bottom: 38px; color: rgba(255,255,255,.76); font-size: 18px; line-height: 1.85; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.primary-action {
  min-height: 52px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  color: var(--night);
  background: var(--lime);
  font-size: 15px;
  font-weight: 800;
  transition: background .2s ease, transform .2s ease;
}
.primary-action span { font-size: 22px; font-weight: 400; }
.primary-action:hover, .primary-action:focus-visible { background: #d1ff61; transform: translateY(-2px); }
.text-action { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.36); color: rgba(255,255,255,.76); font-size: 14px; }
.text-action:hover, .text-action:focus-visible { color: #fff; border-color: var(--lime); }

.analysis-dial {
  align-self: end;
  width: 100%;
  max-width: 390px;
  justify-self: end;
  padding: 25px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(3,13,11,.67);
  backdrop-filter: blur(12px);
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
}
.dial-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.13); }
.dial-head div { display: flex; flex-direction: column; }
.dial-head small { margin-bottom: 5px; color: var(--lime); font-size: 9px; letter-spacing: .16em; }
.dial-head strong { font-size: 16px; }
.dial-head time { color: rgba(255,255,255,.54); font-size: 12px; white-space: nowrap; }
.dial-ring {
  width: 142px;
  height: 142px;
  margin: 27px auto;
  border: 1px solid rgba(255,255,255,.16);
  border-top-color: var(--lime);
  border-right-color: rgba(186,242,52,.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: inset 0 0 0 9px rgba(255,255,255,.025), 0 0 34px rgba(186,242,52,.07);
}
.dial-ring span { color: var(--lime); font-family: Georgia, serif; font-size: 53px; line-height: 1; }
.dial-ring small { color: rgba(255,255,255,.46); font-size: 8px; line-height: 1.4; letter-spacing: .12em; }
.dial-bars { display: grid; gap: 13px; }
.dial-bars > div { display: grid; grid-template-columns: 88px 1fr 32px; align-items: center; gap: 10px; color: rgba(255,255,255,.72); font-size: 11px; }
.dial-bars i { position: relative; height: 2px; background: rgba(255,255,255,.14); overflow: hidden; }
.dial-bars i::after { content: ""; display: block; width: var(--value); height: 100%; background: var(--lime); }
.dial-bars b { color: rgba(255,255,255,.5); font-size: 10px; font-weight: 500; text-align: right; }
.analysis-dial > p { margin: 18px 0 0; color: rgba(255,255,255,.40); font-size: 11px; line-height: 1.5; }
.hero-foot {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 92px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.16);
  background: rgba(3,11,9,.74);
  backdrop-filter: blur(8px);
}
.hero-foot > div { min-width: 0; padding-right: 30px; display: flex; flex-direction: column; }
.hero-foot small { color: rgba(255,255,255,.43); font-size: 10px; letter-spacing: .12em; }
.hero-foot strong { margin-top: 2px; font-size: 14px; font-weight: 600; }
.hero-foot > a { align-self: stretch; min-width: 150px; padding-left: 27px; display: flex; align-items: center; justify-content: space-between; border-left: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.64); font-size: 12px; }
.hero-foot > a span { color: var(--lime); font-size: 18px; }

.section-wrap { width: var(--wrap); margin: 0 auto; }
.section-heading { margin-bottom: 50px; }
.section-heading h2, .method-intro h2, .data-copy h2, .faq-aside h2, .about-title-block h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1.12;
  letter-spacing: -.055em;
}
.section-kicker { margin-bottom: 14px; color: var(--lime-dark); }
.split-heading { display: grid; grid-template-columns: 1.1fr .8fr; gap: 10vw; align-items: end; }
.split-heading > p { margin: 0 0 4px; color: var(--muted); line-height: 1.9; }

.match-section { padding: 118px 0 126px; border-bottom: 1px solid var(--line); background: #e9eee5; }
.match-heading { display: grid; grid-template-columns: 1.12fr .88fr; gap: 9vw; align-items: end; }
.match-heading-main h2 { max-width: 690px; }
.match-update { margin: 19px 0 0; color: #647069; font-size: 13px; }
.match-update time { color: var(--ink); font-weight: 800; }
.match-intro { padding: 4px 0 3px 25px; border-left: 2px solid var(--lime-dark); }
.match-intro > span { display: block; margin-bottom: 7px; color: var(--lime-dark); font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.match-intro strong { display: block; margin-bottom: 9px; font-size: 17px; }
.match-intro p { margin: 0; color: var(--muted); line-height: 1.8; }
.example-notice { margin: -12px 0 28px; padding: 14px 17px; display: flex; align-items: flex-start; gap: 11px; border: 1px solid rgba(109,148,20,.28); color: #566159; background: rgba(255,255,255,.5); font-size: 13px; }
.example-notice span { width: 20px; height: 20px; flex: 0 0 20px; display: grid; place-items: center; border-radius: 50%; color: var(--night); background: var(--lime); font-family: Georgia, serif; font-weight: 800; line-height: 1; }
.example-notice a { color: #405d00; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.match-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; border: 1px solid rgba(8,17,14,.16); background: rgba(8,17,14,.16); }
.match-card { min-width: 0; padding: 31px; display: flex; flex-direction: column; background: #f7f9f3; }
.match-card-lead { color: var(--white); background: #10231d; }
.match-card-head { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 14px; align-items: start; }
.match-no { color: #a1aaa2; font-family: Georgia, serif; font-size: 27px; line-height: 1.15; }
.match-card-head small { display: block; margin-bottom: 8px; color: var(--lime-dark); font-size: 9px; font-weight: 800; letter-spacing: .13em; }
.match-card-head h3 { margin: 0; display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); align-items: center; gap: 9px; font-size: 21px; line-height: 1.35; }
.match-card-head h3 i { color: #929c94; font-size: 9px; font-style: normal; font-weight: 800; letter-spacing: .08em; }
.match-card-head h3 span { min-width: 0; }
.fixture-time { display: block; margin-top: 7px; color: #69756d; font-size: 12px; font-weight: 700; }
.match-card-lead .match-no { color: rgba(255,255,255,.38); }
.match-card-lead .match-card-head small { color: var(--lime); }
.match-card-lead .match-card-head h3 i { color: rgba(255,255,255,.38); }
.match-card-lead .fixture-time { color: rgba(255,255,255,.58); }
.match-outlook { margin: 25px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; border: 1px solid rgba(8,17,14,.14); background: rgba(8,17,14,.14); }
.match-outlook > div { min-height: 79px; padding: 14px 16px; display: flex; flex-direction: column; justify-content: center; background: #eef2e9; }
.match-outlook small { margin-bottom: 4px; color: #758078; font-size: 10px; font-weight: 700; letter-spacing: .08em; }
.match-outlook strong { font-size: 23px; line-height: 1.2; }
.match-outlook strong span { color: var(--lime-dark); font-weight: 400; }
.match-card-lead .match-outlook { border-color: rgba(255,255,255,.14); background: rgba(255,255,255,.14); }
.match-card-lead .match-outlook > div { background: rgba(255,255,255,.055); }
.match-card-lead .match-outlook small { color: rgba(255,255,255,.45); }
.match-card-lead .match-outlook strong span { color: var(--lime); }
.match-analysis { display: grid; gap: 19px; }
.match-analysis h4 { margin: 0 0 7px; font-size: 12px; letter-spacing: .05em; }
.match-analysis p { margin: 0; color: #5c675f; line-height: 1.88; }
.match-card-lead .match-analysis p { color: rgba(255,255,255,.61); }
.match-watch { margin-top: auto; padding-top: 23px; display: grid; grid-template-columns: 68px 1fr; gap: 13px; border-top: 1px solid rgba(8,17,14,.13); }
.match-watch span { color: var(--lime-dark); font-size: 10px; font-weight: 900; letter-spacing: .08em; }
.match-watch p { margin: 0; color: #68736b; font-size: 13px; line-height: 1.7; }
.match-card-lead .match-watch { border-top-color: rgba(255,255,255,.14); }
.match-card-lead .match-watch span { color: var(--lime); }
.match-card-lead .match-watch p { color: rgba(255,255,255,.48); }
.match-detail-link { margin-top: 18px; min-height: 44px; padding: 0 14px; display: flex; align-items: center; justify-content: space-between; border: 1px solid rgba(8,17,14,.18); color: var(--ink); font-size: 13px; font-weight: 800; transition: background .2s ease, color .2s ease; }
.match-detail-link:hover, .match-detail-link:focus-visible { color: var(--night); background: var(--lime); }
.match-card-lead .match-detail-link { border-color: rgba(255,255,255,.2); color: var(--white); }
.match-summary { margin-top: 28px; padding: 25px 28px; display: grid; grid-template-columns: 135px 1fr; gap: 24px; align-items: center; color: var(--night); background: var(--lime); }
.match-summary > strong { font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.match-summary p { margin: 0; font-weight: 700; line-height: 1.7; }

.content-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #0a1713;
}
.content-photo picture { display: block; width: 100%; height: 100%; }
.content-photo img { width: 100%; height: 100%; object-fit: cover; }
.content-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 67px;
  padding: 13px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(3,10,8,.92), rgba(3,10,8,.25));
}
.content-photo figcaption span {
  flex: 0 0 auto;
  padding-right: 17px;
  border-right: 1px solid rgba(255,255,255,.28);
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}
.content-photo figcaption strong { font-size: 13px; font-weight: 600; }
.signal-photo { height: 400px; margin-bottom: 40px; }
.signal-photo img { object-position: center 54%; }

.signal-section { padding: 110px 0 120px; border-bottom: 1px solid var(--line); }
.signal-ledger { border-top: 1px solid var(--ink); }
.signal-item {
  min-height: 184px;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 80px minmax(190px, .65fr) minmax(280px, 1.2fr) 125px;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  transition: background .2s ease, padding .2s ease;
}
.signal-item:hover { padding-right: 18px; padding-left: 18px; background: rgba(255,255,255,.56); }
.signal-no { color: #aab2aa; font-family: Georgia, serif; font-size: 30px; }
.signal-title { display: grid; grid-template-columns: 8px 1fr; column-gap: 12px; align-items: center; }
.signal-title h3 { margin: 0; font-size: 23px; line-height: 1.2; }
.signal-title small { grid-column: 2; margin-top: 5px; color: #8b948e; font-size: 9px; letter-spacing: .16em; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime-dark); box-shadow: 0 0 0 5px rgba(109,148,20,.1); }
.status-dot.amber { background: var(--amber); box-shadow: 0 0 0 5px rgba(255,156,82,.12); }
.status-dot.blue { background: #3d8db8; box-shadow: 0 0 0 5px rgba(61,141,184,.12); }
.signal-item > p { margin: 0; color: #4f5a53; }
.signal-tag { justify-self: end; padding: 5px 10px; border: 1px solid var(--line); color: #66716a; font-size: 12px; white-space: nowrap; }

.method-section { padding: 130px 0; color: var(--white); background: var(--night); }
.method-grid { display: grid; grid-template-columns: .84fr 1.16fr; gap: 9vw; }
.method-intro { position: sticky; top: 40px; align-self: start; }
.method-intro .section-kicker { color: var(--lime); }
.method-intro h2 { max-width: 480px; margin-bottom: 28px; }
.method-intro > p:not(.section-kicker) { max-width: 480px; color: rgba(255,255,255,.57); line-height: 1.9; }
.method-photo { margin-top: 34px; aspect-ratio: 4 / 3; }
.method-intro blockquote { position: relative; margin: 38px 0 0; padding: 25px 0 0 42px; border-top: 1px solid rgba(255,255,255,.16); }
.method-intro blockquote > span { position: absolute; top: 18px; left: 0; color: var(--lime); font-family: Georgia, serif; font-size: 48px; line-height: 1; }
.method-intro blockquote p { margin: 0; font-family: Georgia, "Songti SC", serif; font-size: 19px; }
.method-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.18); }
.method-steps li { min-height: 162px; padding: 34px 0; display: grid; grid-template-columns: 105px 1fr; gap: 24px; border-bottom: 1px solid rgba(255,255,255,.16); }
.method-steps li > span { padding-top: 3px; color: var(--lime); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.method-steps h3 { margin-bottom: 9px; font-size: 22px; }
.method-steps p { margin: 0; color: rgba(255,255,255,.56); line-height: 1.85; }

.factor-section { position: relative; padding: 125px 0; overflow: hidden; }
.factor-section::before {
  content: "06";
  position: absolute;
  top: -105px;
  right: -20px;
  color: rgba(8,17,14,.035);
  font-family: Georgia, serif;
  font-size: 440px;
  line-height: 1;
}
.factor-heading { display: grid; grid-template-columns: 1fr .8fr; align-items: end; gap: 10vw; position: relative; }
.factor-heading > p { margin: 0 0 4px; color: var(--muted); }
.factor-board { display: grid; grid-template-columns: 1.1fr .9fr .9fr; gap: 1px; background: rgba(8,17,14,.16); border: 1px solid rgba(8,17,14,.16); }
.factor-card { min-height: 250px; padding: 32px; background: var(--paper); }
.factor-card h3 { margin-bottom: 15px; font-size: 22px; line-height: 1.35; }
.factor-card p { margin-bottom: 0; color: var(--muted); line-height: 1.85; }
.factor-code { display: inline-block; margin-bottom: 30px; color: var(--lime-dark); font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.factor-main { grid-row: span 2; min-height: 501px; color: var(--white); background: #10231d; }
.factor-main h3 { max-width: 330px; font-size: 30px; }
.factor-main p { color: rgba(255,255,255,.59); }
.factor-main .factor-code { color: var(--lime); }
.factor-photo { margin: 34px -32px -32px; aspect-ratio: 4 / 3; }
.factor-accent { background: var(--lime); }
.factor-accent .factor-code, .factor-accent p { color: rgba(7,18,15,.66); }
.factor-wide { grid-column: span 2; min-height: 210px; display: grid; grid-template-columns: 1fr 1.15fr; align-items: center; gap: 44px; }
.factor-wide .factor-code { margin-bottom: 13px; }
.data-section { padding: 120px 0; color: var(--white); background: #0d211b; }
.data-layout { display: grid; grid-template-columns: .76fr 1.24fr; gap: 8vw; align-items: start; }
.data-copy .section-kicker { color: var(--lime); }
.data-copy h2 { margin-bottom: 28px; }
.data-copy > p:not(.section-kicker):not(.data-note) { color: rgba(255,255,255,.6); }
.data-copy ul { margin: 34px 0; padding: 0; list-style: none; }
.data-copy li { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.61); }
.data-copy li b { color: #fff; }
.data-note { display: flex; gap: 12px; color: rgba(255,255,255,.48); font-size: 13px; }
.data-note span { width: 22px; height: 22px; flex: 0 0 22px; display: grid; place-items: center; border: 1px solid var(--amber); border-radius: 50%; color: var(--amber); font-size: 11px; }
.data-table-wrap { border: 1px solid rgba(255,255,255,.17); background: rgba(255,255,255,.025); }
.table-head { min-height: 79px; padding: 0 25px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.16); }
.table-head strong { font-size: 17px; }
.table-head small { color: rgba(255,255,255,.43); font-size: 11px; letter-spacing: .1em; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th, td { padding: 19px 18px; border-bottom: 1px solid rgba(255,255,255,.11); text-align: left; }
thead th { color: rgba(255,255,255,.39); font-size: 10px; font-weight: 600; letter-spacing: .08em; }
tbody th { color: rgba(255,255,255,.75); font-weight: 500; }
tbody td { color: rgba(255,255,255,.58); }
tbody .good { color: var(--lime); font-weight: 800; }
tbody .warn { color: var(--amber); font-weight: 800; }
.table-verdict { padding: 25px; display: grid; grid-template-columns: 75px 1fr; gap: 20px; align-items: start; background: var(--lime); color: var(--night); }
.table-verdict span { padding-top: 2px; font-size: 10px; font-weight: 900; letter-spacing: .08em; }
.table-verdict p { margin: 0; font-weight: 700; line-height: 1.6; }

.league-section { padding: 125px 0; }
.league-photo { height: 420px; margin-bottom: 35px; }
.league-photo img { object-position: center 58%; }
.league-list { border-top: 1px solid var(--ink); }
.league-list article { padding: 36px 0; display: grid; grid-template-columns: 76px minmax(280px, .9fr) minmax(320px, 1.1fr); gap: 34px; align-items: center; border-bottom: 1px solid var(--line); }
.league-index { color: #9da69e; font-family: Georgia, serif; font-size: 26px; }
.league-list small { color: var(--lime-dark); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.league-list h3 { margin: 6px 0 0; font-size: 21px; line-height: 1.5; }
.league-list article > p { margin: 0; color: var(--muted); }

.faq-section { padding: 120px 0; background: var(--paper-2); }
.faq-layout { display: grid; grid-template-columns: .66fr 1.34fr; gap: 9vw; align-items: start; }
.faq-aside { position: sticky; top: 40px; }
.faq-aside h2 { margin-bottom: 22px; }
.faq-aside > p:last-child { color: var(--muted); }
.faq-list { border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 78px; padding: 22px 54px 22px 0; position: relative; display: flex; align-items: center; cursor: pointer; font-size: 18px; font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: absolute; right: 5px; width: 20px; height: 20px; }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; top: 9px; left: 3px; width: 14px; height: 1px; background: var(--ink); transition: transform .2s ease; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { max-width: 700px; margin: -4px 0 24px; padding-right: 50px; color: var(--muted); line-height: 1.9; }

.about-section { padding: 110px 0; color: var(--white); background: #07120f; }
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr 170px; gap: 7vw; align-items: start; }
.about-title-block .section-kicker { color: var(--lime); }
.about-title-block h2 { font-size: clamp(2rem, 3.2vw, 3.3rem); }
.about-copy p { color: rgba(255,255,255,.58); line-height: 2; }
.about-copy p:last-child { margin-bottom: 0; }
.about-facts { margin-top: 31px; display: grid; gap: 1px; border-top: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.12); }
.about-facts > div { padding: 16px 18px; display: grid; grid-template-columns: 86px 1fr; gap: 14px; border-bottom: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.035); }
.about-facts small { color: var(--lime); font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.about-facts strong { color: rgba(255,255,255,.76); font-size: 13px; font-weight: 600; }
.about-stamp { width: 150px; height: 150px; margin-left: auto; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(186,242,52,.6); border-radius: 50%; transform: rotate(7deg); }
.about-stamp::before { content: ""; position: absolute; width: 132px; height: 132px; border: 1px dashed rgba(186,242,52,.25); border-radius: 50%; }
.about-stamp span, .about-stamp i { color: rgba(255,255,255,.45); font-size: 9px; font-style: normal; letter-spacing: .16em; }
.about-stamp strong { margin: 1px 0; color: var(--lime); font-family: Georgia, serif; font-size: 37px; line-height: 1; }

.site-footer { color: rgba(255,255,255,.62); background: #030a08; }
.footer-main { width: var(--wrap); min-height: 250px; margin: 0 auto; padding: 62px 0; display: flex; justify-content: space-between; gap: 70px; }
.footer-brand .brand { color: #fff; }
.footer-brand > p { margin: 26px 0 0; font-family: Georgia, "Songti SC", serif; font-size: 17px; }
.footer-brand > small { display: block; margin-top: 7px; color: rgba(255,255,255,.34); font-size: 11px; }
.footer-links { min-width: 560px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 45px; }
.footer-links > div { display: flex; flex-direction: column; gap: 8px; }
.footer-links strong { margin-bottom: 10px; color: #fff; font-size: 13px; }
.footer-links a { color: rgba(255,255,255,.48); font-size: 13px; }
.footer-links time { color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.7; }
.footer-links small { color: rgba(255,255,255,.34); font-size: 11px; line-height: 1.7; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--lime); }
.footer-bottom { width: var(--wrap); min-height: 78px; margin: 0 auto; display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center; border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; }
.footer-bottom p { margin: 0; }
.footer-bottom p:nth-child(2) { text-align: center; color: rgba(255,255,255,.36); }
.footer-bottom a { color: var(--lime); }

a:focus-visible, button:focus-visible, summary:focus-visible { outline: 2px solid var(--lime); outline-offset: 4px; }

@media (max-width: 980px) {
  :root { --wrap: min(calc(100% - 36px), 760px); }
  .header-inner { height: 74px; }
  .menu-toggle {
    width: 48px;
    height: 48px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 0;
    color: #fff;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span { width: 22px; height: 1px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle em { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    top: 74px;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 36px var(--wrap);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(3,10,8,.98);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 17px; }
  .hero { min-height: 930px; }
  .hero-inner { padding: 135px 0 190px; grid-template-columns: 1fr; gap: 55px; }
  .hero-picture .hero-image { object-position: 60% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(3,10,9,.95), rgba(3,10,9,.52)), linear-gradient(0deg, rgba(3,10,9,.9), transparent 55%); }
  .hero-copy { max-width: 680px; }
  .analysis-dial { max-width: 100%; justify-self: stretch; display: grid; grid-template-columns: 1fr 135px; column-gap: 30px; }
  .dial-head { grid-column: 1 / -1; }
  .dial-ring { grid-column: 2; grid-row: 2 / span 2; margin: 25px 0 0; }
  .dial-bars { grid-column: 1; margin-top: 28px; }
  .analysis-dial > p { grid-column: 1; }
  .hero-foot { padding: 0 18px; grid-template-columns: repeat(3, 1fr); }
  .hero-foot > a { display: none; }
  .split-heading, .factor-heading, .match-heading { grid-template-columns: 1fr; gap: 24px; }
  .match-grid { grid-template-columns: 1fr; }
  .signal-item { grid-template-columns: 55px minmax(170px, .65fr) 1fr; }
  .signal-tag { display: none; }
  .method-grid, .data-layout, .faq-layout { grid-template-columns: 1fr; gap: 65px; }
  .method-intro, .faq-aside { position: static; }
  .method-intro h2, .method-intro > p:not(.section-kicker) { max-width: 680px; }
  .factor-board { grid-template-columns: 1fr 1fr; }
  .factor-main { grid-row: span 2; }
  .factor-wide { grid-column: 1 / -1; }
  .league-list article { grid-template-columns: 55px 1fr; }
  .league-list article > p { grid-column: 2; }
  .about-grid { grid-template-columns: .8fr 1.2fr; }
  .about-stamp { display: none; }
  .footer-main { flex-direction: column; }
  .footer-links { min-width: 0; }
  .footer-bottom { grid-template-columns: 1fr auto; padding: 22px 0; }
  .footer-bottom p:nth-child(2) { grid-column: 1 / -1; grid-row: 2; text-align: left; }
}

@media (max-width: 640px) {
  :root { --wrap: calc(100% - 32px); }
  body { font-size: 16px; }
  .brand-copy small { display: none; }
  .site-header { position: absolute; }
  .hero { min-height: 0; display: block; }
  .hero-picture .hero-image { object-position: center center; }
  .hero-shade { background: linear-gradient(90deg, rgba(3,10,9,.94), rgba(3,10,9,.47)), linear-gradient(0deg, rgba(3,10,9,.98) 2%, rgba(3,10,9,.48) 55%, rgba(3,10,9,.65)); }
  .pitch-lines { background-size: 72px 72px; }
  .hero-inner { padding: 108px 0 32px; gap: 20px; }
  .hero h1 { max-width: 330px; margin-bottom: 23px; font-size: clamp(3.35rem, 17vw, 4.8rem); line-height: 1; }
  .hero-lead { font-size: 16px; line-height: 1.85; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 12px; }
  .primary-action { justify-content: space-between; }
  .text-action { align-self: flex-start; }
  .analysis-dial { display: none; }
  .dial-ring { display: none; }
  .dial-bars { margin-top: 20px; }
  .hero-foot { position: relative; min-height: 0; padding: 14px 16px; grid-template-columns: repeat(3, minmax(0, 1fr)); align-content: center; gap: 8px; }
  .hero-foot > div { padding: 0; display: block; border: 0; }
  .hero-foot small { display: block; font-size: 9px; }
  .hero-foot strong { display: block; margin: 2px 0 0; font-size: 11px; line-height: 1.45; }
  .section-heading h2, .method-intro h2, .data-copy h2, .faq-aside h2 { font-size: 2.35rem; }
  .match-section, .signal-section, .factor-section, .data-section, .league-section, .faq-section { padding: 86px 0; }
  .method-section { padding: 94px 0; }
  .about-section { padding: 82px 0; }
  .section-heading { margin-bottom: 35px; }
  .match-intro { padding: 19px 0 0; border-top: 2px solid var(--lime-dark); border-left: 0; }
  .example-notice { margin-top: -4px; }
  .match-card { padding: 23px 20px; }
  .match-card-head { grid-template-columns: 34px minmax(0, 1fr); gap: 10px; }
  .match-no { font-size: 23px; }
  .match-card-head h3 { gap: 7px; font-size: 18px; }
  .fixture-time { font-size: 11px; }
  .match-outlook { margin: 21px 0; }
  .match-outlook > div { min-height: 73px; padding: 12px; }
  .match-outlook strong { font-size: 20px; }
  .match-detail-link { width: 100%; }
  .match-summary { padding: 21px 20px; grid-template-columns: 1fr; gap: 7px; }
  .signal-item { min-height: 0; padding: 29px 0; grid-template-columns: 40px 1fr; align-items: start; gap: 10px 14px; }
  .signal-item:hover { padding-right: 0; padding-left: 0; background: transparent; }
  .signal-no { font-size: 24px; }
  .signal-item > p { grid-column: 2; }
  .method-grid, .data-layout, .faq-layout { gap: 50px; }
  .method-intro blockquote { margin-top: 38px; }
  .method-steps li { grid-template-columns: 1fr; gap: 10px; }
  .factor-section::before { top: 10px; font-size: 210px; }
  .factor-board { grid-template-columns: 1fr; }
  .factor-card, .factor-main { min-height: auto; }
  .factor-main { grid-row: auto; }
  .factor-main h3 { font-size: 26px; }
  .factor-wide { grid-column: auto; grid-template-columns: 1fr; gap: 4px; }
  .content-photo figcaption {
    position: static;
    min-height: 64px;
    padding: 12px 14px;
    align-items: flex-start;
    background: #0a1713;
  }
  .content-photo figcaption strong { line-height: 1.55; }
  .signal-photo, .league-photo {
    height: auto;
    margin-right: -16px;
    margin-left: -16px;
  }
  .method-photo, .factor-photo { aspect-ratio: auto; }
  .content-photo picture { height: auto; aspect-ratio: 4 / 3; }
  .method-photo { margin-top: 28px; }
  .factor-photo { margin-top: 28px; }
  .data-table-wrap { margin: 0; overflow: visible; }
  .table-head { min-width: 0; padding: 0 16px; }
  table, tbody, tr, th, td { display: block; width: 100%; }
  table { min-width: 0; }
  thead { display: none; }
  tbody tr { padding: 17px 16px; border-bottom: 1px solid rgba(255,255,255,.13); }
  tbody th { padding: 0 0 8px; border: 0; color: #fff; font-size: 16px; }
  tbody td { padding: 4px 0; display: grid; grid-template-columns: 90px 1fr; gap: 14px; border: 0; }
  tbody td::before { content: attr(data-label); color: rgba(255,255,255,.36); font-size: 12px; }
  .table-verdict { position: static; min-width: 0; grid-template-columns: 1fr; gap: 6px; }
  .league-list article { grid-template-columns: 36px 1fr; gap: 18px; align-items: start; }
  .league-list article > p { grid-column: 1 / -1; padding-left: 54px; }
  .league-list h3 { font-size: 19px; }
  .faq-list summary { font-size: 17px; line-height: 1.55; }
  .faq-list details p { padding-right: 15px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-main { padding: 55px 0; flex-direction: column; }
  .footer-links { min-width: 0; grid-template-columns: 1fr 1fr; gap: 34px 26px; }
  .footer-links > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { grid-template-columns: 1fr; gap: 10px; }
  .footer-bottom p:nth-child(2) { grid-column: auto; grid-row: auto; }
  .footer-bottom a { justify-self: start; }
}

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


/* legal pages */
.legal-page{padding:52px 0 72px}
.legal-page>.breadcrumb{margin-bottom:22px}
.legal-page>h1{font-size:clamp(34px,5vw,54px);line-height:1.12;margin:8px 0 14px}
.legal-lead{max-width:860px;margin:0 0 28px;color:#758495;font-size:15px;line-height:1.85}
.legal-card{margin:14px 0;padding:22px 24px;border:1px solid rgba(128,150,164,.18);border-radius:16px;background:rgba(255,255,255,.045)}
.legal-card h2{font-size:20px;margin:0 0 9px}
.legal-card p{font-size:14px;line-height:1.9;margin:7px 0;color:#758495}
@media(max-width:640px){
  .legal-page{padding:34px 0 52px}
  .legal-card{padding:18px}
  .legal-page>h1{font-size:32px}
}
