/*
Theme Name:  Common Splash
Description: CommonGrid branded splash / coming-soon page.
Version:     1.0.2
Author:      CommonGrid
Text Domain: common-splash
License:     GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

:root {
  --deep:  #091540;
  --navy:  #1A2B6D;
  --amber: #B22234;
  --cloud: #F8F9FF;
}

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

html, body {
  height: 100%;
}

body {
  background: var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-family: 'Space Grotesk', sans-serif;
  -webkit-font-smoothing: antialiased;
}

.splash {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
  text-align: center;
  padding: 24px;
}

.splash__mark {
  width: clamp(52px, 9vw, 80px);
  height: clamp(52px, 9vw, 80px);
}

.splash__wordmark {
  font-size: clamp(42px, 10vw, 96px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.splash__wordmark .common { color: var(--cloud); }
.splash__wordmark .grid   { color: var(--amber); }
