/* 60Ticks shared stylesheet - used by every product page. */

:root {
  --accent: #679b08;
  --accent-dark: #527a06;
  --link: #3282e6;
  --bg: #eee;
  --panel: #ffffff;
  --text: #2b2b2b;
  --muted: #6b6b6b;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", "Segoe UI", Segoe, Helvetica, Arial, "Lucida Grande", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---- Header ---- */
header.site-header {
  background: #1c1c1c;
  color: #fff;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
header.site-header .brand {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
header.site-header .brand:hover { text-decoration: none; }
header.site-header .tagline {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #aaa;
  margin-top: 2px;
}
header.site-header nav a {
  color: #ddd;
  margin-left: 20px;
  font-size: 14px;
}
header.site-header nav a:hover { color: #fff; }
header.site-header nav a.active { color: #fff; font-weight: 700; }

/* ---- Hero ---- */
.hero {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 24px 40px;
  text-align: center;
}
.hero-mascot {
  max-width: 320px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 0 auto 20px;
  display: block;
}
.hero h1 {
  font-size: 40px;
  font-weight: 300;
  margin: 0 0 16px;
}
.hero p.lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 28px;
}
.cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-secondary {
  background: #fff;
  color: var(--text);
  border: 2px solid #ccc;
}
.btn-secondary:hover { border-color: var(--accent); }
.cta-hint {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}

/* ---- Product section ---- */
section.product {
  max-width: 1000px;
  margin: 0 auto 48px;
  padding: 0 24px;
}
.panel {
  background: var(--panel);
  border-radius: 10px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
h2 {
  font-size: 26px;
  font-weight: 600;
  margin-top: 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 24px 0;
}
.feature-grid div {
  background: #f7f7f5;
  border-radius: 8px;
  padding: 16px 18px;
  font-size: 15px;
}
.callout {
  background: #fff8e6;
  border-left: 4px solid #e0a800;
  padding: 16px 20px;
  border-radius: 6px;
  font-size: 15px;
  margin: 24px 0;
}
.callout strong { color: #8a6400; }
.requirements {
  font-size: 14px;
  color: var(--muted);
  margin-top: 20px;
  font-style: italic;
}
.price-tag {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-dark);
}

/* ---- Screenshots ---- */
.shots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 24px 0 8px;
}
.shots figure {
  margin: 0;
  background: #f7f7f5;
  border: 1px solid #e3e3e0;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
}
.shots a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
  cursor: zoom-in;
  background: #fff;
  min-height: 190px;
}
.shots img {
  max-width: 100%;
  max-height: 190px;
  width: auto;
  height: auto;
  display: block;
  border-radius: 4px;
  transition: opacity .15s ease;
}
.shots a:hover img { opacity: .85; }
.shots figcaption {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  text-align: center;
}
.shots figcaption .zoom {
  color: #a9a9a9;
  font-style: italic;
}

/* ---- "More tools" grid (home page) ---- */
section.more-tools {
  max-width: 1000px;
  margin: 0 auto 48px;
  padding: 0 24px;
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 20px;
}
.tool-card {
  background: var(--panel);
  border-radius: 10px;
  padding: 22px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}
.tool-card h3 { margin: 0 0 6px; font-size: 18px; }
.tool-card p { margin: 0 0 16px; color: var(--muted); font-size: 14px; flex-grow: 1; }
.tool-card .tool-cta { font-weight: 600; }

/* ---- Secondary / single-row panel ---- */
section.secondary {
  max-width: 1000px;
  margin: 0 auto 40px;
  padding: 0 24px;
}
.secondary .panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.secondary h3 { margin: 0 0 6px; font-size: 20px; }
.secondary p { margin: 0; color: var(--muted); font-size: 14px; }

.badge-soon {
  display: inline-block;
  background: #ddd;
  color: #555;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: 0.5px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ---- Footer ---- */
footer {
  text-align: center;
  padding: 30px 24px 50px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 600px) {
  .hero h1 { font-size: 30px; }
  header.site-header nav a { margin: 0 14px 0 0; }
}
