/* shaper.xyz public site - hand-written CSS, no framework.
   Design tokens follow windzen.com's stylesheet (green/gold accents, white
   cards on a near-white ground) so the two sites read as one family. The
   top bar is deliberately darker than windzen.com's, to carry the app's
   grey identity. Font: Inter (self-hosted, SIL OFL), no third-party requests. */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/assets/fonts/inter-latin.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/assets/fonts/inter-latin-ext.woff2) format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --primary-green: #00965e;
  --accent-gold: #b5c234;
  --bg-light: #fafafa;
  --text-dark: #333333;
  --text-muted: #666666;
  --card-bg: #ffffff;
  --border-color: #eeeeee;
  --bar-bg: #2b3138;      /* the darker top bar */
  --bar-text: #e6e9ec;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  background: var(--bg-light);
  color: var(--text-dark);
  font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

img { max-width: 100%; height: auto; }

a { color: var(--primary-green); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- top bar ---- */

.site-header {
  background: var(--bar-bg);
  color: var(--bar-text);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 18px;
}

.brand img { border-radius: 4px; }
.brand .tld { color: var(--accent-gold); font-weight: 500; }

.site-header nav { display: flex; flex-wrap: wrap; gap: 4px 22px; font-size: 14px; }
.site-header nav a { color: var(--bar-text); text-decoration: none; }
.site-header nav a:hover { color: #ffffff; text-decoration: underline; text-underline-offset: 4px; }

/* ---- footer (same content style as windzen.com) ---- */

.site-footer {
  margin-top: 60px;
  padding: 28px 0;
  border-top: 1px solid var(--border-color);
  background: #ffffff;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

.site-footer p { margin: 2px 0; }
.muted { color: var(--text-muted); }

/* ---- content ---- */

main { padding: 40px 0; }

h1 {
  font-size: 40px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111111;
  margin: 24px 0 12px;
}

h2 {
  font-size: 24px;
  font-weight: 600;
  color: #111111;
  margin: 44px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent-gold);
  display: inline-block;
}

p { margin: 8px 0; max-width: 70ch; }

.pitch {
  font-size: 20px;
  color: var(--text-muted);
  margin: 0 0 36px;
  max-width: 62ch;
}

/* ---- screenshot cards (windzen .card: white, green top border, soft shadow) ---- */

.shots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0;
}

.shot {
  background: var(--card-bg);
  border-radius: 6px;
  border-top: 4px solid var(--primary-green);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 12px;
}

.shot img { display: block; width: 100%; border-radius: 3px; }

.shot figcaption { font-size: 14px; color: var(--text-muted); padding: 10px 4px 2px; }

@media (max-width: 900px) {
  .shots { grid-template-columns: 1fr; }
}

/* ---- pill links and "coming soon" ---- */

.soon {
  display: inline-block;
  margin: 4px 8px 4px 0;
  padding: 6px 14px;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid var(--primary-green);
  color: var(--primary-green);
  background: #ffffff;
  text-decoration: none;
}

.soon:hover { background: var(--primary-green); color: #ffffff; }

/* ---- phone ---- */

@media (max-width: 600px) {
  h1 { font-size: 30px; }
  .pitch { font-size: 18px; }
  main { padding: 24px 0; }
}
