:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --ink: #f4f4f4;
  --mute: #8a8a8a;
  --line: rgba(244, 244, 244, 0.12);
  --accent: #ff4d1c;
  --display: "Space Grotesk", "Noto Sans SC", sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --text: "Noto Sans SC", "Space Grotesk", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--text);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: none; text-align: left; }
em { font-family: var(--serif); font-style: italic; font-weight: 400; }
strong { color: #fff; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor {
  position: fixed;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
  z-index: 100;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, background 0.25s ease;
  will-change: left, top;
}
.cursor.grow {
  width: 48px;
  height: 48px;
  background: #fff;
}
@media (pointer: coarse) {
  body, button { cursor: auto; }
  .cursor { display: none; }
}

.topbar {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
}
.brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.04em;
}
.brand span {
  margin-left: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}
.top-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.top-meta .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3ddc84;
  box-shadow: 0 0 0 4px rgba(61, 220, 132, 0.15);
}
.top-cta {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 16px;
  border: 1px solid var(--line);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.top-cta:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.hero {
  min-height: calc(100svh - 70px);
  padding: clamp(48px, 10vh, 100px) clamp(20px, 4vw, 56px) 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 10% 0 auto;
  height: 50%;
  background: radial-gradient(ellipse at 30% 40%, rgba(255, 77, 28, 0.12), transparent 55%);
  pointer-events: none;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 28px;
  position: relative;
}
.hero-meta .sep { opacity: 0.4; }
.hero-meta .score { color: var(--accent); font-weight: 600; }
.hero-title { margin: 0; position: relative; }
.hero-title .line {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.05em;
}
.hero-title .line:first-child {
  font-size: clamp(92px, 18vw, 220px);
}
.hero-title .line i {
  font-style: normal;
  color: var(--accent);
}
.hero-title .outline {
  margin-top: 0.02em;
  font-size: clamp(40px, 8.5vw, 110px);
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(244, 244, 244, 0.55);
  letter-spacing: -0.04em;
}
.hero-lead {
  margin: 36px 0 0;
  max-width: 14em;
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.25;
  position: relative;
}
.hero-foot {
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  position: relative;
}
.hero-foot p {
  margin: 0;
  color: var(--mute);
  font-size: 14px;
  font-weight: 300;
  max-width: 28em;
}
.scroll-hint {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.scroll-hint span {
  width: 28px;
  height: 1px;
  background: var(--mute);
  display: inline-block;
  transition: width 0.3s;
}
.scroll-hint:hover span { width: 48px; background: var(--accent); }

.marquee {
  border-block: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 0;
  background: var(--bg-2);
}
.marquee-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: marquee 32s linear infinite;
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.marquee-track span:nth-child(odd) { color: var(--ink); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section-label {
  padding: 0 clamp(20px, 4vw, 56px);
  margin-bottom: 36px;
}
.section-label.row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}
.section-label h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.04em;
  font-weight: 700;
}
.section-label p {
  margin: 8px 0 0;
  color: var(--mute);
  font-size: 14px;
}
.section-label .count {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 8px;
}

.featured { padding: 100px 0 40px; }
.sotd {
  margin: 0 clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  border: 1px solid var(--line);
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.sotd.in { opacity: 1; transform: none; }
.sotd-visual {
  position: relative;
  min-height: 520px;
  background: #161616;
}
.sotd-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(255, 77, 28, 0.55), transparent 42%),
    radial-gradient(circle at 80% 60%, rgba(40, 80, 160, 0.45), transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(255, 180, 80, 0.2), transparent 45%),
    linear-gradient(160deg, #1a1a1a, #0d0d0d);
}
.sotd-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -12deg,
    transparent 0 10px,
    rgba(255,255,255,0.02) 10px 11px
  );
}
.sotd-score {
  position: absolute;
  left: 28px;
  top: 28px;
  z-index: 2;
  font-family: var(--display);
}
.sotd-score b {
  display: block;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.sotd-score span {
  display: block;
  font-size: 13px;
  color: var(--mute);
  margin-top: 4px;
}
.sotd-score small {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.sotd-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244,244,244,0.75);
}
.sotd-body {
  padding: clamp(28px, 4vw, 48px);
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.sotd-body h3 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.03em;
  line-height: 1.15;
  font-weight: 700;
}
.sotd-body .desc {
  margin: 0 0 20px;
  color: #b5b5b5;
  font-size: 14.5px;
  font-weight: 300;
}
.bullets {
  margin: 0 0 24px;
  padding-left: 1.1em;
  color: var(--mute);
  font-size: 14px;
}
.bullets li { margin-bottom: 8px; }
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}
.chip-row span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cfcfcf;
  border-bottom: 1px solid rgba(207,207,207,0.35);
  padding-bottom: 2px;
}

.nominees { padding: 100px 0 40px; }
.nom-list {
  border-top: 1px solid var(--line);
  margin: 0 clamp(20px, 4vw, 56px);
}
.nom {
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.nom.in { opacity: 1; transform: none; }
.nom-head {
  width: 100%;
  display: grid;
  grid-template-columns: 64px 1.4fr 1fr 40px;
  gap: 16px;
  align-items: center;
  padding: 28px 4px;
  transition: background 0.25s;
}
.nom-head:hover { background: rgba(255,255,255,0.02); }
.nom-head .n {
  font-family: var(--display);
  font-weight: 600;
  color: var(--mute);
  font-size: 14px;
}
.nom-head .t {
  font-family: var(--display);
  font-weight: 650;
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.nom-head .m {
  color: var(--mute);
  font-size: 13px;
  justify-self: end;
  text-align: right;
}
.nom-head .plus {
  width: 18px;
  height: 18px;
  position: relative;
  justify-self: end;
}
.nom-head .plus::before,
.nom-head .plus::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform 0.3s ease;
}
.nom-head .plus::before {
  width: 18px;
  height: 1.5px;
  top: 50%;
  left: 0;
}
.nom-head .plus::after {
  width: 1.5px;
  height: 18px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.nom.open .plus::after { transform: translateX(-50%) rotate(90deg) scaleY(0); }
.nom-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
  padding: 0 4px;
}
.nom.open .nom-panel { grid-template-rows: 1fr; }
.nom-panel > * { overflow: hidden; }
.nom-panel p,
.nom-panel ul {
  margin: 0;
  color: var(--mute);
  font-size: 14.5px;
  max-width: 56em;
}
.nom-panel p { padding: 0 0 12px 80px; }
.nom-panel ul { padding: 0 0 28px 96px; }
.nom-panel li { margin-bottom: 6px; }

.impact {
  margin: 80px clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.impact-item {
  background: var(--bg);
  padding: 28px 18px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.impact-item.in { opacity: 1; transform: none; }
.impact-item b {
  display: block;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.04em;
  line-height: 1;
}
.impact-item span {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--mute);
}

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 48px;
  padding: 80px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
}
.about-left h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: -0.04em;
  line-height: 1.02;
  font-weight: 700;
}
.about-lead {
  margin: 0 0 36px;
  font-size: 16px;
  color: #c4c4c4;
  font-weight: 300;
  max-width: 40em;
}
.method {
  list-style: none;
  margin: 0;
  padding: 0;
}
.method li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--mute);
}
.method li:last-child { border-bottom: 1px solid var(--line); }
.method span {
  font-family: var(--display);
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  padding-top: 2px;
}
.method strong {
  font-family: var(--display);
  margin-right: 10px;
  color: var(--ink);
}

.path { padding: 60px 0 40px; }
.path-list {
  margin: 0 clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
}
.path-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.path-row.in { opacity: 1; transform: none; }
.path-row time {
  font-family: var(--display);
  font-size: 13px;
  color: var(--mute);
  letter-spacing: 0.04em;
  padding-top: 6px;
}
.path-row h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.03em;
}
.path-row p {
  margin: 6px 0 0;
  color: var(--mute);
  font-size: 14px;
}

.creds {
  margin: 60px clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.cred {
  background: var(--bg-2);
  padding: 28px 24px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.cred.in { opacity: 1; transform: none; }
.cred h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.cred p {
  margin: 0;
  color: #c8c8c8;
  font-size: 14px;
}

.contact {
  margin: 80px clamp(20px, 4vw, 56px) 140px;
  padding: clamp(56px, 8vw, 96px);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 77, 28, 0.18), transparent 40%),
    var(--bg-2);
  text-align: center;
}
.contact h2 {
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 96px);
  letter-spacing: -0.04em;
  line-height: 0.98;
  font-weight: 700;
  max-width: 10em;
}
.mail {
  display: inline-block;
  margin-top: 36px;
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: -0.02em;
  border-bottom: 1px solid rgba(244,244,244,0.35);
  padding-bottom: 6px;
  transition: color 0.25s, border-color 0.25s;
}
.mail:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.fine {
  margin: 18px 0 0;
  color: var(--mute);
  font-size: 13px;
}

.dock {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 10px 8px 8px;
  background: rgba(20, 20, 20, 0.82);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}
.dock a {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 10px 14px;
  color: #cfcfcf;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.dock a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.dock-logo {
  width: 36px;
  height: 36px;
  padding: 0 !important;
  display: grid !important;
  place-items: center;
  background: #fff !important;
  color: #0a0a0a !important;
  border-radius: 50% !important;
  font-weight: 700 !important;
  font-size: 14px !important;
}
.dock-cta {
  background: var(--accent) !important;
  color: #fff !important;
  margin-left: 4px;
}
.dock-cta:hover { filter: brightness(1.08); }

.foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0 clamp(20px, 4vw, 56px) 100px;
  color: var(--mute);
  font-size: 12px;
}

@media (max-width: 980px) {
  .sotd,
  .about,
  .impact,
  .creds,
  .nom-head,
  .path-row {
    grid-template-columns: 1fr;
  }
  .top-meta { display: none; }
  .sotd-visual { min-height: 320px; }
  .nom-head .m { justify-self: start; text-align: left; }
  .nom-panel p { padding-left: 0; }
  .nom-panel ul { padding-left: 1.1em; }
  .impact { grid-template-columns: repeat(2, 1fr); }
  .dock a:not(.dock-logo):not(.dock-cta) { display: none; }
  .hero-foot { flex-direction: column; align-items: flex-start; }
}
