:root {
  --background: #f8f8f8;
  --surface: #ffffff;
  --text: #111111;
  --muted: #666666;
  --border: #e7e7e7;
  --accent: #ff5a1f;
  --accent-hover: #ff6e3a;
  --success: #2eb67d;
  --warning: #ffb547;
  --danger: #ff4f4f;
  --container: 1600px;
  --gap: 32px;
  --pad: clamp(24px, 5vw, 80px);
  --radius: 24px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 90, 31, 0.13), transparent 28rem),
    linear-gradient(180deg, #fbfbfb 0%, var(--background) 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::selection {
  background: var(--accent);
  color: white;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video,
canvas {
  display: block;
  max-width: 100%;
}

.container {
  width: min(var(--container), calc(100% - (var(--pad) * 2)));
  margin-inline: auto;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.32;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.18'/%3E%3C/svg%3E");
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 120;
  pointer-events: none;
  border-radius: 999px;
  transform: translate3d(-50%, -50%, 0);
}

.cursor-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
}

.cursor-ring {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(17, 17, 17, 0.22);
  transition: width 220ms var(--ease), height 220ms var(--ease), border-color 220ms var(--ease);
}

.cursor-ring.is-active {
  width: 74px;
  height: 74px;
  border-color: rgba(255, 90, 31, 0.55);
}

.floating-nav {
  position: fixed;
  top: 22px;
  left: 50%;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 22px;
  width: min(920px, calc(100% - 32px));
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  font-weight: 700;
}

.brand {
  width: 42px;
  background: var(--text);
  color: white;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 3vw, 34px);
  flex: 1;
  color: rgba(17, 17, 17, 0.72);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  transition: color 200ms var(--ease);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-cta {
  padding: 0 20px;
  background: var(--accent);
  color: white;
  font-size: 14px;
}

.section-full {
  min-height: 100svh;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 140px 0 80px;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 52% 42%, rgba(255, 90, 31, 0.2), transparent 22rem),
    linear-gradient(180deg, rgba(248, 248, 248, 0.52), rgba(248, 248, 248, 0.96));
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker,
.split-label {
  margin: 0 0 24px;
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  max-width: 1420px;
  margin: 0;
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: clamp(72px, 10vw, 180px);
  font-weight: 700;
  letter-spacing: -0.085em;
  line-height: 0.83;
}

.hero-title span {
  display: block;
}

.hero-title span:nth-child(2) {
  padding-left: clamp(0px, 12vw, 190px);
}

.hero-title span:nth-child(3) {
  background: linear-gradient(135deg, #111 18%, #ff5a1f 58%, #ff7b4d 100%);
  background-clip: text;
  color: transparent;
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 560px) auto;
  align-items: end;
  gap: 40px;
  margin-top: 42px;
}

.hero-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 400ms var(--ease), background 200ms var(--ease), border-color 200ms var(--ease);
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--text);
  color: white;
}

.button-primary:hover {
  background: var(--accent);
}

.button-secondary {
  border: 1px solid var(--text);
  background: transparent;
}

.hero-meta {
  position: absolute;
  right: var(--pad);
  bottom: 84px;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  text-align: right;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  bottom: 42px;
  left: var(--pad);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.scroll-cue span {
  width: 7px;
  height: 38px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 999px;
}

.stack-section,
.overview,
.metrics,
.showcase,
.journey,
.awards,
.jury,
.collections {
  padding-block: clamp(96px, 12vw, 180px);
}

.tag-marquee {
  display: flex;
  overflow: hidden;
  border-block: 1px solid var(--border);
  padding-block: 22px;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.tag-track {
  display: flex;
  gap: 14px;
  min-width: max-content;
  padding-right: 14px;
  animation: marquee 26s linear infinite;
}

.tag-track span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid #e5e5e5;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  white-space: nowrap;
}

.overview {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: var(--gap);
  border-top: 1px solid var(--border);
}

.split-copy,
.story-copy h2,
.metrics-heading h2,
.showcase-heading h2,
.journey-heading h2,
.award-breakdown h2,
.table-heading h2,
.collections-heading h2 {
  margin: 0;
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.story {
  position: relative;
  padding-block: 120px;
}

.story-progress {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 3px;
  background: rgba(17, 17, 17, 0.08);
}

.story-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #ff5a1f, #ff7b4d);
}

.story-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) 1fr;
  gap: clamp(32px, 6vw, 96px);
}

.story-copy {
  position: sticky;
  top: 140px;
  align-self: start;
}

.story-copy p:last-child,
.metrics-heading p:last-child {
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.story-scenes {
  display: grid;
  gap: 42px;
}

.story-card,
.metric-card,
.showcase-card,
.journey-card,
.award-score,
.award-breakdown,
.jury-table,
.collection-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(231, 231, 231, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.story-card {
  min-height: 620px;
}

.story-card img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.02);
}

.story-card::after,
.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, 0.62));
  pointer-events: none;
}

.story-card div,
.card-copy {
  position: absolute;
  inset: auto 28px 28px;
  z-index: 2;
  color: white;
}

.story-card span,
.card-copy span,
.metric-card span,
.journey-card span,
.award-score span,
.collection-card span {
  display: block;
  margin-bottom: 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-card h3,
.card-copy h3,
.journey-card h3,
.collection-card h3 {
  max-width: 740px;
  margin: 0;
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: clamp(26px, 3.8vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.metrics-heading,
.showcase-heading,
.journey-heading,
.collections-heading {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: var(--gap);
  align-items: end;
  margin-bottom: 42px;
}

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

.metric-card {
  padding: clamp(24px, 3vw, 36px);
}

.metric-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -38% 8%;
  height: 170px;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.18), transparent 68%);
}

.metric-card strong {
  display: block;
  margin-bottom: 28px;
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: clamp(54px, 7vw, 104px);
  line-height: 0.85;
  letter-spacing: -0.075em;
}

.metric-card p {
  position: relative;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}

.showcase-card {
  grid-column: span 4;
  grid-row: span 2;
  min-height: 100%;
  isolation: isolate;
  transform-style: preserve-3d;
  transition: transform 400ms var(--ease), box-shadow 400ms var(--ease), grid-column 400ms var(--ease);
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    circle at var(--x, 50%) var(--y, 50%),
    rgba(255, 90, 31, 0.38),
    transparent 32%
  );
  opacity: 0;
  transition: opacity 240ms var(--ease);
  pointer-events: none;
}

.showcase-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.showcase-card:hover::before {
  opacity: 1;
}

.showcase-card img,
.showcase-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}

.showcase-card:hover img,
.showcase-card:hover video {
  transform: scale(1.06);
}

.card-tall {
  grid-column: span 4;
  grid-row: span 3;
}

.card-wide {
  grid-column: span 8;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(250px, auto);
  gap: 18px;
}

.journey-card {
  grid-column: span 4;
  min-height: 320px;
  padding: clamp(24px, 3vw, 36px);
}

.journey-card.large {
  grid-column: span 8;
}

.journey-card.wide {
  grid-column: span 12;
  min-height: 260px;
}

.diagram {
  position: absolute;
  inset: auto 26px 26px auto;
  width: 190px;
  height: 130px;
}

.diagram-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.diagram-bars i {
  flex: 1;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, #ff5a1f, rgba(255, 90, 31, 0.14));
  animation: barPulse 1600ms var(--ease) infinite alternate;
}

.diagram-bars i:nth-child(1) { height: 34%; }
.diagram-bars i:nth-child(2) { height: 62%; animation-delay: 100ms; }
.diagram-bars i:nth-child(3) { height: 48%; animation-delay: 200ms; }
.diagram-bars i:nth-child(4) { height: 84%; animation-delay: 300ms; }

.diagram-orbit {
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 50%;
  animation: rotate 14s linear infinite;
}

.diagram-orbit i {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
}

.diagram-orbit i:nth-child(1) { left: 50%; top: -8px; }
.diagram-orbit i:nth-child(2) { right: 12px; bottom: 18px; }
.diagram-orbit i:nth-child(3) { left: 10px; bottom: 24px; }

.diagram-stack i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 90, 31, 0.36);
  border-radius: 22px;
  background: rgba(255, 90, 31, 0.08);
}

.diagram-stack i:nth-child(2) {
  transform: translate(-16px, 16px);
}

.diagram-stack i:nth-child(3) {
  transform: translate(-32px, 32px);
}

.result-strip {
  position: absolute;
  right: 32px;
  bottom: 28px;
  left: 32px;
  display: grid;
  grid-template-columns: repeat(6, auto);
  gap: 14px;
  align-items: end;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.result-strip strong {
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: -0.055em;
}

.result-strip span {
  margin: 0 20px 8px 0;
  color: var(--muted);
}

.awards {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 18px;
}

.award-score,
.award-breakdown {
  padding: clamp(28px, 4vw, 56px);
}

.award-score strong {
  display: block;
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: clamp(92px, 12vw, 180px);
  line-height: 0.82;
  letter-spacing: -0.08em;
}

.score-list {
  display: grid;
  gap: 18px;
  margin-top: 48px;
}

.score-list div {
  display: grid;
  grid-template-columns: 120px 1fr 54px;
  gap: 18px;
  align-items: center;
}

.score-list i {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.08);
}

.score-list i::before {
  content: "";
  display: block;
  width: var(--score);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, #ff5a1f, #ff7b4d);
  transform: scaleX(0);
  transform-origin: left;
}

.score-list.is-visible i::before {
  animation: fillBar 900ms var(--ease) forwards;
}

.jury-table {
  min-width: 860px;
}

.jury {
  overflow-x: auto;
}

.jury-table [role="row"] {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr repeat(5, 1fr);
}

.jury-table [role="row"]:first-child {
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.jury-table span {
  padding: 20px;
  border-bottom: 1px solid var(--border);
}

.jury-table [role="row"]:last-child span {
  border-bottom: 0;
}

.collection-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.collection-card {
  min-height: 320px;
  padding: 28px;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 90, 31, 0.22), transparent 32%),
    white;
  transition: transform 400ms var(--ease), box-shadow 400ms var(--ease);
}

.collection-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.footer {
  position: relative;
  overflow: hidden;
  padding: clamp(96px, 14vw, 180px) 0 80px;
  color: white;
  background: #111;
}

.footer-glow {
  position: absolute;
  inset: auto -10% -32% 25%;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.7), transparent 62%);
  filter: blur(12px);
}

.footer-marquee {
  display: flex;
  gap: 40px;
  width: max-content;
  color: rgba(255, 255, 255, 0.12);
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: clamp(76px, 12vw, 170px);
  font-weight: 700;
  letter-spacing: -0.08em;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}

.footer-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-top: 72px;
}

.footer-inner h2 {
  margin: 0;
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: clamp(64px, 10vw, 150px);
  line-height: 0.82;
  letter-spacing: -0.08em;
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

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

@keyframes fillBar {
  to {
    transform: scaleX(1);
  }
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes barPulse {
  to {
    transform: scaleY(0.78);
  }
}

@media (max-width: 1100px) {
  .hero-bottom,
  .overview,
  .story-shell,
  .metrics-heading,
  .showcase-heading,
  .journey-heading,
  .awards,
  .collections-heading {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-meta {
    display: none;
  }

  .story-copy {
    position: static;
  }

  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-card,
  .card-tall,
  .card-wide,
  .journey-card,
  .journey-card.large {
    grid-column: span 6;
  }
}

@media (max-width: 720px) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .floating-nav {
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .hero-title {
    letter-spacing: -0.065em;
  }

  .hero-title span:nth-child(2) {
    padding-left: 0;
  }

  .metric-grid,
  .collection-row {
    grid-template-columns: 1fr;
  }

  .bento-grid,
  .journey-grid {
    display: block;
  }

  .showcase-card,
  .journey-card,
  .journey-card.large,
  .journey-card.wide {
    min-height: 420px;
    margin-bottom: 18px;
  }

  .story-card,
  .story-card img {
    min-height: 480px;
  }

  .result-strip {
    position: static;
    grid-template-columns: 1fr 1fr;
    margin-top: 40px;
  }

  .score-list div {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    display: grid;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
