:root {
  --bg-color: #ffffff;
  --text-main: #14171a;
  --primary-font: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body, html {
  width: 100%;
  height: 100vh;
  overflow: hidden; /* Strictly no scrolling */
  font-family: var(--primary-font);
  background-color: var(--bg-color);
  color: var(--text-main);
}

/* Background animated SVG */
.svg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  opacity: 0.9;
  pointer-events: none;
}
.svg-container svg {
  width: 100%;
  height: 100%;
}

.center-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.logo {
  font-family: 'SF Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: normal;
  margin-bottom: 80px; 
}

.message {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 500;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 80px;
}

.contact-link {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-main);
  text-decoration: none;
  border-bottom: 2px solid var(--text-main);
  padding-bottom: 4px;
  transition: opacity 0.3s ease;
}

.contact-link:hover {
  opacity: 0.5;
}
