/* Aida — warm "paper, not screen" (docs/brand.md). Duplicated per site by design;
   the monorepo rule forbids shared code between apps. */
:root {
  --paper: #f7f2e9;
  --surface: #fffdf8;
  --ink: #3d332b;
  --ink-soft: #6b5d51;
  --thread: #b5543b;
  --thread-deep: #9c4631;
  --sage: #6f7d62;
  --blush: #e8d5cc;
  --serif: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
}
h1, h2, h3 { font-family: var(--serif); line-height: 1.2; color: var(--ink); text-wrap: balance; }
a { color: var(--thread-deep); }
img { max-width: 100%; height: auto; }
:is(a, button, summary, input):focus-visible {
  outline: 2px solid var(--thread-deep); outline-offset: 2px;
}

.nav {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem 1rem;
  max-width: 64rem; margin: 0 auto; padding: 1rem 1.25rem;
}
.brand {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--serif); font-size: 1.35rem; font-weight: 700;
  color: var(--ink); text-decoration: none;
}
.brand img { border-radius: 7px; }
.nav nav { display: flex; flex-wrap: wrap; gap: 0.4rem 1.25rem; justify-content: flex-end; }
.nav nav a { text-decoration: none; color: var(--ink-soft); }
.nav nav a:hover { color: var(--thread-deep); text-decoration: underline; }

main { max-width: 64rem; margin: 0 auto; padding: 0 1.25rem; }

.hero { text-align: center; padding: 3.5rem 0 2rem; }
.hero h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); margin: 0 auto 1rem; max-width: 46rem; }
.hero .sub { max-width: 38rem; margin: 0 auto 1.75rem; color: var(--ink-soft); font-size: 1.15rem; }
.cta-row { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block; padding: 0.8rem 1.4rem; border-radius: 12px;
  border: 1.5px solid var(--thread); color: var(--thread-deep);
  text-decoration: none; font-weight: 600; background: var(--surface);
}
.btn.primary { background: var(--thread); border-color: var(--thread); color: #fff; }
.btn.primary:hover { background: var(--thread-deep); }
.btn:hover { border-color: var(--thread-deep); }

.devices {
  display: flex; gap: 1.5rem; justify-content: center; align-items: flex-end;
  flex-wrap: wrap; padding: 2rem 0 0.5rem;
}
.device { margin: 0; border-radius: 26px; background: #2b2b2b; padding: 10px; box-shadow: 0 18px 40px rgba(61, 51, 43, 0.25); }
.device img { display: block; border-radius: 18px; }
.device.phone img { width: clamp(180px, 28vw, 270px); height: auto; }
.device.tablet img { width: clamp(260px, 40vw, 420px); height: auto; }
.devices .caption {
  flex-basis: 100%; text-align: center; color: var(--ink-soft);
  font-style: italic; margin-top: 1.25rem;
}

.benefits {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.25rem; padding: 3rem 0;
}
.benefit {
  background: var(--surface); border-radius: 16px; padding: 1.5rem;
  border: 1px solid var(--blush);
}
.benefit h2 { font-size: 1.25rem; margin-top: 0; }

.compare { padding: 1.5rem 0 2.5rem; }
.compare h2, .proof h2, .faq h2 { font-size: 1.75rem; }
.compare-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); gap: 1.25rem;
}
.compare-card { border-radius: 16px; padding: 1.4rem; background: var(--surface); border: 1px solid var(--blush); }
.compare-card.us { border: 2px solid var(--thread); background: #fdf6ef; }
.compare-card h3 { margin-top: 0; font-size: 1.1rem; }
.compare-card.them h3 { color: var(--ink-soft); }

.proof { padding: 0 0 2rem; max-width: 44rem; }

.faq { padding: 0 0 3rem; max-width: 44rem; }
.faq details {
  background: var(--surface); border: 1px solid var(--blush);
  border-radius: 12px; padding: 0.9rem 1.2rem; margin-bottom: 0.75rem;
}
.faq summary { cursor: pointer; font-weight: 600; font-family: var(--serif); font-size: 1.05rem; }
.faq details[open] summary { color: var(--thread-deep); }

.prose { max-width: 44rem; padding: 2.5rem 0 3rem; }
.prose h1 { font-size: 2.1rem; }
.prose.center { text-align: center; }
.fine { color: var(--ink-soft); font-size: 0.9rem; }

footer {
  border-top: 1px solid var(--blush); margin-top: 2rem;
  padding: 2rem 1.25rem 3rem; text-align: center; color: var(--ink-soft);
}
footer .fine { font-size: 0.85rem; }
footer .oomny-link img { vertical-align: -3px; margin-right: 1px; }

@media (prefers-reduced-motion: no-preference) {
  .btn { transition: background 0.15s ease, border-color 0.15s ease; }
}
