/* pyvine.com — shared styles. Same brand tokens as the app. */
:root {
  --forest:       #1F4D35;
  --forest-deep:  #143524;
  --forest-mid:   #2D6648;
  --spring:       #6BAA6E;
  --spring-light: #8FCB8F;
  --cream:        #F5F0E5;
  --cream-deep:   #EAE3D2;
  --cream-warm:   #FAF6EE;
  --soil:         #0E1A14;
  --stone:        #6B7A72;
  --mist:         #9CA8A1;
  --sun:          #C99A3F;
  --bloom:        #B85B6E;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--cream);
  color: var(--forest);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* Vine background — subtle */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(107, 170, 110, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(31, 77, 53, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 28px 80px;
  position: relative;
  z-index: 1;
}

/* Wordmark + nav */
.brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}

.wordmark {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 32px;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: -1px;
  text-decoration: none;
}

.nav { display: flex; gap: 24px; }
.nav a {
  color: var(--stone);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.nav a:hover { color: var(--forest); }

/* Hero (landing) */
.hero {
  text-align: center;
  padding: 60px 0 40px;
}
.hero .eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  color: var(--spring);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero h1 em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--spring);
}
.hero p {
  font-size: 18px;
  color: var(--stone);
  max-width: 540px;
  margin: 0 auto 32px;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest);
  color: var(--cream);
  padding: 14px 28px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s;
}
.cta:hover { transform: translateY(-2px); }
.cta-ghost {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
}

/* Long-form (privacy / terms) */
article h1 {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
article .lede {
  color: var(--stone);
  font-size: 17px;
  margin-bottom: 40px;
}
article h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 36px 0 12px;
  color: var(--forest);
}
article h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 24px 0 8px;
}
article p, article li {
  font-size: 16px;
  color: var(--forest);
  margin-bottom: 12px;
}
article ul, article ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
article a {
  color: var(--spring);
  text-decoration: underline;
  text-underline-offset: 3px;
}
article strong { color: var(--forest); }
article em { font-family: 'Fraunces', Georgia, serif; color: var(--spring); }

.callout {
  background: var(--cream-warm);
  border-left: 4px solid var(--spring);
  padding: 18px 20px;
  border-radius: 8px;
  margin: 24px 0;
  font-size: 15px;
  color: var(--forest);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}
th, td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--cream-deep);
  vertical-align: top;
}
th {
  background: var(--cream-warm);
  font-weight: 700;
  color: var(--forest);
}

footer {
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid var(--cream-deep);
  font-size: 13px;
  color: var(--stone);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
footer a { color: var(--stone); text-decoration: none; }
footer a:hover { color: var(--forest); }
