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

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b, u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
}

footer, header, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

:root {
  --color-midnight: #0a1929;
  --color-steel: #1e3a5f;
  --color-frost: #2d4a6f;
  --color-ice: #3d5a7f;
  --color-slate: #8a9db5;
  --color-mist: #b8c7d9;
  --color-snow: #e8eef5;
  --color-ember: #ff6b35;
  --color-flame: #f7931e;
  --color-warmth: #ffa500;
  --color-danger: #cc0000;
  --gradient-cold: linear-gradient(135deg, var(--color-midnight) 0%, var(--color-steel) 50%, var(--color-frost) 100%);
  --gradient-warm: linear-gradient(135deg, var(--color-ember) 0%, var(--color-flame) 100%);
  --gradient-thermal: linear-gradient(to top, var(--color-midnight) 0%, var(--color-steel) 30%, var(--color-ember) 100%);
  --shadow-tactical: 0 4px 20px rgba(10, 25, 41, 0.6);
  --shadow-frost: 0 2px 12px rgba(61, 90, 127, 0.4);
  --shadow-glow: 0 0 30px rgba(255, 107, 53, 0.3);
  --frost-texture: repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(232, 238, 245, 0.03) 2px, rgba(232, 238, 245, 0.03) 4px);
}

.bg-cold {
  background: var(--gradient-cold);
}

.bg-warm {
  background: var(--gradient-warm);
}

.bg-midnight {
  background-color: var(--color-midnight);
}

.bg-steel {
  background-color: var(--color-steel);
}

.text-snow {
  color: var(--color-snow);
}

.text-ember {
  color: var(--color-ember);
}

.text-flame {
  color: var(--color-flame);
}

.text-ice {
  color: var(--color-ice);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "IBM Plex Mono", monospace;
  background: var(--color-midnight);
  color: var(--color-snow);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--frost-texture);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Saira Condensed", sans-serif;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-family: "Bebas Neue", sans-serif;
}

h2 {
  font-size: clamp(2rem, 6vw, 3.5rem);
}

h3 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h4 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
  line-height: 1.8;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
}

a {
  color: var(--color-flame);
  text-decoration: none;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover {
  color: var(--color-ember);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .container {
    padding: 0 4rem;
  }
}

section {
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  section {
    padding: 6rem 0;
  }
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-cold);
  position: relative;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--frost-texture);
  pointer-events: none;
  opacity: 0.4;
}
.hero__content {
  text-align: center;
  padding: 2.5rem;
  position: relative;
  z-index: 2;
}
.hero__title {
  margin-bottom: 1.5rem;
  color: var(--color-snow);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}
.hero__subtitle {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--color-snow);
  margin-bottom: 4rem;
  font-family: "IBM Plex Mono", monospace;
  text-transform: none;
  letter-spacing: 0.05em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.hero__cta {
  display: inline-block;
  padding: 1.5rem 4rem;
  background: var(--gradient-warm);
  color: var(--color-midnight);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.4);
  transition: box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: urgent-pulse 2s ease-in-out infinite;
}
@keyframes urgent-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
  }
  50% {
    box-shadow: 0 0 20px 5px rgba(255, 107, 53, 0);
  }
}

a.hero__cta:hover {
  transform: scale(1.05);
  color: white;
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.6);
  transition: box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding: 1.5rem 2.5rem 1.5rem 60px;
  background: rgba(10, 25, 41, 0.8);
  border: 2px solid var(--color-frost);
  border-left: none;
  border-radius: 50px 8px 8px 50px;
  text-align: left;
}

.hero__trust-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.8);
  border: 3px solid var(--color-flame);
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(247, 147, 30, 0.3);
  margin-left: -60px;
}

.hero__trust-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 3em;
}

.hero__trust-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  color: var(--color-snow);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero__trust-role {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  color: var(--color-mist);
  line-height: 1.4;
}

.hero__trust-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 4px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.85rem;
  color: var(--color-ice);
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero__trust-link:hover {
  color: var(--color-flame);
  transform: translateX(4px);
}

.reality {
  background: var(--color-steel);
  border-top: 4px solid var(--color-ember);
  border-bottom: 4px solid var(--color-ember);
}
.reality__header {
  text-align: center;
  margin-bottom: 4rem;
}
.reality__title {
  color: var(--color-snow);
  margin-bottom: 1.5rem;
}
.reality__description {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--color-mist);
  max-width: 900px;
  margin: 0 auto 2.5rem;
}
.reality__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 4rem;
}
@media (min-width: 768px) {
  .reality__stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .reality__stats {
    grid-template-columns: repeat(3, 1fr);
  }
}
.reality__stat {
  background: rgba(10, 25, 41, 0.6);
  padding: 2.5rem;
  border: 1px solid var(--color-ice);
  position: relative;
}
.reality__stat::before, .reality__stat::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid var(--color-ice);
}
.reality__stat::before {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
}
.reality__stat::after {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
}
.reality__stat {
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.reality__stat:hover {
  transform: translateY(-4px);
  background: rgba(10, 25, 41, 0.8);
}
.reality__stat-value {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--color-ember);
  display: block;
  margin-bottom: 1rem;
}
.reality__stat-label {
  font-size: 0.9rem;
  color: var(--color-mist);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.reality__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 6rem;
}
@media (min-width: 768px) {
  .reality__gallery {
    grid-template-columns: 3fr 5fr 5fr 3fr;
  }
}
.reality__photo {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.reality__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(20%);
}
.reality__photo:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}
.reality__photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--color-snow);
  font-size: 0.8rem;
  font-weight: 500;
}

.supplies {
  background: var(--color-midnight);
}
.supplies__header {
  text-align: center;
  margin-bottom: 4rem;
}
.supplies__title {
  color: var(--color-flame);
  margin-bottom: 1.5rem;
}
.supplies__description {
  color: var(--color-mist);
  max-width: 800px;
  margin: 0 auto;
}
.supplies__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .supplies__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.supplies__item {
  background: rgba(30, 58, 95, 0.3);
  padding: 2.5rem;
  border: 1px solid var(--color-frost);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.supplies__item:hover {
  border-color: var(--color-flame);
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.2);
  transition: box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.supplies__item:hover .supplies__icon {
  color: var(--color-ember);
  transform: scale(1.1);
}
.supplies__icon {
  width: 48px;
  height: 48px;
  color: var(--color-flame);
  margin-bottom: 1.5rem;
  display: block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  stroke-width: 1.5;
}
.supplies__icon--img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 8px;
}
.supplies__item-title {
  font-size: 1.25rem;
  color: var(--color-snow);
  margin-bottom: 1rem;
}
.supplies__item-description {
  font-size: 0.95rem;
  color: var(--color-mist);
  line-height: 1.6;
}

.tiers {
  background: var(--gradient-cold);
  position: relative;
}
.tiers__header {
  text-align: center;
  margin-bottom: 4rem;
}
.tiers__title {
  color: var(--color-snow);
  margin-bottom: 1.5rem;
}
.tiers__subtitle {
  color: var(--color-flame);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: 2.5rem;
}
.tiers__thermal-gauge {
  max-width: 120px;
  height: 400px;
  margin: 0 auto 4rem;
  background: linear-gradient(to top, var(--color-midnight), var(--color-steel), var(--color-ember));
  border: 2px solid var(--color-ice);
  position: relative;
}
@media (min-width: 1024px) {
  .tiers__thermal-gauge {
    height: 500px;
  }
}
.tiers__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .tiers__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 768px) {
  .tiers__tier {
    grid-column: span 3;
  }
}
@media (min-width: 768px) {
  .tiers__tier:first-child {
    grid-column: span 2;
  }
}
@media (min-width: 768px) {
  .tiers__tier--featured {
    grid-column: span 4;
  }
}
.tiers__tier {
  display: block;
  text-decoration: none;
  color: inherit;
  background: rgba(10, 25, 41, 0.8);
  border: 2px solid var(--color-frost);
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
  animation: fade-in-up 0.6s cubic-bezier(0, 0, 0.2, 1) backwards;
}
.tiers__tier:nth-child(1) {
  animation-delay: 0.1s;
}
.tiers__tier:nth-child(2) {
  animation-delay: 0.2s;
}
.tiers__tier:nth-child(3) {
  animation-delay: 0.3s;
}
.tiers__tier:nth-child(4) {
  animation-delay: 0.4s;
}
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.tiers__tier:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--color-flame);
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
  transition: box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.tiers__tier--featured {
  border: 3px solid var(--color-ember);
  background: rgba(255, 107, 53, 0.1);
}
.tiers__tier--featured::before {
  content: "BEST IMPACT";
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-ember);
  color: var(--color-midnight);
  padding: 0.4rem 1.5rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}
.tiers__tier-amount {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--color-ember);
  margin-bottom: 1rem;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.tiers__tier-amount:hover {
  color: var(--color-flame);
  transform: scale(1.05);
}
.tiers__tier-title {
  font-size: 1.5rem;
  color: var(--color-flame);
  margin-bottom: 1.5rem;
}
.tiers__tier-description {
  color: var(--color-mist);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
}
.tiers__tier-impact {
  color: var(--color-snow);
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-frost);
}
.tiers__tier-soldiers {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(247, 147, 30, 0.2);
  border-left: 3px solid var(--color-flame);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.875rem;
  color: var(--color-flame);
}

.chaplain {
  background: var(--color-steel);
}
.chaplain__header {
  text-align: center;
  margin-bottom: 4rem;
}
.chaplain__title {
  color: var(--color-snow);
  margin-bottom: 1.5rem;
}
.chaplain__content {
  max-width: 900px;
  margin: 0 auto;
}
.chaplain__profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4rem;
}
.chaplain__photo-frame {
  position: relative;
  display: inline-block;
  padding: 12px;
  background: var(--color-midnight);
  margin-bottom: 1.5rem;
}
.chaplain__photo-frame::before, .chaplain__photo-frame::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  border-color: var(--color-flame);
  border-style: solid;
  filter: drop-shadow(0 0 6px rgba(247, 147, 30, 0.4));
}
.chaplain__photo-frame::before {
  top: 0;
  left: 0;
  border-width: 3px 0 0 3px;
}
.chaplain__photo-frame::after {
  top: 0;
  right: 0;
  border-width: 3px 3px 0 0;
}
.chaplain__corners-bottom {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.chaplain__corners-bottom::before, .chaplain__corners-bottom::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  border-color: var(--color-flame);
  border-style: solid;
  filter: drop-shadow(0 0 6px rgba(247, 147, 30, 0.4));
}
.chaplain__corners-bottom::before {
  bottom: 0;
  left: 0;
  border-width: 0 0 3px 3px;
}
.chaplain__corners-bottom::after {
  bottom: 0;
  right: 0;
  border-width: 0 3px 3px 0;
}
.chaplain__photo {
  display: block;
  width: 280px;
  height: auto;
  aspect-ratio: 2/3;
  object-fit: cover;
  object-position: top center;
}
@media (min-width: 1024px) {
  .chaplain__photo {
    width: 380px;
  }
}
.chaplain__photo-credit {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 0.7rem;
  color: var(--color-slate);
  background: rgba(10, 25, 41, 0.8);
  padding: 0.25rem 0.5rem;
  letter-spacing: 0.05em;
  z-index: 2;
}
.chaplain__designation {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--color-midnight);
  border: 2px solid var(--color-flame);
  color: var(--color-flame);
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.chaplain__intro {
  font-size: 1.1rem;
  color: var(--color-mist);
  margin-bottom: 4rem;
  text-align: center;
  line-height: 1.8;
}
.chaplain__youtube-link {
  text-align: center;
  margin-bottom: 4rem;
}
.chaplain__youtube-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 4rem;
  background: #ff0000;
  color: white;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
}
.chaplain__youtube-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 30px rgba(255, 0, 0, 0.5);
  color: white;
}
.chaplain__youtube-icon {
  font-size: 1.5rem;
}
.chaplain__youtube-handle {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 400;
}
.chaplain__youtube-stats {
  margin-top: 1.5rem;
  color: var(--color-mist);
  font-size: 0.95rem;
}
.chaplain__videos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 4rem;
  justify-items: center;
}
@media (min-width: 768px) {
  .chaplain__videos {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
}
.chaplain__video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--color-midnight);
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--color-frost);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.chaplain__video-container:hover {
  border-color: var(--color-flame);
}
.chaplain__video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.chaplain__video-container--vertical {
  aspect-ratio: 9/16;
  width: 100%;
  max-width: 280px;
}
@media (min-width: 768px) {
  .chaplain__video-container--vertical {
    max-width: 220px;
  }
}
@media (min-width: 1024px) {
  .chaplain__video-container--vertical {
    max-width: 260px;
  }
}
.chaplain__video-label {
  display: block;
  text-align: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-flame);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.final-cta {
  background: var(--gradient-warm);
  text-align: center;
  padding: 6rem 0;
}
.final-cta__title {
  color: var(--color-midnight);
  margin-bottom: 1.5rem;
}
.final-cta__description {
  color: rgba(10, 25, 41, 0.8);
  font-size: 1.25rem;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta__button {
  display: inline-block;
  padding: 2.5rem 6rem;
  background: var(--color-midnight);
  color: var(--color-flame);
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 3px solid var(--color-midnight);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

a.final-cta__button:hover {
  background: var(--color-flame);
  color: white;
  transform: scale(1.05);
}

.urgency-footer {
  background: var(--color-midnight);
  border-top: 4px solid var(--color-danger);
  padding: 4rem 0;
  text-align: center;
}
.urgency-footer__message {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-danger);
  margin-bottom: 1.5rem;
  animation: urgent-pulse 2s ease-in-out infinite;
}
.urgency-footer__submessage {
  color: var(--color-mist);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/*# sourceMappingURL=main.css.map */
