/* ========================
   @font-face — Ioskeley Mono
   ======================== */
@font-face {
  font-family: 'Universal Sans';
  src: url('assets/fonts/UniversalSans-Normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Universal Sans';
  src: url('assets/fonts/UniversalSans-Condensed-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
/* ========================
   Color Palette
   ======================== */
:root {
  --color-bg:      #0a0a0a;
  --color-accent:  rgba(255, 255, 255, 0.1);
  --color-light-accent: rgba(255, 255, 255, .025);
  --color-accent-darker:  #ffffffa8;
  --color-white:   #ffffff;
  --color-swagpurple: #E03ED8;
  --color-secondary-text: hsl(210, 4%, 60%);
  --color-primary-text: hsl(0 0% 100%);
}

/* ========================
   Reset
   ======================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  background: radial-gradient(
      circle at top,
      #111 0%,
      #0b0b0b 60%,
      #000 100%
  );
  width: 100%;
  height: 100%;
  font-family: 'Universal Sans';
  color: var(--color-white);
}

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

/* ========================
   Page Container
   ======================== */
.page-container {
  padding-top: 6rem;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-bottom: 6rem;
  min-height: 100vh;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
  isolation: isolate; /* makes blend modes behave */
}

/* ========================
   Utilities
   ======================== */
.hidden {
  display: none !important;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.text-secondary {
  color: var(--color-secondary-text);
}

.metal-svg {
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #f6f6f6 14%,
    #ececec 32%,
    #dddddd 55%,
    #bdbdbd 72%,
    #8b8b8b 100%
  );

  /* Use your SVG as mask */
  -webkit-mask: url("/assets/favicon.svg") no-repeat center;
  mask: url("/assets/favicon.svg") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.premium-lit {
  position: relative;
  display: inline-block;

  /* Top-lit metal gradient */
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #f6f6f6 14%,
    #ececec 32%,
    #dddddd 55%,
    #bdbdbd 72%,
    #8b8b8b 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  /* Lift the text off the background */
  text-shadow:
    0 1px 0 rgba(255,255,255,0.35),
    0 6px 18px rgba(0,0,0,0.35);
}

/* ========================
   Hero / Header
   ======================== */
/* Make sure hero content is above the light */
.hero{
  display: flex;
  flex-direction: column;   /* stack h1 + p + p */
  justify-content: center;  /* vertical center */
  align-items: center;      /* horizontal center */
  text-align: center;
  margin-bottom: 6rem;
  z-index: 10;
}

.hero-particles{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 380px;          /* IMPORTANT: not full page */
  z-index: 1;
  pointer-events: none;

  opacity: 0.35;          /* lower */
  /* Try WITHOUT blend first */
  mix-blend-mode: normal;
}

/* The light itself */
.hero-light{
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 180%;
  height: 650px;
  z-index: 1;
  pointer-events: none;

  background: linear-gradient(
    to right,
    rgba(255, 120, 40, 0.55),
    rgba(255, 120, 40, 0.30),
    rgba(189, 201, 230, 0.30),
    rgba(151, 196, 255, 0.45),
    rgba(151, 196, 255, 0.25)
  );

  mix-blend-mode: screen;
  filter: blur(28px);
  opacity: 1;

  -webkit-mask-image: radial-gradient(ellipse at top, #000 0%, transparent 75%);
  mask-image: radial-gradient(ellipse at top, #000 0%, transparent 75%);
}

.hero-title {
  display: flex;
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
  gap: 24px;
}

.hero-logo {
  height: 1.5cap;
  width: 1.5cap;
}

.hero-description {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 6px;
}

.hero-disclaimer {
  font-size: 1.5rem;
  line-height: 1.6;
  text-align: center;
}

.hero-description-link {
  color: var(--color-accent);
  transition: color 0.3s;
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
}

.hero-description-link:hover {
  color: var(--color-accent-darker);
}

.hero-tagline {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}

.hero-links {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.hero-links a {
  color: var(--color-accent);
  text-decoration: none;
  transition: opacity 0.2s;
}

.hero-links a:hover {
  opacity: 0.75;
}

.hero-data {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  font-size: 0.85rem;
}

.hero-data-tag {
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.hero-data-text {
  color: rgba(255, 255, 255, 0.6);
}

.dynamic-num {
  color: var(--color-white);
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
}

.metrics-title {
  font-size: 1.25rem;
}

.metrics-number {
  font-size: 3.5rem;
}

.metrics {

}

.three-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.column {
  flex: 1;            /* all columns equal width */
  padding: 1rem;
  border-left: 1px solid rgba(255,255,255,0.08);
}

.column:hover {
  background-color: var(--color-light-accent);
}

/* ========================
   Table Section
   ======================== */

.section-header {
  font-size: 2rem;
  padding-left: 1rem;
  margin-bottom: .5rem;
  margin-top: 4rem;
}

.section-description {
  font-size: 1rem;
  padding-left: 1rem;
  margin-bottom: 1rem;
}

.table-section {
  margin-top: 48px;
}

.table-wrapper {
  border: 1px solid var(--color-accent);
  width: 100%;
  max-height: 400px;
  overflow-y: auto;
  overflow-x: auto;
}

.table-wrapper::-webkit-scrollbar {
  width: .25rem;
}

.table-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.table-wrapper::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: .25rem;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}

.event-table {
  width: calc(100%);
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
}

.event-table th:first-child,
.event-table td:first-child {
  width: 33.333%;
}

.event-table thead th {
  text-align: left;
  padding: .5rem;
  padding-left: .5rem;
  padding-bottom: .5rem;
  font-size: 1rem;
  background-color: var(--color-bg);
  border-bottom: 1px solid var(--color-accent);
  position: sticky;
  top: 0;
  white-space: nowrap;
  cursor: default;
  z-index: 10;
}

.event-table tbody tr {
  border-bottom: var(--color-accent);
  transition: background 0.15s;
}

.event-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.event-table tbody tr:first-child td {
  /* padding-top: 1rem; */
}

.event-table tbody td {
  padding: .5rem;
  font-size: 1rem;
  color: var(--color-white);
  white-space: nowrap;
}

.table-first-column-content {
  color: var(--color-white);
  transition: color 0.3s;
}

.table-first-column-content:hover {
  color: var(--color-accent-darker);
}

/* ========================
   Metrics Table
   ======================== */
.metrics-table {
  margin-top: 24px;
  width: calc(100% + 16px);
  border-collapse: separate;
  border-spacing: 16px 4px;
  table-layout: fixed;
  margin-left: -16px;
}

.metrics-table th,
.metrics-table td {
  width: 33.333%;
}

.metrics-table thead th {
  text-align: left;
  padding: 0 0 6px 0;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: 0.05em;
  color: var(--color-white);
  border-bottom: 1px solid var(--color-accent);
  white-space: nowrap;
  cursor: default;
}

.metrics-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.15s;
}

.metrics-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.metrics-table tbody tr:first-child td {
  padding-top: 24px;
}

.metrics-table tbody td {
  padding: 10px 0;
  font-size: 4rem;
  color: var(--color-white);
  white-space: nowrap;
}

.heading-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
  text-underline-offset: 3px;
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
}

.heading-note {
  font-size: .8rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--color-white) 75%, transparent);
  margin-top: 6px;
}

.changes-header-value {
  margin-top: 12px;
  font-size: 4rem;
}

.footnote-section {
  margin-top: 3rem;
}

.footnote-line {
  margin-bottom: .25rem;
  text-align: center;
}

.link {

}

.link:Hover {

}