* {
  box-sizing: border-box;
}

html {
  background: #080808;
  color: #f5f5f5;
  font-family:
    Inter,
    Arial,
    sans-serif;
}

body {
  margin: 0;
}

header {
  height: 80px;
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  border-bottom: 1px solid #222;
}

.logo {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 3px;
}

button {
  border: 1px solid #333;
  background: #111;
  color: white;
  padding: 13px 20px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}

button:disabled {
  cursor: default;
  opacity: 0.55;
}

main {
  max-width: 1100px;
  margin: auto;
  padding: 80px 24px;
}

.hero {
  text-align: center;
  padding: 70px 0 100px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 5px;
  color: #888;
}

h1 {
  margin: 10px 0;
  font-size: clamp(80px, 15vw, 180px);
  line-height: 0.9;
  letter-spacing: -8px;
}

.tagline {
  margin: 35px auto;
  font-size: 25px;
  line-height: 1.4;
  color: #aaa;
}

.supply {
  display: inline-block;
  padding: 12px 18px;
  border: 1px solid #292929;
  border-radius: 30px;
  font-family: monospace;
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.card {
  min-height: 330px;
  padding: 32px;
  background: #101010;
  border: 1px solid #252525;
  border-radius: 18px;
}

.card h2 {
  margin-top: 0;
  font-size: 28px;
}

.card p {
  color: #999;
  line-height: 1.6;
}

label {
  display: block;
  margin: 30px 0 8px;
  color: #777;
}

input {
  width: 100%;
  background: #090909;
  border: 1px solid #292929;
  border-radius: 10px;

  padding: 18px;

  color: white;
  font-size: 22px;
}

.quote {
  margin: 20px 0;
  display: flex;
  justify-content: space-between;
  color: #777;
}

.quote strong {
  color: white;
}

.primary {
  width: 100%;
  margin-top: 15px;

  background: white;
  color: black;

  border: none;
  font-size: 16px;
}

.stat {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid #222;
}

.stat span {
  color: #777;
}

.how {
  padding: 120px 0 50px;
}

.how > h2 {
  text-align: center;
  font-size: 40px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.steps div {
  padding: 30px;
  border-top: 1px solid #333;
}

.steps span {
  font-family: monospace;
  color: #666;
}

.steps p {
  color: #888;
  line-height: 1.6;
}

footer {
  max-width: 1100px;
  margin: auto;
  padding: 40px 24px;

  display: flex;
  justify-content: space-between;

  border-top: 1px solid #222;

  color: #666;
  font-size: 13px;
}

@media (max-width: 700px) {
  header {
    height: 70px;
  }

  main {
    padding-top: 30px;
  }

  h1 {
    letter-spacing: -4px;
  }

  .hero {
    padding: 60px 0;
  }

  .cards,
  .steps {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    gap: 10px;
  }
}



#status {
  min-height: 50px;
  padding: 20px 5px;
  text-align: center;
  color: #999;
}

.card button {
  margin-top: 10px;
  width: 100%;
}

.linkButton {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 13px 20px;

  border: 1px solid #333;
  border-radius: 10px;

  text-align: center;
  text-decoration: none;

  color: white;
  background: #111;

  font-weight: 700;
}

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

.dames-painting-section {
  width: 100%;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.dames-painting {
  width: 100%;
  max-width: 1100px;
}

.dames-painting img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

@media (max-width: 700px) {
  .dames-painting-section {
    padding: 20px 10px 50px;
  }

  .dames-painting {
    max-width: 100%;
  }
}

footer a {
  font-weight: 700;
  color: inherit;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

footer a:hover {
  animation: footerPulse 0.8s ease-in-out infinite;
}

@keyframes footerPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.06);
    opacity: 0.75;
  }
}