:root {
  --ink: #181818;
  --muted: #6b6b6b;
  --paper: #ffffff;
  --line: #e7e1db;
  --soft-sage: #d5dad6;
  --mist: #b8c3bd;
  --rose: #d6a495;
  --shadow: 0 24px 90px rgba(24, 24, 24, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  min-height: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.coming-soon {
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  padding: 34px clamp(24px, 6vw, 92px);
  place-items: center;
  position: relative;
}

.topbar {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  left: 0;
  padding: 26px clamp(24px, 6vw, 92px);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}

.logo {
  display: inline-flex;
  height: 54px;
  width: 46px;
}

.logo img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.secondary-button {
  border: 1px solid var(--line);
  border-radius: 25px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 700;
  padding: 11px 20px;
}

.hero {
  max-width: 780px;
  padding: 120px 0 80px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.eyebrow {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3.4rem, 8vw, 6.2rem);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.16;
  margin: 0;
  white-space: nowrap;
}

.typewriter {
  display: inline-block;
  min-width: 11.35ch;
  padding-bottom: 0.08em;
  padding-top: 0.04em;
  position: relative;
  vertical-align: baseline;
  white-space: nowrap;
}

.typewriter::after {
  animation: cursorBlink 900ms steps(2, start) infinite;
  border-right: 0.07em solid var(--ink);
  content: "";
  margin-left: 0.08em;
}

@keyframes cursorBlink {
  50% {
    opacity: 0;
  }
}

.intro {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  font-weight: 400;
  line-height: 1.55;
  margin: 34px auto 0;
  max-width: 560px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 38px;
}

.primary-button,
.secondary-button {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  justify-content: center;
  min-height: 46px;
  min-width: 154px;
}

.primary-button svg,
.secondary-button svg {
  fill: none;
  flex: 0 0 auto;
  height: 17px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 17px;
}

.linkedin-button svg {
  height: 19px;
  width: 19px;
}

.primary-button {
  background: var(--soft-sage);
  border: 1px solid var(--soft-sage);
  border-radius: 25px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 700;
  padding: 11px 20px;
}

.primary-button:hover,
.secondary-button:hover {
  background: var(--mist);
  border-color: var(--mist);
}

.soft-shape {
  border-radius: 999px;
  filter: blur(1px);
  opacity: 0.5;
  position: absolute;
}

.soft-shape-one {
  background: var(--soft-sage);
  height: 320px;
  right: -110px;
  top: 20%;
  width: 320px;
}

.soft-shape-two {
  background: var(--rose);
  bottom: 8%;
  height: 190px;
  left: -70px;
  opacity: 0.24;
  width: 190px;
}

@media (max-width: 680px) {
  .coming-soon {
    padding: 28px 24px;
  }

  .topbar {
    padding: 22px 24px;
  }

  .logo {
    height: 46px;
    width: 39px;
  }

  .hero {
    padding-top: 110px;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }
}
