html,
body {
  height: 100%;
  margin: 0;
}

body {
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
  background: #0f0f13;
  color: #f0ede9;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

:root {
  --charcoal: #0f0f13;
  --steel: #6b8a99;
  --off-white: #f0ede9;
  --copper: #b87333;
  --panel-border: rgba(107, 138, 153, 0.16);
  --shadow-lg: 0 28px 90px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 20px 56px rgba(0, 0, 0, 0.32);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(18, 18, 22, 0.92);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.glow-line,
.footer-glow-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper), var(--steel), transparent);
  opacity: 0.55;
}

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

.brand-link {
  color: var(--steel);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.2;
  transition: color 0.25s ease;
}

.brand-link:hover {
  color: var(--copper);
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.875rem;
  font-weight: 500;
}

.nav-link {
  position: relative;
  color: var(--steel);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), #8fa3b0);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--off-white);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.cta-btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--copper), #8fa3b0, var(--copper));
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.3s ease;
  z-index: -1;
}

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

.cta-btn:hover::before {
  opacity: 1;
}

.desktop-cta,
.cta-primary {
  background: linear-gradient(135deg, var(--copper), #8fa3b0);
  color: var(--charcoal);
  box-shadow: 0 16px 34px rgba(184, 115, 51, 0.24);
}

.cta-btn--nav {
  min-height: 2.625rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
}


.cta-secondary {
  border: 1px solid rgba(107, 138, 153, 0.32);
  color: var(--off-white);
  background: rgba(15, 18, 24, 0.75);
}

.cta-secondary:hover {
  border-color: var(--copper);
  color: var(--copper);
}

.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--off-white);
  padding: 6px;
  cursor: pointer;
}

.mobile-toggle i,
.cta-btn i,
.card-icon i,
.footer-contact i,
.footer-socials i,
.status-pill i {
  width: 18px;
  height: 18px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, #0f0f13 0%, #1a1a20 50%, #0a0d14 100%);
  backdrop-filter: blur(20px);
  padding: 96px 24px 32px;
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1.05rem;
  font-weight: 500;
}

.mobile-cta {
  width: 100%;
  margin-top: 28px;
}

.resources-hero,
.what-to-expect,
.mini-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f0f13 0%, #171a21 52%, #0a0d14 100%);
}

.resources-hero {
  padding: 140px 0 100px;
}

.what-to-expect,
.mini-cta {
  padding: 96px 0;
  background: linear-gradient(180deg, rgba(10, 13, 20, 0.98) 0%, rgba(15, 18, 24, 1) 100%);
}

.hero-grid,
.what-to-expect::before,
.mini-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(0deg, transparent 24%, rgba(107, 138, 153, 0.04) 25%, rgba(107, 138, 153, 0.04) 26%, transparent 27%, transparent 74%, rgba(107, 138, 153, 0.04) 75%, rgba(107, 138, 153, 0.04) 76%, transparent 77%, transparent),
    linear-gradient(90deg, transparent 24%, rgba(107, 138, 153, 0.04) 25%, rgba(107, 138, 153, 0.04) 26%, transparent 27%, transparent 74%, rgba(107, 138, 153, 0.04) 75%, rgba(107, 138, 153, 0.04) 76%, transparent 77%, transparent);
  background-size: 82px 82px;
  animation: gridShift 20s linear infinite;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-copper {
  width: 560px;
  height: 560px;
  right: -140px;
  top: -120px;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.14), transparent 70%);
  animation: glowFloat 10s ease-in-out infinite;
}

.hero-glow-steel {
  width: 480px;
  height: 480px;
  left: -120px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(107, 138, 153, 0.12), transparent 72%);
  animation: glowFloat 12s ease-in-out infinite reverse;
}

.resources-layout,
.expectation-grid,
.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
}

.resources-layout {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 52px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 22px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(184, 115, 51, 0.22);
  background: rgba(184, 115, 51, 0.08);
  color: var(--copper);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.resources-copy h1,
.section-intro h2,
.mini-cta-shell h2 {
  margin: 0;
  color: var(--off-white);
  line-height: 1.05;
}

.resources-copy h1 {
  font-size: clamp(2.6rem, 6vw, 4.9rem);
  max-width: 12ch;
}

.lead,
.section-intro p,
.mini-cta-shell p,
.visual-card p,
.expectation-card p {
  color: #afc0c9;
  line-height: 1.72;
}

.lead {
  margin-top: 22px;
  max-width: 620px;
  font-size: 1.05rem;
}

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

.visual-shell,
.expectation-card,
.mini-cta-shell {
  position: relative;
  z-index: 1;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(20, 24, 31, 0.92), rgba(8, 10, 15, 0.98));
  border: 1px solid rgba(184, 115, 51, 0.14);
  box-shadow: var(--shadow-lg);
}

.visual-shell {
  padding: 26px;
  overflow: hidden;
}

.visual-shell::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 20px;
  border: 1px solid rgba(107, 138, 153, 0.1);
  background-image:
    linear-gradient(90deg, rgba(107, 138, 153, 0.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(107, 138, 153, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}

.visual-top,
.visual-card {
  position: relative;
  z-index: 1;
}

.visual-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(184, 115, 51, 0.1);
  border: 1px solid rgba(184, 115, 51, 0.22);
  color: var(--copper);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status-meta {
  color: #97adb9;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visual-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(17, 20, 27, 0.86);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow-md);
}

.visual-card small {
  display: block;
  margin-bottom: 10px;
  color: var(--copper);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visual-card strong {
  display: block;
  color: var(--off-white);
  font-size: 1.1rem;
  line-height: 1.35;
  margin-bottom: 8px;
}

.primary-card {
  margin-bottom: 16px;
}

.visual-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mini-card {
  min-height: 118px;
}

.section-intro {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-bottom: 38px;
}

.section-intro h2,
.mini-cta-shell h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-intro p {
  margin-top: 18px;
}

.expectation-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.expectation-card {
  padding: 24px;
  border: 1px solid var(--panel-border);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.expectation-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 115, 51, 0.24);
  box-shadow: 0 26px 72px rgba(184, 115, 51, 0.08);
}

.card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
  background: rgba(184, 115, 51, 0.1);
  border: 1px solid rgba(184, 115, 51, 0.22);
}

.expectation-card h3 {
  margin: 0 0 10px;
  color: var(--off-white);
  font-size: 1.15rem;
}

.expectation-card p {
  margin: 0;
  font-size: 0.97rem;
}

.mini-cta-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 30px;
}

.mini-cta-shell p {
  margin: 16px 0 0;
  max-width: 760px;
}

.site-footer {
  padding: 30px 0 34px;
  background: #0d1016;
}

.footer-inner {
  padding-top: 34px;
}

.footer-grid {
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.8fr));
  gap: 30px;
}

.footer-brand h2 {
  margin: 0 0 12px;
  font-size: 1.65rem;
}

.footer-brand p,
.footer-group li a,
.footer-bottom p,
.footer-contact a {
  color: #9bb0bb;
}

.footer-support {
  margin-top: 12px;
}

.footer-title {
  margin: 0 0 14px;
  color: var(--off-white);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-group a {
  transition: color 0.25s ease;
}

.footer-group a:hover,
.footer-contact a:hover {
  color: var(--copper);
}

.footer-contact {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.footer-contact div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i,
.footer-socials i {
  color: var(--copper);
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 20, 27, 0.86);
  border: 1px solid var(--panel-border);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 115, 51, 0.24);
  box-shadow: 0 14px 30px rgba(184, 115, 51, 0.1);
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(107, 138, 153, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

@keyframes glowFloat {
  0%,
  100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(22px, -26px, 0) scale(1.04); }
}

@keyframes gridShift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(82px, 82px); }
}

@media (max-width: 980px) {
  .resources-layout,
  .expectation-grid,
  .footer-grid,
  .mini-cta-shell {
    grid-template-columns: 1fr;
  }

  .mini-cta-shell {
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .resources-hero,
  .what-to-expect,
  .mini-cta {
    padding-top: 110px;
    padding-bottom: 80px;
  }

  .resources-copy h1 {
    font-size: 2.4rem;
  }

  .lead {
    font-size: 0.98rem;
  }

  .visual-shell,
  .expectation-card,
  .mini-cta-shell {
    padding: 20px;
  }

  .visual-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 32px, 1120px);
  }

  .resources-copy h1,
  .section-intro h2,
  .mini-cta-shell h2 {
    font-size: 2rem;
  }

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

/* Shared homepage navigation */
body {
  padding-top: 4.65rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(15, 15, 19, 0.9);
  border-bottom: 1px solid rgba(107, 138, 153, 0.1);
  box-shadow: none;
}

.site-header > .container,
.mobile-menu > .container {
  width: min(calc(100% - 2rem), 78rem);
  margin: 0 auto;
}

.glow-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, #b87333, #6b8a99, transparent);
  opacity: 0.5;
}

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

.brand-link {
  color: #6b8a99;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.2;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.nav-link {
  color: #f0ede9;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #d59a65;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.cta-btn--nav,
#cta-mobile {
  min-height: 2.625rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  width: auto;
}

.mobile-toggle {
  display: none;
  padding: 0.5rem;
  border: 0;
  background: transparent;
  color: #f0ede9;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  inset: 4.6rem 0 auto;
  z-index: 40;
  padding: 0;
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, #0f0f13 0%, #1a1a20 50%, #0a0d14 100%);
  border-bottom: 1px solid rgba(107, 138, 153, 0.12);
  backdrop-filter: blur(20px);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu-inner {
  display: grid;
  gap: 1rem;
  padding: 1.5rem 0 1.75rem;
}

@media (max-width: 767px) {
  .desktop-nav,
  .cta-btn--nav {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
