@font-face {
  font-family: "Teshrin";
  src: url("assets/fonts/Teshrin_Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Teshrin";
  src: url("assets/fonts/Teshrin_Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Teshrin";
  src: url("assets/fonts/Teshrin_Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Teshrin";
  src: url("assets/fonts/Teshrin_Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --cyan: #00a4fa;
  --cyan-deep: #0078bb;
  --lime: #e3ed43;
  --pink: #ff7bd0;
  --navy: #21263f;
  --surface: #f5f6fa;
  --bg: #f5f6fa;
  --font: "Teshrin", "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  background: var(--bg);
  color: var(--navy);
  font-family: var(--font);
  font-weight: 500;
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.brand-mark-wrap {
  position: relative;
  flex: 0 0 auto;
}

.brand-mark {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 220ms ease;
}

.brand:hover .brand-mark {
  transform: rotate(-8deg) scale(1.08);
}

.brand-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: -2px;
  right: -2px;
  background: var(--lime);
  box-shadow: 0 0 0 2px var(--bg);
}

.brand-wordmark {
  width: 100px;
  height: auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(33, 38, 63, 0.14);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image: url("assets/pattern/squiggle.png");
  background-repeat: repeat;
  background-size: 260px auto;
  mix-blend-mode: soft-light;
}

.coming-soon-page {
  position: relative;
  height: 100vh;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 16px;
  isolation: isolate;
}

.coming-soon-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 12%, rgba(227, 237, 67, 0.44), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(255, 123, 208, 0.32), transparent 28%),
    radial-gradient(circle at 50% 92%, rgba(0, 164, 250, 0.28), transparent 34%),
    linear-gradient(145deg, #f9fbff 0%, var(--surface) 42%, #eaf7ff 100%);
}

.coming-soon-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.1;
}

.coming-soon-shell {
  width: 100%;
  height: calc(100vh - 32px);
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.coming-soon-brand {
  flex: 0 0 auto;
  margin-bottom: 12px;
  padding-inline: 8px;
}

.coming-soon-card {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  padding: clamp(28px, 5vw, 58px);
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(250px, 330px);
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 18%, rgba(227, 237, 67, 0.72), transparent 28%),
    radial-gradient(circle at 12% 88%, rgba(255, 123, 208, 0.28), transparent 30%),
    linear-gradient(135deg, color-mix(in srgb, var(--cyan) 88%, #fff) 0%, #00a1f5 52%, #0086d3 100%);
  color: var(--navy);
  box-shadow: 0 28px 80px rgba(33, 38, 63, 0.18);
}

.coming-soon-copy {
  position: relative;
  z-index: 2;
  max-width: none;
}

.coming-soon-badge {
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(12px);
}

.coming-soon-copy h1 {
  max-width: 720px;
  margin: 0 0 20px;
  font-size: clamp(54px, 7.8vw, 104px);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.coming-soon-copy p {
  max-width: 540px;
  margin: 0 0 26px;
  color: rgba(33, 38, 63, 0.76);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.45;
}

.coming-soon-form {
  display: flex;
  max-width: 520px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(33, 38, 63, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(14px);
}

.coming-soon-form input {
  min-width: 0;
  flex: 1;
  height: 56px;
  padding: 0 16px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
}

.coming-soon-form input::placeholder {
  color: rgba(33, 38, 63, 0.48);
}

.coming-soon-form button {
  flex: 0 0 auto;
  min-width: 144px;
  height: 56px;
  padding: 0 20px;
  border: 0;
  border-radius: 18px;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(33, 38, 63, 0.22);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.coming-soon-form button:hover {
  background: var(--cyan-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(33, 38, 63, 0.26);
}

.coming-soon-visual {
  position: relative;
  z-index: 2;
  min-height: 420px;
  display: grid;
  place-items: end start;
}

.coming-soon-visual::before {
  content: "";
  position: absolute;
  left: -2px;
  bottom: 34px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 24%, rgba(255, 255, 255, 0.82), transparent 22%),
    linear-gradient(145deg, var(--lime) 0%, #f2fb79 100%);
  box-shadow:
    0 24px 60px rgba(33, 38, 63, 0.2),
    0 0 0 18px rgba(255, 255, 255, 0.16),
    0 0 0 34px rgba(227, 237, 67, 0.16);
}

.coming-soon-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 340px);
  height: auto;
  transform: translateX(-26px);
  filter: drop-shadow(0 22px 34px rgba(33, 38, 63, 0.26));
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes mascot-float {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }

  .mascot-float {
    animation: mascot-float 3s ease-in-out infinite;
  }
}

@media (max-width: 860px) {
  .coming-soon-page {
    padding: 12px;
    align-items: start;
  }

  .coming-soon-shell {
    height: calc(100vh - 24px);
    min-height: 0;
  }

  .coming-soon-card {
    padding: 22px 24px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 14px;
    justify-content: stretch;
  }

  .coming-soon-brand {
    justify-content: center;
    margin-bottom: 10px;
  }

  .coming-soon-copy {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .coming-soon-copy h1 {
    max-width: 620px;
    margin-bottom: 12px;
    font-size: clamp(40px, 11vw, 66px);
    line-height: 0.94;
  }

  .coming-soon-copy p {
    max-width: 480px;
    margin-bottom: 18px;
  }

  .coming-soon-visual {
    order: 1;
    min-height: 198px;
    place-items: center;
  }

  .coming-soon-visual::before {
    left: auto;
    bottom: 8px;
    width: 178px;
    height: 178px;
  }

  .coming-soon-visual img {
    width: 196px;
    transform: none;
  }
}

@media (max-width: 520px) {
  body {
    height: 100dvh;
    min-height: 100dvh;
  }

  .coming-soon-page {
    height: 100dvh;
    padding: 8px;
  }

  .coming-soon-shell {
    height: calc(100dvh - 16px);
    min-height: 0;
  }

  .coming-soon-card {
    padding: 14px;
    border-radius: 28px;
    gap: 10px;
    align-content: stretch;
    background:
      radial-gradient(circle at 50% 18%, rgba(227, 237, 67, 0.76), transparent 27%),
      radial-gradient(circle at 12% 76%, rgba(255, 123, 208, 0.28), transparent 28%),
      linear-gradient(155deg, #19b6ff 0%, #00a4fa 48%, #007fc8 100%);
  }

  .coming-soon-brand {
    margin-bottom: 8px;
    min-height: 38px;
  }

  .coming-soon-brand .brand-wordmark {
    width: 92px;
  }

  .coming-soon-copy {
    width: 100%;
    max-width: 350px;
    justify-self: center;
    padding: 16px 14px 14px;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.28);
    box-shadow: 0 18px 42px rgba(33, 38, 63, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.34);
    backdrop-filter: blur(12px);
  }

  .coming-soon-badge {
    margin-bottom: 10px;
    padding: 7px 11px;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(227, 237, 67, 0.44);
  }

  .coming-soon-copy h1 {
    max-width: 310px;
    font-size: clamp(31px, 11vw, 43px);
    line-height: 1;
    margin-bottom: 10px;
  }

  .coming-soon-copy p {
    max-width: 295px;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.4;
  }

  .coming-soon-visual {
    width: 100%;
    min-height: 0;
    height: clamp(150px, 27dvh, 210px);
    isolation: isolate;
  }

  .coming-soon-visual::before {
    width: clamp(132px, 38vw, 166px);
    height: clamp(132px, 38vw, 166px);
    bottom: 8px;
    box-shadow:
      0 18px 42px rgba(33, 38, 63, 0.2),
      0 0 0 14px rgba(255, 255, 255, 0.18),
      0 0 0 28px rgba(227, 237, 67, 0.14);
  }

  .coming-soon-visual img {
    width: clamp(148px, 43vw, 188px);
    transform: translateY(2px);
  }

  .coming-soon-form {
    width: 100%;
    max-width: 302px;
    flex-direction: column;
    padding: 7px;
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(33, 38, 63, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.66);
  }

  .coming-soon-form input,
  .coming-soon-form button {
    width: 100%;
  }

  .coming-soon-form input {
    height: 42px;
    text-align: center;
    font-size: 14px;
  }

  .coming-soon-form button {
    height: 44px;
    margin-top: 6px;
    border-radius: 16px;
  }
}
