:root {
  --ink: #171718;
  --ink-soft: #2d2d30;
  --paper: #f7f6f2;
  --white: #ffffff;
  --line: rgba(23, 23, 24, 0.14);
  --muted: #66666b;
  --lime: #c9f453;
  --coral: #ff795f;
  --violet: #9878ff;
  --cyan: #70d8f4;
  --radius-lg: 34px;
  --radius-md: 24px;
  --shadow: 0 24px 80px rgba(23, 23, 24, 0.12);
  --shell: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 4px;
}

.process button:focus-visible,
.cta a:focus-visible {
  outline-color: var(--lime);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  transition: background-color 200ms ease, border-color 200ms ease, backdrop-filter 200ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(247, 246, 242, 0.86);
  border-color: rgba(23, 23, 24, 0.08);
  backdrop-filter: blur(18px);
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 790;
  letter-spacing: -0.055em;
}

.brand-mark {
  width: 28px;
  height: 28px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  transform: rotate(45deg);
}

.brand-mark span {
  display: block;
  border-radius: 3px;
  background: var(--ink);
}

.brand-mark span:nth-child(1) {
  border-radius: 9px 3px 3px;
}

.brand-mark span:nth-child(2) {
  background: var(--coral);
  border-radius: 3px 9px 3px 3px;
}

.brand-mark span:nth-child(3) {
  background: var(--violet);
  border-radius: 3px 3px 3px 9px;
}

.brand-mark span:nth-child(4) {
  border-radius: 3px 3px 9px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 650;
}

.nav-links > a:not(.nav-cta) {
  position: relative;
}

.nav-links > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links > a:not(.nav-cta):hover::after,
.nav-links > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 11px 12px 11px 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 100px;
}

.nav-cta span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  transition: transform 180ms ease;
}

.nav-cta:hover span {
  transform: rotate(45deg);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-3px);
}

.menu-toggle span:last-child {
  transform: translateY(3px);
}

.hero {
  min-height: 760px;
  padding-top: 82px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -240px;
  right: -240px;
  width: 740px;
  height: 740px;
  opacity: 0.45;
  background: radial-gradient(circle, rgba(152, 120, 255, 0.2), rgba(152, 120, 255, 0) 66%);
}

.hero-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 50px;
  padding-block: 68px 74px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 23px;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 10px;
  height: 10px;
  display: block;
  background: var(--lime);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--lime);
}

.hero h1 {
  max-width: 670px;
  margin: 0;
  font-size: clamp(58px, 6.2vw, 92px);
  font-weight: 770;
  letter-spacing: -0.075em;
  line-height: 0.94;
}

.hero h1 span,
.section-heading h2 span,
.why-copy h2 span {
  color: transparent;
  -webkit-text-stroke: 1.6px var(--ink);
}

.hero-intro {
  max-width: 570px;
  margin: 30px 0 0;
  color: #4e4e52;
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 35px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 8px 9px 8px 24px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 720;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(23, 23, 24, 0.16);
}

.button-dark {
  min-width: 190px;
  color: var(--white);
  background: var(--ink);
}

.button-icon {
  width: 39px;
  height: 39px;
  display: grid;
  flex: none;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: 18px;
  transition: transform 180ms ease;
}

.button:hover .button-icon {
  transform: rotate(45deg);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-block: 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(2px, 2px);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 42px;
}

.hero-note p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.hero-note p strong {
  color: var(--ink);
  font-weight: 720;
}

.mini-avatars {
  display: flex;
  padding-left: 8px;
}

.mini-avatars span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  margin-left: -8px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.mini-avatars span:nth-child(1) { background: var(--violet); }
.mini-avatars span:nth-child(2) { background: var(--coral); }
.mini-avatars span:nth-child(3) { background: var(--lime); }

.hero-visual {
  height: 600px;
  position: relative;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: min(470px, 90%);
  aspect-ratio: 1;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(23, 23, 24, 0.08);
}

.hero-visual::after {
  content: "";
  position: absolute;
  width: min(580px, 108%);
  aspect-ratio: 1;
  border: 1px solid rgba(23, 23, 24, 0.1);
  border-radius: 50%;
}

.orbit {
  position: absolute;
  z-index: 1;
  width: 520px;
  height: 170px;
  border: 1px solid rgba(23, 23, 24, 0.22);
  border-radius: 50%;
  transform: rotate(-30deg);
}

.orbit-two {
  transform: rotate(31deg);
}

.phone-wrap {
  position: relative;
  z-index: 3;
  transform: rotate(7deg);
  animation: phone-float 6s ease-in-out infinite;
}

.phone-shadow {
  position: absolute;
  z-index: -1;
  right: -10px;
  bottom: -23px;
  left: 35px;
  height: 80%;
  filter: blur(28px);
  opacity: 0.35;
  background: var(--ink);
  border-radius: 50%;
}

.phone {
  width: 258px;
  height: 522px;
  padding: 9px;
  overflow: hidden;
  color: var(--white);
  background: #111113;
  border: 2px solid #36363a;
  border-radius: 42px;
  box-shadow: inset 0 0 0 1px #09090a, 0 35px 60px rgba(23, 23, 24, 0.26);
}

.phone-top {
  height: 30px;
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  font-size: 8px;
  font-weight: 700;
}

.phone-island {
  width: 68px;
  height: 19px;
  position: absolute;
  top: 2px;
  left: 50%;
  background: var(--ink);
  border-radius: 20px;
  transform: translateX(-50%);
}

.phone-status {
  font-size: 7px;
}

.app-screen {
  height: 100%;
  position: relative;
  padding: 40px 15px 14px;
  overflow: hidden;
  color: var(--ink);
  background: #fbfbf7;
  border-radius: 32px;
}

.app-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-logo {
  width: 19px;
  height: 19px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  transform: rotate(45deg);
}

.app-logo i {
  background: var(--ink);
  border-radius: 2px;
}

.app-logo i:nth-child(2) { background: var(--coral); }
.app-logo i:nth-child(3) { background: var(--violet); }

.app-avatar {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 8px;
  font-weight: 750;
}

.app-kicker {
  margin: 28px 0 5px;
  color: #85858a;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.app-screen h2 {
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.app-feature-card {
  min-height: 142px;
  display: grid;
  grid-template-columns: 1fr 78px;
  gap: 8px;
  margin-top: 20px;
  padding: 17px;
  color: var(--white);
  background: var(--ink);
  border-radius: 18px;
}

.app-feature-card > div:first-child {
  display: flex;
  flex-direction: column;
}

.app-feature-label {
  margin-bottom: 16px;
  color: var(--lime);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.app-feature-card strong {
  font-size: 18px;
  letter-spacing: -0.04em;
}

.app-feature-card small {
  max-width: 95px;
  margin-top: 4px;
  color: #a5a5a8;
  font-size: 7px;
  line-height: 1.4;
}

.mini-chart {
  height: 76px;
  display: flex;
  align-items: end;
  gap: 5px;
  align-self: end;
  padding-bottom: 2px;
}

.mini-chart span {
  width: 7px;
  height: var(--h);
  background: var(--lime);
  border-radius: 4px 4px 1px 1px;
}

.mini-chart span:nth-child(2n) { background: var(--violet); }
.mini-chart span:nth-child(3n) { background: var(--coral); }

.quick-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  font-size: 9px;
}

.quick-title span {
  letter-spacing: 1px;
}

.quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 8px;
}

.quick-grid > span {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px;
  background: #eeeeea;
  border-radius: 12px;
  font-size: 7px;
  font-weight: 720;
}

.quick-icon {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  background: var(--white);
  border-radius: 9px;
  font-size: 13px;
  font-style: normal;
}

.activity-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  margin-top: 13px;
  padding-top: 12px;
  border-top: 1px solid #deded9;
}

.activity-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: 11px;
}

.activity-row > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.activity-row small {
  color: #8a8a8e;
  font-size: 6px;
}

.activity-row strong,
.activity-row b {
  font-size: 8px;
}

.home-indicator {
  width: 78px;
  height: 3px;
  position: absolute;
  bottom: 7px;
  left: 50%;
  background: var(--ink);
  border-radius: 5px;
  transform: translateX(-50%);
}

.floating-chip {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 15px 9px 9px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(23, 23, 24, 0.08);
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(23, 23, 24, 0.12);
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 760;
}

.floating-chip small {
  display: block;
  color: #7b7b80;
  font-size: 7px;
  font-weight: 600;
}

.chip-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-size: 13px;
}

.chip-icon-green { background: var(--lime); }
.chip-icon-coral { background: var(--coral); }

.chip-top {
  top: 75px;
  right: -6px;
  animation: chip-float 5s 0.5s ease-in-out infinite;
}

.chip-bottom {
  bottom: 84px;
  left: -8px;
  animation: chip-float 5.5s ease-in-out infinite reverse;
}

.spark {
  position: absolute;
  z-index: 4;
  color: var(--ink);
  font-size: 28px;
  animation: spark-spin 10s linear infinite;
}

.spark-one { top: 93px; left: 35px; }
.spark-two { right: 31px; bottom: 130px; font-size: 18px; }

.hero-marquee {
  width: calc(100% + 40px);
  margin-left: -20px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  transform: rotate(-1deg);
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 36px;
  padding-block: 15px;
  animation: marquee 24s linear infinite;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.16em;
}

.marquee-track i {
  color: var(--lime);
  font-size: 14px;
}

.section {
  padding-block: 132px;
  scroll-margin-top: 80px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 58px;
}

.section-label {
  margin-bottom: 18px;
  color: #6b6b6f;
}

.section-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.section-heading h2,
.process-intro h2,
.why-copy h2,
.cta-content h2 {
  margin: 0;
  font-size: clamp(45px, 5vw, 67px);
  font-weight: 750;
  letter-spacing: -0.065em;
  line-height: 1;
}

.section-heading > p {
  max-width: 390px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

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

.service-card {
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 27px;
  border-radius: var(--radius-md);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.service-card-dark {
  color: var(--white);
  background: var(--ink);
}

.service-card-lime { background: var(--lime); }
.service-card-coral { background: var(--coral); }

.service-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-symbol {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: 24px;
}

.design-symbol {
  position: relative;
  display: block;
  background: var(--ink);
}

.design-symbol i {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid var(--white);
  border-radius: 50%;
}

.design-symbol i:nth-child(1) { top: 10px; left: 10px; }
.design-symbol i:nth-child(2) { top: 10px; right: 10px; }
.design-symbol i:nth-child(3) { bottom: 9px; left: 18px; }

.code-symbol {
  color: var(--white);
  background: var(--ink);
  font-size: 34px;
  font-weight: 300;
}

.service-card h3 {
  max-width: 260px;
  margin: 0 0 14px;
  font-size: clamp(28px, 2.7vw, 39px);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 1;
}

.service-card p {
  max-width: 300px;
  margin: 0;
  opacity: 0.72;
  font-size: 14px;
  line-height: 1.6;
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 7px 10px;
  border: 1px solid currentColor;
  border-radius: 100px;
  opacity: 0.75;
  font-size: 10px;
  font-weight: 700;
}

.process {
  color: var(--white);
  background: var(--ink);
}

.section-label-light {
  color: #a7a7ab;
}

.process-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 26px 80px;
}

.process-intro .section-label {
  grid-column: 1 / -1;
  margin: 0;
}

.process-intro h2 span,
.cta-content h2 span {
  color: var(--lime);
}

.process-intro > p:last-child {
  max-width: 420px;
  margin: 0 0 5px;
  color: #ababaf;
  font-size: 17px;
  line-height: 1.65;
}

.process-layout {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 80px;
  margin-top: 75px;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #38383b;
}

.process-item {
  border-bottom: 1px solid #38383b;
}

.process-item button {
  width: 100%;
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: start;
  gap: 18px;
  padding: 26px 0;
  color: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.step-number {
  padding-top: 7px;
  color: #737378;
  font-size: 10px;
  font-weight: 800;
}

.step-copy {
  display: flex;
  flex-direction: column;
}

.step-copy strong {
  color: #8c8c91;
  font-size: 27px;
  font-weight: 650;
  letter-spacing: -0.045em;
  transition: color 180ms ease;
}

.step-copy small {
  max-height: 0;
  max-width: 480px;
  overflow: hidden;
  color: #aaaab0;
  font-size: 13px;
  line-height: 1.6;
  opacity: 0;
  transition: max-height 220ms ease, opacity 200ms ease, margin 200ms ease;
}

.step-arrow {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  margin-top: 1px;
  color: var(--ink);
  background: #303034;
  border-radius: 50%;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.process-item.is-active .step-copy strong {
  color: var(--white);
}

.process-item.is-active .step-copy small {
  max-height: 80px;
  margin-top: 10px;
  opacity: 1;
}

.process-item.is-active .step-arrow {
  background: var(--lime);
  transform: rotate(45deg);
}

.process-card {
  min-height: 520px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  overflow: hidden;
  color: var(--ink);
  background: var(--lime);
  border-radius: var(--radius-lg);
}

.process-card-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: linear-gradient(rgba(23, 23, 24, 0.35) 1px, transparent 1px), linear-gradient(90deg, rgba(23, 23, 24, 0.35) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

.process-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.process-pill {
  padding: 7px 11px;
  color: var(--white);
  background: var(--ink);
  border-radius: 100px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.process-mark {
  width: 28px;
  height: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  transform: rotate(45deg);
}

.process-mark i {
  background: var(--ink);
  border-radius: 2px;
}

.process-illustration {
  width: 220px;
  height: 220px;
  position: absolute;
  z-index: 1;
  top: 82px;
  left: 50%;
  border: 1px solid rgba(23, 23, 24, 0.22);
  border-radius: 50%;
  transform: translateX(-50%);
  transition: transform 300ms ease;
}

.idea-core {
  width: 92px;
  height: 92px;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 28px;
  font-size: 45px;
  font-weight: 680;
  transform: translate(-50%, -50%) rotate(-7deg);
  box-shadow: 10px 12px 0 rgba(255, 255, 255, 0.55);
}

.idea-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250px;
  height: 74px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.idea-orbit-a { transform: translate(-50%, -50%) rotate(28deg); }
.idea-orbit-b { transform: translate(-50%, -50%) rotate(-28deg); }

.idea-dot {
  width: 13px;
  height: 13px;
  position: absolute;
  z-index: 3;
  border: 3px solid var(--lime);
  background: var(--ink);
  border-radius: 50%;
}

.idea-dot-a { top: 20px; left: 38px; }
.idea-dot-b { top: 92px; right: -12px; }
.idea-dot-c { bottom: 5px; left: 58px; }

.process-card-copy {
  position: relative;
  z-index: 2;
}

.process-card-copy h3 {
  max-width: 380px;
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 41px);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 1;
}

.process-card-copy p {
  max-width: 390px;
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.why {
  padding-bottom: 0;
}

.why-card {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 90px;
  padding: 72px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 0 rgba(23, 23, 24, 0.04);
}

.why-copy > p:not(.section-label) {
  max-width: 540px;
  margin: 28px 0 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.text-link-dark {
  gap: 40px;
}

.why-points {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding-block: 23px;
  border-bottom: 1px solid var(--line);
}

.why-point:first-child {
  padding-top: 0;
}

.why-point:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.why-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  background: var(--lime);
  border-radius: 13px;
  font-size: 20px;
  font-weight: 750;
}

.why-icon-coral { background: var(--coral); }
.why-icon-violet { background: var(--violet); }

.why-point strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 730;
}

.why-point p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.cta-card {
  min-height: 530px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 72px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-lg);
}

.cta-noise {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background: radial-gradient(circle at 82% 22%, rgba(152, 120, 255, 0.75), transparent 28%), radial-gradient(circle at 74% 85%, rgba(255, 121, 95, 0.55), transparent 25%);
}

.cta-content {
  position: relative;
  z-index: 3;
}

.cta-content > p:not(.section-label) {
  max-width: 500px;
  margin: 25px 0 30px;
  color: #b6b6ba;
  font-size: 16px;
}

.button-light {
  min-width: 250px;
  color: var(--ink);
  background: var(--white);
}

.cta-rings {
  width: 430px;
  height: 430px;
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 50%;
  transform: translateY(-50%);
}

.cta-rings span {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.cta-rings span:nth-child(1) { width: 78%; height: 78%; }
.cta-rings span:nth-child(2) { width: 58%; height: 58%; }
.cta-rings span:nth-child(3) { width: 38%; height: 38%; }
.cta-rings span:nth-child(4) { width: 18%; height: 18%; background: var(--lime); border: 0; }

.cta-rings b {
  position: relative;
  z-index: 2;
  color: var(--ink);
  font-size: 12px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-8deg);
}

.cta-spark {
  position: absolute;
  z-index: 2;
  color: var(--lime);
  font-size: 24px;
}

.cta-spark-one { top: 60px; right: 480px; }
.cta-spark-two { bottom: 54px; left: 55%; color: var(--coral); font-size: 18px; }

.footer {
  min-height: 145px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  border-top: 1px solid var(--line);
}

.footer > p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.footer-meta {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 11px;
}

.footer-meta a:hover {
  color: var(--ink);
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }

@keyframes phone-float {
  0%, 100% { transform: rotate(7deg) translateY(0); }
  50% { transform: rotate(5deg) translateY(-10px); }
}

@keyframes chip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes spark-spin {
  to { transform: rotate(360deg); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: 1fr 0.86fr;
    gap: 20px;
  }

  .hero-visual {
    transform: scale(0.88);
  }

  .service-card {
    min-height: 440px;
  }

  .process-layout {
    gap: 45px;
  }

  .why-card {
    gap: 50px;
    padding: 55px;
  }

  .cta-rings {
    right: -120px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 36px, 680px);
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: grid;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    padding: 90px 9vw;
    background: var(--lime);
    font-size: clamp(32px, 8vw, 52px);
    letter-spacing: -0.05em;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-cta {
    margin-top: 12px;
    font-size: 18px;
    letter-spacing: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-block: 70px 55px;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow,
  .hero-actions,
  .hero-note {
    justify-content: center;
  }

  .hero h1,
  .hero-intro {
    margin-inline: auto;
  }

  .hero-visual {
    height: 565px;
    margin-top: 10px;
    transform: none;
  }

  .section {
    padding-block: 95px;
  }

  .section-heading,
  .process-intro,
  .process-layout,
  .why-card {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 28px;
  }

  .section-heading > p,
  .process-intro > p:last-child {
    max-width: 600px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 390px;
  }

  .service-card h3,
  .service-card p {
    max-width: 460px;
  }

  .process-layout {
    gap: 55px;
  }

  .process-card {
    min-height: 540px;
  }

  .why-card {
    gap: 60px;
    padding: 52px;
  }

  .cta-card {
    min-height: 640px;
    align-items: flex-start;
    padding: 55px;
  }

  .cta-rings {
    top: auto;
    right: -45px;
    bottom: -200px;
    transform: none;
  }

  .cta-spark-one { right: 50px; }

  .footer {
    grid-template-columns: 1fr auto;
    padding-block: 40px;
  }

  .footer > p {
    display: none;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100vw - 28px);
    --radius-lg: 26px;
    --radius-md: 20px;
  }

  .nav {
    height: 72px;
  }

  .brand {
    font-size: 22px;
  }

  .brand-mark {
    width: 25px;
    height: 25px;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-grid {
    padding-block: 50px 32px;
  }

  .eyebrow {
    margin-bottom: 20px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(49px, 15vw, 72px);
    letter-spacing: -0.075em;
  }

  .hero-intro {
    margin-top: 24px;
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
  }

  .button-dark {
    min-width: min(260px, 100%);
  }

  .hero-note {
    margin-top: 29px;
  }

  .hero-visual {
    height: 500px;
    margin-top: 5px;
  }

  .hero-visual::before {
    width: 365px;
  }

  .hero-visual::after {
    width: 440px;
  }

  .orbit {
    width: 400px;
  }

  .phone-wrap {
    transform: scale(0.8) rotate(7deg);
    animation: none;
  }

  .chip-top {
    top: 60px;
    right: -5px;
  }

  .chip-bottom {
    bottom: 65px;
    left: -5px;
  }

  .spark-one { left: 7px; }

  .section {
    padding-block: 76px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .process-intro h2,
  .why-copy h2,
  .cta-content h2 {
    font-size: clamp(40px, 12vw, 55px);
  }

  .section-heading > p,
  .process-intro > p:last-child {
    font-size: 15px;
  }

  .service-card {
    min-height: 410px;
    padding: 23px;
  }

  .process-layout {
    margin-top: 52px;
  }

  .process-item button {
    grid-template-columns: 27px 1fr auto;
    gap: 12px;
    padding-block: 22px;
  }

  .step-copy strong {
    font-size: 23px;
  }

  .process-card {
    min-height: 480px;
    padding: 23px;
  }

  .process-illustration {
    top: 82px;
    transform: translateX(-50%) scale(0.85);
  }

  .why {
    padding-bottom: 0;
  }

  .why-card {
    gap: 50px;
    padding: 34px 24px;
  }

  .why-copy > p:not(.section-label) {
    font-size: 14px;
  }

  .cta-card {
    min-height: 620px;
    padding: 38px 24px;
  }

  .cta-content > p:not(.section-label) {
    font-size: 14px;
  }

  .button-light {
    width: 100%;
    min-width: 0;
    gap: 10px;
    padding-left: 18px;
    font-size: 13px;
  }

  .cta-rings {
    right: -96px;
    bottom: -190px;
    width: 390px;
    height: 390px;
  }

  .cta-spark-one { top: 35px; right: 20px; }

  .footer {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-meta {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 13px;
  }

  .footer-meta span {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
