:root {
  --bg: #e9e9e7;
  --card-bg: #e0e0de;
  --text-dark: #666666;
  --text-body: #4a4a4a;
  --accent: #e93cf0;
  --accent-hover: #d425db;
  --gutter: 24px;
}

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

body {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 72px var(--gutter) 96px;
}

/* Hero */

.hero {
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.hero .tagline {
  margin: 28px auto 0;
  max-width: 40em;
  font-size: clamp(1.125rem, 3vw, 1.625rem);
  font-weight: 500;
  line-height: 1.4;
  color: #8a8a8a;
}

.divider {
  border: none;
  border-top: 1px solid #c4c4c2;
  margin: 56px 0;
}

/* Cards */

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.card {
  background: var(--card-bg);
  border-radius: 8px;
  padding: 48px 40px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
}

.card-logo {
  min-height: 72px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-logo svg {
  max-width: 100%;
  height: auto;
}

.card p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 28em;
  flex-grow: 1;
}

/* Typographic logo treatments */

.logo {
  color: var(--text-dark);
  line-height: 1;
}

.logo-masters {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.logo-mint {
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.logo-mint strong {
  font-weight: 800;
}

.logo-threads {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.logo-me {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  border-bottom: 5px solid var(--text-dark);
  padding-bottom: 2px;
}

/* Button */

.button {
  display: block;
  width: 100%;
  max-width: 300px;
  margin-top: 32px;
  padding: 14px 32px;
  background: var(--accent);
  color: #ffffff;
  font-family: inherit;
  font-size: 1.0625rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--accent-hover);
}

/* Responsive */

@media (max-width: 720px) {
  .container {
    padding-top: 48px;
    padding-bottom: 64px;
  }

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

  .divider {
    margin: 40px 0;
  }

  .card {
    padding: 36px 24px 32px;
  }
}
