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

:root {
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  color: #e4e4e7;
  background: #09090b;
}

body {
  min-height: 100vh;

  background:
    radial-gradient(circle at top, rgba(99, 102, 241, 0.08), transparent 35%),
    #09090b;
}

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

.container {
  min-height: 100vh;

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

  padding: 48px 24px;
}

.content {
  width: min(100%, 900px);

  text-align: center;
}

.badge {
  display: inline-flex;

  margin-bottom: 24px;
  padding: 6px 12px;

  border: 1px solid #27272a;
  border-radius: 999px;

  background: #18181b;

  color: #a1a1aa;

  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1 {
  max-width: 700px;

  margin: 0 auto;

  color: #fafafa;

  font-size: clamp(40px, 7vw, 72px);
  line-height: 1;

  letter-spacing: -0.05em;
}

h1 span {
  color: #71717a;
}

.description {
  margin-top: 28px;

  color: #d4d4d8;

  font-size: 20px;
  line-height: 1.6;
}

.secondary-text {
  max-width: 660px;

  margin: 12px auto 0;

  color: #71717a;

  font-size: 15px;
  line-height: 1.7;
}

.options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;

  margin-top: 48px;

  text-align: left;
}

.card {
  position: relative;

  min-height: 290px;

  display: flex;
  flex-direction: column;
  gap: 22px;

  padding: 28px;

  border: 1px solid #27272a;
  border-radius: 18px;

  background: rgba(24, 24, 27, 0.7);

  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);

  border-color: #52525b;

  background: #18181b;
}

.card-icon {
  width: fit-content;

  padding: 8px 10px;

  border: 1px solid #3f3f46;
  border-radius: 8px;

  background: #09090b;

  color: #a1a1aa;

  font-family: monospace;
  font-size: 14px;
}

.card-label {
  display: block;

  margin-bottom: 8px;

  color: #71717a;

  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.card h2 {
  color: #fafafa;

  font-size: 24px;
}

.card p {
  margin-top: 12px;

  color: #a1a1aa;

  line-height: 1.7;
}

.arrow {
  position: absolute;

  right: 24px;
  bottom: 24px;

  color: #71717a;

  font-size: 24px;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.card:hover .arrow {
  transform: translateX(4px);

  color: #fafafa;
}

.tip {
  margin-top: 32px;

  color: #71717a;

  font-size: 14px;
}

@media (max-width: 700px) {
  .options {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: 250px;
  }
}