* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --wall-main: #454545;
  --wall-dark: #3d3d3d;
  --line: rgba(0, 0, 0, 0.16);
  --blue-1: #1e789f;
  --blue-2: #1c95c8;
  --blue-3: #19ace6;
  --red: #ff1f28;
  --white: #f0f0f0;
  --black: #0c0c0c;
  --hazard-blue: #3b7ea2;
  --hazard-black: #000000;
  --stripe-height: 26px;
}

html,
body {
  min-height: 100%;
}

body {
  background: #111;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

.page-wrapper {
  min-height: 100vh;
  position: relative;
  background: #111;
  padding-top: var(--stripe-height);
  padding-bottom: var(--stripe-height);
  overflow: hidden;
}

.page-wrapper::before,
.page-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--stripe-height);
  z-index: 5;
  pointer-events: none;
  background: repeating-linear-gradient(
    -45deg,
    var(--hazard-blue) 0 22px,
    var(--hazard-blue) 22px 44px,
    var(--hazard-black) 44px 66px,
    var(--hazard-black) 66px 88px
  );
}

.page-wrapper::before {
  top: 0;
}

.page-wrapper::after {
  bottom: 0;
}

.construction-board {
  width: 100%;
  min-height: calc(100vh - (var(--stripe-height) * 2));
  position: relative;
  background: linear-gradient(180deg, #494949 0%, #414141 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 30px 90px;
}

.brick-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.08));
  background-size:
    100% 16px,
    32px 16px,
    100% 100%;
  opacity: 1;
}

.dark-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, transparent 0 40%, rgba(0,0,0,0.18) 75%, rgba(0,0,0,0.3) 100%);
  pointer-events: none;
}

.content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1500px;
  text-align: center;
}

.brand-row {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.brand-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: nowrap;
  max-width: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: nowrap;
  flex-shrink: 0;
}

.brand-icon {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2px;
  flex-shrink: 0;
}

.brand-icon span {
  width: 130px;
  height: 38px;
  display: block;
  clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
  border-radius: 0 0 0 22px;
}

.brand-icon span:nth-child(1) {
  background: var(--blue-1);
}

.brand-icon span:nth-child(2) {
  background: var(--blue-2);
  margin-top: -2px;
}

.brand-icon span:nth-child(3) {
  background: var(--blue-3);
  margin-top: -2px;
}

.brand-sos {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(84px, 9vw, 150px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -2px;
  color: var(--red);
  white-space: nowrap;
}

.brand-side-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}

.brand-side-text span {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 2vw, 54px);
  font-weight: 400;
  letter-spacing: 12px;
  line-height: 1;
  color: #0f0f0f;
  white-space: nowrap;
}

.headline {
  font-family: 'Anton', sans-serif;
  font-size: clamp(54px, 7.3vw, 138px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: 2px;
  color: #f1f1f1;
  margin-bottom: 12px;
  text-transform: uppercase;
  position: relative;
  text-shadow: 0 2px 0 rgba(0,0,0,0.22);
}

.headline::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 30%, rgba(70,70,70,0.65) 0 1px, transparent 2px),
    radial-gradient(circle at 15% 70%, rgba(70,70,70,0.6) 0 1.2px, transparent 2.2px),
    radial-gradient(circle at 28% 35%, rgba(70,70,70,0.55) 0 1px, transparent 2px),
    radial-gradient(circle at 39% 65%, rgba(70,70,70,0.55) 0 1.2px, transparent 2px),
    radial-gradient(circle at 52% 20%, rgba(70,70,70,0.5) 0 1.4px, transparent 2.2px),
    radial-gradient(circle at 67% 74%, rgba(70,70,70,0.58) 0 1.1px, transparent 2px),
    radial-gradient(circle at 80% 42%, rgba(70,70,70,0.52) 0 1.2px, transparent 2px),
    radial-gradient(circle at 92% 62%, rgba(70,70,70,0.65) 0 1.3px, transparent 2.2px);
  background-size: 100% 100%;
  mix-blend-mode: multiply;
  opacity: 0.55;
  pointer-events: none;
}

.subheadline {
  font-family: 'Patrick Hand', cursive;
  font-size: clamp(42px, 3.7vw, 86px);
  line-height: 1;
  color: #ededed;
  margin-bottom: 130px;
}

.website {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(20px, 1.9vw, 42px);
  color: #efefef;
  font-weight: 400;
}

.crack {
  position: absolute;
  z-index: 1;
  background: #0a0a0a;
  box-shadow: 0 0 10px rgba(0,0,0,0.35);
}

.crack::before,
.crack::after {
  content: "";
  position: absolute;
  background: #0a0a0a;
}

.crack-left-top {
  width: 110px;
  height: 5px;
  left: 58px;
  top: 325px;
  transform: rotate(70deg);
}

.crack-left-top::before {
  width: 55px;
  height: 4px;
  left: -24px;
  top: 32px;
  transform: rotate(38deg);
}

.crack-left-top::after {
  width: 46px;
  height: 3px;
  left: 22px;
  top: 68px;
  transform: rotate(-42deg);
}

.crack-left-bottom {
  width: 210px;
  height: 6px;
  left: -10px;
  bottom: 160px;
  transform: rotate(66deg);
}

.crack-left-bottom::before {
  width: 80px;
  height: 4px;
  left: 28px;
  top: 48px;
  transform: rotate(-32deg);
}

.crack-left-bottom::after {
  width: 72px;
  height: 4px;
  left: 60px;
  top: 102px;
  transform: rotate(34deg);
}

.crack-right-top {
  width: 95px;
  height: 4px;
  right: 10px;
  top: 62px;
  transform: rotate(-10deg);
}

.crack-right-top::before {
  width: 38px;
  height: 3px;
  right: 6px;
  top: 16px;
  transform: rotate(-26deg);
}

.crack-right-top::after {
  width: 36px;
  height: 3px;
  right: 30px;
  top: 22px;
  transform: rotate(28deg);
}

.crack-right-mid {
  width: 200px;
  height: 6px;
  right: -25px;
  top: 200px;
  transform: rotate(-62deg);
}

.crack-right-mid::before {
  width: 78px;
  height: 4px;
  left: 24px;
  top: 44px;
  transform: rotate(38deg);
}

.crack-right-mid::after {
  width: 66px;
  height: 4px;
  left: 58px;
  top: 94px;
  transform: rotate(-38deg);
}

.crack-right-bottom {
  width: 240px;
  height: 6px;
  right: -28px;
  bottom: 120px;
  transform: rotate(-74deg);
}

.crack-right-bottom::before {
  width: 76px;
  height: 4px;
  left: 38px;
  top: 64px;
  transform: rotate(36deg);
}

.crack-right-bottom::after {
  width: 56px;
  height: 4px;
  left: 84px;
  top: 128px;
  transform: rotate(-30deg);
}

@media (max-width: 1200px) {
  .brand-icon span {
    width: 110px;
    height: 32px;
  }

  .brand-sos {
    font-size: 110px;
  }

  .brand-side-text span {
    font-size: 30px;
    letter-spacing: 9px;
  }

  .subheadline {
    margin-bottom: 100px;
  }
}

@media (max-width: 900px) {
  .construction-board {
    padding: 90px 20px 100px;
  }

  .brand-row {
    margin-bottom: 34px;
  }

  .brand-group {
    gap: 18px;
  }

  .brand-logo {
    gap: 14px;
  }

  .brand-side-text span {
    letter-spacing: 6px;
  }

  .subheadline {
    margin-bottom: 80px;
  }
}

@media (max-width: 768px) {
  :root {
    --stripe-height: 18px;
  }

  .construction-board {
    padding: 80px 16px 82px;
  }

  .brand-group {
    flex-direction: column;
    gap: 12px;
  }

  .brand-side-text {
    align-items: center;
    gap: 6px;
    margin-top: 0;
  }

  .brand-side-text span {
    font-size: 18px;
    letter-spacing: 4px;
  }

  .headline {
    font-size: clamp(40px, 9vw, 68px);
  }

  .subheadline {
    font-size: clamp(30px, 6vw, 48px);
    margin-bottom: 60px;
  }

  .website {
    font-size: 16px;
    word-break: break-word;
  }

  .crack {
    opacity: 0.75;
    transform-origin: center;
  }
}

@media (max-width: 480px) {
  .brand-icon span {
    width: 74px;
    height: 22px;
  }

  .brand-sos {
    font-size: 68px;
  }

  .brand-side-text span {
    font-size: 14px;
    letter-spacing: 3px;
  }

  .headline {
    font-size: 38px;
    line-height: 1;
  }

  .subheadline {
    font-size: 28px;
  }

  .website {
    font-size: 14px;
  }

  .crack-left-top,
  .crack-right-top {
    display: none;
  }
}   