:root {
  --paper: #faf7f0;
  --paper-2: #f3ede0;
  --ink: #1d1b17;
  --ink-2: #4a463d;
  --muted: #8a8578;
  --line: #e6dfcd;
  --accent: #e87037;
  --accent-2: #c85820;
  --shadow: 0 30px 60px -20px rgba(40, 30, 10, 0.25);
  --radius: 18px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  line-height: 1.55;
}

body {
  background-image:
    radial-gradient(1000px 500px at 85% -10%, rgba(197, 80, 44, 0.08), transparent 60%),
    radial-gradient(800px 400px at 0% 30%, rgba(197, 80, 44, 0.05), transparent 60%);
}

img { max-width: 100%; display: block; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Nav ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: saturate(180%) blur(14px);
  background: rgba(250, 247, 240, 0.75);
  border-bottom: 1px solid rgba(230, 223, 205, 0.6);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.brand img { width: 32px; height: 32px; border-radius: 8px; }
.nav nav { display: flex; gap: 28px; align-items: center; }
.nav nav a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}
.nav nav a:hover { color: var(--ink); }
.nav nav a.btn-small,
.nav nav a.btn-small:hover { color: #fff; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 10px 30px -10px rgba(29, 27, 23, 0.5);
}
.btn-primary:hover {
  transform: translateY(-1px);
  background: #000;
}
.app-store-btn {
  display: inline-block;
  transition: transform .15s ease, filter .15s ease;
}
.app-store-btn img {
  height: 56px;
  width: auto;
  display: block;
}
.app-store-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.btn-small {
  padding: 10px 18px;
  font-size: 14px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px -10px rgba(197, 80, 44, 0.6);
}
.btn-small:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
}

/* ---- Hero ---- */
.hero { padding: 60px 0 40px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 14px;
}
.hero h1 {
  font-family: 'Caveat', cursive;
  font-size: clamp(56px, 8vw, 108px);
  line-height: 0.95;
  margin: 0 0 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.lede {
  font-size: 20px;
  color: var(--ink-2);
  max-width: 520px;
  margin: 0 0 32px;
}
.cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.free-note {
  font-size: 14px;
  color: var(--muted);
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual img {
  max-height: 620px;
  width: auto;
  filter: drop-shadow(0 40px 50px rgba(40, 30, 10, 0.22));
}

/* ---- Pitch ---- */
.pitch {
  padding: 50px 0 20px;
  text-align: center;
}
.pitch p {
  font-size: 22px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 780px;
  margin: 0 auto;
}

/* ---- Features ---- */
.features { padding: 80px 0 40px; }
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}
.feature.reverse .feature-copy { order: 2; }
.feature-copy h2 {
  font-family: 'Caveat', cursive;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1;
  margin: 0 0 18px;
}
.feature-copy p {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 480px;
  margin: 0;
}
.feature-shot {
  display: flex;
  justify-content: center;
}
.feature-shot img {
  max-height: 620px;
}

/* ---- Free strip ---- */
.free-strip {
  padding: 60px 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  margin-top: 40px;
}
.free-strip h3 {
  font-family: 'Caveat', cursive;
  font-size: 48px;
  margin: 0 0 28px;
}
.free-strip ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  max-width: 860px;
  margin: 0 auto;
}
.free-strip li {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink-2);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
}

/* ---- Premium ---- */
.premium { padding: 100px 0 60px; }
.premium-header {
  text-align: center;
  margin-bottom: 60px;
}
.premium-header h2 {
  font-family: 'Caveat', cursive;
  font-size: clamp(44px, 5.5vw, 68px);
  line-height: 1.05;
  margin: 0;
  max-width: 780px;
  margin: 0 auto;
}
.premium-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.premium-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 20px 40px -30px rgba(40, 30, 10, 0.25);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.premium-card img {
  max-height: 380px;
  margin-bottom: 22px;
  align-self: center;
}
.premium-card h3 {
  font-size: 22px;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.premium-card p {
  margin: 0;
  color: var(--ink-2);
  font-size: 16px;
}
.premium-card.no-shot {
  background: #fff;
  justify-content: center;
  min-height: 220px;
}
.premium-card.no-shot h3 {
  font-family: 'Caveat', cursive;
  font-size: 38px;
  margin-bottom: 6px;
}

/* ---- Closer ---- */
.closer {
  text-align: center;
  padding: 100px 0 80px;
}
.closer h2 {
  font-family: 'Caveat', cursive;
  font-size: clamp(56px, 8vw, 96px);
  margin: 0 0 16px;
}
.closer p {
  font-size: 20px;
  color: var(--ink-2);
  margin: 0 0 32px;
}

/* ---- Inner pages (support, privacy) ---- */
.container-narrow {
  max-width: 720px;
}
.page {
  padding: 70px 0 100px;
}
.page-title {
  font-family: 'Caveat', cursive;
  font-size: clamp(52px, 7vw, 84px);
  line-height: 1;
  margin: 0 0 22px;
}
.page-lede {
  font-size: 19px;
  color: var(--ink-2);
  margin: 0 0 44px;
}

/* Form */
.form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.01em;
}
.field input,
.field textarea {
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color .15s ease, box-shadow .15s ease;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(232, 112, 55, 0.15);
}
.field textarea {
  min-height: 160px;
  line-height: 1.5;
}
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.btn-send {
  align-self: flex-start;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  border: none;
  padding: 14px 28px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 10px 24px -12px rgba(232, 112, 55, 0.6);
  transition: background .15s ease, transform .15s ease;
}
.btn-send:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
}
.btn-send:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.form-status {
  margin: 0;
  font-size: 15px;
  min-height: 1em;
}
.form-status.success { color: #2f7a2f; }
.form-status.error { color: #b0341a; }

/* Legal / privacy copy */
.legal {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.7;
}
.legal .updated {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 30px;
}
.legal h2 {
  font-size: 22px;
  color: var(--ink);
  margin: 38px 0 12px;
  letter-spacing: -0.01em;
}
.legal p { margin: 0 0 14px; }
.legal ul {
  margin: 0 0 14px;
  padding-left: 22px;
}
.legal li { margin-bottom: 6px; }
.legal a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal a:hover { color: var(--accent-2); }

/* ---- Footer ---- */
.footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  background: var(--paper-2);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.footer-nav {
  display: flex;
  gap: 22px;
}
.footer-nav a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.footer-nav a:hover { color: var(--ink); }

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .hero { padding: 30px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 10px; text-align: center; }
  .hero-copy { order: 2; }
  .hero-visual { order: 1; }
  .hero-visual img { max-height: 250px; }
  .lede { margin-left: auto; margin-right: auto; }
  .cta-row { justify-content: center; }

  .feature, .feature.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
    padding: 40px 0;
  }
  .feature.reverse .feature-copy { order: 0; }
  .feature-copy p { margin-left: auto; margin-right: auto; }
  .feature-shot img { max-height: 460px; }

  .premium-grid { grid-template-columns: 1fr; }

  .nav nav { gap: 16px; }
  .nav nav a:not(.btn) { display: none; }
}
