/* Mindful Block — Landing Page */

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

body {
  font-family: "Source Sans 3", system-ui, -apple-system, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #17324a;
  background: #f6ffff;
  -webkit-font-smoothing: antialiased;
}

.page {
  max-width: 680px;
  margin: 0 auto;
  padding: 1rem 1.5rem 4rem;
}

/* Header */

header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.wordmark-icon {
  width: 28px;
  height: 28px;
  display: block;
}

.wordmark-text {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #17324a;
}

/* Typography */

h2 {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #17324a;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 0.75rem;
}

p:last-of-type {
  margin-bottom: 0;
}

a {
  color: #2477b3;
}

.tagline {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #17324a;
  margin-bottom: 1.5rem;
}

.intro {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.secondary {
  color: #4a6578;
  margin-bottom: 1.5rem;
}

/* Button */

.btn {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  background: #2477b3;
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.btn:hover {
  background: #1a5c8a;
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: #2477b3;
  border: 1px solid #2477b3;
}

.btn--outline:hover {
  background: #f0f7ff;
  color: #2477b3;
}

/* Images */

img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Lists */

ul {
  list-style: disc;
  padding-left: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* Divider */

hr {
  border: none;
  border-top: 1px solid #c4d4e0;
  margin: 2.5rem 0;
}

/* Iframe */

iframe {
  display: block;
  width: 100%;
  margin-top: 0.75rem;
}

/* Privacy collapsible */

details {
  margin-top: 0.5rem;
}

details summary {
  cursor: pointer;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #4a6578;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  user-select: none;
  padding: 0.25rem 0;
}

details summary::-webkit-details-marker {
  display: none;
}

details summary::before {
  content: "▶";
  font-size: 0.5rem;
  color: #4a6578;
  display: inline-block;
  transition: transform 0.15s;
  flex-shrink: 0;
}

details[open] summary::before {
  transform: rotate(90deg);
}

.privacy-text {
  margin-top: 1rem;
}

.privacy-text p {
  font-size: 15px;
  color: #4a6578;
  margin-bottom: 0.75rem;
}

.privacy-text p:last-child {
  margin-bottom: 0;
}

/* Footer */

footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #c4d4e0;
  font-size: 0.875rem;
  color: #6a8899;
  text-align: center;
}

footer p {
  margin-bottom: 0;
  color: #6a8899;
}

footer a {
  color: #6a8899;
}

/* Ko-fi widget — move to right side */

.floatingchat-container-wrap,
.floatingchat-container-wrap-mobi {
  left: auto !important;
  right: 12px !important;
}

.floatingchat-chat-window,
.floatingchat-chat-window-mobi {
  left: auto !important;
  right: 0 !important;
}

/* Mobile */

@media (max-width: 480px) {
  .page {
    padding: 2.5rem 1.25rem;
  }

  .tagline {
    font-size: 1.2rem;
  }
}
