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

:root {
  --parchment: #F5F2EA;
  --parchment-dark: #EDE8DE;
  --ochre: #C25E34;
  --olive: #4A5D4E;
  --dusk-blue: #6B8A96;
  --charcoal: #262626;
  --taupe: #8E8279;
  --stone: #CEC2B6;
  --card-bg: #F9F7F3;
  --white: #FAFAF8;
  --panel-bg: #1E1B18;
  --panel-bg-2: #2B2520;
  --font: Helvetica, "Helvetica Neue", Arial, sans-serif;
  --max-w: 1080px;
  --radius: 3px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--parchment);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.accent { color: var(--ochre); }

/* ── Navigation ─────────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--parchment);
  border-bottom: 1px solid var(--stone);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: auto;
}

.nav-logo,
.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.nav-name {
  font-size: 17px;
  color: var(--charcoal);
  letter-spacing: -0.3px;
}

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

.nav-links a {
  color: var(--taupe);
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.15s;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--ochre); }

.nav-download {
  display: inline-block;
  padding: 8px 18px;
  background: var(--charcoal);
  color: var(--parchment);
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.3px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background 0.15s;
  flex-shrink: 0;
}

.nav-download:hover { background: #3A3530; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn-primary,
.btn-ghost,
.btn-download {
  display: inline-block;
  padding: 13px 28px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.3px;
  border-radius: var(--radius);
}

.btn-download {
  background: var(--charcoal);
  color: var(--parchment);
  transition: background 0.15s, transform 0.1s;
}

.btn-download:hover {
  background: #3A3530;
  transform: translateY(-1px);
}

.btn-download--light {
  background: rgba(245, 242, 234, .95);
  color: var(--charcoal);
}

.btn-download--light:hover {
  background: #fff;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--ochre);
  color: var(--white);
  transition: background 0.15s, transform 0.1s;
}

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

.btn-ghost {
  border: 1.5px solid var(--stone);
  color: var(--charcoal);
  transition: border-color 0.15s, color 0.15s;
}

.btn-ghost:hover {
  border-color: var(--ochre);
  color: var(--ochre);
}

.btn-ghost--light {
  border-color: rgba(245, 242, 234, .3);
  color: rgba(245, 242, 234, .8);
}

.btn-ghost--light:hover {
  border-color: rgba(245, 242, 234, .7);
  color: var(--parchment);
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero { padding: 0; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 600px;
}

.hero-copy {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 88px 48px 88px 32px;
  background: var(--parchment);
}

.hero-copy-inner {
  width: 100%;
  max-width: 480px;
}

.hero-eyebrow,
.section-label {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-eyebrow {
  color: var(--taupe);
  margin-bottom: 16px;
}

.hero-copy-inner h1 {
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 17px;
  color: #4A4040;
  line-height: 1.7;
  margin-bottom: 24px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.hero-chip {
  background: var(--parchment-dark);
  border: 1px solid var(--stone);
  color: var(--taupe);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.3px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  align-items: center;
}

.hero-note {
  font-size: 12px;
  color: var(--stone);
  letter-spacing: 0.3px;
}

/* Hero panel (dark right side) */
.hero-panel {
  background: linear-gradient(160deg, var(--panel-bg) 0%, var(--panel-bg-2) 100%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 64px 32px 64px 48px;
}

.hero-panel-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 280px;
}

.hero-panel-label {
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 242, 234, .35);
  text-align: center;
}

.hero-screenshot-wrap {
  width: 100%;
  max-width: 240px;
}

.hero-screenshot {
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .65), 0 0 0 1px rgba(255, 255, 255, .07);
  display: block;
}

.hero-panel-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.hero-panel-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(245, 242, 234, .6);
  padding: 8px 12px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 6px;
}

.hero-panel-feat-icon { font-size: 14px; }

/* ── Proof Strip ─────────────────────────────────────────────────────────── */
.proof-strip {
  background: var(--charcoal);
  padding: 40px 32px;
  border-top: 1px solid rgba(255, 255, 255, .04);
}

.proof-items {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
}

.proof-num {
  font-size: 28px;
  font-weight: bold;
  color: var(--ochre);
  line-height: 1.1;
}

.proof-label {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(245, 242, 234, .4);
  margin-top: 5px;
  text-align: center;
}

.proof-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, .1);
  flex-shrink: 0;
}

/* ── Section Shared ──────────────────────────────────────────────────────── */
.section-label {
  display: inline-block;
  color: var(--ochre);
  margin-bottom: 12px;
}

.features,
.how-it-works,
.screenshots,
.pricing {
  padding: 96px 0;
  border-top: 1px solid var(--stone);
}

.features h2,
.how-it-works h2,
.screenshots h2,
.pricing h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: bold;
  letter-spacing: -0.8px;
  max-width: 560px;
  margin-bottom: 24px;
  line-height: 1.2;
}

/* ── Features ────────────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  gap: 2px;
  background: var(--stone);
  border: 1px solid var(--stone);
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.feature-card {
  background: var(--card-bg);
  padding: 36px 32px;
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 18px;
}

.feature-card h3 { margin-bottom: 10px; }

.feature-card p { font-size: 15px; color: var(--taupe); line-height: 1.65; }

/* ── How It Works ────────────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: start;
}

.step {
  background: var(--card-bg);
  border: 1px solid var(--stone);
  padding: 24px;
  min-height: 220px;
}

.step-num {
  display: inline-block;
  color: var(--ochre);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.step h4 { margin-bottom: 8px; font-size: 15px; }
.step p { font-size: 14px; color: var(--taupe); line-height: 1.65; }

.step-arrow {
  align-self: center;
  justify-self: center;
  color: var(--stone);
  font-size: 24px;
  padding-top: 48px;
}

/* ── Screenshots ─────────────────────────────────────────────────────────── */
.screenshots-sub {
  font-size: 16px;
  color: var(--taupe);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 8px;
}

.screenshot-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 0 24px;
  margin-top: 32px;
}

.screenshot-scroll::-webkit-scrollbar { height: 5px; }
.screenshot-scroll::-webkit-scrollbar-track { background: var(--parchment-dark); border-radius: 3px; }
.screenshot-scroll::-webkit-scrollbar-thumb { background: var(--stone); border-radius: 3px; }

.screenshot-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  text-align: center;
}

.screenshot-item img {
  width: 260px;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--stone);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
  display: block;
}

.screenshot-caption {
  margin-top: 12px;
  font-size: 12px;
  font-weight: bold;
  color: var(--taupe);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.screenshots-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ── Pricing ─────────────────────────────────────────────────────────────── */
.pricing-sub { color: var(--taupe); margin-bottom: 32px; }

.pricing-grid {
  display: grid;
  gap: 2px;
  background: var(--stone);
  border: 1px solid var(--stone);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.pricing-card {
  background: var(--card-bg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}

.pricing-card--pro {
  position: relative;
  border: 2px solid var(--ochre);
  background: var(--card-bg);
}

.pricing-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--ochre);
  color: var(--white);
  padding: 4px 10px;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
}

.pricing-tier {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 40px;
  font-weight: bold;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 16px;
}

.pricing-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.pricing-option {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.pricing-option-price {
  font-size: 28px;
  font-weight: bold;
  color: var(--charcoal);
  line-height: 1;
}

.pricing-option-label {
  font-size: 14px;
  color: var(--taupe);
}

.pricing-desc {
  font-size: 14px;
  color: var(--taupe);
  line-height: 1.6;
  margin-bottom: 16px;
}

.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  margin-bottom: 24px;
}

.pricing-list li {
  font-size: 14px;
  color: var(--charcoal);
  padding-left: 16px;
  position: relative;
}

.pricing-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--olive);
  font-weight: bold;
}

.pricing-list--muted { color: var(--stone) !important; }
.pricing-list--muted::before { color: var(--stone) !important; }

.pricing-cta {
  display: block;
  text-align: center;
  text-decoration: none;
  margin-top: auto;
}

/* ── Download CTA (dark section) ─────────────────────────────────────────── */
.download-cta {
  background: linear-gradient(160deg, var(--panel-bg) 0%, var(--panel-bg-2) 100%);
  padding: 104px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .04);
}

.download-cta-inner {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 32px;
}

.download-cta-logo {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  margin: 0 auto 28px;
  display: block;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
}

.download-cta h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: bold;
  letter-spacing: -1px;
  color: var(--parchment);
  margin-bottom: 16px;
  line-height: 1.15;
}

.download-cta p {
  font-size: 17px;
  color: rgba(245, 242, 234, .55);
  line-height: 1.7;
  margin-bottom: 40px;
}

.download-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--stone);
  padding: 40px 0 64px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 17px;
  color: var(--charcoal);
}

.footer-tag,
.footer-copy {
  color: var(--taupe);
  font-size: 14px;
  margin-bottom: 4px;
}

.footer-legal {
  margin-top: 16px;
  font-size: 13px;
}

.footer-legal a {
  color: var(--taupe);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-legal a:hover { color: var(--ochre); }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    justify-content: flex-start;
    padding: 64px 32px 48px;
  }

  .hero-copy-inner { max-width: 100%; }

  .hero-panel {
    justify-content: center;
    padding: 48px 32px;
    min-height: 400px;
  }

  .hero-panel-inner { max-width: 240px; }

  .steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .step-arrow { display: none; }
  .step { min-height: auto; }

  .nav-links { display: none; }
}

@media (max-width: 640px) {
  .container,
  .proof-items {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-copy { padding: 48px 20px 40px; }
  .hero-panel { padding: 40px 20px; }

  .proof-item { padding: 12px 16px; }
  .proof-divider { display: none; }
  .proof-items { gap: 0; flex-direction: column; }

  .screenshot-item img { width: 200px; }

  .screenshots-cta,
  .hero-cta,
  .download-cta-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .download-cta-btns { align-items: center; }

  .nav-download { display: none; }
}
