:root {
  --bg: #f6e6dc;
  --bg-soft: #faefe8;
  --panel: #fff7f1;
  --panel-2: #fff3ea;
  --panel-3: #fbe8df;
  --line: #e8c9b8;
  --line-strong: #dbb09b;
  --text: #382c2b;
  --muted: #6e5b58;
  --red: #c7353c;
  --red-dark: #a9262d;
  --blue: #2782d9;
  --blue-dark: #155db0;
  --gold: #f0ae38;
  --shadow: 0 18px 50px rgba(119, 56, 35, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font: 16px/1.6 "Segoe UI", Tahoma, Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(240, 174, 56, 0.18), transparent 22%),
    radial-gradient(circle at top right, rgba(39, 130, 217, 0.12), transparent 24%),
    linear-gradient(180deg, #f8ece5 0%, #f6e6dc 100%);
}

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

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

.site-shell {
  overflow: hidden;
}

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

.topbar {
  padding: 18px 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0.38));
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

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

.brand-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand-text {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--red-dark);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.main-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
  transition: 0.2s ease;
}

.main-nav a:hover {
  background: rgba(255,255,255,0.72);
  color: var(--text);
}

.main-nav a.active {
  background: linear-gradient(180deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: 0 10px 24px rgba(199, 53, 60, 0.28);
}

.hero {
  padding: 24px 0 18px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-art-card,
.promo-box,
.visual-panel,
.download-card,
.footer-grid > div {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 42px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.35), rgba(255,255,255,0.08)),
    linear-gradient(180deg, #ffe7de 0%, #fff2ea 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgba(255,255,255,0.82);
}

.hero-copy h1,
.content-copy h2,
.download-copy h2 {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 4.6vw, 4.7rem);
  max-width: 11ch;
}

.hero-text {
  max-width: 60ch;
  margin: 24px 0 0;
  font-size: 1.08rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, var(--red), var(--red-dark));
  box-shadow: 0 14px 30px rgba(199, 53, 60, 0.28);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.8);
  border-color: var(--line);
}

.btn-light {
  color: var(--red-dark);
  background: #fff;
  box-shadow: 0 14px 30px rgba(0,0,0,0.16);
}

.hero-meta {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.hero-meta li + li {
  margin-top: 8px;
}

.hero-art-card {
  height: 100%;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, #fff8f2 0%, #fff1e8 100%);
}

.hero-icon {
  width: min(320px, 65%);
  margin: 0 auto 22px;
  object-fit: contain;
}

.art-placeholder,
.visual-placeholder {
  display: grid;
  place-items: center;
  text-align: center;
  border: 2px dashed var(--line-strong);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(39,130,217,0.06), rgba(199,53,60,0.06));
  color: var(--muted);
}

.art-placeholder {
  min-height: 340px;
  padding: 28px;
}

.placeholder-label {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-dark);
}

.placeholder-size {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-dark);
}

.art-placeholder p {
  max-width: 30ch;
  margin: 14px auto 0;
}

.promo-strip {
  padding: 10px 0 6px;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.promo-box {
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff7f2, #fff0e7);
}

.promo-box h2 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.promo-box p {
  margin: 0;
  color: var(--muted);
}

.content-block {
  padding: 26px 0 6px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.reverse {
  direction: rtl;
}

.reverse > * {
  direction: ltr;
}

.content-copy {
  padding: 10px 2px;
}

.content-copy h2 {
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  max-width: 11ch;
}

.content-copy p {
  margin: 18px 0 0;
  max-width: 62ch;
  color: var(--muted);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.feature-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
}

.feature-item h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.feature-item p {
  margin: 0;
  font-size: 0.96rem;
}

.visual-panel {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fff8f3, #fff3eb);
}

.visual-panel.compact {
  padding: 22px;
}

.side-icon {
  width: 180px;
  margin: 0 auto 20px;
}

.visual-placeholder {
  min-height: 360px;
  padding: 24px;
}

.visual-placeholder.tall {
  min-height: 430px;
}

.alt-block .visual-panel {
  background: linear-gradient(180deg, #fff5ee, #ffefe7);
}

.check-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
}

.check-list li + li {
  margin-top: 12px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold), #d98e0a);
  box-shadow: 0 0 0 4px rgba(240, 174, 56, 0.18);
  transform: translateY(-50%);
}

.download-section {
  padding: 28px 0 12px;
}

.download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 34px 38px;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 45%, var(--blue) 100%);
  color: #fff;
}

.download-copy h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.download-copy p {
  margin: 14px 0 0;
  max-width: 54ch;
  color: rgba(255,255,255,0.86);
}

.footer-links {
  padding: 18px 0 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.footer-grid > div {
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff7f2, #fff0e8);
}

.footer-grid h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  color: var(--red-dark);
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid li + li {
  margin-top: 8px;
}

.footer-grid a {
  color: var(--muted);
}

.footer-grid a:hover {
  color: var(--blue-dark);
}

@media (max-width: 1080px) {
  .hero-grid,
  .two-col,
  .promo-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .content-copy h2,
  .hero-copy h1 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .topbar-inner {
    border-radius: 26px;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    width: 100%;
  }

  .hero-copy,
  .hero-art-card,
  .visual-panel,
  .download-card,
  .promo-box,
  .footer-grid > div {
    padding-left: 22px;
    padding-right: 22px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }
}