/* Website-Service landing page — editorial dark, shares palette with preise.css */

:root {
  --ink: #0d0d0d;
  --cream: #f5ecd7;
  --cream-dim: #b8a88a;
  --gold: #c9a84c;
  --gold-dim: #8a6f30;
  --border: #2a2520;
}

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

body {
  background: var(--ink);
  background-image:
    radial-gradient(ellipse 85% 50% at 50% -10%, rgba(201, 168, 76, 0.08), transparent 55%),
    radial-gradient(ellipse 50% 35% at 0% 100%, rgba(201, 168, 76, 0.04), transparent 45%);
  color: var(--cream-dim);
  font-family: "DM Mono", monospace;
  font-weight: 300;
  font-size: 0.9375rem;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.ws-wrap {
  max-width: 52rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 0;
  animation: ws-in 0.55s ease both;
}

@keyframes ws-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.ws-eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.75rem;
}

.ws-hero {
  margin-bottom: 3rem;
}

.ws-hero__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 4.2vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  color: #faf6ee;
  line-height: 1.32;
  margin-bottom: 1.1rem;
  max-width: 42ch;
}

.ws-hero__lead {
  max-width: 46ch;
  font-size: 0.875rem;
  color: var(--cream-dim);
}

.ws-hero__lead strong {
  color: var(--cream);
  font-weight: 400;
}

.ws-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.ws-pain {
  padding: 1.35rem 1rem 1.1rem;
  border: 1px solid var(--border);
  background: rgba(18, 16, 14, 0.55);
}

.ws-pain__pain {
  font-size: 0.8125rem;
  color: var(--cream);
  margin-bottom: 0.65rem;
  line-height: 1.5;
}

.ws-pain__answer {
  font-size: 0.75rem;
  color: var(--cream-dim);
  line-height: 1.55;
}

@media (max-width: 720px) {
  .ws-pain-grid {
    grid-template-columns: 1fr;
  }
}

.ws-features {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.ws-feature__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.85rem;
}

.ws-feature__intro {
  font-size: 0.8125rem;
  color: var(--cream-dim);
  margin-bottom: 0.85rem;
  max-width: 60ch;
}

.ws-feature__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.ws-feature__bullets li {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--cream-dim);
  padding-left: 1.1rem;
  position: relative;
}

.ws-feature__bullets li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold-dim);
}

.ws-feature__bullets strong {
  color: var(--cream);
  font-weight: 400;
}

.ws-feature__bullets code {
  font-family: "DM Mono", monospace;
  background: rgba(201, 168, 76, 0.08);
  padding: 0.1rem 0.3rem;
  color: var(--gold);
  font-size: 0.9em;
}

.ws-feature__quote {
  font-style: italic;
  font-size: 0.8125rem;
  color: var(--gold-dim);
  border-left: 2px solid var(--border);
  padding-left: 1rem;
}

.ws-refs {
  margin-bottom: 3rem;
}

.ws-refs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.ws-ref-card {
  padding: 1.35rem 1.1rem;
  border: 1px solid var(--border);
  background: rgba(18, 16, 14, 0.55);
}

.ws-ref-card__link {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  color: var(--gold);
  text-decoration: none;
  margin-bottom: 0.15rem;
}

.ws-ref-card__link:hover { color: var(--cream); }

.ws-ref-card__genre {
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.85rem;
}

.ws-ref-card__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ws-ref-card__bullets li {
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--cream-dim);
  padding-left: 1rem;
  position: relative;
}

.ws-ref-card__bullets li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold-dim);
}

@media (max-width: 720px) {
  .ws-refs__grid {
    grid-template-columns: 1fr;
  }
}

.ws-steps {
  margin-bottom: 2.5rem;
}

.ws-steps__list {
  list-style: decimal;
  padding-left: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 1rem 0 1.5rem;
}

.ws-steps__list li {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--cream-dim);
}

.ws-steps__list strong {
  color: var(--cream);
  font-weight: 400;
}

.ws-steps__list a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px dotted rgba(201, 168, 76, 0.35);
}

.ws-steps__list a:hover { color: var(--cream); }

.ws-steps__closing {
  font-style: italic;
  font-size: 0.875rem;
  color: var(--cream);
  border-left: 2px solid var(--gold-dim);
  padding-left: 1rem;
  max-width: 56ch;
}

.ws-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  padding: 1.75rem 0;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ws-cta__primary {
  padding: 0.75rem 1.5rem;
  background: var(--gold);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  font-weight: 400;
  transition: background 0.18s ease;
}

.ws-cta__primary:hover { background: #ddb85e; }

.ws-cta__secondary {
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--border);
  color: var(--cream-dim);
  text-decoration: none;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  transition: border-color 0.18s ease, color 0.18s ease;
}

.ws-cta__secondary:hover {
  border-color: var(--gold-dim);
  color: var(--cream);
}

.ws-b2b-note {
  font-size: 0.75rem;
  line-height: 1.55;
  color: #6a6258;
  max-width: 60ch;
  padding-bottom: 3rem;
}
