:root {
  --cream: #f6f1e7;
  --cream-deep: #efe7d6;
  --green: #1f3d2b;
  --green-deep: #14291d;
  --gold: #e7b45a;
  --gold-soft: #f3d9a8;
  --ink: #23211e;
  --muted: #6b6459;
  --faint: #a89e88;
  --success: #2fa36b;
  --terracotta: #c2643f;
  --card: #fffdf8;
  --line: #e8dcc3;
  --shadow: 0 14px 34px rgba(31, 61, 43, 0.13);
  --radius: 20px;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
body {
  background: var(--cream);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.45;
}

/* height:auto keeps intrinsic aspect ratio even when width/height attributes are present */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--green);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px clamp(16px, 4vw, 40px);
  background: rgba(246, 241, 231, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.5px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--cream);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2.5vw, 26px);
}

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

.site-nav a:hover {
  color: var(--green);
}

.site-nav a.header-cta {
  background: var(--green);
  color: var(--cream);
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 700;
}

.site-nav a.header-cta:hover {
  background: var(--green-deep);
  color: var(--cream);
}

@media (max-width: 560px) {
  .site-nav a:not(.header-cta) {
    display: none;
  }
}
/* ---------- shared shell ---------- */
main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px) 90px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terracotta);
}

.eyebrow span {
  width: 22px;
  height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
}

.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 30px;
}

.section-heading h2 {
  font-size: clamp(26px, 4vw, 36px);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-top: 10px;
}

.section-heading p {
  color: var(--muted);
  margin-top: 10px;
  font-size: 16px;
}

section {
  margin-top: clamp(56px, 9vw, 96px);
}

/* ---------- buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: var(--green-deep);
  border: none;
  font-weight: 800;
  font-size: 17px;
  padding: 16px 26px;
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(231, 180, 90, 0.45);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.btn-primary:hover {
  background: #f0c06c;
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 5px 12px rgba(231, 180, 90, 0.4);
}

.text-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}

.text-link:hover {
  color: var(--green);
}

/* ---------- hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  margin-top: clamp(28px, 5vw, 64px);
}

.hero h1 {
  font-size: clamp(38px, 6vw, 58px);
  line-height: 1.02;
  letter-spacing: -1.8px;
  font-weight: 800;
  margin: 14px 0 16px;
}

.hero h1 em {
  font-style: normal;
  color: var(--green);
  background: linear-gradient(transparent 62%, var(--gold-soft) 62%);
  border-radius: 3px;
  padding: 0 3px;
}

.hero .lede {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: 22px;
}

.hero .actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-proof {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof span {
  display: inline-flex;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--success);
  color: #fff;
  font-size: 11px;
  align-items: center;
  justify-content: center;
}

.hero-art {
  position: relative;
}

.hero-art img {
  width: auto;
  height: auto;
  max-height: 700px;
  margin: 0 auto;
  border-radius: 26px;
  box-shadow: var(--shadow);
  background: var(--cream-deep);
}

.hero-art .verdict-chip {
  position: absolute;
  left: -10px;
  bottom: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: var(--shadow);
  font-size: 13px;
  color: var(--muted);
}

.hero-art .verdict-chip strong {
  display: block;
  color: var(--success);
  font-size: 16px;
  letter-spacing: 0.5px;
}

@media (max-width: 840px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-art {
    order: -1;
    max-width: 440px;
    margin: 0 auto;
  }
  .hero-art .verdict-chip {
    left: 8px;
  }
  .hero .actions .btn-primary {
    width: 100%;
  }
}
/* ---------- trust band ---------- */
.trust-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 28px;
  background: var(--green);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 20px clamp(18px, 3vw, 34px);
  margin-top: clamp(48px, 7vw, 72px);
}

.trust-band > span {
  font-size: 13px;
  color: var(--gold-soft);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.trust-band strong {
  font-size: 15px;
  letter-spacing: 0.3px;
  opacity: 0.95;
}

/* ---------- features ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.feature {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.feature img.emo {
  display: block;
  width: 60px;
  height: 60px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 15px;
  margin-bottom: 14px;
}

.feature h3 {
  font-size: 17px;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}

.feature p {
  font-size: 14px;
  color: var(--muted);
}

/* ---------- screenshots ---------- */
.shots {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 8px 2px 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.shots img {
  height: 340px;
  width: auto;
  border-radius: 18px;
  scroll-snap-align: center;
  box-shadow: 0 10px 24px rgba(31, 61, 43, 0.12);
  flex: 0 0 auto;
}

@media (min-width: 841px) {
  .shots {
    justify-content: center;
  }
  .shots img {
    height: 380px;
  }
}
/* ---------- how it works ---------- */
.workflow ol {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.workflow li {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.workflow li > span {
  font-weight: 800;
  color: var(--terracotta);
  font-size: 14px;
  border: 1.5px solid var(--terracotta);
  border-radius: 999px;
  padding: 3px 10px;
}

.workflow h3 {
  font-size: 17px;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.workflow p {
  font-size: 14px;
  color: var(--muted);
}

/* ---------- faq ---------- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq-list details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--terracotta);
  font-weight: 800;
  transition: transform 0.15s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin-top: 10px;
  font-size: 14.5px;
  color: var(--muted);
}

/* ---------- signup funnel ---------- */
.signup {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.signup-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(22px, 4vw, 32px);
  box-shadow: var(--shadow);
  margin-top: 22px;
}

.steps-bar {
  height: 6px;
  background: var(--cream-deep);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
}

.steps-bar > span {
  display: block;
  height: 100%;
  background: var(--green);
  width: 14%;
  transition: width 0.3s ease;
}

.q {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-bottom: 4px;
}

.qsub {
  font-size: 13.5px;
  color: var(--faint);
  margin-bottom: 18px;
}

.opts {
  display: grid;
  gap: 10px;
}

.opt {
  padding: 15px 16px;
  border: 1.5px solid var(--line);
  border-radius: 13px;
  background: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: var(--ink);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.opt:hover {
  border-color: var(--gold);
}

.opt.sel {
  border-color: var(--green);
  background: #f2f7f2;
}

.opt:disabled, .btn-primary:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.signup input[type=email] {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  border: 1.5px solid var(--line);
  border-radius: 13px;
  background: #fff;
  margin-bottom: 12px;
  font-family: inherit;
}

.signup input[type=email]:focus {
  outline: none;
  border-color: var(--green);
}

.signup .field-error {
  color: var(--terracotta);
  font-size: 13px;
  min-height: 18px;
  margin-bottom: 4px;
}

.signup .btn-primary {
  width: 100%;
}

.privacy {
  font-size: 12px;
  color: var(--faint);
  margin-top: 12px;
  text-align: center;
}

.step-back {
  background: none;
  border: none;
  color: var(--faint);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 12px;
  font-family: inherit;
}

.step-back:hover {
  color: var(--green);
}

.thanks {
  text-align: center;
  padding: 12px 4px;
}

.thanks .check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--success);
  color: #fff;
  font-size: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6px auto 16px;
}

.hidden {
  display: none;
}

/* ---------- sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(246, 241, 231, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 0.25s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta .btn-primary {
  width: 100%;
  padding: 14px;
  font-size: 16px;
}

@media (min-width: 841px) {
  .sticky-cta {
    display: none;
  }
}
/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px clamp(16px, 4vw, 40px) 40px;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  align-items: baseline;
  justify-content: space-between;
  font-size: 13px;
  color: var(--faint);
}

.site-footer strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

.site-footer nav {
  display: flex;
  gap: 18px;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.site-footer a:hover {
  color: var(--green);
}

/*# sourceMappingURL=site.css.map */