*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  background: #17171d;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  display: flex;
  flex-direction: column;
}



.nav {
  max-width: 1024px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  animation: fadeDown .5s ease both;
  width: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.009em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  color: #8492a6;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 99999px;
  transition: color .15s, background .15s;
  letter-spacing: 0.009em;
}

.nav-links a:hover {
  color: #ffffff;
  background: #252429;
}

.nav-cta {
  background: #ec3750 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 8px rgba(0,0,0,.125);
  transition: transform .125s ease-in-out, box-shadow .125s ease-in-out !important;
}

.nav-cta:hover {
  box-shadow: 0 1px 2px rgba(0,0,0,.0625), 0 8px 12px rgba(0,0,0,.125) !important;
  transform: scale(1.0625);
}

.hero {
  padding: 64px 16px 48px;
  max-width: 1024px;
  margin: 0 auto;
  animation: fadeUp .6s .1s ease both;
  text-align: center;
}

.eyebrow {
  color: #8492a6;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.009em;
  line-height: 1.25;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-title {
  font-weight: 700;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1;
  letter-spacing: -0.009em;
  margin-bottom: 16px;
}

.c-red { color: #ec3750; }

.hero-lead {
  font-size: 20px;
  line-height: 1.5;
  color: #8492a6;
  max-width: 580px;
  margin-bottom: 32px;
  margin-left: auto;
  margin-right: auto;
}

.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.btn {
  cursor: pointer;
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  border-radius: 99999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,.125);
  letter-spacing: 0.009em;
  transition: transform .125s ease-in-out, box-shadow .125s ease-in-out;
  text-decoration: none;
  border: none;
  font-size: 20px;
  padding: 16px 32px;
  line-height: 1;
}

.btn:hover, .btn:focus {
  box-shadow: 0 1px 2px rgba(0,0,0,.0625), 0 8px 12px rgba(0,0,0,.125);
  transform: scale(1.0625);
}

.btn-primary {
  background: #ec3750;
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: #ec3750;
  border: 2px solid currentColor;
}

.section-row {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  animation: fadeUp .6s .25s ease both;
  width: 100%; 
  margin-bottom: 20px;
}

.section-row h2 {
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.009em;
  line-height: 1.125;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 99999px;
  padding: 4px 14px;
  letter-spacing: 0.009em;
}

.badge-live {
  background: rgba(51,214,166,.12);
  color: #33d6a6;
}

.badge-soon {
  background: #252429;
  color: #8492a6;
}

.cards {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.card {
  background: #252429;
  color: #ffffff;
  max-width: 480px;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,.125);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-decoration: none;
  animation: fadeUp .6s ease both;
}
.card:last-child {
  grid-column: 1 / -1;
  max-width: calc(60% - 8px);
  margin: 0 auto;
}

.card:nth-child(1) { animation-delay: .3s; }
.card:nth-child(2) { animation-delay: .4s; }
.card:nth-child(3) { animation-delay: .5s; }
.card:nth-child(4) { animation-delay: .6s; }
.card:nth-child(5) { animation-delay: .7s; }

.card-link {
  transition: transform .125s ease-in-out, box-shadow .125s ease-in-out;
  cursor: pointer;
}

.card-link:hover, .card-link:focus {
  transform: scale(1.0625);
  box-shadow: 0 1px 2px rgba(0,0,0,.0625), 0 8px 12px rgba(0,0,0,.125);
  outline: none;
}

.card-locked {
  opacity: .45;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 12px 12px 0 0;
  background: transparent;
}

.card-franken::before {
  background: #ff8c37;
}

.card-fix::before {
  background: #f1c40f;
}

.card-emoji {
  font-size: 40px;
  line-height: 1;
}

.ascii-logo {
  font-family: "SF Mono", "Roboto Mono", Menlo, Consolas, monospace;
  font-size: 5px;
  font-weight: 900;
  line-height: 1.2;
  color: #ff8c37;
  white-space: pre;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: block;
  overflow: hidden;
}

.card-title {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.009em;
  line-height: 1.125;
}

.card-fix .card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 40px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #f1c40f;
}

.fix-filled { color: #f1c40f; }
.fix-outline {
  -webkit-text-stroke: 2px #f1c40f;
  color: transparent;
}

.card-locked .card-title {
  color: #8492a6;
}

.card-desc {
  font-size: 16px;
  line-height: 1.5;
  color: #8492a6;
  flex: 1;
}

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 4px;
}

.arrow {
  font-size: 20px;
  font-weight: 700;
}

.arrow-orange { color: #ff8c37; }
.arrow-green  { color: #33d6a6; }






footer {
  background: #121217;
  margin-top: auto;
  padding: 32px 16px;
  
}

.foot-inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: #8492a6;
}

.foot-inner a {
  color: #ec3750;
  text-decoration: underline;
  text-underline-position: under;
}

.foot-inner a:hover {
  text-decoration-style: wavy;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@media (max-width: 512px) {
  .hero-title { font-size: 48px; }
  .nav-links { display: none; }
  .btn { font-size: 16px; padding: 12px 20px; }
}
