/* ─────────────────────────────────────────
   BPT.aero — Coming Soon
   Responsive stylesheet (desktop + mobile)
   ───────────────────────────────────────── */

/* ---------- Reset / Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  overflow: hidden;
  height: 100dvh; /* dynamic viewport height — respects mobile browser chrome */
}

/* ---------- Screen wrapper ---------- */
.screen {
  background: linear-gradient(
    125.99deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 248, 238, 1) 100%
  );
  width: 100%;
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

/* ---------- Decorative background oval (mobile only) ---------- */
/*
   border-image breaks border-radius, so we use a plain border on a circle.
   The ring effect = thick semi-transparent border, transparent background.
*/
.oval-bg {
  display: none; /* hidden on desktop, shown via media query below */
  position: absolute;
  border-radius: 50%;
  width: 110vw;
  height: 110vw;
  left: -70vw;
  bottom: -55vw;
  pointer-events: none;
  border: 18vw solid rgba(145, 124, 103, 0.15);
  background: transparent;
}

/* ---------- Main content card ---------- */
.frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 50px;
  position: relative;
  z-index: 1;
  width: min(720px, 90vw);
}

/* ---------- Crane image ---------- */
.image {
  flex-shrink: 0;
  width: 260px;
  height: 260px;
  position: relative;
  aspect-ratio: 1;
}

.image2 {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.imagelogo {
  display: block;
  height: 48px;
  width: auto;
}

/* ---------- Text block ---------- */
.text-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.frame-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.heading {
  color: #2c181d;
  text-align: center;
  font-family: "Work Sans", sans-serif;
  font-size: 26px;
  font-weight: 700;
  align-self: stretch;
}

.subheading {
  color: #2c181d;
  text-align: center;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  opacity: 0.6;
  align-self: stretch;
}

/* ---------- CTA button ---------- */
.btn-wrapper {
  background: #661327;
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-wrapper:hover {
  background: #7d1831;
  transform: translateY(-1px);
}

.btn-wrapper:active {
  transform: translateY(0);
}

.btn-label {
  color: #ffffff;
  text-align: center;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  width: 160px;
}

/* ---------- Decorative large SVG (desktop only) ---------- */
.image-1 {
  width: clamp(300px, 45vw, 640px);
  height: auto;
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
}

/* ═══════════════════════════════════════
   MOBILE  (≤ 480 px)
   ═══════════════════════════════════════ */
@media (max-width: 480px) {
  .screen {
    padding: 40px 30px;
    align-items: center;
  }

  .oval-bg {
    display: block;
  }

  .image-1 {
    display: none;
  }

  .frame {
    gap: 30px;
    width: 100%;
  }

  .image {
    width: 200px;
    height: 200px;
  }

  .heading,
  .subheading {
    width: 100%;
    align-self: unset;
  }

  .btn-wrapper {
    width: 100%;
  }

  .btn-label {
    width: auto;
  }
}

/* ═══════════════════════════════════════
   TABLET  (481 px – 1023 px)
   Graceful in-between state
   ═══════════════════════════════════════ */
@media (min-width: 481px) and (max-width: 1023px) {
  .frame {
    width: min(500px, 88vw);
    gap: 40px;
  }

  .image {
    width: 220px;
    height: 220px;
  }

  /* Partially show the big decorative SVG, scaled down */
  .image-1 {
    width: 700px;
    height: auto;
    left: -300px;
    bottom: -300px;
  }
}
