﻿@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&family=Newsreader:opsz,wght@6..72,400;6..72,500&display=swap');

:root { 
  --ink: #111111; 
  --soft: #f5f5f3; 
  --line: #e6e6e3; 
  --muted: #696967; 
  --radius: 12px; 
}

html { 
  scroll-behavior: smooth; 
}

body { 
  margin: 0; 
  color: var(--ink); 
  background: #fff; 
  font-family: Manrope, Arial, sans-serif; 
  font-size: 15px; 
  -webkit-font-smoothing: antialiased; 
}

::selection { 
  background: #111; 
  color: #fff; 
}

a { 
  color: inherit; 
  text-decoration: none; 
}

.site-shell { 
  overflow: hidden; 
}



.brand { 
  display: flex; 
  align-items: center; 
  gap: 7px; 
  font-weight: 800; 
  letter-spacing: -.06em; 
  font-size: 19px; 
}

.brand-mark { 
  font-family: "DM Mono", monospace; 
  font-size: 13px; 
  letter-spacing: -1.5px; 
  background: #111; 
  color: #fff; 
  padding: 5px 6px 4px; 
  border-radius: 4px; 
}

.nav { 
  display: flex; 
  align-items: center; 
  gap: 27px; 
  font-size: 13px; 
  font-weight: 600; 
}

.nav > a:not(.button) { 
  color: #555; 
  transition: color .2s; 
}

.nav > a:hover { 
  color: #000; 
}

.button { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  gap: 12px; 
  padding: 13px 18px; 
  border: 1px solid #111; 
  border-radius: 7px; 
  background: #111; 
  color: #fff; 
  font-weight: 700; 
  font-size: 13px; 
  transition: transform .2s, background .2s, color .2s; 
  white-space: nowrap; 
}

.button:hover { 
  transform: translateY(-2px); 
  background: #333; 
}

.button--ghost { 
  background: transparent; 
  color: #111; 
  border-color: #d1d1cf; 
}

.button--ghost:hover { 
  background: #f5f5f4; 
}

.menu-toggle { 
  display: none; 
  background: none; 
  border: 0; 
  padding: 8px; 
}

.hero { 
  max-width: 1280px; 
  margin: auto; 
  min-height: 650px; 
  padding: 110px 28px 80px; 
  display: grid; 
  grid-template-columns: 1.05fr .95fr; 
  gap: 55px; 
  align-items: center; 
}

.eyebrow { 
  font-family: "DM Mono", monospace; 
  font-size: 10px; 
  letter-spacing: .09em; 
  color: #747470; 
  margin: 0 0 20px; 
}

.hero h1, 
.section h2, 
.contact h2 { 
  font-size: clamp(47px, 5.25vw, 78px); 
  letter-spacing: -.07em; 
  line-height: .98; 
  max-width: 760px; 
  margin: 0; 
  font-weight: 700; 
}

.hero h1 em, 
.section h2 em { 
  font-family: Newsreader, serif; 
  font-weight: 400; 
  letter-spacing: -.06em; 
}


.hero__lede { 
  max-width: 610px; 
  margin: 28px 0 34px; 
  color: #565654; 
  font-size: 17px; 
  line-height: 1.7; 
}

.hero__actions { 
  display: flex; 
  gap: 10px; 
}

.hero__proof { 
  display: flex; 
  gap: 32px; 
  margin-top: 42px; 
  color: #777; 
  font-size: 11px; 
}

.hero__proof b { 
  display: block; 
  color: #111; 
  font-size: 17px; 
  letter-spacing: -.05em; 
}

.hero-visual { 
  min-height: 440px; 
  position: relative; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
}

.orb { 
  position: absolute; 
  border-radius: 50%; 
  filter: blur(1px); 
}

.orb--one { 
  width: 350px; 
  height: 350px; 
  background: #f0f0ed; 
  top: 26px; 
  right: -40px; 
}

.orb--two { 
  width: 130px; 
  height: 130px; 
  background: #e1e1dc; 
  left: 8px; 
  bottom: 15px; 
}

.browser { 
  position: relative; 
  z-index: 1; 
  width: min(100%, 470px); 
  height: 330px; 
  overflow: hidden; 
  border: 1px solid #d6d6d2; 
  border-radius: 10px; 
  background: #fff; 
  box-shadow: 0 30px 70px rgba(0,0,0,.08); 
  transform: rotate(2deg); 
}

.browser__bar { 
  height: 35px; 
  border-bottom: 1px solid #e7e7e5; 
  padding: 0 12px; 
  display: flex; 
  gap: 5px; 
  align-items: center; 
}

.browser__bar i { 
  width: 6px; 
  height: 6px; 
  border-radius: 50%; 
  background: #cfcfca; 
}

.browser__bar span { 
  margin-left: 8px; 
  color: #9a9a96; 
  font: 9px "DM Mono"; 
}

.browser__body { 
  display: flex; 
  height: 295px; 
}

.browser__sidebar { 
  width: 54px; 
  border-right: 1px solid #ececea; 
  padding: 15px 12px; 
  display: flex; 
  flex-direction: column; 
  gap: 16px; 
}

.browser__sidebar b { 
  font: 10px "DM Mono"; 
}

.browser__sidebar span { 
  height: 3px; 
  background: #deded9; 
  border-radius: 2px; 
}

.browser__content { 
  flex: 1; 
  padding: 26px 27px; 
}

.browser__top { 
  display: flex; 
  justify-content: space-between; 
  font-size: 10px; 
}

.browser__top small { 
  color: #3b7355; 
  background: #edf5ef; 
  padding: 3px 6px; 
  border-radius: 4px; 
}

.browser__headline { 
  margin-top: 31px; 
  font-size: 35px; 
  font-weight: 700; 
  line-height: .92; 
  letter-spacing: -.07em; 
}

.browser__chart { 
  height: 88px; 
  border-bottom: 1px solid #e5e5e1; 
  margin-top: 30px; 
  display: flex; 
  align-items: end; 
  gap: 7px; 
  position: relative; 
}

.browser__chart span { 
  background: #151515; 
  opacity: calc(.25 + var(--i, 1)*.1); 
  width: 17px; 
  border-radius: 2px 2px 0 0; 
}

.browser__chart span:nth-child(1) { height: 30%; }
.browser__chart span:nth-child(2) { height: 48%; }
.browser__chart span:nth-child(3) { height: 41%; }
.browser__chart span:nth-child(4) { height: 68%; }
.browser__chart span:nth-child(5) { height: 57%; }
.browser__chart span:nth-child(6) { height: 90%; }

.float-card { 
  position: absolute; 
  z-index: 2; 
  bottom: 15px; 
  left: -6px; 
  background: #111; 
  color: white; 
  font: 10px "DM Mono"; 
  border-radius: 6px; 
  padding: 13px 16px; 
  box-shadow: 0 10px 20px rgba(0,0,0,.16); 
}

.float-card b { 
  margin-left: 11px; 
  font-family: Manrope; 
  font-size: 18px; 
}

.status-dot { 
  display: inline-block; 
  width: 5px; 
  height: 5px; 
  border-radius: 50%; 
  background: #fff; 
  margin-right: 5px; 
}

.tech-strip { 
  max-width: 1280px; 
  margin: auto; 
  padding: 24px 28px; 
  border-top: 1px solid var(--line); 
  border-bottom: 1px solid var(--line); 
  display: flex; 
  align-items: center; 
  gap: 45px; 
  overflow: hidden; 
}

.tech-strip p { 
  flex-shrink: 0; 
  font: 10px "DM Mono"; 
  color: #777; 
}

.tech-strip div { 
  display: flex; 
  gap: 28px; 
  align-items: center; 
  white-space: nowrap; 
  font-size: 13px; 
  font-weight: 700; 
  color: #6a6a67; 
}

.section { 
  max-width: 1280px; 
  padding: 130px 28px; 
  margin: auto; 
}

.section-intro { 
  max-width: 760px; 
}

.section h2 { 
  font-size: clamp(38px, 4.4vw, 62px); 
}

.section-intro > p:last-child { 
  color: #656562; 
  line-height: 1.7; 
  max-width: 540px; 
  margin: 25px 0 0; 
}

.services-grid { 
  margin-top: 66px; 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  border-top: 1px solid var(--line); 
}

.service-card { 
  padding: 30px 25px 20px 0; 
  border-right: 1px solid var(--line); 
  min-height: 290px; 
}

.service-card:not(:first-child) { 
  padding-left: 25px; 
}

.service-card:last-child { 
  border: 0; 
}

.service-card__icon { 
  margin-bottom: 43px; 
}

.service-card h3, 
.project h3, 
.price-card h3 { 
  font-size: 19px; 
  letter-spacing: -.05em; 
  margin: 0 0 12px; 
}

.service-card p { 
  min-height: 70px; 
  color: #6a6a67; 
  line-height: 1.65; 
  font-size: 13px; 
}

.service-card ul, 
.price-card ul { 
  list-style: none; 
  padding: 0; 
  margin: 22px 0 0; 
  display: grid; 
  gap: 9px; 
  font-size: 12px; 
}

.service-card li, 
.price-card li { 
  display: flex; 
  gap: 8px; 
  align-items: center; 
}

.service-card li svg, 
.price-card li svg { 
  color: #686864; 
}

.section--dark { 
  max-width: none; 
  background: #121212; 
  color: #fff; 
  padding-left: max(28px, calc((100vw - 1224px)/2)); 
  padding-right: max(28px, calc((100vw - 1224px)/2)); 
}

.section--dark .eyebrow { 
  color: #a4a4a0; 
}

.benefits { 
  margin-top: 70px; 
  border-top: 1px solid #383838; 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
}

.benefits div { 
  min-height: 88px; 
  display: flex; 
  gap: 13px; 
  align-items: center; 
  border-bottom: 1px solid #383838; 
  border-right: 1px solid #383838; 
  padding: 0 18px; 
}

.benefits div:nth-child(3n) { 
  border-right: 0; 
}

.benefits span { 
  font: 10px "DM Mono"; 
  color: #858582; 
}

.benefits b { 
  font-size: 14px; 
}

.dark-cta { 
  display: flex; 
  margin-top: 55px; 
  align-items: center; 
  justify-content: space-between; 
}

.dark-cta p { 
  font-size: 20px; 
  letter-spacing: -.04em; 
}

.dark-cta .button { 
  background: white; 
  color: #111; 
  border-color: white; 
}

.projects { 
  padding-bottom: 90px; 
}

.projects-head { 
  display: flex; 
  align-items: end; 
  justify-content: space-between; 
  gap: 20px; 
}

.project-list { 
  margin-top: 70px; 
}

.project { 
  display: grid; 
  grid-template-columns: 1.25fr .75fr; 
  gap: 55px; 
  padding: 0 0 72px; 
  margin-bottom: 52px; 
  border-bottom: 1px solid var(--line); 
}

.project:nth-child(even) .project__image { 
  order: 2; 
}

.project__image { 
  min-height: 330px; 
  background: #eeeee9; 
  border-radius: 8px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  overflow: hidden; 
}

.project__image--1 { background: #d9dbd7; }
.project__image--2 { background: #e6e4de; }
.project__image--3 { background: #dfddd5; }
.project__image--4 { background: #dadbd8; }
.project__image--5 { background: #e8e8e6; }

.project__mock { 
  width: 70%; 
  height: 72%; 
  background: #111; 
  border: 7px solid white; 
  border-radius: 4px; 
  box-shadow: 0 14px 25px rgba(0,0,0,.14); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: #fff; 
  font-family: Newsreader; 
  font-size: clamp(19px, 3vw, 34px); 
  letter-spacing: -.07em; 
}

.project__image--2 .project__mock { 
  background: #f8f7f3; 
  color: #222; 
  border-radius: 50% 50% 0 0; 
}

.project__image--3 .project__mock { 
  background: #342b26; 
}

.project__image--4 .project__mock { 
  background: #f4f4ee; 
  color: #111; 
}

.project__image--5 .project__mock { 
  background: #17191f; 
  color: #ddd; 
}

.project__meta { 
  align-self: center; 
}

.project__meta h3 { 
  font-size: 30px; 
}

.project__meta > p:nth-of-type(2) { 
  color: #5f5f5b; 
  line-height: 1.65; 
  font-size: 14px; 
}

.project__meta > div { 
  display: flex; 
  justify-content: space-between; 
  gap: 20px; 
  margin-top: 28px; 
  align-items: center; 
  font: 10px "DM Mono"; 
  color: #777; 
}

.project__meta a { 
  color: #111; 
  display: flex; 
  align-items: center; 
  gap: 6px; 
  font-family: Manrope; 
  font-weight: 700; 
  font-size: 12px; 
}

.process { 
  display: grid; 
  grid-template-columns: .8fr 1.2fr; 
  gap: 80px; 
  border-top: 1px solid var(--line); 
}

.process ol { 
  list-style: none; 
  padding: 0; 
  margin: 0; 
  border-top: 1px solid var(--line); 
}

.process li { 
  padding: 23px 0; 
  display: grid; 
  grid-template-columns: 64px 1fr; 
  gap: 18px; 
  border-bottom: 1px solid var(--line); 
}

.process li > span { 
  font: 10px "DM Mono"; 
  color: #7d7d79; 
  padding-top: 5px; 
}

.process li h3 { 
  margin: 0; 
  font-size: 18px; 
  letter-spacing: -.045em; 
}

.process li p { 
  margin: 7px 0 0; 
  color: #70706d; 
  font-size: 13px; 
}

.pricing { 
  background: #f5f5f3; 
  max-width: none; 
  padding-left: max(28px, calc((100vw - 1224px)/2)); 
  padding-right: max(28px, calc((100vw - 1224px)/2)); 
}

.pricing-grid { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 12px; 
  margin-top: 65px; 
}

.price-card { 
  background: #fff; 
  padding: 28px; 
  border: 1px solid #e4e4df; 
  border-radius: 8px; 
  display: flex; 
  flex-direction: column; 
  min-height: 340px; 
}

.price-card > small { 
  font: 9px "DM Mono"; 
  margin-bottom: 25px; 
}

.price-card > p { 
  color: #686864; 
  line-height: 1.6; 
  font-size: 13px; 
  min-height: 84px; 
}

.price-card ul { 
  flex: 1; 
}

.price-card .button { 
  margin-top: 28px; 
  width: 85%; 
}

.price-card--featured { 
  background: #151515; 
  color: white; 
  border-color: #151515; 
}

.price-card--featured > p, 
.price-card--featured li svg { 
  color: #b9b9b6; 
}

.price-card--featured .button { 
  background: white; 
  color: #111; 
  border-color: white; 
}

.faq-section { 
  display: grid; 
  grid-template-columns: .8fr 1.2fr; 
  gap: 85px; 
}

.faq-list { 
  border-top: 1px solid var(--line); 
}

.faq { 
  border-bottom: 1px solid var(--line); 
}

.faq button { 
  width: 100%; 
  border: 0; 
  padding: 19px 0; 
  background: none; 
  text-align: left; 
  font: 600 14px Manrope; 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  cursor: pointer; 
}

.faq__plus { 
  transition: transform .25s; 
}

.faq--open .faq__plus { 
  transform: rotate(45deg); 
}

.faq p { 
  margin: -3px 35px 18px 0; 
  color: #666662; 
  font-size: 13px; 
  line-height: 1.65; 
}

.contact { 
  max-width: 1280px; 
  margin: 0 auto 55px; 
  border-radius: 10px; 
  background: #111; 
  color: #fff; 
  padding: 75px; 
  display: grid; 
  grid-template-columns: .85fr 1.15fr; 
  gap: 90px; 
}

.contact .eyebrow { 
  color: #9b9b97; 
}

.contact h2 { 
  font-size: clamp(42px, 4vw, 59px); 
}

.contact__intro > p:nth-of-type(2) { 
  color: #bcbcb8; 
  line-height: 1.7; 
  font-size: 14px; 
  max-width: 380px; 
  margin: 24px 0 34px; 
}

.contact-link { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  width: max-content; 
  margin: 13px 0; 
  font-size: 13px; 
  font-weight: 600; 
}

.contact-form { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 19px; 
  align-content: start; 
}

.contact-form label { 
  color: #a6a6a2; 
  font: 10px "DM Mono"; 
  display: grid; 
  gap: 8px; 
}

.contact-form input, 
.contact-form textarea { 
  background: transparent; 
  border: 0; 
  border-bottom: 1px solid #595956; 
  color: #fff; 
  padding: 8px 0 10px; 
  font: 14px Manrope; 
  outline: none; 
  resize: vertical; 
  border-radius: 0; 
}

.contact-form input:focus, 
.contact-form textarea:focus { 
  border-color: #fff; 
}

.field-full { 
  grid-column: 1/-1; 
}

.contact-form .button { 
  width: max-content; 
  margin-top: 8px; 
  background: white; 
  color: #111; 
  border-color: white; 
}

.contact-form > small { 
  align-self: center; 
  color: #989894; 
  font-size: 10px; 
}

footer { 
  max-width: 1280px; 
  margin: auto; 
  padding: 24px 28px 36px; 
  display: grid; 
  grid-template-columns: 1fr 1.6fr 1fr; 
  align-items: center; 
  gap: 25px; 
  border-top: 1px solid var(--line); 
}

footer > p { 
  color: #767672; 
  font-size: 11px; 
}

footer > div { 
  display: flex; 
  justify-content: flex-end; 
  gap: 16px; 
  font-size: 11px; 
  font-weight: 600; 
}

footer > small { 
  grid-column: 1/-1; 
  color: #989894; 
  font-size: 10px; 
}

footer small a { 
  text-decoration: underline; 
}

@media (max-width: 950px) { 
  .nav { 
    gap: 14px; 
  }
  .hero { 
    grid-template-columns: 1fr; 
    padding-top: 82px; 
  }
  .hero-visual { 
    min-height: 330px; 
  }
  .services-grid, 
  .pricing-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .service-card:nth-child(2) { 
    border-right: 0; 
  }
  .service-card:nth-child(3) { 
    padding-left: 0; 
    margin-top: 25px; 
  }
  .benefits { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .benefits div:nth-child(3n) { 
    border-right: 1px solid #383838; 
  }
  .benefits div:nth-child(2n) { 
    border-right: 0; 
  }
  .contact { 
    margin: 0 28px 40px; 
  }
  .project { 
    gap: 35px; 
  }
  .section { 
    padding-top: 95px; 
    padding-bottom: 95px; 
  } 
}

@media (max-width: 700px) { 
  .header { 
    height: 68px; 
    padding: 0 20px; 
  }
  .menu-toggle { 
    display: block; 
  }
  .nav { 
    display: none; 
    position: absolute; 
    top: 67px; 
    left: 0; 
    right: 0; 
    background: white; 
    border-bottom: 1px solid var(--line); 
    padding: 20px; 
    flex-direction: column; 
    align-items: stretch; 
  }
  .nav--open { 
    display: flex; 
  }
  .nav .button { 
    margin-top: 6px; 
  }
  .hero { 
    padding: 67px 20px 60px; 
    min-height: auto; 
  }
  .hero h1 { 
    font-size: 48px; 
  }
  .hero__lede { 
    font-size: 15px; 
  }
  .hero__proof { 
    gap: 20px; 
  }
  .hero-visual { 
    min-height: 275px; 
  }
  .browser { 
    height: 250px; 
  }
  .browser__body { 
    height: 215px; 
  }
  .browser__content { 
    padding: 19px; 
  }
  .browser__headline { 
    font-size: 28px; 
    margin-top: 18px; 
  }
  .browser__chart { 
    margin-top: 18px; 
  }
  .tech-strip { 
    padding: 20px; 
    gap: 25px; 
  }
  .tech-strip p { 
    display: none; 
  }
  .section { 
    padding: 75px 20px; 
  }
  .services-grid, 
  .pricing-grid { 
    grid-template-columns: 1fr; 
  }
  .service-card, 
  .service-card:not(:first-child), 
  .service-card:nth-child(3) { 
    padding: 26px 0; 
    border-right: 0; 
    border-bottom: 1px solid var(--line); 
    min-height: auto; 
    margin: 0; 
  }
  .service-card__icon { 
    margin-bottom: 26px; 
  }
  .service-card p { 
    min-height: auto; 
  }
  .section--dark, 
  .pricing { 
    padding-left: 20px; 
    padding-right: 20px; 
  }
  .benefits { 
    grid-template-columns: 1fr; 
    margin-top: 45px; 
  }
  .benefits div, 
  .benefits div:nth-child(3n) { 
    border-right: 0; 
  }
  .dark-cta { 
    align-items: flex-start; 
    flex-direction: column; 
    gap: 16px; 
  }
  .projects-head { 
    align-items: flex-start; 
    flex-direction: column; 
  }
  .project, 
  .project:nth-child(even) { 
    grid-template-columns: 1fr; 
    gap: 25px; 
    padding-bottom: 44px; 
    margin-bottom: 35px; 
  }
  .project:nth-child(even) .project__image { 
    order: 0; 
  }
  .project__image { 
    min-height: 240px; 
  }
  .process, 
  .faq-section { 
    grid-template-columns: 1fr; 
    gap: 40px; 
  }
  .price-card { 
    min-height: auto; 
  }
  .price-card > p { 
    min-height: auto; 
  }
  .contact { 
    margin: 0 20px 30px; 
    padding: 42px 25px; 
    grid-template-columns: 1fr; 
    gap: 35px; 
  }
  .contact-form { 
    grid-template-columns: 1fr; 
  }
  .contact-form .button { 
    width: 100%; 
  }
  .contact-form > small { 
    line-height: 1.5; 
  }
  footer { 
    padding: 23px 20px; 
    grid-template-columns: 1fr; 
  }
  footer > div { 
    justify-content: flex-start; 
    flex-wrap: wrap; 
  } 
}

/* Motion: lightweight, user-preference aware, and only activated as sections enter the viewport. */
.reveal { opacity:0; transform:translateY(22px); transition:opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.reveal--visible { opacity:1; transform:translateY(0); }
.reveal--visible .reveal-item { animation:rise-in .62s cubic-bezier(.22,1,.36,1) both; }
.reveal--visible .reveal-item:nth-child(2) { animation-delay:.08s; }
.reveal--visible .reveal-item:nth-child(3) { animation-delay:.16s; }
.reveal--visible .reveal-item:nth-child(4) { animation-delay:.24s; }
.reveal--visible .reveal-item:nth-child(5) { animation-delay:.32s; }
@keyframes rise-in { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
.hero__copy { animation:hero-in .8s cubic-bezier(.22,1,.36,1) both; }
.hero-visual { animation:hero-in .9s .12s cubic-bezier(.22,1,.36,1) both; }
@keyframes hero-in { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
.button svg { transition:transform .2s ease; }.button:hover svg { transform:translateX(3px); }
.service-card { transition:background .25s ease, transform .25s ease, padding .25s ease; }.service-card:hover { background:#f7f7f5; transform:translateY(-5px); }.service-card__icon { transition:transform .3s cubic-bezier(.22,1,.36,1); }.service-card:hover .service-card__icon { transform:translateX(5px) rotate(-6deg); }
.project__image { transition:transform .45s cubic-bezier(.22,1,.36,1), filter .45s ease; }.project:hover .project__image { transform:scale(.985); filter:contrast(1.03); }.project__mock { transition:transform .55s cubic-bezier(.22,1,.36,1), box-shadow .55s ease; }.project:hover .project__mock { transform:scale(1.06) rotate(-1deg); box-shadow:0 24px 38px rgba(0,0,0,.2); }.project__meta a svg { transition:transform .2s ease; }.project__meta a:hover svg { transform:translateX(4px); }
.price-card { transition:transform .25s ease, box-shadow .25s ease; }.price-card:hover { transform:translateY(-6px); box-shadow:0 20px 35px rgba(0,0,0,.07); }.price-card--featured:hover { box-shadow:0 20px 35px rgba(0,0,0,.2); }
.benefits div { transition:background .2s ease, padding .2s ease; }.benefits div:hover { background:#1d1d1d; padding-left:24px; }
.faq button span:first-child { transition:transform .2s ease; }.faq button:hover span:first-child { transform:translateX(4px); }
.contact-link { transition:opacity .2s ease, transform .2s ease; }.contact-link:hover { opacity:.7; transform:translateX(4px); }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior:auto !important; animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }.reveal { opacity:1; transform:none; } }

/* Hero kinetic composition */
.hero-grid { position:absolute; inset:5% -8% 0 4%; opacity:.55; background-image:linear-gradient(#deded9 1px, transparent 1px),linear-gradient(90deg,#deded9 1px, transparent 1px); background-size:28px 28px; mask-image:radial-gradient(circle at 55% 48%,#000 0,transparent 66%); -webkit-mask-image:radial-gradient(circle at 55% 48%,#000 0,transparent 66%); }
.orbit { position:absolute; border:1px solid rgba(36,36,34,.16); border-radius:50%; z-index:0; animation:orbit-spin 18s linear infinite; }.orbit i { position:absolute; width:7px; height:7px; border-radius:50%; background:#111; top:-4px; left:50%; box-shadow:0 0 0 5px rgba(17,17,17,.06); }.orbit--outer { width:390px; height:390px; right:8px; top:17px; }.orbit--inner { width:255px; height:255px; right:76px; top:85px; animation-duration:12s; animation-direction:reverse; }.orbit--inner i { width:5px; height:5px; background:#868681; }
@keyframes orbit-spin { to { transform:rotate(360deg); } }
.visual-label { position:absolute; z-index:3; font:9px "DM Mono"; letter-spacing:.08em; color:#777; }.visual-label--top { top:12px; left:16px; animation:label-flicker 5s ease-in-out infinite; }.visual-label--right { writing-mode:vertical-rl; right:1px; bottom:54px; }.visual-label--right::before { content:""; display:inline-block; width:5px; height:5px; border-radius:50%; background:#111; margin-bottom:8px; animation:blink 1.6s ease-in-out infinite; }
@keyframes label-flicker { 0%,100% { opacity:.45; } 50% { opacity:1; } } @keyframes blink { 50% { opacity:.18; } }
.browser { animation:browser-breathe 6s ease-in-out infinite; }.browser:hover { animation-play-state:paused; transform:rotate(0deg) translateY(-5px); transition:transform .35s cubic-bezier(.22,1,.36,1); } @keyframes browser-breathe { 0%,100% { transform:rotate(2deg) translateY(0); } 50% { transform:rotate(1.2deg) translateY(-7px); } }
.browser__pulse { position:absolute; left:27px; bottom:19px; display:flex; gap:6px; align-items:center; font:8px "DM Mono"; color:#888; }.browser__pulse span { width:5px; height:5px; border-radius:50%; background:#111; animation:pulse-dot 1.5s ease-in-out infinite; } @keyframes pulse-dot { 50% { transform:scale(1.8); opacity:.25; } }
.float-card { animation:float-card 4s ease-in-out infinite; }.mini-metric { position:absolute; right:-13px; top:55px; z-index:2; padding:11px 13px; min-width:85px; border:1px solid #ddd; border-radius:6px; background:rgba(255,255,255,.84); backdrop-filter:blur(7px); box-shadow:0 12px 28px rgba(0,0,0,.08); animation:float-card 5s .4s ease-in-out infinite reverse; }.mini-metric span { display:block; font:8px "DM Mono"; color:#888; }.mini-metric b { display:inline-block; margin-top:4px; font-size:18px; letter-spacing:-.08em; }.mini-metric small { display:block; margin-top:1px; font:8px "DM Mono"; color:#777; } @keyframes float-card { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-7px); } }
@media (max-width:700px) { .orbit--outer { width:290px; height:290px; right:-25px; top:0; }.orbit--inner { width:190px; height:190px; right:24px; top:50px; }.visual-label--right { right:-3px; }.mini-metric { right:-5px; top:28px; transform:scale(.86); transform-origin:top right; }.browser__pulse { left:19px; bottom:12px; } }
@media (prefers-reduced-motion: reduce) { .orbit,.browser,.float-card,.mini-metric,.visual-label--top,.visual-label--right::before,.browser__pulse span { animation:none !important; } }
/* PHP markup compatibility */
body>header{height:80px;max-width:1280px;margin:auto;padding:0 28px;display:flex;justify-content:space-between;align-items:center;border-bottom:1px solid var(--line)}
body>header nav{display:flex;align-items:center;gap:27px;font-size:13px;font-weight:600}.hero{max-width:1280px;margin:auto}.hero-copy{animation:hero-in .8s cubic-bezier(.22,1,.36,1) both}.lede{max-width:610px;margin:28px 0 34px;color:#565654;font-size:17px;line-height:1.7}.actions{display:flex;gap:10px}.proof{display:flex;gap:32px;margin-top:42px;color:#777;font-size:11px}.proof strong{display:block;color:#111;font-size:17px}.visual{min-height:440px;position:relative;display:flex;align-items:center;justify-content:center;animation:hero-in .9s .12s cubic-bezier(.22,1,.36,1) both}.visual .grid{position:absolute;inset:5% -8% 0 4%;opacity:.55;background-image:linear-gradient(#deded9 1px,transparent 1px),linear-gradient(90deg,#deded9 1px,transparent 1px);background-size:28px 28px;mask-image:radial-gradient(circle at 55% 48%,#000 0,transparent 66%)}.visual .orb{position:absolute;border-radius:50%;z-index:0}.visual .one{width:350px;height:350px;background:#f0f0ed;top:26px;right:-40px}.visual .two{width:130px;height:130px;background:#e1e1dc;left:8px;bottom:15px}.visual .browser{position:relative;z-index:1;width:min(100%,470px);height:330px;overflow:hidden;border:1px solid #d6d6d2;border-radius:10px;background:#fff;box-shadow:0 30px 70px rgba(0,0,0,.08)}.bar{height:35px;border-bottom:1px solid #e7e7e5;padding:0 12px;display:flex;gap:5px;align-items:center}.bar i{width:6px;height:6px;border-radius:50%;background:#cfcfca}.bar span{margin-left:8px;color:#9a9a96;font:9px "DM Mono"}.screen{display:flex;height:295px}.screen aside{width:54px;border-right:1px solid #ececea;padding:15px 12px;display:flex;flex-direction:column;gap:16px}.screen aside b{font:10px "DM Mono"}.screen aside i{height:3px;background:#deded9;border-radius:2px}.dashboard{flex:1;padding:26px 27px;font-size:10px}.dashboard>div:first-child{display:flex;justify-content:space-between}.dashboard small{color:#3b7355}.dashboard h3{margin:31px 0 0;font-size:35px;line-height:.92;letter-spacing:-.07em}.chart{height:88px;border-bottom:1px solid #e5e5e1;margin-top:30px;display:flex;align-items:end;gap:7px}.chart i{background:#151515;width:17px;border-radius:2px 2px 0 0}.chart i:nth-child(1){height:30%}.chart i:nth-child(2){height:48%}.chart i:nth-child(3){height:41%}.chart i:nth-child(4){height:68%}.chart i:nth-child(5){height:57%}.chart i:nth-child(6){height:90%}.dashboard p{font:8px "DM Mono";color:#888}.dashboard p b{display:inline-block;width:5px;height:5px;border-radius:50%;background:#111;animation:pulse-dot 1.5s infinite}.performance{position:absolute;z-index:2;bottom:15px;left:-6px;background:#111;color:white;font:10px "DM Mono";border-radius:6px;padding:13px 16px;animation:float-card 4s infinite}.performance b{margin-left:11px;font:18px Manrope}.metric{position:absolute;right:-13px;top:55px;z-index:2;padding:11px 13px;background:#fffc;border:1px solid #ddd;border-radius:6px}.metric>*{display:block}.metric b{font-size:18px}
.strip {
  max-width: 1280px;
  margin: auto;
  padding: 24px 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 28px;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

/* Efecto cuando pasas el ratón por toda la tira */
.strip:hover {
  background-color: #fafafa;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.strip p, .strip span {
  font-size: 11px;
  font-weight: 700;
  color: #696967;
  transition: all 0.3s ease;
}

.strip p {
  font-family: "DM Mono";
}

/* Cada tecnología individual se transforma al pasar el ratón */
.strip span {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
}

.strip span:hover {
  color: #000000;
  background-color: #f1f1f1;
  transform: translateY(-2px);
}
  .intro{
    max-width:760px
  }.intro>p:last-child{
    color:#656562;line-height:1.7;max-width:540px;margin:25px 0 0}.services{margin-top:66px;display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid var(--line)}
    .services article{padding:30px 25px;min-height:290px;border-right:1px solid var(--line);transition:.25s}
    .services article:hover{background:#f7f7f5;transform:translateY(-5px)}.services article:last-child{border:0}
    .services h3,.plans h3{font-size:19px;letter-spacing:-.05em}.services article>p{color:#6a6a67;line-height:1.65;font-size:13px;min-height:70px}
    .services ul,.plans ul{list-style:none;padding:0;display:grid;gap:9px;font-size:12px}
.icon{
  font-size:25px;
  margin-bottom:43px}

  .dark{
    background:#121212;
    color:#fff;
    padding:130px max(28px,calc((100vw - 1224px)/2))
}

.inner{max-width:1280px;margin:auto}.dark .eyebrow{color:#a4a4a0}
.benefits{margin-top:70px;border-top:1px solid #383838;display:grid;grid-template-columns:repeat(3,1fr)}
.benefits div{min-height:88px;display:flex;gap:13px;align-items:center;border-bottom:1px solid #383838;border-right:1px solid #383838;padding:0 18px;transition:.2s}.benefits div:hover{background:#1d1d1d;padding-left:24px}.benefits small,.process small{font:10px "DM Mono";color:#858582}.dark-cta{display:flex;justify-content:space-between;align-items:center;margin-top:55px}.dark-cta p{font-size:20px}.white{background:#fff!important;color:#111!important;border-color:#fff!important}.project-head{display:flex;justify-content:space-between;align-items:end;gap:20px}.projects{margin-top:70px}.project{display:grid;grid-template-columns:1.25fr .75fr;gap:55px;padding-bottom:72px;margin-bottom:52px;border-bottom:1px solid var(--line)}.project:nth-child(even) .project-image{order:2}.project-image{min-height:330px;background:#eeeee9;border-radius:8px;display:flex;align-items:center;justify-content:center}.p1{background:#d9dbd7}.p2{background:#e6e4de}.p3{background:#dfddd5}.p4{background:#dadbd8}.p5{background:#e8e8e6}.project-image div{width:70%;height:72%;background:#111;border:7px solid white;box-shadow:0 14px 25px #0002;display:flex;align-items:center;justify-content:center;color:white;font:34px Newsreader;transition:.55s}.project:hover .project-image div{transform:scale(1.06) rotate(-1deg)}.project-copy{align-self:center}.project-copy h3{font-size:30px;margin:0}.project-copy>p:nth-of-type(2){color:#5f5f5b;line-height:1.65;font-size:14px}.project-copy footer{display:flex;justify-content:space-between;margin-top:28px;font-size:12px}.process{display:grid;grid-template-columns:.8fr 1.2fr;gap:80px;border-top:1px solid var(--line)}.process ol{list-style:none;margin:0;padding:0;border-top:1px solid var(--line)}.process li{padding:23px 0;display:grid;grid-template-columns:64px 1fr;gap:18px;border-bottom:1px solid var(--line)}.process h3{margin:0}.process li p{margin:7px 0;color:#70706d;font-size:13px}.pricing{padding:130px max(28px,calc((100vw - 1224px)/2));background:#f5f5f3}.plans{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:65px}.plans article{background:#fff;padding:28px;border:1px solid #e4e4df;border-radius:8px;display:flex;flex-direction:column;min-height:340px;transition:.25s}.plans article:hover{transform:translateY(-6px);box-shadow:0 20px 35px #00000012}.plans article>p{color:#686864;line-height:1.6;font-size:13px;min-height:84px}.plans ul{flex:1}.plans .button{margin-top:28px}.plans .featured{background:#151515;color:#fff}.faq-section{display:grid;grid-template-columns:.8fr 1.2fr;gap:85px}.faqs{border-top:1px solid var(--line)}details{border-bottom:1px solid var(--line)}summary{padding:19px 0;cursor:pointer;list-style:none;font-size:14px;font-weight:600;display:flex;justify-content:space-between}summary::-webkit-details-marker{display:none}summary i{font-style:normal;transition:.2s}details[open] summary i{transform:rotate(45deg)}details p{margin:0 35px 18px 0;color:#666662;font-size:13px;line-height:1.65}.contact{max-width:1130px;margin:0 auto 55px;border-radius:10px;background:#111;color:#fff;padding:75px;display:grid;grid-template-columns:.85fr 1.15fr;gap:90px}.contact>div>p:nth-of-type(2){color:#bcbcb8;line-height:1.7;font-size:14px}.contact>div>a{display:block;margin:13px 0;font-weight:600;font-size:13px}.contact form{display:grid;grid-template-columns:1fr 1fr;gap:19px}.contact label{color:#a6a6a2;font:10px "DM Mono";display:grid;gap:8px}.contact input,.contact textarea{background:transparent;border:0;border-bottom:1px solid #595956;color:#fff;padding:8px 0 10px;font:14px Manrope;outline:0}.contact .full{grid-column:1/-1}.contact button{width:max-content}

@media(max-width:700px){body>header{height:68px;padding:0 20px}body>header nav>a:not(.button){display:none}
.hero{padding:67px 20px 60px}.hero h1{font-size:48px}.visual{min-height:275px}.visual .browser{height:250px}.screen{height:215px}
.dashboard{padding:19px}.dashboard h3{font-size:28px;margin-top:18px}.strip{padding:20px}.strip p{display:none}
.section{padding:75px 20px}.services,.plans{grid-template-columns:1fr}.services article{border-right:0;border-bottom:1px solid var(--line);min-height:auto}
.dark,.pricing{padding:75px 20px}.benefits{grid-template-columns:1fr}.benefits div{border-right:0}.project,.project:nth-child(even){grid-template-columns:1fr;gap:25px}
.project:nth-child(even) .project-image{order:0}.project-image{min-height:240px}
.process,.faq-section{grid-template-columns:1fr;gap:40px}.contact{margin:0 20px 30px;padding:42px 25px;grid-template-columns:1fr;gap:35px}
.contact form{grid-template-columns:1fr}.contact button{width:100%}.site-footer{padding:23px 20px;grid-template-columns:1fr}
.hero-copy{padding:0}.proof{gap:20px}}




/* Contenedor general de la sección de proyectos */
.project {
    display: flex;
    flex-direction: row-reverse; /* Imagen a la derecha por defecto */
    align-items: center;
    gap: 3rem;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
}

.project:nth-child(odd) {
    flex-direction: row; /* Imagen a la izquierda */
}

/* Fila PAR: Invierte el orden para que el texto vaya a la izquierda y la foto a la derecha */
.project:nth-child(even) {
    flex-direction: row-reverse;
}

/* Contenedor de la imagen (tamaño compacto y ordenado) */
.project-image, 
.project__image {
    flex: 1; /* Ocupa el 50% del ancho */
    height: 320px; /* Altura controlada */
    overflow: hidden;
    border-radius: 12px;
    background-color: #f1f5f9;
    position: relative;
}

/* Estilo de la foto dentro de la tarjeta */
.project-image img, 
.project__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Efecto zoom suave al pasar el cursor */
.project:hover .project-image img,
.project:hover .project__image img {
    transform: scale(1.04);
}

/* Bloque de texto del proyecto */
.project-copy, 
.project__meta {
    flex: 1; /* Ocupa el otro 50% del ancho */
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.project-copy .eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.project-copy h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.project-copy p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Pie de la tarjeta */
.project-copy footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 1rem;
    font-size: 0.85rem;
}

.project-copy footer small {
    color: #94a3b8;
}

.project-copy footer a {
    color: #0f172a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.project-copy footer a:hover {
    color: #2563eb;
}

/* Adaptabilidad para móviles: en pantallas pequeñas vuelve a apilarse todo verticalmente */
@media (max-width: 768px) {
    .project, 
    .project:nth-child(even) {
        flex-direction: column;
    }
    
    .project-image, 
    .project__image {
        width: 100%;
        height: 220px;
    }
}