:root {
  --paper: #f7f8f5;
  --white: #fff;
  --ink: #17272b;
  --muted: #586769;
  --line: #dbe2dd;
  --accent: #5355cf;
  --accent-dark: #3033a5;
  --blue: #e8edff;
  --mint: #e5f4e6;
  --display: "Space Grotesk", Arial, sans-serif;
  --body: "DM Sans", Arial, sans-serif;
  --width: 1240px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.6 var(--body);
  -webkit-font-smoothing: antialiased;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
}
img,
svg {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.07;
  letter-spacing: -0.045em;
}
p {
  color: var(--muted);
}
::selection {
  background: #cdd4ff;
  color: var(--ink);
}
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}
.container {
  width: min(var(--width), calc(100% - 48px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 1000;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 9px;
}
.skip-link:focus {
  top: 10px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 248, 245, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(23, 39, 43, 0.08);
}
.site-header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.brand__mark {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
}
.brand__mark img {
  width: 100%;
  height: 100%;
}
.brand__name {
  font:
    700 1.23rem/1 "Syne",
    var(--display);
  letter-spacing: -0.04em;
}
.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(13px, 1.6vw, 27px);
}
.site-nav a {
  text-decoration: none;
  color: #4c5d5f;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.2s;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--accent-dark);
}
.site-nav__mobile-cta,
.menu-toggle {
  display: none;
}
.site-header__cta {
  margin-left: 5px;
}
.menu-toggle {
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.menu-toggle span {
  height: 2px;
  width: 19px;
  border-radius: 3px;
  background: var(--ink);
  transition:
    transform 0.2s,
    opacity 0.2s;
}
.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent-dark);
  font: 700 0.75rem/1.3 var(--display);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
}
.eyebrow--light {
  color: #cfdbff;
}
.eyebrow--light::before {
  background: #b7f0bb;
}
.lead {
  font-size: clamp(1.06rem, 1.45vw, 1.23rem);
  line-height: 1.62;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 53px;
  padding: 12px 22px;
  border-radius: 13px;
  border: 1px solid transparent;
  text-decoration: none;
  font: 700 0.94rem/1.2 var(--display);
  white-space: nowrap;
  transition:
    transform 0.2s,
    background 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(23, 39, 43, 0.12);
}
.button span {
  font-size: 1.3em;
  line-height: 1;
  font-weight: 400;
}
.button--small {
  min-height: 42px;
  padding: 9px 16px;
  border-radius: 11px;
  gap: 13px;
  font-size: 0.84rem;
}
.button--ink {
  background: var(--ink);
  color: #fff;
}
.button--ink:hover {
  background: var(--accent-dark);
}
.button--outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.button--outline:hover {
  background: var(--ink);
  color: #fff;
}
.button--white {
  background: #fff;
  color: var(--ink);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  font: 700 0.92rem/1.4 var(--display);
  transition:
    gap 0.2s,
    color 0.2s;
}
.text-link:hover {
  gap: 16px;
  color: var(--accent-dark);
}
.text-link--light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
}
.text-link--light:hover {
  color: #c9d7ff;
}
.home-hero {
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 80% 30%, #e8efff 0, transparent 37%), var(--paper);
}
.home-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: 40px;
  align-items: center;
  min-height: 625px;
  padding-block: 68px 36px;
}
.home-hero__copy {
  position: relative;
  z-index: 2;
  padding-block: 20px;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  background: #ecf5e8;
  border: 1px solid #cfdfca;
  border-radius: 99px;
  font: 700 0.76rem var(--display);
  letter-spacing: 0.04em;
  color: #325e3b;
}
.status-pill span {
  width: 8px;
  height: 8px;
  background: #42a857;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #d1ebd2;
}
.home-hero h1 {
  max-width: 760px;
  font-size: clamp(4.1rem, 6vw, 6.8rem);
  line-height: 0.97;
  letter-spacing: -0.08em;
  margin: 28px 0;
}
.home-hero h1 em {
  position: relative;
  font-style: normal;
  color: var(--accent);
  white-space: nowrap;
}
.home-hero h1 em::after {
  content: "";
  position: absolute;
  left: 3px;
  right: 5px;
  height: 7px;
  bottom: -7px;
  border-radius: 50%;
  border-top: 4px solid #a7b2ec;
  transform: rotate(-2deg);
}
.home-hero .lead {
  max-width: 540px;
  color: #4c5f61;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 65px;
  font-size: 0.78rem;
}
.hero-trust span {
  color: var(--muted);
}
.hero-trust strong {
  border-left: 1px solid #bac8c5;
  padding-left: 13px;
  font: 700 0.78rem var(--display);
}
.hero-visual {
  min-height: 515px;
  position: relative;
  display: grid;
  place-items: center;
}
.hero-visual__orbit {
  position: absolute;
  width: 105%;
  aspect-ratio: 1;
  left: 2%;
  top: 4%;
  border: 1px solid rgba(83, 85, 207, 0.25);
  border-radius: 50%;
  transform: rotate(-20deg) scaleY(0.72);
}
.hero-visual__orbit::before,
.hero-visual__orbit::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(83, 85, 207, 0.18);
  border-radius: 50%;
}
.hero-visual__orbit::after {
  inset: 24%;
}
.hero-visual__main {
  position: relative;
  width: 92%;
  transform: rotate(-3.5deg);
  filter: drop-shadow(0 35px 45px rgba(31, 50, 76, 0.18));
}
.browser-frame {
  overflow: hidden;
  width: 100%;
  background: #fff;
  border: 1px solid #d7dddf;
  border-radius: 15px;
  box-shadow: 0 12px 32px rgba(23, 39, 43, 0.1);
}
.browser-frame__bar {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 13px;
  border-bottom: 1px solid #e7ebeb;
  background: #fbfcfc;
}
.browser-frame__dots {
  display: flex;
  gap: 5px;
}
.browser-frame__dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d6dcdf;
}
.browser-frame__address {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 3px 16px;
  border-radius: 4px;
  background: #f0f2f3;
  color: #8d999d;
  font: 500 0.59rem var(--display);
}
.browser-frame img {
  width: 100%;
  aspect-ratio: 1.6;
  object-fit: cover;
  object-position: top center;
  background: #e7e9ed;
}
.hero-visual__float {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 2px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid #e1e7e3;
  box-shadow: 0 16px 35px rgba(24, 43, 55, 0.15);
  border-radius: 15px;
  padding: 16px 20px;
}
.hero-visual__float strong {
  font: 700 0.86rem var(--display);
  letter-spacing: -0.025em;
}
.hero-visual__float small {
  color: var(--muted);
  font-size: 0.73rem;
}
.hero-visual__float--one {
  bottom: 18px;
  left: -5%;
}
.hero-visual__float--two {
  top: 45px;
  right: -1%;
  grid-template-columns: 10px auto;
  align-items: center;
  gap: 10px;
}
.mini-icon {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  background: var(--mint);
  color: #367446;
  border-radius: 8px;
  margin-bottom: 7px;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #45af66;
  box-shadow: 0 0 0 4px #d9f2e0;
}
.hero-caption {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #d8e2df;
  padding: 15px 0 19px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font: 700 0.68rem var(--display);
  color: #81908d;
}
.intro-strip {
  background: var(--ink);
  color: #fff;
}
.intro-strip__inner {
  display: grid;
  grid-template-columns: 0.5fr 1.7fr 0.6fr;
  align-items: center;
  gap: 35px;
  padding-block: 36px;
}
.intro-strip p {
  color: #e3e9e5;
  font-size: 1.05rem;
  line-height: 1.58;
  margin: 0;
}
.intro-strip .text-link {
  justify-self: end;
  white-space: nowrap;
}
.section {
  padding-block: 106px;
}
.section--tint {
  background: #ecf0eb;
}
.section--process {
  border-top: 1px solid var(--line);
  background: #fff;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 38px;
}
.section-heading h2 {
  font-size: clamp(2.55rem, 4.2vw, 4.25rem);
  max-width: 750px;
  margin: 17px 0 0;
}
.section-heading > p {
  width: min(100%, 310px);
  margin: 0;
}
.section-heading .text-link {
  margin-bottom: 8px;
  flex: none;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-tile {
  display: flex;
  flex-direction: column;
  align-items: start;
  position: relative;
  min-height: 322px;
  padding: 28px;
  border-radius: 22px;
  text-decoration: none;
  overflow: hidden;
  border: 1px solid rgba(23, 39, 43, 0.06);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.service-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(24, 43, 55, 0.1);
}
.service-tile--blue {
  background: #e6ebff;
}
.service-tile--cream {
  background: #f2e9d7;
}
.service-tile--mint {
  background: #e0eee4;
}
.service-tile__number {
  font: 700 0.76rem var(--display);
  color: #566d71;
}
.service-tile__symbol {
  position: absolute;
  top: 21px;
  right: 27px;
  color: var(--accent);
  font: 400 4.4rem/1 var(--display);
}
.service-tile h3 {
  font-size: 1.95rem;
  margin: auto 0 9px;
  max-width: 260px;
}
.service-tile p {
  margin: 0;
  max-width: 290px;
}
.service-tile__arrow {
  position: absolute;
  bottom: 26px;
  right: 28px;
  font: 400 1.8rem/1 var(--display);
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.showcase-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(23, 39, 43, 0.1);
}
.showcase-card__image {
  display: block;
  padding: 16px 16px 0;
  background: #eef1f5;
  text-decoration: none;
}
.showcase-card__image .browser-frame {
  border-radius: 9px 9px 0 0;
  border-bottom: 0;
}
.showcase-card__image .browser-frame img {
  aspect-ratio: 1.5;
}
.showcase-card__content {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  padding: 24px;
}
.showcase-card h3 {
  font-size: 2rem;
  margin: 10px 0 8px;
}
.showcase-card p {
  font-size: 0.94rem;
  margin: 0;
}
.showcase-card .eyebrow {
  font-size: 0.64rem;
}
.circle-link {
  width: 42px;
  height: 42px;
  display: grid;
  flex: none;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.2rem;
  line-height: 1;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.circle-link:hover {
  background: var(--ink);
  color: #fff;
  transform: rotate(45deg);
}
.featured-work {
  border-top: 1px solid var(--line);
}
.featured-work__item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 8px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition:
    background 0.2s,
    padding 0.2s;
}
.featured-work__item:hover {
  padding-inline: 18px;
  background: #edf1ec;
}
.featured-work__thumb {
  width: 118px;
  height: 76px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  flex: none;
}
.featured-work__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.featured-work__item div:nth-child(2) {
  flex: 1;
}
.featured-work__item span {
  color: var(--accent-dark);
  font: 700 0.7rem var(--display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.featured-work__item h3 {
  font-size: 1.55rem;
  margin: 5px 0 0;
}
.featured-work__item strong {
  font: 400 1.8rem var(--display);
}
.section-end {
  display: flex;
  justify-content: center;
  margin-top: 35px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.steps > div {
  border-top: 2px solid var(--ink);
  padding-top: 22px;
}
.steps span {
  color: var(--accent-dark);
  font: 700 0.74rem var(--display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.steps h3 {
  margin: 47px 0 13px;
  font-size: 1.65rem;
}
.steps p {
  max-width: 330px;
  margin: 0;
}
.cta-band {
  position: relative;
  background: #4244bc;
  color: #fff;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -100px;
  top: -210px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(255, 255, 255, 0.04),
    0 0 0 180px rgba(255, 255, 255, 0.04);
  pointer-events: none;
}
.cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  padding-block: 77px;
}
.cta-band h2 {
  max-width: 780px;
  font-size: clamp(2.8rem, 4.7vw, 5rem);
  margin: 18px 0;
}
.cta-band p {
  margin: 0;
  color: #dce1ff;
  font-size: 1.05rem;
}
.cta-band__actions {
  display: grid;
  gap: 20px;
  justify-items: start;
  flex: none;
  padding-bottom: 10px;
}
.page-hero {
  overflow: hidden;
  background: #eef1ed;
  border-bottom: 1px solid var(--line);
}
.page-hero__inner {
  min-height: 355px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 70px;
}
.page-hero__inner > div:first-child {
  position: relative;
  z-index: 1;
  max-width: 850px;
}
.page-hero h1 {
  font-size: clamp(3.3rem, 5.3vw, 5.7rem);
  margin: 20px 0;
}
.page-hero p {
  max-width: 670px;
  margin: 0;
}
.page-hero__orbit {
  position: relative;
  flex: 0 0 230px;
  height: 230px;
  border-radius: 50%;
  border: 1px solid rgba(83, 85, 207, 0.37);
  box-shadow:
    0 0 0 44px rgba(83, 85, 207, 0.05),
    0 0 0 88px rgba(83, 85, 207, 0.035);
}
.page-hero__orbit::before,
.page-hero__orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(83, 85, 207, 0.35);
  inset: 36px;
}
.page-hero__orbit::after {
  inset: 75px;
}
.page-hero__orbit span:first-child {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  top: 6px;
  left: 40px;
}
.page-hero__orbit span:nth-child(2) {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #a3d8a8;
  bottom: 51px;
  right: 34px;
}
.page-hero__orbit span:nth-child(3) {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3d7672;
  top: 90px;
  right: 44px;
}
.service-detail {
  display: grid;
  grid-template-columns: 1fr 0.93fr;
  gap: 70px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 90px;
}
.service-detail:last-child {
  border-bottom: 1px solid var(--line);
}
.service-detail__intro h2 {
  font-size: clamp(2.3rem, 3.3vw, 3.35rem);
  margin: 14px 0 16px;
}
.service-detail__intro p {
  max-width: 475px;
  font-size: 1.05rem;
}
.service-detail__panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 26px 30px;
}
.service-detail__panel h3 {
  font-size: 1.33rem;
  margin: 0 0 20px;
}
.service-detail__panel ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-detail__panel li {
  padding-left: 24px;
  position: relative;
  color: var(--muted);
}
.service-detail__panel li::before {
  content: "↗";
  position: absolute;
  left: 0;
  color: var(--accent);
}
.split-callout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-callout h2 {
  font-size: clamp(2.7rem, 4vw, 4.3rem);
  margin: 18px 0 0;
}
.split-callout p {
  font-size: 1.08rem;
}
.split-callout .button {
  margin-top: 12px;
}
.product-list {
  display: grid;
  gap: 100px;
}
.product-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 70px;
}
.product-feature--reverse .product-feature__image {
  order: 2;
}
.product-feature__image {
  padding: 28px;
  border-radius: 24px;
  background: #e6eaff;
}
.product-feature:nth-child(2) .product-feature__image {
  background: #e0efec;
}
.product-feature:nth-child(3) .product-feature__image {
  background: #ecebdc;
}
.product-feature__copy h2 {
  font-size: clamp(2.8rem, 4.3vw, 4.5rem);
  margin: 15px 0;
}
.product-feature__copy p {
  max-width: 480px;
  font-size: 1.14rem;
}
.product-feature__copy .button {
  margin-top: 17px;
}
.work-intro {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 35px;
}
.work-intro p {
  font-size: 1.1rem;
  max-width: 620px;
}
.work-intro span {
  font: 700 0.77rem var(--display);
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  white-space: nowrap;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 22px;
}
.project-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}
.project-card__image {
  display: block;
  padding: 19px 19px 0;
  background: #eff2f0;
  text-decoration: none;
}
.project-card__image .browser-frame {
  border-radius: 10px 10px 0 0;
  border-bottom: 0;
}
.project-card__image img {
  aspect-ratio: 1.65;
}
.project-card__body {
  padding: 27px;
}
.project-card__heading {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  margin: 12px 0 18px;
}
.project-card h2 {
  font-size: clamp(1.65rem, 2.3vw, 2.3rem);
  margin: 0;
}
.project-card__summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 19px;
}
.project-card__summary p {
  margin: 0;
  font-size: 0.91rem;
}
.project-card__summary strong {
  display: block;
  color: var(--ink);
  font: 700 0.72rem var(--display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.audience-grid article {
  display: flex;
  align-items: start;
  flex-direction: column;
  min-height: 310px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 18px;
  padding: 27px;
}
.audience-grid article > span {
  color: var(--accent);
  font: 700 0.79rem var(--display);
}
.audience-grid h2 {
  font-size: 1.85rem;
  margin: 47px 0 10px;
}
.audience-grid p {
  font-size: 0.95rem;
  margin: 0 0 25px;
}
.audience-grid a {
  margin-top: auto;
  font: 700 0.82rem var(--display);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
}
.audience-grid__cta {
  background: var(--ink) !important;
  color: #fff;
}
.audience-grid__cta p {
  color: #d7e2df;
}
.audience-grid__cta a {
  border-color: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 95px;
}
.about-grid h2 {
  font-size: clamp(2.7rem, 4vw, 4.25rem);
  margin: 18px 0 25px;
}
.about-grid p {
  max-width: 670px;
  font-size: 1.08rem;
}
.about-grid .text-link {
  margin-top: 20px;
}
.about-grid__statement {
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: var(--blue);
  border-radius: 24px;
  padding: 36px;
}
.about-grid__asterisk {
  color: var(--accent);
  font-size: 5rem;
  line-height: 1;
  margin-bottom: auto;
}
.about-grid blockquote {
  max-width: 420px;
  font: 600 clamp(2rem, 3vw, 3rem) / 1.15 var(--display);
  letter-spacing: -0.05em;
  margin: 0 0 25px;
}
.about-grid__statement > span:last-child {
  font: 700 0.75rem var(--display);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--accent-dark);
}
.founder-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.15fr;
  align-items: center;
  gap: 90px;
}
.founder-grid__photo {
  max-height: 550px;
  overflow: hidden;
  border-radius: 20px;
  background: #dee4e5;
}
.founder-grid__photo img {
  width: 100%;
  height: 100%;
  max-height: 550px;
  object-fit: cover;
  object-position: center 46%;
}
.founder-grid h2 {
  font-size: clamp(3rem, 4.5vw, 4.7rem);
  margin: 17px 0 23px;
}
.founder-grid p {
  max-width: 620px;
  font-size: 1.08rem;
}
.founder-grid__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 60px;
  align-items: start;
}
.contact-layout__aside h2 {
  font-size: clamp(2.2rem, 3vw, 3rem);
  margin: 17px 0 28px;
}
.contact-layout__aside > p {
  font-size: 0.91rem;
  margin-top: 25px;
}
.contact-layout__aside > p a {
  color: var(--accent-dark);
  font-weight: 700;
}
.contact-methods {
  border-top: 1px solid var(--line);
}
.contact-methods a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  padding: 19px 0;
}
.contact-methods a span {
  color: var(--muted);
  font-size: 0.78rem;
}
.contact-methods strong {
  grid-column: 1;
  font: 700 1.03rem var(--display);
  overflow-wrap: anywhere;
}
.contact-methods i {
  grid-column: 2;
  grid-row: 1/3;
  align-self: center;
  font-size: 1.3rem;
  font-style: normal;
}
.contact-methods a:hover strong {
  color: var(--accent-dark);
}
.form-panel {
  padding: 35px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(23, 39, 43, 0.045);
}
.form-panel h2 {
  font-size: 2.2rem;
  margin: 10px 0;
}
.form-panel > p {
  margin-bottom: 28px;
}
.contact-form {
  display: grid;
  gap: 20px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.field {
  display: grid;
  gap: 7px;
}
.field label {
  font: 700 0.82rem var(--display);
}
.field label span {
  color: var(--accent-dark);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: #f9faf9;
  border: 1px solid #cfd9d4;
  border-radius: 10px;
  color: var(--ink);
  padding: 12px 14px;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.field textarea {
  resize: vertical;
  min-height: 130px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(83, 85, 207, 0.12);
}
.field input::placeholder,
.field textarea::placeholder {
  color: #909f9e;
}
.honey-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 25px;
}
.form-bottom p {
  font-size: 0.75rem;
  max-width: 290px;
  margin: 0;
}
.form-bottom p a {
  color: var(--accent-dark);
}
.form-status {
  display: none;
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 0.9rem;
  margin: 0;
}
.form-status:not(:empty) {
  display: block;
}
.form-status[data-state="success"] {
  background: #e6f4e7;
  color: #205b31;
}
.form-status[data-state="error"] {
  background: #fff0e8;
  color: #8e351e;
}
.support-intro {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: end;
  border-bottom: 1px solid var(--line);
  padding-bottom: 30px;
  margin-bottom: 38px;
}
.support-intro h2 {
  font-size: clamp(2.3rem, 3.5vw, 3.5rem);
  margin: 14px 0 0;
}
.support-intro p {
  max-width: 470px;
  margin: 0;
}
.support-options {
  display: grid;
  gap: 12px;
}
.support-options a {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  column-gap: 15px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  text-decoration: none;
  padding: 19px;
}
.support-options__icon {
  grid-row: 1/3;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--blue);
  color: var(--accent-dark);
  font-size: 1.1rem;
}
.support-options strong {
  font: 700 1rem var(--display);
}
.support-options a > span:nth-of-type(2) {
  color: var(--muted);
  font-size: 0.75rem;
  overflow-wrap: anywhere;
}
.support-options i {
  grid-row: 1/3;
  grid-column: 3;
  font-style: normal;
}
.legal-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 90px;
  align-items: start;
}
.legal-layout aside {
  display: grid;
  gap: 25px;
  position: sticky;
  top: 110px;
  color: var(--muted);
  font-size: 0.8rem;
}
.legal-layout aside nav {
  display: grid;
  gap: 10px;
  border-left: 1px solid var(--line);
  padding-left: 17px;
}
.legal-layout aside a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}
.legal-layout aside a:hover {
  color: var(--accent-dark);
}
.legal-content {
  max-width: 750px;
}
.legal-content section {
  border-bottom: 1px solid var(--line);
  padding: 0 0 25px;
  margin-bottom: 30px;
}
.legal-content h2 {
  font-size: 1.65rem;
  margin-bottom: 12px;
}
.legal-content p {
  font-size: 1.02rem;
}
.legal-content a {
  color: var(--accent-dark);
}
.site-footer {
  background: #13272c;
  color: #fff;
}
.site-footer__top {
  display: flex;
  justify-content: space-between;
  gap: 70px;
  padding: 75px 0 85px;
}
.site-footer .brand {
  color: #fff;
}
.site-footer .brand__mark {
  color: #a7bdff;
}
.site-footer__identity {
  max-width: 380px;
}
.site-footer__identity p {
  color: #b3c3c2;
  margin: 25px 0 27px;
}
.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: 55px;
}
.site-footer__cols > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer__cols h2 {
  font: 700 0.76rem var(--display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a9bbbd;
  margin: 0 0 11px;
}
.site-footer__cols a {
  font-size: 0.87rem;
  text-decoration: none;
  color: #eef4f2;
  overflow-wrap: anywhere;
}
.site-footer__cols a:hover {
  color: #b5c5ff;
}
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 22px 0;
  color: #a9bbbd;
  font-size: 0.76rem;
}

/* Gentle movement gives each part of the home page its own visual rhythm. */
.home-page .status-pill span,
.home-page .pulse-dot {
  animation: status-pulse 2.8s ease-in-out infinite;
}
.home-page .home-hero__copy > * {
  animation: hero-enter 0.8s both;
}
.home-page .home-hero__copy > :nth-child(2) {
  animation-delay: 0.12s;
}
.home-page .home-hero__copy > :nth-child(3) {
  animation-delay: 0.24s;
}
.home-page .home-hero__copy > :nth-child(4) {
  animation-delay: 0.36s;
}
.home-page .home-hero__copy > :nth-child(5) {
  animation-delay: 0.48s;
}
.home-page .hero-visual__orbit {
  animation: orbit-turn 35s linear infinite;
}
.hero-visual__satellite {
  position: absolute;
  top: 13%;
  left: 14%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(83, 85, 207, 0.1);
}
.home-page .hero-visual__main {
  animation: hero-float 6s ease-in-out infinite alternate;
}
.home-page .hero-visual__float--one {
  animation: detail-float 5s ease-in-out infinite alternate;
}
.home-page .hero-visual__float--two {
  animation: detail-float 6s 1s ease-in-out infinite alternate-reverse;
}
.home-page .intro-strip {
  position: relative;
  overflow: hidden;
}
.home-page .intro-strip::after {
  content: "";
  position: absolute;
  left: -45%;
  bottom: 0;
  width: 45%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #b4e4cc, transparent);
  animation: strip-glide 11s linear infinite;
}
.home-page .service-tile::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  right: -55px;
  top: -75px;
  border: 1px solid rgba(83, 85, 207, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 36px rgba(83, 85, 207, 0.035);
  animation: tile-halo 8s ease-in-out infinite alternate;
  pointer-events: none;
}
.home-page .service-tile--cream::before {
  animation-delay: -2s;
}
.home-page .service-tile--mint::before {
  animation-delay: -4s;
}
.home-page .service-tile--blue .service-tile__symbol {
  animation: symbol-spin 18s linear infinite;
}
.home-page .service-tile--cream .service-tile__symbol {
  animation: symbol-sway 4.8s ease-in-out infinite alternate;
}
.home-page .service-tile--mint .service-tile__symbol {
  animation: symbol-breathe 3.8s ease-in-out infinite;
}
.home-page .service-tile__arrow,
.home-page .featured-work__item strong {
  transition: translate 0.3s ease;
}
.home-page .service-tile:hover .service-tile__arrow,
.home-page .featured-work__item:hover strong {
  translate: 5px -5px;
}
.home-page .showcase-card__image .browser-frame {
  animation: product-hover 7s ease-in-out infinite alternate;
}
.home-page .showcase-card:nth-child(2) .browser-frame {
  animation-delay: -2s;
}
.home-page .showcase-card:nth-child(3) .browser-frame {
  animation-delay: -4s;
}
.home-page .showcase-card__image img,
.home-page .featured-work__thumb img {
  transition: scale 0.5s ease;
}
.home-page .showcase-card:hover .showcase-card__image img,
.home-page .featured-work__item:hover .featured-work__thumb img {
  scale: 1.05;
}
.home-page .steps > div {
  position: relative;
  border-top-color: #dce2ec;
}
.home-page .steps > div::before {
  content: "";
  position: absolute;
  height: 2px;
  top: -2px;
  left: 0;
  width: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s ease;
}
.home-page .steps > div.is-visible::before {
  transform: scaleX(1);
}
.home-page .cta-band::after {
  animation: cta-orbit 12s ease-in-out infinite alternate;
}
.home-page.motion-ready .reveal-target {
  opacity: 0;
  translate: 0 24px;
  transition:
    opacity 0.75s ease var(--reveal-delay, 0ms),
    translate 0.75s cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms);
}
.home-page.motion-ready .reveal-target.is-visible {
  opacity: 1;
  translate: 0 0;
}
@keyframes status-pulse {
  50% {
    box-shadow: 0 0 0 8px rgba(66, 168, 87, 0.08);
  }
}
@keyframes hero-enter {
  from {
    opacity: 0;
    translate: 0 18px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}
@keyframes orbit-turn {
  from {
    transform: rotate(-20deg) scaleY(0.72);
  }
  to {
    transform: rotate(340deg) scaleY(0.72);
  }
}
@keyframes hero-float {
  from {
    transform: rotate(-3.5deg) translateY(0);
  }
  to {
    transform: rotate(-3.5deg) translateY(-9px);
  }
}
@keyframes detail-float {
  to {
    translate: 0 -9px;
  }
}
@keyframes strip-glide {
  to {
    left: 100%;
  }
}
@keyframes tile-halo {
  to {
    translate: -28px 24px;
    scale: 1.15;
  }
}
@keyframes symbol-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes symbol-sway {
  to {
    transform: translate(-8px, 5px) rotate(-13deg);
  }
}
@keyframes symbol-breathe {
  50% {
    transform: scale(1.14);
    opacity: 0.76;
  }
}
@keyframes product-hover {
  to {
    translate: 0 -5px;
  }
}
@keyframes cta-orbit {
  to {
    translate: 25px 12px;
    scale: 1.06;
  }
}
@media (max-width: 1120px) {
  .site-nav {
    gap: 13px;
  }
  .site-nav a {
    font-size: 0.78rem;
  }
  .site-header__cta {
    display: none;
  }
  .home-hero h1 {
    font-size: clamp(3.7rem, 6vw, 5.5rem);
  }
  .hero-visual__float--one {
    left: 0;
  }
  .intro-strip__inner {
    grid-template-columns: 0.5fr 1.5fr;
  }
  .intro-strip .text-link {
    grid-column: 2;
    justify-self: start;
  }
  .site-footer__cols {
    gap: 25px;
  }
}
@media (max-width: 850px) {
  .site-header__inner {
    min-height: 69px;
  }
  .menu-toggle {
    display: flex;
    margin-left: auto;
  }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 69px;
    margin: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 25px 30px rgba(23, 39, 43, 0.12);
    padding: 18px 24px 26px;
  }
  .site-nav[data-open="true"] {
    display: grid;
    gap: 0;
  }
  .site-nav a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }
  .site-nav__mobile-cta {
    display: block !important;
    color: var(--accent-dark) !important;
  }
  .home-hero__grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 20px;
    padding-top: 55px;
  }
  .home-hero__copy {
    padding: 0;
  }
  .home-hero h1 {
    font-size: clamp(3.8rem, 9vw, 6rem);
  }
  .hero-trust {
    margin-top: 40px;
  }
  .hero-visual {
    min-height: 440px;
  }
  .hero-visual__main {
    max-width: 660px;
  }
  .intro-strip__inner {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .intro-strip .text-link {
    grid-column: auto;
  }
  .section {
    padding-block: 75px;
  }
  .service-grid,
  .showcase-grid,
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-grid > :last-child,
  .showcase-grid > :last-child {
    grid-column: span 2;
  }
  .showcase-grid > :last-child .showcase-card__image img {
    aspect-ratio: 2.2;
  }
  .section-heading {
    align-items: start;
  }
  .cta-band__inner {
    display: grid;
    gap: 30px;
  }
  .cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .page-hero__orbit {
    flex-basis: 150px;
    height: 150px;
  }
  .service-detail,
  .product-feature {
    gap: 35px;
  }
  .contact-layout {
    gap: 30px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .site-footer__top {
    display: grid;
    gap: 55px;
  }
  .site-footer__cols {
    max-width: 650px;
  }
}
@media (max-width: 650px) {
  .container {
    width: min(100% - 34px, var(--width));
  }
  .brand__name {
    font-size: 1.14rem;
  }
  .brand__mark {
    width: 38px;
    height: 38px;
  }
  .home-hero__grid {
    padding-top: 37px;
  }
  .home-hero h1 {
    font-size: clamp(3.3rem, 12vw, 4.8rem);
    margin: 23px 0;
  }
  .hero-actions {
    align-items: start;
    gap: 20px;
  }
  .hero-visual {
    min-height: 310px;
  }
  .hero-visual__main {
    width: 97%;
  }
  .hero-visual__orbit {
    left: 0;
    width: 100%;
  }
  .hero-visual__float {
    padding: 9px 11px;
    border-radius: 9px;
  }
  .hero-visual__float strong {
    font-size: 0.62rem;
  }
  .hero-visual__float small {
    display: none;
  }
  .hero-visual__float--one {
    bottom: 8px;
  }
  .hero-visual__float--two {
    top: 20px;
    right: 0;
  }
  .mini-icon {
    width: 20px;
    height: 20px;
    margin-bottom: 2px;
  }
  .hero-caption span:last-child {
    display: none;
  }
  .section {
    padding-block: 65px;
  }
  .section-heading {
    display: grid;
    gap: 17px;
  }
  .section-heading h2 {
    font-size: clamp(2.45rem, 10vw, 3.6rem);
  }
  .section-heading > p {
    width: 100%;
  }
  .service-grid,
  .showcase-grid,
  .project-grid,
  .audience-grid,
  .steps {
    grid-template-columns: 1fr;
  }
  .service-grid > :last-child,
  .showcase-grid > :last-child {
    grid-column: auto;
  }
  .showcase-grid > :last-child .showcase-card__image img {
    aspect-ratio: 1.5;
  }
  .service-tile {
    min-height: 280px;
  }
  .steps {
    gap: 30px;
  }
  .steps h3 {
    margin-top: 23px;
  }
  .featured-work__thumb {
    width: 84px;
    height: 59px;
  }
  .featured-work__item {
    gap: 14px;
  }
  .featured-work__item h3 {
    font-size: 1.1rem;
  }
  .cta-band__inner {
    padding-block: 62px;
  }
  .cta-band h2 {
    font-size: clamp(2.5rem, 9.5vw, 3.6rem);
  }
  .page-hero__inner {
    min-height: 300px;
    padding-block: 55px;
  }
  .page-hero__orbit {
    display: none;
  }
  .page-hero h1 {
    font-size: clamp(3rem, 10vw, 4.5rem);
  }
  .service-detail,
  .split-callout,
  .product-feature,
  .about-grid,
  .founder-grid,
  .contact-layout,
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .service-detail {
    padding: 35px 0;
  }
  .service-detail__panel {
    padding: 23px;
  }
  .split-callout h2 {
    font-size: 2.8rem;
  }
  .product-list {
    gap: 70px;
  }
  .product-feature--reverse .product-feature__image {
    order: 0;
  }
  .product-feature__image {
    padding: 15px;
  }
  .work-intro {
    display: block;
  }
  .project-card__summary {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .audience-grid article {
    min-height: 260px;
  }
  .audience-grid h2 {
    margin-top: 30px;
  }
  .about-grid__statement {
    min-height: 350px;
  }
  .founder-grid__photo {
    max-height: 450px;
  }
  .contact-layout__aside {
    margin-bottom: 20px;
  }
  .form-panel {
    padding: 23px;
  }
  .form-bottom {
    display: grid;
    gap: 16px;
  }
  .form-bottom p {
    order: 2;
  }
  .support-intro {
    display: block;
  }
  .legal-layout aside {
    position: static;
  }
  .site-footer__cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
  .site-footer__top {
    padding: 60px 0;
  }
  .site-footer__bottom {
    display: grid;
    gap: 5px;
  }
}
@media (max-width: 420px) {
  .hero-trust {
    gap: 9px;
  }
  .hero-trust strong {
    padding-left: 9px;
    font-size: 0.7rem;
  }
  .button {
    white-space: normal;
  }
  .site-footer__cols {
    grid-template-columns: 1fr;
  }
}
.browser-frame img {
  height: auto;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .home-page .steps > div::before {
    transform: scaleX(1);
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
