/* Vamos Fitness AI — the public site.
 *
 * One stylesheet for every page. No framework and no build step: this site exists to clear two
 * App Store blockers and to say what the app is, and a toolchain would be one more thing that
 * can be broken on the day a reviewer looks at it.
 *
 * The clay-court palette matches the app's own theme — the tennis surfaces are the 500-star
 * unlock, and the app's tone is built around them.
 */

:root {
  --clay: #c8642a;
  --clay-dark: #a04d1d;
  --ink: #1c1c1e;
  --muted: #6b6b70;
  --line: #e4e2df;
  --paper: #fbf9f7;
  --card: #ffffff;
  --max: 760px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 22px; }

/* ---------------------------------------------------------------- header */

header {
  border-bottom: 1px solid var(--line);
  background: var(--card);
}

header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand {
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.2px;
}

.brand span { color: var(--clay); }

nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 18px;
  font-size: 15px;
}

nav a:hover, nav a[aria-current="page"] { color: var(--clay); }

@media (max-width: 560px) {
  nav { width: 100%; }
  nav a { margin: 0 16px 0 0; }
}

/* ---------------------------------------------------------------- content */

main { padding: 48px 0 64px; }

h1 {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.6px;
  margin: 0 0 14px;
}

h2 {
  font-size: 22px;
  letter-spacing: -0.3px;
  margin: 40px 0 10px;
}

h3 { font-size: 18px; margin: 28px 0 6px; }

p { margin: 0 0 16px; }

.lead { font-size: 19px; color: var(--muted); margin-bottom: 28px; }

a { color: var(--clay-dark); }

ul { padding-left: 22px; }
li { margin-bottom: 8px; }

.quote {
  border-left: 3px solid var(--clay);
  padding: 2px 0 2px 16px;
  color: var(--muted);
  font-style: italic;
  margin: 28px 0;
}

/* ---------------------------------------------------------------- cards */

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 22px;
  margin: 0 0 16px;
}

.card h3 { margin-top: 0; }
.card p:last-child { margin-bottom: 0; }

.grid { display: grid; gap: 16px; }
@media (min-width: 620px) { .grid.two { grid-template-columns: 1fr 1fr; } }

/* ---------------------------------------------------------------- pricing */

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 8px;
  font-size: 16px;
}

th, td {
  text-align: left;
  padding: 11px 10px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th { font-weight: 600; }
td.yes { color: var(--clay); font-weight: 600; }
td.no { color: var(--muted); }

.price {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 0;
}

.price small { font-size: 15px; font-weight: 400; color: var(--muted); }

/* ---------------------------------------------------------------- notes */

.note {
  background: #fff8f2;
  border: 1px solid #f0dccb;
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 15px;
  margin: 24px 0;
}

.note strong { color: var(--clay-dark); }

/* ---------------------------------------------------------------- footer */

footer {
  border-top: 1px solid var(--line);
  background: var(--card);
  padding: 28px 0 40px;
  font-size: 14px;
  color: var(--muted);
}

footer a { color: var(--muted); margin-right: 16px; }
footer .legal { margin-top: 10px; }
