:root {
  --bg: #F7F8FB;
  --surface: #FFFFFF;
  --surface-alt: #FBFBFE;
  --border: #EAECF3;
  --ink: #15171D;
  --ink-dim: #5B6070;
  --ink-faint: #9298A8;
  --coral: #FF6B57;
  --coral-soft: #FFEDE9;
  --coral-mid: #FF9B70;
  --mint: #0FB39C;
  --mint-soft: #E1F8F3;
  --blue: #4C6FFF;
  --blue-soft: #ECF0FF;
  --bezel: #181A20;
  --screen: #101218;
  --display: "Lexend", sans-serif;
  --body: "Inter", sans-serif;
  --mono: "Space Mono", monospace;
  --container: 1180px;
  --article: 760px;
  --nav-h: 56px;
  --shadow-sm: 0 2px 10px rgba(20, 22, 30, 0.05);
  --shadow-md: 0 14px 34px -12px rgba(20, 22, 30, 0.14);
  --shadow-lg: 0 28px 60px -18px rgba(20, 22, 30, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.article {
  max-width: var(--article);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  background: var(--coral-soft);
  padding: 7px 14px;
  border-radius: 100px;
}

.dot-live {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  position: relative;
  flex-shrink: 0;
}

.dot-live::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid var(--coral);
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% { transform: scale(0.3); opacity: 0.9; }
  100% { transform: scale(2.3); opacity: 0; }
}

.section-tag {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--ink-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.section-head {
  max-width: 600px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.16;
  margin-bottom: 12px;
}

.section-head p {
  color: var(--ink-dim);
  font-size: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 14.5px;
  padding: 14px 24px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  box-shadow: var(--shadow-md);
  color: #fff;
}

.btn-ghost {
  border-color: var(--border);
  color: var(--ink);
  background: var(--surface);
}

.btn-ghost:hover {
  border-color: var(--ink-faint);
  box-shadow: var(--shadow-sm);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 13px;
}

.btn svg {
  width: 15px;
  height: 15px;
}

header.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(14px);
  background: rgba(247, 248, 251, 0.92);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
}

.logo-mark {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: linear-gradient(150deg, var(--coral), var(--coral-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1.5px solid #fff;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  height: var(--nav-h);
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-dim);
}

.nav-item {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-link,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 6px 10px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-dim);
  line-height: 1;
  white-space: nowrap;
}

.nav-link:hover,
.nav-trigger:hover,
.nav-item.is-open .nav-trigger,
.nav-item:hover .nav-trigger {
  color: var(--coral);
  background: var(--coral-soft);
}

.nav-chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.nav-item.is-open .nav-chevron,
.nav-item:hover .nav-chevron {
  transform: rotate(180deg);
}

.nav-item.has-mega {
  position: static;
}

.mega-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  padding: 10px 0 0;
  background: transparent;
  border: none;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 210;
  transition: opacity 0.12s ease, visibility 0.12s ease;
}

.mega-grid {
  display: grid;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 12px;
}

@media (min-width: 921px) {
  .nav-item:hover .mega-panel,
  .nav-item:focus-within .mega-panel,
  .nav-item.is-open .mega-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.mega-grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mega-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 64px;
  padding: 10px 8px;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  color: var(--ink);
  background: var(--coral-soft);
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.mega-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  color: #fff;
  background: linear-gradient(150deg, var(--coral), var(--coral-mid));
}

.mega-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(150deg, var(--coral), var(--coral-mid));
}

.mega-card:hover .mega-icon {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.mega-icon svg {
  width: 16px;
  height: 16px;
}

.mega-label {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.tone-blue,
.tone-coral,
.tone-mint,
.tone-lavender,
.tone-sun,
.tone-rose,
.tone-teal {
  background: var(--coral-soft);
}

header.nav .btn {
  padding: 8px 16px;
  font-size: 13px;
}

.nav-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  header.nav .btn-primary {
    display: none;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    height: auto;
    gap: 4px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 12px 20px 22px;
    max-height: calc(100vh - var(--nav-h));
    overflow: auto;
  }
  .nav-item {
    height: auto;
    display: block;
  }
  .nav-links.is-open {
    display: flex;
  }
  .nav-link,
  .nav-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 12px 8px;
    border-radius: 12px;
  }
  .mega-panel {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 0 0 8px;
    display: none;
  }
  .nav-item.is-open .mega-panel {
    display: block;
  }
  .mega-grid {
    box-shadow: none;
    border: none;
    padding: 0;
    border-radius: 16px;
  }
  .mega-grid.cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mega-card {
    min-height: 56px;
    padding: 8px 6px;
  }
}

.hero {
  position: relative;
  padding: 88px 0 60px;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
}

.blob.a {
  width: 420px;
  height: 420px;
  background: var(--coral-soft);
  top: -160px;
  left: -140px;
  animation: drift 14s ease-in-out infinite;
}

.blob.b {
  width: 380px;
  height: 380px;
  background: var(--mint-soft);
  top: -60px;
  right: -160px;
  animation: drift 18s ease-in-out infinite reverse;
}

.blob.c {
  width: 320px;
  height: 320px;
  background: var(--blue-soft);
  bottom: -140px;
  left: 30%;
  opacity: 0.7;
  animation: drift 16s ease-in-out infinite;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, 24px); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  position: relative;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero-copy h1 {
  font-size: clamp(32px, 4.4vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 18px 0;
}

.hero-copy h1 .accent {
  color: var(--coral);
}

.hero-copy p.lead {
  font-size: 16.5px;
  color: var(--ink-dim);
  max-width: 460px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.filter-pill {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-dim);
  border: 1px solid var(--border);
  padding: 9px 15px;
  border-radius: 100px;
  background: var(--surface);
  transition: 0.18s;
  box-shadow: var(--shadow-sm);
}

.filter-pill:hover {
  border-color: var(--mint);
  color: var(--ink);
  background: var(--mint-soft);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
}

.device-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--coral-soft), transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.12); opacity: 1; }
}

.device {
  position: relative;
  width: 200px;
  height: 240px;
  animation: float-y 5s ease-in-out infinite;
}

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.device-strap {
  position: absolute;
  left: 50%;
  width: 74px;
  height: 34px;
  background: var(--bezel);
  transform: translateX(-50%);
  border-radius: 10px;
}

.device-strap.top { top: -26px; }
.device-strap.bot { bottom: -26px; }

.device-bezel {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--bezel);
  border-radius: 44px;
  padding: 9px;
  box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255, 255, 255, 0.06);
}

.device-crown {
  position: absolute;
  right: -5px;
  top: 70px;
  width: 9px;
  height: 26px;
  background: var(--bezel);
  border-radius: 3px;
}

.device-screen {
  width: 100%;
  height: 100%;
  background: var(--screen);
  border-radius: 34px;
  position: relative;
  overflow: hidden;
}

.face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
  color: #fff;
}

.face.active {
  opacity: 1;
  transform: scale(1);
}

.face-time .t {
  font-family: var(--mono);
  font-size: 30px;
  letter-spacing: 1px;
}

.face-time .d {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--mint);
  margin-top: 6px;
  letter-spacing: 1.5px;
}

.face-heart svg {
  width: 40px;
  height: 40px;
  color: var(--coral);
  animation: beat 1.1s ease-in-out infinite;
}

@keyframes beat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.18); }
  40% { transform: scale(1); }
}

.face-heart .bpm {
  font-family: var(--mono);
  font-size: 22px;
  margin-top: 8px;
}

.face-heart .lbl {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--ink-faint);
  letter-spacing: 1.5px;
  margin-top: 2px;
}

.face-rings {
  display: flex;
  align-items: center;
  justify-content: center;
}

.face-rings svg {
  width: 78px;
  height: 78px;
  transform: rotate(-90deg);
}

.ring-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.12);
}

.ring-fg {
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  transition: stroke-dashoffset 1.2s ease;
}

.face.active .ring-fg.r1 { stroke-dashoffset: 40; stroke: var(--coral); }
.face.active .ring-fg.r2 { stroke-dashoffset: 70; stroke: var(--mint); }
.face.active .ring-fg.r3 { stroke-dashoffset: 100; stroke: var(--blue); }

.face-dots {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.face-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--border);
}

.face-dots span.on {
  background: var(--ink);
}

.notif {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  opacity: 0;
  animation: notif-loop 6s ease-in-out infinite;
}

.notif .ic {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notif .ic svg {
  width: 14px;
  height: 14px;
}

.notif.n1 { top: 6%; left: -14%; animation-delay: 0.5s; }
.notif.n1 .ic { background: var(--coral-soft); color: var(--coral); }
.notif.n2 { bottom: 16%; left: -18%; animation-delay: 2.6s; }
.notif.n2 .ic { background: var(--mint-soft); color: var(--mint); }
.notif.n3 { top: 40%; right: -16%; animation-delay: 4.6s; }
.notif.n3 .ic { background: var(--blue-soft); color: var(--blue); }

@keyframes notif-loop {
  0% { opacity: 0; transform: translateY(8px); }
  10% { opacity: 1; transform: translateY(0); }
  82% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-8px); }
}

@media (max-width: 980px) {
  .notif { display: none; }
  .hero-visual { min-height: 340px; }
}

.marquee-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  overflow: hidden;
  background: var(--surface);
}

.marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-faint);
  letter-spacing: 0.05em;
  white-space: nowrap;
  font-weight: 700;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.home-section {
  padding: 100px 0;
}

@media (max-width: 760px) {
  .home-section { padding: 64px 0; }
}

.match-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 900px) {
  .match-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .match-grid { grid-template-columns: 1fr; }
}

.match-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: block;
}

.match-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.match-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.match-icon svg {
  width: 20px;
  height: 20px;
}

.match-card:nth-child(6n+1) .match-icon { background: var(--coral-soft); color: var(--coral); }
.match-card:nth-child(6n+2) .match-icon { background: var(--mint-soft); color: var(--mint); }
.match-card:nth-child(6n+3) .match-icon { background: var(--blue-soft); color: var(--blue); }
.match-card:nth-child(6n+4) .match-icon { background: var(--blue-soft); color: var(--blue); }
.match-card:nth-child(6n+5) .match-icon { background: var(--coral-soft); color: var(--coral); }
.match-card:nth-child(6n+6) .match-icon { background: var(--mint-soft); color: var(--mint); }

.match-card h3 {
  font-size: 16.5px;
  margin: 0 0 7px;
}

.match-card p {
  font-size: 13.5px;
  color: var(--ink-dim);
  margin: 0 0 14px;
}

.match-card .go {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-faint);
  display: flex;
  align-items: center;
  gap: 6px;
}

.match-card:hover .go {
  color: var(--coral);
}

.coming {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rings-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 52px;
  box-shadow: var(--shadow-sm);
}

.rings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

@media (max-width: 760px) {
  .rings-grid { grid-template-columns: 1fr; gap: 40px; }
}

.ring-card { text-align: center; }

.ring-wrap {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 16px;
}

.ring-wrap svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.pring-bg { fill: none; stroke: var(--border); }
.pring-fg {
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 380;
  stroke-dashoffset: 380;
  transition: stroke-dashoffset 1.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.rings-panel.in .pring-fg.p1 { stroke-dashoffset: 80; stroke: var(--coral); }
.rings-panel.in .pring-fg.p2 { stroke-dashoffset: 115; stroke: var(--mint); }
.rings-panel.in .pring-fg.p3 { stroke-dashoffset: 55; stroke: var(--blue); }

.ring-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 21px;
  font-weight: 700;
}

.ring-card h4 {
  font-size: 15px;
  margin: 0 0 5px;
}

.ring-card p {
  font-size: 13px;
  color: var(--ink-faint);
  margin: 0;
}

.picks-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.picks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 940px) {
  .picks-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .picks-grid { grid-template-columns: 1fr; }
}

.pick-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
}

.pick-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.pick-media {
  height: 170px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--surface-alt), var(--border));
}

.pick-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pick-media svg {
  width: 70px;
  height: 70px;
  color: var(--ink-faint);
  opacity: 0.7;
}

.rank-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--mono);
  font-size: 10.5px;
  background: var(--ink);
  color: #fff;
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 700;
}

.pick-body { padding: 20px 20px 22px; }

.pick-cat {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  display: block;
}

.pick-body h3 {
  font-size: 17.5px;
  margin: 0 0 10px;
}

.spec-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.spec-chip {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-dim);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  padding: 4px 9px;
  border-radius: 6px;
}

.pick-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.score-chip {
  font-family: var(--mono);
  color: var(--coral);
  font-weight: 700;
  font-size: 15px;
}

.score-chip.score-high { color: #0B8F7D; }
.score-chip.score-mid { color: #A87800; }
.score-chip.score-low { color: var(--coral); }

.pick-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 5px;
}

.pick-link svg {
  width: 13px;
  height: 13px;
}

.home-pair-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.brand-explore-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 900px) {
  .home-pair-grid,
  .brand-explore-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .home-pair-grid,
  .brand-explore-grid {
    grid-template-columns: 1fr;
  }
}

.home-pair-card,
.brand-explore-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  display: block;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.home-pair-card:hover,
.brand-explore-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.home-pair-photos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.home-pair-photos img,
.brand-explore-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.home-pair-photos span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
}

.home-pair-card h3,
.brand-explore-card h3 {
  font-size: 16px;
  line-height: 1.35;
  margin: 0 0 10px;
}

.brand-explore-card {
  text-align: center;
}

.brand-explore-card img {
  margin: 0 auto 12px;
  width: 96px;
  height: 96px;
}

.home-section-cta {
  margin: 28px 0 0;
  text-align: center;
}

.home-pair-card .go,
.brand-explore-card .go {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--blue);
}

.compare-band {
  background: linear-gradient(120deg, var(--coral-soft), var(--blue-soft));
  border-radius: 28px;
  padding: 52px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.compare-copy h2 {
  font-size: 26px;
  margin: 0 0 10px;
}

.compare-copy p {
  color: var(--ink-dim);
  font-size: 15px;
  max-width: 380px;
  margin: 0;
}

.compare-visual {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 13.5px;
}

.vs-chip {
  width: 126px;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--surface);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.vs-chip .t {
  font-size: 11px;
  color: var(--ink-faint);
}

.vs-chip .n {
  color: var(--ink);
  font-weight: 700;
  margin-top: 4px;
}

.vs-mid {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 860px) {
  .guides-grid { grid-template-columns: 1fr; }
}

.guide-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
  display: block;
}

.guide-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.guide-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--mint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  display: block;
}

.guide-card h3 {
  font-size: 16px;
  line-height: 1.35;
  margin: 0 0 10px;
}

.guide-card p {
  font-size: 13px;
  color: var(--ink-dim);
  margin: 0 0 14px;
}

.guide-meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-faint);
}

.cta-band {
  border-radius: 28px;
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FFF3F0, #EAF9F6);
  border: 1px solid var(--border);
}

.cta-band h2,
.cta-band h3 {
  font-size: clamp(24px, 3vw, 32px);
  margin: 0 0 12px;
  position: relative;
}

.cta-band p {
  color: var(--ink-dim);
  margin: 0 0 28px;
  position: relative;
}

.cta-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.cta-form input {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink);
  padding: 13px 18px;
  border-radius: 100px;
  width: 270px;
  font-family: var(--body);
  font-size: 14.5px;
}

.cta-form input:focus {
  outline: 2px solid var(--coral);
  outline-offset: 2px;
}

.cta-fine {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-faint);
  margin-top: 16px !important;
}

footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
  background: var(--surface);
  margin-top: 0;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 44px;
}

@media (max-width: 860px) {
  .foot-grid { grid-template-columns: repeat(2, 1fr); }
}

.foot-brand p {
  color: var(--ink-dim);
  font-size: 13.5px;
  margin-top: 14px;
  max-width: 260px;
}

.foot-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  margin: 0 0 16px;
}

.foot-col a {
  display: block;
  font-size: 14px;
  color: var(--ink-dim);
  margin-bottom: 11px;
}

.foot-col a:hover {
  color: var(--ink);
}

.foot-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.foot-bottom p {
  font-size: 12px;
  color: var(--ink-faint);
  margin: 0;
}

.foot-legal {
  display: flex;
  gap: 20px;
  font-size: 12px;
  color: var(--ink-faint);
}

.disclosure {
  font-size: 11.5px;
  color: var(--ink-faint);
  max-width: 640px;
  line-height: 1.6;
  margin-top: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.crumb {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.crumb-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--ink-faint);
  flex-wrap: wrap;
}

.crumb-row a:hover {
  color: var(--coral);
}

.crumb-row .sep { opacity: 0.5; }
.crumb-row .cur { color: var(--ink); }

.art-header {
  padding: 52px 0 36px;
}

.art-cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--coral);
  background: var(--coral-soft);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.art-header h1 {
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.art-dek {
  font-size: 17px;
  color: var(--ink-dim);
  margin: 0 0 26px;
}

.art-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--blue), #7A93FF);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.meta-txt {
  font-size: 13.5px;
  color: var(--ink-dim);
}

.meta-txt strong {
  color: var(--ink);
  font-weight: 600;
}

.meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--ink-faint);
}

.meta-mono {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-faint);
}

.quick-answer {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--coral);
  border-radius: 18px;
  padding: 24px 26px;
  margin: 32px 0 0;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.qa-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--coral-soft);
  color: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qa-icon svg { width: 20px; height: 20px; }

.qa-body { flex: 1; min-width: 220px; }

.qa-body .lbl {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.qa-body strong {
  font-size: 16px;
  font-family: var(--display);
  font-weight: 600;
}

.qa-body span {
  color: var(--ink-dim);
  font-size: 13.5px;
}

.jump-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
  background: rgba(247, 248, 251, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
}

.jump-track {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.jump-track::-webkit-scrollbar {
  height: 4px;
}

.jump-track::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 99px;
}

.jump-pill {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-dim);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: 0.18s;
}

.jump-pill:hover {
  border-color: var(--mint);
  color: var(--ink);
}

.jump-pill.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.entry-body {
  padding: 44px 0 8px;
  font-size: 16px;
  color: var(--ink-dim);
}

.entry-body p { margin: 0 0 18px; }
.entry-body h2 { font-size: 26px; margin: 8px 0 16px; color: var(--ink); }

.author-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  margin: 40px 0;
}

.author-box .avatar {
  width: 54px;
  height: 54px;
  font-size: 18px;
}

.author-box h4 {
  font-size: 15.5px;
  margin: 0 0 4px;
}

.author-box p {
  font-size: 13.5px;
  color: var(--ink-dim);
  margin: 0 0 8px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 760px) {
  .related-grid { grid-template-columns: 1fr; }
}

.related-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
}

.related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.related-card .tag {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--mint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  display: block;
}

.related-card h4 {
  font-size: 14.5px;
  line-height: 1.4;
  margin: 0;
}

.page-shell {
  padding: 48px 0 80px;
}

.asw-404 {
  padding: 48px 0 80px;
  max-width: 900px;
}

.asw-404-kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 8px;
}

.asw-404 h1 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 12px;
}

.asw-404 .lead {
  color: var(--ink-dim);
  margin: 0 0 16px;
  max-width: 560px;
}

.asw-404-note {
  color: var(--ink-dim);
  margin: 0 0 18px;
}

.asw-404-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}

.asw-404-search {
  display: flex;
  gap: 8px;
  max-width: 520px;
  margin: 0 0 36px;
}

.asw-404-search input[type="search"] {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  font: inherit;
  background: var(--surface);
}

.asw-404 h2 {
  font-size: 20px;
  margin: 0 0 16px;
}

.asw-404-grid {
  margin: 0;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.page-shell .article h1 {
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 16px;
}

.hub-note {
  background: var(--blue-soft);
  border: 1px dashed var(--blue);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 14.5px;
  color: var(--ink-dim);
  margin: 24px 0;
}

.archive-list {
  display: grid;
  gap: 16px;
  padding: 40px 0 80px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  .face { transition: none; }
}
