/* Keyside V2 — minimal dark splash + premium info page */

:root {
  --black: #030303;
  --black-soft: #080808;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --text: #f7f2ea;
  --muted: rgba(247, 242, 234, 0.62);
  --muted-light: rgba(247, 242, 234, 0.42);
  --line: rgba(255, 255, 255, 0.12);
  --gold: #d4b06a;
  --gold-light: #f0d28a;
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

/* SPLASH PAGE */

.splash-page {
  overflow: hidden;
}

.splash {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  background: #030303;
  isolation: isolate;
}

.splash::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,.08) 45%, rgba(0,0,0,.72) 100%);
  pointer-events: none;
  z-index: -1;
}

.splash-glow {
  position: absolute;
  width: min(760px, 82vw);
  height: min(170px, 24vw);
  border-radius: 999px;
  background: rgba(212, 176, 106, 0.16);
  filter: blur(62px);
  transform: translateY(-18px);
  z-index: -2;
}

.car-outline {
  position: absolute;
  width: min(980px, 108vw);
  color: rgba(240, 210, 138, 0.14);
  transform: translate(-3%, -16px);
  z-index: -1;
}

.splash-content {
  text-align: center;
  transform: translateY(-22px);
}

.splash-logo {
  width: 118px;
  height: 118px;
  object-fit: contain;
  border-radius: 0;
  display: block;
  margin: 0 auto 26px;
  box-shadow: none;
  opacity: 0.96;
}

.splash h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: -0.085em;
  font-weight: 850;
}

.splash p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  letter-spacing: -0.015em;
}

.enter-button {
  position: fixed;
  left: 50%;
  bottom: max(34px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  min-width: 132px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(240, 210, 138, 0.58);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(10px);
  font-weight: 750;
  letter-spacing: 0.02em;
  transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s ease;
}

.enter-button:hover {
  background: rgba(240, 210, 138, 0.12);
  border-color: rgba(240, 210, 138, 0.9);
  transform: translateX(-50%) translateY(-2px);
}

/* INFO PAGE */

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

.nav {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  letter-spacing: -0.035em;
  font-size: 1.12rem;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 13px;
  color: #070707;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-weight: 950;
  letter-spacing: -0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  color: #080808 !important;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 760;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.info-hero {
  padding: 110px 0 84px;
  background:
    radial-gradient(circle at 74% 22%, rgba(212, 176, 106, 0.14), transparent 28%),
    linear-gradient(180deg, #030303, #070707);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 0.74rem;
  font-weight: 850;
}

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

.info-hero h1 {
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  line-height: 0.91;
  letter-spacing: -0.085em;
  margin-bottom: 26px;
}

.hero-text,
.split-grid p,
.statement-card p,
.start-card p {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 720px;
}

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

.button {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 850;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

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

.button.gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #070707;
  box-shadow: 0 18px 50px rgba(212, 176, 106, 0.18);
}

.button.ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.glass-card,
.steps article,
.service-list div,
.statement-card,
details,
.start-card {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.glass-card {
  border-radius: 34px;
  padding: 34px;
}

.card-label {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 850;
}

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

.glass-card li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 720;
}

.glass-card li:last-child {
  border-bottom: 0;
}

.section {
  padding: 90px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2,
.split-grid h2,
.statement-card h2,
.start-card h2 {
  font-size: clamp(2.05rem, 4.2vw, 3.7rem);
  line-height: 1;
  letter-spacing: -0.07em;
  margin-bottom: 18px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.steps article {
  border-radius: 28px;
  padding: 30px;
  min-height: 260px;
}

.steps span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--gold-light);
  font-weight: 950;
}

.steps h3 {
  font-size: 1.34rem;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.steps p,
details p,
.form-note {
  color: var(--muted);
}

.split {
  background: var(--black-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split-grid,
.start-card {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 54px;
  align-items: start;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.service-list div {
  border-radius: 18px;
  padding: 18px;
  font-weight: 760;
}

.statement-card {
  text-align: center;
  border-radius: 40px;
  padding: clamp(34px, 7vw, 72px);
}

.statement-card p {
  margin-left: auto;
  margin-right: auto;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

details {
  border-radius: 20px;
  padding: 19px 22px;
}

summary {
  cursor: pointer;
  font-weight: 850;
}

details p {
  margin: 14px 0 0;
}

.start-card {
  border-radius: 40px;
  padding: clamp(28px, 6vw, 54px);
}

.lead-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 760;
}

input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.065);
  color: var(--text);
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(212, 176, 106, 0.28);
  border-color: rgba(212, 176, 106, 0.8);
}

input::placeholder,
textarea::placeholder {
  color: rgba(247, 242, 234, 0.35);
}

.form-note {
  margin: 0;
  font-size: 0.88rem;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  gap: 20px;
}

.footer p {
  margin: 0;
}

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

  .nav-links {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(8, 8, 8, 0.96);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 18px;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-grid,
  .split-grid,
  .start-card {
    grid-template-columns: 1fr;
  }

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

  .service-list {
    grid-template-columns: 1fr;
  }

  .splash-logo {
    width: 108px;
    height: 108px;
  }

  .car-outline {
    width: 138vw;
    transform: translate(-7%, -20px);
    opacity: 0.82;
  }
}

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

  .splash-content {
    transform: translateY(-40px);
  }

  .splash-logo {
    width: 98px;
    height: 98px;
    border-radius: 0;
  }

  .splash h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .enter-button {
    bottom: max(28px, env(safe-area-inset-bottom));
  }

  .info-hero {
    padding: 76px 0 60px;
  }

  .hero-actions .button {
    width: 100%;
  }

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


/* V6 CODED SPLASH — no screenshot background */

.coded-splash-page {
  background: #030303;
  overflow: hidden;
}

.coded-splash {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 226, 157, 0.055), transparent 24%),
    linear-gradient(180deg, #020202 0%, #060504 52%, #020202 100%);
  isolation: isolate;
}

.coded-splash::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 0%, transparent 46%, rgba(0,0,0,.55) 100%),
    linear-gradient(90deg, rgba(0,0,0,.9), transparent 18%, transparent 82%, rgba(0,0,0,.9));
  pointer-events: none;
  z-index: 5;
}

.diamond-glow {
  position: absolute;
  left: 50%;
  top: 54%;
  width: 118vw;
  height: 31vh;
  transform: translate(-50%, -50%) rotate(0deg);
  background:
    linear-gradient(90deg, transparent 0%, rgba(212, 160, 70, .16) 18%, rgba(255, 221, 143, .38) 50%, rgba(212, 160, 70, .16) 82%, transparent 100%);
  clip-path: polygon(0 50%, 13% 33%, 50% 0%, 87% 33%, 100% 50%, 87% 67%, 50% 100%, 13% 67%);
  filter: blur(24px);
  opacity: .85;
  z-index: 0;
}

.diamond-glow::after {
  content: "";
  position: absolute;
  inset: 44% 0;
  background: linear-gradient(90deg, transparent, rgba(255, 232, 169, .62), transparent);
  filter: blur(7px);
}

.splash-brand {
  position: absolute;
  top: clamp(54px, 8vh, 92px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  width: min(720px, calc(100% - 34px));
}

.keyside-mark {
  width: clamp(128px, 12.6vw, 190px);
  height: auto;
  display: block;
  margin: 0 auto 18px;
}

.splash-brand h1 {
  margin: 0;
  color: #f1d083;
  font-size: clamp(2.3rem, 5vw, 4.7rem);
  line-height: 1;
  font-weight: 400;
  letter-spacing: clamp(.36em, 1.1vw, .56em);
  padding-left: clamp(.36em, 1.1vw, .56em);
  text-shadow: 0 0 20px rgba(224, 177, 91, .18);
}

.splash-brand p {
  margin: 20px 0 0;
  color: rgba(247, 229, 190, .78);
  font-size: clamp(.74rem, 1vw, .95rem);
  font-weight: 400;
  letter-spacing: .42em;
  padding-left: .42em;
}

.sports-car-stage {
  position: absolute;
  left: 50%;
  top: 62%;
  width: min(1160px, 112vw);
  transform: translate(-50%, -50%);
  z-index: 4;
  pointer-events: none;
}

.sports-car {
  width: 100%;
  display: block;
  opacity: .92;
  filter: drop-shadow(0 0 20px rgba(214, 168, 78, .07));
}

.splash-enter {
  position: fixed;
  left: 50%;
  bottom: clamp(38px, 7vh, 76px);
  transform: translateX(-50%);
  z-index: 20;
  width: min(312px, calc(100vw - 54px));
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  border: 1px solid rgba(224, 177, 91, .72);
  border-radius: 4px;
  background: rgba(0,0,0,.28);
  color: #e8bf69;
  font-size: .94rem;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  backdrop-filter: blur(5px);
  box-shadow:
    0 0 26px rgba(224, 177, 91, .08),
    inset 0 0 20px rgba(224, 177, 91, .025);
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.splash-enter span:first-child {
  transform: translateX(.17em);
}

.splash-enter span:last-child {
  font-size: 1.65rem;
  line-height: 1;
  letter-spacing: 0;
  transform: translateY(-1px);
}

.splash-enter:hover {
  transform: translateX(-50%) translateY(-2px);
  background: rgba(224,177,91,.09);
  border-color: rgba(247,216,145,.95);
  box-shadow:
    0 0 36px rgba(224, 177, 91, .18),
    inset 0 0 26px rgba(224, 177, 91, .04);
}

@media (max-width: 820px) {
  .splash-brand {
    top: clamp(44px, 7vh, 70px);
  }

  .keyside-mark {
    width: clamp(116px, 26vw, 158px);
  }

  .sports-car-stage {
    width: 158vw;
    left: 58%;
    top: 61%;
  }

  .diamond-glow {
    width: 145vw;
    height: 27vh;
    top: 54%;
  }
}

@media (max-width: 560px) {
  .splash-brand h1 {
    font-size: 2.45rem;
    letter-spacing: .34em;
    padding-left: .34em;
  }

  .splash-brand p {
    font-size: .65rem;
    letter-spacing: .28em;
    padding-left: .28em;
    margin-top: 16px;
  }

  .keyside-mark {
    width: 112px;
    margin-bottom: 14px;
  }

  .sports-car-stage {
    width: 190vw;
    left: 68%;
    top: 62%;
  }

  .splash-enter {
    height: 54px;
    bottom: max(30px, env(safe-area-inset-bottom));
    font-size: .82rem;
    gap: 24px;
  }
}


/* OPTION 1 FINAL LANDING — cleaned image asset + functional coded link */

.option1-body {
  margin: 0;
  background: #020202;
  overflow: hidden;
}

.option1-landing {
  min-height: 100svh;
  width: 100vw;
  position: relative;
  overflow: hidden;
  background: #020202;
  display: grid;
  place-items: center;
}

.option1-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #020202;
  user-select: none;
  pointer-events: none;
}

/* Invisible but real clickable Enter area aligned to the button in the image */
.option1-enter-hitbox {
  position: fixed;
  left: 50%;
  bottom: 6.25vh;
  transform: translateX(-50%);
  width: min(330px, 25vw);
  min-width: 240px;
  height: 66px;
  z-index: 20;
  border-radius: 5px;
}

.option1-enter-hitbox:focus-visible {
  outline: 2px solid rgba(232, 191, 105, 0.95);
  outline-offset: 6px;
}

@media (max-width: 820px) {
  .option1-art {
    object-fit: contain;
  }

  .option1-enter-hitbox {
    width: min(300px, 72vw);
    height: 58px;
    bottom: 6vh;
  }
}

@media (max-width: 520px) {
  .option1-enter-hitbox {
    width: min(260px, 72vw);
    height: 54px;
    bottom: max(26px, env(safe-area-inset-bottom));
  }
}


/* RESPONSIVE LAYERED LANDING — no whole-image zoom */

.layered-body {
  margin: 0;
  background: #020202;
  overflow: hidden;
}

.layered-landing {
  min-height: 100svh;
  width: 100vw;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 15%, rgba(255, 229, 170, 0.035), transparent 24%),
    linear-gradient(180deg, #020202 0%, #050403 52%, #020202 100%);
}

.layered-landing::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 8;
  background:
    radial-gradient(ellipse at center, transparent 0%, transparent 48%, rgba(0,0,0,.68) 100%),
    linear-gradient(90deg, rgba(0,0,0,.96), transparent 18%, transparent 82%, rgba(0,0,0,.96)),
    linear-gradient(180deg, rgba(0,0,0,.05), transparent 45%, rgba(0,0,0,.66));
}

.layered-glow {
  position: absolute;
  left: 50%;
  top: 55%;
  width: 124vw;
  height: 36vh;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: .76;
  filter: blur(28px);
  background:
    linear-gradient(90deg, transparent 0%, rgba(142,83,19,.16) 16%, rgba(255,221,143,.42) 50%, rgba(142,83,19,.16) 84%, transparent 100%);
  clip-path: polygon(0 50%, 13% 31%, 50% 0%, 87% 31%, 100% 50%, 87% 69%, 50% 100%, 13% 69%);
}

.layered-brand {
  position: absolute;
  top: clamp(34px, 5.8vh, 72px);
  left: 50%;
  transform: translateX(-50%);
  width: min(760px, calc(100% - 36px));
  text-align: center;
  z-index: 20;
}

.layered-logo {
  width: clamp(128px, 11.8vw, 178px);
  display: block;
  margin: 0 auto 9px;
}

.layered-brand h1 {
  margin: 0;
  color: #efcf80;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.95rem, 5.05vw, 5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: clamp(.30em, .95vw, .56em);
  padding-left: clamp(.30em, .95vw, .56em);
  text-shadow: 0 0 22px rgba(214,168,78,.24), 0 16px 26px rgba(0,0,0,.72);
}

.layered-brand p {
  margin: 15px 0 0;
  color: rgba(247, 230, 192, .80);
  font-size: clamp(.68rem, .93vw, .92rem);
  font-weight: 400;
  letter-spacing: .42em;
  padding-left: .42em;
  text-shadow: 0 0 16px rgba(214,168,78,.16);
}

.car-layer {
  position: absolute;
  z-index: 5;
  width: min(1180px, 96vw);
  height: auto;
  left: 50%;
  top: 59%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.layered-enter {
  position: fixed;
  left: 50%;
  bottom: clamp(36px, 6.6vh, 72px);
  transform: translateX(-50%);
  z-index: 30;
  width: min(318px, calc(100vw - 54px));
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  border: 1px solid rgba(224,177,91,.74);
  border-radius: 4px;
  background: rgba(0,0,0,.28);
  color: #e8bf69;
  font-size: .94rem;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  backdrop-filter: blur(5px);
  box-shadow: 0 0 26px rgba(224,177,91,.09), inset 0 0 20px rgba(224,177,91,.03);
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.layered-enter span:first-child {
  transform: translateX(.17em);
}

.layered-enter span:last-child {
  font-size: 1.65rem;
  line-height: 1;
  letter-spacing: 0;
  transform: translateY(-1px);
}

.layered-enter:hover {
  transform: translateX(-50%) translateY(-2px);
  background: rgba(224,177,91,.09);
  border-color: rgba(247,216,145,.95);
  box-shadow: 0 0 36px rgba(224,177,91,.18), inset 0 0 26px rgba(224,177,91,.04);
}

@media (min-width: 1280px) {
  .car-layer {
    width: min(1280px, 92vw);
    top: 60%;
  }
}

@media (max-width: 900px) {
  .layered-brand {
    top: 42px;
  }

  .layered-logo {
    width: 126px;
  }

  .layered-brand h1 {
    font-size: 3.05rem;
    letter-spacing: .34em;
    padding-left: .34em;
  }

  .layered-brand p {
    font-size: .68rem;
    letter-spacing: .29em;
    padding-left: .29em;
    margin-top: 12px;
  }

  .car-layer {
    width: 142vw;
    left: 60%;
    top: 59%;
  }

  .layered-glow {
    width: 150vw;
    height: 32vh;
  }
}

@media (max-width: 540px) {
  .layered-brand {
    top: 34px;
  }

  .layered-logo {
    width: 112px;
  }

  .layered-brand h1 {
    font-size: 2.4rem;
    letter-spacing: .31em;
    padding-left: .31em;
  }

  .layered-brand p {
    font-size: .59rem;
    letter-spacing: .24em;
    padding-left: .24em;
  }

  .car-layer {
    width: 178vw;
    left: 68%;
    top: 59%;
  }

  .layered-enter {
    height: 54px;
    bottom: max(28px, env(safe-area-inset-bottom));
    font-size: .82rem;
    gap: 24px;
  }
}


/* V2 glow + badge cleanup refinements */

.layered-glow {
  left: 50% !important;
  top: 55% !important;
  width: 156vw !important;
  height: 34vh !important;
  transform: translate(-50%, -50%) !important;
  opacity: 0.82 !important;
  filter: blur(30px) !important;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(112, 61, 12, 0.08) 7%,
      rgba(176, 106, 27, 0.20) 22%,
      rgba(255, 221, 143, 0.46) 50%,
      rgba(176, 106, 27, 0.20) 78%,
      rgba(112, 61, 12, 0.08) 93%,
      transparent 100%
    ) !important;
  clip-path: polygon(0 50%, 10% 34%, 50% 0%, 90% 34%, 100% 50%, 90% 66%, 50% 100%, 10% 66%) !important;
}

.car-layer {
  filter: drop-shadow(0 0 18px rgba(214,168,78,.05));
}

@media (max-width: 900px) {
  .layered-glow {
    width: 180vw !important;
    height: 30vh !important;
    left: 50% !important;
  }
}

@media (max-width: 540px) {
  .layered-glow {
    width: 205vw !important;
    height: 28vh !important;
    left: 50% !important;
  }
}
