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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #fff;
  padding-top: 80px;
}

.section {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 10;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 16px;
  top: 10px;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  background: #fff;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-background {
  width: 70px;
  height: 28px;
  position: absolute;
  border-radius: 99px;
  z-index: -1;
  left: 0;
  background: #00d66f;
  border: 1px solid transparent;
}

.logo {
  color: inherit;
  width: 77px;
  height: 26px;
  margin-left: 5px;
}

.logo .text {
  fill: #1a1a1a;
}

.logo .circle {
  fill: #00d66f;
}

.logo .mark {
  fill: #1a1a1a;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-divider {
  height: 16px;
  width: 1px;
  margin: 0 18px;
  background: #d1d5db;
}

.btn {
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-link {
  color: #1a1a1a;
  background: none;
  border: none;
  padding: 8px 12px;
}

.btn-link:hover {
  color: #4a4a4a;
}

.btn-tertiary {
  color: #1a1a1a;
  background: none;
  border: 1px solid #e6e6e6;
}

.btn-tertiary:hover {
  background: #f8f9fa;
}

.btn-secondary,
.btn-primary {
  color: #fff;
  background: #1a1a1a;
  border: 1px solid #1a1a1a;
}

.btn-secondary:hover,
.btn-primary:hover {
  background: #2a2a2a;
}

.section-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 48px 24px;
}

.section-main h1 {
  font-size: 96px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.section-main h2 {
  font-size: 32px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.section-main p {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 32px;
  max-width: 400px;
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  .nav-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-divider {
    display: none;
  }

  .section-main h1 {
    font-size: 72px;
  }

  .section-main h2 {
    font-size: 24px;
  }

  .section-inner {
    padding: 0 16px;
  }
}
