/* Pinkpounder.com - Domain For Sale */
:root {
  --background: #0f172a;
  --foreground: #f8fafc;
  --muted: #94a3b8;
  --primary: #3b82f6;
  --primary-foreground: #ffffff;
  --border: rgba(148, 163, 184, 0.2);
  --font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  min-height: 100vh;
}

.hero {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
}

.hero-content {
  max-width: 42rem;
  width: 100%;
}

.eyebrow {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.subtitle {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 2rem;
}

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

.offer {
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.offer strong {
  font-weight: 600;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  transition: background-color 0.2s ease;
}

.cta:hover {
  background-color: rgba(59, 130, 246, 0.9);
}

.cta svg {
  flex-shrink: 0;
}
