/*
Theme Name: MindMinutes
Theme URI: https://mindminutes.in
Author: MindMinutes Team
Description: A warm, calming wellness landing page theme for the MindMinutes daily mental check-in platform. Built for early access signups, email collection and community building.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: wellness, landing-page, one-page, custom-colors, custom-logo, featured-images, full-width-template, responsive-layout, translation-ready
Text Domain: mindminutes
*/

/* ── VARIABLES ── */
:root {
  --bg: #fdf8f3;
  --white: #ffffff;
  --dark: #1a1208;
  --text: #2d2416;
  --muted: #7a6e62;
  --muted2: #b0a898;
  --border: #ede4d8;
  --border2: #ddd0c0;
  --teal: #0d9488;
  --teal-l: #ccfbf1;
  --teal-xl: #f0fdfb;
  --amber: #d97706;
  --amber-l: #fef3c7;
  --rose: #e11d48;
  --rose-l: #ffe4e6;
  --indigo: #4f46e5;
  --indigo-l: #eef2ff;
  --green: #16a34a;
  --green-l: #dcfce7;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Epilogue', sans-serif;
  --sh: 0 4px 24px rgba(13, 148, 136, .10);
  --sh2: 0 16px 56px rgba(13, 148, 136, .15);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
}
p { margin-bottom: 1rem; }

/* ── LAYOUT ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 760px; }
.container--mid { max-width: 900px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.btn--teal { background: var(--teal); color: #fff; }
.btn--teal:hover { background: #0f766e; box-shadow: 0 4px 16px rgba(13,148,136,.35); color: #fff; }
.btn--ghost { background: none; border: 1.5px solid var(--border2); color: var(--text); }
.btn--ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn--gradient { background: linear-gradient(135deg, var(--teal), #0891b2); color: #fff; }
.btn--gradient:hover { opacity: .9; transform: scale(1.02); }
.btn--dark { background: var(--dark); color: #fff; }
.btn--dark:hover { background: #2d2416; }
.btn--full { width: 100%; }

/* ── SECTION HELPERS ── */
.section { padding: 80px 24px; }
.section--white { background: var(--white); }
.section--bg { background: var(--bg); }
.section--dark { background: linear-gradient(135deg, var(--dark) 0%, #1a2a1a 50%, #0d1a2a 100%); }
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  text-align: center;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -1px;
  line-height: 1.2;
}
.section-title em { font-style: italic; color: var(--teal); }

/* ── NAVBAR ── */
.site-header {
  background: rgba(253, 248, 243, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 300;
  transition: background .3s;
}
.site-header .container {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-branding { display: flex; align-items: center; gap: 10px; }
.site-logo-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--teal), #0891b2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.site-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}
.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 4px;
  margin: 0; padding: 0;
}
.main-navigation a {
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  border-radius: 8px;
  transition: all .15s;
  display: block;
}
.main-navigation a:hover,
.main-navigation .current-menu-item > a {
  color: var(--teal);
  background: var(--teal-xl);
}
.header-cta { display: flex; gap: 10px; align-items: center; }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  width: 20px; height: 2px;
  background: var(--dark);
  display: block;
  border-radius: 2px;
  transition: .3s;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  z-index: 299;
  padding: 20px 24px;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 13px 0;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  display: block;
}

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 24px 72px;
  text-align: center;
  background: var(--bg);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-bg-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(var(--border) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: .5;
}
.hero-bg-glow {
  position: absolute;
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(13,148,136,.08), transparent 65%);
  top: -100px; left: 50%;
  transform: translateX(-50%);
}
.hero-bg-orb1 {
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(217,119,6,.07), transparent);
  top: -60px; right: 5%;
}
.hero-bg-orb2 {
  position: absolute;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(79,70,229,.06), transparent);
  bottom: 0; left: 5%;
}
.hero-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 7px 18px 7px 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 28px;
  box-shadow: var(--sh);
  animation: fadeUp .6s ease both;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(13,148,136,.4); }
  60% { box-shadow: 0 0 0 6px rgba(13,148,136,0); }
}
.hero h1 {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.06;
  color: var(--dark);
  margin-bottom: 22px;
  letter-spacing: -2px;
  animation: fadeUp .6s .1s ease both;
}
.hero h1 .text-italic { font-style: italic; color: var(--teal); }
.hero h1 .text-underline {
  position: relative;
  display: inline-block;
}
.hero h1 .text-underline::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--amber), var(--rose));
  border-radius: 2px;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 44px;
  line-height: 1.8;
  animation: fadeUp .6s .15s ease both;
}
.hero-sub strong { color: var(--text); font-weight: 700; }

/* ── SIGNUP FORM ── */
.signup-wrap {
  max-width: 520px;
  margin: 0 auto;
  animation: fadeUp .6s .2s ease both;
}
.signup-box {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 10px;
  box-shadow: var(--sh2);
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.signup-box input {
  flex: 1;
  padding: 13px 18px;
  border: none;
  background: var(--bg);
  border-radius: 13px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text);
  outline: none;
  font-weight: 500;
}
.signup-box input::placeholder { color: var(--muted2); }
.signup-box input:focus { background: #f0fdfb; }
.signup-box .btn {
  padding: 13px 24px;
  border-radius: 13px;
  white-space: nowrap;
}
.signup-note {
  font-size: 12px;
  color: var(--muted2);
  text-align: center;
  margin-bottom: 14px;
}
.signup-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  justify-content: center;
  width: 100%;
}
.counter-avatars {
  display: flex;
}
.counter-avatars span {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.counter-avatars span:first-child { margin-left: 0; }

/* ── STATS ── */
.stats-strip {
  background: linear-gradient(135deg, var(--dark) 0%, #1a0a3e 100%);
  padding: 28px 24px;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.stat-item { text-align: center; color: #fff; }
.stat-number {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}
.stat-number em { color: var(--amber); font-style: normal; }
.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.1); }

/* ── HOW IT WORKS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 44px; left: 16%; right: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-l), var(--teal), var(--teal-l));
  z-index: 0;
}
.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-icon {
  width: 88px; height: 88px;
  border-radius: 24px;
  margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  position: relative;
  border: 2px solid var(--border);
  background: var(--white);
}
.step-icon::after {
  content: attr(data-step);
  position: absolute;
  top: -10px; right: -10px;
  width: 24px; height: 24px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans);
}
.step-item h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-item p { font-size: 14px; color: var(--muted); line-height: 1.75; max-width: 240px; margin: 0 auto; }

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: all .25s;
}
.feature-card:hover {
  box-shadow: var(--sh2);
  transform: translateY(-4px);
  border-color: var(--teal);
}
.feature-card--wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.feature-card--wide2 {
  grid-column: span 2;
}
.feature-icon { font-size: 36px; margin-bottom: 18px; }
.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -.3px;
}
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 0; }

/* Feature visual */
.feature-visual {
  background: var(--bg);
  border-radius: 16px;
  padding: 24px;
  border: 1.5px solid var(--border);
}
.checkin-preview { display: flex; flex-direction: column; gap: 14px; }
.cp-question { font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.cp-options { display: flex; gap: 8px; flex-wrap: wrap; }
.cp-opt {
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  border: 1.5px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
}
.cp-opt--selected { border-color: var(--teal); background: var(--teal-l); color: var(--teal); }
.ai-tip-box {
  background: linear-gradient(135deg, var(--teal-xl), #fff);
  border: 1.5px solid var(--teal-l);
  border-radius: 14px;
  padding: 16px;
}
.ai-tip-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}
.ai-tip-text { font-size: 13px; color: var(--text); line-height: 1.65; font-style: italic; }

/* Mood bars */
.mood-bar { display: flex; flex-direction: column; gap: 10px; }
.mood-row { display: flex; align-items: center; gap: 12px; }
.mood-day {
  font-size: 12px; font-weight: 700;
  color: var(--muted); width: 32px;
  text-align: right; flex-shrink: 0;
}
.mood-track {
  flex: 1; height: 10px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}
.mood-fill {
  height: 100%;
  border-radius: 100px;
  transition: width .8s ease;
}
.mood-val {
  font-size: 12px; font-weight: 800;
  color: var(--dark); width: 32px; flex-shrink: 0;
}

/* WA mockup */
.wa-bubble {
  background: #25d366;
  border-radius: 12px 12px 12px 0;
  padding: 12px 16px;
  color: #fff;
  font-size: 13px;
  max-width: 260px;
  line-height: 1.6;
  margin-bottom: 8px;
}
.wa-time { font-size: 11px; color: var(--muted2); text-align: right; }
.skill-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 4px; }
.skill-tag {
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  transition: all .25s;
}
.testimonial-card:hover { box-shadow: var(--sh); transform: translateY(-3px); }
.testimonial-stars { color: var(--amber); font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800;
  font-family: var(--serif);
  border: 2px solid var(--border);
  flex-shrink: 0;
}
.author-name { font-size: 13px; font-weight: 700; color: var(--dark); }
.author-role { font-size: 12px; color: var(--muted); }

/* ── EARLY ACCESS ── */
.early-access-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 48px;
}
.ea-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  transition: all .25s;
}
.ea-card:hover { box-shadow: var(--sh2); transform: translateY(-4px); }
.ea-card--featured { border-color: var(--teal); border-width: 2px; box-shadow: var(--sh2); }
.ea-icon { font-size: 40px; margin-bottom: 16px; }
.ea-card h3 { font-size: 18px; margin-bottom: 10px; }
.ea-card p { font-size: 14px; color: var(--muted); line-height: 1.75; margin: 0; }
.ea-badge {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 14px;
  background: var(--teal-l);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  color: var(--teal);
}
.spots-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.spots-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.spots-title { font-size: 14px; font-weight: 700; color: var(--dark); }
.spots-count { font-size: 14px; font-weight: 800; color: var(--teal); }
.spots-track {
  height: 12px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 10px;
}
.spots-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), #0891b2);
  border-radius: 100px;
  transition: width 1s ease;
}
.spots-sub { font-size: 12px; color: var(--muted); text-align: center; margin-bottom: 16px; }
.spots-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--teal), #0891b2);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: opacity .2s;
}
.spots-btn:hover { opacity: .9; }

/* ── FAQ ── */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--teal); }
.faq-question {
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--bg);
  transition: background .2s, color .2s;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--sans);
}
.faq-item.open .faq-question { background: var(--teal-xl); color: var(--teal); }
.faq-icon { font-size: 18px; transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s;
  background: var(--white);
}
.faq-item.open .faq-answer { max-height: 200px; padding: 0 22px 20px; }
.faq-answer p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 0; padding-top: 16px; }

/* ── FINAL CTA ── */
.final-cta {
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-cta::before {
  content: '';
  position: absolute;
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(13,148,136,.2), transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.final-inner { max-width: 600px; margin: 0 auto; position: relative; z-index: 1; }
.final-cta h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -1.5px;
}
.final-cta h2 em { font-style: italic; color: #5eead4; }
.final-cta p { font-size: 16px; color: rgba(255,255,255,.55); margin-bottom: 40px; line-height: 1.75; }
.final-signup-box {
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 20px;
  padding: 10px;
  display: flex;
  gap: 8px;
  max-width: 460px;
  margin: 0 auto 16px;
}
.final-signup-box input {
  flex: 1;
  padding: 13px 18px;
  background: rgba(255,255,255,.07);
  border: none;
  border-radius: 13px;
  font-family: var(--sans);
  font-size: 14px;
  color: #fff;
  outline: none;
}
.final-signup-box input::placeholder { color: rgba(255,255,255,.35); }
.final-signup-box .btn { padding: 13px 24px; border-radius: 13px; white-space: nowrap; }
.final-note {
  font-size: 12px;
  color: rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--dark);
  color: #fff;
  padding: 52px 24px 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 28px;
}
.footer-brand-logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-brand-desc { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.85; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 8px; }
.footer-social-btn {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,.45);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.footer-social-btn:hover { background: var(--teal); border-color: var(--teal); color: #fff; }
.footer-col h5 {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.25);
  margin-bottom: 18px;
  font-family: var(--sans);
}
.footer-col a {
  display: block; font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-bottom: 12px;
  transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,.25);
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.footer-bottom a { color: rgba(255,255,255,.25); margin-left: 14px; transition: color .2s; }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* ── TOAST ── */
.mm-toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--dark);
  color: #fff;
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 14px; font-weight: 700;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  z-index: 999;
  transition: transform .4s ease;
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
  font-family: var(--sans);
}
.mm-toast.show { transform: translateX(-50%) translateY(0); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.anim {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s, transform .6s;
}
.anim.in { opacity: 1; transform: none; }

/* ── WORDPRESS SPECIFICS ── */
.wp-block-image img { border-radius: 12px; }
.aligncenter { text-align: center; }
.alignleft { float: left; margin-right: 20px; }
.alignright { float: right; margin-left: 20px; }
.screen-reader-text {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .steps-grid::before { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card--wide { grid-column: 1; grid-template-columns: 1fr; }
  .feature-card--wide2 { grid-column: 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .early-access-cards { grid-template-columns: 1fr; max-width: 400px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .main-navigation, .header-cta .btn--ghost { display: none; }
  .menu-toggle { display: flex; }
  .signup-box { flex-direction: column; }
  .final-signup-box { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-inner { justify-content: center; gap: 24px; }
  .stat-divider { display: none; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 34px; letter-spacing: -1.5px; }
  .section { padding: 56px 16px; }
}
