/* Still Want It? — web styles */

:root {
  --bg-app: #FFFDF5;
  --bg-surface: #FFFFFF;
  --bg-surface-warm: #F8F3E8;
  --text-primary: #12342F;
  --text-secondary: #4E665F;
  --text-tertiary: #7B8B84;
  --action-primary: #0B5A4C;
  --action-pressed: #073F36;
  --accent-sun: #F5C400;
  --accent-plum: #2B235F;
  --border-default: #D9DED2;
  --border-soft: #E8E7DF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background: var(--bg-app);
  color: var(--text-primary);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

/* Header / brand bar */
.brand-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-soft);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--action-primary);
}

.brand-mark {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: block;
}

.brand-name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.nav a:hover {
  color: var(--action-primary);
}

.nav a.active {
  color: var(--action-primary);
  font-weight: 600;
}

/* Headings */
h1 {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 8px;
}

h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 48px 0 16px;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 28px 0 12px;
}

.meta {
  color: var(--text-tertiary);
  font-size: 14px;
  margin-bottom: 36px;
}

/* Body */
p {
  margin-bottom: 16px;
}

ul, ol {
  margin: 0 0 20px 28px;
}

li {
  margin-bottom: 8px;
}

a {
  color: var(--action-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--action-pressed);
}

strong {
  font-weight: 700;
  color: var(--text-primary);
}

em {
  color: var(--text-secondary);
}

hr {
  border: none;
  border-top: 1px solid var(--border-soft);
  margin: 48px 0;
}

blockquote {
  border-left: 3px solid var(--accent-sun);
  padding: 4px 20px;
  margin: 24px 0;
  color: var(--text-secondary);
  font-style: italic;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
}

th, td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border-soft);
}

th {
  font-weight: 600;
  background: var(--bg-surface-warm);
}

/* Inline code (only used rarely) */
code {
  font-family: 'SF Mono', Menlo, Monaco, monospace;
  font-size: 14px;
  background: var(--bg-surface-warm);
  padding: 2px 6px;
  border-radius: 4px;
}

/* Footer */
footer {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
  font-size: 14px;
  color: var(--text-tertiary);
  text-align: center;
}

footer a {
  color: var(--text-secondary);
  text-decoration: none;
  margin: 0 12px;
}

footer a:hover {
  color: var(--action-primary);
}

footer .footer-line {
  margin-bottom: 12px;
}

/* Hero — landing only */
.hero {
  text-align: center;
  padding: 60px 0 40px;
}

.hero-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  line-height: 1.05;
}

.hero p.lead {
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.55;
}

.app-store-cta {
  display: inline-block;
  padding: 14px 28px;
  background: var(--action-primary);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: background 200ms;
}

.app-store-cta:hover {
  background: var(--action-pressed);
  color: white;
}

.coming-soon {
  display: inline-block;
  padding: 14px 28px;
  background: var(--bg-surface-warm);
  color: var(--text-secondary);
  border: 1px solid var(--border-default);
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 600px) {
  .container {
    padding: 32px 20px 60px;
  }

  .brand-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .nav {
    gap: 18px;
  }

  h1 {
    font-size: 32px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p.lead {
    font-size: 17px;
  }
}
