@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600&family=Work+Sans:wght@300;400;500;600&display=swap');

:root {
  --bg: #1a0b07;
  --bg-alt: #2b0f08;
  --card: rgba(20, 12, 8, 0.75);
  --card-2: rgba(28, 16, 10, 0.85);
  --text: #fff4e6;
  --muted: #f6d7b8;
  --accent: #f7b03b;
  --accent-2: #ffdc6b;
  --accent-3: #ff8a3d;
  --shadow: 0 30px 60px rgba(10, 5, 3, 0.5);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: linear-gradient(145deg, #a1160b 0%, #d23b07 35%, #f06410 70%, #8b1f0c 100%);
  color: var(--text);
  font-family: 'Work Sans', sans-serif;
  line-height: 1.6;
  position: relative;
}

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

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

.bg-glow {
  display: none;
}

.bg-pattern {
  position: fixed;
  inset: 0;
  background-image: url('img.jpeg');
  background-size: 160px;
  background-repeat: repeat;
  opacity: 0.07;
  filter: saturate(1.1);
  pointer-events: none;
  z-index: 0;
}

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

.site-header {
  position: static;
  background: transparent;
  border-bottom: none;
  z-index: 10;
  position: relative;
  z-index: 1;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

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

.logo img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #ffe36e 0%, #ffb438 45%, #ff7b1c 100%);
  color: #3b1405;
  box-shadow: 0 16px 32px rgba(255, 146, 50, 0.45);
}

.btn.ghost {
  background: linear-gradient(135deg, rgba(255, 214, 102, 0.18), rgba(255, 126, 55, 0.18));
  border-color: rgba(255, 220, 140, 0.55);
  color: #fff4e6;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
}

.hero {
  padding: 80px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 48px;
}

.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  margin: 0 0 12px;
}

.hero h2 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--muted);
  margin: 0 0 22px;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin-top: 22px;
}

.hero-cta {
  margin-top: 18px;
}

.hero-media {
  background: var(--card);
  border-radius: 26px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  border-radius: 20px;
}

.section {
  padding: 80px 0;
}

.section.alt {
  background: var(--bg-alt);
}


.section,
.site-footer {
  position: relative;
}

.download-section {
  background: linear-gradient(140deg, rgba(45, 16, 8, 0.9) 0%, rgba(90, 26, 12, 0.9) 55%, rgba(35, 12, 6, 0.95) 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--muted);
}

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

.feature {
  padding: 26px;
  border-radius: 20px;
  background: var(--card-2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.feature h3 {
  margin-top: 0;
}

.center-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 42px;
  align-items: center;
}

.split.reverse {
  direction: rtl;
}

.split.reverse > * {
  direction: ltr;
}

.steps {
  padding-left: 20px;
  color: var(--muted);
}

.steps li {
  margin-bottom: 12px;
}

.image-card,
.image-stack img {
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.image-stack {
  display: grid;
  gap: 16px;
}

.image-card img {
  border-radius: 26px;
}

.checklist {
  padding-left: 18px;
  color: var(--muted);
}

.checklist li {
  margin-bottom: 10px;
}

.animated-link {
  position: relative;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.animated-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ffd37a, #ff7a2f);
  transform: scaleX(0.25);
  transform-origin: left;
  opacity: 0.7;
  animation: linkGlow 1.8s ease-in-out infinite;
}

.animated-link:hover::after {
  animation-play-state: paused;
  transform: scaleX(1);
  opacity: 1;
}

@keyframes linkGlow {
  0%,
  100% {
    transform: scaleX(0.35);
    opacity: 0.6;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

.cta {
  padding: 70px 0;
}

.cta-inner {
  background: linear-gradient(120deg, rgba(255, 189, 96, 0.25), rgba(255, 128, 60, 0.22));
  border-radius: 28px;
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 40px 0 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  gap: 20px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--text);
}

.copyright {
  color: var(--muted);
  font-size: 0.9rem;
}

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

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

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

@media (max-width: 640px) {
  .hero {
    padding-top: 50px;
  }

  .nav-links {
    gap: 12px;
    font-size: 0.85rem;
  }

  .logo img,
  .footer-brand img {
    width: 130px;
  }
}
