/* ============================================================
   Apple Aesthetics Theme
   Design system inspired by Apple's web design language.
   ============================================================ */

/* ---- 1. Design Tokens ---- */
:root {
  /* Colors */
  --bg:               #f5f5f7;
  --surface:            #ffffff;
  --text:             #1d1d1f;
  --text-2:           #6e6e73;
  --text-3:           #aeaeb2;
  --blue:             #0071e3;
  --blue-dark:        #0064cc;
  --border:           rgba(0, 0, 0, 0.08);
  --border-strong:    rgba(0, 0, 0, 0.14);

  /* Typography */
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;

  /* Layout */
  --max-w:      980px;
  --content-w:  680px;
  --nav-h:      70px;

  /* Radii */
  --r-sm:   10px;
  --r-md:   18px;
  --r-lg:   56px;
  --r-xl:   40px;
  --r-pill: 100px;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-card: 0 2px 10px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);

  /* Nav backgrounds (extracted for dark-mode override) */
  --nav-bg:         rgba(245, 245, 247, 0.72);
  --nav-bg-scrolled: rgba(255, 255, 255, 0.85);

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Dark Mode ---- */
@media (prefers-color-scheme: dark) {
  :root {
    --bg:               #000000;
    --surface:            #111111;
    --text:             #f5f5f7;
    --text-2:           #98989d;
    --text-3:           #636366;
    --border:           rgba(255, 255, 255, 0.10);
    --border-strong:    rgba(255, 255, 255, 0.18);

    --shadow-sm:   0 1px 4px rgba(0,0,0,0.30);
    --shadow-md:   0 4px 24px rgba(0,0,0,0.45);
    --shadow-card: 0 2px 10px rgba(0,0,0,0.35), 0 1px 2px rgba(0,0,0,0.25);

    --nav-bg:          rgba(28, 28, 30, 0.72);
    --nav-bg-scrolled: rgba(28, 28, 30, 0.85);
  }
}

/* ---- 2. Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: underline; }

/* ---- 3. Navigation ---- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: var(--nav-bg);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, background 0.25s;
}

.site-nav.scrolled {
  background: var(--nav-bg-scrolled);
  border-bottom-color: var(--border);
}

.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-brand {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.15s;
}

.nav-brand:hover { color: var(--blue); }

.nav-menu {
  list-style: none;
  display: flex;
  align-items: stretch;
  justify-content: space-evenly;
  flex: 1;
  flex-wrap: wrap;
}

.nav-menu li {
  display: flex;
}

.nav-menu a {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
  font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text);
  text-decoration: none;
  transition: opacity 0.15s;
  white-space: nowrap;
}

.nav-menu a:hover { opacity: 0.75; }
.nav-menu a.active { color: var(--blue); font-weight: 500; }
.nav-menu li.nav-menu-appstore { display: none; }

/* ---- 4. Layout Containers ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.content-container {
  width: 100%;
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- 5. Hero ---- */
.hero {
  padding: 96px 0 80px;
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 113, 227, 0.07) 0%, transparent 60%);
}

.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}

.hero-title {
  font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.002em;
  line-height: 1.04;
  color: var(--text);
  margin-bottom: 18px;
}

.hero-subtitle {
  font-size: 19px;
  line-height: 1.5;
  color: var(--text-2);
  max-width: 520px;
  margin: 0 auto 32px;
}

.hero-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- 6. Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  padding: 13px 22px;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.15s var(--ease-out), box-shadow 0.15s var(--ease-out);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: none; box-shadow: none; }

.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); }

.btn-secondary { background: var(--text); color: #fff; }
.btn-secondary:hover { background: #000; }

.btn-ghost { background: rgba(0,0,0,0.06); color: var(--text); }
.btn-ghost:hover { background: rgba(0,0,0,0.1); }

/* ---- 7. Section Scaffolding ---- */
.section { margin: 64px 0; }

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text);
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-2);
  margin-top: 10px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- 8. Card Grid ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 18px;
}

.inline-section-list {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-2);
}

.inline-section-list a {
  color: var(--blue);
  text-decoration: none;
}

.inline-section-list a:hover {
  text-decoration: underline;
}

/* ---- 9. Post Cards (Blog / News / Section links) ---- */
.post-card {
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  padding: 18px;
  box-shadow: var(--shadow-card);
  text-decoration: none; /* because the entire card is a link */
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--text);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.post-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.post-card-meta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
}

.post-card-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
}

.post-card-summary {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
  flex: 1;
}

.post-card-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  margin-top: auto;
}

/* ---- 10. Article / Single Page ---- */
.article-header {
  padding: 72px 0 40px;
  text-align: center;
}

.article-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.article-title {
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 16px;
}

.article-meta {
  font-size: 14px;
  color: var(--text-3);
}

.article-body { padding-bottom: 96px; }

/* ---- 11. Prose Typography ---- */
.prose {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
}

.prose h1,
.prose h2,
.prose h3,
.prose h4 {
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
  margin-top: 2.5em;
  margin-bottom: 0.6em;
}

.prose > :first-child { margin-top: 0; }

.prose h1 { font-size: 34px; font-weight: 700; letter-spacing: -0.03em; }
.prose h2 { font-size: 24px; font-weight: 700; }
.prose h3 { font-size: 20px; font-weight: 600; }
.prose h4 { font-size: 17px; font-weight: 600; }

.prose p { margin-bottom: 1.2em; }

.prose ul,
.prose ol { padding-left: 1.6em; margin-bottom: 1.2em; }
.prose li { margin-bottom: 0.4em; }

.prose a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: rgba(0,113,227,0.3);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.15s;
}
.prose a:hover { text-decoration-color: var(--blue); }

.prose blockquote {
  border-left: 3px solid var(--blue);
  padding: 0.1em 0 0.1em 1.2em;
  color: var(--text-2);
  font-style: italic;
  margin: 1.5em 0;
}

.prose code {
  font-family: var(--font-mono);
  font-size: 0.875em;
  background: rgba(0,0,0,0.06);
  padding: 2px 6px;
  border-radius: 5px;
  color: #c41a16;
}

.prose pre {
  background: #1d1d1f;
  border-radius: var(--r-md);
  padding: 22px 24px;
  overflow-x: auto;
  margin: 1.5em 0;
}

.prose pre code {
  background: none;
  color: #e8e8ea;
  font-size: 14px;
  padding: 0;
  border-radius: 0;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 15px;
}

.prose th {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 2px solid var(--border-strong);
  font-weight: 600;
  color: var(--text-2);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.prose td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.prose hr { border: none; border-top: 1px solid var(--border); margin: 2.5em 0; }
.prose strong { font-weight: 600; }
.prose img { border-radius: var(--r-md); box-shadow: var(--shadow-md); margin: 1.5em 0; }

/* ---- 12. Section / List Pages ---- */
.list-header {
  margin: 72px 0 48px;
}

.list-title {
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 14px;
}

.list-subtitle {
  font-size: 17px;
  color: var(--text-2);
  max-width: 480px;
}

.list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 18px;
  margin-bottom: 96px;
}

/* ---- 13. Tags ---- */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2em;
  padding-top: 2em;
  border-top: 1px solid var(--border);
}

.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  background: rgba(0,0,0,0.05);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.tag:hover { background: var(--blue); color: #fff; }

/* ---- 14. Footer ---- */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

.footer-column h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 14px;
}

.footer-column ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-column a { font-size: 14px; color: var(--text-2); text-decoration: none; transition: color 0.15s; }
.footer-column a:hover { color: var(--blue); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-3);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--text-3); text-decoration: none; transition: color 0.15s; }
.footer-bottom-links a:hover { color: var(--blue); }

/* ---- 15. Mobile Nav Toggle ---- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border: none;
  background: none;
  cursor: pointer;
  margin-left: auto;
  border-radius: var(--r-sm);
  transition: background 0.15s;
}

.nav-toggle:hover { background: rgba(0,0,0,0.06); }

.nav-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s var(--ease-out), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ---- Mobile nav curtain ---- */
.nav-curtain {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.32s cubic-bezier(0.4, 0, 0.6, 1) 80ms,
              visibility 0.32s step-end 80ms;
}
.nav-curtain.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.32s cubic-bezier(0.4, 0, 0.6, 1),
              visibility 0.32s step-start;
}

@media (max-width: 680px) {
  .nav-toggle { display: flex; }
  .nav-curtain { display: block; }
  .nav-app-store { display: none; }
  .nav-menu li.nav-menu-appstore { display: block; padding-top: 12px; margin-top: 8px; border-top: 1px solid var(--border); }

  .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 16px 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.24s cubic-bezier(0.4, 0, 0.6, 1),
                transform 0.24s cubic-bezier(0.4, 0, 0.6, 1),
                visibility 0.24s step-end;
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.24s cubic-bezier(0.4, 0, 0.6, 1),
                transform 0.24s cubic-bezier(0.4, 0, 0.6, 1),
                visibility 0.24s step-start;
  }

  .nav-menu a {
    font-size: 20px;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: var(--r-sm);
    opacity: 1;
  }
}

@media (max-width: 680px) and (prefers-color-scheme: dark) {
  .nav-menu {
    background: rgba(28, 28, 30, 0.96);
  }
}

/* ---- 16. Scroll Reveal ---- */
.sr {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.sr.visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-d1 { transition-delay: 0.08s; }
.sr-d2 { transition-delay: 0.16s; }
.sr-d3 { transition-delay: 0.24s; }

/* ---- 16. Utilities ---- */
.text-center { text-align: center; }

/* ---- 17. Responsive ---- */
@media (max-width: 768px) {
  .hero { padding: 48px 0 40px; }

  .hero-subtitle { font-size: 17px; }

  .section { padding: 32px 0; }

  .article-header { padding: 36px 0 20px; }
  .article-body { padding-bottom: 48px; }
  .list-header { padding: 36px 0 24px; }
  .list-grid { padding-bottom: 48px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }

  .site-footer { padding: 48px 0 28px; }

  .prose h2 { font-size: 20px; }
}

/* ---- 18. FAQ Accordion ---- */
.faq-container {
  padding-bottom: 96px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.15s;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--text-3);
  flex-shrink: 0;
  transition: transform 0.2s var(--ease-out), color 0.15s;
  line-height: 1;
}

.faq-item[open] .faq-question {
  color: var(--blue);
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
  color: var(--blue);
}

.faq-answer {
  display: block !important; /* override UA <details> content hiding */
  overflow: hidden;
  max-height: 0;
  padding: 0 4px;
  transition: max-height 0.3s ease, padding-bottom 0.3s ease;
  color: var(--text-2);
}

.faq-item[open] .faq-answer {
  max-height: none;
  padding-bottom: 20px;
}

@media (max-width: 768px) {
  .faq-container { padding-bottom: 48px; }
  .faq-question { font-size: 15px; padding: 16px 4px; }
}

/* ---- 19. App Store Badge ---- */
.app-store-badge-link {
  display: inline-flex;
  align-items: center;
  transition: transform 0.15s var(--ease-out), opacity 0.15s;
}

.app-store-badge-link:hover {
  transform: translateY(-1px);
  opacity: 0.85;
}

.app-store-badge-img {
  height: 44px;
  width: auto;
}

/* ---- 19. Features Grid ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.feature-card-wrapper {
  display: flex;
  flex-direction: column;
}

.feature-card {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 28px 32px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.features-more {
  margin-top: 20px;
  text-align: right;
  font-size: 14px;
}

.features-more a {
  color: var(--blue);
  text-decoration: none;
}

.features-more a:hover {
  text-decoration: underline;
}

.feature-card-screenshot img {
  display: block;
  width: 100%;
  height: auto;
}

.feature-card--with-screenshot {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.feature-page-screenshot {
  float: right;
  width: 280px;
  margin: 0 0 24px 36px;
}

.feature-page-screenshot img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 600px) {
  .feature-page-screenshot {
    float: none;
    width: 100%;
    margin: 0 0 24px 0;
  }
}

.feature-card-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 4px;
}

.feature-card-desc {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--text-2);
  margin-bottom: 12px;
}

.feature-card-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}

.feature-card-body ul,
.feature-card-body ol {
  padding-left: 1.4em;
}

/* Smaller prose for feature cards and similar compact contexts */
.prose-sm {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-2);
}

.prose-sm p { margin-bottom: 0.7em; }
.prose-sm p:last-child { margin-bottom: 0; }

.prose-sm a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: rgba(0,113,227,0.3);
}

.prose-sm a:hover { text-decoration-color: var(--blue); }

.prose-sm strong { font-weight: 600; color: var(--text); }

.prose-sm ul, .prose-sm ol {
  padding-left: 1.4em;
  margin-bottom: 0.7em;
}

.prose-sm li { margin-bottom: 0.3em; }

.prose-sm em { font-style: italic; }

/* ---- 19. Home Content Card ---- */
.home-content-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 48px 52px;
  box-shadow: var(--shadow-card);
}

@media (max-width: 600px) {
  .home-content-card { padding: 28px 24px; }
}

/* ---- 19. Shortcode: Reminder Cards ---- */
.reminders-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 1.5em 0;
}

.reminder-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px;
  box-shadow: var(--shadow-card);
}

.reminder-title {
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 6px;
}

.reminder-body {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
}

.priority-task-container {
  margin: 1.5em 0;
  max-width: 360px;
}

.priority-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

/* ---- 19. Shortcode: Subscription Form ---- */
.listmonk-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  margin: 2em 0;
  box-shadow: var(--shadow-card);
}

.listmonk-form div {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.listmonk-form input[type="email"],
.listmonk-form input[type="text"] {
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  padding: 11px 16px;
  outline: none;
  min-width: 180px;
  flex: 1;
  transition: border-color 0.15s;
}

.listmonk-form input[type="email"]:focus,
.listmonk-form input[type="text"]:focus {
  border-color: var(--blue);
}

.listmonk-form input[type="submit"] {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: var(--r-pill);
  padding: 11px 22px;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s var(--ease-out);
}

.listmonk-form input[type="submit"]:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

/* ---- 20. Responsive (shortcodes) ---- */
@media (max-width: 500px) {
  .reminders-container { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .nav-inner { padding: 0 16px; }
  .nav-menu a { padding: 4px 8px; }
  .container { padding: 0 16px; }
  .content-container { padding: 0 16px; }
  .hero-actions { flex-direction: column; align-items: center; }
}
