/*
====================================
Make Me — content & legal pages stylesheet
====================================
Calm, light-only, flat, monochrome — the same vibe as the homepage
(index.html) and the invite email. No dark mode, no accent colour, no
shadows; one shared canvas so every page reads as the same site. Inter only.
Class names are preserved from the previous (edgy) stylesheet so the page
markup did not need to change, apart from swapping the boxed logo for the
boxless ink glyph and dropping the mono webfont.
*/

:root {
  color-scheme: light;
  --bg: #f3f3f2;
  --surface: #ffffff;
  --card: #ecedeb;
  --ink: #18181b;       /* headings, emphasis */
  --read: #3a3b40;      /* body / long-read copy */
  --muted: #5f6166;     /* labels, captions, secondary */
  --faint: #9b9ca1;     /* fine print */
  --hair: #e4e4e2;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 0.85, 0.22, 1);

  /* Back-compat aliases so any inline var() references resolve calmly. */
  --mono: var(--sans);
  --accent: var(--ink);
  --sand: var(--ink);
  --slate: var(--muted);
}

* { box-sizing: border-box; }
/* The hidden attribute must win over class rules like .hero{display:grid}
   (equal specificity, source order would otherwise let display:grid through).
   Fixes landing-full.html showing both A/B hero variants at once. */
[hidden] { display: none !important; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* layout */
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 32px; }

/*
====================================
Nav — boxless ink glyph + tracked wordmark (matches the homepage)
====================================
*/
nav.top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 28px 32px; max-width: 1100px; margin: 0 auto;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 24px; height: 24px; display: block; }
.brand-word {
  font-family: var(--sans); font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink);
}
.nav-links { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.nav-links a {
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  letter-spacing: -0.01em; color: var(--muted);
  transition: color .2s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a[aria-current="page"] { color: var(--ink); }

/*
====================================
Marketing hero (landing-full)
====================================
*/
.hero {
  padding: 72px 32px 56px;
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 72px; align-items: center;
}
.eyebrow {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 24px;
}
h1 {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 0.95; letter-spacing: -0.04em;
  margin: 0 0 24px; color: var(--ink);
  text-wrap: balance;
}
h1 .accent { color: var(--ink); }
.lede {
  font-size: 18px; line-height: 1.6; color: var(--read);
  max-width: 460px; margin: 0 0 36px;
  font-weight: 400;
}
.cta-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

/* flat CTA — matches the homepage button */
.appstore {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ink); color: #fff;
  padding: 15px 26px; border-radius: 13px;
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  letter-spacing: -0.01em;
  transition: opacity .2s ease;
}
.appstore:hover { opacity: .88; }
.appstore svg { display: block; }
.appstore .small {
  font-family: var(--sans); font-size: 10px; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(255,255,255,.6);
  display: block; line-height: 1; margin-bottom: 3px;
}
.appstore .big { font-size: 15px; font-weight: 600; line-height: 1; }
.cta-aside {
  font-family: var(--sans); font-size: 13px; letter-spacing: -0.01em;
  color: var(--faint);
}

/* hero visual — progress ring (monochrome) */
.hero-visual {
  position: relative; width: 100%; max-width: 360px; aspect-ratio: 1 / 1; margin-left: auto;
}
.ring-wrap { position: relative; width: 100%; height: 100%; }
.ring-wrap svg.ring { position: absolute; inset: 0; width: 100%; height: 100%; }
svg.ring .ring-track { stroke: var(--hair); }
svg.ring .ring-fill  { stroke: var(--ink); }
.ring-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.ring-eyebrow {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 10px;
}
.ring-num {
  font-size: 120px; font-weight: 700; letter-spacing: -5px; line-height: 0.85;
  color: var(--ink); font-variant-numeric: tabular-nums;
}
.ring-sub { font-size: 14px; color: var(--muted); margin-top: 10px; }

/* divider */
.divider {
  border-top: 1px solid var(--hair);
  max-width: 1100px; margin: 0 auto;
}

/*
====================================
WHAT section — three tenets
====================================
*/
section.what { padding: 88px 32px; max-width: 1100px; margin: 0 auto; }
.section-head {
  display: grid; grid-template-columns: 220px 1fr; gap: 72px; margin-bottom: 48px;
  align-items: baseline;
}
.section-eyebrow {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}
.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.25rem); font-weight: 600; letter-spacing: -0.025em; line-height: 1.15;
  margin: 0; color: var(--ink); max-width: 640px;
  text-wrap: balance;
}
.tenets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.tenet { padding: 32px 28px 32px 0; border-top: 1px solid var(--hair); }
.tenet:not(:last-child) { border-right: 1px solid var(--hair); padding-right: 32px; }
.tenet:not(:first-child) { padding-left: 32px; }
.tenet-num {
  font-family: var(--sans); font-size: 12px; font-weight: 600; color: var(--faint);
  letter-spacing: 0.06em; margin-bottom: 18px;
}
.tenet-title {
  font-size: 18px; font-weight: 600; letter-spacing: -0.01em;
  margin: 0 0 10px; color: var(--ink);
}
.tenet-body { font-size: 14.5px; line-height: 1.6; color: var(--read); margin: 0; }

/*
====================================
HOW IT FEELS — quiet line of stats
====================================
*/
section.feel {
  padding: 72px 32px; max-width: 1100px; margin: 0 auto;
  border-top: 1px solid var(--hair);
}
.feel-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.feel-cell .label {
  font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 14px;
}
.feel-cell .num {
  font-size: 52px; font-weight: 700; letter-spacing: -2px; line-height: 1;
  color: var(--ink); font-variant-numeric: tabular-nums;
}
.feel-cell .num .unit {
  font-family: var(--sans); font-size: 13px; letter-spacing: 0.02em;
  color: var(--muted); margin-left: 6px; vertical-align: 4px;
  font-weight: 500;
}
.feel-cell .cap { font-size: 13px; color: var(--read); margin-top: 10px; line-height: 1.5; }

/*
====================================
FAQ accordion
====================================
*/
section.faq {
  padding: 88px 32px; max-width: 1100px; margin: 0 auto;
  border-top: 1px solid var(--hair);
}
.qa-list { border-top: 1px solid var(--hair); }
details.qa { border-bottom: 1px solid var(--hair); }
details.qa summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 24px 0;
  font-size: 17px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink);
}
details.qa summary::-webkit-details-marker { display: none; }
details.qa .plus {
  width: 14px; height: 14px; position: relative; flex: 0 0 14px;
  transition: transform .25s var(--ease);
}
details.qa .plus::before, details.qa .plus::after {
  content:''; position: absolute; background: var(--muted);
}
details.qa .plus::before { left: 0; right: 0; top: 6px; height: 1.5px; }
details.qa .plus::after { top: 0; bottom: 0; left: 6px; width: 1.5px;
  transition: transform .25s var(--ease); transform-origin: center; }
details.qa[open] .plus::after { transform: scaleY(0); }
details.qa .answer {
  padding: 0 0 26px; font-size: 15px; line-height: 1.65; color: var(--read);
  max-width: 720px;
}
details.qa .answer a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--hair);
  text-underline-offset: 3px;
}

/*
====================================
CTA bottom
====================================
*/
section.cta {
  padding: 104px 32px; max-width: 1100px; margin: 0 auto;
  border-top: 1px solid var(--hair);
  text-align: center;
}
.cta h2 {
  font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1;
  margin: 0 0 16px; color: var(--ink);
}
.cta h2 .accent { color: var(--ink); }
.cta p {
  font-size: 16px; color: var(--read); margin: 0 auto 36px;
  max-width: 460px; line-height: 1.6;
}
.cta .cta-row { justify-content: center; }

/*
====================================
Footer
====================================
*/
footer {
  border-top: 1px solid var(--hair);
  padding: 32px;
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
footer .copyr {
  font-family: var(--sans); font-size: 12.5px; letter-spacing: -0.01em;
  color: var(--faint);
}
footer .links { display: flex; gap: 22px; flex-wrap: wrap; }
footer .links a {
  font-family: var(--sans); font-size: 13px; font-weight: 500; letter-spacing: -0.01em;
  color: var(--muted);
  transition: color .2s var(--ease);
}
footer .links a:hover { color: var(--ink); }

/*
====================================
Legal / text pages
====================================
*/
.legal {
  max-width: 720px; margin: 0 auto; padding: 56px 32px 96px;
}
.legal .back {
  font-family: var(--sans); font-size: 14px; font-weight: 500; letter-spacing: -0.01em;
  color: var(--muted); margin-bottom: 28px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color .2s var(--ease);
}
.legal .back:hover { color: var(--ink); }
.legal h1 {
  font-size: clamp(2rem, 4.6vw, 3rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.08;
  margin: 0 0 12px; color: var(--ink);
}
.legal .updated {
  font-family: var(--sans); font-size: 13px; letter-spacing: -0.01em;
  color: var(--faint); margin-bottom: 44px;
}
.legal h2 {
  font-size: 1.25rem; font-weight: 600; letter-spacing: -0.015em;
  margin: 40px 0 12px; color: var(--ink);
}
.legal h3 {
  font-size: 1rem; font-weight: 600; letter-spacing: -0.005em;
  margin: 24px 0 8px; color: var(--ink);
  text-transform: none;
}
.legal p, .legal li {
  font-size: 16px; line-height: 1.7; color: var(--read);
}
.legal p { margin: 0 0 14px; }
.legal ul { padding-left: 20px; margin: 0 0 14px; }
.legal li { margin-bottom: 6px; }
.legal strong { color: var(--ink); font-weight: 600; }
.legal a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--hair);
  text-underline-offset: 3px;
}
.legal .toc {
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: 14px;
  padding: 20px 24px;
  margin: 32px 0 48px;
}
.legal .toc-label {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 12px;
}
.legal .toc ol {
  padding-left: 20px; margin: 0;
}
.legal .toc li {
  font-size: 13.5px; line-height: 1.9; color: var(--muted);
}
.legal .toc li a { color: var(--muted); text-decoration: none; }
.legal .toc li a:hover { color: var(--ink); }
.legal .callout {
  background: var(--card);
  border-left: 2px solid var(--ink);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 14.5px; line-height: 1.65; color: var(--read);
}

/*
====================================
Trust band
====================================
*/
section.proof {
  padding: 32px; max-width: 1100px; margin: 0 auto;
  border-top: 1px solid var(--hair);
}
.proof-inner {
  display: grid; grid-template-columns: auto 1fr auto; gap: 48px;
  align-items: center;
}
.proof-cell { display: flex; align-items: center; gap: 14px; min-height: 28px; }
.proof-stars { color: var(--ink); letter-spacing: 2px; font-size: 14px; }
.proof-text {
  font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
}
.proof-press { gap: 28px; flex-wrap: wrap; }
.press-logo {
  height: 18px; width: auto; max-width: 120px;
  filter: grayscale(1) opacity(.55);
}
.proof-quote { flex-direction: column; align-items: flex-end; gap: 4px; text-align: right; }
.proof-quote-text {
  margin: 0; font-size: 14px; line-height: 1.4; color: var(--ink);
  font-style: italic; max-width: 320px;
}
.proof-quote-source {
  margin: 0; font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}

/*
====================================
Screenshots
====================================
*/
section.shots {
  padding: 88px 32px; max-width: 1100px; margin: 0 auto;
  border-top: 1px solid var(--hair);
}
.shot-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  align-items: stretch;
}
.shot-frame {
  margin: 0; padding: 12px;
  border: 1px solid var(--hair); border-radius: 38px;
  background: var(--surface);
  aspect-ratio: 9 / 19.5;
  position: relative;
  display: flex;
}
.shot-screen {
  flex: 1;
  border-radius: 28px;
  background: var(--bg);
  border: 1px solid var(--hair);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.shot-label {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
  text-align: center;
}
.shot-image { width: 100%; height: 100%; object-fit: cover; display: block; }

/*
====================================
Reviews
====================================
*/
.reviews { display: grid; gap: 24px; }
figure.review { margin: 0; padding: 20px 0; border-top: 1px solid var(--hair); }
figure.review:first-child { border-top: none; padding-top: 0; }
figure.review blockquote {
  margin: 0 0 12px; font-size: 17px; line-height: 1.55; color: var(--ink);
}
figure.review figcaption {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}

/*
====================================
About team block
====================================
*/
.about-team {
  padding: 24px 0; border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair);
  margin: 32px 0;
}
.about-team .team-name {
  font-size: 17px; font-weight: 600; color: var(--ink); margin: 0 0 4px;
}
.about-team .team-role {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin: 0 0 10px;
}
.about-team .team-bio {
  font-size: 14.5px; line-height: 1.6; color: var(--read); margin: 0;
}

/*
====================================
Changelog
====================================
*/
.changelog { display: grid; gap: 0; }
article.entry { padding: 28px 0; border-top: 1px solid var(--hair); }
article.entry:first-of-type { border-top: none; }
article.entry .entry-date {
  font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
article.entry h3 {
  margin: 0 0 10px; font-size: 18px; font-weight: 600; color: var(--ink);
}
article.entry p { margin: 0 0 12px; font-size: 15px; line-height: 1.65; color: var(--read); }
article.entry ul { margin: 0 0 12px; padding-left: 18px; }
article.entry li { font-size: 15px; line-height: 1.65; color: var(--read); margin-bottom: 4px; }

/*
====================================
Responsive
====================================
*/
@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px 32px; }
  .hero-visual { margin: 0 auto; max-width: 300px; }
  .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
  .tenets { grid-template-columns: 1fr; }
  .tenet { padding: 28px 0 !important; border-right: none !important; }
  .feel-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 24px; }
  .feel-cell .num { font-size: 42px; }
  nav.top { padding: 22px 24px; }
  .nav-links { gap: 16px; }
  .wrap, section.what, section.feel, section.faq, section.cta, section.shots, section.proof { padding-left: 24px; padding-right: 24px; }
  footer { padding: 28px 24px; }

  .proof-inner { grid-template-columns: 1fr; gap: 18px; text-align: left; }
  .proof-quote { align-items: flex-start; text-align: left; }

  .shot-row {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 72%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .shot-frame { scroll-snap-align: start; }
}
@media (max-width: 520px) {
  .nav-links a:nth-child(1) { display: none; }
}
