:root {
  --bg: #0E0C14;
  --surface: #18151F;
  --surface-high: #221E2C;
  --border: #2E2840;
  --accent: #C4899A;
  --accent-soft: rgba(196, 137, 154, 0.13);
  --accent-border: rgba(196, 137, 154, 0.27);
  --text: #F2EDE8;
  --text-soft: #9B94A8;
  --text-muted: #5C5670;
  --green: #7EC8A4;
  --green-soft: rgba(126, 200, 164, 0.13);
  --green-border: rgba(126, 200, 164, 0.27);
  --purple: #A89BD4;
  --purple-soft: rgba(168, 155, 212, 0.13);
  --purple-border: rgba(168, 155, 212, 0.27);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Noto Serif', Georgia, serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.mono {
  font-family: 'Space Mono', 'Courier New', monospace;
}

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

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(14, 12, 20, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--text);
}
.nav-logo span { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 13px;
  letter-spacing: 1px;
}
.nav-links a {
  color: var(--text-soft);
}
.nav-links a:hover { color: var(--text); text-decoration: none; }

/* Hero */
.hero {
  padding: 90px 0 70px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: 44px;
  line-height: 1.25;
  margin: 0 0 18px;
  font-weight: 400;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero p {
  font-size: 16px;
  color: var(--text-soft);
  max-width: 480px;
  margin: 0 0 32px;
}
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 16px;
  font-size: 14px;
  font-family: 'Noto Serif', serif;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
}
.btn-primary:hover { text-decoration: none; opacity: 0.92; }
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text-soft);
}
.btn-ghost:hover { text-decoration: none; border-color: var(--accent-border); color: var(--text); }

/* Phone mockup */
.phone {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 22px;
  max-width: 320px;
  margin: 0 auto;
  box-shadow: 0 30px 80px -30px rgba(196, 137, 154, 0.25);
}
.phone-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.phone-hi {
  font-size: 20px;
  color: var(--text);
  margin: 0 0 18px;
}
.phone-card {
  background: var(--surface-high);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
}
.phone-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.phone-name { font-size: 15px; color: var(--text); }
.phone-sub { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.reminder-pill {
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 14px;
}
.reminder-pill .tag {
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 4px;
}
.reminder-pill .body { font-size: 12.5px; color: var(--text); }
.action-row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.action {
  flex: 1;
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  font-size: 11.5px;
  border: 1px solid;
}
.action.green { background: var(--green-soft); border-color: var(--green-border); color: var(--green); }
.action.purple { background: var(--purple-soft); border-color: var(--purple-border); color: var(--purple); }
.action.outline {
  border-color: var(--border);
  color: var(--text-soft);
  width: 100%;
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  font-size: 11.5px;
}

/* Sections */
section { padding: 64px 0; }
.section-label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 18px;
  text-align: center;
}
.section-label-wrap {
  text-align: center;
}
.section-title {
  font-size: 34px;
  text-align: center;
  margin: 0 0 48px;
  font-weight: 400;
  color: var(--text);
}
.section-title em {
  font-style: italic;
  color: var(--accent);
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.card.wide { grid-column: 1 / -1; }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
}
.card .icon { font-size: 26px; margin-bottom: 14px; display: block; }
.card h3 { font-size: 17px; margin: 0 0 8px; font-weight: 400; color: var(--text); }
.card p { font-size: 14px; color: var(--text-soft); margin: 0; }

/* Thoughtful Acts showcase */
.ta {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
}
.ta-intro {
  font-size: 15px;
  color: var(--text-soft);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 28px;
}
.ta-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.ta-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--surface-high);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 18px;
}
.ta-item .em { font-size: 20px; flex-shrink: 0; line-height: 1.4; }
.ta-item h4 { margin: 0 0 3px; font-size: 14.5px; font-weight: 400; color: var(--text); }
.ta-item p { margin: 0; font-size: 13px; color: var(--text-soft); }
.ta-foot {
  text-align: center;
  margin-top: 22px;
  font-size: 11.5px;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

/* Trips showcase */
.trip-day {
  background: var(--surface-high);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 22px;
}
.trip-day-header {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.trip-day-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.trip-day-title {
  font-size: 14px;
  color: var(--text);
}
.trip-activities {
  display: flex;
  flex-direction: column;
}
.trip-activity {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}
.trip-activity:last-child { border-bottom: none; }
.trip-activity-event { background: rgba(168, 155, 212, 0.06); }
.trip-time {
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--text-muted);
  width: 52px;
  flex-shrink: 0;
  padding-top: 3px;
}
.trip-icon { font-size: 18px; flex-shrink: 0; line-height: 1.4; }
.trip-act-body { flex: 1; }
.trip-act-title {
  font-size: 13.5px;
  color: var(--text);
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.trip-event-badge {
  font-size: 8.5px;
  letter-spacing: 1px;
  color: var(--purple);
  background: var(--purple-soft);
  border: 1px solid var(--purple-border);
  border-radius: 6px;
  padding: 2px 6px;
}
.trip-act-desc { font-size: 12.5px; color: var(--text-soft); line-height: 1.5; }
.trip-act-link {
  display: inline-block;
  margin-top: 5px;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.3px;
}

/* Important Dates showcase */
.dates-paste {
  background: var(--surface-high);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  max-width: 560px;
  margin: 0 auto;
}
.dates-paste-label {
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.dates-paste-line {
  font-size: 13px;
  color: var(--text-soft);
  padding: 3px 0;
}
.dates-arrow {
  text-align: center;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin: 16px 0;
}
.dates-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 560px;
  margin: 0 auto;
}
.date-card {
  background: var(--surface-high);
  border: 1px solid var(--border);
  border-top-color: #3d3656;
  border-radius: 16px;
  padding: 14px 16px;
}
.date-card-top {
  display: flex;
  align-items: center;
  gap: 13px;
}
.date-emoji { font-size: 22px; flex-shrink: 0; line-height: 1.3; }
.date-name { font-size: 14.5px; color: var(--text); }
.date-meta { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.date-count { margin-left: auto; font-size: 11px; color: var(--accent); flex-shrink: 0; }
.date-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
  padding-left: 35px;
}
.date-chip {
  font-size: 10px;
  letter-spacing: 0.3px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--green-border);
  background: var(--green-soft);
  color: var(--green);
}
.date-chip.off {
  border-color: var(--border);
  background: transparent;
  color: var(--text-muted);
}
.date-nudge {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 10px;
  padding-left: 35px;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  text-align: center;
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--accent-border);
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin: 0 auto 16px;
}
.step h3 { font-size: 16px; font-weight: 400; margin: 0 0 8px; color: var(--text); }
.step p { font-size: 13.5px; color: var(--text-soft); margin: 0; }

/* Privacy band */
.privacy-band {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
}
.privacy-band .icon { font-size: 30px; margin-bottom: 14px; display: block; }
.privacy-band h2 { font-size: 22px; font-weight: 400; margin: 0 0 10px; }
.privacy-band p { font-size: 14px; color: var(--text-soft); max-width: 520px; margin: 0 auto 20px; }

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
}
footer .wrap a { color: var(--text-muted); }
footer .links { display: flex; gap: 20px; }

/* Privacy policy page */
.policy {
  padding: 56px 0 80px;
  max-width: 720px;
  margin: 0 auto;
}
.policy .eyebrow { text-align: left; }
.policy h1 { font-size: 34px; font-weight: 400; margin: 0 0 8px; }
.policy .updated { font-size: 12px; color: var(--text-muted); margin-bottom: 40px; }
.policy h2 {
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  margin: 40px 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.policy p, .policy li { font-size: 14.5px; color: var(--text-soft); }
.policy ul { padding-left: 22px; }
.policy li { margin-bottom: 6px; }
.policy strong { color: var(--text); }
.back-link { font-size: 13px; }

@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; padding-top: 48px; }
  .hero h1 { font-size: 34px; }
  .grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .ta { padding: 28px 20px; }
  .ta-list { grid-template-columns: 1fr; }
  .date-chips, .date-nudge { padding-left: 0; }
  .phone { max-width: 280px; }
  footer .wrap { flex-direction: column; gap: 12px; text-align: center; }
}

/* Hamburger button — hidden on desktop */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-soft);
  font-size: 20px;
  line-height: 1;
}
.nav-hamburger:hover { color: var(--text); }

/* Mobile dropdown menu */
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(14, 12, 20, 0.97);
  border-bottom: 1px solid var(--border);
  padding: 8px 0 16px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--text-soft);
  padding: 12px 24px;
  text-decoration: none;
}
.nav-mobile-menu a:hover { color: var(--text); }

@media (max-width: 600px) {
  .wrap { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .nav-logo { font-size: 14px; }
  .hero { padding-top: 36px; padding-bottom: 48px; }
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 15px; }
  .cta-row { flex-direction: column; gap: 10px; }
  .cta-row .btn { text-align: center; justify-content: center; }
  .btn { padding: 14px 20px; }
  .section-title { font-size: 26px; }
  .ta { padding: 22px 16px; }
  .trip-day-header { flex-direction: column; gap: 4px; }
  .dates-paste, .dates-list { max-width: 100%; }
  .privacy-band { padding: 28px 20px; }
  section { padding: 48px 0; }
}
