@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --text: #262324;
  --line: #d8d8d8;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Manrope", Arial, sans-serif;
  color: var(--text);
  background: #fff;
}

.coming-soon {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px 44px;
}

.hero {
  width: 100%;
  max-width: 1040px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.browser-card {
  width: 540px;
  max-width: 100%;
  margin-bottom: 22px;
  overflow: hidden;
  border: 3px solid var(--line);
  border-radius: 24px;
  background: #fff;
}

.browser-top {
  height: 50px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 35px;
  border-bottom: 3px solid var(--line);
}

.browser-top span {
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 50%;
  background: #d4d4d4;
}

.browser-content {
  display: flex;
  align-items: center;
  gap: 46px;
  padding: 40px;
}

.logo-card {
  width: 180px;
  height: 180px;
  min-width: 180px;
  min-height: 180px;
  overflow: hidden;
  border-radius: 38px;
  background: #292929;
}

.logo-image {
  display: block;
  width: 180px;
  height: 180px;
  max-width: none;
  object-fit: cover;
  border-radius: 38px;
}

.browser-lines {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.line {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: var(--line);
}

.short { width: 46%; }
.medium { width: 80%; }
.long { width: 100%; }
.small { width: 65%; }

h1 {
  margin: 0;
  max-width: 950px;
  font-size: clamp(3.6rem, 8vw, 6.6rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.07em;
}

h1 > span {
  display: block;
}

.dots {
  display: inline-block;
  min-width: 0.8em;
  text-align: left;
}

.tagline {
  display: flex;
  gap: 10px;
  margin: 44px 0 0;
  font-size: clamp(1.25rem, 2.7vw, 2rem);
  letter-spacing: -0.04em;
}

.contact-link {
  margin-top: 25px;
  color: #777178;
  font-size: 0.92rem;
  text-decoration: none;
}

@media (max-width: 720px) {
  .browser-card {
    width: 100%;
    max-width: 540px;
    border-width: 2px;
    border-radius: 18px;
  }

  .browser-top {
    height: 38px;
    gap: 10px;
    padding: 0 22px;
    border-bottom-width: 2px;
  }

  .browser-top span {
    width: 12px;
    height: 12px;
    flex-basis: 12px;
  }

  .browser-content {
    gap: 22px;
    padding: 28px;
  }

  .logo-card,
  .logo-image {
    width: 118px;
    height: 118px;
    min-width: 118px;
    min-height: 118px;
    border-radius: 26px;
  }

  .browser-lines {
    gap: 10px;
  }

  .line {
    height: 5px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .tagline {
    margin-top: 30px;
  }
}

@media (max-width: 470px) {
  .coming-soon {
    padding-left: 16px;
    padding-right: 16px;
  }

  .browser-content {
    gap: 16px;
    padding: 20px;
  }

  .logo-card,
  .logo-image {
    width: 94px;
    height: 94px;
    min-width: 94px;
    min-height: 94px;
    border-radius: 20px;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.2rem);
  }
}
