:root {
  --bg: #f4efe7;
  --bg-strong: #e6ded2;
  --panel: rgba(255, 255, 255, 0.78);
  --panel-strong: #fffaf4;
  --text: #16211f;
  --muted: #5f6b68;
  --brand: #c96036;
  --brand-deep: #984525;
  --accent: #0f5f57;
  --accent-soft: #d7ebe7;
  --border: rgba(22, 33, 31, 0.08);
  --shadow: 0 24px 70px rgba(41, 33, 20, 0.12);
  --radius: 28px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(201, 96, 54, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(15, 95, 87, 0.14), transparent 26%),
    linear-gradient(180deg, #fbf7f0 0%, var(--bg) 45%, #efe7da 100%);
}

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

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

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(251, 247, 240, 0.78);
  border-bottom: 1px solid rgba(22, 33, 31, 0.06);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(201, 96, 54, 0.22);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name,
.nav-link,
.header-cta,
.button,
.step-number,
.history-label,
.version-chip {
  font-family: "Manrope", sans-serif;
}

.brand-name {
  font-size: 1rem;
  font-weight: 800;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.88rem;
}

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

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-link.is-active,
.nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.header-cta {
  padding: 13px 20px;
  background: var(--text);
  color: #fff;
  font-weight: 800;
  font-size: 0.94rem;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.hero,
.page-hero {
  padding: 72px 0 28px;
}

.page-hero-compact {
  padding-bottom: 10px;
}

.hero-grid,
.page-hero-grid,
.split-panel,
.download-grid,
.setup-grid,
.feature-grid,
.steps-grid,
.history-list,
.faq-list {
  display: grid;
  gap: 24px;
}

.hero-grid,
.page-hero-grid,
.split-panel {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.hero-copy,
.page-copy,
.split-copy,
.cta-copy,
.support-copy {
  max-width: 640px;
}

.eyebrow,
.panel-label,
.card-kicker,
.download-kicker,
.release-label {
  margin: 0 0 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
}

h1,
h2,
h3,
ol,
ul,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

p,
li,
span {
  line-height: 1.65;
}

.hero-text,
.download-meta,
.download-hint,
.feature-card p,
.step-card p,
.history-card p,
.faq-card p,
.content-card p,
.support-copy p,
.split-copy p,
.cta-copy p {
  color: var(--muted);
  font-size: 1.03rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 26px;
}

.button {
  padding: 15px 22px;
  font-size: 0.96rem;
  font-weight: 800;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  box-shadow: 0 18px 38px rgba(152, 69, 37, 0.24);
}

.button-secondary {
  border: 1px solid rgba(22, 33, 31, 0.12);
  background: rgba(255, 255, 255, 0.68);
}

.button-secondary.is-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
}

.button-block {
  width: 100%;
}

.hero-points,
.detail-list,
.release-notes,
.download-steps,
.quick-list {
  padding-left: 20px;
  color: var(--muted);
}

.hero-card,
.download-highlight,
.info-panel,
.release-card {
  position: relative;
}

.hero-card-glow {
  position: absolute;
  inset: 16px;
  background: linear-gradient(135deg, rgba(201, 96, 54, 0.24), rgba(15, 95, 87, 0.2));
  filter: blur(26px);
  border-radius: 36px;
}

.glass-panel,
.feature-card,
.step-card,
.content-card,
.history-card,
.faq-card,
.download-highlight,
.info-panel,
.release-card,
.support-strip {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.glass-panel,
.download-highlight,
.info-panel,
.release-card {
  padding: 28px;
}

.glass-panel {
  min-height: 100%;
}

.quick-list {
  display: grid;
  gap: 14px;
}

.quick-list li {
  display: grid;
  gap: 6px;
}

.section {
  padding: 32px 0;
}

.section-accent {
  padding: 44px 0;
}

.section-dark {
  padding: 56px 0 84px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.step-card,
.content-card,
.history-card,
.faq-card {
  padding: 26px;
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-number {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 800;
}

.release-card {
  background:
    radial-gradient(circle at top right, rgba(201, 96, 54, 0.22), transparent 36%),
    linear-gradient(180deg, rgba(255, 250, 244, 0.92), rgba(255, 255, 255, 0.78));
}

.release-meta {
  margin-bottom: 10px;
}

.download-grid,
.setup-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.history-list,
.faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.history-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.history-label,
.version-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
  font-size: 0.82rem;
}

.support-strip,
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
}

.cta-band {
  color: #fff;
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 25%),
    linear-gradient(135deg, #123f47 0%, #102823 52%, #6a311d 100%);
  box-shadow: 0 28px 60px rgba(10, 25, 23, 0.24);
}

.support-strip {
  background: var(--panel-strong);
}

@media (max-width: 1080px) {
  .hero-grid,
  .page-hero-grid,
  .split-panel,
  .feature-grid,
  .steps-grid,
  .download-grid,
  .setup-grid,
  .history-list,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .cta-band,
  .support-strip,
  .nav-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    position: static;
  }

  .hero,
  .page-hero {
    padding-top: 42px;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2rem;
  }

  .brand {
    width: 100%;
  }

  .site-nav,
  .header-cta,
  .button,
  .button-block {
    width: 100%;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
  }
}
