:root {
  --bg: #09090b;
  --panel: #111116;
  --panel-2: #17171d;
  --ink: #f6f6f2;
  --muted: #a3a3aa;
  --line: rgba(255, 255, 255, 0.13);
  --accent: #b6ff3b;
  --violet: #7057ff;
  --serif: "Noto Serif JP", serif;
  --sans: "DM Sans", "Noto Sans JP", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }

.skip-link {
  position: fixed; left: 1rem; top: -5rem; z-index: 100;
  padding: .75rem 1rem; background: var(--accent); color: #080808; font-weight: 700;
}
.skip-link:focus { top: 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  height: 84px;
  display: grid;
  grid-template-columns: minmax(245px, 1fr) auto minmax(245px, 1fr);
  align-items: center;
  gap: 2rem;
  padding: 0 3.5vw;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(9, 9, 11, .86);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: .8rem; width: max-content; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  color: #09090b; background: var(--accent); font-weight: 800; font-size: 1.2rem;
}
.brand b { display: block; font-size: 1.12rem; letter-spacing: .055em; line-height: 1.1; }
.brand small { display: block; margin-top: .25rem; color: var(--muted); font-size: .66rem; letter-spacing: .13em; }
.desktop-nav { display: flex; gap: 2rem; font-size: .76rem; letter-spacing: .13em; font-weight: 600; }
.desktop-nav a { color: var(--muted); position: relative; }
.desktop-nav a:hover, .desktop-nav a:focus-visible, .desktop-nav .is-active { color: var(--ink); }
.desktop-nav .is-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -.7rem; height: 2px; background: var(--accent); }
.search-trigger {
  justify-self: end; width: min(100%, 285px); height: 42px; border: 1px solid var(--line); border-radius: 999px;
  display: flex; align-items: center; gap: .65rem; padding: 0 .55rem 0 .9rem; background: #131318; color: var(--muted); cursor: pointer;
}
.search-trigger svg, .search-box svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.search-trigger span { font-size: .78rem; flex: 1; text-align: left; }
kbd { border: 1px solid var(--line); border-radius: 50%; width: 25px; height: 25px; display: grid; place-items: center; font-family: inherit; font-size: .72rem; }
.menu-button { display: none; background: none; border: 0; padding: .5rem; }

.signal-strip {
  min-height: 48px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  padding: 0 3.5vw; overflow: hidden; font-size: .69rem; letter-spacing: .1em;
}
.signal-label { display: flex; align-items: center; gap: .55rem; padding-right: 1.6rem; border-right: 1px solid var(--line); font-weight: 700; }
.signal-label small { color: var(--accent); }
.live-dot { width: 7px; height: 7px; background: #ff4a55; border-radius: 50%; box-shadow: 0 0 0 4px rgba(255,74,85,.12); }
.ticker { display: flex; justify-content: space-around; gap: 2rem; padding: 0 2rem; white-space: nowrap; }
.ticker b { color: #66666f; margin-right: .35rem; }
.ticker em { color: var(--accent); margin-left: .35rem; font-style: normal; }
.signal-strip time { color: #777780; }

.opening {
  min-height: calc(100vh - 132px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(470px, 1.1fr);
  border-bottom: 1px solid var(--line);
}
.opening-copy { padding: clamp(4rem, 8vw, 8rem) 5vw 4rem; display: flex; flex-direction: column; justify-content: center; }
.eyebrow { color: var(--accent); font-size: .72rem; letter-spacing: .2em; font-weight: 700; margin: 0 0 1.25rem; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-family: var(--serif); font-size: clamp(2.7rem, 5.7vw, 6.6rem); line-height: 1.12; letter-spacing: -.045em; margin-bottom: 2rem;
}
h1 span { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.74); }
.lead { color: #c7c7cb; max-width: 36rem; font-size: clamp(1rem, 1.3vw, 1.22rem); }
.search-box {
  margin-top: 2.5rem; display: flex; align-items: center; gap: .8rem; border-bottom: 1px solid #5e5e65; padding: .8rem 0; max-width: 36rem;
}
.search-box:focus-within { border-color: var(--accent); }
.search-box input { background: none; border: 0; outline: 0; color: white; font-size: 1rem; flex: 1; min-width: 0; }
.search-box input::placeholder { color: #6f6f76; }
.search-box button { background: none; color: #73737b; border: 0; font-size: .68rem; letter-spacing: .1em; cursor: pointer; }

.feature-card { position: relative; min-height: 630px; overflow: hidden; isolation: isolate; }
.feature-card > img { height: 100%; object-fit: cover; object-position: center 34%; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.feature-card:hover > img { transform: scale(1.025); }
.image-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,8,10,.06), rgba(8,8,10,.08) 42%, rgba(8,8,10,.91)); }
.feature-number { position: absolute; top: 2rem; left: 2rem; font-size: .7rem; letter-spacing: .18em; }
.feature-number b { font-size: 1rem; color: var(--accent); margin-left: .35rem; }
.feature-meta { position: absolute; left: clamp(1.5rem, 4vw, 4rem); right: clamp(1.5rem, 4vw, 4rem); bottom: clamp(1.5rem, 4vw, 3.5rem); }
.feature-meta > span { font-size: .7rem; color: var(--accent); letter-spacing: .2em; }
.feature-meta h2 { font-family: var(--serif); font-size: clamp(2rem, 3vw, 3.9rem); line-height: 1.22; margin: .75rem 0; }
.feature-meta p { color: #d0d0d4; padding-right: 4rem; margin: 0; }
.round-button { position: absolute; right: 0; bottom: 0; width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.5); background: rgba(10,10,12,.2); color: white; font-size: 1.2rem; cursor: pointer; }
.round-button:hover, .round-button:focus-visible { color: #09090b; background: var(--accent); border-color: var(--accent); }

.discover { padding: clamp(5rem, 8vw, 9rem) 3.5vw; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 2rem; }
.section-heading h2 { font-family: var(--serif); font-size: clamp(2rem, 4.3vw, 4.8rem); line-height: 1.2; margin: 0; }
.section-heading > p { font-size: .75rem; letter-spacing: .12em; color: var(--muted); }
.section-heading > p b { font-size: 1.5rem; color: white; margin-right: .25rem; }
.section-heading > p span { display: block; margin-top: .3rem; font-size: .64rem; }
.filter-row { display: flex; gap: .65rem; overflow-x: auto; padding: .8rem 0 2rem; scrollbar-width: none; }
.filter { flex: 0 0 auto; border: 1px solid var(--line); border-radius: 999px; color: #b8b8be; background: transparent; padding: .65rem 1.15rem; cursor: pointer; font-size: .82rem; }
.filter:hover, .filter:focus-visible, .filter.is-active { background: var(--ink); border-color: var(--ink); color: #0b0b0e; }
.card-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1rem, 2vw, 2rem); align-items: start; }
.pick-card { grid-column: span 4; min-width: 0; }
.pick-card--tall { grid-column: span 5; }
.pick-card--wide { grid-column: span 7; }
.pick-card.is-hidden { display: none; }
.pick-image { aspect-ratio: 4 / 5; background: var(--panel); position: relative; overflow: hidden; }
.pick-card--wide .pick-image { aspect-ratio: 7 / 4.8; }
.pick-card--wide .pick-image img { object-position: center 33%; }
.pick-image img { height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .5s; }
.pick-card:hover .pick-image img { transform: scale(1.035); filter: saturate(1.08); }
.rank { position: absolute; top: .9rem; left: .9rem; background: rgba(8,8,10,.73); backdrop-filter: blur(8px); padding: .4rem .55rem; font-size: .7rem; letter-spacing: .1em; }
.trend-badge { position: absolute; left: .9rem; bottom: .9rem; color: #0a0a0b; background: var(--accent); padding: .4rem .55rem; font-weight: 700; font-size: .72rem; }
.save-button { position: absolute; top: .75rem; right: .75rem; width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.45); color: white; background: rgba(8,8,10,.25); backdrop-filter: blur(8px); cursor: pointer; font-size: 1.25rem; line-height: 1; }
.save-button[aria-pressed="true"] { background: var(--accent); color: #0b0b0e; border-color: var(--accent); }
.pick-info { padding-top: 1rem; }
.pick-info span { color: var(--accent); font-size: .65rem; letter-spacing: .18em; font-weight: 600; }
.pick-info h3 { font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 2rem); margin: .3rem 0 .35rem; }
.pick-info p { color: var(--muted); font-size: .9rem; }
.text-art { aspect-ratio: 4 / 4.5; background: var(--violet); padding: 1.5rem; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; }
.text-art span { font-size: clamp(2.4rem, 5vw, 5.5rem); line-height: .84; letter-spacing: -.08em; font-weight: 700; transform: translateX(-.08em); }
.text-art b { align-self: end; font-size: 3rem; color: var(--accent); }
.pick-card--quote { align-self: stretch; min-height: 320px; background: var(--accent); color: #0b0b0e; padding: clamp(1.5rem, 3vw, 3rem); display: flex; flex-direction: column; justify-content: space-between; }
.quote-mark { font-family: Georgia, serif; font-size: 5rem; line-height: .5; }
.pick-card--quote p { font-family: var(--serif); font-size: clamp(1.25rem, 2.1vw, 2rem); line-height: 1.6; }
.pick-card--quote span { font-size: .7rem; letter-spacing: .18em; font-weight: 700; }
.empty-state { padding: 4rem 1rem; text-align: center; border: 1px solid var(--line); color: var(--muted); }
.empty-state button { background: var(--accent); color: #09090b; border: 0; padding: .7rem 1rem; font-weight: 700; cursor: pointer; }

.editor-note { position: relative; margin: 0 3.5vw 7rem; border-top: 1px solid var(--line); padding: clamp(4rem, 8vw, 8rem) 0; display: grid; grid-template-columns: 1fr 2fr; gap: 2rem; }
.editor-note h2 { font-family: var(--serif); font-size: clamp(2rem, 4.2vw, 4.6rem); line-height: 1.35; margin-bottom: 2rem; }
.editor-note div > p { max-width: 42rem; color: var(--muted); }
.editor-index { position: absolute; right: 0; top: 2rem; color: #4d4d54; font-size: .7rem; letter-spacing: .2em; }
footer { border-top: 1px solid var(--line); padding: 3rem 3.5vw; display: grid; grid-template-columns: 1fr 1fr 2fr auto; align-items: end; gap: 2rem; color: var(--muted); font-size: .76rem; }
.footer-brand { font-size: 1.3rem; letter-spacing: .06em; font-weight: 700; color: white; }
.footer-brand span { color: var(--accent); }
.footer-note { max-width: 32rem; }
.toast { position: fixed; left: 50%; bottom: 1.5rem; transform: translate(-50%, 120px); background: white; color: #0b0b0e; padding: .8rem 1.1rem; font-size: .82rem; font-weight: 600; opacity: 0; transition: .25s; z-index: 50; box-shadow: 0 10px 35px rgba(0,0,0,.35); }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 1000px) {
  .site-header { grid-template-columns: 1fr auto; height: 72px; padding: 0 1.25rem; }
  .desktop-nav, .search-trigger { display: none; }
  .menu-button { display: grid; gap: 6px; }
  .menu-button span { width: 24px; height: 1px; background: white; }
  .signal-strip { grid-template-columns: auto 1fr; padding: 0 1.25rem; }
  .signal-strip time { display: none; }
  .ticker { justify-content: flex-start; overflow: hidden; }
  .ticker span:nth-child(n+3) { display: none; }
  .opening { grid-template-columns: 1fr; }
  .opening-copy { min-height: 520px; }
  .feature-card { min-height: 78vh; }
  .pick-card, .pick-card--tall, .pick-card--wide { grid-column: span 6; }
  .pick-card--wide .pick-image { aspect-ratio: 4 / 5; }
  footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .brand-mark { width: 34px; height: 34px; }
  .brand b { font-size: .98rem; }
  .brand small { font-size: .56rem; }
  .signal-strip { min-height: 42px; }
  .signal-label { padding-right: .8rem; }
  .ticker { padding-left: 1rem; }
  .ticker span:nth-child(n+2) { display: none; }
  .opening-copy { padding: 4rem 1.25rem 3rem; min-height: 510px; }
  h1 { font-size: clamp(2.6rem, 12vw, 4.4rem); }
  .lead { font-size: .96rem; }
  .feature-card { min-height: 690px; }
  .feature-meta h2 { font-size: 2.25rem; }
  .discover { padding: 5rem 1.25rem; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 1.25rem; }
  .card-grid { grid-template-columns: 1fr; gap: 2.6rem; }
  .pick-card, .pick-card--tall, .pick-card--wide { grid-column: 1; }
  .pick-card--wide .pick-image { aspect-ratio: 4 / 5; }
  .editor-note { margin: 0 1.25rem 4rem; grid-template-columns: 1fr; }
  .editor-note > .eyebrow { padding-top: 1rem; }
  footer { padding: 2.5rem 1.25rem; grid-template-columns: 1fr; gap: 1rem; }
}

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