:root {
  --bg: #ffffff;
  --surface: #f9fafb;
  --surface-soft: #f3f4f6;
  --border-subtle: #e5e7eb;
  --text: #020617;
  --muted: #6b7280;
  --accent: #0d9488;
  --accent-strong: #0f766e;
  --accent-soft: #ccfbf1;
  --link: #0d9488;
  --focus: #0f766e;
  --tile-accent-start: #ecfeff;
  --tile-accent-end: #ccfbf1;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow-soft: 0 12px 40px rgba(15, 23, 42, 0.08);
  --my-gray: rgba(250, 251, 253, 1);
  --font-sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont,
  "Segoe UI", Arial, sans-serif;
  --font-heading: "Manrope", system-ui, -apple-system, BlinkMacSystemFont,
  "Segoe UI", Arial, sans-serif;
  --anchor-offset: 4rem;
  --anchor-offset-loose: 5rem;
}

body.theme-indigo {
  --accent: #6366f1;
  --accent-strong: #4f46e5;
  --accent-soft: #e0e7ff;
  --link: #6366f1;
  --focus: #4f46e5;
  --tile-accent-start: #eef2ff;
  --tile-accent-end: #e0e7ff;
}

body.theme-font-outfit {
  --font-heading: "Outfit", system-ui, -apple-system, BlinkMacSystemFont,
  "Segoe UI", Arial, sans-serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
}

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

button,
input,
textarea {
  font: inherit;
}

a {
  text-decoration-skip-ink: auto;
}

:root {
  color-scheme: light;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.2px;
}

a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  line-height: 1.2;
  font-weight: 500;
  font-family: var(--font-heading);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
}

h2 {
  font-size: 2rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px) saturate(1.2);
  border-bottom: 1px solid var(--border-subtle);
}

.nav {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 0.75rem;
  position: relative;
}

.nav__brand {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.nav__spacer {
  margin-inline-start: auto;
}

.nav__link {
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--muted);
}

.nav__link[aria-current=page] {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: background 0.15s ease-out, border-color 0.15s ease-out;
}

.nav__toggle:hover {
  background: rgba(15, 23, 42, 0.03);
}

.nav__toggle-lines {
  color: var(--accent);
  width: 1.25rem;
  height: 0.9rem;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav__toggle-lines span {
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transform-origin: center;
  transition: transform 0.18s ease-out, opacity 0.18s ease-out;
}

.nav__panel {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  right: 0;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px) saturate(1.2);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
}

.nav--open .nav__panel {
  display: flex;
}

.nav__panel .nav__link {
  display: block;
  padding: 0.65rem 0.85rem;
}

.nav--open .nav__toggle-lines span:nth-child(1) {
  transform: translateY(0.4rem) rotate(45deg);
}

.nav--open .nav__toggle-lines span:nth-child(2) {
  opacity: 0;
}

.nav--open .nav__toggle-lines span:nth-child(3) {
  transform: translateY(-0.4rem) rotate(-45deg);
}

@media (min-width: 48rem) {
  .nav__toggle {
    display: none;
  }
  .nav__panel {
    display: flex;
    position: static;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 0;
    box-shadow: none;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  .nav__panel .nav__link {
    padding: 0.4rem 0.85rem;
  }
}
.main {
  flex: 1;
}

.section {
  padding-block: 4rem;
}

section[id],
article[id] {
  scroll-margin-top: var(--anchor-offset);
}

.section--hero {
  padding-top: 7rem;
}

@media (max-width: calc(48rem - 0.01rem)) {
  .section--hero {
    padding-top: 5rem;
  }
}
.section--hero-clients {
  padding-top: 2rem;
}

.section:last-of-type {
  padding-bottom: 7rem;
}

.section__inner {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 1rem;
}

.feature__visual {
  max-width: 30rem;
  justify-self: center;
}

.grid {
  display: grid;
  gap: 1rem;
}

.section__heading {
  margin: 0 0 0.75rem;
  text-align: center;
  font-size: clamp(2.25rem, 3vw, 2.625rem);
}

.section__lead {
  margin: 0 auto 2rem;
  max-width: 42rem;
  text-align: center;
  color: var(--muted);
}

.section--fade-down {
  background-color: var(--my-gray);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.hero {
  text-align: center;
}

.hero__content {
  max-width: 60rem;
  margin-inline: auto;
}

.hero__content h1 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 3.75rem);
  font-weight: 500;
}

.hero__lead {
  max-width: 41rem;
  margin: 1.5rem auto 0;
  font-size: 1.125rem;
}

.hero__cta {
  margin-block-start: 2rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero__meta {
  font-size: 0.875rem;
  color: var(--muted);
}

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

.hero-clients__label {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 500;
}

.hero-clients__meta {
  margin-block-start: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted);
  opacity: 0.75;
}

.hero-clients__logos {
  position: relative;
  margin-block-start: 1rem;
  padding-block: 0.125rem;
  overflow-x: hidden;
  overflow-y: visible;
}

.hero-clients__track {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  animation: hero-clients-scroll 28s linear infinite;
  will-change: transform;
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .hero-clients__track {
    animation: none;
    justify-content: center;
  }
}
.hero-clients__logos::before,
.hero-clients__logos::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4rem;
  pointer-events: none;
  z-index: 1;
}

.hero-clients__logos::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), rgba(255, 255, 255, 0));
}

.hero-clients__logos::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), rgba(255, 255, 255, 0));
}

@keyframes hero-clients-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.section--feature .section__inner + .section__inner {
  margin-top: 1rem;
}

@media (min-width: 48rem) {
  .grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
}
.feature {
  align-items: center;
}

@media (max-width: calc(48rem - 0.01rem)) {
  .section--feature .feature__visual {
    display: none;
  }
  .section--feature .feature__content {
    background: radial-gradient(circle at top left, var(--tile-accent-start), var(--tile-accent-end));
  }
  .section--feature .feature__content .btn--ghost {
    background: #fff;
  }
  .section--feature .feature__content .btn--ghost:hover {
    background: rgba(255, 255, 255, 0.92);
  }
}
.feature__content,
.tech__group {
  width: 100%;
  max-width: 25rem;
}

.feature__content {
  text-align: left;
  justify-self: center;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 1rem;
  overflow: hidden;
}

.feature__content h2,
.tech__heading {
  margin: 0 0 0.75rem;
}

.feature__content p {
  margin-block-start: 0.75rem;
}

.feature__cta {
  margin-block-start: 1rem;
}

.section--tech {
  padding-top: 3rem;
}

@media (max-width: calc(48rem - 0.01rem)) {
  .section--tech .grid {
    gap: 2rem;
  }
}
.tech {
  justify-items: center;
  align-items: start;
}

.tech__group {
  text-align: left;
  padding: 0 1rem;
}

.tech__list {
  margin: 0;
  padding-left: 1.25rem;
}

.tech__item + .tech__item {
  margin-top: 0.5rem;
}

.tech__item--java .tech__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}

.tech__see-all {
  color: var(--link);
  text-decoration: none;
  white-space: nowrap;
}

.tech__see-all:hover {
  text-decoration: underline;
}

.section--work {
  padding-top: 3rem;
}

.work-grid {
  display: grid;
  gap: 1rem;
  margin-top: 0;
}

@media (min-width: 48rem) {
  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.project-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
  overflow: hidden;
}

.project-card__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  height: 100%;
}

.project-card__client {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.75rem;
  border-radius: calc(var(--radius-lg) - 4px);
  background: radial-gradient(circle at top left, var(--accent-soft), var(--accent));
  color: #06130e;
  font-size: 0.9rem;
}

.project-card__client-name {
  color: var(--text);
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.project-card__client-industry {
  margin: 0 0 auto;
}

.project-card__client-note {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  opacity: 0.9;
}

.project-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.project-card__footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.project-card__title {
  margin: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.project-card__divider {
  border: 0;
  border-top: 1px solid var(--border-subtle);
  margin: 0;
}

.project-card__list {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 0.95rem;
}

.project-card__role {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.project-card__link {
  align-self: flex-start;
  font-weight: 500;
  text-decoration: none;
  color: var(--link);
}

.project-card__link:hover {
  text-decoration: underline;
}

.section--why {
  padding-block: 3rem;
}

.section--why .section__heading {
  margin-bottom: 2rem;
}

.why-list {
  list-style: none;
  margin: 0 auto 0;
  padding: 0;
  max-width: 45rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
}

.why-list__item {
  margin: 0px 10px;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: var(--surface-soft);
  font-size: 0.95rem;
  text-align: center;
  transform-origin: center;
  animation: why-pulse 3s ease-in-out infinite;
}

.why-list__item:nth-child(2) {
  animation-delay: 0.8s;
}

.why-list__item:nth-child(3) {
  animation-delay: 1.6s;
}

.why-list__item:nth-child(4) {
  animation-delay: 2.1s;
}

.why-list__item:nth-child(5) {
  animation-delay: 2.7s;
}

.why-list__item:nth-child(6) {
  animation-delay: 1.2s;
}

.why-list__item:nth-child(7) {
  animation-delay: 0.2s;
}

@keyframes why-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}
.footer {
  border-top: 1px solid var(--border-subtle);
  background: var(--surface-soft);
  font-size: 0.875rem;
  color: var(--muted);
}

.footer__cta {
  border-bottom: 1px solid var(--border-subtle);
}

.footer__cta-inner {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 1rem;
  padding-block: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;
}

.footer__cta-heading {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.footer__inner {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
  min-width: 0;
}

.footer__brand {
  flex: 2 1 260px;
  max-width: 26rem;
  min-width: 0;
}

.footer__logo {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.footer__meta {
  margin: 0;
}

.footer__columns {
  flex: 3 1 360px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  align-items: start;
  min-width: 0;
}

.footer__heading {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 2rem;
}

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

.footer__link {
  color: inherit;
  text-decoration: none;
}

.footer__link:hover {
  text-decoration: underline;
}

.footer__text {
  margin: 0;
}

.footer__cta-inner .btn {
  font-size: 1rem;
}

@media (max-width: 54rem) {
  .footer__brand {
    flex: 0 0 100%;
    max-width: none;
  }
  .footer__columns {
    flex: 1 1 100%;
  }
}
@media (max-width: calc(48rem - 0.01rem)) {
  .footer__cta-inner {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
    gap: 1.5rem;
  }
  .footer__inner {
    padding-bottom: 3rem;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
  .footer__brand {
    flex: none;
    max-width: none;
  }
  .footer__columns {
    grid-template-columns: 0.83fr 1.34fr 0.83fr;
    gap: 0.75rem;
  }
  .footer__column {
    min-width: 0;
  }
  .footer__text a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .footer__heading {
    font-size: 0.875rem;
    line-height: 1.4;
    margin-bottom: 0.25rem;
  }
  .footer__text,
  .footer__link {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}
.hero__content--narrow {
  max-width: 55rem;
}

.services-hero .hero__content--narrow {
  max-width: 53rem;
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 48rem) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: calc(48rem - 0.01rem)) {
  .services-grid {
    gap: 1rem;
  }
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
}

.service-card__title {
  margin: 0 0 0.75rem;
}

.section--how {
  padding-block: 3rem;
}

.workflow {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.workflow-item {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}

.workflow-item__label {
  padding: 0.75rem 1rem;
  background: var(--accent-soft);
  text-align: center;
  font-weight: 500;
}

.workflow-item__body {
  padding: 0.75rem 1rem 1rem;
}

.workflow-item__body p {
  margin: 0 0 0.5rem;
}

.workflow-item__body p:last-child {
  margin-bottom: 0;
}

.workflow-item__list {
  margin: 0;
  padding-left: 1.25rem;
}

.workflow-item__list li + li {
  margin-top: 0.25rem;
}

.section--stack {
  padding-top: 3rem;
}

.section--stack .section__inner {
  display: flex;
  justify-content: center;
}

.stack-card {
  max-width: 44rem;
  width: 100%;
  text-align: center;
}

.stack-card .section__heading {
  margin-bottom: 2rem;
}

.stack-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 32.5rem;
  margin-inline: auto;
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 48rem) {
  .stack-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.stack-grid__item {
  display: flex;
  justify-content: center;
}

.pill.pill--stack {
  width: 100%;
  max-width: 10rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  background: #fff;
  border-color: rgba(15, 23, 42, 0.16);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  color: var(--muted);
}

.section--services-how {
  padding-top: 3rem;
}

.section--services-how .section__heading {
  margin-bottom: 2rem;
}

.services-how__list {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.services-how__item {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}

.services-how__title {
  margin: 0;
  padding: 0.75rem 1rem;
  background: var(--accent-soft);
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text);
}

.services-how__body {
  padding: 1rem;
  text-align: center;
}

.services-how__text {
  margin: 0;
}
.services-how__text + .services-how__text {
  margin-top: 0.5rem;
}

.section--services-links {
  padding-bottom: 3rem;
}

.services-links {
  max-width: 36rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.services-links__eyebrow {
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.services-links__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  row-gap: 0.5rem;
}

.services-links__label {
  margin: 0;
  font-size: 1rem;
  color: var(--muted);
}

.services-links__divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 0.5rem 0;
}

.services-links__link {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  font-size: 1rem;
  line-height: 1.1;
  font-weight: 500;
  color: var(--link);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.services-links__link:hover {
  border-bottom-color: currentColor;
  text-decoration: none;
}

.section--work-cases {
  border-bottom: 0;
}

article.work-case[id] {
  scroll-margin-top: var(--anchor-offset-loose);
}

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

.work-hero__lead {
  max-width: 41rem;
}

.work-cases {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

@media (max-width: calc(48rem - 0.01rem)) {
  .work-cases {
    gap: 3rem;
  }
}
.work-case__main {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  padding: 0;
}

.work-case__card {
  padding: 1rem;
  display: grid;
  gap: 1rem;
  min-height: 21rem;
}

@media (min-width: 48rem) {
  .work-case__card {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr) minmax(0, 1.4fr);
    align-items: stretch;
  }
}
.work-case__client {
  height: 100%;
}

.work-case__client .project-card__client-name {
  font-size: 1rem;
}

.work-case__meta {
  padding: 0.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.work-case__title {
  margin: 0;
  font-size: clamp(1.25rem, 2.1vw, 1.6rem);
  font-weight: 500;
  color: var(--text);
}

.work-case__list {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 0.95rem;
}

.work-case__list li + li {
  margin-top: 0.25rem;
}

.work-case__role {
  margin: 0;
  margin-top: auto;
}

.work-case__role-title {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.work-case__role-meta {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
}

.work-case__details {
  padding: 0.75rem 0;
}

.work-case__details p {
  margin: 0 0 0.75rem;
}

.work-case__details p:last-child {
  margin-bottom: 0;
}

.work-case__highlight {
  margin: 0;
  padding: 0.75rem 1rem 1rem;
  border-top: 1px solid var(--border-subtle);
}

@media (max-width: calc(48rem - 0.01rem)) {
  .work-case__highlight {
    padding-top: calc(1.5rem + 0.25rem);
  }
}
.work-case__highlight-title {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  color: var(--accent);
}

.work-case__highlight-text {
  margin: 0;
  text-align: center;
}

@media (max-width: calc(48rem - 0.01rem)) {
  .work-case__card {
    min-height: 0;
  }
  .work-case__meta {
    padding-top: 0.75rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .work-case__details {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .work-case__role {
    margin-top: 1rem;
  }
}
.about-hero {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 48rem) {
  .about-hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
}
.about-hero__content {
  max-width: 28rem;
}

@media (max-width: calc(48rem - 0.01rem)) {
  .about-hero__content {
    justify-self: center;
    margin-inline: auto;
  }
}
.about-hero__photo-wrap {
  justify-self: center;
  text-align: center;
}

@media (max-width: calc(48rem - 0.01rem)) {
  .about-hero__photo-wrap {
    margin: 0;
  }
}
.about-hero__photo {
  display: block;
  max-width: 380px;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.about-hero__photo-label {
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.section--about-background {
  padding-top: 3rem;
}

.section--about-background .section__lead {
  max-width: 60rem;
  margin-bottom: 0;
}

@media (max-width: calc(48rem - 0.01rem)) {
  .section--about-journey {
    padding-bottom: 2rem;
  }
  .section--about-next {
    padding-top: 2rem;
  }
}
.about-journey {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-journey__step {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.about-journey__step--align-right {
  align-items: flex-end;
}

.about-journey__row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}

.about-journey__text {
  display: flex;
  flex-direction: column;
}

.about-journey__tile-wrapper {
  display: flex;
  flex-direction: column;
}

.about-journey__title {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  font-weight: 500;
  text-align: center;
}

.about-journey__title--spacer {
  visibility: hidden;
}

.about-journey__card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  min-height: 18rem;
}

.about-journey__body p {
  margin: 0 0 1rem;
}

.about-journey__body p:last-child {
  margin-bottom: 0;
}

.about-journey__tile {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, var(--tile-accent-start), var(--tile-accent-end));
  width: 18rem;
  height: 18rem;
  flex: 0 0 auto;
  border: 1px solid var(--border-subtle);
}

@media (max-width: calc(48rem - 0.01rem)) {
  .about-journey__tile-wrapper {
    display: none;
  }
  .about-journey__card {
    min-height: 0;
  }
  .about-journey__connector {
    display: block;
    position: relative;
    height: 1.6rem;
    margin-bottom: 1.5rem;
    color: #000;
  }
  .about-journey__connector-leg,
  .about-journey__connector-bar,
  .about-journey__connector-arrow {
    display: none;
  }
  .about-journey__connector::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0.2rem;
    left: 50%;
    width: 0;
    border-style: solid;
    border-color: transparent;
    border-width: 0 0 0 2px;
    border-image: repeating-linear-gradient(to bottom, currentColor 0 4px, transparent 4px 9px) 1;
    transform: translateX(-50%);
  }
  .about-journey__connector::after {
    content: "";
    position: absolute;
    bottom: -0.2rem;
    left: 50%;
    width: 0.6rem;
    height: 0.6rem;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: translateX(-50%) rotate(45deg);
  }
}
@media (min-width: 48rem) {
  .about-journey__row {
    flex-direction: row;
    gap: 1.5rem;
    align-items: stretch;
  }
  .about-journey__row--reverse {
    flex-direction: row-reverse;
  }
  .about-journey__step--backend .about-journey__text {
    max-width: 18rem;
  }
  .about-journey__step--frontend .about-journey__text {
    max-width: 32rem;
  }
  .about-journey__step--fullstack .about-journey__text {
    max-width: 30rem;
  }
  .about-journey__step--arch .about-journey__text {
    max-width: 41rem;
  }
  .about-journey__connector {
    display: block;
    position: relative;
    height: 6.5rem;
    margin-bottom: 1rem;
  }
  .about-journey__connector-leg {
    position: absolute;
    width: 0;
    height: 3.75rem;
    border-style: solid;
    border-color: transparent;
    border-width: 0 0 0 2px;
    border-image: repeating-linear-gradient(to bottom, currentColor 0 4px, transparent 4px 9px) 1;
  }
  .about-journey__connector-leg--start {
    top: 0;
    left: var(--connector-start-x);
  }
  .about-journey__connector-leg--end {
    bottom: 0;
    left: var(--connector-end-x);
    height: 2.75rem;
  }
  .about-journey__connector-bar {
    position: absolute;
    top: 3.75rem;
    border-style: solid;
    border-color: transparent;
    border-width: 0 0 2px 0;
    border-image: repeating-linear-gradient(90deg, currentColor 0 4px, transparent 4px 9px) 1;
  }
  .about-journey__connector-arrow {
    position: absolute;
    bottom: -0.2rem;
    left: calc(var(--connector-end-x) - 4px);
    width: 0.6rem;
    height: 0.6rem;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    transform: rotate(45deg);
  }
  .about-journey__connector--backend-frontend {
    --connector-start-x: 9rem;
    --connector-end-x: calc(100% - 16rem);
  }
  .about-journey__connector--backend-frontend .about-journey__connector-bar {
    left: var(--connector-start-x);
    right: calc(100% - var(--connector-end-x));
  }
  .about-journey__connector--frontend-fullstack {
    --connector-start-x: calc(100% - 16rem);
    --connector-end-x: 15rem;
  }
  .about-journey__connector--frontend-fullstack .about-journey__connector-bar {
    left: var(--connector-end-x);
    right: calc(100% - var(--connector-start-x));
  }
  .about-journey__connector--frontend-fullstack .about-journey__connector-arrow {
    left: calc(var(--connector-end-x) - 4px);
    transform: rotate(45deg);
  }
  .about-journey__connector--fullstack-arch {
    --connector-start-x: 15rem;
    --connector-end-x: calc(100% - 20.5rem);
  }
  .about-journey__connector--fullstack-arch .about-journey__connector-bar {
    left: var(--connector-start-x);
    right: calc(100% - var(--connector-end-x));
  }
  .about-journey__connector--fullstack-arch .about-journey__connector-arrow {
    left: calc(var(--connector-end-x) - 4px);
    transform: rotate(45deg);
  }
}
.about-next {
  display: grid;
  column-gap: 2rem;
  row-gap: 4rem;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-rows: auto auto;
}

.about-next__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

.about-next__text--left {
  padding: 1rem;
  max-width: 26rem;
  justify-self: center;
}

.about-next__text--right {
  padding: 1rem;
  max-width: 26rem;
  justify-self: center;
}

.about-next__arrow {
  grid-row: 1;
  grid-column: 2;
  position: relative;
  width: 2rem;
  min-height: 8rem;
  justify-self: center;
  color: #000;
}

.about-next__arrow::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0.2rem;
  left: calc(50% + 0.5px);
  width: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0 0 0 2px;
  border-image: repeating-linear-gradient(to bottom, currentColor 0 4px, transparent 4px 9px) 1;
}

.about-next__arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 55%;
  width: 0.6rem;
  height: 0.6rem;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: translate(-50%, 0) rotate(45deg);
}

.about-next__chapter {
  grid-column: 1/-1;
  grid-row: 2;
  text-align: center;
}

.about-next__chapter-title {
  margin: 0;
  font-size: clamp(1.6rem, 2.4vw, 1.8rem);
}

.about-next__chapter-card {
  margin-top: 0.75rem;
  max-width: 24rem;
  margin-inline: auto;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--border-subtle);
  border-color: black;
}

@media (max-width: 64rem) {
  .about-next__chapter-card {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 48rem) and (max-width: 64rem) {
  .about-next__chapter-card {
    min-height: 12rem;
  }
  .about-next {
    row-gap: 2rem;
  }
}
@media (max-width: calc(48rem - 0.01rem)) {
  .about-next__chapter-card {
    min-height: 13rem;
  }
}
.about-next__chapter-card {
  container-type: inline-size;
}

.about-next__chapter-label {
  display: block;
  font-size: clamp(3.5rem, 35cqw, 6rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--border-subtle);
}

@media (max-width: calc(48rem - 0.01rem)) {
  .about-next {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto auto;
    justify-items: stretch;
    row-gap: 1rem;
  }
  .about-next__text--left,
  .about-next__text--right {
    justify-self: center;
    text-align: center;
    max-width: none;
    padding: 0 1rem;
  }
  .about-next__text--left {
    grid-column: 1;
    grid-row: 1;
  }
  .about-next__text--right {
    grid-column: 1;
    grid-row: 2;
    position: relative;
  }
  .about-next__text--right::before {
    content: "";
    display: block;
    height: 1px;
    background: var(--border-subtle);
    margin-top: 0.75rem;
    margin-bottom: 1.75rem;
  }
  .about-next__arrow {
    grid-column: 1;
    grid-row: 3;
    margin-block: 0.75rem;
    min-height: 4rem;
  }
  .about-next__chapter {
    grid-column: 1;
    grid-row: 4;
  }
}
.section--contact {
  padding-bottom: 3rem;
}

@media (max-width: calc(48rem - 0.01rem)) {
  .section--contact {
    padding-bottom: 2rem;
  }
}
@media (max-width: calc(48rem - 0.01rem)) {
  .section:last-of-type {
    padding-bottom: 5rem;
  }
}
.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 48rem) {
  .contact-grid {
    gap: 2rem;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    align-items: flex-start;
    column-gap: 4rem;
  }
}
.contact-heading {
  max-width: 35rem;
}

.contact-heading__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}

@media (max-width: calc(48rem - 0.01rem)) {
  .contact-heading__eyebrow {
    display: none;
  }
}
.contact-heading__title {
  margin: 0 0 0.75rem;
  text-align: left;
}

@media (max-width: calc(48rem - 0.01rem)) {
  .contact-heading__title.section__heading {
    font-size: clamp(2.4rem, 3vw, 2.625rem);
  }
}
.contact-heading__subtitle {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 500;
}

@media (max-width: 72rem) {
  .contact-heading__subtitle {
    font-size: 1.2rem;
  }
}
@media (max-width: calc(48rem - 0.01rem)) {
  .contact-heading__subtitle {
    font-size: 1.125rem;
  }
}
.contact-heading__meta {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.contact-details {
  margin-top: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-details__info {
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-details__block {
  max-width: 16rem;
}

.contact-details__label {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.contact-details__value {
  margin: 0;
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.contact-details__value a {
  color: var(--link);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-details__value a:hover {
  text-decoration: underline;
}

.contact-details__tile {
  flex-shrink: 0;
  width: 11rem;
}

.contact-details__tile .tile {
  width: 100%;
  aspect-ratio: 1/1;
}

@media (max-width: 36rem) {
  .contact-details__tile {
    display: none;
  }
}
.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
  position: relative;
  width: 100%;
  font-size: 1rem;
}

.contact-form__fields {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-form__field label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: #fff;
  font: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background-color: #fff;
}

.contact-form__field textarea {
  min-height: 8rem;
  resize: vertical;
}

.contact-form__actions {
  margin-top: 1rem;
}

.contact-form__actions .btn {
  width: 100%;
  font-size: 1rem;
}

.contact-form__address {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border: 0;
  width: 0.001px;
  height: 0.001px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: calc(48rem - 0.01rem)) {
  .contact-heading {
    margin-inline: auto;
    text-align: center;
  }
  .contact-heading__title {
    text-align: center;
  }
  .contact-details {
    justify-content: center;
  }
  .contact-details__info {
    align-items: center;
    text-align: center;
  }
  .contact-details__block {
    max-width: none;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.2s ease-out, border-color 0.2s ease-out, transform 0.08s ease-out, box-shadow 0.15s ease-out;
  text-decoration: none;
}

.btn.hero__primary {
  font-size: 1rem;
}

.btn:hover {
  background: var(--accent-strong);
  text-decoration: none;
}

.btn:active {
  transform: translateY(1px);
  box-shadow: none;
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(15, 23, 42, 0.18);
}

.btn--ghost:hover {
  background: rgba(15, 23, 42, 0.03);
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 18px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.16);
  font-size: 0.875rem;
  line-height: 1.4;
  white-space: nowrap;
  width: auto;
  min-width: 7rem;
  text-align: center;
}

.tile {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  aspect-ratio: 1/1;
  width: 100%;
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
  box-shadow: var(--shadow-soft);
}

.feature__visual .tile img {
  width: 84%;
  height: 84%;
}

.tile--accent {
  background: radial-gradient(circle at top left, var(--tile-accent-start), var(--tile-accent-end));
  border: 1px solid var(--border-subtle);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.stack > * + * {
  margin-block-start: 1rem;
}

.mt-5 {
  margin-top: 1.5rem;
}

.mb-5 {
  margin-bottom: 1.5rem;
}

/*# sourceMappingURL=main.css.map */
