
:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray-900: #111827;
  --color-teal-600: #0d9488;
  --color-orange-500: #f97316;
  --font-family-base: "FKGroteskNeue", "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-size-base: 16px;
  --font-size-lg: 18px;
  --font-size-3xl: 30px;
  --font-weight-bold: 700;
  --space-16: 16px;
  --space-24: 24px;
  --radius-lg: 12px;
}

.hero-section::before {
  pointer-events: none;
}


* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  font-size: var(--font-size-base);
  font-family: var(--font-family-base);
  line-height: 1.5;
  color: var(--color-gray-900);
  background-color: var(--color-white);
}
body { margin: 0; padding: 0; }


.hero-section {
  background: linear-gradient(135deg, var(--color-gray-900) 0%, #1f2937 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-content { position: relative; z-index: 2; color: var(--color-white); }
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-24);
  line-height: 1.25;
  color: var(--color-white);
}
.hero-subtitle {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-24);
  opacity: 0.9;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-16) var(--space-24);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  border: none;
}
.btn--primary {
  background: var(--color-teal-600);
  color: var(--color-white);
}
.btn--cta {
  background: linear-gradient(135deg, var(--color-orange-500) 0%, #ea580c 100%);
  color: var(--color-white);
  padding: var(--space-16) var(--space-24);
  border-radius: 9999px;
  text-transform: uppercase;
}
