:root {
  --patriot-red: #e10600;
  --deep-navy: #071b4d;
  --bright-blue: #0057ff;
  --white: #ffffff;
  --off-white: #f7f9ff;
  --gold: #ffd447;
  --dark-text: #07111f;
  --muted: #52607a;
  --line: rgba(7, 27, 77, 0.14);
  --navy-glass: rgba(7, 27, 77, 0.88);
  --red-shadow: rgba(225, 6, 0, 0.28);
  --blue-shadow: rgba(0, 87, 255, 0.22);
  --shadow: 0 24px 70px rgba(7, 17, 31, 0.18);
  --shadow-soft: 0 14px 38px rgba(7, 17, 31, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--dark-text);
  background:
    linear-gradient(90deg, rgba(7, 27, 77, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, var(--white), var(--off-white));
  background-size: 48px 48px, auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
summary {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

.section-pad {
  padding: 92px 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--deep-navy);
  border-radius: var(--radius);
  font-weight: 900;
  transform: translateX(-200vw);
}

.skip-link:focus {
  transform: translateX(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-header.has-shadow {
  box-shadow: 0 14px 32px rgba(7, 17, 31, 0.1);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--deep-navy);
  font-weight: 950;
  text-transform: uppercase;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 3px solid var(--deep-navy);
  border-radius: 50%;
  background: var(--patriot-red);
  color: var(--white);
  box-shadow: 5px 5px 0 var(--bright-blue);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 1.35rem;
  line-height: 1;
}

.brand-text {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 3px;
}

.site-nav a {
  padding: 9px 9px;
  border-radius: var(--radius);
  color: var(--deep-navy);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(0, 87, 255, 0.1);
}

.site-nav .nav-cta {
  margin-left: 6px;
  background: var(--patriot-red);
  color: var(--white);
  box-shadow: 4px 4px 0 var(--deep-navy);
}

.site-nav .social-link {
  color: var(--bright-blue);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--deep-navy);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 0;
  border-radius: var(--radius);
  background: var(--deep-navy);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--white);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 212, 71, 0.28), transparent 28%),
    linear-gradient(128deg, var(--deep-navy) 0 46%, var(--bright-blue) 46% 64%, var(--patriot-red) 64% 100%);
}

.hero::before,
.page-hero::before,
.section-navy::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    radial-gradient(circle, var(--white) 0 2px, transparent 2px),
    linear-gradient(135deg, transparent 0 47%, rgba(255, 255, 255, 0.46) 47% 48%, transparent 48% 100%);
  background-size: 42px 42px, 100% 100%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.78fr);
  align-items: center;
  gap: 58px;
}

.hero-copy h1,
.page-hero h1,
.section-copy h2,
.section-heading h2,
.join-copy h2,
.sponsor-box h2,
.legal-page h1,
.legal-page h2,
.thanks-card h1,
.signup-form h2,
.product-card h2,
.post-card h2,
.member-price strong {
  margin: 0;
  font-family: Impact, "Arial Narrow", sans-serif;
  letter-spacing: 0;
  line-height: 0.93;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 850px;
  color: var(--white);
  font-size: clamp(3.8rem, 8vw, 7.6rem);
  text-wrap: balance;
}

.hero-lede,
.page-hero p,
.section-copy p,
.section-heading p,
.join-copy p,
.sponsor-box p,
.legal-page p {
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-lede {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.25rem;
}

.eyebrow,
.sticker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  padding: 7px 11px;
  border: 2px solid currentColor;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--patriot-red);
  box-shadow: 4px 4px 0 currentColor;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.section-navy .eyebrow,
.sponsor-box .eyebrow,
.join-card .eyebrow {
  color: var(--gold);
  background: var(--deep-navy);
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 950;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -60%;
  width: 40%;
  transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  transition: left 520ms ease;
}

.button:hover::after,
.button:focus-visible::after {
  left: 120%;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--patriot-red);
  color: var(--white);
  box-shadow: 5px 5px 0 var(--deep-navy);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--bright-blue);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.76);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button-dark {
  background: var(--deep-navy);
  color: var(--white);
  box-shadow: 5px 5px 0 var(--patriot-red);
}

.button-light {
  background: var(--white);
  color: var(--deep-navy);
  box-shadow: 5px 5px 0 var(--gold);
}

.button-disabled,
.button[aria-disabled="true"] {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-row span,
.pill,
.product-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 11px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-card {
  position: relative;
  justify-self: end;
  width: min(100%, 500px);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 24px -20px -20px 24px;
  background: repeating-linear-gradient(-12deg, var(--patriot-red) 0 14px, var(--white) 14px 28px, var(--bright-blue) 28px 42px);
  border: 3px solid var(--deep-navy);
  border-radius: var(--radius);
}

.hero-card img,
.page-hero-img {
  position: relative;
  width: 100%;
  border: 8px solid var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.hero-card img {
  aspect-ratio: 4 / 5;
}

.float-card {
  position: absolute;
  z-index: 2;
  width: 216px;
  padding: 14px;
  border: 2px solid var(--deep-navy);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--deep-navy);
  box-shadow: 6px 6px 0 var(--patriot-red);
}

.float-card strong {
  display: block;
  line-height: 1.1;
  text-transform: uppercase;
}

.float-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
}

.float-card-top {
  top: 34px;
  left: -72px;
  transform: rotate(-3deg);
}

.float-card-bottom {
  right: -46px;
  bottom: 44px;
  transform: rotate(3deg);
}

.ticker {
  overflow: hidden;
  background: var(--patriot-red);
  color: var(--white);
  border-block: 5px solid var(--deep-navy);
}

.ticker-track {
  display: flex;
  gap: 34px;
  width: max-content;
  padding: 14px 0;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0;
  text-transform: uppercase;
  animation: ticker 32s linear infinite;
}

.ticker-track span::after {
  content: "*";
  margin-left: 34px;
  color: var(--gold);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.split-grid,
.page-hero-grid,
.sponsor-columns,
.merch-layout,
.members-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 62px;
}

.split-reverse {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
}

.section-copy h2,
.section-heading h2,
.join-copy h2,
.sponsor-box h2,
.legal-page h1,
.thanks-card h1 {
  color: var(--deep-navy);
  font-size: clamp(2.35rem, 5vw, 4.8rem);
}

.section-copy p,
.section-heading p {
  max-width: 720px;
}

.media-stack {
  position: relative;
  min-height: 610px;
}

.image-polaroid {
  position: absolute;
  width: 55%;
  border: 8px solid var(--white);
  border-bottom-width: 26px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.image-one {
  left: 3%;
  top: 0;
  transform: rotate(-6deg);
}

.image-two {
  right: 2%;
  bottom: 20px;
  transform: rotate(6deg);
}

.values-grid,
.feature-grid,
.ideas-grid,
.platform-grid,
.tier-grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

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

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

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

.values-grid article,
.feature-card,
.idea-card,
.post-card,
.product-card,
.mini-card,
.platform-card,
.tier-card,
.todo-note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.values-grid article,
.feature-card,
.idea-card,
.mini-card,
.platform-card,
.tier-card,
.todo-note {
  padding: 20px;
}

.values-grid h3,
.feature-card h3,
.idea-card h3,
.platform-card h3,
.tier-card h3,
.video-card h3,
.site-footer h3,
.mini-card strong,
.product-card h2,
.post-card h2 {
  margin: 0;
  color: var(--deep-navy);
  line-height: 1.1;
}

.values-grid p,
.feature-card p,
.idea-card p,
.platform-card p,
.tier-card p,
.video-card p,
.product-card p,
.post-card p,
.mini-card span,
.signup-form p,
.form-note {
  margin: 8px 0 0;
  color: var(--muted);
}

.platform-card,
.tier-card {
  position: relative;
  overflow: hidden;
}

.platform-card::before,
.tier-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--patriot-red), var(--bright-blue), var(--gold));
}

.platform-card .button,
.tier-card .button {
  margin-top: 18px;
}

.tier-card strong {
  display: block;
  margin: 10px 0;
  color: var(--deep-navy);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.9;
}

.tier-card ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.tier-card li + li {
  margin-top: 8px;
}

.section-navy {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 12%, rgba(225, 6, 0, 0.35), transparent 28%),
    linear-gradient(135deg, var(--deep-navy), #03091f);
  color: var(--white);
}

.section-navy > .container {
  position: relative;
  z-index: 1;
}

.section-navy .section-heading h2,
.section-navy .video-card h3,
.section-navy .feature-card h3,
.section-navy .section-copy h2 {
  color: var(--white);
}

.section-navy .section-heading p,
.section-navy .video-card p,
.section-navy .feature-card p,
.section-navy .section-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 36px;
}

.video-grid,
.product-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.video-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.video-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.video-card-copy {
  padding: 20px;
}

.video-card .pill,
.product-badge {
  margin-bottom: 12px;
  background: var(--deep-navy);
  color: var(--white);
}

.merch-preview {
  background:
    linear-gradient(135deg, rgba(225, 6, 0, 0.08), rgba(0, 87, 255, 0.1)),
    var(--white);
}

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

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

.mini-card span:first-child {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  background: var(--deep-navy);
  color: var(--white);
  border-radius: 50%;
  font-weight: 950;
}

.merch-poster {
  min-height: 600px;
  display: grid;
  place-items: center;
  padding: 36px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow);
  background:
    linear-gradient(rgba(7, 27, 77, 0.16), rgba(7, 27, 77, 0.9)),
    url("../images/hero-wide.webp") center / cover no-repeat;
}

.merch-poster::before,
.merch-poster::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 4px solid rgba(255, 255, 255, 0.5);
  transform: rotate(-3deg);
}

.merch-poster::after {
  inset: 34px;
  border-color: rgba(225, 6, 0, 0.75);
  transform: rotate(3deg);
}

.merch-poster p,
.merch-poster h3,
.merch-poster span {
  position: relative;
  z-index: 1;
  margin: 0;
}

.merch-poster p {
  color: var(--gold);
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.merch-poster h3 {
  margin-top: 10px;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(3.4rem, 8vw, 7rem);
  line-height: 0.86;
}

.merch-poster span {
  display: inline-flex;
  margin-top: 18px;
  padding: 9px 13px;
  background: var(--gold);
  color: var(--deep-navy);
  border-radius: var(--radius);
  font-weight: 950;
  text-transform: uppercase;
}

.join-card,
.sponsor-box {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.join-card {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 42px;
  align-items: center;
  padding: clamp(24px, 5vw, 54px);
  overflow: hidden;
  background:
    linear-gradient(126deg, var(--deep-navy) 0 50%, var(--bright-blue) 50% 100%);
  color: var(--white);
}

.join-card h2,
.join-card p,
.join-card .eyebrow {
  color: var(--white);
}

.signup-form {
  display: grid;
  gap: 12px;
  padding: clamp(20px, 4vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--dark-text);
  box-shadow: var(--shadow-soft);
}

.signup-form label,
.signup-form legend {
  color: var(--deep-navy);
  font-size: 0.9rem;
  font-weight: 900;
}

.signup-form input,
.signup-form select,
.signup-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  border: 1px solid rgba(7, 27, 77, 0.22);
  border-radius: var(--radius);
  background: var(--off-white);
  color: var(--dark-text);
}

.signup-form textarea {
  min-height: 140px;
  resize: vertical;
}

.signup-form input:focus,
.signup-form select:focus,
.signup-form textarea:focus {
  outline: 3px solid rgba(0, 87, 255, 0.18);
  border-color: var(--bright-blue);
}

.signup-form .button {
  width: 100%;
  margin-top: 8px;
}

.form-disclaimer {
  padding: 10px 12px;
  border-left: 4px solid var(--gold);
  background: var(--off-white);
  color: var(--deep-navy) !important;
  font-size: 0.9rem;
  font-weight: 750;
  text-align: left;
}

.form-note {
  font-size: 0.88rem;
  text-align: center;
}

.hidden {
  display: none !important;
}

.section-gallery {
  padding-top: 36px;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.photo-strip img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 5px solid var(--white);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.photo-strip img:nth-child(even) {
  transform: translateY(28px);
}

.sponsor-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: clamp(26px, 5vw, 56px);
  background:
    linear-gradient(135deg, rgba(225, 6, 0, 0.94), rgba(7, 27, 77, 0.96));
  color: var(--white);
}

.sponsor-box h2,
.sponsor-box p,
.sponsor-box .eyebrow {
  color: var(--white);
}

.site-footer {
  padding: 62px 0 26px;
  background: var(--deep-navy);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(3, minmax(150px, 0.4fr));
  gap: 30px;
}

.footer-brand {
  color: var(--white);
}

.footer-grid p,
.footer-bottom p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid a:not(.brand) {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  overflow-wrap: anywhere;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--white);
}

.site-footer h3 {
  color: var(--white);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.9rem;
}

.footer-bottom p:last-child {
  max-width: 650px;
  text-align: right;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  min-height: 520px;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(3.3rem, 7vw, 6.6rem);
}

.page-hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
}

.page-hero-img {
  max-height: 560px;
  aspect-ratio: 4 / 3;
}

.merch-layout,
.sponsor-columns,
.members-layout {
  align-items: start;
}

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

.product-card {
  overflow: hidden;
}

.product-card img,
.product-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background:
    linear-gradient(135deg, rgba(7, 27, 77, 0.08), rgba(225, 6, 0, 0.08)),
    var(--off-white);
}

.product-placeholder {
  display: grid;
  place-items: center;
  color: var(--deep-navy);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(2rem, 6vw, 4rem);
  text-align: center;
  text-transform: uppercase;
}

.product-card-content,
.post-card-content {
  padding: 22px;
}

.product-card h2 {
  color: var(--deep-navy);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.sticky-form {
  position: sticky;
  top: 100px;
}

.signup-form fieldset {
  display: grid;
  gap: 8px;
  margin: 4px 0 0;
  padding: 14px;
  border: 1px solid rgba(7, 27, 77, 0.16);
  border-radius: var(--radius);
}

.check {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dark-text) !important;
  font-weight: 750 !important;
}

.check input {
  width: auto;
  min-height: auto;
}

.stats-section {
  padding-block: 42px;
  background: var(--deep-navy);
}

.stats-grid article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.stats-grid strong {
  display: block;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.stats-grid span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.clean-list {
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding: 13px 0 13px 40px;
  border-bottom: 1px solid var(--line);
  color: #26314a;
  font-weight: 750;
}

.clean-list li::before {
  content: "*";
  position: absolute;
  left: 0;
  top: 12px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--patriot-red);
  color: var(--white);
  font-weight: 950;
}

.member-price {
  padding: 28px;
  border: 3px solid var(--deep-navy);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 8px 8px 0 var(--patriot-red);
}

.member-price strong {
  display: block;
  color: var(--deep-navy);
  font-size: clamp(3rem, 8vw, 5.5rem);
}

.member-price span {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.blog-grid {
  align-items: stretch;
}

.post-card {
  display: flex;
  flex-direction: column;
}

.post-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.post-card h2 {
  color: var(--deep-navy);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.post-meta {
  display: inline-flex;
  width: max-content;
  margin-bottom: 12px;
  padding: 6px 9px;
  background: var(--off-white);
  color: var(--patriot-red);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.legal-page h1 {
  margin-bottom: 22px;
}

.legal-page h2 {
  margin-top: 34px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.legal-page a {
  color: var(--patriot-red);
  font-weight: 900;
}

.thanks-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 212, 71, 0.28), transparent 30%),
    linear-gradient(135deg, var(--deep-navy), var(--bright-blue));
}

.thanks-card {
  width: min(620px, 100%);
  padding: clamp(28px, 6vw, 58px);
  border: 3px solid var(--deep-navy);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 8px 8px 0 var(--patriot-red);
  text-align: center;
}

.thanks-card .brand {
  justify-content: center;
  margin-bottom: 26px;
}

.thanks-card p {
  color: var(--muted);
  font-size: 1.08rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

.reveal-delay {
  transition-delay: 120ms;
}

.reveal-delay-two {
  transition-delay: 220ms;
}

@media (max-width: 1060px) {
  .site-nav a {
    padding-inline: 9px;
    font-size: 0.82rem;
  }

  .brand-text {
    font-size: 1.34rem;
  }
}

@media (max-width: 1120px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 84px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .float-card-top {
    left: 8px;
  }

  .float-card-bottom {
    right: 8px;
  }
}

@media (max-width: 980px) {
  .section-pad {
    padding: 74px 0;
  }

  .hero-grid,
  .split-grid,
  .page-hero-grid,
  .sponsor-columns,
  .merch-layout,
  .members-layout,
  .join-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    gap: 42px;
  }

  .hero-card {
    justify-self: center;
  }

  .float-card-top {
    left: 12px;
  }

  .float-card-bottom {
    right: 12px;
  }

  .media-stack {
    min-height: 520px;
  }

  .values-grid,
  .video-grid,
  .stats-grid,
  .mini-card-grid,
  .blog-grid,
  .platform-grid,
  .tier-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom,
  .sponsor-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom p:last-child {
    text-align: left;
  }

  .sticky-form {
    position: static;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .site-nav {
    left: 14px;
    right: 14px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(3.05rem, 15vw, 5rem);
  }

  .hero-lede {
    font-size: 1.08rem;
  }

  .hero-actions,
  .cta-row {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .float-card {
    position: relative;
    width: auto;
    inset: auto;
    margin-top: 12px;
    transform: none;
  }

  .hero-card::before {
    inset: 14px -7px -13px 14px;
  }

  .media-stack {
    min-height: 450px;
  }

  .image-one,
  .image-two {
    width: 64%;
  }

  .section-copy h2,
  .section-heading h2,
  .join-copy h2,
  .sponsor-box h2,
  .legal-page h1,
  .thanks-card h1 {
    font-size: clamp(2.15rem, 11vw, 3.4rem);
  }

  .values-grid,
  .video-grid,
  .product-grid,
  .stats-grid,
  .mini-card-grid,
  .blog-grid,
  .platform-grid,
  .tier-grid {
    grid-template-columns: 1fr;
  }

  .photo-strip {
    gap: 12px;
  }

  .photo-strip img:nth-child(even) {
    transform: none;
  }

  .merch-poster {
    min-height: 440px;
  }

  .join-card {
    padding: 20px;
  }

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
