@font-face {
  font-family: 'Satoshi';
  src: url('resources/satoshi-font/fonts/Satoshi-Regular.woff2') format('woff2'),
       url('resources/satoshi-font/fonts/Satoshi-Regular.woff') format('woff'),
       url('resources/satoshi-font/fonts/Satoshi-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi';
  src: url('resources/satoshi-font/fonts/Satoshi-Bold.woff2') format('woff2'),
       url('resources/satoshi-font/fonts/Satoshi-Bold.woff') format('woff'),
       url('resources/satoshi-font/fonts/Satoshi-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

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

:root {
  --cream: #f5f0eb;
  --warm-white: #faf8f5;
  --text-primary: #1a1714;
  --text-secondary: #6b6560;
  --accent: #d4611a;
  --accent-light: #f0e6d8;
  --border: #e8e0d6;
}

body {
  font-family: 'Satoshi', sans-serif;
  background-color: var(--warm-white);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

main {
  max-width: 640px;
  width: 100%;
  text-align: center;
}

.badge {
  display: inline-block;
  background-color: var(--accent-light);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.domain {
  font-size: clamp(2.75rem, 11vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.tagline {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.perks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  text-align: left;
}

.perk {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background-color: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
}

.perk-icon {
  font-size: 1rem;
  margin-top: 0.05rem;
  flex-shrink: 0;
}

.perk-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.perk-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
}

.perk-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.bundle-note {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  opacity: 0.75;
}

.bundle-note strong {
  font-weight: 700;
  color: var(--text-secondary);
}

.divider {
  width: 40px;
  height: 1px;
  background-color: var(--border);
  margin: 0 auto 1.25rem;
}

.cta {
  display: inline-block;
  background-color: var(--accent);
  color: #fff;
  font-family: 'Satoshi', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  margin-bottom: 2.5rem;
  transition: background-color 0.15s ease;
}

.cta:hover {
  background-color: #be5516;
}

.contact-note {
  font-size: 0.85rem;
  color: var(--text-secondary);
  opacity: 0.75;
}
