/*
  Recon Tactical Gear showcase
  Static, dependency-free, and intentionally easy to restyle.
*/

:root {
  --ink: #090b0c;
  --ink-soft: #0f1315;
  --panel: #14191c;
  --panel-2: #1a2023;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --paper: #f1f1ec;
  --paper-soft: #d0d2ce;
  --muted: #999f9f;
  --red: #d6333e;
  --red-bright: #f0444f;
  --warm: #d7a94f;
  --warm-soft: #f0cf8c;
  --container: 1240px;
  --header-height: 82px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.42);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--red);
  color: #fff;
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
p,
ul,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Arial Narrow", "Roboto Condensed", "Franklin Gothic Medium", Impact, sans-serif;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.97;
  text-transform: uppercase;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  border-radius: 2px;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 800;
  transition: transform 180ms ease;
}

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

.scroll-progress {
  position: fixed;
  z-index: 999;
  inset: 0 0 auto;
  height: 2px;
  background: transparent;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--red), var(--red-bright));
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(9, 11, 12, 0.9), rgba(9, 11, 12, 0));
  transition: height 280ms var(--ease), background 280ms ease, border-color 280ms ease,
    backdrop-filter 280ms ease;
}

.site-header.is-scrolled {
  height: 70px;
  border-color: var(--line);
  background: rgba(9, 11, 12, 0.86);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  clip-path: polygon(12% 0, 100% 0, 100% 74%, 74% 100%, 0 100%, 0 12%);
  background: rgba(255, 255, 255, 0.05);
}

.brand-mark::after {
  position: absolute;
  inset: auto -5px -9px auto;
  width: 22px;
  height: 22px;
  transform: rotate(45deg);
  background: var(--red);
  content: "";
}

.brand-mark img {
  position: absolute;
  z-index: 2;
  inset: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  object-fit: contain;
  opacity: 0;
}

.brand-mark img.is-loaded {
  opacity: 1;
}

.brand-mark:has(img.is-loaded) .brand-mark-fallback {
  opacity: 0;
}

.brand-mark-fallback {
  position: relative;
  z-index: 1;
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: 1.45rem;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
}

.brand-type {
  display: grid;
  line-height: 1;
}

.brand-type strong {
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.16em;
}

.brand-type small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.33em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 31px);
}

.primary-nav a {
  position: relative;
  color: #d9dcda;
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--red-bright);
  content: "";
  transition: transform 240ms var(--ease);
}

.primary-nav > a:hover,
.primary-nav > a:focus-visible {
  color: #fff;
}

.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-nav .nav-cta {
  border: 1px solid var(--line-strong);
  padding: 10px 16px;
  transition: background 180ms ease, border-color 180ms ease;
}

.primary-nav .nav-cta:hover,
.primary-nav .nav-cta:focus-visible {
  border-color: var(--red);
  background: var(--red);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: #fff;
  transition: transform 200ms ease, opacity 200ms ease;
}

.hero {
  position: relative;
  display: flex;
  min-height: 780px;
  height: max(780px, 100svh);
  align-items: center;
  overflow: hidden;
  background: #080a0b;
}

.hero::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 8, 0.99) 0%, rgba(5, 7, 8, 0.92) 28%, rgba(5, 7, 8, 0.36) 62%, rgba(5, 7, 8, 0.22) 100%),
    linear-gradient(0deg, #090b0c 0%, transparent 25%);
  content: "";
}

.hero::after {
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  content: "";
}

.hero-media {
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image: url("assets/generated/hero-tactical.webp");
  background-position: center right;
  background-size: cover;
  filter: saturate(0.84) contrast(1.05);
  transform: scale(1.015);
  animation: hero-enter 1500ms var(--ease) both;
}

.hero-grid {
  position: absolute;
  z-index: 3;
  inset: 0;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(90deg, black, transparent 52%);
}

.hero-inner {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 720px) 1fr;
  gap: 80px;
  align-items: end;
  padding-top: calc(var(--header-height) + 72px);
  padding-bottom: 84px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
  color: #c2c6c4;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

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

.hero h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(4.5rem, 8.2vw, 8rem);
  letter-spacing: -0.058em;
  text-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.hero h1 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.72);
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 34px;
  color: #c3c8c6;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.75;
}

.hero-actions,
.closing-actions,
.mindfront-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid transparent;
  padding: 0 20px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 200ms var(--ease), background 200ms ease, border-color 200ms ease,
    color 200ms ease;
}

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

.button-primary {
  background: var(--red);
  color: #fff;
}

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

.button-ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  backdrop-filter: blur(7px);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
}

.hero-rail {
  justify-self: end;
  width: min(100%, 258px);
  margin-bottom: 7px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-rail div {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 8px;
  align-items: center;
  min-height: 66px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  padding-left: 16px;
  background: linear-gradient(90deg, rgba(5, 7, 8, 0.38), transparent);
}

.hero-rail span {
  color: var(--red-bright);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.65rem;
}

.hero-rail p {
  margin: 0;
  color: #e3e6e3;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-edge-note {
  position: absolute;
  z-index: 4;
  right: 22px;
  bottom: 72px;
  color: rgba(255, 255, 255, 0.48);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  writing-mode: vertical-rl;
}

@keyframes hero-enter {
  from { opacity: 0; transform: scale(1.06); }
  to { opacity: 1; transform: scale(1.015); }
}

.section {
  position: relative;
  padding: clamp(92px, 10vw, 150px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}

.section-kicker {
  margin-bottom: 16px;
  color: var(--red-bright);
}

.section-heading h2,
.brands-intro h2,
.whatnot-copy h2,
.story-copy h2,
.mindfront-copy h2,
.faq-intro h2,
.closing h2 {
  margin-bottom: 0;
  font-size: clamp(3.1rem, 5.8vw, 5.8rem);
}

.section-heading > p,
.brands-intro > p:last-child,
.section-lede,
.story-copy > p,
.faq-intro > p:last-child {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.originals {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(214, 51, 62, 0.11), transparent 28%),
    var(--ink-soft);
}

.originals::after {
  position: absolute;
  top: 84px;
  right: -40px;
  color: rgba(255, 255, 255, 0.025);
  font-family: Impact, sans-serif;
  font-size: clamp(9rem, 23vw, 23rem);
  letter-spacing: -0.08em;
  line-height: 0.8;
  content: "03";
  pointer-events: none;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  transition: transform 380ms var(--ease), border-color 380ms ease, box-shadow 380ms ease;
}

.product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 255, 255, 0.27);
  box-shadow: var(--shadow);
}

.product-media {
  position: relative;
  aspect-ratio: 1.15 / 1;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 50% 55%, #20282b, #101416 68%);
  background-size: 28px 28px, 28px 28px, auto;
}

.product-media::after {
  position: absolute;
  inset: auto 16% 10% 16%;
  height: 16%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  filter: blur(18px);
  content: "";
}

.image-slot > img {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 300ms ease, transform 650ms var(--ease);
}

.image-slot > img.is-loaded {
  opacity: 1;
}

.product-card:hover .image-slot > img.is-loaded {
  transform: scale(1.06);
}

.image-slot:has(> img.is-loaded) .image-placeholder {
  opacity: 0;
  visibility: hidden;
}

.image-placeholder {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  transition: opacity 200ms ease;
}

.image-placeholder::before,
.image-placeholder::after {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: rgba(255, 255, 255, 0.22);
  content: "";
}

.image-placeholder::before {
  top: 18px;
  left: 18px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.image-placeholder::after {
  right: 18px;
  bottom: 18px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.image-placeholder span {
  margin-bottom: 8px;
  color: var(--red-bright);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.image-placeholder strong {
  color: transparent;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(3.2rem, 5vw, 5.2rem);
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 0.95;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.55);
}

.image-placeholder small {
  margin-top: 10px;
  color: #8f9695;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.product-index {
  position: absolute;
  z-index: 3;
  right: 16px;
  bottom: 13px;
  color: rgba(255, 255, 255, 0.58);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
}

.product-body {
  padding: 30px 28px 28px;
}

.product-type {
  margin-bottom: 10px;
  color: var(--red-bright);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.product-body h3 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.product-body > p:not(.product-type) {
  min-height: 116px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.7;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-tags li {
  border: 1px solid var(--line);
  padding: 6px 8px;
  color: #bdc2c0;
  font-size: 0.57rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-note {
  display: flex;
  max-width: 750px;
  gap: 13px;
  margin: 34px 0 0 auto;
  color: #8d9291;
  font-size: 0.77rem;
  line-height: 1.65;
}

.product-note span {
  flex: none;
  color: var(--red-bright);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.61rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.quality-band {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #0b0e0f;
  padding: 20px 0;
}

.quality-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 26px;
  animation: track 26s linear infinite;
}

.quality-track span {
  color: #d7dad7;
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.quality-track i {
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  background: var(--red);
}

@keyframes track {
  to { transform: translateX(-33.33%); }
}

.brands {
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}

.brands::before {
  position: absolute;
  top: -30%;
  left: 50%;
  width: 1px;
  height: 170%;
  transform: rotate(27deg);
  background: rgba(9, 11, 12, 0.09);
  content: "";
}

.brands-intro {
  display: grid;
  grid-template-columns: 0.7fr 1.05fr 0.85fr;
  gap: 42px;
  align-items: start;
  margin-bottom: 64px;
}

.brands-intro .section-kicker {
  margin-top: 8px;
}

.brands-intro h2 {
  font-size: clamp(3rem, 5vw, 5.2rem);
}

.brands-intro > p:last-child {
  color: #5e6362;
}

.brand-wall {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(9, 11, 12, 0.16);
  border-left: 1px solid rgba(9, 11, 12, 0.16);
}

.brand-wall span {
  display: grid;
  min-height: 118px;
  place-items: center;
  border-right: 1px solid rgba(9, 11, 12, 0.16);
  border-bottom: 1px solid rgba(9, 11, 12, 0.16);
  padding: 18px;
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 2.3rem);
  font-weight: 850;
  letter-spacing: 0.03em;
  text-align: center;
  transition: background 230ms ease, color 230ms ease;
}

.brand-wall span:hover {
  background: var(--ink);
  color: var(--paper);
}

.brand-wall b {
  margin-left: 8px;
  color: var(--red);
  font-size: 0.5em;
  letter-spacing: 0.07em;
  vertical-align: super;
}

.brand-wall .brand-more {
  background: var(--red);
  color: #fff;
}

.brand-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 60px;
  background: rgba(9, 11, 12, 0.17);
}

.brand-principles article {
  min-height: 230px;
  background: var(--paper);
  padding: 32px;
}

.brand-principles span {
  color: var(--red);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.65rem;
}

.brand-principles h3 {
  margin: 38px 0 13px;
  font-size: 1.62rem;
}

.brand-principles p {
  margin: 0;
  color: #646866;
  font-size: 0.88rem;
  line-height: 1.7;
}

.whatnot {
  background:
    linear-gradient(105deg, rgba(214, 51, 62, 0.08), transparent 35%),
    var(--ink);
}

.whatnot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(410px, 0.95fr);
  gap: clamp(52px, 7vw, 105px);
  align-items: center;
}

.whatnot-visual {
  position: relative;
  min-height: 640px;
}

.whatnot-visual::before {
  position: absolute;
  z-index: 0;
  top: -21px;
  left: -21px;
  width: 44%;
  height: 44%;
  border-top: 1px solid var(--red);
  border-left: 1px solid var(--red);
  content: "";
}

.whatnot-visual img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
}

.whatnot-visual::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 7, 8, 0.86));
  content: "";
}

.live-chip {
  position: absolute;
  z-index: 3;
  top: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(9, 11, 12, 0.86);
  padding: 9px 11px;
  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.live-chip span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 0 5px rgba(240, 68, 79, 0.15);
  animation: pulse 1.7s ease infinite;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 9px rgba(240, 68, 79, 0); }
}

.visual-caption {
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: 30px;
  left: 30px;
}

.visual-caption small {
  display: block;
  margin-bottom: 8px;
  color: var(--red-bright);
  font-size: 0.59rem;
  font-weight: 850;
  letter-spacing: 0.19em;
}

.visual-caption strong {
  display: block;
  max-width: 480px;
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  letter-spacing: -0.02em;
  line-height: 1.04;
  text-transform: uppercase;
}

.whatnot-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(3.3rem, 5vw, 5.2rem);
}

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

.whatnot-list {
  margin: 38px 0 34px;
  border-top: 1px solid var(--line);
}

.whatnot-list > div {
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.whatnot-list span {
  color: var(--red-bright);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.62rem;
}

.whatnot-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.55;
}

.whatnot-list strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--red);
  padding-bottom: 7px;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--red-bright);
  font-size: 1rem;
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(3px, -3px);
}

.story {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(214, 51, 62, 0.09), transparent 30%),
    var(--panel);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: start;
}

.story-copy h2 {
  max-width: 760px;
  margin-bottom: 34px;
}

.story-copy > p {
  max-width: 720px;
}

.story-copy .story-lede {
  color: #eef0ed;
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  line-height: 1.55;
}

.founder-card {
  position: relative;
  border: 1px solid var(--line-strong);
  background: #0d1012;
  box-shadow: var(--shadow);
}

.founder-card::before {
  position: absolute;
  z-index: 3;
  top: -9px;
  right: -9px;
  width: 38px;
  height: 38px;
  border-top: 2px solid var(--red);
  border-right: 2px solid var(--red);
  content: "";
}

.founder-photo {
  position: relative;
  aspect-ratio: 1 / 0.9;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #20272a, #0c0f10);
}

.founder-photo > img {
  object-position: center 20%;
  filter: saturate(0.7) contrast(1.08);
}

.founder-placeholder strong {
  font-size: 7rem;
}

.founder-content {
  padding: 30px;
}

.founder-content > p:first-child {
  margin-bottom: 8px;
  color: var(--red-bright);
  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.founder-content h3 {
  margin-bottom: 18px;
  font-size: 2.5rem;
}

.founder-content > p:nth-of-type(2) {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.7;
}

.founder-content blockquote {
  margin: 27px 0 0;
  border-left: 2px solid var(--red);
  padding-left: 15px;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
}

.mindfront {
  background: #0b0d0e;
}

.mindfront-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr);
  overflow: hidden;
  border: 1px solid rgba(215, 169, 79, 0.28);
  background: #111617;
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.38);
}

.mindfront-visual {
  position: relative;
  min-height: 720px;
}

.mindfront-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.04);
}

.mindfront-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 60%, #111617),
    linear-gradient(0deg, rgba(10, 12, 13, 0.42), transparent 45%);
  content: "";
}

.mindfront-seal {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 28px;
  display: grid;
  width: 116px;
  height: 116px;
  place-content: center;
  border: 1px solid rgba(240, 207, 140, 0.75);
  border-radius: 50%;
  background: rgba(9, 11, 12, 0.68);
  text-align: center;
  backdrop-filter: blur(9px);
}

.mindfront-seal::before {
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(240, 207, 140, 0.25);
  border-radius: inherit;
  content: "";
}

.mindfront-seal span {
  color: var(--warm-soft);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 2.2rem;
  line-height: 1;
}

.mindfront-seal small {
  margin-top: 5px;
  color: #d6c49d;
  font-size: 0.43rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.mindfront-copy {
  padding: clamp(54px, 6vw, 88px);
}

.section-kicker.warm {
  color: var(--warm-soft);
}

.mindfront-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(3.1rem, 5vw, 5.1rem);
}

.mindfront-copy > p:not(.section-kicker) {
  color: #9fa5a2;
  font-size: 0.93rem;
  line-height: 1.74;
}

.mindfront-copy .section-lede {
  color: #d8dbd7;
  font-size: 1.06rem;
}

.funding-flow {
  margin: 35px 0;
  border-top: 1px solid rgba(215, 169, 79, 0.24);
}

.funding-flow > div {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 13px;
  border-bottom: 1px solid rgba(215, 169, 79, 0.18);
  padding: 17px 0;
}

.funding-flow span {
  color: var(--warm);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.62rem;
}

.funding-flow p {
  margin: 0;
  color: #c7cbc7;
  font-size: 0.84rem;
}

.button-warm {
  background: var(--warm);
  color: #0a0d0e;
}

.button-warm:hover,
.button-warm:focus-visible {
  background: var(--warm-soft);
}

.mindfront-actions > span {
  color: #7f8683;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.62rem;
}

.expectations {
  background: var(--paper);
  color: var(--ink);
}

.section-heading.compact {
  display: block;
  max-width: 780px;
}

.expectation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(9, 11, 12, 0.16);
  border-left: 1px solid rgba(9, 11, 12, 0.16);
}

.expectation-grid article {
  min-height: 285px;
  border-right: 1px solid rgba(9, 11, 12, 0.16);
  border-bottom: 1px solid rgba(9, 11, 12, 0.16);
  padding: 31px;
  transition: background 240ms ease, color 240ms ease;
}

.expectation-grid article:hover {
  background: var(--ink);
  color: var(--paper);
}

.expectation-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(9, 11, 12, 0.3);
  color: var(--red);
  font-size: 1.3rem;
  transition: border-color 240ms ease;
}

.expectation-grid article:hover .expectation-icon {
  border-color: rgba(255, 255, 255, 0.25);
}

.expectation-grid h3 {
  margin: 72px 0 15px;
  font-size: 1.65rem;
}

.expectation-grid p {
  margin: 0;
  color: #666b69;
  font-size: 0.85rem;
  line-height: 1.65;
  transition: color 240ms ease;
}

.expectation-grid article:hover p {
  color: #aeb3b1;
}

.faq {
  background: var(--panel);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(60px, 8vw, 120px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 110px;
}

.faq-intro h2 {
  margin-bottom: 22px;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line-strong);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 32px;
  gap: 18px;
  align-items: center;
  padding: 26px 0;
  cursor: pointer;
  font-family: "Arial Narrow", "Franklin Gothic Medium", sans-serif;
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  list-style: none;
  text-transform: uppercase;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--red-bright);
  font-family: ui-sans-serif, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  transition: transform 250ms var(--ease), background 250ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
  background: rgba(214, 51, 62, 0.12);
}

.faq-list details p {
  max-width: 670px;
  margin: -7px 48px 27px 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.closing {
  position: relative;
  display: grid;
  min-height: 720px;
  place-items: center;
  overflow: hidden;
  background: #090b0c;
}

.closing-bg {
  position: absolute;
  inset: 0;
  opacity: 0.39;
  background-image: url("assets/generated/hero-tactical.webp");
  background-position: center right;
  background-size: cover;
  filter: grayscale(0.35) saturate(0.75);
}

.closing::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 11, 12, 0.96), rgba(9, 11, 12, 0.62) 60%, rgba(9, 11, 12, 0.42)),
    linear-gradient(0deg, #090b0c, transparent 40%, #090b0c);
  content: "";
}

.closing-inner {
  position: relative;
  z-index: 2;
  padding-block: 110px;
}

.closing h2 {
  max-width: 980px;
  margin-bottom: 28px;
  font-size: clamp(4rem, 8.7vw, 8.5rem);
}

.closing-inner > p:not(.section-kicker) {
  max-width: 660px;
  margin-bottom: 34px;
  color: #b4b9b7;
  font-size: 1rem;
  line-height: 1.75;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #07090a;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  padding-block: 70px;
}

.footer-brand > p {
  max-width: 420px;
  margin: 27px 0 0;
  color: #777e7c;
  font-size: 0.83rem;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links p {
  margin-bottom: 9px;
  color: var(--red-bright);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.footer-links a {
  color: #a6acab;
  font-size: 0.78rem;
  transition: color 160ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

.footer-bottom {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-block: 20px 28px;
}

.footer-bottom p {
  max-width: 620px;
  margin: 0;
  color: #626967;
  font-size: 0.62rem;
  line-height: 1.6;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 750ms var(--ease), transform 750ms var(--ease);
}

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

:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 4px;
}

@media (max-width: 1100px) {
  :root { --header-height: 74px; }

  .primary-nav { gap: 17px; }
  .primary-nav a { font-size: 0.65rem; }

  .hero-inner {
    grid-template-columns: minmax(0, 680px) 1fr;
    gap: 28px;
  }

  .section-heading { gap: 48px; }

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

  .product-card:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .product-card:last-child .product-media { aspect-ratio: auto; }
  .product-body > p:not(.product-type) { min-height: auto; }

  .brands-intro {
    grid-template-columns: 0.55fr 1fr;
  }

  .brands-intro > p:last-child {
    grid-column: 2;
  }

  .whatnot-grid { gap: 58px; }
  .whatnot-visual { min-height: 570px; }
  .story-grid { gap: 70px; }
  .mindfront-shell { grid-template-columns: 0.82fr 1.18fr; }
  .mindfront-copy { padding: 54px; }

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

@media (max-width: 880px) {
  .container { width: min(calc(100% - 36px), var(--container)); }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .primary-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    visibility: hidden;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 23px;
    opacity: 0;
    background:
      linear-gradient(135deg, rgba(214, 51, 62, 0.14), transparent 42%),
      rgba(8, 10, 11, 0.98);
    padding: 100px 10vw 60px;
    transform: translateY(-10px);
    transition: opacity 220ms ease, transform 320ms var(--ease), visibility 320ms;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-nav a {
    font-family: "Arial Narrow", Impact, sans-serif;
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
  }

  .primary-nav a[href="#mindfront"] {
    font-size: clamp(1.55rem, 6.4vw, 3.2rem);
    letter-spacing: -0.035em;
  }

  .primary-nav .nav-cta { border: 0; padding: 0; }

  .hero {
    min-height: 720px;
    height: auto;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(5, 7, 8, 0.97), rgba(5, 7, 8, 0.78) 60%, rgba(5, 7, 8, 0.44)),
      linear-gradient(0deg, #090b0c 0%, transparent 35%);
  }

  .hero-media {
    opacity: 0.78;
    background-position: 66% center;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-block: 160px 80px;
  }

  .hero-copy { max-width: 690px; }
  .hero h1 { font-size: clamp(4rem, 13vw, 7rem); }
  .hero-rail { display: none; }

  .section-heading,
  .brands-intro,
  .whatnot-grid,
  .story-grid,
  .mindfront-shell,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .section-heading { gap: 28px; }
  .section-heading > p { max-width: 680px; }

  .brands-intro > p:last-child { grid-column: auto; max-width: 690px; }

  .brand-wall { grid-template-columns: repeat(2, 1fr); }
  .brand-principles { grid-template-columns: 1fr; }
  .brand-principles article { min-height: auto; }

  .whatnot-grid,
  .story-grid { gap: 70px; }
  .whatnot-visual { min-height: 600px; }
  .whatnot-copy { max-width: 700px; }

  .founder-card { max-width: 560px; }
  .founder-photo { aspect-ratio: 1.25 / 1; }

  .mindfront-visual { min-height: 540px; }
  .mindfront-visual::after {
    background: linear-gradient(0deg, #111617, transparent 35%);
  }

  .mindfront-copy { padding: 50px 36px 58px; }
  .faq-intro { position: static; max-width: 640px; }

  .footer-main { grid-template-columns: 1fr; gap: 55px; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding-block: 82px; }

  .brand-type strong { font-size: 1.06rem; }
  .brand-type small { font-size: 0.47rem; }

  .hero { min-height: 710px; }
  .hero::before {
    background:
      linear-gradient(90deg, rgba(5, 7, 8, 0.95), rgba(5, 7, 8, 0.72)),
      linear-gradient(0deg, #090b0c 0%, transparent 50%);
  }
  .hero-media { background-position: 72% center; opacity: 0.58; }
  .hero-grid { background-size: 48px 48px; }
  .hero-inner { padding-block: 138px 66px; }
  .hero h1 { margin-bottom: 22px; font-size: clamp(3.6rem, 17vw, 5rem); }
  .hero-lede { font-size: 0.94rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-edge-note { display: none; }

  .section-heading h2,
  .brands-intro h2,
  .whatnot-copy h2,
  .story-copy h2,
  .mindfront-copy h2,
  .faq-intro h2 {
    font-size: clamp(2.85rem, 14vw, 4.2rem);
  }

  .product-grid { grid-template-columns: 1fr; }
  .product-card:last-child {
    grid-column: auto;
    display: block;
  }
  .product-card:last-child .product-media { aspect-ratio: 1.15 / 1; }
  .product-body { padding: 25px 22px; }

  .brand-wall { grid-template-columns: 1fr; }
  .brand-wall span { min-height: 92px; }
  .brand-principles article { padding: 28px; }
  .brand-principles h3 { margin-top: 27px; }

  .whatnot-visual { min-height: 480px; }
  .visual-caption { right: 20px; bottom: 20px; left: 20px; }

  .story-grid { gap: 54px; }
  .founder-card { width: calc(100% - 8px); }
  .founder-content { padding: 25px; }

  .mindfront { padding-inline: 0; }
  .mindfront .container { width: 100%; }
  .mindfront-shell { border-inline: 0; }
  .mindfront-visual { min-height: 430px; }
  .mindfront-copy { padding: 43px 22px 50px; }
  .mindfront-actions { align-items: stretch; flex-direction: column; }

  .expectation-grid { grid-template-columns: 1fr; }
  .expectation-grid article { min-height: 240px; }
  .expectation-grid h3 { margin-top: 52px; }

  .faq-list summary { font-size: 1.05rem; }
  .faq-list details p { margin-right: 0; }

  .closing { min-height: 660px; }
  .closing h2 { font-size: clamp(3.4rem, 16vw, 5rem); }
  .closing-actions { align-items: stretch; flex-direction: column; }

  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom p:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

/* Open editorial revision -------------------------------------------------- */

.site-header .brand {
  align-self: stretch;
  min-width: 116px;
  justify-content: flex-start;
}

.recon-logo {
  width: auto;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.32));
}

.footer-recon-logo {
  height: auto;
  width: min(230px, 78vw);
}

.hero-rail div {
  background: transparent;
}

.originals::after {
  display: none;
}

.product-grid {
  display: block;
  border-top: 1px solid var(--line-strong);
}

.product-card,
.product-card:last-child {
  display: grid;
  min-height: 500px;
  overflow: visible;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.92fr);
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  box-shadow: none;
}

.product-card:hover {
  transform: none;
  border-color: var(--line-strong);
  box-shadow: none;
}

.product-card:nth-child(even) .product-media {
  order: 2;
}

.product-card:nth-child(even) .product-body {
  order: 1;
  padding-right: clamp(42px, 6vw, 82px);
  padding-left: 0;
}

.product-media,
.product-card:last-child .product-media {
  min-height: 500px;
  aspect-ratio: auto;
  border: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 52%, #252e31, #111516 69%);
  background-size: 34px 34px, 34px 34px, auto;
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 34px 100%, 0 calc(100% - 34px));
}

.product-media::after {
  z-index: 0;
}

.product-body {
  align-self: center;
  padding: clamp(55px, 7vw, 92px) 0 clamp(55px, 7vw, 92px) clamp(42px, 6vw, 82px);
}

.product-body > p:not(.product-type) {
  min-height: 0;
  max-width: 510px;
}

.product-body h3 {
  font-size: clamp(2.8rem, 5vw, 4.9rem);
}

.product-tags li {
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  padding: 5px 0 6px;
}

.product-tags {
  gap: 17px;
}

.product-note {
  display: flex;
  max-width: none;
  justify-content: flex-start;
  gap: 15px;
  margin: 31px 0 0;
  border-left: 2px solid var(--red);
  padding-left: 14px;
  color: #9ca2a0;
  white-space: nowrap;
}

.product-note span {
  color: var(--red-bright);
}

.quality-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: quality-loop 28s linear infinite;
  will-change: transform;
}

.quality-group {
  display: flex;
  flex: none;
  align-items: center;
  gap: 26px;
  padding-right: 26px;
}

.quality-track span,
.quality-track i {
  flex: none;
}

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

.brands-intro {
  display: block;
  max-width: 980px;
  margin: 0 0 70px;
}

.brands-intro h2 {
  max-width: 850px;
}

.brands-intro > p:last-child {
  max-width: 700px;
  margin: 28px 0 0;
}

.brand-wall {
  display: flex;
  overflow: visible;
  flex-wrap: wrap;
  column-gap: clamp(30px, 5vw, 72px);
  border: 0;
  border-top: 1px solid rgba(9, 11, 12, 0.2);
}

.brand-wall span,
.brand-wall .brand-more {
  display: flex;
  flex: 1 1 27%;
  min-height: 0;
  align-items: center;
  justify-content: flex-start;
  border: 0;
  border-bottom: 1px solid rgba(9, 11, 12, 0.2);
  background: transparent;
  color: var(--ink);
  padding: 27px 0 23px;
  text-align: left;
}

.brand-wall span:hover,
.brand-wall .brand-more:hover {
  background: transparent;
  color: var(--red);
}

.brand-wall .brand-more {
  color: var(--red);
}

.brand-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(26px, 5vw, 70px);
  margin-top: 78px;
  border-top: 1px solid rgba(9, 11, 12, 0.2);
  background: transparent;
}

.brand-principles article {
  min-height: 0;
  border: 0;
  background: transparent;
  padding: 35px 0 0;
}

.brand-principles h3 {
  margin: 18px 0 13px;
}

.whatnot-visual {
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 45% 45%, #20282a, #0d1112 72%);
  background-size: 36px 36px, 36px 36px, auto;
  clip-path: polygon(0 0, calc(100% - 42px) 0, 100% 42px, 100% 100%, 0 100%);
}

.whatnot-visual::before {
  top: -1px;
  left: -1px;
}

.whatnot-visual::after {
  background: linear-gradient(180deg, transparent 48%, rgba(5, 7, 8, 0.9));
}

.whatnot-placeholder {
  z-index: 1;
}

.whatnot-placeholder strong {
  font-size: clamp(5rem, 10vw, 8.6rem);
}

.whatnot-visual:has(> img.is-loaded) .whatnot-placeholder {
  opacity: 0;
  visibility: hidden;
}

.founder-card {
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.founder-card::before {
  display: none;
}

.founder-photo {
  border: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, #20272a, #0c0f10);
  background-size: 30px 30px, 30px 30px, auto;
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 0 100%);
}

.founder-content {
  border-top: 1px solid var(--line-strong);
  padding: 30px 0 0;
}

.mindfront {
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 43%, rgba(58, 188, 217, 0.11), transparent 30%),
    radial-gradient(circle at 28% 55%, rgba(201, 238, 58, 0.08), transparent 29%),
    radial-gradient(circle at 40% 48%, rgba(236, 75, 73, 0.08), transparent 25%),
    #0a0d0e;
}

.mindfront::before {
  position: absolute;
  top: 50%;
  left: -7vw;
  color: rgba(255, 255, 255, 0.018);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(18rem, 39vw, 40rem);
  line-height: 0.7;
  content: "MFT";
  transform: translateY(-50%);
  pointer-events: none;
}

.mindfront-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(70px, 11vw, 165px);
  align-items: start;
}

.mindfront-brand {
  position: sticky;
  top: 130px;
  padding-top: 10px;
}

.mindfront-brand img {
  width: min(100%, 390px);
  margin: clamp(64px, 10vw, 130px) 0 32px;
  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.45));
}

.mindfront-url {
  margin: 0;
  color: #7e8784;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mindfront-copy {
  padding: 0;
}

.mindfront-copy h2 {
  max-width: 780px;
  margin-bottom: 32px;
  font-size: clamp(3.3rem, 6.2vw, 6.5rem);
}

.mindfront-copy > p:not(.section-kicker) {
  max-width: 720px;
}

.mindfront-copy .section-lede {
  font-size: 1.1rem;
}

.funding-flow {
  margin: 55px 0 45px;
  border-top: 1px solid rgba(215, 169, 79, 0.38);
}

.funding-flow > div {
  grid-template-columns: 72px 1fr;
  padding: 22px 0;
}

.funding-flow span {
  font-size: 0.72rem;
}

.funding-flow p {
  font-size: 0.92rem;
}

.mindfront-actions > span {
  display: none;
}

.expectation-grid {
  display: block;
  border: 0;
  border-top: 1px solid rgba(9, 11, 12, 0.2);
}

.expectation-grid article {
  display: grid;
  min-height: 0;
  grid-template-columns: 70px minmax(190px, 0.62fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid rgba(9, 11, 12, 0.2);
  background: transparent;
  padding: 30px 0;
  color: var(--ink);
}

.expectation-grid article:hover {
  background: transparent;
  color: var(--ink);
}

.expectation-icon {
  width: auto;
  height: auto;
  justify-content: flex-start;
  border: 0;
  color: var(--red);
  font-size: 1.6rem;
}

.expectation-grid article:hover .expectation-icon {
  border: 0;
}

.expectation-grid h3 {
  margin: 0;
}

.expectation-grid p,
.expectation-grid article:hover p {
  max-width: 640px;
  margin: 0;
  color: #666b69;
}

@media (max-width: 1100px) {
  .recon-logo { height: 64px; }

  .product-card,
  .product-card:last-child {
    min-height: 440px;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.9fr);
  }

  .product-media,
  .product-card:last-child .product-media {
    min-height: 440px;
  }

  .product-body {
    padding-left: 48px;
  }

  .product-card:nth-child(even) .product-body {
    padding-right: 48px;
  }

  .product-note {
    white-space: normal;
  }

  .mindfront-layout {
    gap: 72px;
  }
}

@media (max-width: 880px) {
  .site-header .brand { min-width: 92px; }
  .recon-logo { height: 60px; }
  .footer-recon-logo { width: 210px; }

  .product-card,
  .product-card:last-child {
    display: grid;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .product-card:nth-child(even) .product-media,
  .product-card:nth-child(even) .product-body {
    order: initial;
  }

  .product-media,
  .product-card:last-child .product-media {
    min-height: 460px;
  }

  .product-body,
  .product-card:nth-child(even) .product-body {
    padding: 44px 0 70px;
  }

  .brand-wall span,
  .brand-wall .brand-more {
    flex-basis: 43%;
  }

  .brand-principles {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .brand-principles article {
    border-bottom: 1px solid rgba(9, 11, 12, 0.2);
    padding: 30px 0;
  }

  .whatnot-visual {
    min-height: 580px;
  }

  .founder-card {
    max-width: 590px;
  }

  .mindfront-layout {
    grid-template-columns: 1fr;
    gap: 68px;
  }

  .mindfront-brand {
    position: relative;
    top: auto;
  }

  .mindfront-brand img {
    width: min(320px, 72vw);
    margin: 50px 0 23px;
  }

  .mindfront-copy h2 {
    font-size: clamp(3.2rem, 11vw, 5.5rem);
  }

  .expectation-grid article {
    grid-template-columns: 58px 1fr;
    gap: 18px;
  }

  .expectation-grid h3 {
    grid-column: 2;
  }

  .expectation-grid p {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .site-header .brand { min-width: 78px; }
  .recon-logo { height: 54px; }
  .footer-recon-logo { width: 185px; }

  .product-media,
  .product-card:last-child .product-media {
    min-height: 340px;
  }

  .product-note {
    display: block;
    font-size: 0.72rem;
  }

  .product-note span {
    display: block;
    margin-bottom: 7px;
  }

  .quality-group {
    gap: 18px;
    padding-right: 18px;
  }

  .brand-wall span,
  .brand-wall .brand-more {
    flex-basis: 100%;
  }

  .whatnot-visual {
    min-height: 470px;
  }

  .mindfront-brand img {
    width: min(260px, 74vw);
  }

  .funding-flow > div {
    grid-template-columns: 50px 1fr;
  }

  .expectation-grid article {
    grid-template-columns: 42px 1fr;
    padding: 26px 0;
  }
}

/* Final content revision -------------------------------------------------- */

.quality-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: quality-loop-continuous 36s linear infinite;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.quality-group {
  display: flex;
  flex: none;
  align-items: center;
  gap: 26px;
  padding-right: 26px;
}

@keyframes quality-loop-continuous {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-25%, 0, 0); }
}

.brand-wall {
  display: grid;
  overflow: visible;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: clamp(24px, 4vw, 58px);
  border: 0;
  border-top: 1px solid rgba(9, 11, 12, 0.2);
}

.brand-wall span,
.brand-wall .brand-more {
  display: flex;
  min-width: 0;
  min-height: 86px;
  align-items: center;
  justify-content: flex-start;
  border: 0;
  border-bottom: 1px solid rgba(9, 11, 12, 0.2);
  background: transparent;
  color: var(--ink);
  padding: 20px 0 17px;
  font-size: clamp(1.35rem, 2.2vw, 2.25rem);
  line-height: 1;
  text-align: left;
}

.mindfront {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #080b0c;
}

.mindfront::before {
  display: none;
}

.mindfront-layout {
  position: relative;
  display: flex;
  width: min(100%, 1680px);
  min-height: 850px;
  align-items: center;
  margin-inline: auto;
}

.mindfront-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.mindfront-art::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 11, 12, 0.04) 0%, rgba(8, 11, 12, 0.08) 36%, rgba(8, 11, 12, 0.82) 68%, #080b0c 100%),
    linear-gradient(0deg, rgba(8, 11, 12, 0.72), transparent 30%, transparent 74%, rgba(8, 11, 12, 0.42));
  content: "";
}

.mindfront-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  filter: saturate(1.04) contrast(1.04);
}

.mindfront-copy {
  position: relative;
  z-index: 2;
  width: min(55%, 840px);
  margin-left: auto;
  padding: clamp(76px, 8vw, 132px) clamp(48px, 7vw, 120px) clamp(76px, 8vw, 132px) clamp(42px, 6vw, 96px);
}

.mindfront-copy h2 {
  max-width: 760px;
  margin-bottom: 30px;
  font-size: clamp(3.25rem, 5.5vw, 6rem);
}

.mindfront-copy > p:not(.section-kicker) {
  max-width: 690px;
}

/* One-screen donation information page */

.donation-page {
  min-height: 100svh;
  background: #080b0c;
}

.donation-hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(50px, 8vw, 110px) 0;
}

.donation-hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: none;
  content: "";
  filter: none;
}

.donation-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 11, 12, 0.22), rgba(8, 11, 12, 0.72) 53%, rgba(8, 11, 12, 0.98) 78%),
    linear-gradient(0deg, rgba(8, 11, 12, 0.86), transparent 38%, rgba(8, 11, 12, 0.34));
  content: "";
}

.donation-hero-inner {
  width: min(calc(100% - 48px), 1240px);
  margin-inline: auto;
}

.donation-content {
  width: min(59%, 760px);
  margin-left: auto;
}

.donation-content h1 {
  max-width: 740px;
  margin: 0 0 28px;
  font-size: clamp(4rem, 7vw, 7.6rem);
}

.donation-lede {
  max-width: 690px;
  margin-bottom: 22px;
  color: #d7dad7;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.75;
}

.donation-detail {
  max-width: 690px;
  margin-bottom: 34px;
  color: #9ea5a2;
  font-size: 0.94rem;
  line-height: 1.8;
}

.donation-methods {
  display: flex;
  max-width: 690px;
  align-items: center;
  gap: 17px;
  margin: 0 0 42px;
  border-block: 1px solid rgba(255, 255, 255, 0.16);
  padding: 19px 0;
  color: var(--warm-soft);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.donation-methods i {
  width: 4px;
  height: 4px;
  transform: rotate(45deg);
  background: var(--red);
}

.return-button {
  width: max-content;
}

@media (max-width: 1040px) {
  .brand-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mindfront-layout {
    min-height: 780px;
  }

  .mindfront-copy {
    width: 60%;
    padding-right: 48px;
  }

  .donation-content {
    width: min(66%, 720px);
  }
}

@media (max-width: 760px) {
  .brand-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 26px;
  }

  .brand-wall span,
  .brand-wall .brand-more {
    min-height: 76px;
    font-size: clamp(1.3rem, 6vw, 2rem);
  }

  .mindfront-layout {
    display: block;
    min-height: 0;
  }

  .mindfront-art {
    position: relative;
    height: clamp(340px, 62vw, 520px);
  }

  .mindfront-art::after {
    background: linear-gradient(0deg, #080b0c, transparent 42%, rgba(8, 11, 12, 0.2));
  }

  .mindfront-art img {
    object-position: 28% center;
  }

  .mindfront-copy {
    width: min(calc(100% - 48px), 720px);
    margin-inline: auto;
    padding: 52px 0 78px;
  }

  .donation-hero::before {
    opacity: 0.42;
  }

  .donation-hero::after {
    background: linear-gradient(0deg, rgba(8, 11, 12, 0.98) 26%, rgba(8, 11, 12, 0.84) 66%, rgba(8, 11, 12, 0.44));
  }

  .donation-content {
    width: 100%;
    margin: 0;
  }
}

@media (max-width: 460px) {
  .brand-wall {
    grid-template-columns: 1fr;
  }

  .donation-hero-inner,
  .mindfront-copy {
    width: min(calc(100% - 36px), 720px);
  }

  .donation-content h1 {
    font-size: clamp(3.25rem, 17vw, 5.4rem);
  }
}

/* Text-first foundation and donation revision ---------------------------- */

.brand-disclaimer {
  max-width: 980px;
  margin: 22px 0 0;
  color: rgba(9, 11, 12, 0.57);
  font-size: 0.62rem;
  letter-spacing: 0.025em;
  line-height: 1.65;
}

.brand-disclaimer span {
  color: rgba(9, 11, 12, 0.78);
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.mindfront {
  padding: clamp(105px, 12vw, 175px) 0;
  border-block: 1px solid rgba(255, 255, 255, 0.09);
  background: #0a0d0e;
}

.mindfront-text-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(64px, 10vw, 150px);
  align-items: start;
}

.mindfront-intro {
  position: sticky;
  top: 120px;
}

.mindfront-intro h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(3.6rem, 6.2vw, 6.8rem);
}

.mindfront-copy {
  width: auto;
  margin: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0 0 0 clamp(38px, 5vw, 72px);
}

.mindfront-copy > p:not(.section-kicker) {
  max-width: 700px;
  color: #a5aba8;
}

.mindfront-copy .section-lede {
  color: #e2e4e0;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.mindfront .funding-flow {
  max-width: 700px;
}

.donation-hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(46, 183, 221, 0.1), transparent 29%),
    radial-gradient(circle at 88% 82%, rgba(214, 51, 62, 0.08), transparent 30%),
    #080b0c;
}

.donation-hero::before {
  opacity: 0.34;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.donation-hero::after {
  background: linear-gradient(90deg, rgba(8, 11, 12, 0.12), rgba(8, 11, 12, 0.72));
}

.donation-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
  gap: clamp(56px, 8vw, 122px);
  align-items: center;
}

.donation-content {
  width: auto;
  margin: 0;
}

.donation-content h1 {
  font-size: clamp(3.8rem, 6.5vw, 7rem);
}

.donation-detail {
  margin-bottom: 42px;
}

.donation-options {
  border-block: 1px solid rgba(255, 255, 255, 0.17);
}

.donation-option {
  padding: clamp(28px, 4vw, 45px) 0;
}

.donation-option + .donation-option {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.donation-option h2 {
  margin: 0 0 12px;
  color: #f1f1ec;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 0.98;
  text-transform: none;
}

.donation-option p:last-child {
  max-width: 430px;
  margin: 0;
  color: #9da4a1;
  font-size: 0.83rem;
  line-height: 1.7;
}

.donation-platform {
  margin: 0 0 14px;
  color: var(--warm-soft);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.donation-cashapp {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}

.donation-cashapp img {
  width: 230px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

@media (max-width: 980px) {
  .mindfront-text-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .mindfront-intro {
    position: static;
  }

  .mindfront-copy {
    max-width: 780px;
  }

  .donation-hero {
    padding: 80px 0;
  }

  .donation-hero-inner {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .donation-content {
    max-width: 760px;
  }
}

@media (max-width: 640px) {
  .brand-disclaimer {
    font-size: 0.58rem;
  }

  .mindfront {
    padding: 90px 0;
  }

  .mindfront-copy {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding: 38px 0 0;
  }

  .donation-hero-inner {
    width: min(calc(100% - 36px), 1240px);
  }

  .donation-cashapp {
    grid-template-columns: 1fr;
  }

  .donation-cashapp img {
    width: min(260px, 78vw);
  }

  .donation-option h2 {
    overflow-wrap: anywhere;
  }
}
