@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,600;12..96,700;12..96,800&family=DM+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@500;600&display=swap");

:root {
  --paper: #f8f6f1;
  --ink: #111827;
  --blue: #356cf4;
  --coral: #f27649;
  --muted: #657177;
  --line: #dededb;
  --accent: var(--blue);
  --soft: #e9eeff;
}

body.software {
  --accent: #c75b34;
  --soft: #f6e9e2;
}
body.application {
  --accent: #27747d;
  --soft: #e6f2f2;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
}
.shell {
  min-height: 100vh;
  overflow: hidden;
}
.topbar {
  height: 68px;
  padding: 0 19px;
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(248, 246, 241, 0.9);
  border-bottom: 1px solid rgba(17, 24, 39, 0.09);
  backdrop-filter: blur(14px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}
.brand img {
  width: 34px;
  height: 34px;
}
.brand b {
  font: 700 19px "Bricolage Grotesque";
  letter-spacing: -0.025em;
}
.back {
  display: none;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
}
.menu-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #a9adb1;
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  font: 600 7px "JetBrains Mono";
  cursor: pointer;
}
.menu-button[aria-expanded="true"] {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
}
.menu-layer {
  position: fixed;
  z-index: 25;
  inset: 0;
  padding: 102px 20px 28px;
  color: white;
  background:
    radial-gradient(
      circle at 100% 25%,
      color-mix(in srgb, var(--accent) 45%, transparent),
      transparent 34%
    ),
    var(--ink);
  transform: translateY(-105%);
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.55s cubic-bezier(0.76, 0, 0.24, 1),
    opacity 0.3s,
    visibility 0.55s;
}
.menu-open .menu-layer {
  transform: none;
  opacity: 1;
  visibility: visible;
}
.menu-layer nav {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.menu-layer nav a {
  min-height: 70px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.menu-layer small {
  color: #86a5ff;
  font: 600 7px "JetBrains Mono";
}
.menu-layer b {
  font: 700 26px "Bricolage Grotesque";
}
.menu-layer i {
  color: var(--coral);
  font-style: normal;
}
.eyebrow {
  color: var(--accent);
  font: 600 8px "JetBrains Mono";
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.service-hero {
  padding: 42px 20px 50px;
}
.crumb {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 22px;
  color: #788388;
  text-decoration: none;
  font-size: 8px;
}
.service-hero h1 {
  max-width: 400px;
  margin: 13px 0 15px;
  font: 750 45px/0.94 "Bricolage Grotesque";
  letter-spacing: -0.055em;
}
.service-hero h1 em {
  color: var(--accent);
  font-style: normal;
}
.hero-copy {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 21px;
}
.primary {
  min-height: 50px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: white;
  background: var(--accent);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 11px 24px color-mix(in srgb, var(--accent) 24%, transparent);
}
.secondary {
  font-size: 9px;
  font-weight: 700;
  text-underline-offset: 4px;
}
.visual {
  min-height: 310px;
  margin-top: 36px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: var(--soft);
  overflow: hidden;
}
.visual:before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px color-mix(in srgb, var(--accent) 4%, transparent),
    0 0 0 84px color-mix(in srgb, var(--accent) 3%, transparent);
}
.browser-demo {
  width: 84%;
  position: relative;
  z-index: 2;
  border: 5px solid white;
  border-radius: 13px;
  overflow: hidden;
  background: white;
  box-shadow: 0 22px 38px rgba(28, 39, 57, 0.2);
  transform: rotate(-2deg);
  animation: hover 5s ease-in-out infinite;
}
.browser-bar {
  height: 20px;
  padding: 0 7px;
  display: flex;
  align-items: center;
  gap: 4px;
  background: #eef0f3;
}
.browser-bar i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #b9c0c5;
}
.browser-demo img {
  display: block;
  width: 100%;
  height: 170px;
  object-fit: cover;
  object-position: top;
}
.score {
  position: absolute;
  z-index: 4;
  right: 12px;
  bottom: 22px;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: white;
  background: var(--accent);
  transform: rotate(5deg);
  box-shadow: 0 14px 24px rgba(20, 35, 55, 0.2);
}
.score b {
  font: 800 23px "Bricolage Grotesque";
}
.score small {
  display: block;
  font: 600 5px "JetBrains Mono";
}
.dashboard {
  z-index: 2;
  width: 88%;
  padding: 14px;
  border: 5px solid white;
  border-radius: 15px;
  background: #14222d;
  box-shadow: 0 22px 38px rgba(28, 39, 57, 0.24);
}
.dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  font: 600 7px "JetBrains Mono";
}
.dash-head i {
  width: 28px;
  height: 7px;
  border-radius: 5px;
  background: var(--coral);
}
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 12px;
}
.metric {
  min-height: 48px;
  padding: 8px;
  border-radius: 8px;
  color: #96a5ad;
  background: #203440;
  font-size: 6px;
}
.metric b {
  display: block;
  margin-top: 5px;
  color: white;
  font: 700 14px "Bricolage Grotesque";
}
.chart {
  height: 105px;
  margin-top: 8px;
  padding: 11px;
  display: flex;
  align-items: end;
  gap: 7px;
  border-radius: 9px;
  background: white;
}
.chart i {
  flex: 1;
  height: 30%;
  border-radius: 4px 4px 0 0;
  background: var(--coral);
  animation: bars 2.5s ease-in-out infinite alternate;
}
.chart i:nth-child(2) {
  height: 60%;
  animation-delay: -0.4s;
}
.chart i:nth-child(3) {
  height: 42%;
  animation-delay: -0.8s;
}
.chart i:nth-child(4) {
  height: 80%;
  animation-delay: -1.2s;
}
.chart i:nth-child(5) {
  height: 68%;
  animation-delay: -1.6s;
}
.phones {
  z-index: 2;
  min-height: 265px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.phone-demo {
  width: 112px;
  height: 225px;
  padding: 8px;
  position: relative;
  border: 6px solid #16262c;
  border-radius: 28px;
  background: white;
  box-shadow: 0 22px 35px rgba(29, 55, 60, 0.22);
  animation: hover 4s ease-in-out infinite;
}
.phone-demo.side {
  width: 84px;
  height: 180px;
  opacity: 0.78;
  transform: rotate(-7deg);
  animation-delay: -1.3s;
}
.phone-demo.side:last-child {
  transform: rotate(7deg);
  animation-delay: -2.6s;
}
.phone-demo:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  width: 35px;
  height: 8px;
  border-radius: 0 0 8px 8px;
  background: #16262c;
  transform: translateX(-50%);
}
.app-screen {
  height: 100%;
  padding: 25px 9px 9px;
  border-radius: 17px;
  background: linear-gradient(160deg, #d9eeee, #fff);
}
.app-screen b {
  display: block;
  font: 700 14px/1 "Bricolage Grotesque";
}
.app-screen i {
  display: block;
  height: 37px;
  margin-top: 8px;
  border-radius: 8px;
  background: white;
  box-shadow: 0 5px 12px rgba(39, 116, 125, 0.08);
}
.app-screen i:nth-of-type(2) {
  background: var(--accent);
}
.quick-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}
.quick-proof div {
  padding: 16px 5px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.quick-proof div:last-child {
  border: 0;
}
.quick-proof b {
  display: block;
  color: var(--accent);
  font: 700 11px "Bricolage Grotesque";
}
.quick-proof small {
  color: #768187;
  font-size: 5.5px;
}
.section {
  padding: 52px 20px;
}
.section.white {
  background: white;
}
.section.soft {
  background: var(--soft);
}
.section.dark {
  color: white;
  background: var(--ink);
}
.section-head {
  max-width: 620px;
  margin-bottom: 22px;
}
.section-head h2 {
  margin: 11px 0 0;
  font: 700 34px/0.98 "Bricolage Grotesque";
  letter-spacing: -0.045em;
}
.section-head p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}
.dark .section-head p {
  color: #a5b0b6;
}
.benefits {
  display: grid;
  gap: 9px;
}
.benefit {
  min-height: 150px;
  padding: 19px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}
.benefit span {
  color: var(--accent);
  font: 600 7px "JetBrains Mono";
}
.benefit h3 {
  max-width: 260px;
  margin: 18px 0 7px;
  font: 700 21px/1 "Bricolage Grotesque";
}
.benefit p {
  max-width: 290px;
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
}
.benefit:after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 115px;
  height: 115px;
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  border-radius: 50%;
}
.deliverables {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.13);
  border-block: 1px solid rgba(255, 255, 255, 0.13);
}
.deliverable {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 10px;
  background: var(--ink);
}
.deliverable span {
  color: color-mix(in srgb, var(--accent) 80%, white);
  font: 600 7px "JetBrains Mono";
}
.deliverable b {
  font: 700 15px "Bricolage Grotesque";
}
.deliverable i {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: white;
  font-style: normal;
  font-size: 9px;
}
.process {
  display: grid;
  gap: 10px;
}
.process article {
  padding: 18px;
  border-radius: 15px;
  background: white;
  border: 1px solid var(--line);
}
.process span {
  color: var(--accent);
  font: 600 7px "JetBrains Mono";
}
.process h3 {
  margin: 14px 0 7px;
  font: 700 19px "Bricolage Grotesque";
}
.process p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}
.service-cta {
  padding: 58px 20px;
  text-align: center;
  color: white;
  background: var(--accent);
}
.service-cta h2 {
  max-width: 650px;
  margin: 0 auto;
  font: 700 36px/0.96 "Bricolage Grotesque";
  letter-spacing: -0.045em;
}
.service-cta p {
  max-width: 410px;
  margin: 14px auto 21px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  line-height: 1.5;
}
.service-cta .primary {
  color: var(--ink);
  background: white;
  box-shadow: none;
}
.footer {
  padding: 35px 20px 22px;
  color: white;
  background: #0a1019;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer .brand img {
  width: 36px;
  height: 36px;
}
.footer .brand b {
  color: white;
  font-size: 21px;
}
.footer-top > a {
  color: #b5c0c5;
  text-decoration: none;
  font-size: 8px;
}
.footer-links {
  margin-top: 25px;
  padding-block: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-links a {
  color: #d9dddf;
  text-decoration: none;
  font-size: 9px;
}
.footer-meta {
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  color: #68757b;
  font: 500 6px "JetBrains Mono";
}
@keyframes hover {
  50% {
    transform: translateY(-7px) rotate(1deg);
  }
}
@keyframes bars {
  to {
    height: 90%;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
  }
}

@media (min-width: 700px) {
  .topbar {
    height: 78px;
    padding-inline: 40px;
  }
  .service-hero {
    padding: 72px 40px 75px;
  }
  .service-hero h1 {
    max-width: 680px;
    font-size: 68px;
  }
  .hero-copy {
    font-size: 15px;
  }
  .visual {
    min-height: 450px;
  }
  .browser-demo,
  .dashboard {
    width: min(620px, 78%);
  }
  .browser-demo img {
    height: 290px;
  }
  .score {
    right: 11%;
    bottom: 40px;
    width: 105px;
    height: 105px;
  }
  .phones {
    min-height: 410px;
  }
  .phone-demo {
    width: 170px;
    height: 345px;
  }
  .phone-demo.side {
    width: 126px;
    height: 270px;
  }
  .section {
    padding: 82px 40px;
  }
  .section > * {
    width: min(100%, 1120px);
    margin-left: auto;
    margin-right: auto;
  }
  .section-head h2 {
    font-size: 48px;
  }
  .section-head p {
    font-size: 13px;
  }
  .benefits {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .benefit {
    min-height: 215px;
    padding: 24px;
  }
  .benefit h3 {
    margin-top: 35px;
    font-size: 25px;
  }
  .benefit p {
    font-size: 11px;
  }
  .deliverable {
    padding: 23px 0;
  }
  .deliverable b {
    font-size: 20px;
  }
  .process {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .process article {
    min-height: 190px;
    padding: 23px;
  }
  .process h3 {
    margin-top: 25px;
    font-size: 22px;
  }
  .process p {
    font-size: 11px;
  }
  .service-cta {
    padding: 90px 40px;
  }
  .service-cta h2 {
    font-size: 56px;
  }
  .service-cta p {
    font-size: 13px;
  }
  .footer {
    padding: 45px 40px 28px;
  }
  .footer > * {
    width: min(100%, 1120px);
    margin-left: auto;
    margin-right: auto;
  }
  .footer-links {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 980px) {
  .topbar {
    height: 88px;
    padding-inline: max(48px, calc((100vw - 1180px) / 2));
  }
  .brand img {
    width: 40px;
    height: 40px;
  }
  .brand b {
    font-size: 23px;
  }
  .back {
    display: block;
    margin-left: auto;
    margin-right: 28px;
  }
  .menu-button,
  .menu-layer {
    display: none;
  }
  .service-hero {
    min-height: 700px;
    padding: 90px max(48px, calc((100vw - 1180px) / 2));
    display: grid;
    grid-template-columns: minmax(430px, 0.9fr) minmax(520px, 1.1fr);
    grid-template-rows: auto auto auto auto;
    align-content: center;
    align-items: center;
    column-gap: 60px;
  }
  .crumb,
  .service-hero .eyebrow,
  .service-hero h1,
  .hero-copy,
  .hero-actions {
    grid-column: 1;
  }
  .crumb {
    grid-row: 1;
  }
  .service-hero .eyebrow {
    grid-row: 2;
  }
  .service-hero h1 {
    grid-row: 3;
    margin-top: 18px;
    font-size: clamp(68px, 5.7vw, 84px);
  }
  .hero-copy {
    grid-row: 4;
  }
  .hero-actions {
    grid-row: 5;
  }
  .visual {
    grid-column: 2;
    grid-row: 1/6;
    min-height: 540px;
    margin-top: 0;
  }
  .browser-demo,
  .dashboard {
    width: 84%;
  }
  .quick-proof {
    padding-inline: max(48px, calc((100vw - 1180px) / 2));
  }
  .quick-proof div {
    padding-block: 23px;
  }
  .quick-proof b {
    font-size: 16px;
  }
  .quick-proof small {
    font-size: 7px;
  }
}
