:root {
  --bg-color: #ffffff; /* White background */
  --text-main: #000000; /* Black from logo */
  --text-muted: #999999; /* Grey from logo tools */
  --logo-green: #3ca643; /* Green from center */
  --logo-gold: #c88f3a; /* Gold text shadow outline */
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--text-main);
  background: var(--bg-color);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero {
  padding: 80px 20px 100px;
  text-align: center;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.main-logo {
  max-width: 300px;
  height: auto;
  margin: 0 auto 30px;
  display: block;
}

.logo-text {
  font-weight: 700;
  font-size: 2rem;
  color: var(--text-main);
  letter-spacing: -0.01em;
  margin: 0 auto 30px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
  background: linear-gradient(90deg, var(--text-main), var(--logo-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 500;
  color: var(--logo-gold);
  margin: 0 0 20px;
  letter-spacing: -0.015em;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 36px;
  letter-spacing: -0.01em;
}

.construction-flair {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--logo-gold);
  background: rgba(200, 143, 58, 0.1);
  padding: 10px 24px;
  border-radius: 980px;
  border: 1px dashed var(--logo-gold);
  display: inline-block;
  animation: pulse-glow 2.5s infinite alternate;
}

.gear-icon {
  display: inline-block;
  animation: spin 4s linear infinite;
  margin: 0 4px;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 rgba(200, 143, 58, 0); }
  100% { box-shadow: 0 0 15px rgba(200, 143, 58, 0.3); }
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 980px;
  font-size: 17px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--logo-green);
  color: white;
  border: 2px solid var(--text-main);
}
.btn-primary:hover {
  background: #318a38;
}

.unclickable {
  cursor: default !important;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(60, 166, 67, 0.3);
  opacity: 0.95;
}

.btn-secondary {
  background: transparent;
  color: var(--logo-green);
  padding: 14px 10px;
}
.btn-secondary:hover {
  text-decoration: underline;
}

.arrow {
  font-size: 18px;
  margin-left: 4px;
}

main {
  background: var(--bg-color);
  min-height: 40vh;
}

.site-footer {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
  font-size: 12px;
  background: var(--bg-color);
  border-top: 1px solid #d2d2d7;
}