/* ==========================================================================
   Winnowed marketing site
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght,SOFT@9..144,300..900,0..100&family=Inter:wght@400;500;600&display=swap');

:root {
  /* Canvas */
  --bg: #FAF5EC;
  --text: #1C1C1E;
  --text-muted: #6E6A60;
  --text-quiet: #A6A195;
  --rule: rgba(28, 28, 30, 0.08);

  /* 5-stage Winnowed palette */
  --sage: #7A9B5E;
  --sage-deep: #4A6B3E;
  --wheat: #D4B56A;
  --terracotta: #D4895A;
  --rust: #A03D1E;
  --burgundy: #6B1A1E;

  /* Type */
  --serif: "Fraunces", "Times New Roman", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Ambient gradient wash — a whisper of the 5-stage palette.
   Positioned absolutely so it doesn't affect layout. */
.wash {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
  background:
    radial-gradient(ellipse 900px 500px at 15% -10%, rgba(122, 155, 94, 0.18), transparent 60%),
    radial-gradient(ellipse 700px 400px at 90% 8%, rgba(212, 181, 106, 0.15), transparent 60%),
    radial-gradient(ellipse 800px 500px at 50% 110%, rgba(107, 26, 30, 0.10), transparent 60%);
}

/* Layout */
.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 32px 96px;
}

/* Brand lockup — tiny leaf + name */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  margin-bottom: 88px;
}

.brand-leaf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-deep), var(--sage));
  color: var(--bg);
}

.brand-leaf svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  font-variation-settings: "opsz" 14, "SOFT" 30;
  color: var(--text);
  letter-spacing: 0.005em;
}

/* Hero */
.hero-tag {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-quiet);
  margin-bottom: 24px;
}

.hero {
  font-family: var(--serif);
  font-size: clamp(44px, 7.6vw, 76px);
  font-weight: 400;
  font-variation-settings: "opsz" 96, "SOFT" 40;
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: var(--text);
  margin-bottom: 24px;
  text-wrap: balance;
}

.hero em {
  font-style: italic;
  font-variation-settings: "opsz" 96, "SOFT" 100;
  color: var(--rust);
}

.hero-sub {
  font-family: var(--sans);
  font-size: 19px;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 30em;
  margin-bottom: 40px;
}

/* Waitlist / App Store badge */
.store-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(28, 28, 30, 0.04);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.store-note-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 4px rgba(122, 155, 94, 0.2);
}

/* Section rhythm */
.sec {
  margin-top: 120px;
}

.sec-label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-quiet);
  margin-bottom: 24px;
}

/* Body prose */
.prose {
  font-family: var(--sans);
  font-size: 19px;
  line-height: 1.65;
  color: var(--text);
  max-width: 34em;
}

.prose p + p {
  margin-top: 1.2em;
}

.prose .lede {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  font-variation-settings: "opsz" 48, "SOFT" 50;
  line-height: 1.4;
  color: var(--text);
  letter-spacing: -0.005em;
  margin-bottom: 1.4em;
}

.prose strong {
  font-weight: 600;
  color: var(--text);
}

.prose em {
  font-style: italic;
}

/* Screenshot row — offset editorial layout */
.shots {
  margin-top: 88px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 32px;
  align-items: start;
}

.shot {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.shot:nth-child(1) { grid-column: 1; }
.shot:nth-child(2) { grid-column: 2; margin-top: 56px; }
.shot:nth-child(3) { grid-column: 1 / 3; max-width: 340px; margin: 40px auto 0; }

.shot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 16px 40px rgba(0, 0, 0, 0.10);
}

.shot-caption {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  font-variation-settings: "opsz" 18, "SOFT" 40;
  color: var(--text);
  line-height: 1.4;
}

.shot-caption-sub {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Features list — quiet, numbered */
.features {
  margin-top: 32px;
  display: grid;
  gap: 32px;
  max-width: 34em;
}

.feature {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: baseline;
}

.feature-num {
  font-family: var(--serif);
  font-size: 15px;
  font-variation-settings: "opsz" 18;
  font-feature-settings: "onum";
  color: var(--text-quiet);
  padding-top: 4px;
}

.feature-title {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  font-variation-settings: "opsz" 32, "SOFT" 40;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}

.feature-body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-muted);
}

/* Footer */
.footer {
  margin-top: 140px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--text-muted);
}

.footer a {
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 120ms ease, color 120ms ease;
}

.footer a:hover {
  color: var(--text);
  border-bottom-color: var(--rule);
}

.footer-links {
  display: flex;
  gap: 24px;
}

/* Long-form page (privacy, support) */
.longform h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 60px);
  font-weight: 400;
  font-variation-settings: "opsz" 72, "SOFT" 40;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  text-wrap: balance;
}

.longform .meta {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-quiet);
  margin-bottom: 48px;
  letter-spacing: 0.02em;
}

.longform h2 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  font-variation-settings: "opsz" 32, "SOFT" 40;
  line-height: 1.3;
  margin-top: 48px;
  margin-bottom: 12px;
  color: var(--text);
  letter-spacing: -0.005em;
}

.longform p {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 1.1em;
  max-width: 34em;
}

.longform p.quiet {
  color: var(--text-muted);
}

.longform ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2em 0;
  max-width: 34em;
}

.longform li {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  padding-left: 22px;
  position: relative;
  margin-bottom: 4px;
}

.longform li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--text-quiet);
}

.longform a {
  color: var(--rust);
  text-decoration: none;
  border-bottom: 1px solid rgba(160, 61, 30, 0.25);
  transition: border-color 120ms ease;
}

.longform a:hover {
  border-bottom-color: var(--rust);
}

.longform .signoff {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--text-muted);
  font-variation-settings: "opsz" 24;
}

/* Mobile tweaks */
@media (max-width: 560px) {
  .wrap {
    padding: 40px 22px 72px;
  }
  .brand {
    margin-bottom: 56px;
  }
  .sec {
    margin-top: 88px;
  }
  .shots {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .shot:nth-child(1),
  .shot:nth-child(2),
  .shot:nth-child(3) {
    grid-column: 1;
    margin: 0;
    max-width: 100%;
  }
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
