:root {
  --orange: #ff6b00;
  --orange-light: #ff9d2e;
  --black: #080808;
  --black-soft: #111111;
  --white: #ffffff;
  --cream: #f5f3ef;
  --gray: #b6b6b6;
  --line: rgba(255, 255, 255, 0.12);
  --radius: 22px;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: #171717;
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.header-link {
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
}

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

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.8);
}

.header-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d5d5d5;
}

.header-link:hover {
  color: var(--orange-light);
}

.hero {
  min-height: 740px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    radial-gradient(circle at 50% 40%, #17120e 0%, var(--black) 52%);
  background-size: 54px 54px, 54px 54px, auto;
  padding: 145px 0 100px;
}

.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 1px;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 107, 0, 0.2);
}

.hero-glow-one {
  width: 540px;
  height: 540px;
  right: -260px;
  top: 70px;
}

.hero-glow-two {
  width: 240px;
  height: 240px;
  left: -130px;
  bottom: 30px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.eyebrow span {
  width: 24px;
  height: 2px;
  background: var(--orange);
}

.eyebrow.dark {
  color: var(--orange);
  margin-bottom: 14px;
}

.hero h1 {
  max-width: 950px;
  margin: 0 auto;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(42px, 6.8vw, 82px);
  line-height: 0.99;
  letter-spacing: -3.6px;
  text-transform: uppercase;
}

.hero h1 strong {
  color: var(--orange);
  font-weight: 900;
}

.hero-text {
  max-width: 730px;
  margin: 30px auto 0;
  color: #c7c7c7;
  font-size: 17px;
  line-height: 1.75;
}

.hero-cta {
  margin-top: 36px;
  padding: 17px 26px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 16px 40px rgba(255, 107, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(255, 107, 0, 0.35);
}

.hero-points {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 28px;
  color: #bfbfbf;
  font-size: 12px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-points i {
  color: var(--orange);
  font-style: normal;
  font-weight: 800;
}

.resources-section {
  padding: 100px 0;
}

.section-heading {
  margin-bottom: 46px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: end;
}

.section-heading h2,
.final-cta h2 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.05;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.section-heading > p {
  margin: 0;
  color: #676767;
  line-height: 1.75;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.resource-card {
  min-width: 0;
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #e2ded8;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.resource-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 107, 0, 0.5);
}

.resource-card.featured {
  color: var(--white);
  background: var(--black-soft);
  border-color: #292929;
}

.featured-label {
  position: absolute;
  top: 18px;
  right: -34px;
  width: 150px;
  padding: 7px 0;
  background: var(--orange);
  color: var(--white);
  transform: rotate(38deg);
  text-align: center;
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1px;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.card-number {
  color: #b8b4ae;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  font-size: 25px;
  box-shadow: 0 10px 26px rgba(255, 107, 0, 0.2);
}

.card-kicker {
  margin: 32px 0 10px;
  color: var(--orange);
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.resource-card h3 {
  margin: 0;
  min-height: 102px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 26px;
  line-height: 1.12;
  letter-spacing: -0.8px;
  text-transform: uppercase;
}

.card-description {
  margin: 20px 0 22px;
  color: #686868;
  font-size: 14px;
  line-height: 1.7;
}

.featured .card-description {
  color: #bcbcbc;
}

.resource-card ul {
  margin: 0 0 28px;
  padding: 22px 0 0;
  border-top: 1px solid #ebe8e4;
  list-style: none;
}

.featured ul {
  border-color: #303030;
}

.resource-card li {
  margin: 12px 0;
  padding-left: 25px;
  position: relative;
  color: #4f4f4f;
  font-size: 13px;
  line-height: 1.45;
}

.featured li {
  color: #d1d1d1;
}

.resource-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}

.download-btn {
  width: 100%;
  margin-top: auto;
  padding: 16px 18px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--black);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.featured .download-btn,
.download-btn:hover {
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
}

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

.download-btn:focus-visible,
.hero-cta:focus-visible,
.header-link:focus-visible,
.final-cta a:focus-visible {
  outline: 3px solid var(--orange-light);
  outline-offset: 4px;
}

.download-note {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #747474;
  font-size: 12px;
  text-align: center;
}

.download-note p {
  margin: 0;
}

.download-note span {
  color: var(--orange);
  font-size: 17px;
}

.final-cta {
  color: var(--white);
  background: var(--black);
  padding: 72px 0;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.final-cta h2 {
  max-width: 700px;
}

.final-cta a {
  flex: 0 0 auto;
  padding: 16px 22px;
  border: 1px solid #4b4b4b;
  border-radius: 999px;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
}

.final-cta a:hover {
  color: var(--orange-light);
  border-color: var(--orange);
}

footer {
  padding: 24px 0;
  color: #777;
  background: #030303;
  font-size: 11px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin: 0;
}

.download-toast {
  position: fixed;
  z-index: 20;
  right: 22px;
  bottom: 22px;
  max-width: calc(100% - 44px);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #292929;
  border-radius: 14px;
  color: var(--white);
  background: #111;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
  transform: translateY(30px);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}

.download-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.download-toast span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  font-weight: 900;
}

.download-toast p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 960px) {
  .resource-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0 auto;
  }

  .resource-card h3 {
    min-height: auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 34px, 1160px);
  }

  .header-inner {
    min-height: 68px;
  }

  .header-link {
    font-size: 0;
  }

  .header-link span {
    font-size: 18px;
  }

  .hero {
    min-height: auto;
    padding: 125px 0 82px;
    background-size: 36px 36px, 36px 36px, auto;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 54px);
    letter-spacing: -2.2px;
  }

  .hero-text {
    margin-top: 24px;
    font-size: 15px;
  }

  .hero-points {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .resources-section {
    padding: 74px 0;
  }

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

  .section-heading h2,
  .final-cta h2 {
    letter-spacing: -1.4px;
  }

  .resource-card {
    padding: 26px 22px;
  }

  .resource-card h3 {
    font-size: 23px;
  }

  .final-cta {
    padding: 60px 0;
  }

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

  .footer-inner {
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
