* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  background: #6e7d3b url('images/bg.jpg') repeat;
  min-height: 100%;
}
body {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333;
  line-height: 1.5;
  min-height: 100vh;
  background: transparent;
}
a { color: #1E6074; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Top bar */
.top-bar {
  display: flex;
  justify-content: center;
  padding: 18px 0 24px;
}
.top-bar-image { height: 80px; width: auto; }

/* Sheet */
.sheet {
  background: #fff;
  max-width: 640px;
  margin: 0 auto 40px;
  padding: 24px 36px 40px;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.25);
}

/* Hero */
.hero { margin: 0 0 24px; }
.hero img {
  display: block;
  width: 100%;
  height: auto;
}

/* Title */
.page-title {
  color: #F7941D;
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  margin: 0 0 16px;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.lede {
  color: #555;
  text-align: center;
  font-size: 15px;
  max-width: 520px;
  margin: 0 auto 32px;
}
.lede strong { color: #1E6074; }

/* Cards */
.card {
  display: block;
  position: relative;
  background: #fff;
  border: 3px solid #989898;
  padding: 20px 24px 16px;
  margin-bottom: 24px;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.card:hover {
  text-decoration: none;
  border-color: #1E6074;
  box-shadow: 0 10px 26px rgba(30,96,116,0.25);
  transform: translateY(-2px);
}

/* Ribbon */
.ribbon {
  position: absolute;
  top: 12px; right: -40px;
  width: 140px;
  background: #F7941D;
  color: #fff;
  text-align: center;
  transform: rotate(45deg);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 6px 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  pointer-events: none;
}

.card h2 {
  color: #F7941D;
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 4px;
}
.card-copy {
  color: #555;
  font-size: 14px;
  margin: 0 0 14px;
}

/* Progress */
.progress {
  width: 100%;
  height: 10px;
  background: #eee;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 12px;
}
.progress-bar {
  height: 100%;
  background: #1E6074;
  transition: width .6s ease;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  text-align: center;
  padding: 6px 0 10px;
  margin-bottom: 10px;
}
.stat-num {
  font-size: 15px;
  font-weight: 800;
  color: #333;
}
.stat-lbl {
  font-size: 11px;
  text-transform: none;
  letter-spacing: 0;
  color: #888;
  font-weight: 700;
}

/* Marquee */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 6px 0 2px;
  border-top: 1px solid #eee;
  height: 30px;
}
.marquee-track {
  display: inline-flex;
  gap: 22px;
  animation: scroll-marquee 46s linear infinite;
  will-change: transform;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #666;
  font-weight: 600;
}
.marquee-track img {
  height: 14px;
  width: auto;
}
@keyframes scroll-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Support line */
.support-line {
  text-align: center;
  color: #666;
  font-size: 13px;
  margin: 20px 0 0;
}
.support-line a { color: #F7941D; font-weight: 700; }

/* Footer */
.site-footer {
  background: #2b2b2b;
  color: #ccc;
  padding: 36px 20px 28px;
  text-align: center;
}
.footer-inner { max-width: 640px; margin: 0 auto; }
.footer-title {
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
  font-size: 16px;
}
.site-footer p { margin: 2px 0; font-size: 13px; }
.copyright { margin-top: 14px !important; color: #888; font-size: 12px; }

@media (max-width: 700px) {
  .sheet { margin: 0 12px 24px; padding: 16px 18px 28px; }
  .page-title { font-size: 30px; }
}
