:root {
  --ink: #07110f;
  --ink-soft: #0b1714;
  --panel: #0f1d19;
  --panel-2: #13231f;
  --aqua: #01fecf;
  --aqua-soft: #8affea;
  --violet: #9d8cff;
  --white: #f6faf9;
  --muted: #9fb0aa;
  --line: rgba(255, 255, 255, .1);
  --line-strong: rgba(255, 255, 255, .18);
  --shadow: 0 28px 80px rgba(0, 0, 0, .35);
  --radius: 24px;
  --container: 1180px;
}

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

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

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

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

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

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

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

.skip-link {
  position: fixed;
  z-index: 999;
  left: 16px;
  top: 16px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--aqua);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 82px;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 17, 15, .82);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .12em;
}

.brand img {
  width: 170px;
  height: auto;
  object-fit: contain;
}

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

.main-nav > a:not(.button) {
  color: #c9d5d1;
  transition: color .2s ease;
}

.main-nav > a:not(.button):hover {
  color: var(--aqua);
}

.menu-toggle {
  display: none;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 22px;
  border: 1px solid var(--aqua);
  border-radius: 10px;
  background: var(--aqua);
  color: #04110e;
  font-weight: 850;
  line-height: 1;
  box-shadow: 0 10px 35px rgba(1, 254, 207, .08);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(1, 254, 207, .18);
  background: var(--aqua-soft);
}

.button-small {
  min-height: 42px;
  padding: 0 16px;
  gap: 15px;
  border-radius: 8px;
  font-size: 13px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 750;
  border-bottom: 1px solid var(--line-strong);
  padding-block: 4px;
  transition: color .2s ease, border-color .2s ease;
}

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

.hero {
  position: relative;
  min-height: 780px;
  padding: 160px 0 0;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(90deg, var(--ink) 0%, rgba(7, 17, 15, .96) 35%, rgba(7, 17, 15, .75) 100%),
    url("/assets/img/brand-texture.webp") center / cover;
  opacity: .96;
}

.hero-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black 5%, transparent 83%);
}

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

.hero-glow-one {
  width: 480px;
  height: 480px;
  right: 4%;
  top: 10%;
  background: radial-gradient(circle, rgba(1, 254, 207, .13), transparent 67%);
}

.hero-glow-two {
  width: 400px;
  height: 400px;
  right: 28%;
  top: 20%;
  background: radial-gradient(circle, rgba(157, 140, 255, .11), transparent 68%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(470px, 1.04fr);
  align-items: center;
  gap: 66px;
}

.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--aqua);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 20px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(54px, 6.6vw, 88px);
  line-height: .95;
  letter-spacing: -.055em;
  text-wrap: balance;
}

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

.hero-lead {
  max-width: 610px;
  margin: 28px 0 0;
  color: #bdcac6;
  font-size: 18px;
  line-height: 1.7;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 35px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 13px;
}

.hero-proof span {
  color: var(--aqua);
  margin-right: 5px;
}

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

.code-window {
  position: relative;
  z-index: 2;
  width: min(100%, 565px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background: rgba(12, 26, 22, .86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(15px);
  transform: rotate(1.5deg);
  animation: float-window 7s ease-in-out infinite;
}

.window-bar {
  min-height: 52px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 17px;
  border-bottom: 1px solid var(--line);
  color: #71847d;
  font: 11px/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2d4039;
}

.window-dots span:first-child {
  background: var(--aqua);
}

.live {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--aqua);
}

.live i,
.status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 12px var(--aqua);
}

.code-body {
  padding: 28px 24px 25px;
  color: #d8e4e0;
  font: 13px/2 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.code-body div {
  white-space: nowrap;
}

.code-body b {
  display: inline-block;
  width: 35px;
  color: #53665f;
  font-weight: 400;
  user-select: none;
}

.purple {
  color: #b8a8ff;
}

.aqua {
  color: var(--aqua);
}

.green {
  color: #9ce6ac;
}

.product-card {
  margin: 0 14px 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(5, 16, 13, .78);
}

.product-top,
.progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-top {
  color: var(--muted);
  font-size: 11px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--aqua);
}

.progress-label {
  margin-top: 20px;
  font-size: 12px;
}

.progress-label strong {
  color: var(--aqua);
}

.progress {
  height: 5px;
  margin-top: 9px;
  overflow: hidden;
  border-radius: 10px;
  background: #20312c;
}

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

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.metrics div {
  padding: 12px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 9px;
  background: rgba(255,255,255,.025);
}

.metrics small,
.metrics strong {
  display: block;
}

.metrics small {
  color: #71847d;
  font-size: 9px;
}

.metrics strong {
  margin-top: 4px;
  font-size: 11px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(1, 254, 207, .16);
  border-radius: 50%;
}

.orbit-one {
  width: 510px;
  height: 510px;
}

.orbit-two {
  width: 410px;
  height: 410px;
  border-color: rgba(157, 140, 255, .16);
}

.floating-tag {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: rgba(7, 17, 15, .88);
  color: #dce7e3;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 18px 35px rgba(0,0,0,.24);
  backdrop-filter: blur(12px);
}

.floating-tag span {
  color: var(--aqua);
  font-family: ui-monospace, monospace;
}

.tag-code {
  left: -12px;
  bottom: 96px;
}

.tag-idea {
  right: -15px;
  top: 55px;
}

.tech-strip {
  margin-top: 92px;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(0,0,0,.18);
}

.tech-track {
  width: max-content;
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 34px;
  padding-inline: 34px;
  color: #7e918a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  animation: ticker 36s linear infinite;
}

.tech-track i {
  color: var(--aqua);
  font-style: normal;
}

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

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 58px;
}

.section-heading h2,
.process h2,
.about h2,
.contact h2 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.section-heading > p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
}

.services {
  background: #f2f6f4;
  color: #0a1713;
}

.services .eyebrow {
  color: #078c74;
}

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

.service-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid #d8e2de;
  border-radius: 18px;
  background: #fbfdfc;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  background: #0b1915;
  color: var(--white);
  box-shadow: 0 24px 55px rgba(3, 25, 19, .16);
}

.service-number {
  align-self: flex-end;
  color: #789087;
  font: 12px/1 ui-monospace, monospace;
}

.service-icon {
  width: 57px;
  height: 57px;
  display: grid;
  place-items: center;
  margin: 34px 0 28px;
  border-radius: 13px;
  background: #d7fff7;
  color: #067a65;
}

.service-icon svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0;
  font-size: 23px;
  letter-spacing: -.025em;
}

.service-card p {
  margin: 12px 0 0;
  color: #596a64;
  font-size: 14px;
}

.service-card:hover p {
  color: #9fb0aa;
}

.service-card ul {
  display: grid;
  gap: 6px;
  margin: auto 0 0;
  padding: 22px 0 0;
  border-top: 1px solid #e1e8e5;
  color: #62726d;
  font-size: 12px;
  list-style: none;
}

.service-card:hover ul {
  border-color: var(--line);
  color: #bdd0c9;
}

.service-card li::before {
  content: "+";
  margin-right: 8px;
  color: #0a9b80;
  font-weight: 800;
}

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

.process-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 110px;
}

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

.process-intro > p:not(.eyebrow) {
  max-width: 470px;
  margin: 25px 0;
  color: var(--muted);
}

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

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

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

.process-list > li > span {
  color: var(--aqua);
  font: 12px/1.5 ui-monospace, monospace;
}

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

.process-list p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.projects {
  background: #f2f6f4;
  color: #0a1713;
}

.projects .eyebrow {
  color: #078c74;
}

.project-carousel {
  position: relative;
}

.project-carousel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.project-carousel-top > p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #60726b;
  font-size: 12px;
  font-weight: 750;
}

.project-carousel-top > p > span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid #cdd9d5;
  border-radius: 50%;
  color: #078c74;
}

.project-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.project-count {
  min-width: 76px;
  color: #7b8c86;
  font: 11px/1 ui-monospace, monospace;
}

.project-count strong {
  color: #0a1713;
  font-size: 15px;
}

.project-controls button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #c8d5d0;
  border-radius: 50%;
  background: transparent;
  color: #0a1713;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.project-controls button:hover:not(:disabled) {
  border-color: #0a1713;
  background: #0a1713;
  color: var(--aqua);
}

.project-controls button:disabled {
  opacity: .35;
  cursor: default;
}

.project-rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 2px 78px 18px 2px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}

.project-rail::-webkit-scrollbar {
  display: none;
}

.project-slide {
  min-width: 0;
  min-height: 530px;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(310px, .75fr);
  flex: 0 0 calc(100% - 78px);
  overflow: hidden;
  border: 1px solid #d9e2df;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(18, 43, 35, .08);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.project-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #dfe8e4;
}

.mobile-showcase {
  background:
    radial-gradient(circle at 74% 38%, rgba(255,255,255,.6), transparent 26%),
    radial-gradient(circle at 28% 70%, rgba(232,175,190,.4), transparent 30%),
    linear-gradient(135deg, #e7dce2 0%, #d8e5ec 52%, #f1dfe3 100%);
}

.mobile-showcase-nutrition {
  background:
    radial-gradient(circle at 77% 25%, rgba(255,255,255,.7), transparent 24%),
    radial-gradient(circle at 24% 74%, rgba(61,196,141,.28), transparent 30%),
    linear-gradient(135deg, #d8f2ea 0%, #f4d9ed 50%, #d9e8fa 100%);
}

.mobile-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(135deg, black, transparent 72%);
}

.mobile-showcase .app-screen {
  position: absolute;
  z-index: 1;
  top: 9%;
  width: 28%;
  height: auto;
  aspect-ratio: 600 / 1299;
  object-fit: cover;
  object-position: top;
  border: 7px solid #151918;
  border-radius: 30px;
  box-shadow: 0 28px 55px rgba(41, 31, 36, .28);
}

.mobile-showcase .app-screen-one {
  left: 30%;
  transform: rotate(-7deg) translateY(8%);
}

.mobile-showcase .app-screen-two {
  left: 52%;
  z-index: 3;
  transform: translateY(-2%);
}

.mobile-showcase .app-screen-three {
  left: 73%;
  z-index: 2;
  transform: rotate(7deg) translateY(8%);
}

.project-slide:hover .mobile-showcase .app-screen-one {
  transform: rotate(-7deg) translateY(5%) scale(1.02);
}

.project-slide:hover .mobile-showcase .app-screen-two {
  transform: translateY(-5%) scale(1.02);
}

.project-slide:hover .mobile-showcase .app-screen-three {
  transform: rotate(7deg) translateY(5%) scale(1.02);
}

.app-identity {
  position: absolute;
  z-index: 4;
  left: 5%;
  bottom: 7%;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #1b2522;
}

.app-identity > img {
  width: 66px;
  height: 66px;
  flex: 0 0 auto;
  border-radius: 19px;
  box-shadow: 0 15px 30px rgba(70, 45, 55, .18);
  transition: transform .4s ease;
}

.project-slide:hover .app-identity > img {
  transform: scale(1.035);
}

.app-identity span,
.app-identity strong,
.app-identity small {
  display: block;
}

.app-identity strong {
  max-width: 210px;
  font-size: clamp(20px, 2.2vw, 32px);
  line-height: 1;
  letter-spacing: -.045em;
}

.app-identity small {
  margin-top: 9px;
  color: #63716d;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.project-arrow {
  position: absolute;
  z-index: 5;
  right: 18px;
  top: 18px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--aqua);
  color: var(--ink);
  font-size: 20px;
}

.browser-showcase {
  display: grid;
  grid-template-rows: 45px 1fr;
  padding: 22px 22px 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(1,254,207,.13), transparent 26%),
    #dce7e3;
}

.browser-bar {
  min-width: 0;
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  align-items: center;
  padding: 0 14px;
  border-radius: 14px 14px 0 0;
  background: #f8faf9;
  box-shadow: 0 18px 45px rgba(16, 47, 38, .16);
}

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

.browser-dots i {
  width: 7px;
  height: 7px;
  display: block;
  border-radius: 50%;
  background: #b9c5c0;
}

.browser-dots i:first-child {
  background: #ff786e;
}

.browser-dots i:nth-child(2) {
  background: #f2c75c;
}

.browser-dots i:last-child {
  background: #4ccf88;
}

.browser-address {
  min-width: 0;
  overflow: hidden;
  padding: 5px 18px;
  border-radius: 20px;
  background: #e9efec;
  color: #6a7973;
  font-size: 9px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-page {
  min-height: 0;
  display: block;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 45px rgba(16, 47, 38, .16);
}

.project-slide-tramap {
  border-color: rgba(182, 12, 22, .2);
  box-shadow: 0 24px 70px rgba(92, 14, 20, .12);
}

.project-slide-tramap .project-copy {
  background: #fffdfb;
}

.project-slide-tramap .project-kicker {
  color: #b60c16;
}

.tramap-showcase {
  background:
    radial-gradient(circle at 12% 18%, rgba(233,34,43,.18), transparent 31%),
    linear-gradient(135deg, #f1e9e4, #e8dfda);
}

.tramap-showcase .browser-bar,
.tramap-showcase .browser-page {
  box-shadow: 0 18px 45px rgba(92, 14, 20, .15);
}

.tramap-preview {
  display: grid;
  grid-template-rows: 68px 1fr;
  background: #fbf9f6;
}

.tramap-preview-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 0 27px;
  border-bottom: 1px solid #eee7e3;
  background: #fff;
}

.tramap-preview-nav img {
  width: 125px;
  height: auto;
}

.tramap-preview-nav > span {
  color: #6d6d70;
  font-size: 8px;
  font-weight: 750;
}

.tramap-preview-media {
  position: relative;
  min-height: 0;
  display: block;
  overflow: hidden;
}

.tramap-preview-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}

.project-slide-tramap:hover .tramap-preview-media > img {
  transform: scale(1.025);
}

.tramap-preview-media > span {
  position: absolute;
  left: 24px;
  bottom: 22px;
  display: grid;
  gap: 4px;
  padding: 13px 16px;
  border-radius: 10px;
  background: rgba(23,24,28,.9);
  color: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
}

.tramap-preview-media b {
  font-size: 14px;
  line-height: 1.2;
}

.tramap-preview-media small {
  color: #d4d4d5;
  font-size: 8px;
  letter-spacing: .04em;
}

.tramap-showcase .project-arrow {
  background: #b60c16;
  color: #fff;
}

.project-tramap-logo {
  width: min(100%, 205px);
  height: auto;
  margin-bottom: 24px;
}

.project-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.project-visit.project-visit-primary {
  border-color: #b60c16;
  background: #b60c16;
  color: #fff;
}

.project-visit.project-visit-primary:hover {
  border-color: #970a12;
  background: #970a12;
  color: #fff;
}

.project-text-link {
  color: #6c7571;
  font-size: 10px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: #c7cecb;
  text-underline-offset: 4px;
}

.project-text-link:hover {
  color: #b60c16;
  text-decoration-color: #b60c16;
}

.preview-nav {
  height: 60px;
  display: grid;
  grid-template-columns: 1fr auto 34px;
  align-items: center;
  gap: 18px;
  padding: 0 25px;
  border-bottom: 1px solid #edf0ef;
  color: #161c1a;
}

.preview-nav strong {
  font-size: 21px;
  line-height: 1;
  letter-spacing: -.04em;
}

.preview-nav > span {
  color: #59635f;
  font-size: 7px;
  font-weight: 750;
}

.preview-nav i {
  font-size: 19px;
  font-style: normal;
}

.bluenty-preview > img {
  width: 100%;
  height: auto;
  max-height: 54%;
  object-fit: contain;
}

.preview-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 11px;
  padding: 18px 24px;
}

.preview-products i {
  min-height: 87px;
  border-radius: 5px;
  background:
    radial-gradient(ellipse at center, rgba(32,40,37,.48) 0 4%, transparent 5%),
    linear-gradient(145deg, #f3f5f4, #e8ecea);
}

.opticas-preview .preview-nav {
  color: #07123a;
}

.opticas-preview .preview-nav strong {
  font-size: 13px;
  letter-spacing: -.02em;
}

.opticas-preview-hero {
  min-height: calc(100% - 60px);
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 6px;
  padding: 22px 20px 22px 34px;
  background: linear-gradient(115deg, #fff 0 42%, #f1f3f8 42%);
}

.opticas-preview-hero > span {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.opticas-preview-hero small {
  color: #ef233c;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.opticas-preview-hero b {
  max-width: 240px;
  margin-top: 10px;
  color: #07123a;
  font-size: clamp(23px, 3vw, 40px);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.opticas-preview-hero em {
  margin-top: 19px;
  padding: 7px 12px;
  border-radius: 3px;
  background: #ef233c;
  color: #fff;
  font-size: 7px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: .08em;
}

.opticas-preview-hero > img {
  width: 100%;
  height: 100%;
  max-height: 370px;
  object-fit: contain;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}

.project-slide:hover .opticas-preview-hero > img {
  transform: scale(1.025) rotate(1deg);
}

.project-copy {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 42px 36px 36px;
}

.project-kicker {
  margin: 0;
  color: #078c74;
  font: 750 10px/1.4 ui-monospace, monospace;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.project-copy h3 {
  margin: 0 0 13px;
  font-size: clamp(31px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -.045em;
}

.project-description {
  margin: 0;
  color: #607069;
  font-size: 14px;
  line-height: 1.65;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-tags li {
  padding: 6px 10px;
  border: 1px solid #d7e0dd;
  border-radius: 999px;
  color: #64746e;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .03em;
}

.store-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.store-badges a {
  display: block;
  border-radius: 7px;
  transition: transform .2s ease, opacity .2s ease;
}

.store-badges a:hover {
  opacity: .84;
  transform: translateY(-2px);
}

.store-badges img {
  width: auto;
  height: 40px;
}

.project-visit {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 15px;
  border: 1px solid #0a1713;
  border-radius: 8px;
  color: #0a1713;
  font-size: 11px;
  font-weight: 850;
  transition: background .2s ease, color .2s ease;
}

.project-visit:hover {
  background: #0a1713;
  color: var(--aqua);
}

.project-progress {
  height: 2px;
  overflow: hidden;
  margin-top: 5px;
  background: #d6e0dc;
}

.project-progress span {
  width: 20%;
  height: 100%;
  display: block;
  background: #078c74;
  transform-origin: left;
  transition: width .25s ease;
}

.about {
  overflow: hidden;
  background: #0b1815;
}

.about-glow {
  position: absolute;
  width: 680px;
  height: 680px;
  left: -250px;
  bottom: -300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(1,254,207,.09), transparent 68%);
}

.about-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 110px;
  align-items: center;
}

.about-mark {
  position: relative;
  min-height: 450px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(1,254,207,.09), transparent 60%),
    linear-gradient(rgba(255,255,255,.025), rgba(255,255,255,.01));
}

.about-mark::before,
.about-mark::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(1,254,207,.12);
  border-radius: 50%;
}

.about-mark::before {
  inset: 9%;
}

.about-mark::after {
  inset: 20%;
}

.about-mark img {
  position: relative;
  z-index: 2;
  width: 78%;
  height: auto;
  object-fit: contain;
  opacity: .92;
}

.about-lead {
  max-width: 690px;
  margin: 25px 0 36px;
  color: #b7c7c1;
  font-size: 18px;
}

.linked-product {
  min-width: 0;
  display: grid;
  grid-template-columns: auto 112px 1fr 34px;
  align-items: center;
  gap: 16px;
  margin: -12px 0 32px;
  padding: 14px 16px;
  border: 1px solid rgba(233,34,43,.22);
  border-radius: 12px;
  background: rgba(255,255,255,.96);
  color: #17181c;
  transition: border-color .2s ease, transform .2s ease;
}

.linked-product:hover {
  border-color: #e9222b;
  transform: translateY(-2px);
}

.linked-product > span {
  color: #b60c16;
  font: 800 8px/1.3 ui-monospace, monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.linked-product img {
  width: 112px;
  height: auto;
}

.linked-product p {
  min-width: 0;
  margin: 0;
  color: #66716d;
  font-size: 10px;
  line-height: 1.4;
}

.linked-product b {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #b60c16;
  color: #fff;
}

.about-values {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.about-values > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.about-values span {
  color: var(--aqua);
  font: 11px/1.8 ui-monospace, monospace;
}

.about-values p {
  margin: 0;
  color: var(--muted);
}

.about-values strong {
  color: var(--white);
}

.contact {
  padding-bottom: 80px;
  background: #f2f6f4;
  color: #0a1713;
}

.contact-shell {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  padding: 70px;
  border-radius: 28px;
  background: var(--ink-soft);
  color: var(--white);
  box-shadow: 0 30px 80px rgba(5, 25, 20, .13);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 470px;
  margin: 24px 0 36px;
  color: var(--muted);
}

.contact-direct {
  display: grid;
  gap: 12px;
}

.contact-direct a {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
}

.contact-direct small {
  display: block;
  color: #778b84;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--aqua);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #dce7e3;
  font-size: 12px;
  font-weight: 750;
}

.contact-form label > span {
  color: #788c84;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #101f1b;
  color: var(--white);
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input,
.contact-form select {
  height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 120px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #5f736b;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 3px rgba(1, 254, 207, .08);
}

.contact-form .check {
  display: flex;
  grid-template: none;
  align-items: flex-start;
  gap: 10px;
  color: #8ca098;
  font-size: 11px;
  font-weight: 500;
}

.check input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 1px;
  accent-color: var(--aqua);
}

.check a {
  color: var(--aqua);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit {
  width: 100%;
  justify-content: space-between;
}

.form-submit:disabled {
  opacity: .65;
  cursor: wait;
}

.form-status {
  min-height: 22px;
  margin: -5px 0 0;
  color: var(--aqua);
  font-size: 12px;
}

.form-status.is-error {
  color: #ff9d9d;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.site-footer {
  padding: 70px 0 28px;
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 40px;
  padding-bottom: 54px;
}

.footer-main > p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  transition: color .2s ease, border-color .2s ease;
}

.social-links a:hover {
  color: var(--aqua);
  border-color: var(--aqua);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #667a72;
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  gap: 22px;
}

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

.platform-credits {
  max-width: 940px;
  margin: 18px 0 0;
  color: #53665f;
  font-size: 9px;
  line-height: 1.5;
}

.mobile-contact {
  display: none;
}

.legal-page {
  background:
    radial-gradient(circle at 80% 0%, rgba(1,254,207,.08), transparent 35%),
    var(--ink);
}

.legal-main {
  min-height: 75vh;
  padding: 150px 0 100px;
}

.legal-wrap {
  width: min(calc(100% - 40px), 860px);
  margin-inline: auto;
}

.legal-header {
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.legal-header h1 {
  margin: 0;
  font-size: clamp(43px, 7vw, 72px);
  line-height: 1;
  letter-spacing: -.05em;
}

.legal-header > p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
}

.legal-content {
  padding-top: 42px;
  color: #b8c7c2;
}

.legal-content h2 {
  margin: 46px 0 12px;
  color: var(--white);
  font-size: 25px;
  letter-spacing: -.025em;
}

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

.legal-content p,
.legal-content li {
  max-width: 76ch;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.legal-content a {
  color: var(--aqua);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-note {
  margin-top: 35px;
  padding: 18px 20px;
  border: 1px solid rgba(1,254,207,.2);
  border-radius: 12px;
  background: rgba(1,254,207,.04);
}

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

.reveal.will-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}

.reveal.will-reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

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

@media (max-width: 1080px) {
  .main-nav {
    gap: 18px;
  }

  .hero-layout {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

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

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

  .process-layout,
  .about-layout {
    gap: 65px;
  }

  .contact-shell {
    gap: 50px;
    padding: 55px;
  }
}

@media (max-width: 860px) {
  .site-header {
    height: 72px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: rgba(255,255,255,.03);
  }

  .menu-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    display: block;
    background: var(--white);
    transition: transform .2s ease;
  }

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

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

  .main-nav {
    position: fixed;
    inset: 72px 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 35px 20px;
    background: rgba(7,17,15,.98);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .main-nav > a:not(.button) {
    padding: 17px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 20px;
  }

  .main-nav .button {
    margin-top: 24px;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-layout,
  .process-layout,
  .about-layout,
  .contact-shell {
    grid-template-columns: 1fr;
  }

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

  .process-intro {
    position: static;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .project-slide {
    min-height: 500px;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  }

  .project-copy {
    padding: 34px 28px 30px;
  }

  .preview-nav > span {
    display: none;
  }

  .preview-nav {
    grid-template-columns: 1fr 30px;
  }

  .about-mark {
    width: min(100%, 500px);
    min-height: auto;
    aspect-ratio: 1;
    margin-inline: auto;
  }

  .contact-shell {
    gap: 55px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand {
    font-size: 15px;
  }

  .brand img {
    width: 148px;
    height: auto;
  }

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

  .hero h1 {
    font-size: clamp(48px, 15vw, 70px);
  }

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

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

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

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

  .hero-proof {
    display: grid;
    gap: 8px;
  }

  .hero-visual {
    min-height: 420px;
    margin-top: 15px;
  }

  .code-window {
    width: calc(100% - 8px);
  }

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

  .window-bar > span:nth-child(2) {
    display: none;
  }

  .code-body {
    padding: 22px 15px;
    font-size: 10px;
  }

  .code-body b {
    width: 27px;
  }

  .metrics div {
    padding: 8px;
  }

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

  .orbit-two {
    width: 315px;
    height: 315px;
  }

  .tag-code {
    left: 0;
    bottom: 23px;
  }

  .tag-idea {
    right: 0;
    top: 5px;
  }

  .tech-strip {
    margin-top: 45px;
  }

  .section {
    padding: 88px 0;
  }

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

  .section-heading h2,
  .process h2,
  .about h2,
  .contact h2 {
    font-size: clamp(36px, 10vw, 48px);
    overflow-wrap: anywhere;
    text-wrap: wrap;
  }

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

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

  .project-carousel-top > p {
    max-width: 170px;
    font-size: 9px;
    line-height: 1.3;
  }

  .project-carousel-top {
    gap: 8px;
  }

  .project-controls {
    gap: 4px;
  }

  .project-count {
    min-width: 50px;
  }

  .project-controls button {
    width: 36px;
    height: 36px;
  }

  .project-rail {
    gap: 12px;
    padding-right: 34px;
  }

  .project-slide {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: 290px auto;
    flex-basis: calc(100% - 34px);
    border-radius: 18px;
  }

  .project-copy {
    min-height: 345px;
    gap: 21px;
    padding: 27px 22px 24px;
  }

  .project-copy h3 {
    font-size: 34px;
  }

  .mobile-showcase .app-screen {
    top: 7%;
    width: 25%;
    border-width: 4px;
    border-radius: 16px;
  }

  .mobile-showcase .app-screen-one {
    left: 28%;
  }

  .mobile-showcase .app-screen-two {
    left: 49%;
  }

  .mobile-showcase .app-screen-three {
    left: 70%;
  }

  .app-identity {
    left: 4%;
    bottom: 6%;
    display: block;
  }

  .app-identity > img {
    width: 49px;
    height: 49px;
    border-radius: 12px;
  }

  .app-identity strong {
    max-width: 100px;
    margin-top: 7px;
    font-size: 17px;
  }

  .app-identity small {
    margin-top: 5px;
    font-size: 7px;
  }

  .browser-showcase {
    grid-template-rows: 36px 1fr;
    padding: 14px 14px 0;
  }

  .browser-bar {
    grid-template-columns: 55px 1fr 55px;
    border-radius: 10px 10px 0 0;
  }

  .preview-nav {
    height: 45px;
    padding: 0 15px;
  }

  .tramap-preview {
    grid-template-rows: 48px 1fr;
  }

  .tramap-preview-nav {
    padding: 0 15px;
  }

  .tramap-preview-nav img {
    width: 92px;
  }

  .tramap-preview-nav > span {
    font-size: 6px;
  }

  .tramap-preview-media > span {
    left: 12px;
    bottom: 12px;
    padding: 9px 11px;
  }

  .tramap-preview-media b {
    font-size: 11px;
  }

  .tramap-preview-media small {
    font-size: 6px;
  }

  .project-tramap-logo {
    width: 170px;
    margin-bottom: 18px;
  }

  .project-cta-group {
    align-items: stretch;
    flex-direction: column;
    gap: 11px;
  }

  .project-cta-group .project-visit {
    width: 100%;
  }

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

  .preview-nav strong {
    font-size: 16px;
  }

  .preview-products {
    gap: 7px;
    padding: 11px 14px;
  }

  .preview-products i {
    min-height: 42px;
  }

  .opticas-preview-hero {
    min-height: calc(100% - 45px);
    padding: 12px 8px 12px 18px;
  }

  .opticas-preview-hero b {
    margin-top: 5px;
    font-size: 20px;
  }

  .opticas-preview-hero em {
    margin-top: 11px;
  }

  .project-arrow {
    right: 12px;
    top: 12px;
    width: 38px;
    height: 38px;
  }

  .project-progress span {
    width: 20%;
  }

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

  .about-layout {
    gap: 55px;
  }

  .linked-product {
    grid-template-columns: 1fr 34px;
    gap: 10px 14px;
    margin-top: -10px;
  }

  .linked-product > span {
    grid-column: 1 / -1;
  }

  .linked-product img {
    width: 126px;
  }

  .linked-product p {
    grid-column: 1 / -1;
  }

  .linked-product b {
    grid-column: 2;
    grid-row: 2;
  }

  .contact {
    padding-inline: 0;
  }

  .contact .container {
    width: 100%;
  }

  .contact-shell {
    padding: 52px 20px;
    border-radius: 0;
  }

  .contact-direct a {
    font-size: 13px;
  }

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

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

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

  .footer-bottom nav {
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .mobile-contact {
    position: fixed;
    z-index: 80;
    right: 12px;
    bottom: 12px;
    left: 12px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    border: 1px solid rgba(1,254,207,.8);
    border-radius: 10px;
    background: rgba(1,254,207,.94);
    color: var(--ink);
    font-size: 13px;
    font-weight: 850;
    box-shadow: 0 15px 40px rgba(0,0,0,.3);
    backdrop-filter: blur(12px);
  }

  .site-footer {
    padding-bottom: 90px;
  }

  .legal-main {
    padding: 120px 0 75px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

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