:root {
  color-scheme: dark;
  --bg: #050506;
  --bg-2: #0d0d11;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(14, 14, 18, 0.9);
  --border: rgba(255, 255, 255, 0.12);
  --text: #f5f2ef;
  --muted: rgba(245, 242, 239, 0.72);
  --accent: #ff5f28;
  --accent-2: #d94b30;
  --gold: #d8b56d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(104, 32, 89, 0.28), transparent 30%),
    radial-gradient(circle at top right, rgba(255, 98, 34, 0.22), transparent 24%),
    radial-gradient(circle at bottom left, rgba(215, 181, 109, 0.12), transparent 28%),
    linear-gradient(180deg, #09090b 0%, #050506 52%, #08080a 100%);
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(24px);
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.92), rgba(8, 8, 10, 0.74));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-bar {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: linear-gradient(145deg, rgba(255, 95, 40, 0.95), rgba(215, 181, 109, 0.65));
  box-shadow: 0 14px 30px rgba(255, 95, 40, 0.22);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
}

.brand-copy strong,
.brand-copy span {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.24em;
}

.brand-copy strong {
  font-size: 1.02rem;
}

.brand-copy span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.34em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-self: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.88);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.9rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.icon-btn,
.cart-btn,
.menu-btn {
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.icon-btn {
  width: 46px;
  font-size: 1.1rem;
}

.cart-btn {
  padding: 0 18px;
  gap: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.cart-btn span {
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(145deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 0.72rem;
}

.menu-btn {
  display: none;
  width: 46px;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-btn span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.mobile-drawer {
  display: none;
}

.mobile-drawer-backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.mobile-drawer-panel {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 28px), 560px);
  max-height: calc(100dvh - 120px);
  overflow: auto;
  padding: 18px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(10, 10, 12, 0.9);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.mobile-drawer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-drawer-kicker {
  margin: 0 0 6px;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.mobile-drawer-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mobile-drawer-close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.mobile-drawer nav {
  display: grid;
  gap: 10px;
}

.mobile-drawer a {
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.025);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-drawer a::after {
  content: "→";
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
}

.site-nav a:last-child,
.mobile-drawer a:last-child {
  color: var(--gold);
}

.site-nav a:last-child::after {
  background: linear-gradient(90deg, var(--gold), #fff);
}

.mobile-drawer-foot {
  display: grid;
  gap: 4px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-drawer-foot span {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
  font-size: 0.78rem;
}

.mobile-drawer-foot small {
  color: var(--muted);
}

.hero {
  position: relative;
  padding: 24px 0 14px;
  overflow: hidden;
}

.hero-usa-texture {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 6, 0.12), rgba(5, 5, 6, 0.52)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0 12%, transparent 12% 23%, rgba(255, 95, 40, 0.04) 23% 28%, transparent 28% 100%),
    repeating-linear-gradient(180deg, rgba(190, 24, 34, 0.12) 0 18px, rgba(255, 255, 255, 0.02) 18px 36px),
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.22) 0 1.3px, transparent 1.8px),
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.18) 0 1.2px, transparent 1.7px),
    radial-gradient(circle at 18% 36%, rgba(255, 255, 255, 0.22) 0 1.4px, transparent 2px),
    radial-gradient(circle at 76% 20%, rgba(255, 255, 255, 0.18) 0 1.2px, transparent 1.8px),
    radial-gradient(circle at 84% 34%, rgba(255, 255, 255, 0.2) 0 1.3px, transparent 1.9px),
    radial-gradient(circle at 72% 48%, rgba(255, 255, 255, 0.18) 0 1.2px, transparent 1.8px),
    radial-gradient(circle at 24% 72%, rgba(255, 255, 255, 0.16) 0 1.1px, transparent 1.7px),
    radial-gradient(circle at 68% 74%, rgba(255, 255, 255, 0.16) 0 1.1px, transparent 1.7px),
    url("./Product%20Images/USA%20FLAG.png") center/cover no-repeat;
  opacity: 0.1;
  filter: saturate(1.12) contrast(1.06);
  mix-blend-mode: screen;
  pointer-events: none;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.98fr);
  gap: 20px;
  align-items: center;
  min-height: 660px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 9px 14px;
  margin-bottom: 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.eyebrow span {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.hero h1,
.section-heading h2,
.section-copy h2 {
  margin: 0;
  font-family: Impact, "Arial Black", "Helvetica Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.9;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3.1rem, 6.3vw, 5.7rem);
  line-height: 0.86;
}

.hero h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(180deg, #ffffff 0%, #d5d5d9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 12px 34px rgba(255, 255, 255, 0.06);
}

.lead {
  max-width: 620px;
  margin: 20px 0 0;
  font-size: 0.99rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.btn {
  min-height: 56px;
  padding: 0 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.84rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  border-color: rgba(255, 95, 40, 0.45);
  background: linear-gradient(145deg, rgba(255, 95, 40, 0.98), rgba(170, 33, 34, 0.98));
  box-shadow: 0 18px 40px rgba(255, 95, 40, 0.26);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.trust-item {
  padding: 18px 16px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow);
}

.trust-item span {
  display: block;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.trust-item small {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-note {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.hero-note img {
  width: 72px;
  border-radius: 14px;
}

.hero-note strong {
  display: block;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-note p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-stage {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 10px;
  align-items: stretch;
}

.hero-stage-card,
.mini-card,
.feature-card,
.badge,
.product-card,
.story-card,
.showcase-shell,
.footer-badge {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.hero-stage-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  min-height: 560px;
  display: grid;
  place-items: center;
  padding: 18px;
}

.hero-stage-card::before {
  content: "";
  position: absolute;
  inset: auto 8% 7% 8%;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 95, 40, 0.24) 0%, rgba(255, 95, 40, 0) 68%);
  filter: blur(16px);
}

.hero-stage-card img {
  position: relative;
  z-index: 1;
  width: min(100%, 400px);
  object-fit: contain;
  filter: drop-shadow(0 28px 36px rgba(0, 0, 0, 0.45));
}

.stage-label {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  padding: 12px 14px;
  border-radius: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--gold);
  background: rgba(14, 14, 18, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-stage-stack {
  display: grid;
  gap: 14px;
}

.mini-card {
  border-radius: 24px;
  padding: 11px;
  display: grid;
  gap: 12px;
}

.mini-card img {
  width: 100%;
  height: 144px;
  object-fit: contain;
  padding: 8px;
}

.mini-card strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mini-card span,
.product-card p,
.section-copy p,
.story-card p,
.footer-text,
.footer-badge span,
.showcase-copy p {
  color: var(--muted);
}

.hero-footer-chip {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-footer-chip span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
}

.hero-footer-chip strong {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  pointer-events: none;
  opacity: 0.72;
}

.hero-glow-one {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(255, 95, 40, 0.15) 0%, rgba(255, 95, 40, 0) 72%);
  right: 4%;
  top: 10%;
}

.hero-glow-two {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(104, 32, 89, 0.22) 0%, rgba(104, 32, 89, 0) 72%);
  left: 4%;
  bottom: 0;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.ticker-track {
  display: flex;
  gap: 44px;
  width: max-content;
  padding: 16px 0;
  animation: ticker 30s linear infinite;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
}

.ticker-track span {
  white-space: nowrap;
}

.section {
  padding: 72px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  padding: 22px;
  border-radius: 24px;
}

.feature-card span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(255, 95, 40, 0.86), rgba(215, 181, 109, 0.54));
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.feature-card h3,
.story-card h3,
.product-card h3 {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.feature-card p,
.story-card p,
.product-card p {
  margin: 0;
}

.split-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.section-copy h2,
.section-heading h2 {
  font-size: clamp(2.2rem, 4.3vw, 4.2rem);
  max-width: 12ch;
}

.feature-points {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.feature-points article {
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
}

.feature-points strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.badge {
  min-height: 240px;
  padding: 22px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(145deg, rgba(255, 95, 40, 0.12), rgba(215, 181, 109, 0.08));
}

.badge span {
  font-family: Impact, "Arial Black", "Helvetica Neue", sans-serif;
  font-size: clamp(2rem, 6vw, 4rem);
  text-transform: uppercase;
  line-height: 0.9;
}

.badge small {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

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

.section-heading.compact {
  margin-bottom: 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.product-card {
  border-radius: 26px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-card.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.product-card img {
  width: 100%;
  height: 290px;
  object-fit: contain;
  object-position: center;
  padding: 8px;
}

.product-card.featured img {
  height: 430px;
}

.product-card h3 {
  font-size: 0.98rem;
  line-height: 1.15;
}

.story-shell {
  padding: 22px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

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

.story-card {
  border-radius: 26px;
  padding: 22px;
}

.story-card span {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 18px;
  background: linear-gradient(145deg, rgba(255, 95, 40, 0.88), rgba(215, 181, 109, 0.5));
  font-weight: 800;
  letter-spacing: 0.08em;
}

.story-card h3 {
  font-size: 1.16rem;
}

.site-footer {
  margin-top: 30px;
  padding: 40px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 1fr;
  gap: 20px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 18px;
}

.site-footer h4 {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
}

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

.site-footer a {
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--text);
}

.footer-badge {
  padding: 18px;
  border-radius: 24px;
}

.footer-badge strong,
.footer-badge span {
  display: block;
}

.footer-badge strong {
  margin: 14px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-badge span {
  color: var(--muted);
}

.usa-mark {
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.usa-mark img {
  width: 100%;
  border-radius: 14px;
}

.footer-bottom {
  margin-top: 18px;
  padding: 22px 20px 16px;
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(8, 8, 10, 0.92), rgba(7, 7, 9, 0.84)),
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.04), transparent 18%),
    radial-gradient(circle at 82% 18%, rgba(255, 95, 40, 0.06), transparent 20%),
    radial-gradient(circle at 50% 100%, rgba(215, 181, 109, 0.05), transparent 26%);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 6, 0.18), rgba(5, 5, 6, 0.5)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0 12%, transparent 12% 23%, rgba(255, 95, 40, 0.05) 23% 28%, transparent 28% 100%),
    repeating-linear-gradient(180deg, rgba(190, 24, 34, 0.1) 0 18px, rgba(255, 255, 255, 0.015) 18px 36px),
    radial-gradient(circle at 10% 18%, rgba(255, 255, 255, 0.18) 0 1.2px, transparent 1.8px),
    radial-gradient(circle at 22% 28%, rgba(255, 255, 255, 0.2) 0 1.3px, transparent 1.9px),
    radial-gradient(circle at 14% 44%, rgba(255, 255, 255, 0.18) 0 1.2px, transparent 1.8px),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.18) 0 1.2px, transparent 1.8px),
    radial-gradient(circle at 74% 32%, rgba(255, 255, 255, 0.2) 0 1.3px, transparent 1.9px),
    radial-gradient(circle at 88% 46%, rgba(255, 255, 255, 0.18) 0 1.1px, transparent 1.7px);
  opacity: 0.08;
  mix-blend-mode: screen;
  pointer-events: none;
}

.footer-bottom > * {
  position: relative;
  z-index: 1;
}

.footer-divider {
  width: 100%;
  height: 1px;
  margin-bottom: 4px;
  position: relative;
  background: linear-gradient(90deg, transparent, rgba(215, 181, 109, 0.92), rgba(255, 255, 255, 0.82), rgba(215, 181, 109, 0.92), transparent);
}

.footer-divider::after {
  content: "";
  position: absolute;
  inset: -10px 18%;
  height: 20px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(215, 181, 109, 0.45) 0%, rgba(215, 181, 109, 0.16) 32%, rgba(215, 181, 109, 0) 72%);
  filter: blur(10px);
  opacity: 0.55;
  animation: footerGlowPulse 6s ease-in-out infinite;
  pointer-events: none;
}

.footer-locations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  position: relative;
  padding-top: 8px;
}

.footer-locations::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(215, 181, 109, 0.26), rgba(255, 255, 255, 0.22), rgba(215, 181, 109, 0.26), transparent);
  transform: translateX(-50%);
  opacity: 0.75;
}

.footer-location {
  position: relative;
  padding: 20px 20px 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.028)),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.footer-location::before {
  content: "";
  position: absolute;
  top: 28px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 95, 40, 0.95), rgba(215, 181, 109, 0.75));
  box-shadow: 0 0 0 6px rgba(255, 95, 40, 0.08);
}

.footer-location:first-child::before {
  right: -7px;
}

.footer-location:last-child::before {
  left: -7px;
}

.footer-location-label {
  margin: 0 0 6px;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.footer-location h5 {
  margin: 0 0 10px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.98rem;
}

.footer-location h5::before {
  content: "⌖";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  border-radius: 50%;
  color: var(--gold);
  border: 1px solid rgba(215, 181, 109, 0.28);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.8rem;
  vertical-align: middle;
  transform: translateY(-1px);
}

.footer-location p {
  margin: 0 0 6px;
  color: var(--muted);
  padding-left: 24px;
  position: relative;
}

.footer-location a {
  color: var(--text);
}

.footer-location p:first-of-type::before,
.footer-location p:last-of-type::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  text-align: center;
  color: var(--gold);
  opacity: 0.9;
}

.footer-location p:first-of-type::before {
  content: "⌂";
}

.footer-location p:last-of-type::before {
  content: "✆";
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 2px;
}

@keyframes footerGlowPulse {
  0%, 100% {
    transform: scaleX(0.95);
    opacity: 0.4;
  }
  50% {
    transform: scaleX(1.02);
    opacity: 0.7;
  }
}

body.auth-page {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 24%),
    radial-gradient(circle at top right, rgba(255, 95, 40, 0.16), transparent 26%),
    radial-gradient(circle at bottom left, rgba(215, 181, 109, 0.12), transparent 28%),
    linear-gradient(180deg, #08080b 0%, #050506 55%, #09090b 100%);
}

body.auth-page::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 6, 0.28), rgba(5, 5, 6, 0.66)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0 12%, transparent 12% 23%, rgba(255, 95, 40, 0.05) 23% 28%, transparent 28% 100%),
    repeating-linear-gradient(180deg, rgba(190, 24, 34, 0.11) 0 18px, rgba(255, 255, 255, 0.02) 18px 36px),
    radial-gradient(circle at 10% 18%, rgba(255, 255, 255, 0.18) 0 1.2px, transparent 1.8px),
    radial-gradient(circle at 22% 28%, rgba(255, 255, 255, 0.2) 0 1.3px, transparent 1.9px),
    radial-gradient(circle at 14% 44%, rgba(255, 255, 255, 0.18) 0 1.2px, transparent 1.8px),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.18) 0 1.2px, transparent 1.8px),
    radial-gradient(circle at 74% 32%, rgba(255, 255, 255, 0.2) 0 1.3px, transparent 1.9px),
    radial-gradient(circle at 88% 46%, rgba(255, 255, 255, 0.18) 0 1.1px, transparent 1.7px);
  opacity: 0.16;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: -1;
}

.auth-hero {
  position: relative;
  padding: 54px 0 24px;
}

.auth-texture {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 16, 20, 0.12), rgba(8, 8, 11, 0.58)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0 14%, transparent 14% 27%, rgba(255, 95, 40, 0.06) 27% 33%, transparent 33% 100%),
    repeating-linear-gradient(180deg, rgba(190, 24, 34, 0.1) 0 16px, rgba(255, 255, 255, 0.015) 16px 32px),
    radial-gradient(circle at 14% 20%, rgba(255, 255, 255, 0.18) 0 1.2px, transparent 1.8px),
    radial-gradient(circle at 26% 28%, rgba(255, 255, 255, 0.17) 0 1.1px, transparent 1.7px),
    radial-gradient(circle at 18% 42%, rgba(255, 255, 255, 0.2) 0 1.3px, transparent 1.9px),
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.17) 0 1.1px, transparent 1.7px),
    radial-gradient(circle at 84% 30%, rgba(255, 255, 255, 0.2) 0 1.2px, transparent 1.8px),
    radial-gradient(circle at 72% 44%, rgba(255, 255, 255, 0.18) 0 1.2px, transparent 1.8px);
  opacity: 0.46;
  pointer-events: none;
}

.auth-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.auth-copy {
  padding: 30px 0;
}

.auth-copy h1 {
  margin: 0;
  font-family: Impact, "Arial Black", "Helvetica Neue", sans-serif;
  text-transform: uppercase;
  line-height: 0.9;
  font-size: clamp(3.1rem, 6vw, 5.6rem);
  max-width: 8ch;
}

.auth-lead {
  max-width: 56ch;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.message-box {
  margin-top: 0;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
  font-weight: 600;
}

.auth-form .message-box {
  margin-top: 2px;
  text-align: center;
}

.message-box.success {
  border-color: rgba(62, 220, 138, 0.22);
  background: rgba(62, 220, 138, 0.12);
  color: #d7ffe7;
}

.message-box.error {
  border-color: rgba(255, 95, 40, 0.26);
  background: rgba(255, 95, 40, 0.12);
  color: #ffd9cf;
}

.hidden {
  display: none;
}

.auth-points {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.auth-point {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.auth-point strong {
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.auth-point span {
  color: var(--muted);
}

.auth-panel {
  padding: 26px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.auth-panel-header {
  margin-bottom: 20px;
}

.auth-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--gold);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 10, 12, 0.7);
}

.auth-panel h2 {
  margin: 14px 0 8px;
  font-family: Impact, "Arial Black", "Helvetica Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 0.94;
  font-size: clamp(2rem, 3vw, 2.9rem);
}

.auth-panel p {
  margin: 0;
  color: var(--muted);
}

.auth-form {
  display: grid;
  gap: 14px;
}

.auth-field {
  display: grid;
  gap: 8px;
}

.auth-field span {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.82);
}

.auth-field input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 8, 10, 0.62);
  color: var(--text);
  outline: none;
  font: inherit;
}

.auth-field input[name="code"] {
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.auth-field input::placeholder {
  color: rgba(245, 242, 239, 0.45);
}

.auth-field input:focus {
  border-color: rgba(255, 95, 40, 0.48);
  box-shadow: 0 0 0 3px rgba(255, 95, 40, 0.12);
}

.auth-submit {
  margin-top: 4px;
  width: 100%;
}

.auth-info {
  padding-top: 18px;
}

.auth-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.auth-info-card {
  padding: 22px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.auth-info-card span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 95, 40, 0.86), rgba(215, 181, 109, 0.54));
  font-weight: 800;
  margin-bottom: 16px;
}

.auth-info-card h3 {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

@media (max-width: 1180px) {
  .header-bar {
    grid-template-columns: auto 1fr auto;
  }

  .hero-grid,
  .split-section,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-stage {
    order: -1;
  }

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

  .badge-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .footer-locations::before,
  .footer-location::before {
    display: none;
  }

  .auth-layout,
  .auth-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .header-bar {
    grid-template-columns: auto auto;
  }

  .site-nav,
  .header-actions .icon-btn,
  .header-actions .cart-btn {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
  }

  .mobile-drawer {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    overflow: hidden;
    transition:
      opacity 220ms ease,
      transform 220ms ease,
      visibility 220ms ease;
    padding: 96px 14px 18px;
    display: grid;
    place-items: start center;
    background:
      linear-gradient(180deg, rgba(6, 6, 8, 0.94), rgba(8, 8, 10, 0.98)),
      radial-gradient(circle at top left, rgba(255, 95, 40, 0.12), transparent 28%),
      radial-gradient(circle at top right, rgba(215, 181, 109, 0.1), transparent 24%);
    backdrop-filter: blur(26px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-toggle:checked ~ .mobile-drawer {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-drawer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0 12%, transparent 12% 27%, rgba(255, 95, 40, 0.05) 27% 33%, transparent 33% 100%),
      repeating-linear-gradient(180deg, rgba(190, 24, 34, 0.08) 0 18px, rgba(255, 255, 255, 0.012) 18px 36px);
    opacity: 0.5;
    pointer-events: none;
  }

  .mobile-drawer a[aria-current="page"] {
    border-color: rgba(215, 181, 109, 0.28);
    background: linear-gradient(145deg, rgba(255, 95, 40, 0.14), rgba(215, 181, 109, 0.08));
    color: var(--gold);
  }

  .nav-toggle:checked ~ .site-header .menu-btn span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle:checked ~ .site-header .menu-btn span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked ~ .site-header .menu-btn span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .menu-btn span {
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .auth-hero {
    padding-top: 28px;
  }

  .auth-panel {
    order: 1;
  }

  .auth-copy {
    order: 2;
    padding: 0;
  }

  .auth-copy > .section-kicker,
  .auth-copy > h1,
  .auth-copy > .auth-lead {
    display: none;
  }

  .auth-points {
    margin-top: 24px;
  }

  .auth-panel {
    padding: 20px;
  }

  .auth-copy h1 {
    font-size: clamp(2.6rem, 14vw, 4rem);
    max-width: none;
  }

  .hero {
    padding-top: 22px;
    padding-bottom: 12px;
  }

  .hero-stage {
    grid-template-columns: 1fr;
  }

  .hero-stage-card {
    min-height: 500px;
  }

  .hero-stage-card img {
    width: min(100%, 344px);
  }

  .feature-grid,
  .story-grid,
  .badge-panel {
    grid-template-columns: 1fr 1fr;
  }

  .product-card.featured {
    grid-column: span 2;
  }

  .section {
    padding: 64px 0;
  }
}

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

  .header-bar {
    min-height: 76px;
  }

  .mobile-drawer {
    padding: 84px 12px 16px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 15vw, 4.2rem);
    max-width: none;
  }

  .lead {
    font-size: 0.98rem;
  }

  .trust-strip,
  .feature-grid,
  .story-grid,
  .badge-panel,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card.featured {
    grid-column: auto;
    grid-row: auto;
  }

  .product-card img,
  .product-card.featured img,
  .mini-card img {
    height: 240px;
  }

  .btn {
    width: 100%;
  }

  .cta-row {
    width: 100%;
  }

  .hero-note {
    width: 100%;
  }

  .hero-stage-card {
    min-height: 420px;
    padding: 15px;
  }

  .hero-footer-chip {
    flex-direction: column;
    align-items: flex-start;
  }

  .story-shell {
    padding: 18px;
  }

  .showcase-shell {
    padding: 18px;
  }

  .footer-location {
    padding: 15px 15px;
  }

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

  .footer-bottom {
    padding: 16px 14px 14px;
    border-radius: 24px;
  }

  .footer-divider {
    margin-bottom: 0;
  }

  .hero-usa-texture,
  body.auth-page::before {
    opacity: 0.06;
  }

  .auth-texture {
    opacity: 0.34;
  }

  .auth-panel h2 {
    max-width: 10ch;
  }
}
