/* =========================================================================
   Tap2Remind — clean professional palette inspired by Todoist / Things /
   TickTick. White-dominant background, single strong accent (brand red
   from the clock body), gradient reserved for the primary CTA only.
   ========================================================================= */

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

:root {
  --bg: #FFFFFF;
  --bg-soft: #F7F8FA;
  --bg-warm: #FFFCF5;
  --ink: #1A1A2E;
  --ink-soft: #4A4A6B;
  --ink-muted: #8B8BA8;
  --card: #FFFFFF;
  --border: rgba(26,26,46,0.08);
  --border-strong: rgba(26,26,46,0.14);

  --accent: #E53935;          /* brand red — main attention color */
  --accent-soft: #FFE5E4;
  --accent-dark: #C62828;
  --blue: #2D9CDB;             /* brand bell blue — secondary */
  --gold: #F7B731;             /* brand gold — tertiary */
  --indigo: #6366F1;
  --violet: #8B5CF6;
  --pink: #EC4899;
  --green: #10B981;

  --gradient: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #EC4899 100%);

  --radius: 20px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--accent); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--accent-dark); }

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─────── Nav ─────── */
nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.88);
  border-bottom: 1px solid var(--border);
}
nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.brand img { width: 40px; height: 40px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--ink); }
.nav-links .btn-nav {
  background: var(--accent);
  color: white;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
}
.nav-links .btn-nav:hover { color: white; background: var(--accent-dark); }

/* ─────── Hero ─────── */
.hero {
  position: relative;
  padding: 80px 0 40px;
  overflow: hidden;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0 0 20px;
  font-weight: 900;
  color: var(--ink);
}
.hero h1 .accent { color: var(--accent); }
.hero p.lede {
  font-size: 1.22rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 0 32px;
  line-height: 1.55;
}
.hero-mascot {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-mascot img {
  max-width: 480px;
  width: 100%;
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.02rem;
  transition: all 0.15s;
  border: none;
  cursor: pointer;
  text-align: center;
  font-family: inherit;
}
.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 6px 20px rgba(229,57,53,0.28);
}
.btn-primary:hover {
  background: var(--accent-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(229,57,53,0.4);
}
.btn-ghost {
  background: white;
  color: var(--ink);
  border: 1.5px solid var(--border-strong);
}
.btn-ghost:hover { background: var(--bg-soft); color: var(--ink); }

.trust-row {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--ink-muted);
  font-weight: 600;
  font-size: 0.95rem;
  flex-wrap: wrap;
}
.trust-row .stars { color: var(--gold); letter-spacing: 0.05em; font-size: 1.05rem; }
.trust-row .dot { color: var(--border-strong); }

/* ─────── BIG VALUE PROP BULLETS (right after hero — the headline pitch) ─────── */
.bullets-strip {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}
.bullets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.bullet {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.bullet-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bullet-icon svg { width: 28px; height: 28px; color: var(--accent); }
.bullet h3 {
  font-size: 1.18rem;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.25;
}
.bullet p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.55;
}

/* ─────── Sections ─────── */
.section { padding: 96px 0; }
.section h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--ink);
}
.section .eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 14px;
}
.section .section-lede {
  color: var(--ink-soft);
  font-size: 1.15rem;
  max-width: 660px;
  margin: 0 0 56px;
  line-height: 1.55;
}
.section.section-alt { background: var(--bg-soft); }

/* ─────── Caregiver section (still the unique pitch — deserves attention) ─────── */
.caregiver {
  background: linear-gradient(135deg, #FFF5F5 0%, #FFEBEA 100%);
  border-radius: 28px;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(229,57,53,0.12);
}
.caregiver .eyebrow { color: var(--accent); margin-bottom: 12px; }
.caregiver h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.6rem);
  margin: 0 0 16px;
  letter-spacing: -0.025em;
  line-height: 1.15;
  font-weight: 900;
}
.caregiver p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin: 0 0 20px;
  line-height: 1.6;
}
.caregiver ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.caregiver ul li {
  padding-left: 36px;
  position: relative;
  margin-bottom: 14px;
  color: var(--ink);
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.5;
}
.caregiver ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-weight: 900;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.caregiver-visual {
  display: flex;
  justify-content: center;
}
.caregiver-visual img {
  max-width: 360px;
}
/* ─────── "Free during early access" promo treatment ───────
   Big red strikethrough on the $6.99 + "FREE" callout so visitors see
   "you're getting the paid version, for free, right now." */
.price-was {
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--accent);
  color: var(--ink-muted);
  font-weight: 700;
  opacity: 0.7;
}
.price-now-free {
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 0.02em;
}
/* The pricing card needs the dramatic treatment. */
.pricing .price-free {
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--accent);
  margin: 8px 0 0;
  line-height: 1;
}
.pricing .price-was-big {
  display: inline-block;
  margin-top: 8px;
  font-size: 1.8rem;
  font-weight: 800;
  text-decoration: line-through;
  text-decoration-thickness: 5px;
  text-decoration-color: var(--accent);
  color: var(--ink-muted);
  opacity: 0.6;
}
.pricing .badge.badge-free {
  background: var(--accent);
}

/* Phone-screenshot variant — used in the caregiver section to show the real
   pattern lock UI instead of decorative mascot art. */
.caregiver-visual img.phone-shot {
  max-width: 280px;
  border-radius: 28px;
  box-shadow:
    0 24px 60px -10px rgba(26,26,46,0.22),
    0 0 0 1px rgba(26,26,46,0.10);
}

/* ─────── Features ─────── */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(26,26,46,0.08);
  border-color: var(--border-strong);
}
.feature .icon-chip {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px;
}
.feature .icon-chip svg { width: 24px; height: 24px; color: var(--accent); }
.feature h3 {
  font-size: 1.15rem;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  font-weight: 800;
  color: var(--ink);
}
.feature p { color: var(--ink-soft); margin: 0; font-size: 0.97rem; }

/* ─────── Screenshots ─────── */
.shots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: end;
}
.shots-grid img {
  border-radius: 24px;
  box-shadow:
    0 24px 60px -10px rgba(26,26,46,0.15),
    0 0 0 1px var(--border);
}

/* ─────── Pricing ─────── */
.pricing {
  background: var(--card);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  border: 2px solid var(--accent);
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 24px 50px -10px rgba(229,57,53,0.18);
}
.pricing .badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.pricing .price {
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--accent);
  margin: 8px 0 0;
  line-height: 1;
}
.pricing .price-sub {
  color: var(--ink-muted);
  font-weight: 600;
  margin: 8px 0 28px;
  font-size: 1.05rem;
}
.pricing .price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  text-align: left;
  display: inline-block;
}
.pricing .price-features li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 500;
}
.pricing .price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

/* ─────── FAQ ─────── */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  padding: 22px 26px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq details[open] {
  border-color: rgba(229,57,53,0.3);
  box-shadow: 0 8px 24px rgba(26,26,46,0.06);
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--ink-soft); margin: 14px 0 0; }

/* ─────── CTA strip ─────── */
.cta-strip {
  margin: 0 24px 80px;
}
.cta-strip-inner {
  max-width: 1180px;
  margin: 0 auto;
  background: var(--accent);
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: white;
}
.cta-strip h2 {
  color: white;
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  letter-spacing: -0.025em;
  font-weight: 900;
}
.cta-strip p { color: rgba(255,255,255,0.92); margin: 0 0 28px; font-size: 1.1rem; }
.cta-strip .btn {
  background: white;
  color: var(--accent);
  font-weight: 800;
}
.cta-strip .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
  background: white;
}

/* ─────── Footer ─────── */
footer {
  padding: 40px 0 56px;
  border-top: 1px solid var(--border);
  color: var(--ink-muted);
  font-size: 0.92rem;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
footer .footer-links { display: flex; gap: 24px; }
footer .footer-links a { color: var(--ink-soft); }

/* ─────── Long-form (privacy, support) ─────── */
.page {
  padding: 56px 0 88px;
  max-width: 760px;
  margin: 0 auto;
}
.page h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.025em;
  margin: 0 0 8px;
  font-weight: 900;
}
.page .updated { color: var(--ink-muted); margin-bottom: 36px; font-size: 0.95rem; }
.page h2 {
  font-size: 1.3rem;
  margin: 36px 0 12px;
  letter-spacing: -0.015em;
  font-weight: 800;
}
.page p, .page li { color: var(--ink-soft); font-size: 1rem; }
.page ul { padding-left: 1.4em; }
.page code {
  background: var(--bg-soft);
  padding: 0.1em 0.4em;
  border-radius: 6px;
  font-size: 0.9em;
  color: var(--ink);
  border: 1px solid var(--border);
}

/* ─────── Responsive ─────── */
@media (max-width: 880px) {
  .hero { padding: 40px 0 24px; }
  .hero .container { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hero p.lede { margin-left: auto; margin-right: auto; }
  .cta-row, .trust-row { justify-content: center; }
  .hero-mascot img { max-width: 320px; }

  .bullets-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .bullet { align-items: center; text-align: center; }
  .bullets-strip { padding: 48px 0; }

  .caregiver { grid-template-columns: 1fr; padding: 40px 24px; text-align: center; }
  .caregiver ul { display: inline-block; text-align: left; }
  .caregiver-visual img { max-width: 240px; }

  .features { grid-template-columns: 1fr; }
  .shots-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .section { padding: 64px 0; }
  .nav-links { gap: 10px; }
  .nav-links a:not(.btn-nav) { display: none; }
  .cta-strip-inner { padding: 48px 24px; }
}

@media (max-width: 520px) {
  .bullets-grid { grid-template-columns: 1fr; gap: 28px; }
}
