:root {
  --navy: #0f172a;
  --navy2: #1e293b;
  --blue: #2563eb;
  --sage: #89a99f;
  --gold: #d3b37a;
  --cream: #fbfaf7;
  --soft: #f1f5f6;
  --white: #fff;
  --text: #243042;
  --muted: #64748b;
  --border: #dde4e7;
  --shadow: 0 24px 70px rgba(15, 23, 42, .12)
}
* {
  box-sizing: border-box
}
html {
  scroll-behavior: smooth
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font: 16px/1.65 Arial, sans-serif
}
a {
  color: var(--blue)
}
.container {
  width: min(1160px, 92%);
  margin: auto
}
.skip {
  position: fixed;
  transform: translateY(-150%)
}
.skip:focus {
  transform: none
}
.sr-only, .hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0)
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 247, .94);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border)
}
.nav {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between
}
.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--navy);
  text-decoration: none;
  font-weight: 900
}
.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 12px
}
.nav nav {
  display: flex;
  align-items: center;
  gap: 1.3rem
}
.nav nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 800;
}

.nav nav a.active {
    color: var(--blue);
    border-bottom: 3px solid var(--blue);
    padding-bottom: 4px;
}

.nav nav a:hover {
    color: var(--blue);
}
.menu {
  display: none;
  border: 0;
  background: none;
  font-size: 1.8rem
}
.hero, .page-hero {
  color: white;
  background: radial-gradient(circle at 78% 20%, rgba(59, 130, 246, .34), transparent 25%), radial-gradient(circle at 14% 86%, rgba(137, 169, 159, .27), transparent 28%), linear-gradient(135deg, var(--navy), var(--navy2))
}
.hero {
  padding: 125px 0
}
.page-hero {
  padding: 105px 0;
  text-align: center
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 72px;
  align-items: center
}
.eyebrow {
  margin: 0 0 .7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .82rem;
  font-weight: 900
}
.hero h1, .page-hero h1 {
  font-size: clamp(3rem, 7vw, 6.3rem);
  line-height: .93;
  letter-spacing: -.06em;
  margin: 0 0 1.25rem
}
.lead, .page-hero p {
  color: #dbeafe;
  font-size: 1.22rem
}
.actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0 1.3rem
}
.btn {
  display: inline-block;
  border: 0;
  border-radius: 999px;
  padding: 1rem 1.3rem;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer
}
.primary {
  background: var(--blue);
  color: white
}
.secondary {
  color: white;
  border: 1px solid rgba(255, 255, 255, .7)
}
.pills {
  display: flex;
  gap: .65rem;
  flex-wrap: wrap
}
.pills span {
  padding: .48rem .78rem;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .08);
  border-radius: 999px;
  font-weight: 800;
  font-size: .9rem
}
.hero-art {
  position: relative;
  min-height: 500px
}
.browser {
  padding: 1rem;
  background: white;
  border-radius: 30px;
  box-shadow: 0 35px 100px rgba(0, 0, 0, .35);
  transform: rotate(2deg)
}
.dots {
  color: #cbd5e1
}
.mock {
  height: 215px;
  border-radius: 22px;
  background: radial-gradient(circle at 75% 25%, rgba(211, 179, 122, .75), transparent 14%), linear-gradient(135deg, var(--blue), var(--navy))
}
.browser > i {
  display: block;
  height: 13px;
  margin: .65rem 0;
  border-radius: 99px;
  background: #e2e8f0
}
.browser > i:nth-of-type(1) {
  width: 80%
}
.browser > i:nth-of-type(2) {
  width: 63%
}
.browser > i:nth-of-type(3) {
  width: 46%
}
.mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem
}
.mini b {
  height: 95px;
  border-radius: 17px;
  background: #eff6ff
}
.note {
  position: absolute;
  width: 205px;
  padding: 1rem;
  background: white;
  color: var(--text);
  border-radius: 20px;
  box-shadow: var(--shadow)
}
.note small {
  display: block;
  color: var(--muted)
}
.n1 {
  left: -22px;
  bottom: 38px
}
.n2 {
  right: -18px;
  top: 64px
}
.promise {
  padding: 1rem 0;
  background: var(--sage);
  color: white;
  text-align: center;
  font-weight: 900;
  letter-spacing: .08em
}
.section {
  padding: 105px 0
}
.soft {
  background: var(--soft)
}
.heading {
  max-width: 780px;
  margin-bottom: 2.4rem
}
.center {
  text-align: center;
  margin-inline: auto
}
.section h2, .cta h2 {
  font-size: clamp(2.25rem, 4.5vw, 4.1rem);
  line-height: 1;
  letter-spacing: -.045em;
  color: var(--navy);
  margin: 0 0 1rem
}
.grid {
  display: grid;
  gap: 1.4rem
}
.four {
  grid-template-columns: repeat(4, 1fr)
}
.two {
  grid-template-columns: repeat(2, 1fr)
}
.card, .project, .service, .form {
  background: white;
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: 0 15px 48px rgba(15, 23, 42, .06)
}
.card {
  padding: 1.55rem
}
.card span, .project > span {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem
}
.split, .contact-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 4rem;
  align-items: start
}
.stack {
  display: grid;
  gap: 1rem
}
.service {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  padding: 1.35rem
}
.service > strong {
  color: var(--sage);
  text-transform: uppercase
}
.project {
  padding: 1rem
}
.project-art {
  min-height: 310px;
  display: grid;
  place-items: end start;
  padding: 1.2rem;
  border-radius: 23px;
  font-weight: 900
}
.art1 {
  background: radial-gradient(circle at 70% 30%, rgba(211, 179, 122, .85), transparent 18%), linear-gradient(135deg, #dbeafe, #fff)
}
.art2 {
  background: radial-gradient(circle at 30% 28%, rgba(137, 169, 159, .9), transparent 22%), linear-gradient(135deg, #fff, #eff6ff)
}
.philosophy {
  background: linear-gradient(135deg, rgba(137, 169, 159, .16), rgba(211, 179, 122, .17))
}
.quote {
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 900;
  color: var(--navy)
}
.dark-card {
  padding: 2rem;
  border-radius: 30px;
  background: var(--navy);
  color: white
}
.dark-card h2 {
  color: white
}
.text-link {
  font-weight: 900;
  text-decoration: none
}
.cta {
  padding: 105px 0;
  background: var(--navy);
  color: white;
  text-align: center
}
.cta h2 {
  color: white;
  max-width: 850px;
  margin-inline: auto
}
.cta p {
  color: #cbd5e1
}
.contact-grid {
  grid-template-columns: .72fr 1.28fr
}
.form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}
.form label {
  display: grid;
  gap: .45rem;
  font-weight: 800
}
.form input, .form select, .form textarea {
  width: 100%;
  padding: .95rem 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  font: inherit
}
.status {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 5rem 0
}
.status .card {
  text-align: center
}
.footer {
  padding: 3.5rem 0 1.4rem;
  background: #08111f;
  color: #cbd5e1
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem
}
.footer-grid > div:last-child {
  text-align: right
}
.copyright {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .12)
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: .7s
}
.reveal.visible {
  opacity: 1;
  transform: none
}
@media(max-width:980px) {
  .hero-grid, .split, .contact-grid {
    grid-template-columns: 1fr
  }
  .four {
    grid-template-columns: repeat(2, 1fr)
  }
}
@media(max-width:760px) {
  .menu {
    display: block
  }
  .nav nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    padding: 1rem 4%;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start
  }
  .nav nav.open {
    display: flex
  }
  .hero {
    padding: 85px 0
  }
  .browser {
    transform: none
  }
  .note {
    display: none
  }
  .hero-art {
    min-height: auto
  }
  .four, .two, .form-grid, .footer-grid {
    grid-template-columns: 1fr
  }
  .footer-grid > div:last-child {
    text-align: left
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none
  }
}