@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Spline+Sans:wght@300;400;600;700&display=swap");

:root {
  --ink: #0c0b10;
  --night: #151226;
  --white: #f7f4f0;
  --red: #b21a2a;
  --red-dark: #7a0b1a;
  --navy: #1a2a4a;
  --gold: #f0c36a;
  --shadow: 0 24px 60px rgba(12, 11, 16, 0.25);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Spline Sans", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background: linear-gradient(135deg, #f8f5f1 0%, #f2e9e5 100%);
}

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

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

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--red);
  margin: 0 0 0.5rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 244, 240, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(12, 11, 16, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-mark {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  padding: 0.5rem 0.75rem;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
}

.brand-text h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  margin: 0;
}

.brand-text p {
  margin: 0;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-weight: 600;
}

.cta {
  background: var(--red);
  color: var(--white);
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 5.5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(178, 26, 42, 0.15), transparent 55%),
    radial-gradient(circle at bottom right, rgba(26, 42, 74, 0.22), transparent 50%),
    repeating-linear-gradient(120deg, rgba(12, 11, 16, 0.04) 0 2px, transparent 2px 18px);
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.hero-copy h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}

.hero-copy .lead {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(12, 11, 16, 0.2);
}

.btn.primary {
  background: var(--ink);
  color: var(--white);
}

.btn.ghost {
  border-color: rgba(12, 11, 16, 0.4);
  color: var(--ink);
}

.btn.light {
  background: var(--white);
  color: var(--ink);
  border-color: rgba(12, 11, 16, 0.12);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.meta-label {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  color: var(--red-dark);
}

.meta-value {
  font-weight: 600;
}

.hero-visual {
  display: grid;
  gap: 1.5rem;
}

.poster-frame {
  position: relative;
  background: var(--night);
  padding: 1rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.poster-frame img {
  border-radius: 12px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.poster-tag {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--ink);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-weight: 700;
}

.portrait-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow);
}

.portrait-card img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--red);
}

.portrait-name {
  font-weight: 700;
  margin: 0;
}

.portrait-title {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
  color: rgba(12, 11, 16, 0.7);
}

.section {
  padding: 4rem 0;
}

.about-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}

.about-copy p {
  margin: 0 0 1.2rem;
}

.about-highlight {
  background: var(--white);
  padding: 1.8rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border-left: 6px solid var(--red);
}

.about-highlight h4 {
  margin-top: 0;
}

.about-highlight ul {
  padding-left: 1.2rem;
  line-height: 1.7;
}

.section-title h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 0.75rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.card {
  background: var(--white);
  border-radius: 20px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(12, 11, 16, 0.08);
}

.card h4 {
  margin-top: 0;
  font-size: 1.2rem;
}

.section-alt {
  background: var(--night);
  color: var(--white);
}

.plan-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.plan-list {
  padding-left: 1.2rem;
  line-height: 1.7;
}

.plan-panel {
  background: rgba(255, 255, 255, 0.08);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.plan-panel ul {
  padding-left: 1.2rem;
  line-height: 1.7;
}

.quote {
  text-align: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.quote span {
  display: block;
  font-size: 1rem;
  font-family: "Spline Sans", sans-serif;
  margin-top: 1rem;
  color: var(--red);
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.download-card {
  background: var(--white);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid rgba(12, 11, 16, 0.12);
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.download-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(12, 11, 16, 0.22);
}

.download-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--red);
  font-weight: 700;
}

.download-title {
  font-weight: 700;
  font-size: 1.1rem;
}

.download-meta {
  font-size: 0.85rem;
  color: rgba(12, 11, 16, 0.6);
}

.section-cta {
  background: linear-gradient(120deg, var(--red) 0%, var(--red-dark) 55%, #3c1018 100%);
  color: var(--white);
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.qr-card {
  background: rgba(255, 255, 255, 0.12);
  padding: 1.5rem;
  border-radius: 18px;
  text-align: center;
}

.qr-card img {
  width: 220px;
  margin: 0 auto 1rem;
  border-radius: 12px;
  background: var(--white);
  padding: 0.75rem;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 2rem 0;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-cta {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  margin: 0 0 0.25rem;
}

.footer-email {
  margin: 0;
  color: rgba(247, 244, 240, 0.7);
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

  .cta {
    display: none;
  }
}

@media (max-width: 700px) {
  .hero {
    padding: 3.5rem 0 4rem;
  }

  .portrait-card {
    border-radius: 20px;
  }
}

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

.section,
.hero-copy,
.hero-visual {
  animation: fadeUp 0.8s ease both;
}

.hero-visual {
  animation-delay: 0.2s;
}

.card {
  animation: fadeUp 0.8s ease both;
}

.card:nth-child(2) { animation-delay: 0.05s; }
.card:nth-child(3) { animation-delay: 0.1s; }
.card:nth-child(4) { animation-delay: 0.15s; }
