:root {
  --black: #080a0c;
  --charcoal: #15191d;
  --red: #e32b30;
  --red-dark: #9f1319;
  --yellow: #ffd21c;
  --steel: #b9c1c7;
  --blue: #198bc2;
  --white: #ffffff;
  --shell: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { min-height: 100%; background: var(--black); }
body {
  min-height: 100%; margin: 0; color: var(--white); background: var(--black);
  font-family: Arial, Helvetica, sans-serif; -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }

.landing-page {
  height: 100vh; height: 100svh; min-height: 0; display: grid; grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden; background: var(--black); isolation: isolate;
}

.site-header {
  position: relative; z-index: 5; background: rgba(7, 9, 11, .97);
  border-top: 4px solid var(--red); border-bottom: 1px solid rgba(255,255,255,.16);
}
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; padding-block: 7px; }
.brand-logos { min-width: 0; flex: 1; display: flex; align-items: center; gap: 14px; }
.out2ride-logo { width: min(235px, 22vw); height: auto; }
.jp-logo { width: min(118px, 11vw); height: auto; }
.main-st-logo { width: min(90px, 8vw); max-height: 58px; object-fit: contain; }
.flea-logo { width: min(125px, 12vw); height: auto; }
.logo-divider { width: 1px; flex: 0 0 1px; align-self: stretch; min-height: 50px; background: linear-gradient(transparent, rgba(255,255,255,.4), transparent); }
.issue-badge { display: flex; align-items: center; gap: 9px; margin: 0; color: var(--steel); font-size: .69rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; white-space: nowrap; }
.issue-badge span { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(227,43,48,.16); }

.hero { position: relative; min-height: 0; overflow: hidden; }
.hero-photo { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; object-fit: cover; object-position: left bottom; filter: saturate(1.04) contrast(1.03); }
.hero-overlay {
  position: absolute; inset: 0; z-index: -2; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5,7,9,.02) 0%, rgba(5,7,9,.06) 35%, rgba(5,7,9,.72) 62%, rgba(5,7,9,.94) 100%),
    linear-gradient(0deg, rgba(5,7,9,.48), transparent 28%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .16;
  background: repeating-linear-gradient(135deg, transparent 0 18px, rgba(255,255,255,.09) 18px 19px);
  mask-image: linear-gradient(90deg, transparent 45%, #000 82%);
}
.hero-inner { height: 100%; display: flex; align-items: center; justify-content: flex-end; padding-block: 18px 20px; }
.content-panel {
  width: min(520px, 44%); padding: 21px 24px 19px; background: linear-gradient(135deg, rgba(13,16,19,.91), rgba(13,16,19,.78));
  border: 1px solid rgba(255,255,255,.18); border-left: 4px solid var(--red);
  box-shadow: 0 28px 80px rgba(0,0,0,.44); backdrop-filter: blur(5px);
}
.eyebrow { margin: 0 0 7px; color: var(--yellow); font-size: .62rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { margin-inline: 4px; color: var(--red); }
h1 { margin: 0; font-size: clamp(2.25rem, 3.5vw, 3.25rem); font-weight: 900; letter-spacing: -.05em; line-height: .9; text-transform: uppercase; text-shadow: 0 3px 20px rgba(0,0,0,.38); }
.tagline { max-width: 460px; margin: 9px 0 0; color: rgba(255,255,255,.82); font-size: .82rem; line-height: 1.4; }

.availability { margin-top: 12px; padding: 10px 12px 9px; background: linear-gradient(100deg, rgba(227,43,48,.95), rgba(159,19,25,.92)); border-right: 3px solid var(--yellow); }
.availability-label { margin: 0 0 3px; color: rgba(255,255,255,.76); font-size: .59rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.availability h2 { margin: 0; font-size: 1.02rem; font-weight: 900; letter-spacing: .015em; text-transform: uppercase; }
.availability > p:last-child { margin: 4px 0 0; font-size: .7rem; line-height: 1.3; }

.issue-details { display: grid; grid-template-columns: 1.3fr 1fr; gap: 10px; margin-top: 10px; }
.issue-details p { margin: 0; padding-left: 9px; border-left: 2px solid rgba(255,210,28,.74); color: rgba(255,255,255,.83); font-size: .67rem; line-height: 1.35; }
.issue-details strong { color: #fff; }

.phone-box {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 11px; padding: 9px 11px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.28);
}
.phone-box > div { display: grid; gap: 2px; }
.phone-box span { color: var(--yellow); font-size: .59rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.phone-box > div strong { font-size: 1.18rem; letter-spacing: .025em; }
.phone-box p { margin: 0; color: rgba(255,255,255,.7); font-size: .59rem; line-height: 1.38; text-align: right; }
.phone-box p strong { color: #fff; }

.site-footer { position: relative; z-index: 5; background: rgba(7,9,11,.98); border-top: 1px solid rgba(255,255,255,.13); }
.footer-inner { min-height: 40px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.footer-inner p { margin: 0; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.footer-inner p span { color: var(--red); }
.footer-inner small { color: rgba(255,255,255,.47); font-size: .62rem; }

@media (min-width: 821px) and (max-height: 760px) {
  .header-inner { min-height: 72px; }
  .out2ride-logo { width: 210px; }
  .jp-logo { width: 100px; }
  .main-st-logo { width: 82px; max-height: 54px; }
  .flea-logo { width: 112px; }
  .logo-divider { min-height: 44px; }
  .hero-inner { padding-block: 10px 12px; }
  .content-panel { padding: 16px 20px 15px; }
  h1 { font-size: clamp(2.05rem, 3.2vw, 2.85rem); }
  .tagline { margin-top: 7px; font-size: .76rem; }
  .availability { margin-top: 8px; padding-block: 7px 6px; }
  .issue-details { margin-top: 7px; }
  .phone-box { margin-top: 8px; padding-block: 6px; }
  .footer-inner { min-height: 34px; }
}

@media (max-width: 820px) {
  .landing-page { height: auto; min-height: 100vh; min-height: 100svh; overflow: visible; }
  .shell { width: min(calc(100% - 30px), var(--shell)); }
  .header-inner { min-height: 74px; gap: 0; }
  .brand-logos { width: 100%; justify-content: space-between; gap: 8px; }
  .out2ride-logo { width: min(210px, 30vw); }
  .jp-logo { width: min(88px, 14vw); }
  .main-st-logo { width: min(80px, 13vw); max-height: 50px; }
  .flea-logo { width: min(105px, 18vw); }
  .logo-divider { min-height: 38px; }
  .issue-badge { display: none; }
  .hero { min-height: 0; display: flex; flex-direction: column; overflow: visible; background: #0b0e11; }
  .hero-photo {
    position: relative; inset: auto; z-index: 0; flex: none; width: 100%; height: auto; aspect-ratio: 16 / 10;
    object-fit: cover; object-position: left bottom;
  }
  .hero-overlay { display: none; }
  .hero::after { display: none; }
  .hero-inner { height: auto; display: block; padding-block: 0 22px; }
  .content-panel {
    width: min(680px, 100%); margin: 0 auto; border-top: 4px solid var(--red);
    border-left: 1px solid rgba(255,255,255,.18);
  }
}

@media (max-width: 560px) {
  .header-inner { min-height: 64px; }
  .brand-logos { gap: 5px; }
  .logo-divider { min-height: 32px; }
  .hero { min-height: 0; }
  .hero-photo { aspect-ratio: 4 / 3; }
  .hero-inner { padding-top: 0; }
  .content-panel { padding: 23px 20px 21px; }
  h1 { font-size: clamp(2.2rem, 10.8vw, 2.9rem); }
  .tagline { font-size: .87rem; }
  .availability { padding-inline: 12px; }
  .issue-details { grid-template-columns: 1fr; gap: 8px; }
  .phone-box { align-items: flex-start; flex-direction: column; gap: 7px; }
  .phone-box p { text-align: left; }
  .footer-inner { min-height: 54px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 2px; padding-block: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; }
}
