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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #0a0a0a;
  color: #e0e0e0;
  min-height: 100vh;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.col-left {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: #060608;
}

.col-left canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.col-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.content {
  max-width: 440px;
}

h1 {
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #555;
  margin-bottom: 2rem;
}

.description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #999;
  margin-bottom: 2rem;
}

.divider {
  width: 48px;
  height: 2px;
  background: #222;
  margin-bottom: 2rem;
}

.contact a {
  font-size: 0.95rem;
  color: #aaa;
  text-decoration: none;
  border-bottom: 1px solid #333;
  transition: color 0.2s, border-color 0.2s;
}

.contact a:hover {
  color: #fff;
  border-color: #fff;
}

@media (max-width: 768px) {
  .layout {
    flex-direction: column;
  }

  .col-left {
    height: 45vh;
  }

  .col-right {
    padding: 2rem 1.5rem;
  }

  h1 {
    font-size: 2rem;
  }
}
