:root {
  --ink: #101828;
  --muted: #667085;
  --line: #e7edf4;
  --paper: #ffffff;
  --soft: #f5f8fc;
  --dark: #071827;
  --blue: #246bfe;
  --cyan: #12c6dc;
  --green: #28b463;
  --orange: #ffb020;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Outfit, Arial, sans-serif;
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.06rem;
  font-weight: 800;
}

.brand img {
  border-radius: 0;
}

.brand strong {
  color: var(--blue);
}

.brand-logo {
  width: clamp(178px, 22vw, 260px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #283548;
  font-size: .95rem;
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--blue);
}

.site-nav a[aria-current="page"] {
  color: var(--blue);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 18px 40px rgba(36, 107, 254, .22);
}

.nav-cta:hover,
.button:hover {
  color: #fff;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--soft);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .86fr);
  gap: clamp(32px, 5vw, 78px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(52px, 8vw, 108px) clamp(18px, 5vw, 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(18, 198, 220, .18), transparent 28%),
    linear-gradient(180deg, #f9fbff 0%, #fff 70%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: .82rem;
}

.hero h1,
.section-copy h2,
.section-heading h2,
.process h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3.2rem, 8vw, 6.7rem);
  font-weight: 800;
}

.hero h1 span {
  color: var(--blue);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 34px;
  color: var(--muted);
  font-size: 1.18rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.orbit {
  position: absolute;
  inset: 28px 24px;
  border-radius: 48% 52% 46% 54%;
  background: linear-gradient(145deg, #e8f4ff, #ffffff);
  border: 1px solid #d7e7f8;
  box-shadow: inset 0 0 0 26px rgba(36, 107, 254, .06), 0 42px 90px rgba(18, 34, 52, .12);
}

.device {
  position: absolute;
  inset: 90px 58px 76px;
  display: grid;
  gap: 28px;
  padding: 38px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 38px 90px rgba(15, 34, 58, .18);
  transform: rotate(-3deg);
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 18px;
}

.chart-bars i {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
}

.chart-bars i:nth-child(1) { height: 56px; }
.chart-bars i:nth-child(2) { height: 108px; }
.chart-bars i:nth-child(3) { height: 76px; }
.chart-bars i:nth-child(4) { height: 146px; }

.chart-line {
  min-height: 88px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, transparent 46%, rgba(40, 180, 99, .18) 46% 54%, transparent 54%);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.mini-grid b {
  height: 58px;
  border-radius: var(--radius);
  background: var(--soft);
}

.growth-panel,
.marketing-panel {
  position: absolute;
  z-index: 2;
  width: 188px;
  padding: 18px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 24px 55px rgba(16, 24, 40, .16);
}

.growth-panel {
  top: 76px;
  left: 0;
}

.marketing-panel {
  right: 6px;
  bottom: 96px;
}

.growth-panel span,
.marketing-panel span {
  display: block;
  color: var(--blue);
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 800;
}

.growth-panel p,
.marketing-panel p {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 700;
}

section {
  padding: clamp(58px, 7vw, 104px) clamp(18px, 5vw, 72px);
}

.feature-band {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 34px;
  align-items: stretch;
  color: #fff;
  background: var(--dark);
}

.feature-intro {
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #123353, #0c2339);
}

.feature-intro strong {
  display: block;
  color: var(--orange);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: .9;
}

.feature-intro h2 {
  max-width: 520px;
  margin: 18px 0 22px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
}

.feature-intro ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-intro li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--cyan);
}

.feature-cards,
.service-grid,
.project-grid,
.team-grid {
  display: grid;
  gap: 18px;
}

.feature-cards {
  grid-template-columns: repeat(3, 1fr);
}

.feature-cards article,
.service-grid article,
.project-grid article,
.team-grid article {
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}

.feature-cards article {
  align-content: start;
  min-height: 100%;
  padding: 28px;
  color: var(--ink);
}

.feature-cards span,
.service-grid span,
.process-strip span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 800;
}

.feature-cards h3,
.service-grid h3,
.project-grid h3,
.team-grid h3,
.process-strip h3 {
  margin: 0 0 10px;
  line-height: 1.2;
}

.feature-cards p,
.service-grid p,
.project-grid p,
.process-strip p {
  margin: 0;
  color: var(--muted);
}

.about {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.media-mosaic {
  min-height: 520px;
  position: relative;
}

.screen-shot,
.code-window {
  position: absolute;
  border-radius: var(--radius);
  box-shadow: 0 32px 80px rgba(16, 24, 40, .16);
}

.screen-shot {
  inset: 0 68px 74px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  padding: 18px;
  background: #f3f7fb;
}

.screen-shot div {
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(36, 107, 254, .9), rgba(18, 198, 220, .86));
}

.screen-shot div:first-child {
  grid-row: span 2;
  background: linear-gradient(150deg, #182f49, #246bfe 60%, #12c6dc);
}

.code-window {
  right: 0;
  bottom: 0;
  width: min(330px, 76%);
  padding: 28px;
  color: #d7f9ff;
  background: #071827;
}

.code-window span {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.code-window span:nth-child(2) {
  background: var(--cyan);
}

.code-window span:nth-child(3) {
  background: var(--green);
}

.code-window p {
  margin: 14px 0 0;
  font-family: Consolas, monospace;
}

.section-copy h2,
.section-heading h2,
.process h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.section-copy > p:not(.eyebrow),
.text-list p {
  color: var(--muted);
}

.text-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.text-list strong {
  display: block;
  color: var(--ink);
}

.services,
.projects {
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-grid article {
  padding: 28px;
  min-height: 260px;
}

.service-grid article:nth-child(4),
.service-grid article:nth-child(5) {
  grid-column: span 1;
}

.process {
  background: #fff;
}

.process-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 34px;
}

.process-top strong {
  color: var(--blue);
}

.meters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.meters div {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.meters span {
  display: block;
  color: var(--green);
  font-size: 2.4rem;
  font-weight: 800;
}

.meters p {
  margin: 6px 0 0;
  color: var(--muted);
}

.process-strip {
  display: grid;
  grid-template-columns: 1.08fr repeat(3, 1fr);
  gap: 18px;
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, #082035, #103c64);
}

.process-strip p {
  color: #c9d9e8;
}

.process-strip h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.project-grid {
  grid-template-columns: repeat(3, 1fr);
}

.project-grid article {
  overflow: hidden;
}

.project-grid h3,
.project-grid p {
  padding-inline: 24px;
}

.project-grid p {
  padding-bottom: 24px;
}

.project-art {
  height: 230px;
  margin-bottom: 22px;
}

.project-art.web {
  background:
    linear-gradient(90deg, rgba(255,255,255,.85) 12px, transparent 12px) 28px 48px / 58px 18px no-repeat,
    linear-gradient(90deg, rgba(255,255,255,.7) 12px, transparent 12px) 28px 92px / 90px 18px no-repeat,
    linear-gradient(135deg, #246bfe, #12c6dc);
}

.project-art.marketing {
  background:
    radial-gradient(circle at 70% 35%, rgba(255,255,255,.85) 0 42px, transparent 43px),
    linear-gradient(145deg, #ffb020, #28b463);
}

.project-art.brand {
  background:
    linear-gradient(135deg, rgba(255,255,255,.78) 25%, transparent 25% 50%, rgba(255,255,255,.58) 50% 75%, transparent 75%),
    linear-gradient(145deg, #071827, #246bfe);
}

.team-grid {
  grid-template-columns: repeat(5, 1fr);
}

.team-grid article {
  overflow: hidden;
  text-align: center;
}

.team-grid img,
.avatar {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--soft);
}

.avatar {
  display: grid;
  place-items: center;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 800;
  background: linear-gradient(135deg, #246bfe, #071827);
}

.team-grid h3 {
  padding: 20px 16px 24px;
  margin: 0;
  font-size: 1.05rem;
}

.team-card-link {
  display: block;
  height: 100%;
}

.team-card-link:hover h3 {
  color: var(--blue);
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.page-hero {
  min-height: 430px;
  display: grid;
  align-content: center;
  padding-top: clamp(74px, 9vw, 128px);
  padding-bottom: clamp(64px, 8vw, 116px);
  background:
    radial-gradient(circle at 82% 24%, rgba(18, 198, 220, .2), transparent 28%),
    linear-gradient(180deg, #f9fbff 0%, #fff 76%);
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.page-hero > p:not(.eyebrow) {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
}

.profile-stack {
  display: grid;
  gap: clamp(28px, 5vw, 54px);
  background: var(--soft);
}

.profile-card {
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 28px 70px rgba(16, 24, 40, .08);
}

.profile-card:nth-child(even) .profile-photo {
  order: 2;
}

.profile-photo {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
}

.profile-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.profile-copy h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.profile-copy p:not(.eyebrow) {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1.04rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  background: var(--dark);
  color: #fff;
}

.stats div {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
}

.stats strong {
  display: block;
  color: var(--cyan);
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 1;
}

.stats span {
  color: #cbd7e3;
  font-weight: 700;
}

.testimonials {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
  align-items: center;
  background: var(--soft);
}

.rating-visual {
  min-height: 420px;
  display: grid;
  place-content: center;
  padding: 30px;
  border-radius: var(--radius);
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 50% 25%, rgba(255,255,255,.25), transparent 22%),
    linear-gradient(155deg, #246bfe, #071827);
}

.rating-visual span {
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 800;
  line-height: .9;
}

.rating-visual p {
  margin: 12px 0 0;
  font-size: 1.25rem;
}

.testimonial-slider {
  position: relative;
  min-height: 360px;
  padding: clamp(30px, 5vw, 54px);
  border-radius: var(--radius);
  background: #fff;
}

.testimonial-slider article {
  display: none;
}

.testimonial-slider article.active {
  display: block;
}

.testimonial-slider h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.08;
}

.testimonial-slider p {
  color: var(--muted);
  font-size: 1.1rem;
}

.slider-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.slider-actions button {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  cursor: pointer;
}

.partners {
  padding-block: 56px;
  color: #fff;
  background: #0b2136;
}

.partners p {
  margin: 0 0 24px;
  text-align: center;
  color: #bfcddd;
  font-weight: 700;
}

.partners div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.partners span {
  display: grid;
  place-items: center;
  width: min(210px, 42vw);
  min-height: 112px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: #fff;
}

.partners img {
  max-width: 100%;
  max-height: 78px;
  object-fit: contain;
}

.footer {
  padding: clamp(48px, 6vw, 86px) clamp(18px, 5vw, 72px) 28px;
  color: #d9e5ef;
  background: #06121f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .75fr 1fr 1fr;
  gap: 34px;
}

.footer h2,
.footer h3 {
  margin: 0 0 16px;
  color: #fff;
}

.footer a,
.footer p {
  display: block;
  margin: 9px 0;
  color: #d9e5ef;
}

.newsletter label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.newsletter input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255,255,255,.08);
}

.newsletter button {
  width: 100%;
  min-height: 48px;
  margin-top: 12px;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  background: var(--blue);
  font-weight: 800;
}

.copyright {
  margin: 42px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
}

@media (max-width: 1080px) {
  .hero,
  .feature-band,
  .about,
  .process-top,
  .testimonials,
  .profile-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .feature-cards,
  .service-grid,
  .project-grid,
  .team-grid,
  .stats,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-strip {
    grid-template-columns: 1fr;
  }

  .profile-card:nth-child(even) .profile-photo {
    order: 0;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 4px;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.6rem);
  }

  .hero-visual {
    min-height: 430px;
  }

  .device {
    inset: 78px 22px 46px;
    padding: 24px;
  }

  .growth-panel,
  .marketing-panel {
    width: 158px;
  }

  .media-mosaic {
    min-height: 430px;
  }
}

@media (max-width: 640px) {
  section,
  .hero,
  .footer {
    padding-inline: 16px;
  }

  .feature-cards,
  .service-grid,
  .project-grid,
  .team-grid,
  .stats,
  .meters,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 380px;
  }

  .orbit {
    inset: 22px 0;
  }

  .growth-panel {
    top: 34px;
  }

  .marketing-panel {
    bottom: 28px;
  }

  .screen-shot {
    inset: 0 24px 90px 0;
  }

  .code-window {
    width: 88%;
  }
}
