/* PunkiRadio coming-soon static home */

:root {
  --red: #e30d10;
  --ink: #090909;
  --paper: #f8f7f4;
  --max: 1672px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  background: var(--paper);
}

body {
  color: var(--ink);
  font-family: "Courier New", Courier, ui-monospace, monospace;
}

img {
  display: block;
  max-width: 100%;
}

.launch {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 41% 47%, rgba(120, 120, 120, 0.08), transparent 28%),
    #faf9f6;
}

.launch__photo {
  position: absolute;
  z-index: -4;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.launch__wash {
  position: absolute;
  z-index: -3;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0%,
      rgba(255, 255, 255, 0.13) 36%,
      rgba(255, 255, 255, 0.02) 58%,
      rgba(255, 255, 255, 0) 100%
    );
}

.launch__ink {
  position: absolute;
  z-index: -1;
  width: 110px;
  aspect-ratio: 1;
  opacity: 0.95;
  filter: contrast(1.4);
  pointer-events: none;
}

.launch__ink::before,
.launch__ink::after {
  content: "";
  position: absolute;
  inset: 42%;
  border-radius: 50%;
  background: #050505;
  box-shadow:
    -25px -12px 0 -8px #050505,
    20px -23px 0 -10px #050505,
    34px 4px 0 -14px #050505,
    -30px 24px 0 -14px #050505,
    7px 37px 0 -15px #050505;
}

.launch__ink::after {
  inset: 31%;
  transform: rotate(26deg);
  background: transparent;
  box-shadow:
    -53px 3px 0 -18px #050505,
    51px 15px 0 -20px #050505,
    -8px -54px 0 -19px #050505,
    15px 58px 0 -21px #050505;
}

.launch__ink--top {
  top: -28px;
  left: 40%;
}

.launch__ink--bottom {
  right: -24px;
  bottom: -28px;
  transform: scale(1.35);
}

.launch__layout {
  position: relative;
  width: min(100%, var(--max));
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(34px, 4vw, 74px) clamp(36px, 5vw, 86px);
}

.brand {
  width: clamp(96px, 8.5vw, 138px);
}

.brand img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.launch__copy {
  position: absolute;
  left: clamp(36px, 5vw, 86px);
  top: 23%;
  width: min(54vw, 790px);
}

.launch__label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-left: 12%;
  transform: rotate(-1.4deg);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(13px, 1.25vw, 20px);
  font-weight: 900;
  letter-spacing: 0.055em;
}

.launch__label span {
  display: inline-block;
  padding: 10px 18px 8px;
  border: 2px solid var(--red);
  clip-path: polygon(2% 4%, 96% 0, 100% 50%, 97% 96%, 4% 100%, 0 57%);
}

.launch__label b {
  color: var(--red);
  font-size: 1.75em;
  line-height: 1;
  font-style: normal;
}

.launch__title {
  margin: clamp(18px, 2.5vh, 34px) 0 6px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(72px, 9.2vw, 154px);
  font-weight: 900;
  line-height: 0.87;
  letter-spacing: -0.045em;
  white-space: nowrap;
  text-transform: none;
  filter: contrast(1.12);
}

.launch__title span,
.launch__title strong {
  display: inline;
}

.launch__title strong {
  color: var(--red);
  font-weight: inherit;
}

.launch__headline {
  margin: 26px 0 8px;
  font-size: clamp(21px, 2vw, 34px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.launch__underline {
  display: block;
  width: 72px;
  height: 5px;
  margin-top: 12px;
  background: var(--red);
  transform: rotate(-1.4deg);
  clip-path: polygon(0 20%, 100% 0, 96% 78%, 5% 100%);
}

.launch__description {
  margin: clamp(24px, 3.5vh, 44px) 0 0;
  font-size: clamp(15px, 1.25vw, 21px);
  font-weight: 700;
  line-height: 1.55;
}

.launch__coming {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-width: min(360px, 86vw);
  margin-top: clamp(28px, 4vh, 50px);
  padding: 20px 34px;
  color: #fff;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(255, 255, 255, 0.04)),
    var(--red);
  border: 2px solid #c60609;
  box-shadow:
    -5px 5px 0 #0b0b0b,
    inset 0 0 0 2px rgba(255, 255, 255, 0.16);
  transform: rotate(-0.3deg);
  font-family: Arial, Helvetica, sans-serif;
}

.launch__coming span {
  font-size: 2.1rem;
  line-height: 1;
}

.launch__coming strong {
  font-size: clamp(19px, 1.8vw, 29px);
  letter-spacing: 0.035em;
}

.launch__ladybug {
  position: absolute;
  right: clamp(24px, 5vw, 74px);
  bottom: clamp(58px, 7vh, 100px);
  width: clamp(118px, 11vw, 184px);
  height: auto;
  border-radius: 50%;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 7px 3px rgba(0, 0, 0, 0.2));
}

/* Desktop composition closer to the supplied 1672×941 mockup. */
@media (min-width: 901px) and (max-aspect-ratio: 16/8) {
  .launch__photo {
    object-position: center top;
  }
}

/* Tablet and mobile */
@media (max-width: 900px) {
  .launch {
    min-height: 100svh;
  }

  .launch__photo {
    width: 175%;
    max-width: none;
    height: auto;
    min-height: 0;
    inset: 0 auto auto -69%;
    object-fit: initial;
    object-position: initial;
  }

  .launch__wash {
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.03) 0%,
        rgba(255, 255, 255, 0.08) 37%,
        rgba(255, 255, 255, 0.82) 58%,
        #faf9f6 73%
      ),
      linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.92) 0%,
        rgba(255, 255, 255, 0.52) 45%,
        rgba(255, 255, 255, 0.03) 84%
      );
  }

  .launch__layout {
    padding:
      max(38px, env(safe-area-inset-top))
      28px
      max(38px, env(safe-area-inset-bottom));
  }

  .brand {
    width: clamp(94px, 27vw, 132px);
    margin-left: 4%;
  }

  .launch__copy {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    padding-top: clamp(105px, 20vh, 205px);
  }

  .launch__label {
    margin-left: 1%;
    gap: 9px;
    font-size: clamp(12px, 3.6vw, 17px);
  }

  .launch__label span {
    padding: 8px 12px 7px;
  }

  .launch__title {
    margin-top: 24px;
    font-size: clamp(58px, 18vw, 102px);
    line-height: 0.92;
    white-space: nowrap;
  }

  .launch__headline {
    max-width: 84%;
    margin-top: 20px;
    font-size: clamp(22px, 6.8vw, 34px);
    line-height: 1.24;
  }

  .launch__description {
    width: 94%;
    margin-top: 26px;
    font-size: clamp(15px, 4.35vw, 21px);
    line-height: 1.55;
  }

  .launch__coming {
    display: flex;
    width: 100%;
    min-width: 0;
    margin-top: 48px;
    padding: 22px 18px;
  }

  .launch__coming strong {
    font-size: clamp(20px, 6vw, 34px);
  }

  .launch__ladybug {
    right: 5%;
    top: clamp(460px, 54vh, 610px);
    bottom: auto;
    width: clamp(100px, 30vw, 150px);
  }

  .launch__ink--top {
    left: 45%;
    transform: scale(0.82);
  }

  .launch__ink--bottom {
    bottom: -8px;
  }
}

@media (max-width: 560px) {
  .launch__layout {
    padding-left: 22px;
    padding-right: 22px;
  }

  .launch__photo {
    width: 210%;
    left: -98%;
  }

  .launch__copy {
    padding-top: clamp(95px, 18vh, 160px);
  }

  .launch__title {
    font-size: clamp(56px, 17vw, 82px);
  }

  .launch__headline {
    max-width: 78%;
  }

  .launch__description br {
    display: none;
  }

  .launch__ladybug {
    top: clamp(445px, 55vh, 565px);
  }
}

@media (max-height: 650px) and (min-width: 901px) {
  .launch__copy {
    top: 18%;
  }

  .launch__description {
    margin-top: 18px;
  }

  .launch__coming {
    margin-top: 22px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
