/* Checkup Health Co. — Coming Soon
   Built to match the Figma design (node 2:2). */

:root {
  --ink: #1e3a4c;
  --ink-soft: #22475a;
  --body: #52616e;
  --body-soft: #4c5a66;
  --muted: #7e8b93;
  --placeholder: #8a98a0;
  --brand: #38ae97;
  --brand-deep: #1e9e77;
  --brand-tint: #e6f7f0;
  --input-border: #d8e2e0;
  --notice-bg: #fff3f3;
  --notice-border: #ffcdcd;
  --notice-accent: #ff6161;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #ffffff;
  color: var(--ink);
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 120px;
}

.content {
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Logo */
.logo {
  width: 412px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Hero */
.hero {
  width: 100%;
  max-width: 660px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--brand-tint);
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.56px;
  white-space: nowrap;
}

.eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-deep);
}

.hero__title {
  font-size: 46px;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.5px;
  color: var(--ink);
}

.hero__subtitle {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--ink);
}

.hero__body {
  max-width: 600px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--body);
}

/* Notify form */
.notify {
  width: 100%;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.notify__row {
  display: flex;
  gap: 12px;
  width: 100%;
}

.notify__input {
  flex: 1 0 0;
  min-width: 0;
  padding: 16px 20px;
  border: 1.5px solid var(--input-border);
  border-radius: 14px;
  background: #ffffff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}

.notify__input::placeholder {
  color: var(--placeholder);
  font-weight: 500;
}

.notify__input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(56, 174, 151, 0.18);
}

.notify__button {
  flex: 0 0 auto;
  padding: 16px 28px;
  border: none;
  border-radius: 14px;
  background: var(--brand);
  color: #ffffff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.notify__button:hover {
  background: #2f9c86;
}

.notify__button:active {
  transform: translateY(1px);
}

.notify__note {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
}

/* Important information */
.notice {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 36px 40px;
  border: 1px solid var(--notice-border);
  border-radius: 20px;
  background: var(--notice-bg);
  text-align: left;
}

.notice__head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.notice__bar {
  width: 4px;
  height: 20px;
  border-radius: 2px;
  background: var(--notice-accent);
}

.notice__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}

.notice__lead {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.72;
  color: var(--ink-soft);
}

.notice__text {
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.72;
  color: var(--body-soft);
}

/* Outro */
.outro {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink);
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .page {
    padding: 56px 24px;
  }
  .content {
    gap: 32px;
  }
  .hero__title {
    font-size: 34px;
  }
  .hero__subtitle {
    font-size: 19px;
  }
}

@media (max-width: 520px) {
  .page {
    padding: 40px 20px;
  }
  .hero__title {
    font-size: 28px;
  }
  .notify__row {
    flex-direction: column;
  }
  .notify__button {
    width: 100%;
  }
  .notice {
    padding: 28px 22px;
  }
}
