
:root {
  --navy: #071426;
  --navy-2: #0b1f39;
  --navy-3: #102a4c;
  --red: #c51f2d;
  --red-2: #ec3343;
  --white: #f7f8fa;
  --muted: #b7c0ce;
  --gold: #d8b565;
  --line: rgba(255,255,255,.12);
  --shadow: 0 24px 70px rgba(0,0,0,.28);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(197,31,45,.12), transparent 28%),
    linear-gradient(180deg, #06111f 0%, var(--navy) 45%, #050e19 100%);
  color: var(--white);
  font-family: "Inter", system-ui, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .05;
  background-image:
    linear-gradient(rgba(255,255,255,.7) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.7) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

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

button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(6,17,31,.76);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.brand-mark { color: var(--red-2); }

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .9rem;
  font-weight: 700;
}

nav a { color: #dbe2eb; }

nav a:hover { color: white; }

.nav-cta {
  padding: 11px 16px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
}

.menu-btn {
  display: none;
  color: white;
  border: 1px solid var(--line);
  background: transparent;
  padding: 9px 11px;
  font: inherit;
  font-weight: 700;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.hero {
  min-height: 760px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: -160px;
  top: 120px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255,255,255,.018),
    0 0 0 140px rgba(197,31,45,.025);
  pointer-events: none;
}

.hero-stars {
  position: absolute;
  top: 90px;
  right: 0;
  width: 270px;
  font-size: 1.2rem;
  color: rgba(255,255,255,.18);
  letter-spacing: .7em;
  line-height: 2.1;
}

.eyebrow {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .24em;
  margin-bottom: 18px;
}

h1, h2, h3 {
  font-family: "Barlow Condensed", sans-serif;
  margin: 0;
  letter-spacing: .015em;
}

h1 {
  max-width: 900px;
  font-size: clamp(5.4rem, 12vw, 9.5rem);
  line-height: .82;
  font-weight: 800;
}

h1 span, .final-cta h2 span { color: var(--red-2); }

.hero-copy {
  max-width: 700px;
  color: #d1d9e4;
  line-height: 1.75;
  font-size: 1.08rem;
  margin: 34px 0 0;
}

.hero-actions, .buy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: .83rem;
  font-weight: 800;
  letter-spacing: .06em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

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

.btn-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 12px 35px rgba(197,31,45,.24);
}

.btn-primary:hover { background: var(--red-2); }

.btn-secondary {
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
  color: white;
}

.btn-ghost {
  border-color: transparent;
  color: #d8dee8;
}

.btn-light {
  background: white;
  color: var(--navy);
}

.contract-card {
  margin-top: 36px;
  padding: 16px 16px 16px 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 820px;
}

.contract-label {
  display: block;
  color: #93a0b1;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
  margin-bottom: 8px;
}

code {
  display: block;
  color: white;
  font-size: .78rem;
  word-break: break-all;
}

.copy-btn {
  flex: 0 0 auto;
  background: transparent;
  border: 1px solid var(--line);
  color: white;
  min-height: 42px;
  padding: 0 14px;
  font-weight: 800;
  cursor: pointer;
}

.hero-line {
  margin-top: 32px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: #f0f2f6;
}

.split-section, .wwp-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  border-top: 1px solid var(--line);
}

h2 {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: .92;
  font-weight: 800;
}

.mission-copy p, .wwp-copy p, .impact-card p {
  color: #c7d0dd;
  line-height: 1.85;
  font-size: 1.02rem;
}

.mission-copy p:first-child { margin-top: 0; }

.impact-card {
  position: relative;
  overflow: hidden;
  padding: 66px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(120deg, rgba(197,31,45,.14), transparent 34%),
    linear-gradient(150deg, #102947, #08182b);
  box-shadow: var(--shadow);
}

.impact-card::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -150px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 50px solid rgba(255,255,255,.025);
}

.impact-card p { max-width: 790px; }

.impact-icon {
  position: absolute;
  top: 32px;
  right: 38px;
  color: rgba(255,255,255,.14);
  font-size: 3.8rem;
}

.impact-note {
  margin-top: 24px;
  color: var(--gold);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.wwp-section { align-items: center; }

.text-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.quote-card {
  padding: 38px;
  border-left: 3px solid var(--red);
  background: rgba(255,255,255,.04);
}

.quote-card span, .quote-card small {
  color: #9da9b8;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.quote-card blockquote {
  margin: 20px 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.3rem;
  line-height: 1.05;
  font-weight: 700;
}

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

.steps-grid, .community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.step-card, .community-card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
}

.step-card {
  min-height: 220px;
  padding: 28px;
}

.step-card span {
  color: var(--red-2);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
}

.step-card h3 {
  margin-top: 34px;
  font-size: 1.45rem;
}

.step-card p {
  color: #aeb9c7;
  line-height: 1.65;
  font-size: .9rem;
}

.buy-actions { margin-top: 24px; }

.community-grid { grid-template-columns: repeat(3, 1fr); }

.community-card {
  min-height: 250px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.community-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.26);
  background: rgba(255,255,255,.055);
}

.community-kicker {
  color: var(--gold);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.community-card strong {
  margin-top: 32px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.8rem;
}

.community-card p {
  color: #aeb9c7;
  line-height: 1.65;
  font-size: .9rem;
}

.community-card b {
  margin-top: auto;
  font-size: .8rem;
}

.final-cta {
  width: min(1120px, calc(100% - 40px));
  margin-bottom: 70px;
  padding: 90px 40px;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(7,20,38,.89), rgba(7,20,38,.89)),
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,.7) 0 18px,
      rgba(197,31,45,.7) 18px 36px
    );
}

.final-stars {
  color: var(--gold);
  letter-spacing: .6em;
  margin-bottom: 20px;
}

.final-cta p {
  color: #c7d0dd;
  margin: 24px 0 0;
}

.final-cta .hero-actions { justify-content: center; }

footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 70px;
  border-top: 1px solid var(--line);
  color: #99a6b5;
  font-size: .78rem;
  line-height: 1.7;
}

.footer-brand {
  color: white;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.footer-brand span { color: var(--red-2); }

footer p { max-width: 820px; }

.risk { color: #788697; }

.footer-links {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 700;
  color: #cbd3de;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 50;
  transform: translate(-50%, 24px);
  opacity: 0;
  pointer-events: none;
  padding: 12px 16px;
  background: white;
  color: var(--navy);
  font-weight: 800;
  font-size: .8rem;
  transition: .25s ease;
  box-shadow: var(--shadow);
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 900px) {
  .menu-btn { display: block; }

  nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 20px;
    right: 20px;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #09182a;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  nav.open { display: flex; }

  nav a {
    padding: 14px 10px;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }

  .nav-cta { margin-top: 8px; text-align: center; }

  .hero { min-height: 700px; }

  .hero-stars { display: none; }

  .split-section, .wwp-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .steps-grid { grid-template-columns: repeat(2, 1fr); }

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

@media (max-width: 620px) {
  .site-header { padding: 14px 18px; }

  .section { width: min(100% - 28px, 1120px); padding: 72px 0; }

  .hero { min-height: 720px; padding-top: 36px; }

  h1 { font-size: clamp(4.7rem, 24vw, 7rem); }

  .hero-copy { font-size: .97rem; }

  .hero-actions, .buy-actions { flex-direction: column; }

  .btn { width: 100%; }

  .contract-card {
    align-items: stretch;
    flex-direction: column;
  }

  .copy-btn { width: 100%; }

  code { font-size: .72rem; }

  .impact-card { padding: 42px 24px; }

  .impact-icon { top: 18px; right: 22px; font-size: 2.5rem; }

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

  .step-card { min-height: 190px; }

  .final-cta {
    width: calc(100% - 28px);
    padding: 70px 20px;
  }
}


/* V2 official $VETS branding */
.official-brand-art {
  width: min(1180px, 100%);
  margin: 0 auto 34px;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(218, 170, 70, .28);
  border-radius: 18px;
  overflow: hidden;
  background: #030405;
  box-shadow: 0 22px 65px rgba(0,0,0,.42);
}

.official-brand-art::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 45px rgba(0,0,0,.34);
}

.official-brand-art img {
  display: block;
  width: 100%;
  height: auto;
}

.impact-card::after {
  pointer-events: none;
}

.impact-card > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 700px) {
  .official-brand-art {
    margin-bottom: 26px;
    border-radius: 12px;
  }

  .official-brand-art img {
    width: 178%;
    max-width: none;
    transform: translateX(-3%);
  }
}


/* V2.1 mobile hero refinement */
@media (max-width: 700px) {
  .hero {
    padding-top: 28px;
  }

  .official-brand-art {
    width: 100%;
    margin: 0 auto 22px;
    border-radius: 12px;
  }

  .official-brand-art img {
    width: 100%;
    max-width: 100%;
    height: auto;
    transform: none;
    object-fit: contain;
  }

  .hero-stars {
    display: none;
  }

  .hero .eyebrow {
    margin-top: 0;
    margin-bottom: 14px;
  }

  .hero-title {
    display: none;
  }

  .hero-copy {
    margin-top: 0;
    margin-bottom: 22px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 0;
  }

  .hero-actions .btn {
    min-height: 52px;
  }

  .contract-card {
    margin-top: 20px;
  }
}
