/* UncoverTechTalent Website Styles */
/* Brand colors from brand/colors.md */

:root {
  --utt-green: #3d7a35;
  --utt-green-dark: #2d5a27;
  --utt-gold: #d4a84b;
  --utt-highlight: #f5f0e6;
  --utt-text: #1a1a1a;
  --utt-text-light: #555;
  --utt-bg: #fafafa;
  --utt-white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--utt-text);
  background: var(--utt-bg);
}

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

/* Header */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0) 100%);
}

.site-header .logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--utt-white);
  font-weight: 600;
  font-size: 1.1rem;
}

.site-header .logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
}

.site-nav a {
  color: var(--utt-white);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.site-nav a:hover {
  opacity: 1;
}

/* Typography */
h1, h2, h3 {
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 2.8rem;
  color: var(--utt-text);
}

h2 {
  font-size: 1.8rem;
  color: var(--utt-green);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.2rem;
  color: var(--utt-green);
  margin-bottom: 0.8rem;
}

p {
  margin-bottom: 1rem;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--utt-green) 0%, var(--utt-green-dark) 100%);
  color: var(--utt-white);
  padding: 120px 0 80px;
  text-align: center;
}

.hero h1 {
  color: var(--utt-white);
  margin-bottom: 1rem;
}

.hero .subtitle {
  font-size: 1.3rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto 0.5rem;
}

.hero .citation {
  font-size: 0.9rem;
  opacity: 0.7;
  font-style: italic;
  margin-bottom: 2rem;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background: var(--utt-gold);
  color: var(--utt-text);
  padding: 16px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Problem Section */
.problem {
  padding: 80px 0;
  background: var(--utt-white);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 2rem;
}

.stat {
  background: linear-gradient(180deg, var(--utt-green) 0%, var(--utt-green-dark) 100%);
  color: var(--utt-white);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Insight Section */
.insight {
  padding: 80px 0;
  background: var(--utt-highlight);
  text-align: center;
}

.insight blockquote {
  border-left: 5px solid var(--utt-gold);
  padding: 1.5rem 2rem;
  background: var(--utt-white);
  max-width: 600px;
  margin: 0 auto 1.5rem;
  border-radius: 0 8px 8px 0;
}

.insight blockquote p {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--utt-green);
  margin: 0;
}

.insight > .container > p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--utt-text-light);
}

/* Offerings Section */
.offerings {
  padding: 80px 0;
  background: var(--utt-white);
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 2rem;
}

.offering {
  padding: 1.5rem;
  background: var(--utt-bg);
  border-radius: 8px;
  border-top: 4px solid var(--utt-green);
}

.offering ul {
  list-style: none;
  padding: 0;
}

.offering li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}

.offering li:last-child {
  border-bottom: none;
}

/* About Section */
.about {
  padding: 60px 0;
  background: var(--utt-bg);
  text-align: center;
}

.about p {
  max-width: 600px;
  margin: 0 auto 0.5rem;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: var(--utt-green);
  color: var(--utt-white);
  text-align: center;
}

.contact h2 {
  color: var(--utt-white);
}

.contact p {
  max-width: 500px;
  margin: 0 auto 2rem;
  opacity: 0.95;
}

.contact .cta-button {
  background: var(--utt-gold);
  color: var(--utt-text);
}

.contact .secondary-cta {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  opacity: 0.85;
}

.contact .secondary-cta a {
  color: var(--utt-white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact .secondary-cta a:hover {
  opacity: 0.8;
}

/* Pricing Signal */
.pricing-signal {
  padding: 24px 0;
  background: var(--utt-highlight);
  text-align: center;
  border-top: 1px solid #e5e0d5;
  border-bottom: 1px solid #e5e0d5;
}

.pricing-signal p {
  margin: 0;
  color: var(--utt-text-light);
  font-size: 1rem;
}

.pricing-signal strong {
  color: var(--utt-green);
}

/* Footer */
footer {
  padding: 32px 0 24px;
  background: var(--utt-green-dark);
  color: var(--utt-white);
  text-align: center;
  font-size: 0.9rem;
}

footer p {
  margin: 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-tagline {
  font-weight: 600;
  font-size: 1rem;
  opacity: 1;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--utt-white);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-legal {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  .hero {
    padding: 80px 0 50px;
  }

  .stats,
  .offerings-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .site-nav {
    display: none;
  }
}
