/* ===== Reminder Wrangler — calendar-clean marketing page ============= */

:root {
  --paper:      #ffffff;
  --bg:         #f5f5f7;   /* apple light-gray page                 */
  --bg-2:       #fbfbfd;
  --ink:        #1c1c1e;   /* near-black headings / brand           */
  --ink-soft:   #3a3a3c;   /* body                                  */
  --ink-mute:   #86868b;   /* meta / muted                          */
  --line:       #e5e5ea;   /* calendar hairlines                    */
  --line-2:     #d6d6db;

  /* calendar day-view colors, matched to the real app UI */
  --evt-bg:     #e8f1fb;
  --evt-bar:    #4f97d6;
  --evt-ink:    #2b5f88;
  --todo-ring:  #2f6fed;
  --cal-red:    #ff3b30;

  --accent:     #1c1c1e;   /* black — icon + "today" dot + CTA       */
  --accent-2:   #000000;

  --wrap: 1100px;
  --r: 18px;

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
          "Segoe UI", Roboto, Helvetica, Arial, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink-soft);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 720px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

h1, h2, h3 { color: var(--ink); line-height: 1.1; margin: 0; letter-spacing: -0.021em; }

/* ---- buttons ------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: 1.02rem; text-decoration: none;
  padding: 13px 22px; border-radius: 14px; border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  white-space: nowrap; cursor: pointer;
}
.btn-dark {
  background: var(--accent); color: #fff;
  box-shadow: 0 10px 26px -12px rgba(0,0,0,.5);
}
.btn-dark:hover { background: var(--accent-2); transform: translateY(-1px); }
.btn-dark svg { width: 18px; height: 18px; fill: #fff; margin-top: -2px; }
.btn-ghost { background: rgba(0,0,0,.045); color: var(--ink); }
.btn-ghost:hover { background: rgba(0,0,0,.08); }
.btn-lg { padding: 16px 28px; font-size: 1.08rem; }

/* ---- header -------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 22px;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.wordmark {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink); text-decoration: none;
  font-weight: 680; font-size: 1.12rem; letter-spacing: -0.01em;
}
.wordmark img { width: 30px; height: 30px; border-radius: 7px; box-shadow: 0 0 0 1px var(--line); }
.header-price { color: var(--ink-mute); font-size: .95rem; }
.header-cta { display: inline-flex; gap: 14px; align-items: center; }

/* ---- hero ---------------------------------------------------------- */
.hero { padding: 40px 0 26px; }
.hero-inner { display: flex; flex-direction: column; gap: 40px; align-items: center; }
.hero-copy { width: 100%; max-width: 560px; }
.eyebrow {
  margin: 0 0 16px; text-transform: uppercase;
  letter-spacing: .12em; font-size: .74rem; font-weight: 700; color: var(--ink-mute);
}
.hero h1 { font-size: clamp(2.4rem, 8vw, 3.9rem); font-weight: 750; margin-bottom: 20px; }
.hero .lead {
  font-size: clamp(1.08rem, 3.3vw, 1.28rem); color: var(--ink-soft);
  max-width: 42ch; margin: 0 0 28px;
}
.hero .lead b { color: var(--ink); font-weight: 640; }
.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; }
.cta-meta { color: var(--ink-mute); font-size: .95rem; }

/* ---- calendar day-view mock --------------------------------------- */
.cal-device {
  width: min(330px, 86vw);
  border-radius: 40px; padding: 10px;
  background: linear-gradient(160deg, #d9d9de, #f2f2f4);
  box-shadow: 0 40px 80px -34px rgba(0,0,0,.45), inset 0 0 0 1px rgba(255,255,255,.6);
  flex: 0 0 auto;
}
.cal {
  background: var(--paper); border-radius: 31px; overflow: hidden;
  font-size: 13px; color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.04);
}
.cal-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 14px 10px;
}
.cal-month { font-weight: 640; font-size: 15px; display: inline-flex; align-items: center; gap: 3px; }
.cal-month::before { content: "‹"; font-size: 20px; color: var(--todo-ring); line-height: 1; margin-right: 1px; }
.cal-icons { display: inline-flex; gap: 14px; color: var(--ink-mute); }
.cal-icons span { width: 17px; height: 17px; display: inline-block; }

.cal-week {
  display: grid; grid-template-columns: repeat(7, 1fr);
  padding: 2px 6px 10px; text-align: center;
  border-bottom: 1px solid var(--line);
}
.cal-week .dow { font-size: 10px; color: var(--ink-mute); font-weight: 600; letter-spacing: .03em; }
.cal-week .dom {
  font-size: 15px; font-weight: 500; color: var(--ink);
  margin-top: 5px; height: 26px; width: 26px; line-height: 26px;
  border-radius: 50%; display: inline-block;
}
.cal-week .is-sun .dom { color: var(--cal-red); }
.cal-week .is-today .dom { background: var(--accent); color: #fff; font-weight: 600; }

.cal-daytitle {
  text-align: center; font-weight: 680; font-size: 14px;
  padding: 11px 0; color: var(--ink); border-bottom: 1px solid var(--line);
}

.cal-agenda { padding: 0 0 6px; }
.row {
  display: grid; grid-template-columns: 46px 1fr;
  border-top: 1px solid var(--line); min-height: 46px;
}
.row:first-child { border-top: none; }
.row .time {
  font-size: 10px; color: var(--ink-mute); font-weight: 600;
  padding: 5px 0 0 8px; text-align: left; letter-spacing: .02em;
}
.row .lane { padding: 5px 10px 8px 2px; display: flex; flex-direction: column; gap: 6px; }

/* meeting block */
.evt {
  background: var(--evt-bg); border-left: 3px solid var(--evt-bar);
  border-radius: 5px; padding: 6px 9px; color: var(--evt-ink);
}
.evt .evt-t { font-weight: 640; font-size: 12.5px; line-height: 1.25; }
.evt .evt-m { font-size: 10.5px; opacity: .85; margin-top: 1px; }
.evt.tall { min-height: 52px; }

/* wrangled reminder pill */
.todo {
  display: flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 9px; padding: 8px 11px;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.todo::before {
  content: ""; flex: 0 0 auto; width: 15px; height: 15px;
  border-radius: 50%; border: 2px solid var(--todo-ring);
}
.todo span { font-weight: 640; font-size: 12.5px; color: var(--ink); line-height: 1.2; }
.todo.wr { box-shadow: 0 2px 10px -3px rgba(47,111,237,.35); border-color: #cfe0fb; }

.cal-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 14px 13px; border-top: 1px solid var(--line);
}
.cal-foot .today-pill {
  font-weight: 640; font-size: 13px; color: var(--ink);
  background: #f0f0f3; border-radius: 999px; padding: 6px 14px;
}
.cal-foot .foot-icons { display: inline-flex; gap: 12px; color: var(--ink-mute); }
.cal-foot .foot-icons span { width: 18px; height: 18px; display: inline-block; }

/* ---- bands --------------------------------------------------------- */
.band { padding: 64px 0; }
.band.alt { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.kicker {
  text-transform: uppercase; letter-spacing: .12em; font-size: .74rem;
  font-weight: 700; color: var(--todo-ring); margin: 0 0 14px;
}
.section-title { font-size: clamp(1.7rem, 5.4vw, 2.5rem); font-weight: 720; margin-bottom: 14px; }
.section-sub { font-size: clamp(1.02rem, 3vw, 1.16rem); max-width: 56ch; margin: 0 0 38px; }

/* feature cards */
.cards { display: grid; grid-template-columns: 1fr; gap: 16px; }
.card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r); padding: 26px 24px;
}
.card-ico {
  display: inline-flex; width: 44px; height: 44px; margin-bottom: 15px;
  align-items: center; justify-content: center; border-radius: 12px;
  color: var(--todo-ring); background: #eaf1fd;
}
.card-ico svg { width: 23px; height: 23px; }
.card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card p { margin: 0; color: var(--ink-soft); font-size: 1rem; }

/* screenshot showcase */
.showcase { display: flex; flex-direction: column; align-items: center; gap: 34px; }
.showcase .shot {
  width: min(300px, 76vw); border-radius: 34px; padding: 9px;
  background: linear-gradient(160deg, #d9d9de, #f2f2f4);
  box-shadow: 0 40px 80px -34px rgba(0,0,0,.45), inset 0 0 0 1px rgba(255,255,255,.6);
  flex: 0 0 auto;
}
.showcase .shot img { border-radius: 26px; display: block; }
.showcase .showcase-copy { max-width: 460px; }
.showcase .showcase-copy .section-title { margin-bottom: 16px; }

/* quote / why */
.band-why { background: var(--paper); }
.quote {
  font-size: clamp(1.35rem, 4.4vw, 2rem); font-weight: 640; color: var(--ink);
  line-height: 1.28; letter-spacing: -0.02em; margin: 0 0 18px;
}
.quote .hl { color: var(--todo-ring); }
.why-sub { font-size: clamp(1.02rem, 3vw, 1.16rem); max-width: 58ch; }

/* final CTA */
.band-cta { text-align: center; padding: 80px 0; }
.band-cta .app-icon-lg {
  width: 78px; height: 78px; border-radius: 18px; margin: 0 auto 22px;
  box-shadow: 0 16px 34px -14px rgba(0,0,0,.4), 0 0 0 1px var(--line);
}
.cta-title { font-size: clamp(1.8rem, 5.6vw, 2.7rem); font-weight: 740; margin-bottom: 24px; }

/* footer */
.site-footer { border-top: 1px solid var(--line); padding: 34px 0; background: var(--bg); }
.footer-inner {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 20px;
  color: var(--ink-mute); font-size: .92rem;
}
.footer-inner a { color: var(--ink-mute); text-decoration: none; }
.footer-inner a:hover { color: var(--ink); }
.footer-mark { color: var(--ink); font-weight: 640; }
.footer-copy { margin-left: auto; }

/* ---- responsive ---------------------------------------------------- */
@media (min-width: 760px) {
  .cards { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
@media (min-width: 920px) {
  .hero { padding: 70px 0 40px; }
  .hero-inner { flex-direction: row; justify-content: space-between; align-items: center; gap: 56px; }
  .hero-copy { flex: 1 1 0; }
  .band { padding: 92px 0; }
  .showcase { flex-direction: row; justify-content: center; align-items: center; gap: 60px; }
  .showcase.rev { flex-direction: row-reverse; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
a:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--todo-ring); outline-offset: 3px; border-radius: 8px;
}

/* ---- privacy policy page ------------------------------------------ */
.doc { padding: 46px 0 72px; }
.doc .back { display: inline-block; color: var(--todo-ring); text-decoration: none; font-weight: 600; font-size: .95rem; margin-bottom: 26px; }
.doc .back:hover { text-decoration: underline; }
.doc h1 { font-size: clamp(2rem, 6vw, 2.7rem); font-weight: 740; margin-bottom: 6px; }
.doc .eff { color: var(--ink-mute); font-size: .98rem; margin: 0 0 34px; }
.doc h2 { font-size: 1.3rem; font-weight: 680; margin: 34px 0 10px; color: var(--ink); }
.doc p { margin: 0 0 14px; color: var(--ink-soft); }
.doc ul { margin: 0 0 14px; padding-left: 22px; color: var(--ink-soft); }
.doc li { margin: 6px 0; }
.doc a { color: var(--todo-ring); }
.doc .lede {
  font-size: 1.15rem; color: var(--ink); background: var(--paper);
  border: 1px solid var(--line); border-left: 3px solid var(--todo-ring);
  border-radius: 12px; padding: 16px 18px; margin-bottom: 8px;
}
