/* Lavielo temporary static site */
/* No external fonts, no tracking, no JavaScript */

:root {
  --bg: #0f1115;
  --surface: #171a21;
  --surface-soft: #1f2330;
  --text: #f5f7fb;
  --muted: #a8afbd;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #f2bf8d;
  --accent-strong: #ffb46b;
  --max-width: 960px;
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(242, 191, 141, 0.18), transparent 36rem),
    radial-gradient(circle at bottom right, rgba(255, 180, 107, 0.08), transparent 34rem),
    var(--bg);
  line-height: 1.65;
}

a {
  color: inherit;
}

.page {
  width: min(100% - 32px, var(--max-width));
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.site-header {
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #15100b;
  font-weight: 900;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 14px 40px rgba(242, 191, 141, 0.18);
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
}

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

.hero {
  flex: 1;
  display: grid;
  align-items: center;
  padding: 56px 0 72px;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.card-inner {
  padding: clamp(28px, 6vw, 64px);
}

.badge {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 13px;
  border: 1px solid rgba(242, 191, 141, 0.36);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(242, 191, 141, 0.08);
  font-size: 0.88rem;
  font-weight: 650;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.4rem, 8vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

h3 {
  margin: 32px 0 8px;
  font-size: 1.08rem;
}

.lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 720;
}

.button-primary {
  color: #15100b;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.button-secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.content {
  padding: 42px 0 72px;
}

.legal-box {
  padding: clamp(24px, 5vw, 48px);
}

.legal-box p,
.legal-box li {
  color: var(--muted);
}

.legal-box strong {
  color: var(--text);
}

.legal-box ul {
  padding-left: 20px;
}

.note {
  margin-top: 30px;
  padding: 18px 20px;
  border: 1px solid rgba(242, 191, 141, 0.24);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(242, 191, 141, 0.06);
}

.site-footer {
  padding: 24px 0 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .card-inner {
    padding: 28px 22px;
  }
}
