* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #090909;
  color: #e7e7e7;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 24px;
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-image {
  display: block;
  max-height: 96px;
  width: auto;
  height: auto;
  image-rendering: auto;
  -webkit-image-rendering: auto;
}

.logo-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.main-nav a {
  color: #d8d8d8;
  font-weight: 500;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: #fff;
}

.main-nav .button {
  display: inline-flex;
  padding: 12px 22px;
  background: #f26522;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
}

.hero {
  padding: 96px 24px 60px;
  text-align: center;
  background: radial-gradient(circle at top, rgba(242, 101, 34, 0.12), transparent 25%), linear-gradient(180deg, #090909 0%, #0f0f0f 100%);
}

.eyebrow {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  background: rgba(242, 101, 34, 0.12);
  color: #f7ab71;
  margin-bottom: 22px;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: -0.045em;
}

.hero p {
  margin: 0 auto 28px;
  max-width: 720px;
  color: #c7c7c7;
  font-size: 1.05rem;
}

.content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 64px;
}

section.card,
section.page-intro {
  margin: 28px 0;
  padding: 32px;
  background: rgba(18, 18, 18, 0.92);
  border: 1px solid rgba(255, 140, 0, 0.2);
  border-radius: 24px;
  box-shadow: 0 0 30px rgba(255, 140, 0, 0.1), 0 28px 60px rgba(0, 0, 0, 0.25);
}

section.page-intro {
  padding-top: 42px;
}

section.card h2,
section.page-intro h2,
section.card h3 {
  color: #ff8a2f;
}

section.card ul {
  padding-left: 20px;
}

section.card li {
  margin-bottom: 10px;
}

.contact {
  text-align: center;
}

.contact a {
  display: inline-block;
  margin-top: 18px;
  padding: 14px 26px;
  background: #ff8a2f;
  color: black;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.contact a:hover {
  transform: translateY(-2px);
}

footer {
  padding: 28px 24px 36px;
  text-align: center;
  color: #9d9d9d;
  background: #090909;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer p {
  margin: 0 0 12px;
}

footer a {
  color: #d8d8d8;
  margin: 0 14px;
  transition: color 0.2s ease;
}

footer a:hover {
  color: #fff;
}

@media (max-width: 800px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding-top: 70px;
  }
}
