/* Eleven Ventures, Meridian direction. Coming-soon page.
   Palette: Paper #FAFAF8, Carbon #0F0F0E, Cobalt #2438E8.
   Type: Schibsted Grotesk only. 500 display at tight tracking, 400 body. */

:root {
  --paper: #FAFAF8;
  --carbon: #0F0F0E;
  --cobalt: #2438E8;

  --ink: var(--carbon);
  --ink-65: rgba(15, 15, 14, .68);
  --ink-50: rgba(15, 15, 14, .55);
  --hairline: rgba(15, 15, 14, .14);
  --surface: var(--paper);

  --shell-max: 1280px;
  --shell-pad: clamp(20px, 4.5vw, 56px);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: 'Schibsted Grotesk', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, p { margin: 0; }

::selection { background: var(--cobalt); color: var(--paper); }

/* ---------- Brand mark ---------- */

.brand-mark { display: flex; gap: 6px; }
.brand-mark i {
  width: 6px;
  height: 30px;
  background: var(--cobalt);
}
.brand-mark--large { gap: clamp(10px, 1.2vw, 14px); }
.brand-mark--large i {
  width: clamp(10px, 1.2vw, 14px);
  height: clamp(52px, 6vw, 72px);
  transform-origin: top;
  animation: mark-grow .8s cubic-bezier(.2, .7, .2, 1) both;
}
.brand-mark--large i:last-child { animation-delay: .1s; }
@keyframes mark-grow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

/* ---------- Coming soon ---------- */

.coming-soon {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3.5vh, 40px);
  padding: var(--shell-pad);
  text-align: center;
}

.coming-soon-name {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -.035em;
}

.coming-soon-label {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-50);
}

@media (prefers-reduced-motion: reduce) {
  .brand-mark--large i { animation: none; }
}
