:root {
  --bg: #faf8f1;
  --surface: #ffffff;
  --line: #e5dcc4;
  --line-strong: #d2c299;
  --text: #2a2418;
  --muted: #655c4b;
  --accent: #d6a400;
  --accent-dark: #a67c00;
  --accent-soft: #fff7de;
  --shadow: 0 10px 24px rgba(68, 50, 7, 0.07);
  --radius-xl: 12px;
  --radius-lg: 10px;
  --radius-md: 8px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fffdf6 0%, #f6f1e3 100%);
}

.page-shell {
  max-width: 1140px;
  margin: 0 auto;
  padding: 24px 24px 48px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 10px rgba(68, 50, 7, 0.04);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: #fff3c7;
  border: 1px solid #ecd98e;
  color: var(--accent-dark);
}

.brand-text,
.topbar-note,
.lead,
.point-card span,
.download-card-header p,
.download-panel span,
.meta-subtitle,
.helper-text {
  color: var(--muted);
}

.topbar-note {
  font-size: 0.94rem;
}

.hero {
  padding-top: 6px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 24px;
  align-items: start;
  margin-top: 24px;
}

.hero-copy {
  padding: 28px 0 0;
}

.eyebrow,
.download-label,
.section-kicker {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 700px;
  font-size: clamp(2.8rem, 4.4vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.lead {
  max-width: 620px;
  margin-top: 18px;
  font-size: 1rem;
  line-height: 1.7;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.point-card,
.download-card {
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.point-card {
  padding: 18px;
  border-radius: var(--radius-md);
}

.point-card {
  display: grid;
  gap: 8px;
}

.point-card strong {
  font-size: 0.98rem;
}

.download-card {
  padding: 26px;
  border-radius: var(--radius-xl);
}

.download-card-header {
  display: grid;
  gap: 10px;
}

.download-card-header h2 {
  font-size: 1.9rem;
  letter-spacing: -0.03em;
}

.download-panel {
  display: grid;
  place-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 30px 20px;
  text-align: center;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.download-icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: #eaf0f6;
  border: 1px solid #cfd8e2;
  position: relative;
}

.download-icon::before,
.download-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-dark);
}

.download-icon::before {
  top: 17px;
  width: 3px;
  height: 18px;
}

.download-icon::after {
  top: 30px;
  width: 16px;
  height: 3px;
}

.download-panel strong {
  font-size: 1.04rem;
}

.download-meta {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  border: 1px solid #f0df9f;
}

.meta-title {
  font-weight: 700;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 16px;
  padding: 16px 20px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(166, 124, 0, 0.22);
  text-decoration: none;
}

.primary-button:hover {
  background: linear-gradient(180deg, #e1b114 0%, #af8300 100%);
}

.helper-text {
  margin-top: 12px;
  font-size: 0.92rem;
  line-height: 1.6;
}

.content {
  margin-top: 28px;
}

.section {
  margin-top: 24px;
}

.section-heading {
  margin-bottom: 18px;
}

.section-heading h2 {
  font-size: 2rem;
  letter-spacing: -0.03em;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-card,
.cta-card {
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 22px;
  border-radius: var(--radius-md);
}

.feature-card h3,
.benefit-row strong,
.cta-card h2 {
  color: var(--text);
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.feature-card p,
.benefit-row p,
.cta-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-alt {
  padding-top: 8px;
}

.benefit-list {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.benefit-row {
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.benefit-row:last-child {
  border-bottom: 0;
}

.benefit-row strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.04rem;
}

.cta-section {
  padding-bottom: 8px;
}

.cta-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #fffaf0 0%, #fff4d5 100%);
}

.cta-card h2 {
  margin-bottom: 10px;
  font-size: 1.9rem;
  letter-spacing: -0.03em;
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 15px 20px;
  border-radius: 8px;
  border: 1px solid #d6b85d;
  background: #ffffff;
  color: #604700;
  font-weight: 700;
  text-decoration: none;
}

.secondary-button:hover {
  background: #fff7de;
}

@media (max-width: 980px) {
  .hero-grid,
  .hero-points,
  .feature-grid,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 20px;
  }

  .cta-card {
    display: grid;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 16px 16px 36px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  h1 {
    font-size: 2.5rem;
  }

  .download-card {
    padding: 20px;
  }
}
