/* DoneYet marketing and policy pages (light theme) */
:root {
  --text: #0e0e0e;
  --background: #f4efe6;
  --surface: #fbf7ee;
  --elevated: #ede6d6;
  --inset: #ede6d6;
  --muted: #756b5f;
  --muted-strong: #50463c;
  --border: #d8cebd;
  --border-strong: #c4b59a;
  --tint: #ff5a1f;
  --tint-muted: #c2410c;
  --primary-button: #ff5a1f;
  --primary-button-text: #f4efe6;
  --success: #4a8c5f;
  --warn: #c99544;
  --danger: #b84a45;
  --shadow: 0 12px 36px rgba(14, 14, 14, 0.08);
  --radius-lg: 16px;
  --radius-xl: 24px;
  --max-content: 720px;
  --max-legal: 52rem;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background: var(--background);
  line-height: 1.65;
  font-size: 1.0625rem;
}

a {
  color: var(--tint-muted);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.wrap--wide {
  max-width: var(--max-legal);
}

/* Site chrome */
.site-header {
  padding: 1.75rem 0 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.site-header .wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.site-header--home {
  text-align: center;
  padding-bottom: 2rem;
}

.site-header--home .site-hero-img {
  margin-left: auto;
  margin-right: auto;
}

.site-header--home .site-lead {
  margin-left: auto;
  margin-right: auto;
}

.site-hero-link {
  display: block;
  width: fit-content;
  max-width: 100%;
  line-height: 0;
  text-decoration: none;
}

.site-hero-link:hover {
  text-decoration: none;
  opacity: 0.96;
}

.site-hero-img {
  display: block;
  width: 100%;
  max-width: 32rem;
  height: auto;
  aspect-ratio: 1024 / 500;
  object-fit: contain;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.site-lead {
  margin: 0;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 40rem;
  line-height: 1.55;
}

.site-header h1 {
  margin: 0;
  font-size: clamp(1.65rem, 4vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.site-meta {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.site-meta strong {
  color: var(--muted-strong);
}

/* Main content */
.site-main {
  padding: 2rem 0 4rem;
}

.site-main h2 {
  margin: 2.25rem 0 0.65rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}

.site-main h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.site-main h3 {
  margin: 1.35rem 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.site-main p,
.site-main li {
  max-width: 68ch;
}

.site-main ul,
.site-main ol {
  padding-left: 1.25rem;
}

.site-main li {
  margin-bottom: 0.35rem;
}

.callout {
  border: 1px solid var(--border-strong);
  background: var(--elevated);
  padding: 1rem 1.15rem;
  border-radius: var(--radius-lg);
  max-width: 68ch;
  margin-bottom: 1.5rem;
}

.callout strong {
  color: var(--text);
}

.faq-item {
  margin-bottom: 0.5rem;
}

.faq-item h3 {
  margin: 1.35rem 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.faq-item p {
  margin: 0 0 0.15rem;
  color: var(--muted-strong);
}

.small {
  font-size: 0.92rem;
  color: var(--muted);
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
  background: var(--inset);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

/* Footer */
.site-footer {
  padding: 2rem 0 2.75rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted);
  background: var(--surface);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1rem;
  margin-bottom: 0.75rem;
}

.site-footer nav a {
  color: var(--muted-strong);
}

.site-copyright {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

/* Store badges */
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
  justify-content: center;
  align-items: center;
}

.store-badges a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  line-height: 0;
  text-decoration: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.store-badges a:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  text-decoration: none;
}

.store-badges img {
  display: block;
  height: 44px;
  width: auto;
}

.site-header--home h1 {
  font-size: clamp(1.75rem, 4.5vw, 2.35rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.45rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-primary {
  background: var(--primary-button);
  color: var(--primary-button-text);
  box-shadow: 0 4px 16px rgba(255, 90, 31, 0.28);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.landing-section {
  padding: 2.75rem 0;
}

.landing-section.alt {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.landing-section .wrap {
  max-width: 68rem;
}

.landing-section h2 {
  font-size: clamp(1.45rem, 3.5vw, 1.9rem);
  font-weight: 800;
  margin: 0 0 0.45rem;
  letter-spacing: -0.02em;
  border: none;
  padding: 0;
}

.landing-section .lead {
  color: var(--muted);
  margin: 0 0 1.75rem;
  max-width: 50ch;
}

.feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(15.5rem, 1fr));
}

.feature-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.15rem;
}

.feature-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--muted);
}

.feature-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
  background: var(--elevated);
}

.plans-banner {
  background: var(--elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.35rem;
  margin-bottom: 1.75rem;
  text-align: center;
}

.plans-banner h2 {
  margin: 0 0 0.35rem;
  color: var(--text);
}

.plans-banner p {
  margin: 0;
  color: var(--muted-strong);
}

.tier-badge {
  display: inline-block;
  background: rgba(255, 90, 31, 0.12);
  color: var(--tint-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.65rem;
}

.tier-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
}

.tier-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  background: var(--surface);
}

.tier-card h3 {
  margin: 0 0 0.65rem;
}

.tier-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted-strong);
  font-size: 0.96rem;
}

.center {
  text-align: center;
}

.center .lead {
  margin-left: auto;
  margin-right: auto;
}
