/* --- Variables --- */
:root {
  --bg: #1b2338;
  --text: #e8ecf1;
  --text-muted: #cae3f7;
  --accent: #d4dce6;
  --btn-primary-bg: #cae3f7;
  --btn-primary-text: #000000;
  --btn-secondary-border: #c5cdd9;
  --btn-icon-bg: #1b2338;
  --divider: #cae3f7;
  --text-white: #ffffff;
}

/* --- Reset & base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    "Lexend Deca",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

/* --- Layout --- */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 2.5rem;
}

/* --- Coming soon --- */
.coming-soon {
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: Regular;
  text-align: center;
  line-height: 120%;
  padding-bottom: 30px;
}

/* --- Brand / logo --- */
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
}

.logo-img {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  padding-bottom: 20px;
}

.tagline {
  color: var(--text-white);
  line-height: 120%;
  font-weight: 300;
  font-size: 36px;
  text-align: center;
  max-width: 620px;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* --- Dividers --- */
.divider {
  width: 100%;
  max-width: 950px;
  height: 1px;
  background: var(--divider);
  margin-left: 1rem;
  margin-right: 1rem;
}

.divider:first-of-type {
    margin-bottom: 30px;
}
/* --- Statements --- */
.statements {
  list-style: none;
  max-width: 900px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: nowrap;
  align-items: flex-start;
  padding-bottom: 30px;
  padding-left: 1rem;
  padding-right: 1rem;
}

.statements li {
  display: flex;
  align-items: center;
  font-weight: 300;
  gap: 20px;
  color: var(--text-white);
  text-align: left;
}

.statement-text {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-white);
  text-align: left;
  line-height: 120%;
  max-width: 230px;
}

.check {
  color: var(--text-white);
}

/* --- Buttons --- */
.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
  gap: 45px;
  padding-left: 1rem;
  padding-right: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  font-weight: 400;
  text-decoration: none;
  border-radius: 9999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 19px;
  padding-left: 40px;
  padding-block: 10px;
  padding-right: 18px;
  gap: 30px;
}

.btn-primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--btn-icon-bg);
  border: 1px solid var(--text-muted);
}

.btn-icon-primary {
  color: var(--text-muted);
  border: 1px solid transparent;
}

.btn-secondary {
  border-color: var(--text-muted);
  color: var(--text-muted);
}

.btn-icon-secondary {
  color: var(--text-muted);
}

/* --- Footer --- */
.page-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 950px;
}

.footer-email {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
}

.footer-email:hover {
  text-decoration: underline;
}

.footer-linkedin {
  margin-left: auto;
  color: var(--text-muted);
  opacity: 0.7;
  transition: opacity 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.footer-linkedin:hover {
  opacity: 1;
}

/* --- Tablet (1024px and below) --- */
@media (max-width: 1024px) {
  .page {
    padding: 2rem 1.5rem;
  }

  .coming-soon {
    font-size: clamp(18px, 2.5vw, 26px);
    letter-spacing: 2px;
    padding-bottom: 24px;
  }

  .logo-img {
    max-width: 280px;
  }

  .tagline {
    font-size: clamp(24px, 3.5vw, 32px);
    max-width: 520px;
  }

  .statements {
    gap: 24px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .statement-text {
    font-size: 15px;
    max-width: 220px;
  }

  .actions {
    gap: 24px;
    margin-top: 40px;
  }

  .btn {
    font-size: 17px;
    padding-left: 32px;
    padding-right: 14px;
    gap: 24px;
  }

  .btn-icon {
    width: 40px;
    height: 40px;
  }

  .page-footer {
    margin-top: 2.5rem;
    padding-top: 1.25rem;
  }

  .footer-email {
    font-size: 15px;
  }
}

/* --- Mobile (768px and below) --- */
@media (max-width: 768px) {
  .page {
    padding: 1.5rem 1.25rem;
  }

  .coming-soon {
    font-size: clamp(16px, 4vw, 22px);
    letter-spacing: 2px;
    padding-bottom: 20px;
  }

  .brand {
    padding-bottom: 16px;
  }

  .logo-img {
    max-width: 240px;
    padding-bottom: 16px;
  }

  .tagline {
    font-size: clamp(20px, 5vw, 28px);
    max-width: 100%;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .divider:first-of-type {
    margin-bottom: 24px;
  }

  .statements {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding-bottom: 24px;
  }

  .statements li {
    text-align: center;
    max-width: 100%;
    justify-content: center;
    align-items: start;
    gap: 10px;
    margin-right: 24px;
  }

  .statement-text {
    text-align: center;
    max-width: 320px;
    font-size: 15px;
  }

  .actions {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    margin-top: 32px;
    padding-left: 0;
    padding-right: 0;
  }

  .btn {
    justify-content: flex-start;
    width: 100%;
    font-size: 16px;
    padding-left: 24px;
    padding-right: 12px;
    padding-block: 12px;
    gap: 20px;
  }

  .btn .btn-icon {
    margin-left: auto;
  }

  .btn-icon {
    width: 38px;
    height: 38px;
  }

  .page-footer {
    margin-top: 2rem;
    padding-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .footer-email {
    font-size: 15px;
  }
}

/* --- Small mobile (480px and below) --- */
@media (max-width: 480px) {
  .page {
    padding: 1.25rem 1rem;
  }

  .coming-soon {
    font-size: 14px;
    letter-spacing: 1.5px;
    padding-bottom: 16px;
  }

  .logo-img {
    max-width: 200px;
    padding-bottom: 12px;
  }

  .tagline {
    font-size: 18px;
    line-height: 1.35;
  }

  .statements {
    gap: 16px;
    padding-bottom: 20px;
  }

  .statement-text {
    font-size: 14px;
    max-width: 280px;
  }

  .actions {
    margin-top: 28px;
  }

  .btn {
    font-size: 15px;
    padding-block: 14px;
  }

  .page-footer {
    margin-top: 1.5rem;
    padding-top: 0.75rem;
  }

  .footer-email {
    font-size: 14px;
  }
}
