:root {
  --bg: #f6f2ea;
  --ink: #1d1c1a;
  --muted: #5b5b56;
  --brand: #b3491f;
  --brand-dark: #8d3716;
  --accent: #0e6c74;
  --cream: #fff8ee;
  --shadow: 0 18px 40px rgba(29, 28, 26, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top right, #efe3d1 0%, #f7f2ea 55%, #f2ece4 100%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(246, 242, 234, 0.92);
  border-bottom: 1px solid rgba(29, 28, 26, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Bebas Neue", "Impact", sans-serif;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-size: 26px;
}

.brand span {
  color: var(--brand);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
}

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

.hero {
  padding: 72px 0 40px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  right: -80px;
  top: -120px;
  background: radial-gradient(circle, rgba(180, 73, 31, 0.2), transparent 65%);
}

.hero-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}

.hero h1 {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: clamp(38px, 6vw, 70px);
  line-height: 0.95;
  margin: 0 0 18px;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 28px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(141, 55, 22, 0.3);
}

.btn-outline {
  border-color: var(--brand);
  color: var(--brand);
  background: transparent;
}

.btn-outline:hover {
  transform: translateY(-2px);
}

.card-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(14, 108, 116, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.card:hover::before {
  opacity: 1;
}

.card h3 {
  margin: 0;
  font-size: 20px;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.section {
  padding: 48px 0;
}

.section h2 {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  margin: 0 0 16px;
}

.split {
  display: grid;
  gap: 24px;
  align-items: center;
}

.badge-list {
  display: grid;
  gap: 12px;
}

.badge {
  background: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(29, 28, 26, 0.08);
}

.highlight {
  background: #f1e7d8;
  border-left: 4px solid var(--brand);
  padding: 18px 20px;
  border-radius: 14px;
}

.footer {
  background: #1e1b18;
  color: #eee7df;
  padding: 48px 0;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  gap: 22px;
}

.footer small {
  color: #b8b0a6;
}

.hero-card {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.hero-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.hero-card li span {
  color: var(--brand);
  font-weight: 700;
}

.screenshot {
  background: linear-gradient(135deg, #f9f4ec, #f1e3d4);
  border-radius: 16px;
  padding: 20px;
  border: 1px dashed rgba(29, 28, 26, 0.18);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #a38970;
  text-align: center;
}

.screenshot img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.compare-grid {
  display: grid;
  gap: 18px;
}

.compare-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(29, 28, 26, 0.08);
  box-shadow: var(--shadow);
}

.compare-card h4 {
  margin: 0 0 12px;
  font-size: 18px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.feature-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(29, 28, 26, 0.1);
}

.feature-list span {
  color: var(--ink);
  font-weight: 600;
}

.stagger > * {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.6s ease forwards;
}

.stagger > *:nth-child(2) { animation-delay: 0.1s; }
.stagger > *:nth-child(3) { animation-delay: 0.2s; }
.stagger > *:nth-child(4) { animation-delay: 0.3s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

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

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .compare-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .nav-links {
    gap: 12px;
  }

  .hero {
    padding-top: 48px;
  }
}
