:root {
  --bg: #ffffff;
  --bg-soft: #f4f7fb;
  --text: #1a2332;
  --text-muted: #5c6b7a;
  --accent: #e84393;
  --accent-dark: #c7347d;
  --line: rgba(26, 35, 50, 0.08);
  --shadow: 0 24px 60px rgba(26, 35, 50, 0.08);
  --radius: 16px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

body {
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(232, 67, 147, 0.08), transparent 35%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 45%);
  min-height: 100vh;
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(960px, calc(100% - 3rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand img {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(232, 67, 147, 0.18);
}

.hero {
  padding: 5rem 0 4rem;
}

.hero-inner {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
  padding: clamp(2rem, 5vw, 4rem);
}

.eyebrow {
  color: var(--accent-dark);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.lead {
  max-width: 42rem;
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(232, 67, 147, 0.08);
  color: var(--accent-dark);
  font-size: 0.95rem;
  font-weight: 600;
}

.contact {
  color: var(--text-muted);
}

.site-footer {
  padding: 2rem 0 3rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .container {
    width: min(960px, calc(100% - 1.5rem));
  }

  .hero {
    padding-top: 3rem;
  }
}
