/* Intent pages — lightweight static styles sharing the home page's design
 * tokens (apps/landing/public/home.css). No JavaScript on these pages. */

:root {
  --home-bg: #fffaf0;
  --home-paper: #fffefb;
  --home-white: #ffffff;
  --home-ink: #10264f;
  --home-muted: #64718a;
  --home-coral: #ff5f4c;
  --home-coral-deep: #f24e43;
  --home-yellow: #ffc83d;
  --home-cyan: #63d0e6;
  --home-mint: #60c994;
  --home-line: rgba(16, 38, 79, 0.10);
  --home-shadow:
    0 0 0 1px rgba(16, 38, 79, 0.05),
    0 2px 4px -2px rgba(16, 38, 79, 0.12),
    0 24px 70px -30px rgba(16, 38, 79, 0.24);
  --home-radius-xl: 34px;
  --home-radius-lg: 26px;
  --home-radius-md: 18px;
}

* { box-sizing: border-box; }

html {
  min-height: 100%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--home-ink);
  background:
    radial-gradient(900px 480px at 85% -80px, rgba(255, 200, 61, 0.22), transparent 70%),
    radial-gradient(760px 420px at -10% 220px, rgba(99, 208, 230, 0.16), transparent 70%),
    var(--home-bg);
  font-family: ui-rounded, "Avenir Next Rounded", "Avenir Next", "Nunito Sans", system-ui, sans-serif;
  line-height: 1.55;
}

img { max-width: 100%; height: auto; }
a { color: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 10px 16px;
  background: var(--home-ink);
  color: #fff;
  border-radius: 0 0 12px 0;
  z-index: 10;
}
.skip-link:focus { left: 0; }

/* Header ------------------------------------------------------------------ */

.intent-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 24px;
}

.intent-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.intent-brand img { width: 40px; height: 40px; border-radius: 12px; }
.intent-brand strong { display: block; font-size: 15px; letter-spacing: 0.08em; }
.intent-brand small { display: block; color: var(--home-muted); font-size: 10px; font-weight: 700; }

.intent-nav { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

/* Buttons ------------------------------------------------------------------ */

.intent-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.intent-button:hover { transform: translateY(-1px); }

.intent-button-primary {
  color: #fff;
  background: linear-gradient(105deg, var(--home-coral-deep), #ff754d);
  box-shadow: 0 10px 24px -12px rgba(242, 78, 67, 0.65);
}

.intent-button-secondary {
  color: var(--home-ink);
  background: var(--home-white);
  border-color: var(--home-ink);
}
.intent-button-secondary:hover { color: #fff; background: var(--home-ink); }

/* Layout ------------------------------------------------------------------ */

main {
  max-width: 880px;
  margin: 0 auto;
  padding: 24px 24px 64px;
}

.intent-hero { padding: 40px 0 8px; }

.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--home-coral-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.intent-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.intent-hero h1 em { color: var(--home-coral); font-style: normal; }

.intent-lead {
  margin: 0 0 24px;
  max-width: 640px;
  color: var(--home-muted);
  font-size: 17px;
}

.intent-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.intent-section { margin-top: 56px; }
.intent-section h2 {
  margin: 0 0 14px;
  font-size: clamp(22px, 3.4vw, 30px);
  line-height: 1.2;
}
.intent-section p { margin: 0 0 14px; color: var(--home-muted); }
.intent-section p strong { color: var(--home-ink); }

.check-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--home-paper);
  border-radius: var(--home-radius-md);
  box-shadow: var(--home-shadow);
}
.check-list .check-mark {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  background: var(--home-mint);
  font-size: 13px;
  font-weight: 900;
}
.check-list strong { display: block; }
.check-list small { color: var(--home-muted); }

/* FAQ ---------------------------------------------------------------------- */

.faq-list { display: grid; gap: 12px; margin-top: 18px; }
.faq-item {
  padding: 20px 22px;
  background: var(--home-paper);
  border-radius: var(--home-radius-lg);
  box-shadow: var(--home-shadow);
}
.faq-item h3 { margin: 0 0 8px; font-size: 16px; }
.faq-item p { margin: 0; color: var(--home-muted); font-size: 14px; }

/* Related pages ------------------------------------------------------------ */

.related-nav {
  margin-top: 56px;
  padding: 24px;
  background: var(--home-paper);
  border-radius: var(--home-radius-lg);
  box-shadow: var(--home-shadow);
}
.related-nav h2 { margin: 0 0 12px; font-size: 16px; }
.related-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.related-nav a {
  color: var(--home-coral-deep);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 2px solid rgba(242, 78, 67, 0.3);
}
.related-nav a:hover { border-bottom-color: var(--home-coral-deep); }

/* Footer ------------------------------------------------------------------- */

.intent-footer {
  border-top: 1px solid var(--home-line);
  padding: 28px 24px 40px;
}
.intent-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  max-width: 1120px;
  margin: 0 auto;
}
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a {
  color: var(--home-muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.footer-links a:hover { color: var(--home-ink); }
.footer-credit { margin: 0; color: var(--home-muted); font-size: 12px; }
.footer-credit a { color: var(--home-ink); font-weight: 700; text-decoration: none; }

@media (max-width: 560px) {
  .intent-header { padding: 14px 16px; }
  main { padding: 16px 16px 48px; }
  .intent-actions .intent-button { width: 100%; justify-content: center; }
}
