/* Shared styles for Vera marketing pages (home, about, contact) */
:root {
  --bg: #0a0e1a;
  --bg-2: #0e1428;
  --ink: #eef1f8;
  --muted: #8a92ab;
  --accent: #5b8cff;
  --line: rgba(255, 255, 255, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(1100px 700px at 50% -10%, rgba(91, 140, 255, 0.16), transparent 60%),
    radial-gradient(900px 600px at 80% 30%, rgba(91, 140, 255, 0.06), transparent 55%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 55%);
  background-attachment: fixed;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem clamp(1.2rem, 5vw, 3rem);
  backdrop-filter: blur(10px);
  background: rgba(10, 14, 26, 0.55);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.brand .dot { color: var(--accent); }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 3vw, 1.8rem);
}
.nav a.link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s ease;
}
.nav a.link:hover,
.nav a.link[aria-current="page"] { color: var(--ink); }

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-wa:hover { background: #4a7bf0; transform: translateY(-1px); }
.btn-wa svg { width: 16px; height: 16px; fill: currentColor; }

/* ---------- Layout ---------- */
main { flex: 1; }

section {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 5vw, 2rem);
  text-align: center;
}

.hero {
  min-height: calc(100vh - 140px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: rise 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.headline {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.headline .em { color: var(--accent); font-style: italic; }

.page {
  padding: clamp(3rem, 8vw, 5.5rem) clamp(1.2rem, 5vw, 2rem);
  animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}

h1.page-title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 2.9rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0.8rem 0 1.4rem;
}

.body-text {
  color: #c8cee0;
  font-size: 1.06rem;
  max-width: 640px;
  margin: 0 auto;
}
.body-text + .body-text { margin-top: 1.1rem; }

.contact-sub {
  color: var(--muted);
  margin: 0 auto 2rem;
  max-width: 520px;
}

.btn-wa-lg { font-size: 1rem; padding: 0.85rem 1.6rem; }
.btn-wa-lg svg { width: 19px; height: 19px; }

.contact-cta { display: flex; justify-content: center; }

.contact-alt {
  margin-top: 2.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.contact-alt a { color: var(--accent); text-decoration: none; }
.contact-alt a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
footer {
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
  padding: 2.4rem 1.2rem 2.6rem;
  border-top: 1px solid var(--line);
}
footer .sep { margin: 0 0.55rem; opacity: 0.5; }
footer a { color: var(--muted); text-decoration: none; transition: color 0.2s ease; }
footer a:hover { color: var(--ink); }

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero, .page { animation: none; }
}
