:root {
  --axion-pink: #ec008c;
  --axion-plum: #8f0e59;
  --axion-navy: #11195f;
  --paper: #ffffff;
  --ink: #121329;
  --glass: rgba(255, 255, 255, 0.78);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
  font-family: "Montserrat", "Segoe UI Variable", "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--paper);
  background: #0f1727;
}

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

.cover {
  position: relative;
  display: grid;
  min-height: 100svh;
  min-height: 100dvh;
  padding: clamp(14px, 3vw, 34px);
  overflow: hidden;
  isolation: isolate;
}

.photo-bg,
.photo-bg::after {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.photo-bg {
  background: var(--current-bg, url("assets/bg-01.jpeg")) center / cover no-repeat;
  opacity: 0;
  transform: scale(1.01);
  transition: opacity 1.35s ease;
  animation: bgDrift 14s ease-in-out infinite alternate;
  will-change: opacity, transform;
}

.photo-bg.is-active {
  opacity: 1;
}

.photo-bg::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 8, 20, 0.7), rgba(6, 8, 20, 0.04) 45%, rgba(6, 8, 20, 0.42)),
    linear-gradient(0deg, rgba(7, 8, 16, 0.66), rgba(7, 8, 16, 0.06) 56%, rgba(255, 255, 255, 0.04));
}

.aurora {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 30%, rgba(236, 0, 140, 0.44), transparent 25%),
    radial-gradient(circle at 72% 55%, rgba(255, 255, 255, 0.22), transparent 26%),
    linear-gradient(115deg, transparent 42%, rgba(236, 0, 140, 0.38) 47%, transparent 54%);
  mix-blend-mode: screen;
  opacity: 0.78;
  animation: auroraMove 8s ease-in-out infinite alternate;
}

.stage {
  position: relative;
  z-index: 3;
  align-self: center;
  width: min(1180px, 100%);
  height: 100dvh;
  min-height: min(680px, calc(100dvh - clamp(28px, 6vw, 68px)));
  margin: auto;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: clamp(14px, 2.4vw, 28px);
  padding: clamp(112px, 12vw, 165px) clamp(10px, 2vw, 26px) clamp(116px, 10vw, 136px);
  color: var(--paper);
  transform-style: preserve-3d;
  perspective: 1100px;
}

.brand-row {
  position: fixed;
  left: clamp(18px, 3vw, 56px);
  right: clamp(18px, 3vw, 56px);
  top: clamp(14px, 2.2vw, 34px);
  z-index: 5;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(14px, 3vw, 30px);
  pointer-events: none;
}

.axion-logo {
  width: clamp(190px, 22vw, 360px);
  height: auto;
  object-fit: contain;
  opacity: 0.98;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.34));
  transform: translateZ(74px);
}

.axion-mark {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(12px, 2vw, 20px);
  opacity: 0.92;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.34));
  mix-blend-mode: screen;
  transform: translateZ(74px);
}

.axion-symbol {
  position: relative;
  width: clamp(82px, 13vw, 168px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 22%, #ff2aa7, var(--axion-pink) 38%, var(--axion-plum) 78%);
  box-shadow: 0 18px 35px rgba(143, 14, 89, 0.42), inset -18px -24px 45px rgba(62, 0, 48, 0.32);
  overflow: hidden;
}

.axion-symbol::before,
.axion-symbol::after,
.axion-symbol i {
  content: "";
  position: absolute;
  left: -14%;
  width: 128%;
  height: 24%;
  background: var(--paper);
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.16);
}

.axion-symbol::before {
  top: 38%;
  transform: rotate(42deg);
  border-radius: 999px 16px 999px 16px;
}

.axion-symbol::after {
  top: 38%;
  transform: rotate(-42deg);
  border-radius: 16px 999px 16px 999px;
}

.axion-symbol i {
  top: 38%;
  left: 11%;
  width: 78%;
  transform: rotate(42deg);
  opacity: 0.7;
  filter: blur(1px);
}

.axion-word {
  display: grid;
  line-height: 0.82;
  color: var(--paper);
  letter-spacing: 0;
  text-transform: lowercase;
}

.axion-word strong {
  font-size: clamp(42px, 9.2vw, 122px);
  line-height: 0.82;
  letter-spacing: 0;
  text-shadow: 0 16px 38px rgba(17, 25, 95, 0.6);
}

.axion-word span {
  justify-self: end;
  font-size: clamp(22px, 4.4vw, 58px);
  font-weight: 800;
  line-height: 0.95;
}

.bebe-logo {
  width: clamp(70px, 10vw, 122px);
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 0;
  opacity: 0.86;
  mix-blend-mode: normal;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.42));
  transform: translateZ(78px) rotate(2deg);
}

.hero-copy {
  display: grid;
  align-content: end;
  gap: clamp(12px, 2vw, 22px);
}

.title-block {
  align-self: end;
  transform: translateZ(44px);
}

.eyebrow {
  width: fit-content;
  margin: 0;
  color: var(--paper);
  font-size: clamp(12px, 1.3vw, 15px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  text-shadow: 0 9px 20px rgba(0, 0, 0, 0.72), 0 0 22px rgba(236, 0, 140, 0.9);
  transform: translateZ(68px);
}

h1 {
  max-width: 11ch;
  margin: 0;
  color: var(--paper);
  font-size: clamp(42px, 8.6vw, 112px);
  line-height: 0.86;
  letter-spacing: 0;
  text-shadow: 0 22px 44px rgba(0, 0, 0, 0.7), 0 0 22px rgba(236, 0, 140, 0.3);
}

.place {
  margin: clamp(10px, 2vw, 18px) 0 0;
  color: var(--paper);
  font-size: clamp(15px, 2vw, 25px);
  font-weight: 800;
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.65);
}

.address {
  margin: 4px 0 0;
  color: var(--paper);
  font-size: clamp(13px, 1.55vw, 20px);
  font-weight: 800;
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.65);
}

.fuel-list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 1.7vw, 22px);
  transform: translateZ(84px);
}

.fuel-list p {
  display: grid;
  gap: 2px;
  min-width: min(210px, 46%);
  margin: 0;
  padding-block: 8px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.58);
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.7);
}

.fuel-list span {
  color: #ff42b9;
  font-weight: 900;
  font-size: 13px;
}

.fuel-list strong {
  color: var(--paper);
  font-size: clamp(15px, 1.7vw, 20px);
}

.contact-bubble {
  position: fixed;
  right: clamp(82px, 7.8vw, 108px);
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 80;
  display: grid;
  justify-items: end;
  gap: 4px;
  max-width: min(420px, calc(100vw - 128px));
  text-align: right;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.75);
  pointer-events: auto;
}

.contact-bubble a,
.contact-bubble span {
  color: var(--paper);
  font-size: clamp(13px, 1.22vw, 17px);
  font-weight: 900;
  line-height: 1.1;
}

.contact-bubble span {
  opacity: 0.96;
}

.credits {
  position: fixed;
  left: 6px;
  bottom: 4px;
  z-index: 80;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(7px, 0.9vw, 10px);
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 6px 14px rgba(0, 0, 0, 0.72);
}

.whatsapp-float {
  position: fixed;
  right: clamp(8px, 1.7vw, 16px);
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(50px, 6vw, 62px);
  height: clamp(50px, 6vw, 62px);
  padding: 0;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, #21d366, #0aa545);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35), 0 0 26px rgba(33, 211, 102, 0.42);
  transform: translateZ(120px);
  animation: whatsappPulse 2.8s ease-in-out infinite;
  pointer-events: auto;
}

.whatsapp-float svg {
  width: clamp(30px, 3.4vw, 36px);
  height: clamp(30px, 3.4vw, 36px);
  fill: currentColor;
}

@keyframes bgDrift {
  from {
    transform: scale(1.01) translate3d(-0.45%, -0.3%, 0);
  }
  to {
    transform: scale(1.035) translate3d(0.45%, 0.25%, 0);
  }
}

@keyframes auroraMove {
  from {
    transform: translate3d(-1%, 0, 0) rotate(-1deg);
  }
  to {
    transform: translate3d(1.2%, -1%, 0) rotate(1deg);
  }
}

@keyframes whatsappPulse {
  0%,
  100% {
    transform: translate3d(0, 0, 120px) scale(1);
  }
  50% {
    transform: translate3d(0, -4px, 120px) scale(1.035);
  }
}

@media (max-width: 820px) {
  .cover {
    padding: 12px;
  }

  .stage {
    min-height: calc(100svh - 24px);
    gap: 10px;
    padding: 112px 14px 110px;
  }

  .brand-row {
    align-items: center;
  }

  .title-block {
    align-self: start;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(36px, 12vw, 68px);
  }

  .fuel-list {
    gap: 8px 16px;
  }

  .fuel-list strong {
    font-size: 14px;
  }

}

@media (max-width: 500px) {
  .cover {
    min-height: 100svh;
    min-height: 100dvh;
    padding: 0;
  }

  .photo-bg {
    background-position: 52% center;
  }

  .aurora {
    opacity: 0.62;
  }

  .stage {
    height: 100dvh;
    min-height: 100dvh;
    gap: 5px;
    padding: 82px 10px max(96px, env(safe-area-inset-bottom));
  }

  .brand-row {
    left: 10px;
    right: 10px;
    top: 10px;
  }

  .axion-mark {
    gap: 8px;
  }

  .axion-logo {
    width: 145px;
  }

  .axion-symbol {
    width: 50px;
  }

  .axion-word strong {
    font-size: 31px;
  }

  .axion-word span {
    font-size: 17px;
  }

  .bebe-logo {
    width: 48px;
  }

  .hero-copy {
    align-content: center;
    gap: 5px;
  }

  .eyebrow {
    margin-bottom: 3px;
    font-size: 10px;
  }

  h1 {
    font-size: clamp(29px, 10.9vw, 43px);
    line-height: 0.9;
  }

  .place {
    margin-top: 6px;
    font-size: 10.8px;
  }

  .address {
    margin-top: 2px;
    font-size: 10.4px;
  }

  .fuel-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px 12px;
  }

  .fuel-list p {
    min-width: 0;
    padding-block: 4px;
  }

  .fuel-list span {
    font-size: 11px;
  }

  .fuel-list strong {
    font-size: 12.5px;
    line-height: 1.1;
  }

  .contact-bubble {
    right: 58px;
    bottom: max(15px, env(safe-area-inset-bottom));
    max-width: calc(100vw - 76px);
  }

  .contact-bubble a,
  .contact-bubble span {
    font-size: 9.4px;
    line-height: 1.05;
  }

  .credits {
    left: 3px;
    bottom: 2px;
    max-width: 230px;
    font-size: 6.6px;
  }

  .whatsapp-float {
    right: 6px;
    bottom: max(12px, env(safe-area-inset-bottom));
    width: 48px;
    height: 48px;
    transform: none;
    animation-name: whatsappPulseFlat;
  }

  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 500px) and (max-height: 700px) {
  .stage {
    gap: 3px;
    padding: 70px 9px max(88px, env(safe-area-inset-bottom));
  }

  .axion-symbol {
    width: 44px;
  }

  .axion-logo {
    width: 126px;
  }

  .axion-word strong {
    font-size: 28px;
  }

  .axion-word span {
    font-size: 15px;
  }

  .bebe-logo {
    width: 43px;
  }

  .hero-copy {
    gap: 5px;
  }

  .eyebrow {
    font-size: 9px;
  }

  h1 {
    font-size: clamp(27px, 10.2vw, 38px);
  }

  .place {
    margin-top: 4px;
    font-size: 9.8px;
  }

  .address {
    font-size: 9.4px;
  }

  .fuel-list {
    gap: 3px 10px;
  }

  .fuel-list p {
    padding-block: 3px;
  }

  .fuel-list span {
    font-size: 10px;
  }

  .fuel-list strong {
    font-size: 11.5px;
  }

  .contact-bubble a,
  .contact-bubble span {
    font-size: 8.4px;
  }

  .credits {
    bottom: 1px;
    font-size: 6px;
  }

  .whatsapp-float {
    width: 44px;
    height: 44px;
  }
}

@keyframes whatsappPulseFlat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-4px) scale(1.035);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
