/* Imported from the standalone marketing site and served through Django staticfiles. */
*, *::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;
  --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); }

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;
  justify-content: space-between;
  gap: 16px;
}

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

.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;
  flex-wrap: wrap;
}

.nav-links a,
.footer-legal a {
  color: var(--taupe);
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.15s;
}

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

.hero {
  padding: 100px 0 80px;
  overflow: hidden;
}

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

.hero-text { flex: 1; }

.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-text h1 {
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: #4A4040;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

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

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

.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);
}

.hero-platforms {
  font-size: 13px;
  color: var(--taupe);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.platform-tag {
  background: var(--parchment-dark);
  color: var(--charcoal);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}

.hero-logo { flex-shrink: 0; }

.hero-logo img {
  width: clamp(200px, 36vw, 480px);
  height: clamp(200px, 36vw, 480px);
  border-radius: 22%;
  display: block;
}

.intro-strip {
  background: var(--charcoal);
  padding: 44px 0;
}

.intro-strip p {
  color: rgba(245, 242, 234, 0.78);
  font-size: 17px;
  line-height: 1.75;
  max-width: 700px;
}

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

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

.features h2,
.how-it-works h2,
.screenshots h2,
.pricing h2,
.download 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-grid,
.pricing-grid,
.download-grid {
  display: grid;
  gap: 2px;
  background: var(--stone);
  border: 1px solid var(--stone);
}

.features-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.pricing-grid,
.download-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.feature-card,
.pricing-card,
.download-card,
.screenshot-placeholder {
  background: var(--card-bg);
  padding: 36px 32px;
}

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

.feature-card h3,
.pricing-tier,
.download-card h4,
.placeholder-title {
  margin-bottom: 10px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 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-arrow {
  align-self: center;
  justify-self: center;
  color: var(--taupe);
  font-size: 28px;
}

.screenshot-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.tab {
  border: 1px solid var(--stone);
  color: var(--taupe);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.tab.active {
  color: var(--ochre);
  border-color: var(--ochre);
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.placeholder-inner {
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px dashed var(--stone);
}

.placeholder-hint,
.screenshot-note,
.pricing-sub,
.download-sub,
.footer-tag,
.footer-copy {
  color: var(--taupe);
}

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

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

.pricing-price,
.pricing-option-price {
  font-size: 32px;
  font-weight: bold;
}

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

.pricing-list {
  list-style: none;
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.pricing-list--muted { color: var(--taupe); }

.download-card-link {
  color: inherit;
  text-decoration: none;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .hero-inner,
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .step-arrow {
    display: none;
  }
}

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

  .hero {
    padding-top: 72px;
  }

  .hero-logo img {
    width: min(72vw, 320px);
    height: min(72vw, 320px);
  }
}
