*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1B2A4A;
  padding: 2rem;
  text-align: center;
}

.logo {
  width: min(720px, 90vw);
  height: auto;
  margin-bottom: 2.5rem;
}

.tagline {
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  margin-bottom: 2.5rem;
  color: #EF3340;
}

.info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 2rem;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #1B2A4A;
  opacity: 0.8;
}

.info-row svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  stroke: #EF3340;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.6rem 1.4rem;
  border: 1.5px solid #EF3340;
  border-radius: 2rem;
  color: #EF3340;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.ig-link:hover {
  background: #EF3340;
  color: #fff;
}

.ig-link:hover svg {
  stroke: #fff;
}

.ig-link svg {
  width: 18px;
  height: 18px;
  stroke: #EF3340;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s;
}
