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

:root {
  --bg: #ffffff;
  --bg-alt: #fafafa;
  --text-primary: #111111;
  --text-secondary: #555555;
  --text-muted: #aaaaaa;
  --border: #f0f0f0;
  --accent-start: #f97316;
  --accent-end: #ec4899;
  --gradient: linear-gradient(90deg, var(--accent-start), var(--accent-end));
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1100px;
  --section-padding: 72px 48px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-padding);
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-start);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  :root {
    --section-padding: 48px 24px;
  }
}

/* Nav */
#nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}

#nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--accent-start);
}

@media (max-width: 768px) {
  .nav-inner {
    padding: 16px 24px;
  }
  .nav-links {
    gap: 16px;
  }
  .nav-links a {
    font-size: 13px;
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient);
  pointer-events: none;
}

.hero-blob--1 {
  width: 480px;
  height: 480px;
  top: -120px;
  right: -120px;
  opacity: 0.07;
}

.hero-blob--2 {
  width: 200px;
  height: 200px;
  bottom: -40px;
  right: 80px;
  opacity: 0.04;
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-start);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--text-primary);
  margin-bottom: 24px;
  max-width: 640px;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: opacity 0.15s, transform 0.15s;
}

.btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--gradient);
  color: #fff;
  padding: 13px 26px;
}

.btn--text {
  color: var(--text-primary);
  border-bottom: 1.5px solid var(--border);
  padding-bottom: 2px;
  border-radius: 0;
}

.btn--text:hover {
  border-color: var(--accent-start);
  color: var(--accent-start);
  transform: none;
  opacity: 1;
}

/* About */
.about {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.about-copy p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
}

.about-copy p + p {
  margin-top: 16px;
}

.industries {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.industry-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 13px;
  color: #333;
}

.industry-pill::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Work */
.work-card {
  background: #111;
  border-radius: 16px;
  padding: 40px 44px;
}

.work-card-content {
  max-width: 600px;
}

.work-badge {
  display: inline-block;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.35);
  color: var(--accent-start);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.work-title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.work-desc {
  font-size: 15px;
  color: #aaa;
  line-height: 1.75;
  margin-bottom: 20px;
}

.work-example {
  font-size: 13px;
  color: #666;
}

.work-example-link {
  color: var(--accent-start);
  text-decoration: none;
  font-weight: 600;
}

.work-example-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .work-card {
    padding: 28px 24px;
  }
}

/* Contact */
.contact {
  border-top: 1px solid var(--border);
}

.contact-inner {
  text-align: center;
}

.contact-heading {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.contact-sub {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.contact-ctas {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn--outline {
  border: 1.5px solid var(--border);
  color: var(--text-primary);
  padding: 12px 24px;
}

.btn--outline:hover {
  border-color: var(--text-primary);
  opacity: 1;
  transform: translateY(-1px);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-inner span {
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .footer-inner {
    padding: 20px 24px;
  }
}
