:root {
  color-scheme: dark;
  --black: #030303;
  --ink: #0b0b0c;
  --charcoal: #151515;
  --grey: #9a9a9a;
  --white: #f4f0ec;
  --red: #b20f13;
  --maroon: #4a0508;
  --line: rgba(255, 255, 255, 0.13);
  --font-main: "Trebuchet MS", "Segoe UI", Arial, Helvetica, sans-serif;
  --font-display: "Old English Text MT", "Blackadder ITC", "Engravers Old English", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at 72% 18%, rgba(102, 7, 11, 0.32), transparent 28%),
    linear-gradient(135deg, #020202 0%, #111 46%, #030303 100%);
  color: var(--white);
  font-family: var(--font-main);
  font-style: italic;
  letter-spacing: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

#atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: linear-gradient(to bottom, rgba(3, 3, 3, 0.88), rgba(3, 3, 3, 0.12));
  backdrop-filter: blur(12px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 31px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
  transform: skewX(-8deg);
  text-shadow: 0 0 12px rgba(178, 15, 19, 0.45), 2px 2px 0 rgba(74, 5, 8, 0.9);
}

.brand-mark img {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  object-fit: cover;
  box-shadow: 0 0 22px rgba(178, 15, 19, 0.5);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 28px);
  color: rgba(244, 240, 236, 0.76);
  font-size: 12px;
  font-style: italic;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
}

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

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

main {
  position: relative;
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 96px clamp(18px, 5vw, 72px) 56px;
  position: relative;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.9;
  filter: contrast(1.04) saturate(0.98);
  transform: scale(1.01);
  animation: slow-drift 16s ease-in-out infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0.12) 100%),
    linear-gradient(to top, rgba(3, 3, 3, 0.72), transparent 46%),
    linear-gradient(to bottom, rgba(3, 3, 3, 0.42), transparent 24%);
}

.red-glow {
  position: absolute;
  left: 16%;
  bottom: 10%;
  width: 44vw;
  height: 18vh;
  background: radial-gradient(ellipse, rgba(178, 15, 19, 0.46), transparent 64%);
  filter: blur(16px);
  animation: glow-breathe 3.4s ease-in-out infinite;
}

.smoke {
  position: absolute;
  width: 38vw;
  height: 38vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(210, 210, 210, 0.18), rgba(120, 120, 120, 0.08) 35%, transparent 68%);
  filter: blur(18px);
  opacity: 0.6;
  mix-blend-mode: screen;
}

.smoke-a {
  right: 18%;
  top: 8%;
  animation: smoke-rise 13s linear infinite;
}

.smoke-b {
  right: 42%;
  bottom: 22%;
  animation: smoke-rise 18s linear infinite reverse;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: end;
  max-width: 560px;
  padding-top: 46vh;
}

.kicker {
  margin: 0 0 22px;
  color: var(--red);
  font-size: clamp(16px, 2vw, 26px);
  font-weight: 800;
  letter-spacing: 10px;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(74px, 13vw, 188px);
  line-height: 0.82;
  font-weight: 950;
  letter-spacing: 0;
}

.hero-wordmark {
  width: min(780px, 86vw);
  margin: -18px 0 12px;
  font-size: 0;
  line-height: 0;
  filter: drop-shadow(0 0 18px rgba(178, 15, 19, 0.24)) drop-shadow(0 14px 20px rgba(0, 0, 0, 0.55));
}

.hero-wordmark img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-line {
  max-width: 560px;
  color: rgba(244, 240, 236, 0.86);
  font-size: clamp(20px, 2.4vw, 34px);
  line-height: 1.18;
}

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

.hero-actions a,
.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(244, 240, 236, 0.36);
  background: rgba(10, 10, 10, 0.66);
  color: var(--white);
  text-transform: uppercase;
  font-size: 12px;
  font-style: italic;
  font-weight: 800;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.hero-actions a:hover,
.contact-button:hover {
  border-color: var(--red);
  background: rgba(178, 15, 19, 0.16);
  transform: translateY(-2px);
}

.feature-section,
.cards-section,
.about-section,
.contact-section {
  padding: 96px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-heading p {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.section-heading.heading-right h2 {
  margin-left: auto;
  text-align: right;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 7vw, 96px);
  line-height: 0.9;
}

.section-heading h2 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 900;
  text-transform: none;
  letter-spacing: 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(180deg, #ffffff 0%, #8f8f8f 20%, #242424 46%, #ededed 58%, #646464 76%, #fafafa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(178, 15, 19, 0.32)) drop-shadow(0 8px 0 rgba(74, 5, 8, 0.9)) drop-shadow(0 18px 24px rgba(0, 0, 0, 0.86));
  position: relative;
}

.section-heading h2::after {
  content: attr(data-title);
  position: absolute;
  inset: 0;
  z-index: -1;
  color: #5f0507;
  transform: translate(4px, 6px) skewX(-4deg);
  -webkit-text-stroke: 1px rgba(178, 15, 19, 0.7);
  opacity: 0.82;
}

.asset-heading {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0;
  line-height: 0;
  filter: none;
}

.section-heading.heading-right .asset-heading {
  justify-content: flex-end;
  width: auto;
  max-width: min(760px, 82vw);
}

.asset-heading::after {
  content: none;
}

.asset-heading img {
  display: block;
  width: min(760px, 100%);
  max-height: clamp(86px, 14vw, 168px);
  height: auto;
  object-fit: contain;
  object-position: center;
}

.motorcycle-heading {
  min-height: clamp(86px, 14vw, 168px);
  align-items: center;
}

.modifications-heading img {
  width: min(920px, 100%);
  max-height: clamp(112px, 16vw, 206px);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 30px;
  align-items: stretch;
}

.split-layout.reverse {
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1.45fr);
}

.image-panel,
.jet-stage {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
}

.image-panel img,
.jet-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05);
  transition: transform 700ms ease, filter 700ms ease;
}

.image-panel:hover img,
.jet-stage:hover img {
  transform: scale(1.035);
  filter: contrast(1.14) saturate(1.05);
}

.bike-panel {
  animation: idle-vibration 360ms linear infinite;
}

.engine-pulse {
  position: absolute;
  left: 17%;
  bottom: 20%;
  width: 130px;
  height: 52px;
  background: radial-gradient(ellipse, rgba(210, 210, 210, 0.22), transparent 72%);
  filter: blur(10px);
  animation: exhaust-puff 2.2s ease-in-out infinite;
}

.section-copy {
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 460px;
  padding: 28px;
  border-left: 1px solid var(--line);
  color: rgba(244, 240, 236, 0.78);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01));
}

.section-copy p {
  font-size: clamp(22px, 3vw, 38px);
  line-height: 1.06;
  color: var(--white);
}

ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

li {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
}

.compact {
  padding-top: 56px;
}

.jet-stage {
  min-height: 620px;
}

.air {
  position: absolute;
  left: -20%;
  right: -20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(244, 240, 236, 0.58), transparent);
  filter: blur(2px);
  transform: rotate(-8deg);
  opacity: 0.56;
  animation: air-flow 2.8s linear infinite;
}

.air-one {
  top: 22%;
}

.air-two {
  top: 38%;
  animation-delay: -1s;
}

.air-three {
  top: 56%;
  animation-delay: -1.8s;
}

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

.card-grid article {
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(74, 5, 8, 0.18));
  transition: transform 160ms ease, border-color 160ms ease;
}

.anime-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 18px 0 22px;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--line);
  filter: contrast(1.04) saturate(1.04);
}

.product-card {
  position: relative;
}

.product-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 18px 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0b0b0c;
  cursor: zoom-in;
}

.product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 240ms ease, filter 240ms ease;
}

.product-card:hover .product-image img,
.product-image:focus-visible img {
  transform: scale(1.055);
  filter: contrast(1.06);
}

.product-card h3 {
  margin-top: 28px;
}

.hover-preview {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 60;
  width: min(760px, 70vw);
  max-height: 82vh;
  padding: 10px;
  border: 1px solid rgba(178, 15, 19, 0.7);
  background: rgba(3, 3, 3, 0.94);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.82), 0 0 34px rgba(178, 15, 19, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -48%) scale(0.94);
  transition: opacity 160ms ease, transform 160ms ease;
}

.hover-preview.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.hover-preview img {
  display: block;
  width: 100%;
  max-height: calc(82vh - 20px);
  object-fit: contain;
}

.product-lightbox {
  width: min(980px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  padding: 14px;
  overflow: visible;
  border: 1px solid rgba(178, 15, 19, 0.76);
  background: #060606;
  color: var(--white);
  box-shadow: 0 32px 110px rgba(0, 0, 0, 0.9);
}

.product-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(8px);
}

.product-lightbox img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 112px);
  object-fit: contain;
}

.product-lightbox p {
  margin: 12px 0 0;
  color: rgba(244, 240, 236, 0.76);
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(3, 3, 3, 0.82);
  color: var(--white);
  font: 30px/1 Arial, sans-serif;
  cursor: pointer;
}

.card-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(178, 15, 19, 0.74);
}

.card-grid span {
  color: var(--red);
  font-size: 12px;
  text-transform: uppercase;
}

h3 {
  margin: 64px 0 16px;
  font-style: italic;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
}

.card-grid p,
.about-section p,
.contact-section p {
  color: rgba(244, 240, 236, 0.72);
  font-size: 18px;
  line-height: 1.5;
}

.about-section,
.contact-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: end;
}

.about-section h2,
.contact-section h2 {
  font-size: clamp(38px, 6vw, 82px);
}

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

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: rgba(244, 240, 236, 0.6);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

@keyframes slow-drift {
  from {
    transform: scale(1.03) translateX(-0.8%);
  }
  to {
    transform: scale(1.07) translateX(0.8%);
  }
}

@keyframes glow-breathe {
  50% {
    opacity: 0.58;
    transform: scale(1.06);
  }
}

@keyframes smoke-rise {
  from {
    transform: translate3d(0, 12%, 0) scale(0.8);
    opacity: 0.22;
  }
  50% {
    opacity: 0.54;
  }
  to {
    transform: translate3d(-12%, -28%, 0) scale(1.24);
    opacity: 0.08;
  }
}

@keyframes idle-vibration {
  50% {
    transform: translateY(-1px);
  }
}

@keyframes exhaust-puff {
  from {
    transform: translateX(0) scale(0.5);
    opacity: 0.12;
  }
  45% {
    opacity: 0.55;
  }
  to {
    transform: translateX(-120px) scale(1.45);
    opacity: 0;
  }
}

@keyframes air-flow {
  from {
    transform: translateX(-18%) rotate(-8deg);
  }
  to {
    transform: translateX(18%) rotate(-8deg);
  }
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .split-layout,
  .split-layout.reverse,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .image-panel,
  .jet-stage,
  .section-copy {
    min-height: 380px;
  }

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

  .hover-preview {
    display: none;
  }
}

@media (max-width: 560px) {
  .brand-mark {
    font-size: 26px;
    letter-spacing: 1px;
  }

  .hero {
    min-height: 860px;
    align-items: end;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .kicker {
    letter-spacing: 5px;
  }

  h1 {
    font-size: clamp(58px, 21vw, 92px);
  }

  .hero-wordmark {
    width: 104vw;
    margin-left: -8vw;
  }

  .feature-section,
  .cards-section,
  .about-section,
  .contact-section {
    padding: 68px 18px;
  }

  .section-heading.heading-right {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading.heading-right h2,
  .section-heading.heading-right .asset-heading {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    justify-content: flex-end;
    text-align: right;
  }

  footer {
    flex-direction: column;
  }
}
