:root {
  --bg: #fafaf8;
  --bg2: #ffffff;
  --bg3: #f4f2ed;
  --border: rgba(0, 0, 0, 0.08);
  --border2: rgba(0, 0, 0, 0.14);
  --text: #111110;
  --text2: #5a5852;
  --text3: #9a9790;
  --accent: #e8510a;
  --accent-hover: #d4470a;
  --accent-lt: #fff0e8;
  --accent-bd: rgba(232, 81, 10, 0.22);
  --good: #1a7a40;
  --good-lt: #e6f4ec;
  --radius: 10px;
  --rlg: 16px;
  --rxl: 22px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.09), 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 24px 64px rgba(17, 17, 16, 0.14), 0 4px 16px rgba(17, 17, 16, 0.06);
  --ease: 0.15s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Inter, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  gap: 12px;
}

@media (max-width: 640px) {
  header.site-header {
    padding: 14px 18px;
  }

  nav.site-nav {
    gap: 12px;
  }

  nav.site-nav a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    padding: 8px 14px;
    font-size: 13px;
    white-space: nowrap;
  }
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--text);
}

.logo span {
  color: var(--accent);
}

nav.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

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

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff !important;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: background var(--ease), transform var(--ease);
}

.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* ── Hero ── */
.hero {
  padding: 88px 24px 40px;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 880px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    padding-top: 100px;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-lt);
  color: var(--accent-hover);
  border: 1px solid var(--accent-bd);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  text-wrap: balance;
}

@media (min-width: 880px) {
  .hero h1 {
    font-size: 52px;
  }
}

.hero-sub {
  font-size: 17px;
  color: var(--text2);
  max-width: 480px;
  margin: 0 0 32px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: background var(--ease), transform var(--ease);
}

.btn-primary-lg:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-secondary-lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: border-color var(--ease), transform var(--ease);
}

.btn-secondary-lg:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.hero-trust {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text3);
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-trust svg {
  color: var(--good);
  flex-shrink: 0;
}

/* ── Hero visual ── */
.hero-visual {
  position: relative;
}

.browser-frame {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--rxl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-4deg) rotateX(1deg);
}

@media (max-width: 879px) {
  .browser-frame {
    transform: none;
  }
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
}

.browser-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border2);
}

.browser-frame img {
  display: block;
  width: 100%;
  height: auto;
}

/* ── Sections ── */
section {
  padding: 72px 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 44px;
}

.section-head .eyebrow {
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: 30px;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  text-wrap: balance;
}

.section-head p {
  color: var(--text2);
  margin: 0;
}

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

.feature-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--rlg);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-bd);
  transform: translateY(-2px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--accent-lt);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 15.5px;
  margin: 0 0 8px;
}

.feature-card p {
  font-size: 13.5px;
  margin: 0;
  color: var(--text2);
}

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 680px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.price-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--rxl);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.price-card.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.price-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

.price-card h3 {
  font-size: 15px;
  color: var(--text2);
  margin: 0 0 10px;
  font-weight: 600;
}

.price-amount {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.price-amount span {
  font-size: 15px;
  font-weight: 500;
  color: var(--text3);
}

.price-sub {
  font-size: 13px;
  color: var(--text3);
  margin-bottom: 22px;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  color: var(--text2);
}

.price-features svg {
  color: var(--good);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── CTA band ── */
.cta-band {
  max-width: 1080px;
  margin: 24px auto 72px;
  padding: 48px 40px;
  background: var(--text);
  border-radius: var(--rxl);
  text-align: center;
}

.cta-band h2 {
  color: #fff;
  font-size: 26px;
  margin: 0 0 10px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 26px;
}

/* ── Legal pages ── */
.legal main {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.legal h1 {
  font-size: 28px;
  margin: 0 0 12px;
}

.legal h2 {
  font-size: 19px;
  margin: 40px 0 12px;
  text-align: left;
}

.legal p, .legal li {
  color: var(--text2);
  font-size: 14.5px;
}

.legal ul {
  padding-left: 20px;
}

.updated {
  font-size: 12.5px;
  color: var(--text3);
  margin-bottom: 32px;
}

.limited-use {
  background: var(--accent-lt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: 13.5px;
  color: var(--text);
}

/* ── Scroll reveal ──
   Hidden state only applies once JS confirms it can reveal elements again
   (html.js-ready). If JS fails to load, content stays visible by default. */
.reveal {
  opacity: 1;
  transform: none;
}

html.js-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

html.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-1 { transition-delay: 0.05s; }
.reveal-2 { transition-delay: 0.12s; }
.reveal-3 { transition-delay: 0.19s; }
.reveal-4 { transition-delay: 0.26s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Hero background blob ── */
.hero {
  position: relative;
}

.hero-blob {
  position: absolute;
  top: -180px;
  right: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-lt) 0%, rgba(255, 240, 232, 0) 70%);
  z-index: -1;
  animation: blob-float 10s ease-in-out infinite;
}

@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 24px) scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-blob {
    animation: none;
  }
}

.browser-frame {
  animation: frame-in 0.9s ease both;
}

@keyframes frame-in {
  from { opacity: 0; transform: perspective(1400px) rotateY(-4deg) rotateX(1deg) translateY(24px); }
  to { opacity: 1; transform: perspective(1400px) rotateY(-4deg) rotateX(1deg) translateY(0); }
}

@media (max-width: 879px) {
  @keyframes frame-in {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

.pulse-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--good);
  margin-right: 6px;
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(26, 122, 64, 0.35); }
  50% { box-shadow: 0 0 0 6px rgba(26, 122, 64, 0); }
}

/* ── Product tour ── */
.tour-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 72px;
}

.tour-row:last-child {
  margin-bottom: 0;
}

@media (min-width: 880px) {
  .tour-row {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .tour-row.reverse {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .tour-row.reverse .tour-text {
    order: 2;
  }
}

.tour-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.tour-text h3 {
  font-size: 23px;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.tour-text p {
  color: var(--text2);
  font-size: 14.5px;
  margin: 0 0 18px;
}

.tour-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.tour-text li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  color: var(--text2);
}

.tour-text li svg {
  color: var(--good);
  flex-shrink: 0;
  margin-top: 2px;
}

.tour-shot .browser-frame {
  animation: none;
}

/* ── How it works ── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 4px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--text);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 15.5px;
  margin: 0 0 8px;
}

.step p {
  font-size: 13.5px;
  color: var(--text2);
  margin: 0;
}

/* ── For whom ── */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 720px) {
  .audience-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.audience-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--rxl);
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
}

.audience-card h3 {
  font-size: 19px;
  margin: 0 0 10px;
}

.audience-card > p {
  color: var(--text2);
  font-size: 14px;
  margin: 0 0 20px;
}

.audience-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.audience-card li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  color: var(--text2);
}

.audience-card li svg {
  color: var(--good);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── FAQ ── */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px 22px;
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-weight: 600;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.faq-chevron {
  flex-shrink: 0;
  transition: transform var(--ease);
  color: var(--text3);
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-item p {
  margin: 0 0 18px;
  font-size: 13.5px;
  color: var(--text2);
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 760px) {
  .contact-grid {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

.contact-info h2 {
  font-size: 26px;
  margin: 0 0 12px;
}

.contact-info p {
  color: var(--text2);
  font-size: 14.5px;
  margin: 0 0 24px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text2);
  margin-bottom: 12px;
}

.contact-detail svg {
  color: var(--accent);
  flex-shrink: 0;
}

.contact-form-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--rxl);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text2);
  margin-bottom: 6px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 10px 13px;
  border-radius: var(--radius);
  border: 1px solid var(--border2);
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-lt);
}

.form-field textarea {
  resize: vertical;
  min-height: 96px;
}

.contact-form-card button[type='submit'] {
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.contact-form-card button[type='submit']:disabled {
  opacity: 0.7;
  cursor: default;
}

.form-status {
  margin-top: 14px;
  font-size: 13px;
  min-height: 18px;
}

.form-status-success {
  color: var(--good);
}

.form-status-error {
  color: #dc2626;
}

/* ── Footer ── */
footer.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 32px 32px;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand .logo {
  display: block;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 12.5px;
  color: var(--text3);
  margin: 0;
  max-width: 260px;
}

.footer-links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text3);
  margin: 0 0 12px;
}

.footer-col a {
  display: block;
  font-size: 13.5px;
  color: var(--text2);
  text-decoration: none;
  margin-bottom: 8px;
}

.footer-col a:hover {
  color: var(--accent);
}
