:root {
  color-scheme: light;
  --ink: #17152e;
  --ink-soft: #48465f;
  --muted: #747289;
  --night: #17152e;
  --night-deep: #0f0d21;
  --night-soft: #272447;
  --paper: #f5f3ed;
  --surface: #fffef9;
  --violet: #7057e8;
  --violet-light: #a998ff;
  --violet-soft: #dfd9ff;
  --lime: #c8ef79;
  --coral: #f48f78;
  --cyan: #7ddccf;
  --line: rgba(23, 21, 46, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow: 0 30px 100px rgba(15, 13, 33, 0.26);
  --shadow-soft: 0 18px 60px rgba(15, 13, 33, 0.13);
  --radius: 22px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

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

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

body::selection {
  background: var(--lime);
  color: var(--ink);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 850;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  color: #fff;
}

.header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.06);
}

.brand-mark i {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--violet-light);
}

.brand-mark i:nth-child(1) {
  transform: translate(-7px, -5px);
}

.brand-mark i:nth-child(2) {
  background: var(--lime);
  transform: translate(7px, -5px);
}

.brand-mark i:nth-child(3) {
  background: var(--coral);
  transform: translate(0, 8px);
}

.brand-name {
  font-size: 1.07rem;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 29px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 690;
}

.main-nav a {
  transition: color 160ms ease;
}

.main-nav a:hover {
  color: var(--lime);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 23px;
  border: 1px solid var(--violet);
  border-radius: 999px;
  background: var(--violet);
  color: #fff;
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--ink);
  transform: translateY(-2px);
}

.button-small {
  min-height: 43px;
  padding: 10px 18px;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.button-small:hover {
  border-color: var(--lime);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 900px;
  align-items: center;
  overflow: hidden;
  padding: 152px 0 78px;
  background: var(--night-deep);
  color: #fff;
}

.hero-grid-bg {
  position: absolute;
  z-index: -3;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 75% 42%, rgba(112, 87, 232, 0.22), transparent 34%);
  background-size: 72px 72px, 72px 72px, auto;
  mask-image: linear-gradient(to bottom, #000 0%, #000 74%, transparent 100%);
}

.hero-orb {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(1px);
}

.hero-orb-one {
  top: -210px;
  right: -170px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(169, 152, 255, 0.2);
  box-shadow: 0 0 180px rgba(112, 87, 232, 0.12) inset;
}

.hero-orb-two {
  bottom: -320px;
  left: -260px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(200, 239, 121, 0.1);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 0.88fr);
  align-items: center;
  gap: clamp(64px, 8vw, 120px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 19px;
  color: var(--violet-light);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(200, 239, 121, 0.1);
}

.eyebrow-dark {
  color: var(--violet);
}

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

.hero h1 {
  max-width: 690px;
  margin-bottom: 26px;
  font-size: clamp(4.3rem, 6.5vw, 6.6rem);
  font-weight: 880;
  letter-spacing: -0.075em;
  line-height: 0.91;
}

.hero h1 em {
  color: var(--lime);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.04rem, 1.6vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.hero-actions .button {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--ink);
}

.hero-actions .button:hover {
  border-color: #fff;
  background: #fff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.91rem;
  font-weight: 790;
  transition: border-color 160ms ease, color 160ms ease;
}

.text-link:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 22px;
  margin: 29px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.85rem;
  list-style: none;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-list span {
  color: var(--lime);
}

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

.browser-card {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 2%;
  width: min(500px, 92%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #f2f0e9;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.browser-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 13px 15px;
  border-bottom: 1px solid rgba(23, 21, 46, 0.1);
  color: #777386;
  font-size: 0.62rem;
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c4c0cf;
}

.browser-dots span:nth-child(1) {
  background: var(--coral);
}

.browser-dots span:nth-child(2) {
  background: var(--lime);
}

.browser-dots span:nth-child(3) {
  background: var(--cyan);
}

.browser-body {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: 27px 29px;
  color: var(--night);
}

.screen-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 72px;
  font-size: 0.67rem;
  font-weight: 800;
}

.screen-logo {
  font-size: 0.9rem;
  font-weight: 950;
}

.screen-label {
  margin-bottom: 13px;
  color: var(--violet);
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.screen-title {
  position: relative;
  z-index: 2;
  max-width: 350px;
  margin-bottom: 21px;
  font-size: 3.45rem;
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.83;
}

.screen-title em {
  color: var(--violet);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.screen-copy {
  width: 56%;
  height: 7px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: rgba(23, 21, 46, 0.16);
}

.screen-copy-short {
  width: 39%;
}

.screen-button {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 25px;
  padding: 12px 15px;
  border-radius: 999px;
  background: var(--night);
  color: #fff;
  font-size: 0.61rem;
  font-weight: 900;
}

.screen-button span {
  color: var(--lime);
}

.screen-visual {
  position: absolute;
  right: -78px;
  bottom: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--violet-soft);
}

.screen-visual span,
.screen-visual i {
  position: absolute;
  border-radius: 50%;
}

.screen-visual span {
  top: 58px;
  left: 68px;
  width: 120px;
  height: 120px;
  border: 28px solid var(--violet);
}

.screen-visual i {
  top: 92px;
  left: 102px;
  width: 52px;
  height: 52px;
  background: var(--lime);
}

.funnel-card {
  position: absolute;
  z-index: 4;
  right: -22px;
  bottom: 20px;
  width: 230px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 17px;
  background: rgba(23, 21, 46, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.funnel-kicker {
  display: block;
  margin-bottom: 25px;
  color: var(--violet-light);
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.funnel-card > div {
  display: grid;
  grid-template-columns: 1fr 56px;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
}

.funnel-card i {
  display: block;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
}

.funnel-card > div:nth-of-type(2) i {
  width: 82%;
  background: rgba(169, 152, 255, 0.48);
}

.funnel-card > div:nth-of-type(3) i {
  width: 67%;
  background: rgba(200, 239, 121, 0.45);
}

.funnel-card .funnel-active {
  color: var(--lime);
  font-weight: 850;
}

.funnel-card .funnel-active i {
  width: 50%;
  background: var(--lime);
}

.hero-stamp {
  position: absolute;
  z-index: 5;
  bottom: 3px;
  left: 0;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border: 1px solid rgba(200, 239, 121, 0.5);
  border-radius: 50%;
  color: var(--lime);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-align: center;
  transform: rotate(-9deg);
}

.capability-bar {
  background: var(--violet);
  color: #fff;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.capability-grid > div {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.capability-grid > div:first-child {
  padding-left: 0;
}

.capability-grid > div:last-child {
  border-right: 0;
  padding-right: 0;
}

.capability-grid span {
  color: var(--lime);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.capability-grid p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 760;
}

.section {
  padding: 116px 0;
}

.problem-section {
  background: var(--surface);
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
  align-items: end;
  gap: clamp(70px, 9vw, 140px);
}

.problem-heading h2,
.section-heading h2,
.process-heading h2,
.contact-copy h2,
.faq-heading h2,
.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(3.1rem, 5.3vw, 5.2rem);
  font-weight: 880;
  letter-spacing: -0.07em;
  line-height: 0.96;
}

.problem-copy > p {
  color: var(--muted);
}

.problem-copy .problem-lead {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1.25;
}

.diagnosis-list {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.diagnosis-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 680;
}

.diagnosis-list span {
  color: var(--violet);
  font-weight: 900;
}

.services-section {
  background: var(--night);
  color: #fff;
}

.services-heading,
.projects-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 90px;
  margin-bottom: 56px;
}

.services-heading > p,
.projects-heading > p {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.57);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  padding: 29px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.service-card-accent {
  background: var(--violet);
}

.service-topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.53);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.service-card-accent .service-topline {
  color: rgba(255, 255, 255, 0.7);
}

.service-icon {
  position: relative;
  height: 205px;
}

.strategy-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.strategy-icon i:nth-child(1) {
  width: 138px;
  height: 138px;
}

.strategy-icon i:nth-child(2) {
  width: 84px;
  height: 84px;
  border-color: var(--lime);
}

.strategy-icon i:nth-child(3) {
  width: 24px;
  height: 24px;
  border: 0;
  background: var(--lime);
}

.content-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.content-icon i {
  display: block;
  width: 78%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.17);
}

.content-icon i:nth-child(1) {
  width: 42%;
  background: var(--violet-light);
}

.content-icon i:nth-child(3) {
  width: 62%;
}

.content-icon i:nth-child(4) {
  width: 48%;
  background: var(--lime);
}

.build-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 14px;
  transform: translate(-50%, -50%) rotate(-6deg);
}

.build-icon i:nth-child(1) {
  width: 190px;
  height: 126px;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.build-icon i:nth-child(2) {
  width: 148px;
  height: 90px;
  border: 1px solid var(--violet-light);
  transform: translate(-38%, -40%) rotate(5deg);
}

.build-icon i:nth-child(3) {
  width: 40px;
  height: 40px;
  background: var(--coral);
  transform: translate(130%, 60%);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
  letter-spacing: -0.035em;
}

.service-card > p {
  color: rgba(255, 255, 255, 0.57);
}

.service-card-accent > p {
  color: rgba(255, 255, 255, 0.72);
}

.service-card ul {
  position: absolute;
  right: 29px;
  bottom: 26px;
  left: 29px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.82rem;
  list-style: none;
}

.service-card li {
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.process-section {
  background: var(--paper);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(520px, 1.12fr);
  align-items: start;
  gap: clamp(70px, 10vw, 150px);
}

.process-heading {
  position: sticky;
  top: 44px;
}

.process-heading h2 {
  margin-bottom: 24px;
}

.process-heading > p:not(.eyebrow) {
  color: var(--muted);
}

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

.process-list li {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 23px;
  padding: 31px 0;
  border-top: 1px solid var(--line);
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-number {
  color: var(--violet);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.process-label {
  margin-bottom: 7px;
  color: var(--violet);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.process-list h3 {
  margin-bottom: 9px;
  font-size: 1.43rem;
  letter-spacing: -0.03em;
}

.process-list li p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.projects-section {
  background: var(--night-deep);
  color: #fff;
}

.projects-list {
  display: grid;
  gap: 14px;
}

.project-card {
  display: grid;
  min-height: 310px;
  grid-template-columns: 50px minmax(280px, 0.82fr) minmax(300px, 1fr) 44px;
  align-items: center;
  gap: 34px;
  overflow: hidden;
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  transition: border-color 180ms ease, transform 180ms ease;
}

.project-card:hover {
  border-color: var(--lime);
  transform: translateY(-3px);
}

.project-index {
  align-self: start;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.7rem;
  font-weight: 900;
}

.project-visual {
  position: relative;
  height: 250px;
  overflow: hidden;
  border-radius: 15px;
}

.project-bluecherry .project-visual {
  background: #f1aaac;
}

.smoothie {
  position: absolute;
  bottom: 38px;
  width: 88px;
  height: 142px;
  border-radius: 18px 18px 26px 26px;
  box-shadow: inset 0 9px 0 rgba(255, 255, 255, 0.45), 0 18px 28px rgba(77, 29, 57, 0.18);
}

.smoothie::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 8px;
  width: calc(100% - 16px);
  height: 17px;
  border: 3px solid rgba(255, 255, 255, 0.66);
  border-radius: 50%;
}

.smoothie-green {
  left: 17%;
  background: #9cc55e;
  transform: rotate(-5deg);
}

.smoothie-pink {
  z-index: 2;
  left: 40%;
  height: 158px;
  background: #e86e83;
}

.smoothie-purple {
  right: 13%;
  background: #75649d;
  transform: rotate(5deg);
}

.project-finance .project-visual {
  display: grid;
  place-items: center;
  background: #e7e2d2;
}

.finance-chart {
  position: relative;
  width: 80%;
  height: 70%;
  border-bottom: 1px solid rgba(23, 21, 46, 0.24);
  border-left: 1px solid rgba(23, 21, 46, 0.24);
}

.finance-chart i {
  position: absolute;
  bottom: 0;
  width: 13%;
  border-radius: 4px 4px 0 0;
  background: var(--forest, #496650);
}

.finance-chart i:nth-child(1) { left: 9%; height: 25%; }
.finance-chart i:nth-child(2) { left: 30%; height: 43%; }
.finance-chart i:nth-child(3) { left: 51%; height: 59%; }
.finance-chart i:nth-child(4) { left: 72%; height: 82%; background: #d1a552; }

.finance-chart span {
  position: absolute;
  top: 19%;
  right: 9%;
  width: 80%;
  height: 2px;
  background: #d1a552;
  transform: rotate(-25deg);
  transform-origin: right;
}

.finance-chart span::after {
  content: "";
  position: absolute;
  top: -5px;
  right: -1px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #d1a552;
  border-right: 2px solid #d1a552;
  transform: rotate(45deg);
}

.project-mindful .project-visual {
  display: grid;
  place-items: center;
  background: #e3d2ca;
}

.mindful-orbit {
  position: relative;
  width: 190px;
  height: 190px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(46, 74, 57, 0.26);
  border-radius: 50%;
}

.mindful-orbit i {
  position: absolute;
  inset: 25px;
  border: 1px solid rgba(46, 74, 57, 0.22);
  border-radius: 50%;
}

.mindful-orbit span {
  color: #496650;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
}

.project-copy p {
  margin-bottom: 10px;
  color: var(--violet-light);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.project-copy h3 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.055em;
}

.project-copy > span {
  color: rgba(255, 255, 255, 0.57);
}

.project-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--lime);
  font-size: 1.1rem;
}

.contact-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 120px 0;
  background: var(--violet);
  color: #fff;
}

.contact-orb {
  position: absolute;
  z-index: -1;
  top: -280px;
  left: -260px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 180px rgba(200, 239, 121, 0.07) inset;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 0.78fr);
  align-items: start;
  gap: clamp(70px, 9vw, 130px);
}

.contact-copy .eyebrow {
  color: var(--lime);
}

.contact-copy h2 {
  margin-bottom: 25px;
}

.contact-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

.contact-points {
  margin-top: 37px;
}

.contact-points > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.contact-points > div > span {
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 900;
}

.contact-points p,
.contact-points small,
.contact-points strong {
  display: block;
  margin: 0;
}

.contact-points small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.83rem;
}

.project-form {
  display: grid;
  gap: 18px;
  padding: clamp(25px, 3.5vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.form-topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--violet);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field > span {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--paper);
  color: var(--ink);
  outline: 0;
}

.field input,
.field select {
  min-height: 52px;
  padding: 0 14px;
}

.field textarea {
  min-height: 130px;
  padding: 13px 14px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9b99a8;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(112, 87, 232, 0.12);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.82rem;
}

.consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--violet);
}

.form-button {
  width: 100%;
  border: 0;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.form-note a {
  color: var(--violet);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-status {
  min-height: 1.2em;
  color: var(--violet);
  font-weight: 800;
}

.faq-section {
  background: var(--surface);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(480px, 1.08fr);
  align-items: start;
  gap: clamp(70px, 10vw, 150px);
}

.faq-heading {
  position: sticky;
  top: 44px;
}

.faq-heading h2 {
  margin-bottom: 24px;
}

.faq-heading > p:not(.eyebrow) {
  color: var(--muted);
}

.faq-heading a {
  color: var(--violet);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  cursor: pointer;
  font-weight: 840;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 19px;
  right: 4px;
  color: var(--violet);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 680px;
  margin: -4px 0 24px;
  padding-right: 48px;
  color: var(--muted);
}

.final-cta {
  padding: 80px 0;
  background: var(--lime);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.final-cta .eyebrow {
  color: var(--violet);
}

.final-cta h2 {
  max-width: 800px;
}

.button-light {
  flex: 0 0 auto;
  border-color: var(--night);
  background: var(--night);
}

.button-light:hover {
  border-color: #fff;
  background: #fff;
}

.site-footer {
  padding: 42px 0 28px;
  background: var(--night-deep);
  color: #fff;
}

.footer-main,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-footer .brand-mark {
  border-color: rgba(255, 255, 255, 0.17);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
  color: rgba(255, 255, 255, 0.61);
  font-size: 0.87rem;
  font-weight: 720;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.77rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(420px, 0.9fr);
    gap: 54px;
  }

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

  .browser-body {
    min-height: 480px;
  }

  .screen-title {
    font-size: 3rem;
  }

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

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

  .service-icon {
    height: 150px;
  }

  .project-card {
    grid-template-columns: 40px minmax(250px, 0.8fr) minmax(260px, 1fr) 40px;
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .hero {
    padding-top: 134px;
  }

  .hero-grid,
  .problem-grid,
  .services-heading,
  .process-grid,
  .projects-heading,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 75px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(620px, 100%);
    justify-self: center;
  }

  .problem-grid,
  .services-heading,
  .projects-heading {
    gap: 36px;
  }

  .process-grid,
  .contact-grid,
  .faq-grid {
    gap: 58px;
  }

  .process-heading,
  .faq-heading {
    position: static;
  }

  .project-card {
    grid-template-columns: 36px minmax(250px, 0.75fr) minmax(250px, 1fr) 38px;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability-grid > div {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  }

  .capability-grid > div:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.17);
  }

  .capability-grid > div:nth-child(even) {
    padding-left: 18px;
  }

  .capability-grid > div:nth-child(n + 3) {
    border-bottom: 0;
  }

  .project-card {
    grid-template-columns: 34px 1fr 40px;
  }

  .project-visual {
    grid-column: 2 / 4;
    width: 100%;
  }

  .project-copy {
    grid-column: 2 / 3;
  }

  .project-arrow {
    grid-column: 3 / 4;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 72px;
  }

  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

  .brand-mark i {
    width: 8px;
    height: 8px;
  }

  .brand-name {
    font-size: 0.96rem;
  }

  .button-small {
    min-height: 40px;
    padding: 9px 14px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: auto;
    padding: 114px 0 74px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 13vw, 4.15rem);
    line-height: 0.93;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .trust-list {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .browser-card {
    right: 1%;
    width: 95%;
  }

  .browser-body {
    min-height: 405px;
    padding: 22px;
  }

  .screen-nav {
    margin-bottom: 50px;
  }

  .screen-title {
    font-size: 2.5rem;
  }

  .screen-visual {
    width: 220px;
    height: 220px;
  }

  .funnel-card {
    right: 0;
    bottom: 0;
    width: 205px;
  }

  .hero-stamp {
    display: none;
  }

  .section,
  .contact-section {
    padding: 78px 0;
  }

  .problem-heading h2,
  .section-heading h2,
  .process-heading h2,
  .contact-copy h2,
  .faq-heading h2,
  .final-cta h2 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .service-card {
    min-height: 470px;
    padding: 24px;
  }

  .service-card ul {
    right: 24px;
    left: 24px;
  }

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

  .project-card {
    grid-template-columns: 26px 1fr 38px;
    gap: 14px;
    padding: 20px;
  }

  .project-visual {
    height: 210px;
  }

  .project-copy h3 {
    font-size: 2rem;
  }

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

  .project-form {
    margin-inline: -4px;
    padding: 25px 21px;
  }

  .final-cta {
    padding: 65px 0;
  }

  .final-cta .button {
    width: 100%;
  }

  .footer-main,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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

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