@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;800;900&display=swap');

:root {
  --primary: #5145f5;
  --secondary: #8c3df5;
  --dark: #0d1428;
  --text: #64708a;
  --bg: #f7f8ff;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at 20% 30%, rgba(81, 69, 245, .14), transparent 28%),
    radial-gradient(circle at 80% 40%, rgba(140, 61, 245, .12), transparent 30%),
    linear-gradient(180deg, #fbfcff, #f4f6ff);
  color: var(--dark);
  min-height: 100vh;
}

.coming-soon {
  max-width: 1180px;
  margin: auto;
  padding: 42px 24px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-weight: 900;
  font-size: 26px;
  margin-bottom: 70px;
}

.logo {
  width: 58px;
}

.hero {
  text-align: center;
}

.badge {
  display: inline-block;
  padding: 12px 24px;
  background: rgba(81, 69, 245, .08);
  color: var(--primary);
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 28px;
}

h1 {
  font-size: clamp(48px, 8vw, 92px);
  line-height: .95;
  letter-spacing: -4px;
  font-weight: 900;
}

h1 span {
  color: var(--primary);
}

.subtitle {
  max-width: 680px;
  margin: 32px auto 60px;
  color: var(--text);
  font-size: 21px;
  line-height: 1.7;
}

.preview {
  position: relative;
  max-width: 760px;
  margin: 0 auto 70px;
}

.tablet {
  background: #050b1c;
  padding: 20px;
  border-radius: 34px;
  box-shadow: 0 35px 80px rgba(13, 20, 40, .18);
  transform: rotate(-2deg);
}

.screen {
  background: var(--white);
  border-radius: 22px;
  padding: 28px;
  text-align: left;
}

.date {
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 8px;
}

.screen h2 {
  font-size: 28px;
  margin-bottom: 24px;
}

.stats,
.actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.stats div,
.actions div,
.todo {
  background: #f6f7fb;
  border-radius: 16px;
  padding: 18px;
}

.stats strong {
  display: block;
  font-size: 28px;
}

.stats span,
.actions span {
  display: block;
  color: #8190aa;
  font-size: 13px;
  margin-top: 8px;
}

.actions {
  grid-template-columns: repeat(2, 1fr);
}

.actions div:nth-child(2) {
  background: #f2edff;
}

.actions strong {
  color: #2d24c8;
}

.todo strong {
  display: block;
  margin-bottom: 14px;
}

.todo p {
  background: white;
  margin-top: 10px;
  padding: 11px 14px;
  border-radius: 10px;
  color: #33415c;
  font-size: 14px;
}

.phone {
  position: absolute;
  right: -40px;
  bottom: -25px;
  width: 190px;
  background: white;
  border: 8px solid #050b1c;
  border-radius: 30px;
  padding: 20px 18px;
  box-shadow: 0 30px 70px rgba(13, 20, 40, .2);
  transform: rotate(5deg);
}

.phone img {
  width: 42px;
  margin-bottom: 12px;
}

.phone h3 {
  font-size: 14px;
  margin-bottom: 16px;
}

.phone li {
  list-style: none;
  font-size: 12px;
  font-weight: 700;
  padding: 10px;
  margin-bottom: 8px;
  background: #f7f8ff;
  border-radius: 10px;
}

.notify {
  margin: 40px auto 70px;
  max-width: 680px;
}

.bell {
  width: 58px;
  height: 58px;
  margin: auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(81, 69, 245, .12);
  font-size: 26px;
}

.notify h2 {
  margin-top: 18px;
  font-size: 22px;
}

.notify p {
  color: var(--text);
  margin: 12px 0 28px;
}

form {
  display: flex;
  background: white;
  border: 1px solid #dfe4f2;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(13, 20, 40, .07);
}

input {
  flex: 1;
  border: none;
  padding: 22px 24px;
  font-size: 16px;
  outline: none;
}

button {
  border: none;
  padding: 0 30px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  opacity: .92;
}

small {
  display: block;
  color: var(--text);
  margin-top: 20px;
}

#message {
  font-weight: 700;
  color: var(--primary);
}

footer {
  border-top: 1px solid #dde3f0;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  font-size: 14px;
}

footer div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
}

footer img {
  width: 34px;
}

@media (max-width: 760px) {
  .header {
    margin-bottom: 45px;
  }

  .subtitle {
    font-size: 17px;
  }

  .phone {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 25px auto 0;
  }

  .tablet {
    transform: none;
  }

  .stats,
  .actions {
    grid-template-columns: 1fr;
  }

  form {
    flex-direction: column;
  }

  button {
    padding: 18px;
  }

  footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

.counter {
  margin: 35px auto 20px;
  width: fit-content;
  padding: 14px 28px;
  background: #ffffff;
  border: 1px solid #e2e6f3;
  border-radius: 999px;
  font-weight: 700;
  color: #0d1428;
  box-shadow: 0 15px 35px rgba(13, 20, 40, 0.08);
}

.counter strong {
  color: #5145f5;
}