/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0e0e0e;
  --text: #ffffff;
  --text-muted: #a8a8a8;
  --border: #333;
  --font-mono: 'Geist Mono', monospace;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-mono);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.site-header {
  padding: 0;
}

.logo {
  display: flex;
  align-items: center;
  height: 51px;
  padding-left: 13px;
}

.logo-wrapper {
  width: 126px;
  height: 24px;
  position: relative;
}

.logo-img {
  display: block;
  width: 24px;
  height: 126px;
  transform: rotate(90deg);
  position: absolute;
  top: -51px;
  left: 51px;
}

.header-line {
  width: 100%;
  height: 1px;
  background-color: var(--border);
}

/* Content */
.content {
  padding: 120px 50px 0;
  max-width: 900px;
}

.hero-title {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 35px;
  line-height: 45px;
  text-transform: uppercase;
  max-width: 804px;
  margin-bottom: 12px;
}

.hero-body {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 17px;
  line-height: 30px;
  text-transform: uppercase;
  color: var(--text-muted);
  max-width: 759px;
}

.hero-body .contact {
  margin-top: 30px;
}

.hero-body a {
  color: var(--text-muted);
  text-decoration: none;
}

.hero-body a:hover {
  color: var(--text);
}

/* Donut */
.donut-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.donut {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.2;
  color: var(--text-muted);
  white-space: pre;
  user-select: none;
}

/* Footer */
.site-footer {
  height: 51px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.footer-inner {
  padding-left: 13px;
}

.footer-link {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  text-transform: uppercase;
}

.footer-link:hover {
  color: var(--text);
}

/* Responsive */
@media (max-width: 768px) {
  .content {
    padding: 60px 24px 0;
  }

  .hero-title {
    font-size: 26px;
    line-height: 36px;
  }

  .hero-body {
    font-size: 14px;
    line-height: 24px;
  }
}

@media (max-width: 480px) {
  .content {
    padding: 40px 16px 0;
  }

  .hero-title {
    font-size: 22px;
    line-height: 30px;
  }

  .hero-body {
    font-size: 13px;
    line-height: 22px;
  }
}
