:root {
  --bg: #0a0e14;
  --bg-soft: #0d1119;
  --surface: #12161f;
  --surface-2: #161c28;
  --border: #222936;
  --border-soft: #1a2029;
  --text: #eceff4;
  --muted: #8a93a6;
  --faint: #565e70;
  --brass: #c9a45c;
  --brass-soft: #e3c98a;
  --blue: #6c8eef;
  --green: #34d399;
  --green-soft: #4ade9a;
  --red: #e5586b;
  --gray: #5b6478;
  --radius: 8px;
  --serif: "Fraunces", serif;
  --sans: "Inter", system-ui, sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --page-max: 1180px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.5;
  margin: 0;
  overflow-x: hidden;
}

::selection {
  background: var(--brass);
  color: #10131a;
}

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

img {
  display: block;
}

.wrap {
  margin: 0 auto;
  max-width: var(--page-max);
  padding: 0 28px;
}

.grain {
  animation: grainShift 9s steps(2) infinite;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 3px 3px;
  inset: 0;
  mix-blend-mode: overlay;
  opacity: 0.42;
  pointer-events: none;
  position: fixed;
  z-index: 0;
}

.vault-lines {
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 42%, var(--bg) 100%),
    radial-gradient(circle at 80% 20%, rgba(201, 164, 92, 0.11), transparent 28rem);
  inset: 0;
  opacity: 0.85;
  pointer-events: none;
  position: fixed;
  z-index: 0;
}

.site-header {
  background: rgba(10, 14, 20, 0.72);
  border-bottom: 1px solid var(--border-soft);
  backdrop-filter: blur(14px) saturate(140%);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-wrap {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--page-max);
  padding: 18px 28px;
}

.brand {
  align-items: center;
  display: flex;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  gap: 10px;
  letter-spacing: -0.01em;
}

.brand-mark {
  border-radius: 9px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  display: block;
  height: 30px;
  object-fit: contain;
  width: 30px;
}

.brand:hover .brand-mark {
  animation: markPulse 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: var(--muted);
  font-size: 14.5px;
  position: relative;
  transition: color 180ms ease;
}

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

.nav-links a::after {
  background: var(--brass);
  bottom: -7px;
  content: "";
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition:
    opacity 180ms ease,
    transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
  width: 100%;
}

.nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.btn-primary {
  background: var(--brass);
  border-radius: var(--radius);
  color: #14110a;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  transition:
    box-shadow 200ms ease,
    transform 200ms ease;
  position: relative;
  overflow: hidden;
}

.nav-cta::after,
.btn-primary::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  content: "";
  height: 100%;
  left: -70%;
  position: absolute;
  top: 0;
  transform: skewX(-18deg);
  transition: left 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  width: 48%;
}

.nav-cta:hover::after,
.btn-primary:hover::after {
  left: 120%;
}

.nav-cta:hover,
.btn-primary:hover {
  box-shadow: 0 14px 30px -10px rgba(201, 164, 92, 0.52);
  transform: translateY(-2px);
}

.eyebrow {
  align-items: center;
  color: var(--brass);
  display: flex;
  font-family: var(--mono);
  font-size: 12.5px;
  gap: 10px;
  letter-spacing: 0.14em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.eyebrow::before {
  background: var(--brass);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(201, 164, 92, 0.18);
  content: "";
  height: 6px;
  width: 6px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero {
  padding: 104px 0 68px;
  position: relative;
  z-index: 1;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 60px;
  grid-template-columns: 1.05fr 0.95fr;
}

.hero h1 {
  animation: rise 800ms 80ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  font-size: clamp(42px, 5.4vw, 68px);
  line-height: 1.02;
  max-width: 11ch;
  opacity: 0;
  transform: translateY(18px);
}

.lead {
  animation: rise 800ms 230ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  color: var(--muted);
  font-size: 17.5px;
  line-height: 1.68;
  margin-top: 24px;
  max-width: 520px;
  opacity: 0;
  transform: translateY(18px);
}

.hero-actions {
  animation: rise 800ms 380ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  opacity: 0;
  transform: translateY(18px);
}

.btn-primary,
.btn-ghost {
  align-items: center;
  display: inline-flex;
  min-height: 46px;
}

.btn-ghost {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 13px;
  padding: 10px 18px;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.btn-ghost:hover {
  border-color: var(--faint);
  color: var(--text);
  transform: translateY(-2px);
}

.hero-stats {
  animation: rise 800ms 520ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  margin-top: 48px;
  opacity: 0;
  transform: translateY(18px);
}

.hero-stats b {
  color: var(--text);
  display: block;
  font-family: var(--serif);
  font-size: 27px;
}

.hero-stats span {
  color: var(--faint);
  display: block;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
}

.ticket-stage {
  display: flex;
  justify-content: center;
  min-height: 510px;
  position: relative;
}

.ticket-stage::before {
  animation: haloBreath 5.5s ease-in-out infinite;
  background: radial-gradient(circle, rgba(201, 164, 92, 0.14), transparent 62%);
  content: "";
  height: 430px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 430px;
}

.stage-image {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  filter: saturate(0.82) contrast(0.9);
  inset: 34px 0 auto auto;
  mask-image: linear-gradient(90deg, transparent 0%, #000 35%, transparent 100%);
  max-width: 440px;
  opacity: 0.22;
  position: absolute;
  width: 82%;
}

.ticket-card {
  animation: cardIn 900ms 260ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  align-self: center;
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow:
    0 34px 70px -34px rgba(0, 0, 0, 0.72),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  max-width: 390px;
  opacity: 0;
  overflow: hidden;
  padding: 28px;
  position: relative;
  transform: translateY(24px) rotate(1.2deg);
  width: 100%;
  will-change: transform;
}

.ticket-card::before {
  background: radial-gradient(circle, rgba(201, 164, 92, 0.13), transparent 70%);
  border-radius: 50%;
  content: "";
  height: 170px;
  position: absolute;
  right: -70px;
  top: -70px;
  width: 170px;
}

.ticket-top,
.ticket-parties,
.ticket-footer {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.ticket-id,
.ticket-fee,
.ticket-parties span,
.track-labels,
.ticket-footer {
  color: var(--faint);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.ticket-badge,
.tl-status {
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 5px 11px;
}

.ticket-badge {
  transition:
    background 420ms ease,
    color 420ms ease,
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ticket-amount {
  font-family: var(--serif);
  font-size: 42px;
  letter-spacing: -0.02em;
  margin-top: 24px;
  position: relative;
}

.ticket-parties {
  font-size: 13.5px;
  margin-top: 24px;
}

.ticket-parties div:last-child {
  text-align: right;
}

.ticket-parties span {
  display: block;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.ticket-arrow {
  align-self: center;
  color: var(--faint);
  font-family: var(--mono);
}

.ticket-track {
  margin-top: 28px;
  position: relative;
}

.track-line {
  background: var(--border);
  border-radius: 999px;
  height: 3px;
  overflow: hidden;
}

.track-fill {
  background: linear-gradient(90deg, var(--blue), var(--green), var(--brass));
  border-radius: inherit;
  height: 100%;
  transition: width 1.1s cubic-bezier(0.3, 0.8, 0.3, 1);
  width: 0%;
  box-shadow: 0 0 18px rgba(201, 164, 92, 0.24);
}

.track-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 11px;
}

.track-labels span {
  transition: color 350ms ease;
}

.track-labels span.active {
  color: var(--text);
}

.ticket-footer {
  border-top: 1px solid var(--border-soft);
  margin-top: 26px;
  padding-top: 18px;
}

.ticket-seal {
  align-items: center;
  background: rgba(201, 164, 92, 0.06);
  border: 2px solid var(--brass);
  border-radius: 50%;
  bottom: 18px;
  color: var(--brass);
  display: flex;
  font-family: var(--mono);
  font-size: 9px;
  height: 56px;
  justify-content: center;
  letter-spacing: 0.05em;
  opacity: 0;
  position: absolute;
  right: 18px;
  text-align: center;
  transform: scale(0.5) rotate(-18deg);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
  width: 56px;
}

.ticket-seal.show {
  animation: sealStamp 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
  opacity: 1;
  transform: scale(1) rotate(-12deg);
}

.trust-strip {
  border-bottom: 1px solid var(--border-soft);
  border-top: 1px solid var(--border-soft);
  padding: 34px 0;
  position: relative;
  z-index: 1;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 26px 48px;
  justify-content: space-between;
}

.trust-item {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 600ms ease,
    transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.trust-item.in {
  opacity: 1;
  transform: translateY(0);
}

.trust-item b {
  color: var(--text);
  font-family: var(--mono);
  font-weight: 600;
}

.section {
  padding: 112px 0;
  position: relative;
  z-index: 1;
}

.section-tight {
  padding-top: 0;
}

.section-head {
  margin-bottom: 64px;
  max-width: 650px;
}

.section-head h2,
.footer-cta-section h2 {
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.08;
}

.section-head p:not(.eyebrow),
.fee-panel p,
.footer-cta-section p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
  margin-top: 14px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.tl-item {
  border-left: 1px solid var(--border);
  opacity: 0;
  padding: 0 22px 38px;
  position: relative;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
}

.tl-line-fill {
  background: linear-gradient(180deg, var(--brass), transparent);
  height: 0%;
  left: -1px;
  opacity: 0.72;
  position: absolute;
  top: 0;
  transition: height 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
  width: 1px;
}

.tl-item:first-child {
  border-left: 0;
}

.tl-item.in,
.feat.in {
  opacity: 1;
  transform: translateY(0);
}

.tl-item.in .tl-line-fill {
  height: 100%;
}

.tl-num {
  background: var(--bg);
  color: var(--faint);
  font-family: var(--mono);
  font-size: 12px;
  left: -1px;
  padding-right: 12px;
  position: absolute;
  top: 0;
}

.tl-dot {
  border-radius: 50%;
  height: 10px;
  margin: 31px 0 17px;
  width: 10px;
  transition:
    box-shadow 260ms ease,
    transform 260ms ease;
}

.tl-item:hover .tl-dot {
  box-shadow: 0 0 0 5px rgba(201, 164, 92, 0.12);
  transform: scale(1.18);
}

.tl-item h3,
.feat h3 {
  font-family: var(--sans);
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 8px;
}

.tl-item p,
.feat p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.58;
}

.tl-status {
  display: inline-block;
  margin-top: 14px;
}

.dot-muted {
  background: var(--gray);
}

.dot-blue {
  background: var(--blue);
}

.dot-green-soft {
  background: var(--green-soft);
}

.dot-green {
  background: var(--green);
}

.dot-brass {
  background: var(--brass);
}

.status-muted {
  background: rgba(91, 100, 120, 0.12);
  color: var(--gray);
}

.status-blue {
  background: rgba(108, 142, 239, 0.12);
  color: var(--blue);
}

.status-green-soft {
  background: rgba(74, 222, 154, 0.12);
  color: var(--green-soft);
}

.status-green {
  background: rgba(52, 211, 153, 0.12);
  color: var(--green);
}

.status-brass {
  background: rgba(201, 164, 92, 0.12);
  color: var(--brass);
}

.feat-grid {
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.feat {
  background: var(--surface);
  opacity: 0;
  padding: 30px 26px;
  transform: translateY(14px);
  transition:
    background 300ms ease,
    border-color 300ms ease,
    opacity 600ms ease,
    transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feat:hover {
  background: var(--surface-2);
  transform: translateY(-3px);
}

.feat::before {
  background: linear-gradient(90deg, transparent, rgba(201, 164, 92, 0.22), transparent);
  content: "";
  height: 1px;
  left: -70%;
  opacity: 0;
  position: absolute;
  top: 0;
  transition:
    left 780ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 220ms ease;
  width: 70%;
}

.feat:hover::before {
  left: 100%;
  opacity: 1;
}

.ico {
  align-items: center;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--brass);
  display: flex;
  font-family: var(--mono);
  font-size: 12px;
  height: 34px;
  justify-content: center;
  margin-bottom: 16px;
  width: 34px;
}

.feat:hover .ico {
  animation: iconLift 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fee-panel {
  align-items: center;
  background: linear-gradient(160deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr 1fr;
  padding: 54px;
  position: relative;
  overflow: hidden;
}

.fee-panel::after {
  animation: feeScan 7s ease-in-out infinite;
  background: linear-gradient(90deg, transparent, rgba(201, 164, 92, 0.08), transparent);
  content: "";
  height: 100%;
  left: -40%;
  position: absolute;
  top: 0;
  transform: skewX(-12deg);
  width: 32%;
}

.fee-panel > * {
  position: relative;
  z-index: 1;
}

.fee-big {
  color: var(--brass);
  font-family: var(--serif);
  font-size: clamp(74px, 9vw, 104px);
  letter-spacing: -0.03em;
  line-height: 1;
}

.fee-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.fee-list li {
  color: var(--muted);
  display: flex;
  font-size: 14.5px;
  gap: 12px;
  line-height: 1.6;
}

.fee-list li::before {
  color: var(--brass);
  content: "-";
  flex: 0 0 auto;
}

.terminal {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 30px 70px -40px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  transform: translateZ(0);
}

.terminal:hover {
  box-shadow: 0 36px 84px -42px rgba(0, 0, 0, 0.82);
}

.term-top {
  align-items: center;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 18px;
  padding: 14px 20px;
}

.term-dots {
  display: flex;
  gap: 7px;
}

.term-dots span {
  background: var(--border);
  border-radius: 50%;
  height: 10px;
  width: 10px;
}

.term-tabs {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.term-tab {
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  color: var(--faint);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 12px;
  padding: 6px 14px;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.term-tab.active {
  background: var(--surface-2);
  color: var(--brass);
}

.term-body {
  font-family: var(--mono);
  font-size: 13.5px;
  max-height: 390px;
  overflow-y: auto;
  padding: 26px 28px;
}

.term-pane {
  display: none;
}

.term-pane.active {
  animation: paneIn 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
  display: block;
}

.cmd-row {
  align-items: baseline;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  gap: 18px;
  padding: 10px 0;
}

.cmd-row:last-child {
  border-bottom: 0;
}

.cmd-name {
  color: var(--brass-soft);
  flex: 0 0 auto;
  white-space: nowrap;
}

.cmd-name em {
  color: var(--blue);
  font-style: normal;
}

.cmd-desc {
  color: var(--faint);
  font-family: var(--sans);
  font-size: 13px;
}

.footer-cta-section {
  border-top: 1px solid var(--border-soft);
  padding-top: 90px;
}

.footer-grid {
  align-items: end;
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
  justify-content: space-between;
}

.footer-grid > div:first-child {
  max-width: 620px;
}

.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 42px 0;
  position: relative;
  z-index: 1;
}

.footer-meta {
  color: var(--faint);
  display: flex;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 12.5px;
  gap: 14px;
  justify-content: space-between;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardIn {
  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes grainShift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-1%, 1%);
  }
  50% {
    transform: translate(1%, -1%);
  }
  75% {
    transform: translate(1%, 1%);
  }
}

@keyframes markPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 164, 92, 0.28);
  }
  100% {
    box-shadow: 0 0 0 12px rgba(201, 164, 92, 0);
  }
}

@keyframes haloBreath {
  0%,
  100% {
    opacity: 0.52;
    transform: translate(-50%, -50%) scale(0.96);
  }
  50% {
    opacity: 0.85;
    transform: translate(-50%, -50%) scale(1.04);
  }
}

@keyframes sealStamp {
  0% {
    opacity: 0;
    transform: scale(1.45) rotate(-22deg);
  }
  70% {
    opacity: 1;
    transform: scale(0.92) rotate(-10deg);
  }
  100% {
    transform: scale(1) rotate(-12deg);
  }
}

@keyframes iconLift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes feeScan {
  0%,
  45% {
    left: -42%;
  }
  75%,
  100% {
    left: 112%;
  }
}

@keyframes paneIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1440px) {
  :root {
    --page-max: 1500px;
  }

  .nav-wrap,
  .wrap {
    padding-left: 56px;
    padding-right: 56px;
  }

  .hero {
    padding-top: 126px;
  }

  .hero-grid {
    gap: clamp(90px, 8vw, 150px);
    grid-template-columns: minmax(560px, 0.95fr) minmax(560px, 1.05fr);
  }

  .hero h1 {
    font-size: clamp(64px, 4.9vw, 88px);
    max-width: 12.5ch;
  }

  .lead {
    font-size: 18.5px;
    max-width: 620px;
  }

  .hero-stats {
    gap: 56px;
  }

  .ticket-stage {
    justify-content: flex-end;
    min-height: 590px;
  }

  .ticket-stage::before {
    height: 520px;
    width: 520px;
  }

  .stage-image {
    max-width: 560px;
    right: 22px;
    width: 92%;
  }

  .ticket-card {
    max-width: 460px;
    padding: 34px;
  }

  .trust-row {
    justify-content: space-between;
  }

  .section-head {
    max-width: 760px;
  }

  .section-head h2,
  .footer-cta-section h2 {
    font-size: clamp(42px, 3.1vw, 58px);
  }

  .tl-item {
    padding-left: 30px;
    padding-right: 30px;
  }

  .feat {
    min-height: 220px;
    padding: 38px 34px;
  }

  .fee-panel {
    gap: 90px;
    grid-template-columns: 0.85fr 1.15fr;
    padding: 70px;
  }

  .terminal {
    max-width: 1320px;
  }

  .footer-grid > div:first-child {
    max-width: 760px;
  }
}

@media (max-width: 1060px) {
  .timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 26px;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .fee-panel {
    grid-template-columns: 1fr;
  }

  .stage-image {
    max-width: 100%;
  }

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

@media (max-width: 760px) {
  .nav-links {
    display: none;
  }

  .nav-wrap,
  .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .timeline,
  .feat-grid {
    grid-template-columns: 1fr;
  }

  .tl-item,
  .tl-item:first-child {
    border-left: 1px solid var(--border);
  }

  .fee-panel {
    padding: 34px 24px;
  }

  .cmd-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-top: 74px;
  }

  .nav-cta {
    padding: 9px 12px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .ticket-card {
    padding: 22px;
  }

  .ticket-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .term-tabs {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
