/* Sweyra public site (sweyra.app). Aurora-themed minimal CSS. */
:root {
  --bg: #0F0C1A;
  --surface: #1A1628;
  --stroke: #2A2540;
  --text: #F4F1FA;
  --muted: #A097C1;
  --subtle: #6B6388;
  --accent-world: #8C5BFF;
  --accent-flirt: #FF5B8C;
  --gradient: linear-gradient(135deg, #8C5BFF 0%, #FF5B8C 100%);
  --max-w: 720px;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 24px 96px;
}

nav.topbar {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}

nav.topbar .brand {
  font-weight: 600;
  font-size: 18px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

nav.topbar a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 20px;
  font-size: 13px;
}

nav.topbar a:hover {
  color: var(--text);
}

footer {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 32px 24px;
  font-size: 12px;
  color: var(--subtle);
  text-align: center;
  border-top: 1px solid var(--stroke);
}

footer a {
  color: var(--muted);
  text-decoration: none;
  margin: 0 8px;
}

h1 {
  font-size: 44px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

h2 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 36px;
  margin-bottom: 12px;
}

h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
}

p {
  color: var(--muted);
  margin-bottom: 16px;
}

a {
  color: var(--accent-world);
}

a:hover {
  color: var(--accent-flirt);
}

ul {
  margin-left: 20px;
  margin-bottom: 16px;
  color: var(--muted);
}

li {
  margin-bottom: 6px;
}

.hero {
  margin-bottom: 56px;
}

.hero h1 {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .tagline {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 32px;
}

.cta {
  display: inline-block;
  padding: 14px 28px;
  background: var(--gradient);
  color: white;
  border-radius: 32px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
}

.cta:hover {
  color: white;
  opacity: 0.9;
}

.ghost-cta {
  display: inline-block;
  padding: 14px 28px;
  border: 1.5px solid var(--stroke);
  border-radius: 32px;
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  margin-left: 12px;
}

.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 48px 0;
}

@media (min-width: 600px) {
  .pillars {
    grid-template-columns: 1fr 1fr;
  }
}

.pillar {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 16px;
}

.pillar h3 {
  margin-top: 0;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.legal {
  font-size: 15px;
}

.legal h1 {
  font-size: 28px;
  color: var(--text);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}

.legal h2 {
  font-size: 18px;
}

.version-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  font-size: 12px;
  color: var(--subtle);
  margin-bottom: 32px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}

.contact-card {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 12px;
}

.contact-card .label {
  font-size: 12px;
  color: var(--subtle);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-card .email {
  font-size: 16px;
  font-weight: 600;
}
