/* Bauta — landing page styles */
:root {
  --cream: #faf6ef;
  --paper: #fffdf8;
  --ink: #241a12;
  --ink-soft: #6b5b4d;
  --amber: #b45309;
  --amber-dark: #92400e;
  --line: #e9dfd1;
  --shadow: 0 10px 40px rgba(90, 60, 30, 0.08);
  --radius: 18px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
}

a { color: var(--amber); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 5vw;
  background: rgba(250, 246, 239, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.brand { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand-mark { display: inline-flex; align-items: center; }
.brand-mark svg { width: 24px; height: 24px; display: block; color: var(--amber); }
.brand-name { font-family: Georgia, serif; font-size: 1.2rem; letter-spacing: 0.02em; }

.nav-links { display: flex; align-items: center; gap: 22px; font-size: 0.95rem; color: var(--ink-soft); }
.nav-links a:not(.btn) { color: var(--ink-soft); }
.nav-links a:not(.btn):hover { color: var(--amber); text-decoration: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }

.btn-amber { background: var(--amber); color: #fff; box-shadow: 0 8px 24px rgba(180, 83, 9, 0.3); }
.btn-amber:hover { background: var(--amber-dark); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #3a2a1e; color: #fff; }

.btn-ghost { color: var(--ink); border-color: var(--line); background: transparent; }
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }

/* ---------- hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 72px 7vw 90px;
  max-width: 1200px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 14px;
}
.eyebrow.center { display: block; text-align: center; }

.hero h1 { font-size: clamp(2.6rem, 6vw, 4.3rem); margin-bottom: 18px; }
.hero h1 em { font-style: italic; color: var(--amber); }

.hero-sub { font-size: 1.15rem; color: var(--ink-soft); max-width: 30em; margin-bottom: 26px; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }

.hero-trust { list-style: none; display: flex; gap: 18px; flex-wrap: wrap; font-size: 0.9rem; color: var(--ink-soft); }

/* ---------- demo ---------- */
.demo-window {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.demo-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 600;
}
.demo-logo { display: inline-flex; align-items: center; }
.demo-logo svg { width: 18px; height: 18px; display: block; color: var(--amber); }
.demo-badge {
  margin-left: auto;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: #1a7f37;
  background: #e6f4ea;
  padding: 3px 8px;
  border-radius: 999px;
}
.demo-badge.pulse { animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%,100% {opacity:1;} 50% {opacity:.45;} }

.demo-thread { padding: 14px 16px; min-height: 150px; display: flex; flex-direction: column; gap: 12px; }

.demo-comment {
  display: flex;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  opacity: 0;
  transform: translateY(10px);
  animation: pop 0.5s ease forwards;
}
@keyframes pop { to { opacity: 1; transform: none; } }

.bag {
  width: 42px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 10px;
  position: relative;
  background: var(--bag, #b45309);
}
.bag::before {
  content: "";
  position: absolute;
  top: -6px; left: 4px; right: 4px;
  height: 12px;
  background: inherit;
  clip-path: polygon(0 0, 25% 100%, 50% 0, 75% 100%, 100% 0);
}
.bag::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 10px;
  width: 12px; height: 12px;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.22);
  border-radius: 50%;
}

.demo-meta { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 4px; }
.demo-meta b { color: var(--ink); font-family: Georgia, serif; }
.demo-time { margin-left: auto; }

.demo-form { display: flex; gap: 8px; padding: 12px 16px; border-top: 1px solid var(--line); }
.demo-input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  color: var(--ink-soft);
  background: #fbf8f3;
}
.demo-send {
  border: none;
  border-radius: 10px;
  padding: 10px 18px;
  background: var(--amber);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.demo-caption { text-align: center; font-size: 0.85rem; color: var(--ink-soft); margin-top: 12px; }

/* ---------- sections ---------- */
.section { padding: 80px 7vw; max-width: 1200px; margin: 0 auto; }
.section h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); text-align: center; margin-bottom: 14px; }
.section > p, .section .eyebrow { text-align: center; }
.section-alt { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.step-num {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--amber);
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
}
.step h3 { margin-bottom: 8px; font-size: 1.25rem; }
.step p { color: var(--ink-soft); }

/* grid cards */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-icon { font-size: 1.6rem; margin-bottom: 12px; }
.card-icon svg { width: 30px; height: 30px; color: var(--amber); }
.card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: 0.95rem; }

/* pricing */
.pricing { display: flex; justify-content: center; margin-top: 48px; }
.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 40px;
  width: 100%;
  max-width: 420px;
  text-align: center;
  box-shadow: var(--shadow);
}
.price-featured { border: 2px solid var(--amber); }
.price-name { font-family: Georgia, serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 6px; }
.price-amount { font-size: 3.2rem; font-weight: 800; color: var(--amber); font-family: Georgia, serif; margin-bottom: 18px; }
.price-amount span { font-size: 1rem; color: var(--ink-soft); font-family: sans-serif; font-weight: 400; }
.price-card ul { list-style: none; text-align: left; margin: 0 auto 26px; max-width: 260px; }
.price-card li { padding: 6px 0; color: var(--ink-soft); }

/* CTA */
.cta {
  text-align: center;
  padding: 90px 7vw;
  background: var(--ink);
  color: var(--cream);
}
.cta h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 12px; }
.cta p { color: #d9c9b8; margin-bottom: 26px; }
.cta-form { display: flex; gap: 10px; justify-content: center; max-width: 460px; margin: 0 auto; }
.cta-input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid #4a3a2c;
  background: #33261b;
  color: var(--cream);
  padding: 12px 20px;
  font: inherit;
}
.cta-input::placeholder { color: #a08e7c; }
.cta-note { margin-top: 14px; font-size: 0.9rem; color: #7fd195; min-height: 1.2em; }

/* signup result */
.cta-result { max-width: 560px; margin: 26px auto 0; text-align: left; background: #33261b; border: 1px solid #4a3a2c; border-radius: 14px; padding: 22px; }
.cta-result h3 { color: var(--cream); margin-bottom: 8px; }
.cta-result p { color: #d9c9b8; font-size: 0.9rem; margin-bottom: 10px; }
.cta-result pre { background: #241a12; color: #f3c48b; padding: 14px; border-radius: 10px; font-size: 0.8rem; overflow-x: auto; white-space: pre-wrap; word-break: break-all; margin-bottom: 12px; }
.cta-dashnote { color: #7fd195 !important; font-size: 0.82rem !important; }

/* footer */
.footer { text-align: center; padding: 40px 7vw; color: var(--ink-soft); font-size: 0.9rem; }
.footer .brand { justify-content: center; margin-bottom: 8px; }
.foot-small { font-size: 0.8rem; margin-top: 6px; color: #a99a8a; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 48px 6vw 64px; }
  .steps, .grid { grid-template-columns: 1fr; }
  .nav-links a:not(.btn) { display: none; }
}
