:root {
  --ink: #111922;
  --graphite: #27313b;
  --muted: #777a7c;
  --paper: #f8f7f4;
  --white: #ffffff;
  --gray: #c9c6c1;
  --line: #e3e0db;
  --shadow: 0 26px 70px rgba(17, 25, 34, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(17, 25, 34, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(17, 25, 34, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

.coming-soon {
  display: grid;
  min-height: 100vh;
  padding: clamp(20px, 5vw, 72px);
  place-items: center;
}

.layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
  width: min(100%, 980px);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.logo-panel {
  display: grid;
  min-height: 560px;
  padding: clamp(22px, 4vw, 48px);
  place-items: center;
  background: #fdfcf9;
  border-right: 1px solid var(--line);
}

.logo-panel img {
  display: block;
  width: min(100%, 360px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 7vw, 78px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.1rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

p {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.7;
}

.desk-line {
  display: grid;
  grid-template-columns: 1fr 0.5fr 0.28fr;
  gap: 10px;
  width: min(100%, 420px);
  margin-top: 40px;
}

.desk-line span {
  height: 10px;
  background: var(--ink);
  border-radius: 999px;
}

.desk-line span:nth-child(2) {
  background: var(--gray);
}

.desk-line span:nth-child(3) {
  background: var(--graphite);
}

@media (max-width: 820px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .logo-panel {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .logo-panel img {
    width: min(100%, 260px);
  }
}

@media (max-width: 560px) {
  .coming-soon {
    padding: 14px;
  }

  .content {
    padding: 28px 20px;
  }
}
