:root {
  --red: #c1121f;
  --red-dark: #8f0a13;
  --red-soft: #fff5f6;
  --text: #b10f1c;
  --muted: #c63b46;
  --border: #f3c9ce;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(193, 18, 31, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: var(--text);
}

a { color: inherit; }

.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 56px 20px 72px;
}

.hero {
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 22px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

h1 {
  margin: 0;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

h1 span { color: var(--red); }

.lead {
  max-width: 760px;
  margin: 28px auto 0;
  font-size: clamp(1.1rem, 2.3vw, 1.45rem);
  line-height: 1.65;
  color: var(--muted);
}

.card {
  max-width: 640px;
  margin: 38px auto 0;
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.label {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}

.price {
  margin: 14px 0 18px;
  color: var(--red);
  font-size: clamp(3rem, 9vw, 5.2rem);
  font-weight: 900;
  line-height: 1;
}

.price span {
  font-size: 1.2rem;
  font-weight: 700;
  vertical-align: middle;
  margin-left: 8px;
  color: var(--red);
}

.button {
  display: inline-block;
  padding: 16px 28px;
  border-radius: 14px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
  box-shadow: 0 10px 24px rgba(193, 18, 31, 0.18);
}

.button:hover,
.button:focus-visible {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.note {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.ideas {
  margin-top: 56px;
  text-align: center;
}

.ideas h2 {
  margin: 0 0 20px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3rem);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.chips span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--red);
  font-weight: 700;
}

.fineprint {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

@media (max-width: 640px) {
  .container { padding: 32px 14px 56px; }
  .eyebrow { margin-bottom: 18px; padding: 9px 14px; font-size: 0.72rem; }
  h1 {
    font-size: clamp(1.95rem, 8.6vw, 2.6rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
  }
  .domain-name {
    display: inline-block;
    white-space: nowrap;
    max-width: 100%;
  }
  .lead {
    margin-top: 22px;
    font-size: 1.02rem;
    line-height: 1.55;
  }
  .card { margin-top: 30px; padding: 26px 16px; border-radius: 18px; }
  .price { font-size: clamp(2.9rem, 15vw, 4.2rem); }
  .button { width: 100%; padding: 15px 18px; }
  .ideas { margin-top: 42px; }
  .ideas h2 { font-size: 2.15rem; }
  .chips { gap: 10px; }
  .chips span { min-height: 42px; padding: 9px 14px; }
}

@media (max-width: 380px) {
  h1 { font-size: 1.9rem; }
  .container { padding-left: 10px; padding-right: 10px; }
}
