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

:root {
  --bg: #0d0b14;
  --surface: #17132a;
  --border: #2d2045;
  --text-primary: #f0eaf8;
  --text-secondary: #9b8faa;
  --text-tertiary: #5c5270;
  --lavender: #b57bee;
  --accent: #b57bee;
  --rose: #e8a4c8;
  --gold: #f0c987;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

::selection {
  background: var(--rose);
  color: var(--bg);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(16px, 4vw, 32px);
}

section {
  margin-bottom: clamp(48px, 8vw, 80px);
}

section:last-of-type {
  margin-bottom: 0;
}

h1 {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 500;
  color: var(--lavender);
  margin-top: 32px;
  margin-bottom: 12px;
  text-transform: lowercase;
  letter-spacing: 0.3px;
}

h2:first-child {
  margin-top: 0;
}

p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

ul {
  list-style: none;
  margin-bottom: 16px;
  padding-left: 0;
}

li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
}

li::before {
  content: "·";
  position: absolute;
  left: 6px;
  color: var(--lavender);
  font-weight: 700;
}

a {
  color: var(--lavender);
  text-decoration: none;
  transition: opacity 0.15s ease;
}

a:hover {
  text-decoration: underline;
}

.hero {
  text-align: center;
  padding-top: clamp(48px, 10vw, 96px);
}

.hero-icon {
  width: 200px;
  height: 200px;
  margin: 0 auto 32px;
  display: block;
  border-radius: 44px;
}

.wordmark {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: italic;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 8px;
  color: var(--text-primary);
  margin-bottom: 12px;
  text-transform: lowercase;
}

.tagline {
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--text-tertiary);
  text-transform: lowercase;
  margin-bottom: 24px;
}

.subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

.coming-soon {
  text-align: center;
}

.coming-soon-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--text-tertiary);
  text-transform: lowercase;
  margin-bottom: 24px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 20px;
  color: var(--text-tertiary);
  font-size: 14px;
  opacity: 0.6;
  cursor: not-allowed;
}

.badge svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

.badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.badge-text small {
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.badge-text strong {
  font-size: 14px;
  font-weight: 500;
}

.pill {
  display: inline-block;
  background-color: var(--lavender);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.pill:hover {
  text-decoration: none;
  opacity: 0.92;
  transform: translateY(-1px);
}

.about p {
  margin-bottom: 20px;
}

.about p:last-child {
  margin-bottom: 0;
}

footer {
  border-top: 1px solid var(--border);
  margin-top: clamp(48px, 8vw, 80px);
  padding-top: 32px;
  padding-bottom: 32px;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
  margin-bottom: 16px;
}

.footer-links a {
  font-size: 14px;
  color: var(--lavender);
}

.footer-sep {
  color: var(--text-tertiary);
  font-size: 14px;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}

.footer-email {
  font-size: 13px;
}

.back-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  margin-bottom: 32px;
}

.back-row img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.back-link {
  font-size: 14px;
  color: var(--lavender);
  letter-spacing: 0.2px;
}

.last-updated {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 8px;
  margin-bottom: 32px;
  font-style: italic;
}

.legal h2 {
  margin-top: 36px;
}

.legal p,
.legal li {
  font-size: 15px;
}

.note {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}
