html, body {
  height: 100%;
  margin: 0;
}

@media (min-width: 768px) {
  .container {
    display: none !important;
  }
  
  body {
    overflow: hidden;
  }

  body::before {
    content: "EAR ORB COMING SOON";
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: black;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    z-index: 10000;
    user-select: none;
  }
}

body {
  background: #111;
  color: #fff;
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    "Roboto Mono",
    monospace,
    -apple-system,
    BlinkMacSystemFont,
    "Helvetica Neue",
    Arial,
    sans-serif;
}

body::after{
  content: "";
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100vh;
  width: 1px;
  background: rgba(255,255,255,0.15);
  pointer-events: none;
}

.container{
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  box-sizing: border-box;
  overflow-x: hidden;
  transform: translateX(-10px);
}

.container > div {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.container > * {
  margin-top: 0;
  }

.logo{
  width: min(56vw, 280px);
  height: auto;
  display: block;
  margin-top: 4px;
  margin-bottm: 24px;
 }

@media (max-width: 430px){
  .container{
    justify-content: center;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .logo{
    width: 56vw;
    max-width: 280px;
    margin-top: 4px;
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
  }
}

h1 {
  margin: 0 0 12px 0;
  font-size: 36px;
  letter-spacing: 0.12em;
}

.sub,
.loc,
.after {
  margin: 0 0 6px 0;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.9;
}

.email a {
  color: #aaa;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 2px;
}

.email a:hover {
  opacity: 0.8;
}

@media (max-width: 430px) {
  h1 {
    font-size: 36px;
    letter-spacing: 0.14em;
  }
  
  .sub,
  .loc,
  .after {
    margin: 0 0 2px 0;
    line-height: 1.05;
    font-size: 14px;
    letter-spacing: 0.16em;
    
    .after { 
      margin-bottom: 0;
  }
}

.hh-card{
  width: min(84vw, 320px);
  aspect-ratio: 1 / 1;
  margin: 56px auto 0;
  padding: 12px;
  border: 2px solid currentColor;
  border-radius: 60px;
  text-align: center;
  color: #fff;
  background: transparent;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;

  font-family:
  "Arial Narrow",
  "Helvetica Neue Condensed",
  "Helvetica Neue",
  Arial,
  sans-serif;
}

.hh-title{
  font-weight: 800;
  font-size: 28px;
  line-height: 0.95;
  letter-spacing: 0.01em;
  font-stretch: condensed;
  margin-bottom: 10px;
}

.hh-sub{
  font-size: 16px;
  line-height: 1.15;
  letter-spacing: 0.015em;
  font-stretch: condensed;
  margin: 4px 0;
}

.hh-line{
  margin: 4px 0;
  line-height: 1.0;
  letter-spacing: 0.02em;
  font-stretch: condensed;
  display: inline-block;
}

.hh-line.strong{
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.05em;
}

.hh-line.small{
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.03em;
  opacity: 0.92;
}

.hh-spacer{
  height: 14px;
}