:root {
  --primary: #2B2E4A;
  --secondary: #14C6D3;
  --bg: #ffffff;
  --text-light: #6b6f92;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background: var(--bg);
  color: var(--primary);
  background-image: url(assets/bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.content {
  text-align: center;
  max-width: 520px;
}

.icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 20px;
  background: var(--secondary);
  color: white;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

img{
    width: 100%;    
    object-fit: cover;
    max-width: 280px;
}

.icon img{
    border-radius: 20px;    
}

h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -1px;
}

.tagline {
  margin-top: 6px;
  font-weight: 600;
  color: var(--secondary);
}

.description {
  margin: 24px 0 32px;
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.6;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.countdown div {
  background: #f5f7fb;
  border-radius: 12px;
  padding: 12px 16px;
  min-width: 72px;
}

.countdown span {
  font-size: 24px;
  font-weight: 700;
  display: block;
}

.countdown small {
  font-size: 12px;
  color: var(--text-light);
}

.contact-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 32px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.contact-btn:hover {
  background: var(--secondary);
}

.email {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-light);
}
