/* ────────────────────────────────────────────────────────────────────────
   AURA — site styles
   ──────────────────────────────────────────────────────────────────────── */

:root {
  --bg:     #F7F5F0;
  --ink:    #0A0A0A;
  --muted:  #6B6B6B;
  --tert:   #AAAAAA;
  --border: #E0E0E0;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}

.serif { font-family: "Playfair Display", Georgia, serif; font-style: italic; }

/* ── Page shell ──────────────────────────────────────────────────────── */
.page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 28px 40px 24px;
}

/* ── Nav ─────────────────────────────────────────────────────────────── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.1s forwards;
}
.wordmark {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink);
}
.wordmark img,
.wordmark svg { display: block; }
.wordmark-logo {
  width: 26px; height: 26px;
  border-radius: 7px;
  object-fit: cover;
}
.wordmark-text {
  font-weight: 800; font-size: 18px; letter-spacing: -0.4px;
}
.nav-meta {
  font-size: 10px; font-weight: 600; letter-spacing: 2px;
  color: var(--muted); text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
}
.nav-links a {
  font-size: 11px; font-weight: 600; letter-spacing: 1.6px;
  color: var(--muted); text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }

/* ── Stage (hero + phone) ────────────────────────────────────────────── */
.stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 0 60px;
}

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero {
  max-width: 600px;
}
.eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 10px; font-weight: 600; letter-spacing: 2.4px;
  color: var(--muted); text-transform: uppercase;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.3s forwards;
}
.eyebrow .rule {
  width: 28px; height: 1px; background: var(--ink); opacity: 0.5;
}

h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
  opacity: 0;
  animation: fadeUp 0.9s ease-out 0.45s forwards;
}
h1 .em { font-weight: 500; }

.lede {
  margin: 36px 0 0;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 440px;
  text-wrap: pretty;
  opacity: 0;
  animation: fadeUp 0.9s ease-out 0.65s forwards;
}

.cta-row {
  margin-top: 48px;
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease-out 0.85s forwards;
}
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  height: 52px;
  padding: 0 26px;
  background: var(--ink); color: var(--bg);
  border: none; border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1),
              background 0.3s ease,
              box-shadow 0.3s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -12px rgba(10,10,10,0.35);
}
.btn:active { transform: translateY(0); }
.btn-arrow {
  width: 14px; height: 14px;
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1);
}
.btn:hover .btn-arrow { transform: translate(3px, -3px); }

.cta-meta {
  font-size: 11px; color: var(--muted);
  letter-spacing: 0.2px;
}
.cta-meta .dot {
  display: inline-block; width: 3px; height: 3px;
  background: var(--tert); border-radius: 50%;
  vertical-align: middle; margin: 0 8px;
}

/* ── Phone peek ──────────────────────────────────────────────────────── */
.phone-wrap {
  position: relative;
  width: 320px;
  opacity: 0;
  animation: phoneIn 1.2s cubic-bezier(.2,.8,.2,1) 0.35s forwards;
}
@keyframes phoneIn {
  from { opacity: 0; transform: translate(20px, 12px) rotate(6deg); }
  to   { opacity: 1; transform: translate(0, 0) rotate(3deg); }
}

.phone {
  width: 320px; height: 656px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 44px;
  padding: 10px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 40px 80px -40px rgba(10,10,10,0.18),
    0 16px 32px -16px rgba(10,10,10,0.08);
  position: relative;
}
.phone::before {
  content: "";
  position: absolute;
  top: 18px; left: 50%;
  width: 90px; height: 26px;
  background: var(--ink);
  border-radius: 999px;
  transform: translateX(-50%);
  z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%;
  background: var(--bg);
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  display: flex; flex-direction: column;
  padding: 58px 22px 26px;
}

.p-nav {
  display: flex; align-items: center; justify-content: space-between;
}
.p-wordmark {
  font-weight: 800; font-size: 16px; letter-spacing: -0.3px;
  color: var(--ink);
}
.p-gear {
  width: 18px; height: 18px; color: var(--ink); opacity: 0.7;
}

.p-ring-wrap {
  display: flex; flex-direction: column; align-items: center;
  margin-top: 32px;
}
.p-ring {
  position: relative; width: 168px; height: 168px;
}
.p-ring svg { width: 100%; height: 100%; }
.p-ring-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.p-pct {
  font-weight: 800; font-size: 34px; letter-spacing: -1.2px;
  color: var(--ink); line-height: 1;
}
.p-pct .percent {
  font-size: 14px; font-weight: 400; color: var(--muted);
  letter-spacing: 0; margin-left: 1px;
}
.p-threshold {
  font-size: 8px; font-weight: 600; letter-spacing: 1.8px;
  color: var(--muted); margin-top: 5px;
}

.p-divider {
  width: 24px; height: 1px; background: var(--border);
  margin: 26px auto 14px;
}
.p-category {
  text-align: center;
  font-size: 8px; font-weight: 600; letter-spacing: 2px;
  color: var(--tert); margin-bottom: 10px;
}
.p-quote {
  font-family: "Playfair Display", serif; font-style: italic;
  font-weight: 400; font-size: 18px; line-height: 1.42;
  color: var(--ink); text-align: center;
  padding: 0 6px;
  text-wrap: balance;
}

.p-spacer { flex: 1; }

.p-reactions {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 10px;
}
.p-reactions .icon { width: 16px; height: 16px; color: var(--tert); }
.p-share {
  display: inline-flex; align-items: center; gap: 7px;
  height: 34px; padding: 0 16px;
  border: 1px solid var(--border); border-radius: 999px;
  font-size: 9px; font-weight: 600; letter-spacing: 1px;
  color: var(--ink);
}
.p-share svg { width: 10px; height: 10px; }

/* ── Content pages (privacy / terms / contact) ───────────────────────── */
.content {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 0 80px;
  opacity: 0;
  animation: fadeUp 0.9s ease-out 0.35s forwards;
}
.content .eyebrow { margin-bottom: 28px; }

.content h1 {
  font-size: clamp(40px, 5.6vw, 64px);
  line-height: 1.05;
  margin-bottom: 16px;
}

.content .updated {
  font-size: 11px; font-weight: 600; letter-spacing: 1.6px;
  color: var(--tert); text-transform: uppercase;
  margin-top: 8px;
}

.content .intro {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
  margin: 36px 0 48px;
  text-wrap: pretty;
  max-width: 600px;
}

.content h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--ink);
  margin: 48px 0 14px;
  display: flex; align-items: center; gap: 14px;
}
.content h2::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--ink); opacity: 0.6;
}

.content p,
.content li {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  text-wrap: pretty;
}
.content p { margin: 0 0 18px; }
.content p strong { color: var(--ink); font-weight: 600; }
.content ul {
  margin: 0 0 18px;
  padding-left: 20px;
}
.content li { margin-bottom: 8px; }
.content li::marker { color: var(--tert); }

.content a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s;
}
.content a:hover { border-color: var(--ink); }

.content .divider {
  width: 32px; height: 1px;
  background: var(--border);
  margin: 56px 0;
}

.content .back {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 24px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: none;
}
.content .back svg {
  width: 12px; height: 12px;
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1);
}
.content .back:hover svg { transform: translateX(-3px); }

/* ── Footer ──────────────────────────────────────────────────────────── */
footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px;
  font-size: 10px; font-weight: 500; letter-spacing: 1.4px;
  color: var(--tert); text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 0.8s ease-out 1.1s forwards;
}
footer a {
  color: var(--muted); text-decoration: none;
  margin-left: 24px; transition: color 0.2s;
}
footer a:hover { color: var(--ink); }
.footer-right span + span { margin-left: 24px; }

/* ── Animations ──────────────────────────────────────────────────────── */
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes breathe {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.78; }
}
.ring-progress { animation: breathe 4.5s ease-in-out infinite; }
.ring-dot      { animation: breathe 4.5s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  nav, .eyebrow, h1, .lede, .cta-row, .phone-wrap, footer, .content { opacity: 1; }
  .phone-wrap { transform: rotate(3deg); }
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .page { padding: 24px 28px 20px; }
  .stage {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 48px 0 32px;
    text-align: center;
    justify-items: center;
  }
  .hero { max-width: 540px; }
  .eyebrow { justify-content: center; }
  .lede { margin-left: auto; margin-right: auto; }
  .cta-row { justify-content: center; }
  .phone-wrap { transform: rotate(0) !important; }
  @keyframes phoneIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .nav-links { gap: 18px; }
  .content { padding: 48px 0 56px; }
}
@media (max-width: 560px) {
  .page { padding: 20px 22px 18px; }
  .phone { transform: scale(0.88); transform-origin: top center; }
  .phone-wrap { height: 600px; }
  footer { flex-direction: column; gap: 10px; text-align: center; }
  .footer-right span + span { margin-left: 18px; }
  .nav-meta { display: none; }
  .content h2 { font-size: 10px; }
  .content .intro { font-size: 19px; }
}
