/* ── BACKGROUND TOMATOES ── */
.bg-tomatoes {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* ── HEADER ── */
.site-header {
  background: var(--red);
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.18);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 20px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.header-logo {
  background: #fff;
  border-radius: 8px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 24px;
  display: block;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-btn {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.header-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ── HERO ── */
.hero {
  background: var(--red);
  position: relative;
  z-index: 1;
  padding: 44px 20px 0;
  text-align: center;
  overflow: hidden;
}

.hero-tomato-wrap {
  display: inline-block;
  margin-bottom: 20px;
}

.hero-tomato {
  animation: tomatoFloat 3.5s ease-in-out infinite;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.22));
  display: block;
}

.hero h1 {
  font-size: clamp(30px, 6vw, 46px);
  font-weight: 700;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 12px;
}

.hero-sub {
  font-size: clamp(14px, 3vw, 16px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.hero-instruction {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  font-style: italic;
  margin-bottom: 0;
}

.hero-wave {
  width: 100%;
  line-height: 0;
  margin-top: 28px;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ── PAGE CONTENT ── */
.page-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 20px 80px;
  position: relative;
  z-index: 1;
}

@media (min-width: 680px) {
  .page-content { padding: 0 40px 80px; }
}

/* ── BACK TO DASHBOARD LINK ── */
.back-to-dash {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--warm-gray);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0;
  margin-bottom: 4px;
  transition: color 0.2s;
}

.back-to-dash:hover { color: var(--red); }

/* ── FOOTER ── */
.site-footer {
  text-align: center;
  padding: 36px 20px 28px;
  border-top: 2px solid rgba(232, 53, 42, 0.22);
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.footer-tomato-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
  align-items: center;
}

.footer-logo {
  height: 22px;
  margin: 0 auto 10px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--warm-gray);
  margin-bottom: 6px;
}

.footer-privacy {
  font-size: 12px;
  color: #aaa;
  font-style: italic;
}

/* ── SECTION NAV (for planner back button) ── */
.section-back-bar {
  padding: 16px 20px 0;
  max-width: 680px;
  margin: 0 auto;
}
