/* Honos — honosai.com standalone landing + policy pages.
 * Light theme, brand tokens mirrored from the app's tokens.css
 * (accent #3d7fff, Inter, navy text on white). Self-contained:
 * the only external dependency is the Inter web font. */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg:            #ffffff;
  --surface:       #f4f6fb;
  --border:        #cbd5e1;
  --text:          #1a1a2e;
  --muted:         #475569;   /* slate, ~7:1 on white */
  --accent:        #3d7fff;
  --accent-button: #2d6fee;   /* bg for white-text buttons — clears AA */
  --accent-hover:  #1d5fde;
  --tint-accent:   rgba(61, 127, 255, 0.10);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-pill: 999px;

  --maxw-hero: 640px;
  --maxw-doc:  720px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.logo { height: 40px; width: auto; display: block; }

/* ─── Landing (index.html) ─────────────────────────────────────────────── */

.landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  /* faint accent glow behind the hero */
  background:
    radial-gradient(1100px 520px at 50% -10%, var(--tint-accent), transparent 70%),
    var(--bg);
}

.landing header {
  padding: 28px 24px;
  display: flex;
  justify-content: center;
}

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 24px 64px;
}

.hero-inner {
  width: 100%;
  max-width: var(--maxw-hero);
  text-align: center;
}

.badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent-button);
  background: var(--tint-accent);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.hero .subhead {
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 32px;
}

.points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto 36px;
  text-align: left;
}

.points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--text);
}

.points .check {
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: var(--radius-pill);
  background: var(--accent-button);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 28px;
}
.pricing strong { font-weight: 700; }

.cta-btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  padding: 13px 26px;
  color: #fff;
  background: var(--accent-button);
  border-radius: var(--radius-md);
  transition: background 0.15s ease;
}
.cta-btn:hover { background: var(--accent-hover); text-decoration: none; }

.cta-note { font-size: 14px; color: var(--muted); margin-top: 14px; }
.cta-note a { font-weight: 500; }

/* ─── Shared footer ────────────────────────────────────────────────────── */

footer {
  border-top: 1px solid var(--border);
  padding: 24px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}
footer .footer-links { margin-bottom: 6px; }
footer .footer-links a { color: var(--muted); }
footer .footer-links a:hover { color: var(--accent); }
footer .sep { margin: 0 8px; color: var(--border); }

/* ─── Policy pages (privacy.html / terms.html) ─────────────────────────── */

.doc-header {
  border-bottom: 1px solid var(--border);
  padding: 24px;
  display: flex;
  justify-content: center;
}

.doc {
  max-width: var(--maxw-doc);
  margin: 0 auto;
  padding: 48px 24px 64px;
}
.doc h1 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.doc .effective {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 36px;
}
.doc h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 32px 0 10px;
}
.doc p, .doc li { color: var(--text); margin-bottom: 12px; }
.doc ul { padding-left: 22px; margin-bottom: 12px; }
.doc li { margin-bottom: 6px; }
.doc .back {
  display: inline-block;
  margin-bottom: 32px;
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 480px) {
  .hero { padding-bottom: 48px; }
  .cta-btn { display: block; }
}
