@font-face {
  font-family: Spacegrotesk;
  src: url('../fonts/SpaceGrotesk-Medium.woff') format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Spacegrotesk;
  src: url('../fonts/SpaceGrotesk-Regular.woff') format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Spacegrotesk;
  src: url('../fonts/SpaceGrotesk-SemiBold.woff') format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Spacegrotesk;
  src: url('../fonts/SpaceGrotesk-Bold.woff') format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  /* New semantic design tokens */
  --primary-900: #0f172a;
  --primary-700: #334155;
  --primary-500: #64748b;
  --accent-blue: #0d9488;
  --accent-blue-hover: #0f766e;
  --accent-teal: #0d9488;
  --accent-teal-light: #14b8a6;
  --bg-primary: #fafaf9;
  --bg-subtle: #f8fafc;
  --bg-muted: #f1f5f9;
  --bg-dark: #0f172a;
  --border-light: #e2e8f0;
  --border-dark: #cbd5e1;
  --success: #16a34a;
  --metric-highlight: #0d9488;
  /* Legacy tokens mapped to new palette */
  --midnight-blue: #0f172a;
  --deep-sky-blue: #0d9488;
  --dark-slate-blue: #334155;
  --dark-grey: #64748b;
  --azure: #f1f5f9;
  --sky-blue: #14b8a6;
  --light-sky-blue: #0d9488;
  --medium-blue: #0d9488;
  --snow: #f8fafc;
  --light-coral: #0d9488;
  --gainsboro: #e2e8f0;
  --white-smoke: #f8fafc;
  --light-cyan: #f1f5f9;
  --ghost-white: #f8fafc;
  --light-steel-blue: #cbd5e1;
  --medium-purple: #0d9488;
  --old-lace: #f1f5f9;
  --navajo-white: #e2e8f0;
  --goldenrod: #0d9488;
  --blanched-almond: #f1f5f9;
  --orange: #0d9488;
  --indian-red: #0f766e;
  --light-coral-2: #0d9488;
  --pink: #f1f5f9;
  --medium-slate-blue: #0d9488;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

::selection {
  background: #0d9488;
  color: #fff;
}

body {
  color: #334155;
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

h1 {
  color: #0f172a;
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Spacegrotesk, Inter, system-ui, sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  text-wrap: balance;
}

h2 {
  color: #0f172a;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Spacegrotesk, Inter, system-ui, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
}

h3 {
  color: #0f172a;
  letter-spacing: -.02em;
  font-family: Spacegrotesk, Inter, system-ui, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}

h4 {
  color: var(--midnight-blue);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Spacegrotesk, Inter, system-ui, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.01em;
}

h5 {
  letter-spacing: -.03em;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Spacegrotesk, Inter, system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

h6 {
  color: var(--midnight-blue);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
}

p {
  color: #334155;
  letter-spacing: -.01em;
  margin-bottom: 10px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

a {
  color: var(--deep-sky-blue);
  text-decoration: none;
}

ul {
  color: var(--dark-slate-blue);
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
  font-size: 16px;
}

ol {
  color: var(--dark-slate-blue);
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 40px;
  line-height: 1.6;
}

li {
  margin-bottom: 4px;
  font-size: 18px;
  line-height: 1.6;
}

blockquote {
  border-left: 5px solid var(--deep-sky-blue);
  color: var(--dark-grey);
  margin-top: 32px;
  margin-bottom: 32px;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
}

.header {
  justify-content: center;
  align-items: center;
  padding: 100px 3% 96px;
  display: flex;
  position: relative;
  overflow: visible;
}

.hero-wave {
  z-index: -1;
  min-width: 43%;
  max-width: 60%;
  position: absolute;
  inset: 0% 0% auto auto;
}

.container {
  z-index: 5;
  width: 100%;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.hero-grid {
  grid-column-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1.2fr 0.8fr;
}

.display-h1 {
  color: #0f172a;
  letter-spacing: -.04em;
  font-family: Spacegrotesk, Inter, system-ui, sans-serif;
  font-size: clamp(3rem, 2rem + 6vw, 7.5rem);
  font-weight: 700;
  line-height: 0.98;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-wrap: balance;
}

.job-title {
  color: #334155;
  letter-spacing: -.01em;
  margin-top: 12px;
  margin-bottom: 24px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
}

.hero-content {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 52px;
  display: flex;
}

.button {
  color: #fff;
  text-align: center;
  background-color: #0d9488;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  font-size: 18px;
  text-decoration: none;
  transition: all .35s var(--ease-out-expo);
  display: flex;
}

.button:hover {
  background-color: #0f766e;
  transform: translate(0, -2px);
}

.button.button-padding {
  margin-top: 40px;
}

.send-icon {
  margin-left: 10px;
}

.nav-link {
  color: var(--midnight-blue);
  letter-spacing: -.02em;
  white-space: nowrap;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s var(--ease-out-expo);
}

.nav-link:hover {
  color: var(--deep-sky-blue);
}

.nav-link.w--current {
  color: var(--midnight-blue);
}

.nav-menu {
  align-items: center;
  display: flex;
}

.navbar {
  background-color: #0000;
  align-items: center;
  min-height: 95px;
  padding: 20px 3%;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
  z-index: 10;
}

.navigation-right {
  justify-content: flex-end;
  width: 50%;
  display: flex;
}

.navigation-left {
  align-items: center;
  width: 50%;
  display: flex;
}

.navigation-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.brand {
  margin-right: 40px;
}

.brand.w--current {
  padding-left: 0;
}

.logo {
  width: 36px;
  height: 36px;
}

.social-link {
  color: var(--primary-900);
  justify-content: center;
  align-items: center;
  margin-left: 7px;
  margin-right: 7px;
  padding: 10px;
  transition: all .25s var(--ease-out-expo);
  display: flex;
}

.social-link:hover {
  color: var(--deep-sky-blue);
  transform: translate(0, -2px);
}

.social-icon {
  width: 25px;
}

.content-section {
  flex-flow: column;
  margin-top: 4%;
  margin-bottom: 64px;
  padding: 32px 3%;
  display: flex;
  position: relative;
}

.title-wrap {
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 60px;
  display: flex;
}

.service-card {
  background-color: #fefefe;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 32px;
  transition: transform .4s var(--ease-out-expo), box-shadow .4s var(--ease-out-expo);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
}

.service-card .paragraph {
  flex: 1;
}

.service-card .placeholder-image {
  transition: transform .5s var(--ease-out-expo);
}

.service-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.service-card:hover .placeholder-image {
  transform: scale(1.05);
}

.service-card.resume {
  border: 1px solid var(--border-light);
  background-color: #fefefe;
  width: 100%;
  height: 100%;
  min-height: 400px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.04);
}

/* Resume two-tier layout */
.resume-tier-label {
  font-family: 'Spacegrotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-500);
  margin-bottom: 16px;
  margin-top: 8px;
}

.resume-tier-label.foundation {
  margin-top: 32px;
}

.service-card.resume.compact {
  min-height: auto;
  padding: 24px;
}

.service-card.resume.compact .resume-bullets {
  font-size: 14px;
}

.foundation-tier .service-card.resume {
  opacity: 0.85;
}

.foundation-tier .service-card.resume:hover {
  opacity: 1;
}

.service-title {
  align-items: center;
  margin-bottom: 20px;
  font-size: 24px;
  display: flex;
}

.service-title.resume {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 8px;
}

.service-icon {
  color: var(--primary-900);
  width: 24px;
}

.work-bg-block {
  z-index: -1;
  background-color: var(--azure);
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  width: 70%;
  min-height: 470px;
  position: absolute;
  inset: 0% 0% auto auto;
}

.work-bg-block.resume {
  background-color: var(--snow);
  height: 100%;
}

.service-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  margin-left: auto;
  margin-right: auto;
}

.title-wrap-split {
  text-align: left;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  display: flex;
}

.title-wrapper-left {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 32px;
  display: flex;
}

.pink-span {
  color: #0d9488;
}

.dribbble-link {
  color: #0f172a;
  letter-spacing: -.03em;
  align-items: center;
  font-size: 22px;
  line-height: 1.5;
  text-decoration: none;
  display: flex;
}

.title {
  color: var(--dark-grey);
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
}

.title.dark {
  color: var(--dark-slate-blue);
}

.project-image {
  object-fit: cover;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  box-shadow: 10px 0 30px #ced4e042;
}

.paragraph {
  font-size: 20px;
  overflow: visible;
}

.paragraph.resume {
  text-align: left;
  padding-left: 0%;
  font-size: 20px;
  font-weight: 400;
}

.text-plain {
  color: #cbd5e1;
}

.scroll-wrapper {
  color: #cbd5e1;
  letter-spacing: -.03em;
  align-items: center;
  margin-top: 72px;
  font-size: 18px;
  display: flex;
}

.scroll-icon {
  width: 16px;
}

.project-item {
  width: 33.3333%;
  padding: 14px;
}

.project-wrap {
  height: 350px;
  position: relative;
}

.project-block {
  text-align: center;
  background-color: #334155e6;
  border-radius: 4px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 250px;
  margin-bottom: 30px;
  margin-left: 44px;
  margin-right: 44px;
  padding: 25px;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.project-name {
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 3%;
  font-family: Spacegrotesk, Inter, system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
}

.button-red {
  color: #fff;
  text-align: center;
  background-color: #0d9488;
  border: 1px solid #0d9488;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  padding: 16px 32px;
  font-size: 16px;
  text-decoration: none;
  transition: all .35s var(--ease-out-expo);
  display: flex;
  width: 100%;
}

.button-red:hover {
  background-color: #0f766e;
  transform: translate(0, -2px);
}

.bg-block-blue {
  z-index: -1;
  background-color: #f8fafc;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  width: 60%;
  min-width: 400px;
  height: 100%;
  min-height: 500px;
  max-height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.paragraph-large {
  border-bottom: 0px solid var(--gainsboro);
  color: #334155;
  letter-spacing: -.01em;
  margin-bottom: 2%;
  padding-bottom: 2%;
  font-size: 18px;
}

.paragraph-large.dropdown {
  font-weight: 400;
}

.author-image {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}

.detail {
  color: #64748b;
  text-align: center;
  flex-flow: column;
  align-items: center;
  margin-bottom: 10%;
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: flex;
}

.author-name {
  color: #0f172a;
  margin-bottom: 4px;
  font-family: Spacegrotesk, Inter, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.overview-section {
  align-items: center;
  margin-top: 32px;
  margin-bottom: 10%;
  padding: 132px 3%;
  display: flex;
  position: relative;
  background-color: #f5f3ef;
}

.blog-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.5fr;
}

.blog-column {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.button-yellow {
  color: #0f172a;
  background-color: #0000;
  border: 2px solid #e2e8f0;
  border-radius: 4px;
  align-items: center;
  margin-top: 40px;
  padding: 14px 32px;
  font-size: 18px;
  text-decoration: none;
  display: flex;
}

.title-grey {
  color: #64748b;
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 700;
}

.title-grey.dropdown {
  margin-bottom: 0;
}

.blog-card {
  border-radius: 4px;
  justify-content: space-between;
  align-items: center;
  padding: 30px 35px;
  text-decoration: none;
  transition: box-shadow .4s var(--ease-out-expo);
  display: flex;
}

.blog-card:hover {
  box-shadow: 1px 1px 118px 150px #ced4e02e;
}

.date-wrapper {
  margin-bottom: 20px;
  display: flex;
}

.date-icon {
  margin-right: 10px;
}

.date {
  color: #64748b;
  font-size: 15px;
  font-weight: 600;
}

.blog-item {
  margin-bottom: 20px;
}

.dots-pink {
  position: absolute;
  left: -92px;
}

.size-detail {
  color: var(--light-sky-blue);
  margin-left: 8px;
  font-weight: 600;
}

.title-small {
  color: var(--dark-grey);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.container-tight {
  width: 100%;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.l3 {
  text-align: left;
  padding-bottom: 10px;
  list-style-type: lower-alpha;
}

.colour-text {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 80px;
  padding: 20px;
  display: flex;
}

.colour-grid, .colour-grid-full {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  margin-bottom: 100px;
}

.block {
  margin-bottom: 45px;
}

.span-opacity {
  color: #0d9488;
  font-weight: 500;
}

.style-guide-section {
  padding: 100px 3%;
}

.title-dark {
  float: left;
  color: var(--dark-slate-blue);
  letter-spacing: -.03em;
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 700;
}

.title-dark.accordian {
  flex: 1;
  padding-bottom: 2%;
  font-family: Spacegrotesk, Inter, system-ui, sans-serif;
}

.colour-block {
  background-color: var(--medium-blue);
  height: 120px;
}

.colour-block.c11 {
  background-color: var(--azure);
}

.colour-block.t5 {
  background-color: var(--white-smoke);
}

.colour-block.t1 {
  background-color: var(--midnight-blue);
}

.colour-block.c10 {
  background-color: var(--light-cyan);
}

.colour-block.t3 {
  background-color: var(--dark-grey);
}

.colour-block.c5 {
  background-color: var(--ghost-white);
}

.colour-block.c4 {
  background-color: var(--light-steel-blue);
}

.colour-block.c9 {
  background-color: var(--sky-blue);
}

.colour-block.c3 {
  background-color: var(--medium-purple);
}

.colour-block.c8 {
  background-color: var(--light-sky-blue);
}

.colour-block.c2 {
  background-color: var(--medium-blue);
}

.colour-block.c17 {
  background-color: var(--old-lace);
}

.colour-block.c7 {
  background-color: var(--deep-sky-blue);
}

.colour-block.c15 {
  background-color: var(--navajo-white);
}

.colour-block.c13 {
  background-color: var(--goldenrod);
}

.colour-block.c16 {
  background-color: var(--blanched-almond);
}

.colour-block.c14 {
  background-color: var(--orange);
}

.colour-block.t2 {
  background-color: var(--dark-slate-blue);
}

.colour-block.t4 {
  background-color: var(--gainsboro);
}

.colour-block.r1 {
  background-color: var(--indian-red);
}

.colour-block.r2 {
  background-color: var(--light-coral);
}

.colour-block.r3 {
  background-color: var(--light-coral-2);
}

.colour-block.r4 {
  background-color: var(--pink);
}

.colour-block.r5 {
  background-color: var(--snow);
}

.style-guide-header {
  background-color: var(--snow);
  background-image: url('../images/Angle-Top.svg');
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: 500px;
  justify-content: center;
  align-items: center;
  min-height: 480px;
  padding: 140px 5%;
  display: flex;
}

.block-detail {
  border: 1px solid var(--light-sky-blue);
  background-color: var(--azure);
  border-radius: 4px;
  align-items: center;
  padding: 32px;
  font-size: 16px;
  display: flex;
}

.button-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: end;
  padding: 24px;
}

.style-guide-h2 {
  margin-top: 0;
  margin-bottom: 20px;
}

.colour {
  background-color: #fff;
  border-radius: 4px;
  align-items: center;
  width: 100%;
  display: block;
  overflow: hidden;
  box-shadow: 25px 25px 55px #130f491a;
}

.style-guide-content {
  background-color: #fff;
  border-right: 1px solid #1730490d;
}

.l2 {
  padding-bottom: 10px;
  list-style-type: decimal;
}

.title-wrap-left {
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 60px;
}

.colour-hex {
  color: var(--gainsboro);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  font-size: 16px;
  font-weight: 700;
}

.display {
  letter-spacing: -.03em;
  font-size: 64px;
  line-height: 1.05;
}

.q2 {
  border-left-color: var(--light-coral);
  font-style: italic;
  font-weight: 500;
}

.p3 {
  max-width: 600px;
  font-size: 12px;
  line-height: 23px;
}

.change-log-wrap {
  background-color: var(--old-lace);
  border-radius: 4px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 32px;
  padding: 32px;
  display: flex;
}

.new-tag {
  background-color: var(--navajo-white);
  color: var(--goldenrod);
  text-transform: uppercase;
  border-radius: 4px;
  margin-left: 4px;
  margin-right: 20px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
}

.list {
  margin-top: 15px;
  margin-bottom: 15px;
}

.logo-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template: ". . . . Area"
  / 1fr 1fr 1fr;
}

.logo-wrapper {
  justify-content: center;
  align-items: center;
  padding: 86px 12px;
  transition: all .35s var(--ease-out-expo);
  display: flex;
}

.logo-wrapper:hover {
  box-shadow: 25px 25px 55px #d9d9e242;
}

.logo-wrapper.border-right-bottom {
  border-right: 1px solid var(--white-smoke);
  border-bottom: 1px solid var(--white-smoke);
}

.logo-wrapper.border-bottom {
  border-bottom: 1px solid var(--white-smoke);
}

.logo-wrapper.border-right {
  border-right: 1px solid var(--white-smoke);
}

.footer-legal-text {
  color: #64748b;
  text-align: center;
  letter-spacing: -.02em;
  font-size: 16px;
}

.hero-paragraph {
  max-width: 470px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

.hero-image-wrapper {
  position: relative;
  margin-bottom: -36px;
}

.social-link-wrapper {
  display: flex;
}

.seperate-block {
  border-top: 1px dashed var(--gainsboro);
  border-bottom: 1px dashed var(--gainsboro);
  justify-content: center;
  align-items: center;
  min-height: 300px;
  display: flex;
}

.hero-intro {
  color: #64748b;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.seperation-card {
  border: 1px dashed var(--orange);
  background-color: var(--old-lace);
  color: var(--orange);
  text-align: center;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 800px;
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 18px;
  display: flex;
}

.hero-person-wrapper {
  background-color: transparent;
  border-radius: 4px;
  justify-content: center;
  align-items: flex-end;
  display: flex;
  overflow: hidden;
  position: relative;
}

.dot-pattern {
  z-index: 5;
  position: absolute;
  inset: 5% auto auto 3%;
}

.hero-person {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Layered headshot treatment */
.hero-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-layer--main {
  position: relative;
  z-index: 3;
}

.hero-layer--teal {
  z-index: 1;
  transform: translate(-4px, -2px);
  filter: grayscale(100%) brightness(0.7) sepia(100%) hue-rotate(130deg) saturate(200%);
  opacity: 0.25;
}

.hero-layer--blue {
  z-index: 2;
  transform: translate(3px, 2px);
  filter: grayscale(100%) brightness(0.7) sepia(100%) hue-rotate(190deg) saturate(250%);
  opacity: 0.2;
}


.hero-circle {
  z-index: 1;
  position: absolute;
  inset: 0% 0% 0% auto;
  pointer-events: none;
}

.project-grid {
  grid-template-rows: auto;
}

.project-header {
  object-fit: cover;
  object-position: 50% 0%;
  border-radius: 20px;
  width: 100%;
  height: 100%;
}

.project-content-grid {
  grid-template-rows: auto;
  grid-template-columns: .4fr 1fr;
  grid-auto-flow: row;
}

.hero-circle-large {
  z-index: -2;
  min-width: 40%;
  position: absolute;
  inset: 0% 0% 0% auto;
  pointer-events: none;
}

.author-wrap, .footer-mail-wrap {
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.footer-link-wrap {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 60px;
  display: flex;
}

.footer-content-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.footer {
  padding: 0 0%;
  position: relative;
}

.header-contact {
  background-color: #f1f5f9;
  justify-content: center;
  align-items: center;
  min-height: 750px;
  padding-top: 162px;
  padding-left: 3%;
  padding-right: 3%;
  display: flex;
  position: relative;
  overflow: visible;
}

.header-pink {
  background-color: #f8fafc;
  justify-content: center;
  align-items: center;
  padding-top: 126px;
  padding-left: 3%;
  padding-right: 3%;
  display: flex;
  position: relative;
  overflow: visible;
}

.lottie-scroll {
  width: 20px;
  margin-right: 10px;
  position: relative;
  top: 2px;
}

.large-heading {
  font-size: 64px;
}

.large-heading.heading-width {
  width: 80%;
  max-width: 900px;
}

.grid-content-right {
  padding-right: 100px;
}

.tag {
  color: #fff;
  letter-spacing: 1px;
  background-color: #0d9488;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  padding: 4px 10px;
  font-size: 13px;
  display: flex;
}

.contact-grid {
  grid-template-rows: auto;
}

.form-card {
  background-color: #fff;
  border-radius: 25px;
  padding: 52px;
  box-shadow: 79px 79px 122px #ced4e033;
}

.form-block {
  margin-top: 42px;
}

.field-label {
  color: #64748b;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
}

.blue-span {
  color: var(--light-sky-blue);
}

.text-field {
  border: 1px #000;
  border-bottom: 2px solid #ececf0;
  min-height: 42px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.field-form {
  margin-bottom: 32px;
}

.text-field-long {
  border: 1px #000;
  border-bottom: 2px solid #ececf0;
  padding-top: 12px;
  padding-bottom: 12px;
}

.white-bar-bottom {
  z-index: 1;
  background-color: #fff;
  min-height: 200px;
  position: absolute;
  inset: auto 0% 0%;
}

.contact-card-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.contact-card {
  color: var(--dark-slate-blue);
  letter-spacing: -.03em;
  background-color: #fff;
  border-radius: 25px;
  justify-content: center;
  align-items: center;
  padding: 52px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  display: flex;
  box-shadow: 79px 79px 122px #ced4e033;
}

.contact-icon {
  margin-right: 4px;
}

.blog-h3 {
  max-width: 450px;
  font-size: 30px;
}

.blog-h3.accordian {
  color: #0f172a;
  margin-bottom: 5%;
  font-family: Spacegrotesk, Inter, system-ui, sans-serif;
  font-weight: 700;
}

.footer-card {
  background-color: var(--azure);
  border-radius: 4px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 50px 40px;
  display: flex;
  position: relative;
  overflow: hidden;
}

/* Pseudo-elements replaced by inline animated SVGs (.footer-mesh) */

.footer-card > * {
  position: relative;
  z-index: 1;
}

.mail-icon {
  margin-right: 10px;
}

.footer-h2 {
  font-weight: 600;
}

.utility-page-wrap {
  background-color: var(--old-lace);
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  min-height: 750px;
  max-height: 100%;
  display: flex;
}

._404-wrap {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 680px;
  padding-left: 44px;
  padding-right: 44px;
  display: flex;
}

.utility-h2 {
  color: var(--midnight-blue);
  font-size: 54px;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.password-wrap {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 600px;
  padding-left: 44px;
  padding-right: 44px;
  display: flex;
}

.form-wrap {
  margin-top: 42px;
}

.text-field-large {
  color: var(--dark-slate-blue);
  background-color: #fff;
  border: 1px solid #b4b2c575;
  border-radius: 12px;
  min-height: 60px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 21px;
  font-size: 16px;
}

.text-field-large::placeholder {
  color: var(--dark-slate-blue);
}

.button-submit {
  color: #fff;
  text-align: center;
  background-color: #0d9488;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  padding: 20px 32px;
  font-size: 18px;
  text-decoration: none;
  display: flex;
}

.paragraph-short {
  max-width: 680px;
}

.brand-span {
  color: var(--light-sky-blue);
}

.blog-image-wrap {
  background-color: var(--pink);
  border-radius: 100px;
  width: 65px;
  height: 65px;
  margin-right: 20px;
}

.author-blog-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.blog-author {
  align-items: center;
  margin-top: 22px;
  display: flex;
}

.author-name-blog {
  color: var(--midnight-blue);
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 600;
}

.author-date {
  color: var(--dark-grey);
  font-size: 15px;
}

.article-block {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

.article-block h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.article-block p {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
}

.article-block h2 {
  margin-top: 20px;
}

.service-icon-block {
  background-color: #fff;
  border-radius: 4px;
  width: 48px;
  height: 48px;
  margin-right: 20px;
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border: 1px solid #e2e8f0;
}

.service-icon-block .service-icon {
  color: var(--primary-900);
}

.service-icon-block.yellow-icon,
.service-icon-block.pink-icon,
.service-icon-block.purple-icon,
.service-icon-block.bottom {
  background-color: var(--bg-muted);
}

.performance-philosophy {
  color: #0f172a;
  font-size: 24px;
  font-weight: 600;
}

.performance-philosophy.resume-title {
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0%;
  font-size: 20px;
  font-weight: 700;
}

.performance-philosophy.resume-title.company {
  margin-bottom: 2%;
  font-family: Spacegrotesk, Inter, system-ui, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.button-wrapper {
  align-items: flex-start;
  margin-top: 40px;
  display: flex;
}

.button-outline {
  background-color: transparent;
  color: #334155;
  text-align: center;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  padding: 16px 32px;
  font-size: 16px;
  text-decoration: none;
  transition: all .35s var(--ease-out-expo);
  display: flex;
}

.button-outline:hover {
  background-color: #f1f5f9;
  border-color: #94a3b8;
  color: #0f172a;
  transform: translate(0, -2px);
}

.quote-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  padding-top: 32px;
}

.quote-block {
  text-align: center;
  background-color: #fff;
  border-radius: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 20px;
  padding-left: 34px;
  padding-right: 34px;
  display: flex;
}

.quote {
  width: 44px;
  margin-bottom: 24px;
}

.quote-section {
  background-color: var(--snow);
  padding: 132px 3%;
  position: relative;
}

.brand-span-dark {
  color: var(--deep-sky-blue);
}

.form {
  background-color: #f1f5f9;
  border-radius: 20px;
  align-items: center;
  padding: 8px;
  display: flex;
}

.email-field {
  background-color: #0000;
  border: 1px #000;
  height: 58px;
  margin-bottom: 0;
  padding-left: 20px;
  font-size: 16px;
}

.email-field::placeholder {
  color: var(--dark-grey);
}

.button-hero {
  color: #fff;
  text-align: center;
  background-color: #0d9488;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  padding: 16px 32px;
  font-size: 16px;
  text-decoration: none;
  transition: all .35s var(--ease-out-expo);
  display: flex;
}

.button-hero:hover {
  background-color: #0f766e;
  transform: translate(0, -2px);
}

.form-wrapper {
  margin-top: 40px;
  display: block;
}

.update-icon {
  width: 25px;
  margin-right: 10px;
}

.news-update {
  color: var(--midnight-blue);
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  display: flex;
}

.button-form {
  color: #fff;
  background-color: #0d9488;
  border-radius: 12px;
  align-items: center;
  padding: 19px 32px;
  font-size: 16px;
  text-decoration: none;
  display: flex;
}

.hero-project-image {
  border: 2px solid var(--light-steel-blue);
  border-radius: 20px;
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
}

.success-message {
  background-color: var(--azure);
  color: var(--deep-sky-blue);
  border-radius: 15px;
}

.error-message {
  background-color: var(--snow);
  color: var(--light-coral);
  border: 1px solid #ffaaaa5c;
  border-radius: 15px;
  padding: 18px;
}

.content-h1 {
  max-width: 650px;
}

.blog-hero-image {
  border-radius: 20px;
  height: 520px;
  margin-top: -220px;
  margin-bottom: 80px;
  overflow: hidden;
}

.blog-content {
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  justify-content: center;
  align-items: center;
  min-height: 570px;
  padding: 80px 3% 60px;
  display: flex;
  position: relative;
  overflow: visible;
}

.hero-circle-blue {
  z-index: 1;
  max-width: 350px;
  position: absolute;
  inset: auto 0% 0% auto;
  pointer-events: none;
}

.button-line {
  border: 1px solid #cbd5e1;
  color: #334155;
  text-align: center;
  background-color: #0000;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  padding: 20px 32px;
  font-size: 18px;
  text-decoration: none;
  transition: all .35s var(--ease-out-expo);
  display: flex;
}

.button-line.w--current {
  border: 1px solid var(--light-sky-blue);
  background-color: var(--azure);
  color: var(--deep-sky-blue);
}

.column-column {
  padding-top: 60px;
  padding-right: 40px;
}

.header-standard {
  background-color: var(--azure);
  color: #2d3958;
  background-image: url('../images/Shape-Right.svg');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 340px;
  justify-content: center;
  align-items: center;
  padding: 186px 5% 96px;
  display: flex;
}

.change-title {
  align-items: center;
  display: flex;
}

.blog-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.header-blog, .header-project {
  background-color: var(--ghost-white);
  justify-content: center;
  align-items: center;
  min-height: 650px;
  padding: 132px 3%;
  display: flex;
  position: relative;
}

.display-heading {
  font-size: 68px;
}

.quote-text {
  margin-bottom: 32px;
}

.social-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 100px;
}

.social-icon-block {
  background-color: #fff;
  border: 2px solid #fff;
  border-radius: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 210px;
  margin-left: auto;
  margin-right: auto;
  padding: 22px;
  transition: all .35s var(--ease-out-expo);
  display: flex;
  box-shadow: 14px 14px 120px #ced4e02e;
}

.social-icon-block:hover {
  border: 2px solid #0d9488;
}

.social-logo {
  width: 60px;
  margin-bottom: 32px;
}

.author {
  background-color: var(--light-steel-blue);
  border: 4px solid #fff;
  border-radius: 100px;
  width: 65px;
  min-width: 65px;
  height: 65px;
  min-height: 65px;
  margin-right: 20px;
  overflow: hidden;
  box-shadow: 11px 33px 55px #55527c26;
}

.social-name {
  color: var(--midnight-blue);
  letter-spacing: -.03em;
  font-size: 18px;
  font-weight: 600;
}

.scroll-top {
  z-index: 99;
  justify-content: center;
  align-items: center;
  width: 135px;
  height: 135px;
  display: flex;
  position: fixed;
  inset: auto 0% 0% auto;
  overflow: hidden;
}

.scroll-circle {
  background-color: #fff;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  display: flex;
  box-shadow: 11px 11px 20px #130f490d;
}

.nav-menu-footer {
  align-items: center;
  display: flex;
}

.button-arrow {
  color: #0f172a;
  white-space: nowrap;
  background-color: #0000;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  align-items: center;
  padding: 14px 26px 14px 32px;
  font-size: 18px;
  text-decoration: none;
  display: flex;
}

.content-h1-2 {
  max-width: 550px;
  margin-right: 20px;
}

.paragraph-title {
  color: #64748b;
  letter-spacing: -.01em;
  max-width: 660px;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.paragraph-title.accordian {
  color: #334155;
  font-size: 22px;
  font-weight: 400;
}

.example-typography {
  font-size: 56px;
}

.licence-asset {
  object-fit: cover;
  object-position: 50% 20%;
  width: 100%;
  height: 100%;
}

.plain-link {
  text-decoration: underline;
}

.legal-text-wrap {
  justify-content: space-between;
  margin-top: 60px;
  display: flex;
}

.template-link {
  margin-left: 10px;
  margin-right: 10px;
  font-size: 16px;
}

.footer-logo {
  background-color: #fff;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 65px;
  height: 65px;
  padding: 18px;
  display: flex;
  box-shadow: 4px 30px 55px #0d948833;
}

.quote-image {
  border: 4px solid #fff;
  border-radius: 100px;
  width: 100px;
  height: 100px;
  margin-bottom: 14px;
  box-shadow: -1px 40px 80px #55527c40;
}

.quote-wrap {
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
  top: -32px;
}

.dribbble-text-wrap {
  align-items: center;
  display: flex;
}

.brand-span-pink {
  color: var(--light-coral-2);
}

.hero-content-centre {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 52px;
  display: flex;
}

.hero-person-large {
  margin-left: auto;
  margin-right: auto;
}

.footer-email {
  color: var(--dark-grey);
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.line-break {
  background-color: transparent;
  height: 20px;
  position: relative;
  overflow: visible;
}

.line-break::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #e2e8f0 10%, #e2e8f0 90%, transparent 100%);
}

.line-break::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 600px;
  height: 1px;
  background-image: url("data:image/svg+xml,%3Csvg width='600' height='20' viewBox='0 0 600 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='0' y1='10' x2='600' y2='10' stroke='%23e2e8f0' stroke-width='1'/%3E%3Crect x='80' y='7' width='6' height='6' rx='1' fill='%232563eb' opacity='0.3'/%3E%3Crect x='180' y='7' width='6' height='6' rx='1' fill='%230d9488' opacity='0.25'/%3E%3Crect x='290' y='6' width='8' height='8' rx='1' fill='%232563eb' opacity='0.35'/%3E%3Crect x='400' y='7' width='6' height='6' rx='1' fill='%230d9488' opacity='0.25'/%3E%3Crect x='510' y='7' width='6' height='6' rx='1' fill='%232563eb' opacity='0.3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 20px;
}

.section-divider {
  height: 20px;
  position: relative;
  margin: 0 auto;
  max-width: 1170px;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 3%;
  right: 3%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #e2e8f0 15%, #e2e8f0 85%, transparent 100%);
}

.section-divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 500px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='500' height='20' viewBox='0 0 500 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='0' y1='10' x2='500' y2='10' stroke='%23e2e8f0' stroke-width='1'/%3E%3Crect x='100' y='7' width='6' height='6' rx='1' fill='%230d9488' opacity='0.25'/%3E%3Crect x='245' y='6' width='8' height='8' rx='1' fill='%232563eb' opacity='0.3'/%3E%3Crect x='390' y='7' width='6' height='6' rx='1' fill='%230d9488' opacity='0.25'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.get-started-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  border-radius: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 100px;
}

.feature-card {
  text-align: center;
  background-color: #fff;
  border: 2px solid #fff;
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 32px 23px 32px 32px;
  transition: all .35s var(--ease-out-expo);
  display: flex;
  box-shadow: 31px 31px 64px #0000000d;
}

.feature-card:hover {
  border-color: var(--light-sky-blue);
}

.licence-graphic {
  background-color: #fff8ef;
  border-radius: 20px;
  width: 100%;
  height: 220px;
  margin-bottom: 32px;
  overflow: hidden;
}

.started-asset {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}

.licence-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  border-radius: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 100px;
}

.licence-card {
  text-align: center;
  background-color: #fff;
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 32px;
  display: flex;
  box-shadow: 31px 31px 64px #0000000d;
}

.licence-asset-small {
  object-fit: scale-down;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}

.button-wrap-style-guide {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 20px;
  display: flex;
}

.block-detail-large {
  color: #111;
  background-color: #fff1e580;
  border: 1px solid #fce9cf;
  border-radius: 10px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 32px;
  padding: 24px 30px;
  font-size: 15px;
  display: flex;
}

.block-detail-large.centre-text {
  text-align: center;
  justify-content: center;
}

.project-hero-conent {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-right: 92px;
  display: flex;
}

.collection-list {
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.column, .column-2 {
  text-align: center;
}

.image {
  width: 80%;
}

.image-2 {
  border-radius: 16px;
  width: 50%;
  height: 50%;
}

.columns {
  align-items: center;
  height: 100%;
  margin-top: 0%;
  display: flex;
}

.columns-2 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-block {
  text-align: center;
}

.column-3 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.column-4 {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section {
  height: 30%;
  margin-top: 2%;
}

.columns-3 {
  border-radius: 20px;
  height: 30%;
}

.flipcard {
  background-color: var(--white-smoke);
  border: 1px solid #000;
  border-radius: 20px;
  justify-content: center;
  padding: 3%;
  display: flex;
}

.dropdown-toggle {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.icon {
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.philosophy-accordian {
  width: 100%;
  height: 100px;
}

.dropdown-toggle-2 {
  border-bottom: 1px solid var(--gainsboro);
  width: 100%;
  height: 80%;
  padding-left: 0;
}

.accordian-container {
  display: flex;
}

.accordian-toggle {
  width: 100%;
  padding-left: 0;
}

.image-3 {
  flex: 0 auto;
  width: 28px;
  height: 28px;
  display: block;
}

.resume-title {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-direction: column;
  width: 100%;
  margin-bottom: 16px;
  padding-left: 0%;
  display: flex;
}

.text-block-2 {
  text-align: left;
  margin-top: 2%;
  margin-bottom: 2%;
  font-size: 18px;
  line-height: 1.6;
}

.text-block-2.company-title {
  font-weight: 700;
}

.resume-bullets {
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 0%;
  padding-left: 12%;
  display: flex;
}

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

.grid.one-column {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

.grid.three-column {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 24px;
}

.philosophy {
  flex-direction: column;
  display: flex;
}

.dropdown-toggle-3 {
  width: 100%;
  padding-left: 0;
  display: block;
}

.dropdown-2 {
  width: 100%;
}

.div-block-2 {
  flex-direction: column;
  justify-content: space-around;
  width: 100%;
  height: 100px;
  display: flex;
}

.accordian-wrapper {
  border: 1px #837f7f;
  flex-direction: column;
  margin-bottom: 2%;
  padding-bottom: 0%;
  display: flex;
}

.accordian-item {
  border-bottom: 1px solid var(--gainsboro);
  margin-bottom: 3%;
}

.accordian-trigger {
  cursor: pointer;
  justify-content: flex-start;
  padding-bottom: 0%;
  display: flex;
}

.accordian-content {
  overflow: hidden;
}

.down-arrow {
  height: 60%;
}

.project-description {
  color: var(--white-smoke);
  font-size: 12px;
  font-weight: 400;
}

.block-quote {
  border-left-color: var(--deep-sky-blue);
  color: var(--dark-grey);
}

.bold-text {
  font-weight: 400;
}

.paragraph-2 {
  margin-bottom: 10px;
  font-size: 16px;
}

.rich-text-block {
  font-size: 12px;
  font-weight: 400;
}

.div-block-3 {
  object-fit: fill;
  border-right: 2px solid #cecde0;
  margin-top: 25px;
  margin-bottom: -25px;
  padding-right: 19px;
  font-size: 14px;
  position: sticky;
  top: 0;
  bottom: 0;
}

.rich-text-block-2 {
  padding-left: 5%;
}

.text-block-3, .p2, .paragraph-3, .paragraph-4, .italic-text {
  font-size: 12px;
}

.text-span, .text-span-2, .text-span-3, .text-span-4, .text-span-5 {
  color: inherit;
}

.bold-text-2, .bold-text-3, .bold-text-4, .bold-text-5 {
  font-family: Spacegrotesk, Inter, system-ui, sans-serif;
  font-size: 24px;
}

.navbar-logo-center-container {
  z-index: 5;
  background-color: #0000;
  width: 1030px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

.navbar-logo-center-container.shadow-three {
  width: 100%;
  max-width: 1140px;
}

.container-2 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.navbar-wrapper-three {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.navbar-brand-three {
  z-index: 5;
  position: absolute;
}

.nav-menu-wrapper-three {
  width: 100%;
}

.nav-menu-three {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.nav-menu-block {
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.nav-link-2 {
  color: #1a1b1f;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-2:hover {
  color: #1a1b1fbf;
}

.nav-link-2:focus-visible, .nav-link-2[data-wf-focus-visible] {
  outline-offset: 2px;
  color: #0d9488;
  border-radius: 4px;
  outline: 2px solid #0d9488;
}

.nav-dropdown {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-dropdown-toggle {
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle:hover {
  color: #1a1b1fbf;
}

.nav-dropdown-toggle:focus-visible, .nav-dropdown-toggle[data-wf-focus-visible] {
  outline-offset: 2px;
  color: #0d9488;
  border-radius: 5px;
  outline: 2px solid #0d9488;
}

.nav-dropdown-icon {
  margin-right: 10px;
}

.nav-dropdown-list {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-link {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
}

.nav-dropdown-link:focus-visible, .nav-dropdown-link[data-wf-focus-visible] {
  outline-offset: 2px;
  color: #0d9488;
  border-radius: 5px;
  outline: 2px solid #0d9488;
}

.nav-link-accent {
  color: #1a1b1f;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 20px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-accent:hover {
  color: #1a1b1fbf;
}

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .25s var(--ease-out-expo);
}

.button-primary:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary:active {
  background-color: #43464d;
}

.features-metrics {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: transparent;
  mix-blend-mode: normal;
  border-bottom: none;
  border-radius: 0;
  flex-flow: column;
  padding: 0 3% 48px;
  display: flex;
  position: relative;
  margin-top: -16px;
  z-index: 6;
}

.features-metrics.titl {
  -webkit-text-fill-color: inherit;
  background-color: #fafafa00;
  background-clip: border-box;
  border-bottom-style: none;
  padding-top: 32px;
}

.features-metrics.titl {
  background-color: #0f172a;
  border-bottom: none;
}

.features-metrics.titl .title.dark {
  color: #64748b;
}

.features-metrics.titl .container-2 {
  max-width: 1170px;
}

.features-metrics.titl .features-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 24px;
  align-items: stretch;
}

.features-metrics.titl .features-block {
  background-color: #1e293b;
  border: 1px solid #334155;
  border-radius: 4px;
  padding: 32px;
  text-align: left;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  row-gap: 12px;
  align-items: center;
}

.features-metrics.titl .features-block .service-icon-block.bottom {
  grid-row: 1;
  grid-column: 1;
  margin-right: 0;
}

.features-metrics.titl .features-block .features-title {
  grid-row: 1;
  grid-column: 2;
}

.features-metrics.titl .features-block .text-block-5 {
  grid-row: 2;
  grid-column: 1 / -1;
  align-self: start;
  min-height: 0;
}

.features-metrics.titl .features-wrapper {
  align-items: stretch;
}

.features-metrics.titl .features-block {
  grid-template-rows: auto 1fr;
  height: 100%;
}

.features-metrics.titl .service-icon-block.bottom {
  background-color: #0f172a;
  border: 1px solid #334155;
}

.features-metrics.titl .service-icon-block.bottom .service-icon {
  filter: brightness(0) invert(1) opacity(0.7);
}

.features-metrics.titl .features-title.smaller {
  color: #f1f5f9;
}

.features-metrics.titl .text-block-5 {
  color: #94a3b8;
}

.features-wrapper {
  justify-content: space-around;
  align-items: center;
  margin-bottom: 24px;
  display: flex;
}

.features-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.features-title {
  margin-bottom: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: #0f172a;
}

.features-title.smaller {
  font-family: Spacegrotesk, Inter, system-ui, sans-serif;
  font-size: 24px;
  font-weight: 600;
}

.features-title-small {
  font-size: 24px;
  line-height: 32px;
}

.text-block-4, .text-block-5 {
  font-family: Inter, system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

.text-block-6 {
  font-size: 18px;
  line-height: 1.5;
}

.text-block-7 {
  font-size: 18px;
}

.text-block-8, .text-block-9 {
  font-family: Spacegrotesk, Inter, system-ui, sans-serif;
  font-weight: 600;
}

.form-2 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.submit-button {
  background-color: var(--midnight-blue);
  border-radius: 12px;
  width: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 18px;
}

.form-block-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.field-label-2 {
  font-size: 14px;
  font-weight: 400;
}

.field-label-3, .field-label-4 {
  font-weight: 400;
}

.paragraph-5, .paragraph-6, .paragraph-7 {
  font-size: 20px;
}

.text-field-2, .text-field-3, .text-field-4 {
  color: var(--midnight-blue);
  border-radius: 4px;
}

.heading {
  font-size: 54px;
}

.image-4 {
  border-radius: 4px;
}

.textarea {
  color: var(--midnight-blue);
  border-radius: 4px;
}

/* Global focus-visible styles */
*:focus-visible {
  outline: 2px solid #0d9488;
  outline-offset: 2px;
}

/* ── Mesh animation system ── */

/* Hero mesh: page-load animation (lines draw, nodes pulse) */
.mesh-line {
  stroke-dasharray: calc(var(--line-len) * 1px);
  stroke-dashoffset: calc(var(--line-len) * 1px);
  animation: meshDraw 1.2s var(--ease-out-expo) var(--line-delay) forwards;
}

.mesh-node {
  opacity: 0;
  transform-origin: center;
  transform-box: fill-box;
  animation: meshNodePulse 0.8s var(--ease-out-expo) var(--node-delay) forwards;
}

@keyframes meshDraw {
  to { stroke-dashoffset: 0; }
}

@keyframes meshNodePulse {
  0%   { opacity: 0; transform: scale(0); }
  50%  { opacity: 0.7; transform: scale(1.5); }
  100% { opacity: 1; transform: scale(1); }
}

/* Footer mesh: scroll-triggered (same effect, driven by .is-visible) */
.footer-mesh {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.footer-mesh--right {
  top: -30px;
  right: -30px;
  width: 180px;
  height: auto;
  transform: rotate(90deg);
  opacity: 0.5;
}

.footer-mesh--left {
  top: -10px;
  left: -10px;
  width: 160px;
  height: auto;
  opacity: 0.5;
}

.mesh-line-scroll {
  stroke-dasharray: calc(var(--line-len) * 1px);
  stroke-dashoffset: calc(var(--line-len) * 1px);
  transition: stroke-dashoffset 1s var(--ease-out-expo);
  transition-delay: calc(0.3s + var(--line-i) * 0.08s);
}

.mesh-node-scroll {
  opacity: 0;
  transform-origin: center;
  transform-box: fill-box;
  transform: scale(0);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
  transition-delay: calc(0.2s + var(--node-i) * 0.04s);
}

/* Footer card: no slide — just triggers .is-visible for mesh + children */
.footer-card[data-reveal] {
  transform: none;
}

/* Activate mesh on scroll via parent .is-visible */
.footer-card.is-visible .mesh-line-scroll {
  stroke-dashoffset: 0;
}

.footer-card.is-visible .mesh-node-scroll {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .mesh-line, .mesh-node,
  .mesh-line-scroll, .mesh-node-scroll {
    animation: none;
    stroke-dashoffset: 0;
    opacity: 1;
    transform: none;
  }
}

/* Pull quote — type-as-design moment */
.pull-quote {
  font-family: Spacegrotesk, Inter, system-ui, sans-serif;
  font-size: clamp(2rem, 1rem + 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #0f172a;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-wrap: balance;
}

.pull-quote[data-reveal] {
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out-expo),
              transform 1s var(--ease-out-expo);
}

/* Dot grid: diagonal wave + connection draw */
.dot-node {
  opacity: 0;
  transform-origin: center;
  transform-box: fill-box;
  animation: dotWave 0.5s var(--ease-out-expo) calc(0.6s + var(--dot-d) * 0.06s) forwards;
}

@keyframes dotWave {
  0%   { opacity: 0; transform: scale(0); }
  60%  { opacity: 0.8; transform: scale(1.4); }
  100% { opacity: 1; transform: scale(1); }
}

.dot-line {
  stroke-dasharray: calc(var(--line-len) * 1px);
  stroke-dashoffset: calc(var(--line-len) * 1px);
  animation: meshDraw 0.8s var(--ease-out-expo) var(--line-delay) forwards;
}

@media (prefers-reduced-motion: reduce) {
  .dot-node, .dot-line {
    animation: none;
    opacity: 1;
    stroke-dashoffset: 0;
    transform: none;
  }
}

/* Hero page-load choreography */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideRight {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-intro {
  opacity: 0;
  animation: fadeSlideUp 0.7s var(--ease-out-expo) 0.1s forwards;
}

.display-h1 {
  opacity: 0;
  animation: fadeSlideUp 0.7s var(--ease-out-expo) 0.2s forwards;
}

.hero-image-wrapper {
  opacity: 0;
  animation: fadeSlideRight 0.8s var(--ease-out-expo) 0.3s forwards;
}

.job-title {
  opacity: 0;
  animation: fadeSlideUp 0.7s var(--ease-out-expo) 0.35s forwards;
}

.button-wrapper {
  opacity: 0;
  animation: fadeSlideUp 0.7s var(--ease-out-expo) 0.5s forwards;
}

@media (prefers-reduced-motion: reduce) {
  .hero-intro,
  .display-h1,
  .hero-image-wrapper,
  .job-title,
  .button-wrapper {
    opacity: 1;
    animation: none;
  }
}

/* Featured case study card */
/* Stats section — codecard metrics */
.section-intro {
  font-family: 'Spacegrotesk', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--primary-700);
  max-width: 100%;
  margin-bottom: 32px;
}

.stats-section {
  margin-bottom: 32px;
}

.stats-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.stats-source {
  font-family: 'Spacegrotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-500);
  letter-spacing: 0.02em;
}

.stats-source-link {
  color: var(--primary-500);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .3s ease;
}

.stats-source-link:hover {
  color: var(--accent-teal);
}

.stats-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stats-info-wrapper {
  position: relative;
}

.stats-info-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--primary-500);
  border: 1px solid var(--border-light);
  background: #fefefe;
  cursor: pointer;
  transition: color .3s ease, border-color .3s ease, background .3s ease;
}

.stats-info-btn:hover {
  color: var(--accent-teal);
  border-color: var(--accent-teal);
  background: #f0fdfa;
}

.stats-tooltip {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 320px;
  padding: 16px;
  background: var(--primary-900);
  color: #f1f5f9;
  font-family: 'Spacegrotesk', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  z-index: 10;
  pointer-events: none;
}

.stats-tooltip::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 12px;
  width: 12px;
  height: 12px;
  background: var(--primary-900);
  transform: rotate(45deg);
  border-radius: 2px;
}

.stats-info-wrapper:hover .stats-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.stats-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--primary-500);
  border: 1px solid var(--border-light);
  background: #fefefe;
  transition: color .3s ease, border-color .3s ease, background .3s ease;
  text-decoration: none;
}

.stats-link:hover {
  color: var(--accent-teal);
  border-color: var(--accent-teal);
  background: #f0fdfa;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background-color: #fefefe;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 40px 28px;
  text-align: center;
  transition: transform .4s var(--ease-out-expo), box-shadow .4s var(--ease-out-expo);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.04);
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.stat-number {
  font-family: 'JetBrains Mono', 'Spacegrotesk', monospace;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--primary-900);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-family: 'Spacegrotesk', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--primary-500);
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.featured-case-study {
  margin-bottom: 24px;
}

.service-card.featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
  padding: 40px;
}

.service-card.featured .placeholder-image {
  margin-bottom: 0;
  min-height: 200px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card.featured .featured-content {
  display: flex;
  flex-direction: column;
}

.service-card.featured .performance-philosophy {
  font-size: 28px;
}

.service-card.featured .button-red {
  margin-top: 24px;
  width: auto;
  align-self: flex-start;
}

/* Case study 3-col grid */
.case-study-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case-study-grid .performance-philosophy {
  min-height: 3.6em;
}

/* Scroll-triggered reveal system */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out-expo),
              transform 0.7s var(--ease-out-expo);
}

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

[data-reveal="stagger"] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out-expo),
              transform 0.6s var(--ease-out-expo);
}

[data-reveal="stagger"].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="stagger"].is-visible > *:nth-child(1) { transition-delay: 0ms; }
[data-reveal="stagger"].is-visible > *:nth-child(2) { transition-delay: 80ms; }
[data-reveal="stagger"].is-visible > *:nth-child(3) { transition-delay: 160ms; }
[data-reveal="stagger"].is-visible > *:nth-child(4) { transition-delay: 240ms; }

/* Divider reveal variants */
[data-reveal^="divider-"] {
  opacity: 1;
  transform: none;
}

[data-reveal^="divider-"]::before,
[data-reveal^="divider-"]::after {
  transition: transform 0.9s var(--ease-out-expo), opacity 0.7s var(--ease-out-expo);
}

/* Center outward — line scales from center, markers fade in after */
[data-reveal="divider-center"]::before {
  transform: scaleX(0);
  transform-origin: center;
}
[data-reveal="divider-center"]::after {
  opacity: 0;
}
[data-reveal="divider-center"].is-visible::before {
  transform: scaleX(1);
}
[data-reveal="divider-center"].is-visible::after {
  opacity: 1;
  transition-delay: 0.35s;
}

/* Left to right — line draws from left, markers slide in from left */
[data-reveal="divider-left"]::before {
  transform: scaleX(0);
  transform-origin: left center;
}
[data-reveal="divider-left"]::after {
  opacity: 0;
  transform: translateX(-50%) translateX(-20px);
}
[data-reveal="divider-left"].is-visible::before {
  transform: scaleX(1);
}
[data-reveal="divider-left"].is-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateX(0);
  transition-delay: 0.3s;
}

/* Right to left — line draws from right, markers slide in from right */
[data-reveal="divider-right"]::before {
  transform: scaleX(0);
  transform-origin: right center;
}
[data-reveal="divider-right"]::after {
  opacity: 0;
  transform: translateX(-50%) translateX(20px);
}
[data-reveal="divider-right"].is-visible::before {
  transform: scaleX(1);
}
[data-reveal="divider-right"].is-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateX(0);
  transition-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal="stagger"] > *,
  [data-reveal^="divider-"]::before,
  [data-reveal^="divider-"]::after {
    opacity: 1;
    transform: none;
    transition: none;
  }
  [data-reveal="divider-left"]::after,
  [data-reveal="divider-right"]::after {
    transform: translateX(-50%);
  }
}

/* Nav active state */
.nav-link.is-active {
  color: var(--deep-sky-blue);
  position: relative;
}

.nav-link.is-active::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 8px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--deep-sky-blue);
  border-radius: 1px;
}

/* Accordion chevron SVG styles */
.down-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out-expo);
}

@media screen and (max-width: 991px) {
  .header {
    padding-top: 162px;
    padding-bottom: 92px;
  }

  .hero-grid {
    grid-row-gap: 32px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 0;
    padding-right: 60px;
  }

  .nav-link {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .nav-menu {
    background-color: var(--azure);
  }

  .navbar {
    background-color: #fff0;
  }

  .menu-button {
    border: 1px solid var(--sky-blue);
    color: var(--light-sky-blue);
    background-color: #fff;
    border-radius: 20px;
    font-size: 22px;
  }

  .menu-button.w--open {
    background-color: var(--light-sky-blue);
    color: #fff;
  }

  .logo {
    width: 50%;
  }

  .service-card {
    padding: 24px;
  }

  .service-card.resume {
    width: 100%;
    min-height: 300px;
    margin-bottom: 2%;
    margin-left: 0%;
  }

  .service-title {
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
  }

  .service-title.resume {
    flex-direction: row;
    align-items: center;
  }

  .service-grid {
    grid-column-gap: 16px;
  }

  .title-wrap-split {
    flex-wrap: wrap;
  }

  .project-item {
    width: 50%;
  }

  .project-block {
    margin-left: 32px;
    margin-right: 32px;
  }

  .bg-block-blue {
    width: 70%;
  }

  .overview-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .colour-grid, .colour-grid-full {
    grid-template-columns: 1fr 1fr;
  }

  .style-guide-header {
    min-height: 420px;
  }

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

  .style-guide-content {
    width: 100%;
  }

  .title-wrap-left {
    text-align: left;
  }

  .hero-image-wrapper {
    padding: 14px;
    margin-bottom: 0;
  }

  .social-link-wrapper {
    display: none;
  }

  .project-content-grid {
    grid-row-gap: 44px;
  }

  .hero-circle-large {
    display: none;
  }

  .footer-link-wrap {
    flex-flow: column wrap;
    align-items: center;
  }

  .footer {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .header-contact {
    padding-top: 92px;
  }

  .contact-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .form-card {
    width: 100%;
    max-width: 650px;
  }

  .contact-card-grid {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-card {
    text-align: center;
  }

  .quote-block {
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .quote-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

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

  .content-h1-2 {
    margin-bottom: 20px;
  }

  .hero-content-centre {
    text-align: center;
    align-items: center;
    padding-top: 0;
  }

  .feature-card {
    padding: 32px 16px;
  }

  .project-hero-conent {
    padding-top: 0;
    padding-right: 20px;
  }

  .column {
    margin-bottom: 0%;
  }

  .column-2 {
    text-align: center;
  }

  .columns {
    text-align: center;
    flex-direction: row;
    align-items: center;
    margin-bottom: 0%;
    display: flex;
  }

  .image-3 {
    width: 50%;
  }

  .grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .container-2 {
    max-width: 728px;
  }

  .navbar-wrapper-three {
    justify-content: space-between;
  }

  .navbar-brand-three {
    position: relative;
  }

  .nav-menu-wrapper-three {
    background-color: #0000;
    top: 70px;
  }

  .nav-menu-three {
    background-color: #fff;
    border-radius: 50px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding: 20px;
    display: flex;
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-link-2 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .menu-button-2 {
    padding: 12px;
  }

  .menu-button-2.w--open {
    color: #fff;
    background-color: #a6b1bf;
  }

  .features-wrapper {
    justify-content: space-between;
    margin-bottom: 32px;
  }

  .service-card.featured {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .service-card.featured .button-red {
    width: 100%;
    align-self: stretch;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-card {
    padding: 32px 20px;
  }

  .case-study-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .nav-link.is-active::after {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .hero-circle {
    display: none;
  }

  .header {
    padding-top: 132px;
  }

  .hero-content {
    padding-right: 0;
  }

  .service-card.resume {
    width: 100%;
  }

  .features-metrics.titl .features-wrapper {
    grid-template-columns: 1fr;
  }

  .features-metrics.titl .features-block {
    width: 100%;
  }

  .service-title {
    flex-flow: row;
  }

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

  .collection-list-wrapper {
    column-count: 1;
  }

  .project-item {
    width: 100%;
    padding: 30px;
  }

  .project-wrap {
    height: 420px;
  }

  .blog-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .blog-card {
    padding-left: 24px;
    padding-right: 24px;
  }

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

  .colour {
    margin-bottom: 25px;
  }

  .logo-grid {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .logo-wrapper.border-right-bottom, .logo-wrapper.border-bottom, .logo-wrapper.border-right {
    border: 1px #000;
  }

  .project-grid {
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
  }

  .project-content-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .footer-mail-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }

  .grid-content-right {
    padding-right: 20px;
  }

  .quote-grid {
    grid-row-gap: 32px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }

  .blog-hero-image {
    height: 400px;
  }

  .column-column {
    padding-right: 0;
  }

  .header-standard {
    padding-bottom: 160px;
  }

  .display-heading {
    font-size: 55px;
  }

  .nav-menu-footer {
    flex-wrap: nowrap;
  }

  .nav-menu-footer .nav-link {
    font-size: 13px;
    padding: 12px 10px;
  }

  .grid.three-column {
    grid-template-columns: 1fr;
  }

  .hero-content-centre {
    padding-right: 0;
  }

  .get-started-grid, .licence-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .project-hero-conent {
    padding-right: 0;
  }

  .columns {
    display: flex;
  }

  .image-3 {
    width: 50%;
  }

  .div-block-3 {
    border-bottom: 2px solid var(--ghost-white);
    border-right-width: 0;
    position: relative;
  }

  .rich-text-block-2 {
    padding-left: 0%;
  }

  .navbar-brand-three {
    padding-left: 0;
  }

  .nav-menu-three {
    border-radius: 20px;
    flex-direction: column;
    padding-bottom: 30px;
  }

  .nav-menu-block {
    flex-direction: column;
  }

  .nav-link-2 {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-dropdown-toggle {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .nav-link-accent {
    margin-right: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .mobile-margin-top-10 {
    margin-top: 10px;
  }

  .features-metrics {
    padding: 24px 15px 48px;
    margin-top: -8px;
  }

  .features-wrapper {
    flex-wrap: wrap;
    margin-bottom: -40px;
  }

  .features-block {
    width: 50%;
    margin-bottom: 40px;
  }

  .stats-section {
    margin-bottom: 20px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat-card {
    padding: 28px 16px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .case-study-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 48px;
  }

  .header {
    padding-top: 124px;
    padding-bottom: 92px;
  }

  .job-title {
    font-size: 18px;
  }

  .logo {
    width: 100%;
  }

  .content-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .title-wrap {
    margin-bottom: 40px;
  }

  .service-card {
    padding: 20px;
  }

  .service-card.resume {
    width: 100%;
    min-height: 375px;
    margin-left: 0;
  }

  .service-title {
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
  }

  .service-title.resume {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .dribbble-link {
    flex-wrap: wrap;
  }

  .project-item {
    margin-bottom: 14px;
    padding: 8px;
  }

  .project-block {
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .overview-section {
    overflow: hidden;
  }

  .blog-card {
    padding: 12px;
  }

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

  .change-log-wrap {
    padding: 20px;
  }

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

  .hero-image-wrapper {
    padding: 0;
  }

  .dot-pattern {
    display: none;
  }

  .project-content-grid {
    grid-template-columns: .25fr;
    grid-auto-columns: 1fr;
    width: 320px;
  }

  .footer-mail-wrap {
    justify-content: center;
  }

  .footer-link-wrap {
    flex-flow: column;
  }

  .tag {
    margin-bottom: 14px;
    padding: 12px 20px 10px;
  }

  .form-card {
    padding-left: 32px;
    padding-right: 32px;
  }

  .button-wrapper {
    flex-wrap: wrap;
    width: 100%;
  }

  .button-outline {
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 62px;
    margin-right: 0;
  }

  .button-hero {
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .header-standard {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .social-grid {
    grid-template-columns: 1fr;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }

  .scroll-top, .blog-arrow {
    display: none;
  }

  .nav-menu-footer {
    flex-flow: row wrap;
    justify-content: center;
    gap: 0;
  }

  .nav-menu-footer .nav-link {
    font-size: 12px;
    padding: 8px 8px;
    white-space: nowrap;
  }

  .legal-text-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }

  .dribbble-text-wrap {
    align-items: center;
    font-size: 18px;
  }

  .footer-email {
    font-size: 24px;
  }

  .button-wrap-style-guide {
    flex-direction: column;
  }

  .image-3 {
    width: 50%;
  }

  .grid.three-column {
    grid-template-columns: 1fr;
  }

  .accordian-item {
    margin-bottom: 10%;
  }

  .accordian-trigger {
    padding-bottom: 2%;
  }

  .div-block-3 {
    width: 320px;
  }

  .rich-text-block-2 {
    width: 320px;
    padding-right: 3%;
  }

  .bold-text-2, .bold-text-3, .bold-text-4, .bold-text-5 {
    font-family: Spacegrotesk, Inter, system-ui, sans-serif;
    font-size: 20px;
  }

  .container-2 {
    max-width: none;
  }

  .nav-menu-three {
    flex-direction: column;
  }

  .features-wrapper {
    flex-flow: column;
  }

  .features-metrics.titl .features-wrapper {
    grid-template-columns: 1fr;
  }
}

#w-node-_02a32c19-25bf-52fd-e1f5-aad9332de813-25f040b5 {
  place-self: center;
}

#w-node-_948c62ed-5c97-bf34-5ccb-ccf7870c569a-25f040b5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8fa75ab7-3334-782d-aa31-bab91766cbcc-f5f040bc {
  align-self: center;
}

#w-node-_7a88206d-2526-4aab-1aa3-b8792220cc4c-f5f040bc {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-ab256919-0488-bf69-4be1-9f8ce2671340-a5f040be, #w-node-_633ce378-b476-ffe1-8776-3b1a1404a50b-a5f040be, #w-node-_09549b79-b597-7c20-e794-ab8ca3d63638-a5f040be, #w-node-_170519dc-5902-cb2b-2b48-62d3da1cf040-a5f040be, #w-node-_7b1eb986-1b83-0296-1a41-16cf29900cb9-a5f040be {
  place-self: center;
}

/* Case study utility classes */
.case-study-section {
  padding: 48px 0;
  border-bottom: 1px solid #e2e8f0;
}

.case-study-section:last-child {
  border-bottom: none;
}

.placeholder-image {
  background-color: #0f172a;
  border: none;
  border-radius: 4px;
  text-align: center;
  color: #94a3b8;
  font-family: Spacegrotesk, Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.placeholder-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  display: block;
  border-radius: 4px;
}

.placeholder-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/Dots-Purple.svg');
  background-size: 120px;
  background-repeat: repeat;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
}

.system-flow {
  background-color: #f8fafc;
  border-radius: 4px;
  padding: 24px 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: #334155;
  margin: 24px 0;
  line-height: 2;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0d9488;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 32px;
  text-decoration: none;
}

.back-link:hover {
  color: #0f766e;
}

.case-study-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 32px 0;
  padding: 24px;
  background: #f8fafc;
  border-radius: 12px;
}

.case-study-meta-item .title {
  text-align: left;
  margin-bottom: 4px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.impact-card {
  background: #f8fafc;
  border-left: 3px solid #0d9488;
  border-radius: 0 8px 8px 0;
  padding: 20px;
}

.impact-card .metric {
  font-family: 'JetBrains Mono', monospace;
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
}

.impact-card .metric-label {
  font-size: 14px;
  color: #64748b;
  margin-top: 4px;
}


@font-face {
  font-family: 'Spacegrotesk';
  src: url('../fonts/SpaceGrotesk-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Spacegrotesk';
  src: url('../fonts/SpaceGrotesk-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Spacegrotesk';
  src: url('../fonts/SpaceGrotesk-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Spacegrotesk';
  src: url('../fonts/SpaceGrotesk-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}