/* Shared styles for product about pages (tinytoolsstack.com/<product>).
   Each page sets its own --accent. Same warm-parchment editorial system as the hub.
   Self-contained: does NOT depend on /style.css (the legal pages). */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600&display=swap');

:root{
  --bg:#ece9e3; --card:#e0dcd4; --surface:#f4f1ec;
  --ink:#1a1a18; --body:#33302b; --muted:#6b6962; --subtle:#9c9890;
  --border:rgba(26,26,24,.1); --border-mid:rgba(26,26,24,.16);
  --clay:#8a4a3a; --accent:#8a4a3a;
  --serif:'DM Serif Display',Georgia,serif; --sans:'DM Sans',-apple-system,system-ui,sans-serif;
}
*{box-sizing:border-box;margin:0;padding:0}
body{font-family:var(--sans);color:var(--body);line-height:1.6;-webkit-font-smoothing:antialiased;
  background:radial-gradient(125% 120% at 18% 0%,#f5f1ea 0%,#ece9e3 55%,#e4ded3 100%);min-height:100vh}
/* 920px = the tinytoolsstack standard content width (matches Tabloft + the hub family).
   Do NOT narrow this below ~900px: a single column under ~880px floats narrow on a
   desktop viewport and reads as unfinished. See ~/.claude/rules/web/page-width.md. */
.wrap{max-width:920px;margin:0 auto;padding:0 24px}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}

/* top bar */
.top{display:flex;align-items:center;justify-content:space-between;padding:26px 0 0;gap:16px}
.brand{display:flex;align-items:center;gap:10px;text-decoration:none;min-width:0}
.brand .logo{width:34px;height:34px;flex:none}
.brand b{font-family:var(--serif);font-weight:400;font-size:20px;letter-spacing:-0.01em;color:var(--ink)}
.brand .back{font-size:12.5px;color:var(--subtle);margin-left:2px}
.feedback{color:var(--clay);text-decoration:none;font-weight:600;font-size:14px;white-space:nowrap;
  display:inline-flex;align-items:center;gap:7px;padding:8px 14px;border-radius:100px;background:var(--surface)}
.feedback:hover{background:#e9e3d7}

/* hero */
.hero{padding:54px 0 8px}
.product-head{display:flex;align-items:center;gap:16px;margin-bottom:26px}
.product-head .icon{width:58px;height:58px;border-radius:14px;flex:none;display:block}
.product-head .icon svg,.product-head .icon img{width:100%;height:100%;display:block;border-radius:14px}
.product-head .nm{font-family:var(--serif);font-size:27px;color:var(--ink);line-height:1.05;letter-spacing:-0.01em}
.product-head .kind{display:inline-flex;align-items:center;gap:6px;margin-top:6px;
  font-size:12px;font-weight:600;letter-spacing:.02em;color:var(--accent)}
.product-head .kind::before{content:'';width:6px;height:6px;border-radius:50%;background:var(--accent)}

.hero-q{font-family:var(--serif);font-style:italic;font-size:clamp(28px,4.6vw,42px);
  line-height:1.14;letter-spacing:-0.02em;color:var(--ink);
  border-bottom:2px solid var(--ink);padding-bottom:22px;margin-bottom:22px}
.lead{font-size:18px;line-height:1.58;color:var(--body);max-width:680px}
.lead b{color:var(--ink);font-weight:600}

/* CTA */
.cta-row{display:flex;align-items:center;gap:18px;flex-wrap:wrap;margin-top:30px}
.cta{display:inline-flex;align-items:center;gap:9px;background:var(--accent);color:var(--surface);
  text-decoration:none;font-weight:600;font-size:16px;padding:13px 26px;border-radius:100px;
  position:relative;overflow:hidden}
.cta:hover{filter:brightness(.92)}
.cta::after{content:'';position:absolute;top:0;left:0;width:55%;height:100%;pointer-events:none;
  background:linear-gradient(100deg,transparent,rgba(255,255,255,0.45),transparent);
  transform:translateX(-200%) skewX(-18deg);animation:shine 10s ease-in-out infinite}
@keyframes shine{0%{transform:translateX(-200%) skewX(-18deg)}55%,100%{transform:translateX(360%) skewX(-18deg)}}
.cta-text{color:var(--muted);font-size:14.5px;font-weight:500;text-decoration:underline;
  text-underline-offset:3px;text-decoration-color:var(--border-mid)}
.cta-text:hover{color:var(--ink)}
.note{font-size:13.5px;color:var(--subtle);margin-top:13px}
.note a{color:var(--muted);text-decoration:underline;text-underline-offset:2px;text-decoration-color:var(--border-mid)}
.note a:hover{color:var(--ink)}
/* brand wordmark: serif display font wherever "tinytoolsstack" is named */
.tts{font-family:var(--serif);letter-spacing:-0.01em}
@media (prefers-reduced-motion:reduce){.cta::after{animation:none}}

/* what it does */
.does-wrap{margin-top:52px}
.label{font-size:11px;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--subtle);
  margin:0 0 14px;display:flex;align-items:center;gap:12px}
.label::after{content:'';flex:1;height:1px;background:var(--border)}
.does{list-style:none;padding:0;margin:0;display:grid;gap:2px}
.does li{padding:9px 0 9px 28px;position:relative;font-size:15.5px;color:var(--body)}
.does li::before{content:'';position:absolute;left:4px;top:16px;width:8px;height:8px;border-radius:50%;
  background:var(--accent);opacity:.85}

/* footer */
footer{margin:60px 0 44px;padding-top:22px;border-top:1px solid var(--border);
  display:flex;justify-content:space-between;gap:14px;flex-wrap:wrap;font-size:13px;color:var(--subtle)}
footer a{color:var(--muted);text-decoration:none}
footer a:hover{color:var(--ink)}
