:root {
  --ink: #0f172a;
  --ink-soft: #1e293b;
  --muted: #64748b;
  --line: #e2e8f0;
  --paper: #f8fafc;
  --white: #ffffff;
  --violet: #6d4aff;
  --violet-dark: #4f46e5;
  --violet-soft: #f3f0ff;
  --cyan: #20c8e5;
  --cyan-dark: #0891b2;
  --lime: #a3e635;
  --radius-lg: 36px;
  --radius-md: 24px;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 124px 0;
}

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

.site-header.is-scrolled,
.site-header.menu-visible {
  border-color: rgba(226, 232, 240, 0.9);
  background: rgba(248, 250, 252, 0.9);
  box-shadow: 0 12px 38px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(18px);
}

.nav {
  display: grid;
  grid-template-columns: 270px 1fr auto;
  gap: 42px;
  align-items: center;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  width: 240px;
}

.desktop-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: flex-end;
}

.desktop-nav a {
  position: relative;
  color: #475569;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  content: "";
  background: var(--violet);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.button {
  display: inline-flex;
  min-height: 56px;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.desktop-nav a:focus-visible,
.menu-button:focus-visible {
  outline: 3px solid rgba(109, 74, 255, 0.3);
  outline-offset: 4px;
}

.button--small {
  min-height: 46px;
  padding-inline: 18px;
  border-radius: 13px;
  font-size: 13px;
}

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

.button--dark:hover {
  background: #26324a;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
}

.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--violet), var(--violet-dark));
  box-shadow: 0 16px 32px rgba(79, 70, 229, 0.24);
}

.button--primary:hover {
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.32);
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  min-height: 800px;
  overflow: hidden;
  padding-top: 176px;
  padding-bottom: 110px;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(79, 70, 229, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 70, 229, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow--one {
  top: -380px;
  left: -320px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(109, 74, 255, 0.15), transparent 68%);
}

.hero-glow--two {
  right: -280px;
  bottom: -420px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(32, 200, 229, 0.16), transparent 68%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(520px, 1.06fr);
  gap: 60px;
  align-items: center;
}

.eyebrow {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0 0 24px;
  color: var(--violet-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: block;
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.process-intro h2,
.approach-copy h2,
.contact-card h2,
.legal-hero h1 {
  margin: 0;
  font-size: clamp(58px, 7vw, 96px);
  font-weight: 850;
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.hero h1 em,
.section-heading h2 em,
.process-intro h2 em,
.approach-copy h2 em,
.contact-card h2 em {
  color: transparent;
  background: linear-gradient(100deg, var(--violet), var(--cyan-dark));
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
}

.hero-lead {
  max-width: 575px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

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

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

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

.text-link:hover span {
  transform: translateY(3px);
}

.text-link--strong {
  margin-top: 30px;
  color: var(--violet-dark);
}

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

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
}

.hero-tags li {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #475569;
  background: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 750;
}

.product-stage {
  position: relative;
  min-height: 580px;
  isolation: isolate;
}

.product-stage::before {
  position: absolute;
  z-index: -2;
  top: 50%;
  left: 50%;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  content: "";
  background:
    linear-gradient(135deg, rgba(109, 74, 255, 0.14), rgba(32, 200, 229, 0.14)),
    var(--white);
  box-shadow: inset 0 0 0 1px rgba(109, 74, 255, 0.08);
  transform: translate(-50%, -50%);
}

.orbit {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  border: 1px dashed rgba(109, 74, 255, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
}

.orbit--one {
  width: 590px;
  height: 390px;
}

.orbit--two {
  width: 400px;
  height: 560px;
  border-color: rgba(32, 200, 229, 0.2);
  transform: translate(-50%, -50%) rotate(36deg);
}

.phone {
  position: absolute;
  overflow: hidden;
  border: 7px solid var(--ink);
  border-radius: 38px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.phone--main {
  z-index: 3;
  top: 20px;
  left: 50%;
  width: 270px;
  height: 540px;
  padding: 17px 15px;
  transform: translateX(-50%) rotate(1deg);
}

.phone--left,
.phone--right {
  z-index: 1;
  top: 118px;
  width: 190px;
  height: 385px;
  padding: 17px 14px;
  border-width: 6px;
  border-radius: 31px;
}

.phone--left {
  left: 8px;
  transform: rotate(-10deg);
}

.phone--right {
  right: 6px;
  transform: rotate(10deg);
}

.phone-top {
  display: flex;
  justify-content: center;
  height: 19px;
}

.phone-top span {
  width: 66px;
  height: 7px;
  border-radius: 99px;
  background: var(--ink);
}

.phone--left .phone-top span,
.phone--right .phone-top span {
  width: 48px;
  height: 6px;
}

.app-head {
  display: grid;
  grid-template-columns: 31px 1fr 8px;
  gap: 9px;
  align-items: center;
  margin: 7px 0 24px;
}

.app-head img {
  width: 31px;
  height: 31px;
  border-radius: 9px;
}

.app-head span {
  font-size: 10px;
  font-weight: 800;
}

.app-head i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
}

.welcome {
  margin-bottom: 11px;
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.balance-card {
  padding: 18px;
  border-radius: 19px;
  color: var(--white);
  background:
    radial-gradient(circle at 95% 5%, rgba(32, 200, 229, 0.36), transparent 35%),
    linear-gradient(145deg, #1e1b4b, #312e81);
}

.balance-card small {
  display: block;
  margin-bottom: 5px;
  color: #c4b5fd;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.balance-card strong {
  display: block;
  font-size: 19px;
  letter-spacing: -0.04em;
}

.progress {
  height: 5px;
  margin-top: 17px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.18);
}

.progress span {
  display: block;
  width: 92%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--lime));
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  color: #e0e7ff;
  font-size: 7px;
  font-weight: 700;
}

.quick-title {
  display: flex;
  justify-content: space-between;
  margin: 23px 2px 9px;
  font-size: 9px;
  font-weight: 800;
}

.quick-title span:last-child {
  color: var(--violet);
  font-size: 7px;
}

.task-row {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 10px 6px;
  border-bottom: 1px solid #eef2f7;
}

.task-icon {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.45), transparent),
    var(--violet);
}

.task-icon--cyan {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.45), transparent),
    var(--cyan-dark);
}

.task-row strong,
.task-row small {
  display: block;
}

.task-row strong {
  font-size: 8px;
}

.task-row small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 6px;
}

.task-status {
  padding: 4px 6px;
  border-radius: 99px;
  color: #3f6212;
  background: #ecfccb;
  font-size: 6px;
  font-weight: 800;
}

.task-status--next {
  color: #3730a3;
  background: #eef2ff;
}

.tab-bar {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 38px;
  border-radius: 14px;
  background: #f8fafc;
}

.tab-bar i {
  width: 10px;
  height: 10px;
  border: 2px solid #cbd5e1;
  border-radius: 3px;
}

.tab-bar i:first-child {
  border-color: var(--violet);
  background: var(--violet);
}

.mini-label {
  margin: 18px 0 11px;
  font-size: 15px;
  font-weight: 850;
}

.chart {
  display: flex;
  gap: 6px;
  align-items: end;
  height: 120px;
  padding: 15px 10px 10px;
  border-radius: 17px;
  background: var(--violet-soft);
}

.chart i {
  flex: 1;
  min-height: 15px;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(to top, var(--violet), #a78bfa);
}

.chart i:nth-child(1) { height: 35%; }
.chart i:nth-child(2) { height: 56%; }
.chart i:nth-child(3) { height: 44%; }
.chart i:nth-child(4) { height: 79%; }
.chart i:nth-child(5) { height: 62%; }
.chart i:nth-child(6) { height: 91%; }

.mini-row {
  display: grid;
  grid-template-columns: 1fr 38px;
  gap: 9px;
  margin-top: 16px;
}

.mini-row span {
  height: 8px;
  border-radius: 99px;
  background: #dbe4f0;
}

.mini-row span:last-child {
  background: #cffafe;
}

.mini-row--short {
  grid-template-columns: 65% 25px;
  margin-top: 10px;
}

.profile-ring {
  display: grid;
  width: 94px;
  height: 94px;
  margin: 27px auto 16px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--cyan) 0 78%, #e2e8f0 78%);
}

.profile-ring span {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 7px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: 25px;
  font-weight: 850;
}

.profile-line {
  width: 80%;
  height: 9px;
  margin: 0 auto 9px;
  border-radius: 99px;
  background: #cbd5e1;
}

.profile-line--short {
  width: 48%;
  height: 7px;
  background: #e2e8f0;
}

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

.metric-grid div {
  padding: 13px 8px;
  border-radius: 12px;
  background: #f1f5f9;
  text-align: center;
}

.metric-grid strong,
.metric-grid small {
  display: block;
}

.metric-grid strong {
  font-size: 14px;
}

.metric-grid small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 6px;
}

.stage-note {
  position: absolute;
  z-index: 5;
  display: flex;
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(14px);
}

.stage-note--top {
  top: 72px;
  right: -3px;
  gap: 8px;
  align-items: center;
  padding: 12px 14px;
  font-size: 10px;
  font-weight: 800;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(163, 230, 53, 0.18);
}

.stage-note--bottom {
  bottom: 45px;
  left: 4px;
  min-width: 156px;
  flex-direction: column;
  padding: 13px 15px;
}

.stage-note--bottom strong {
  font-size: 10px;
}

.stage-note--bottom span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 8px;
}

.capability-strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--white);
}

.capability-track {
  display: flex;
  width: max-content;
  gap: 30px;
  align-items: center;
  padding: 19px 0;
  animation: ticker 30s linear infinite;
}

.capability-track span {
  color: #475569;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.capability-track i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--violet);
}

.services {
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.5fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 62px;
}

.section-heading h2,
.process-intro h2,
.approach-copy h2,
.contact-card h2 {
  font-size: clamp(46px, 5.6vw, 74px);
}

.section-heading > p,
.process-intro > p:last-child,
.approach-copy > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 380px;
  grid-column: span 2;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover {
  border-color: #c7d2fe;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transform: translateY(-4px);
}

.service-card--featured {
  grid-column: span 4;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 10%, rgba(32, 200, 229, 0.22), transparent 32%),
    linear-gradient(145deg, #111827, #1e1b4b);
}

.service-card--featured::after {
  position: absolute;
  right: -65px;
  bottom: -75px;
  width: 220px;
  height: 220px;
  border: 38px solid rgba(109, 74, 255, 0.25);
  border-radius: 50%;
  content: "";
}

.service-card--wide {
  min-height: 310px;
  grid-column: span 4;
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(109, 74, 255, 0.15);
  border-radius: 15px;
  color: var(--violet);
  background: var(--violet-soft);
}

.service-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon--cyan {
  color: var(--cyan-dark);
  background: #ecfeff;
}

.service-icon--lime {
  color: #4d7c0f;
  background: #f7fee7;
}

.service-icon--violet {
  color: #7c3aed;
  background: #faf5ff;
}

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

.service-card--featured .service-icon {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.card-index {
  position: absolute;
  top: 31px;
  right: 31px;
  color: #94a3b8;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.service-card--featured .card-index {
  color: #94a3b8;
}

.card-label {
  margin: 0 0 8px;
  color: var(--violet);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card--featured .card-label {
  color: var(--cyan);
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 27px;
  letter-spacing: -0.04em;
}

.service-card p:not(.card-label) {
  max-width: 550px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.service-card--featured p:not(.card-label) {
  color: #cbd5e1;
}

.card-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.card-tags span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: #64748b;
  background: var(--white);
  font-size: 9px;
  font-weight: 800;
}

.service-card--featured .card-tags span {
  border-color: rgba(255, 255, 255, 0.14);
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.07);
}

.process {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 12%, rgba(32, 200, 229, 0.12), transparent 28%),
    radial-gradient(circle at 10% 90%, rgba(109, 74, 255, 0.16), transparent 30%),
    var(--ink);
}

.process .container {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: 100px;
}

.eyebrow--light {
  color: var(--cyan);
}

.process-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.process-intro h2 em,
.contact-card h2 em {
  background: linear-gradient(100deg, #a78bfa, #67e8f9);
  -webkit-background-clip: text;
  background-clip: text;
}

.process-intro > p:last-child {
  margin-top: 28px;
  color: #94a3b8;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.process-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.process-list > li > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 13px;
  color: #a5b4fc;
  font-size: 10px;
  font-weight: 850;
}

.process-list h3 {
  margin: 2px 0 8px;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.process-list p {
  max-width: 480px;
  margin: 0;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.65;
}

.process-list i {
  padding: 7px 10px;
  border-radius: 99px;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.06);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.approach {
  background: var(--white);
}

.approach-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: center;
}

.approach-copy > p {
  margin-top: 28px;
}

.approach-panels {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  align-items: stretch;
}

.approach-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

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

.approach-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
  color: #94a3b8;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.live-pill {
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 6px 8px;
  border-radius: 99px;
  color: #bef264;
  background: rgba(163, 230, 53, 0.1);
  font-size: 8px;
}

.live-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}

.week {
  display: grid;
  gap: 5px;
}

.week-row {
  display: grid;
  grid-template-columns: 34px 1fr 8px;
  gap: 12px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.week-row span {
  color: #64748b;
  font-size: 8px;
  font-weight: 850;
}

.week-row strong {
  font-size: 11px;
}

.week-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.week-dot--violet {
  background: #a78bfa;
}

.week-dot--cyan {
  background: var(--cyan);
}

.week-dot--lime {
  background: var(--lime);
}

.approach-card--dark > p {
  margin: 25px 0 0;
  color: #94a3b8;
  font-size: 12px;
  line-height: 1.6;
}

.check-list {
  display: grid;
  gap: 21px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #475569;
  font-size: 12px;
  font-weight: 700;
}

.check-list span {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 7px;
  color: #4d7c0f;
  background: #ecfccb;
  font-size: 10px;
}

.stack {
  border-top: 1px solid var(--line);
}

.section-heading--compact {
  margin-bottom: 46px;
}

.stack-groups {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}

.stack-groups > div {
  min-height: 260px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.stack-groups > div:last-child {
  border-right: 0;
}

.stack-groups > div > span {
  color: var(--violet);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stack-groups ul {
  display: grid;
  gap: 12px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.stack-groups li {
  color: #334155;
  font-size: 14px;
  font-weight: 750;
}

.contact {
  padding-top: 40px;
  background: var(--paper);
}

.contact-card {
  position: relative;
  overflow: hidden;
  padding: 78px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(109, 74, 255, 0.2), transparent 48%),
    var(--ink);
}

.contact-card > * {
  position: relative;
  z-index: 2;
}

.contact-card h2 {
  max-width: 760px;
}

.contact-card > p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px 0 32px;
  color: #aeb9c9;
  font-size: 17px;
  line-height: 1.7;
}

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

.button--light:hover {
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.22);
}

.contact-card small {
  display: block;
  margin-top: 18px;
  color: #64748b;
  font-size: 10px;
  font-weight: 750;
}

.contact-avatar {
  position: absolute;
  z-index: 1;
  right: 76px;
  bottom: -55px;
  width: 310px;
  height: 310px;
  border-radius: 74px;
  opacity: 0.13;
  transform: rotate(9deg);
}

.contact-orb {
  position: absolute;
  z-index: 0;
  top: -220px;
  right: -90px;
  width: 550px;
  height: 550px;
  border: 80px solid rgba(32, 200, 229, 0.08);
  border-radius: 50%;
}

.site-footer {
  padding: 42px 0 30px;
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px;
  padding: 56px 0;
}

.footer-brand img {
  width: 240px;
}

.footer-brand p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-grid h2 {
  margin: 0 0 18px;
  color: #94a3b8;
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-grid a,
.footer-grid span {
  color: #475569;
  font-size: 12px;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--violet);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: #94a3b8;
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
}

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

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal--delay {
  transition-delay: 120ms;
}

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

/* Legal pages */
.legal-page {
  background: var(--paper);
}

.legal-header {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 250, 252, 0.96);
}

.legal-header .nav {
  grid-template-columns: 1fr auto;
}

.legal-back {
  color: #475569;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.legal-back:hover {
  color: var(--violet);
}

.legal-main {
  min-height: 65vh;
}

.legal-hero {
  padding: 80px 0 68px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 20%, rgba(32, 200, 229, 0.11), transparent 25%),
    radial-gradient(circle at 10% 90%, rgba(109, 74, 255, 0.1), transparent 28%);
}

.legal-hero h1 {
  font-size: clamp(48px, 7vw, 78px);
}

.legal-hero p:last-child {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.legal-content {
  width: min(780px, calc(100% - 48px));
  margin: 0 auto;
  padding: 74px 0 110px;
}

.legal-content h2 {
  margin: 48px 0 14px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: #475569;
  font-size: 15px;
  line-height: 1.8;
}

.legal-content ul {
  padding-left: 22px;
}

.legal-content a {
  color: var(--violet-dark);
  font-weight: 700;
}

.legal-box {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.legal-box p {
  margin: 0;
}

.legal-footer {
  border-top: 1px solid var(--line);
}

.legal-footer .footer-bottom {
  border-top: 0;
}

.not-found {
  display: grid;
  min-height: 72vh;
  place-items: center;
  padding: 120px 24px 70px;
  text-align: center;
}

.not-found img {
  width: 130px;
  margin: 0 auto 28px;
  border-radius: 30px;
}

.not-found h1 {
  margin: 0;
  font-size: clamp(46px, 8vw, 82px);
  letter-spacing: -0.06em;
}

.not-found p {
  max-width: 480px;
  margin: 18px auto 28px;
  color: var(--muted);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 1050px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 720px;
    text-align: center;
    margin-inline: auto;
  }

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

  .hero-lead {
    margin-inline: auto;
  }

  .product-stage {
    width: min(640px, 100%);
    margin-inline: auto;
  }

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

  .approach-copy {
    max-width: 680px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .section {
    padding: 90px 0;
  }

  .nav {
    grid-template-columns: 1fr auto;
    min-height: 72px;
  }

  .brand {
    width: 215px;
  }

  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .menu-button {
    display: flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--white);
  }

  .menu-button span {
    width: 18px;
    height: 2px;
    border-radius: 4px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

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

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

  .mobile-nav {
    position: fixed;
    z-index: 90;
    top: 72px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    padding: 14px 16px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(248, 250, 252, 0.98);
    box-shadow: 0 22px 40px rgba(15, 23, 42, 0.1);
    backdrop-filter: blur(18px);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 10px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-nav a:last-child {
    margin-top: 12px;
    border: 0;
    border-radius: 14px;
    color: var(--white);
    background: var(--ink);
  }

  .hero {
    min-height: auto;
    padding-top: 140px;
  }

  .section-heading,
  .process .container {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .section-heading > p {
    max-width: 630px;
  }

  .service-card,
  .service-card--featured,
  .service-card--wide {
    min-height: 340px;
    grid-column: span 3;
  }

  .process-intro {
    position: static;
  }

  .approach-panels {
    grid-template-columns: 1fr 1fr;
  }

  .stack-groups {
    grid-template-columns: 1fr 1fr;
  }

  .stack-groups > div:nth-child(2) {
    border-right: 0;
  }

  .stack-groups > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .contact-card {
    padding: 58px 44px;
  }

  .contact-avatar {
    right: -30px;
  }

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

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .section {
    padding: 76px 0;
  }

  .brand {
    width: 190px;
  }

  .hero {
    padding-top: 124px;
    padding-bottom: 76px;
  }

  .hero h1 {
    font-size: clamp(56px, 18vw, 76px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .product-stage {
    min-height: 450px;
    margin-top: 14px;
  }

  .product-stage::before {
    width: 330px;
    height: 330px;
  }

  .orbit--one {
    width: 400px;
    height: 275px;
  }

  .orbit--two {
    width: 280px;
    height: 390px;
  }

  .phone--main {
    top: 12px;
    width: 216px;
    height: 432px;
    border-width: 6px;
    border-radius: 31px;
    transform: translateX(-50%) scale(0.94);
    transform-origin: top center;
  }

  .phone--left,
  .phone--right {
    top: 103px;
    width: 145px;
    height: 300px;
    border-width: 5px;
  }

  .phone--left {
    left: -20px;
  }

  .phone--right {
    right: -20px;
  }

  .stage-note--top {
    top: 49px;
    right: -3px;
  }

  .stage-note--bottom {
    bottom: 14px;
    left: 0;
  }

  .phone--main .welcome {
    font-size: 17px;
  }

  .phone--main .balance-card {
    padding: 13px;
  }

  .phone--main .quick-title {
    margin-top: 14px;
  }

  .phone--main .task-row {
    padding-block: 7px;
  }

  .phone--main .tab-bar {
    bottom: 12px;
    height: 30px;
  }

  .chart {
    height: 82px;
  }

  .profile-ring {
    width: 72px;
    height: 72px;
  }

  .profile-ring span {
    width: 55px;
    height: 55px;
    font-size: 20px;
  }

  .metric-grid {
    grid-template-columns: 1fr;
    margin-top: 15px;
  }

  .section-heading h2,
  .process-intro h2,
  .approach-copy h2,
  .contact-card h2 {
    font-size: clamp(43px, 13vw, 60px);
  }

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

  .service-card,
  .service-card--featured,
  .service-card--wide {
    min-height: 330px;
    grid-column: auto;
  }

  .process-list li {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .process-list i {
    display: none;
  }

  .approach-panels {
    grid-template-columns: 1fr;
  }

  .stack-groups {
    grid-template-columns: 1fr;
  }

  .stack-groups > div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stack-groups > div:last-child {
    border-bottom: 0;
  }

  .contact {
    padding-top: 20px;
  }

  .contact-card {
    padding: 46px 28px;
    border-radius: 28px;
  }

  .contact-card > p:not(.eyebrow) {
    font-size: 15px;
  }

  .contact-card .button {
    width: 100%;
    padding-inline: 15px;
    font-size: 12px;
  }

  .contact-avatar {
    right: -100px;
    width: 260px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > div:nth-child(3) {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    gap: 16px;
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-header .brand {
    width: 175px;
  }

  .legal-back {
    font-size: 11px;
  }

  .legal-content {
    width: min(100% - 32px, 780px);
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
