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

html, body {
  height: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0d3d38;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.bg-image {
  position: absolute;
  inset: 0;
  background-image: url('brand-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(80px);
}

.glow-orange {
  bottom: 0;
  right: 0;
  width: 380px;
  height: 380px;
  background: radial-gradient(ellipse at bottom right, rgba(233, 108, 42, 0.2) 0%, transparent 70%);
}

.glow-green {
  top: 0;
  right: 0;
  width: 280px;
  height: 280px;
  background: radial-gradient(ellipse at top right, rgba(126, 207, 90, 0.13) 0%, transparent 70%);
}

.header {
  position: relative;
  z-index: 10;
  padding: 2.5rem 5rem 0;
}

.brand-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
}

.main {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem;
  max-width: 680px;
}

.headline {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 200;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 2rem;
}

.accent {
  color: #e96c2a;
}

.tagline {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 380px;
}

.footer {
  position: relative;
  z-index: 10;
  padding: 0 5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #7ecf5a;
  flex-shrink: 0;
}

.email {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.email:hover {
  color: #ffffff;
}

.copyright {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: 0.08em;
}

@media (max-width: 640px) {
  .header {
    padding: 2rem 2rem 0;
  }

  .main {
    padding: 4rem 2rem;
  }

  .footer {
    padding: 0 2rem 2rem;
    flex-direction: column;
    align-items: flex-start;
  }
}
