/* ============================================
   Fonts
   ============================================ */
@font-face {
  font-family: 'Anton SC';
  src: url('assets/fonts/antonsc.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Tight';
  src: url('assets/fonts/inter-tight.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ubuntu';
  src: url('assets/fonts/ubuntu.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
  background: #0a0a0a;
}
a {
  color: inherit;
  text-decoration: none;
}
img, video {
  display: block;
  max-width: 100%;
  height: auto;
}
ul { list-style: none; }

/* ============================================
   Layout
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section {
  padding: 8rem 0;
}

/* ============================================
   Buttons (Pill style from IL)
   ============================================ */
.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}
.btn-pill {
  padding: 0.75em 2em;
  border-radius: 9999px;
  background: #32373c;
  color: #fff;
}
.btn-pill:hover {
  background: #484e55;
}
.btn-lg {
  font-size: 1rem;
  padding: 1em 2.5em;
}
.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}
.btn-white {
  background: #fff;
  color: #0a0a0a;
}
.btn-white:hover {
  background: #e0e0e0;
}

/* ============================================
   Navigation (IL-style minimal sticky nav)
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.3s ease, padding 0.3s ease;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.75rem 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  font-family: 'Anton SC', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  margin-right: auto;
  margin-left: 3rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #abb8c3;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #fff;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:first-child {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(10, 10, 10, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-family: 'Anton SC', sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0a0a;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.6) 0%,
    rgba(10, 10, 10, 0.3) 50%,
    rgba(10, 10, 10, 0.8) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
}
.hero-label {
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #abb8c3;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Anton SC', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}
.hero-subtitle {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #abb8c3;
  margin-bottom: 2rem;
}
.hero-body {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #c0c0c0;
  max-width: 540px;
  margin: 0 auto 2.5rem;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, #abb8c3);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ============================================
   Section Headers (IL-style)
   ============================================ */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #1e1e1e;
}
.section-label {
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #69727d;
  display: block;
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: 'Anton SC', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}
.section-desc {
  font-size: 1rem;
  color: #abb8c3;
  max-width: 360px;
  text-align: right;
}

/* ============================================
   Portfolio Grid
   ============================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.portfolio-item {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: #141414;
  transition: transform 0.3s ease;
}
.portfolio-item:hover {
  transform: translateY(-4px);
}
.portfolio-item--wide {
  grid-column: span 2;
}
.portfolio-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.portfolio-item--wide .portfolio-media {
  aspect-ratio: 16 / 7;
}
.portfolio-media img,
.portfolio-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.portfolio-item:hover .portfolio-media img,
.portfolio-item:hover .portfolio-media video {
  transform: scale(1.03);
}
.portfolio-info {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.portfolio-info h3 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  color: #fff;
}
.portfolio-tags {
  font-size: 0.8125rem;
  color: #69727d;
}

/* ============================================
   Approach
   ============================================ */
.section-approach {
  background: #0f0f0f;
}
.approach-intro {
  max-width: 680px;
  margin-bottom: 5rem;
}
.approach-founding {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #fff;
  font-weight: 300;
}
.approach-steps {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.approach-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.approach-step:nth-child(even) {
  direction: rtl;
}
.approach-step:nth-child(even) > * {
  direction: ltr;
}
.approach-step-media {
  border-radius: 12px;
  overflow: hidden;
}
.approach-step-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.step-number {
  font-family: 'Anton SC', sans-serif;
  font-size: 0.875rem;
  color: #69727d;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 1rem;
}
.approach-step-content h3 {
  font-family: 'Anton SC', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.approach-step-content p {
  color: #abb8c3;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.step-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.step-services li {
  font-size: 0.8125rem;
  padding: 0.4em 1em;
  border-radius: 9999px;
  border: 1px solid #2a2a2a;
  color: #abb8c3;
}

/* ============================================
   Stats
   ============================================ */
.section-stats {
  border-top: 1px solid #1e1e1e;
  border-bottom: 1px solid #1e1e1e;
}
.section-stats .section-label {
  margin-bottom: 3rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}
.stat {
  text-align: center;
}
.stat-number {
  font-family: 'Anton SC', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  display: block;
  margin-bottom: 0.75rem;
}
.stat p {
  font-size: 0.875rem;
  color: #69727d;
  line-height: 1.5;
}

/* ============================================
   Pricing
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.pricing-card {
  background: #141414;
  border: 1px solid #1e1e1e;
  border-radius: 16px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
}
.pricing-card--featured {
  background: #fff;
  border-color: #fff;
  color: #0a0a0a;
}
.pricing-card-header {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #1e1e1e;
}
.pricing-card--featured .pricing-card-header {
  border-color: #e0e0e0;
}
.pricing-card-header h3 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #69727d;
  margin-bottom: 1rem;
}
.pricing-card--featured .pricing-card-header h3 {
  color: #666;
}
.price {
  font-family: 'Anton SC', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #fff;
}
.pricing-card--featured .price {
  color: #0a0a0a;
}
.price-period {
  font-size: 0.875rem;
  color: #69727d;
  margin-left: 0.25rem;
}
.pricing-features {
  flex: 1;
  margin-bottom: 2.5rem;
}
.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #1e1e1e;
  font-size: 0.9375rem;
  color: #abb8c3;
}
.pricing-card--featured .pricing-features li {
  border-color: #e0e0e0;
  color: #444;
}

/* ============================================
   CTA
   ============================================ */
.section-cta {
  background: linear-gradient(135deg, #141414 0%, #1a1a2e 100%);
  padding: 10rem 0;
}
.cta-content {
  text-align: center;
}
.cta-title {
  font-family: 'Anton SC', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* ============================================
   Footer (IL-style minimal)
   ============================================ */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid #1e1e1e;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4rem;
}
.footer-logo {
  font-family: 'Anton SC', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: #fff;
}
.footer-nav {
  display: flex;
  gap: 4rem;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-col a {
  font-size: 0.875rem;
  color: #69727d;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: #fff;
}
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #1e1e1e;
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: #69727d;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .section { padding: 5rem 0; }

  .nav-links, .nav .btn { display: none; }
  .nav-toggle { display: flex; }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-desc {
    text-align: left;
    max-width: none;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-item--wide {
    grid-column: span 1;
  }
  .portfolio-item--wide .portfolio-media {
    aspect-ratio: 4 / 3;
  }

  .approach-step {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .approach-step:nth-child(even) {
    direction: ltr;
  }
  .approach-step-media img {
    aspect-ratio: 16 / 9;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-nav {
    gap: 3rem;
  }

  .section-cta { padding: 6rem 0; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-title { font-size: 2.5rem; }
  .stats-grid { grid-template-columns: 1fr; }
}
