/* NOTA — hellonota.com · spring_sage (app default): cream + NOTA green + gold dot */
:root {
  --bg: #F4F4EF;
  --surface: #FFFFFF;
  --surface-2: #ECEAE3;
  --border: #D8D8CC;
  --text: #18181A;
  --text-2: #72726A;
  --text-3: #A2A296;
  --accent: #4A6741;
  --accent-soft: rgba(74, 103, 65, 0.10);
  --gold: #C9A227;
  --shadow-card: 0 3px 10px rgba(0, 0, 0, 0.06);
  --shadow-raised: 0 8px 18px rgba(0, 0, 0, 0.10);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrap { width: 100%; max-width: 720px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header { border-bottom: 1px solid var(--border); background: var(--bg); }
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 20px; padding-bottom: 20px;
}
.wordmark {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700; font-size: 22px; letter-spacing: 0.04em;
  color: var(--accent); text-decoration: none;
}
.wordmark span { color: var(--gold); }
.site-nav { display: flex; gap: 22px; }
.site-nav a {
  color: var(--text-2); text-decoration: none; font-size: 14px; font-weight: 500;
}
.site-nav a:hover { color: var(--accent); }

/* Main */
main { flex: 1; }

/* Hero (landing) */
.hero { text-align: center; padding: 72px 0 40px; }
.hero-logo {
  width: 88px; height: 88px; border-radius: 20px;
  box-shadow: var(--shadow-raised);
  margin-bottom: 28px;
}
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700; font-size: clamp(40px, 8vw, 64px); line-height: 1.1;
  letter-spacing: -0.01em; color: var(--text);
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero .sub {
  margin: 24px auto 0; max-width: 520px;
  color: var(--text-2); font-size: 18px;
}
.badges { display: flex; gap: 12px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.badge {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 10px 22px; border-radius: 14px;
  background: var(--surface); box-shadow: var(--shadow-card);
  min-width: 170px; text-align: left;
}
.badge .soon {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--gold); font-weight: 600;
}
.badge .store { font-size: 16px; font-weight: 600; color: var(--text); }

.features { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; padding: 40px 0 72px; }
.chip {
  padding: 7px 16px; border-radius: 999px; font-size: 14px; font-weight: 500;
  color: var(--text-2); background: var(--surface); box-shadow: var(--shadow-card);
}
.chip::before { content: '·'; color: var(--gold); font-weight: 700; margin-right: 8px; }

.support-line { text-align: center; color: var(--text-3); font-size: 14px; padding-bottom: 72px; }
.support-line a { color: var(--accent); text-decoration: none; font-weight: 500; }
.support-line a:hover { text-decoration: underline; }

/* Article pages (privacy / delete account) */
.article { padding: 56px 0 72px; }
.article h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700; font-size: clamp(30px, 6vw, 42px); line-height: 1.15;
  color: var(--text);
}
.article .updated { margin-top: 10px; color: var(--text-3); font-size: 13px; }
.article .intro { margin-top: 22px; color: var(--text-2); font-size: 17px; }
.article section { margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--border); }
.article h2 { font-size: 18px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.article p { color: var(--text-2); }
.article p + p { margin-top: 12px; }
.article a { color: var(--accent); text-decoration: none; font-weight: 500; }
.article a:hover { text-decoration: underline; }
.article ul, .article ol { margin: 12px 0 0 22px; color: var(--text-2); }
.article li { margin-top: 6px; }
.article li::marker { color: var(--accent); }

.steps { counter-reset: step; list-style: none; margin: 16px 0 0 !important; }
.steps li {
  counter-increment: step; position: relative;
  padding: 14px 16px 14px 52px; margin-top: 10px;
  background: var(--surface); box-shadow: var(--shadow-card); border-radius: 14px;
}
.steps li::before {
  content: counter(step);
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 999px;
  background: var(--accent); color: #FFFFFF;
  font-size: 13px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}

.callout {
  margin-top: 16px; padding: 14px 18px;
  background: var(--surface-2);
  border-left: 3px solid var(--gold); border-radius: 10px;
  color: var(--text-2); font-size: 15px;
}

/* Footer */
.site-footer { border-top: 1px solid var(--border); }
.site-footer .wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  flex-wrap: wrap; padding-top: 24px; padding-bottom: 28px;
  color: var(--text-3); font-size: 13px;
}
.site-footer nav { display: flex; gap: 18px; flex-wrap: wrap; }
.site-footer a { color: var(--text-2); text-decoration: none; }
.site-footer a:hover { color: var(--accent); }

@media (max-width: 480px) {
  .hero { padding-top: 48px; }
  .badges { flex-direction: column; align-items: center; }
  .badge { width: 220px; }
}
