﻿@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&display=swap");

:root {
  --bg: #eef2f6;
  --surface: #ffffff;
  --surface-alt: #e6edf3;
  --ink: #14212b;
  --ink-muted: #3e5568;
  --line: #c9d4de;
  --brand: #0e6d92;
  --brand-strong: #093f57;
  --brand-soft: #d0e4f0;
  --accent: #116149;
  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 22px;
  --shadow-soft: 0 14px 30px rgba(20, 33, 43, 0.08);
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behaviour: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "IBM Plex Sans", "Segoe UI Variable Text", "Segoe UI", "Tahoma", sans-serif;
  line-height: 1.6;
  background: radial-gradient(circle at 8% -8%, #d7e7f3 0, transparent 42%),
    radial-gradient(circle at 100% 0%, #deece5 0, transparent 34%),
    var(--bg);
}

a {
  color: var(--brand-strong);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover,
a:focus-visible {
  color: var(--brand);
}

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

main {
  display: block;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 1000;
  background: #fff;
  color: #000;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-s);
}

.skip-link:focus {
  left: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(238, 242, 246, 0.9);
  border-bottom: 1px solid rgba(201, 212, 222, 0.8);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 650;
  letter-spacing: 0.01em;
}

.brand-mark__logo {
  height: clamp(30px, 2.25vw, 36px);
  width: auto;
  display: block;
}

.brand-mark__chip {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand-strong), var(--accent));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

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

.site-nav__toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-s);
  padding: 0.45rem 0.75rem;
  font: inherit;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.site-nav__list a {
  text-decoration: none;
  color: var(--ink-muted);
  font-size: 0.96rem;
  padding: 0.2rem 0.15rem;
  border-bottom: 2px solid transparent;
}

.site-nav__list a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--brand);
}

.hero {
  padding: clamp(3.2rem, 6vw, 5.2rem) 0 2.2rem;
}

.hero__panel {
  background: linear-gradient(165deg, #ffffff, #f7fafc 78%, #eef4f8 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.5rem, 3vw, 2.7rem);
}

.hero--home .hero__panel {
  background: linear-gradient(155deg, #0f2a39 0%, #17445c 52%, #1a5f7d 100%);
  border: 0;
  box-shadow: 0 24px 44px rgba(8, 30, 42, 0.34);
}

.hero--home h1,
.hero--home .lead {
  color: #f3f8fb;
}

.hero--home .lead {
  max-width: 60ch;
}

.hero--home .eyebrow {
  background: rgba(208, 228, 240, 0.2);
  color: #d5eaf6;
}

.hero--home .btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #f1f8fc;
}

.hero--overview .hero__panel {
  background: linear-gradient(160deg, #ffffff 0%, #f2f7fb 75%, #ecf3f8 100%);
}

.hero-overview {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.75fr 1fr;
}

.hero-side {
  border-left: 1px solid #c9dae5;
  padding-left: 1rem;
}

.hero-side h2 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.hero-side .list-clean li {
  margin-bottom: 0.45rem;
}

.hero--projects .hero__panel {
  background: linear-gradient(160deg, #f8fcff 0%, #ebf3f9 100%);
  border-left: 6px solid #7ea9c4;
}

.hero--about .hero__panel {
  background: linear-gradient(160deg, #fdfefe 0%, #edf5f1 100%);
  border-left: 6px solid #7fae95;
}

.hero--contact .hero__panel {
  background: linear-gradient(160deg, #ffffff 0%, #eef5fa 85%);
  border: 1px solid #bfd3e2;
}

.service-bugfix {
  --service-accent: #0d6f94;
  --service-soft: #d7ebf5;
}

.service-data-fix {
  --service-accent: #15725f;
  --service-soft: #d9eee8;
}

.service-feature-delivery {
  --service-accent: #5d6ea9;
  --service-soft: #e1e6f7;
}

.hero--service .hero__panel {
  border-top: 5px solid var(--service-accent, var(--brand));
  background: linear-gradient(160deg, #ffffff 0%, var(--service-soft, #edf4f9) 100%);
}

.hero-points {
  margin: 1rem 0 1.25rem;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0.38rem;
}

.hero-points li {
  color: #d9ebf7;
  font-size: 0.95rem;
}

.hero-points--pill {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.55rem;
}

.hero-points--pill li {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(212, 233, 245, 0.35);
  border-radius: 999px;
  padding: 0.38rem 0.72rem;
  color: #ecf7ff;
  font-size: 0.86rem;
  line-height: 1.35;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(1.95rem, 3.6vw, 3.2rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  margin-bottom: 0.7rem;
}

h3 {
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  margin-bottom: 0.55rem;
}

.lead {
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  color: var(--ink-muted);
  margin-bottom: 1.2rem;
  max-width: 67ch;
}

.hero__actions,
.inline-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.inline-actions--spaced {
  margin-top: 0.75rem;
}

.inline-actions--loose {
  margin-top: 1.1rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font-weight: 590;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(145deg, var(--brand), var(--brand-strong));
  color: #fff;
  box-shadow: 0 10px 20px rgba(12, 107, 143, 0.25);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  color: #fff;
}

.btn--ghost {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.section {
  padding: clamp(2.3rem, 5vw, 4rem) 0;
}

.section--tight {
  padding-top: 1.4rem;
}

.section--band {
  background: linear-gradient(180deg, #f6f9fc 0%, #edf3f8 100%);
  border-top: 1px solid #d7e1ea;
  border-bottom: 1px solid #d7e1ea;
}

.section--muted {
  background: #f7fafc;
}

.kicker {
  margin: 0 0 0.6rem;
  color: var(--brand-strong);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 650;
}

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

.grid--cards {
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 1.1rem;
  box-shadow: 0 8px 16px rgba(20, 33, 43, 0.05);
}

.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

.service-card h2 {
  font-size: clamp(1.25rem, 1.9vw, 1.9rem);
  margin-bottom: 0.5rem;
}

.page-services .service-card {
  border-top: 4px solid #8bb3cb;
}

.page-services .service-card:nth-child(2) {
  border-top-color: #79b7aa;
}

.page-services .service-card:nth-child(3) {
  border-top-color: #9badd0;
}

.page-service-detail .service-card {
  border-top: 4px solid var(--service-accent, #8bb3cb);
}

.card-outcome {
  margin-bottom: 0.9rem;
  color: #273f4f;
  line-height: 1.5;
}

.service-card__cta {
  margin-top: 0.85rem;
  margin-bottom: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  padding: 0.24rem 0.58rem;
  border-radius: 999px;
  border: 1px solid #b9cddd;
  background: #f6fafc;
  color: #17425b;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 560;
}

.service-link:hover,
.service-link:focus-visible {
  border-color: #87abc2;
  background: #ebf4fa;
  color: #0d3850;
}

.service-glance__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.service-glance__list li {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--service-accent, #6f98b2);
  background: var(--service-soft, #edf4f9);
  color: #234054;
  font-size: 0.84rem;
}

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

.list-clean li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.55rem;
}

.list-clean li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--brand), var(--accent));
}

.callout {
  border-left: 4px solid var(--brand);
  background: var(--surface-alt);
  border-radius: 0 var(--radius-m) var(--radius-m) 0;
  padding: 1rem;
}

.price-signal {
  font-weight: 600;
  color: var(--ink);
  background: linear-gradient(145deg, #fefefe, #f0f6fb);
  border: 1px dashed #9eb5c7;
  border-radius: var(--radius-s);
  padding: 0.7rem 0.9rem;
}

.pricing-block {
  background: linear-gradient(165deg, #f9fcfe, #f1f6fa 84%);
  border: 1px solid #cbdae6;
  border-radius: var(--radius-m);
  padding: 1rem;
}

.pricing-note {
  margin: 0.15rem 0 0.95rem;
  color: #3d5568;
  max-width: 66ch;
}

.fit-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.fit-panel {
  border-radius: var(--radius-m);
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--surface);
}

.fit-panel--bad {
  background: #fff8f8;
  border-color: #e6c8c8;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  font-size: 0.85rem;
  border-radius: 999px;
  background: #eff4f8;
  border: 1px solid #ccd8e2;
  color: #2b4457;
  padding: 0.2rem 0.65rem;
}

.steps {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.steps li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0.75rem;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 0.75rem 0.8rem;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(140deg, var(--brand), var(--accent));
}

.steps-flat {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
  max-width: 760px;
}

.steps-flat li {
  border-top: 2px solid #c9d8e4;
  padding-top: 0.8rem;
}

.steps-flat h3 {
  margin-bottom: 0.28rem;
  color: #193648;
}

.steps-flat p {
  margin: 0;
  color: #3f566a;
}

.proof-list {
  display: grid;
  gap: 0.95rem;
}

.proof-item {
  background: transparent;
  border-left: 4px solid #89aec5;
  padding: 0.25rem 0 0.25rem 1rem;
}

.proof-item h3 {
  margin-bottom: 0.3rem;
}

.proof-item p {
  margin: 0.15rem 0;
}

.proof-stack {
  display: grid;
  gap: 1rem;
}

.proof-case {
  position: relative;
  background: linear-gradient(155deg, #ffffff, #f4f8fb);
  border: 1px solid #c7d9e6;
  border-radius: var(--radius-m);
  padding: 1rem 1rem 1rem 1.25rem;
  box-shadow: 0 8px 16px rgba(20, 33, 43, 0.05);
}

.proof-case::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  border-radius: var(--radius-m) 0 0 var(--radius-m);
  background: linear-gradient(180deg, #7ea9c4, #5f8ca9);
}

.proof-case__header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 0.9rem;
  margin-bottom: 0.75rem;
}

.proof-case__header .btn {
  white-space: nowrap;
}

.proof-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.proof-meta span {
  border-radius: 999px;
  border: 1px solid #bdd0df;
  background: #f0f6fa;
  color: #21455c;
  font-size: 0.8rem;
  padding: 0.2rem 0.62rem;
}

.project-screenshot {
  margin: 0 0 0.95rem;
  border: 1px solid #bfd2df;
  border-radius: var(--radius-m);
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(20, 33, 43, 0.08);
}

.project-screenshot img {
  width: 100%;
  aspect-ratio: 1897 / 848;
  object-fit: cover;
  object-position: top left;
}

.project-screenshot figcaption {
  margin: 0;
  border-top: 1px solid #d8e3eb;
  padding: 0.55rem 0.75rem;
  color: #40576a;
  font-size: 0.88rem;
  background: #f7fafc;
}

.proof-triad {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 0.75rem;
}

.proof-triad__item {
  border: 1px solid #cad9e5;
  border-radius: var(--radius-s);
  background: #f8fbfd;
  padding: 0.72rem 0.75rem;
}

.proof-triad__item h3 {
  margin-bottom: 0.35rem;
  font-size: 1rem;
  color: #173e56;
}

.proof-triad__item p {
  margin: 0;
  color: #344f61;
  font-size: 0.93rem;
}

.proof-note {
  margin: 0;
  border-top: 1px solid #cbdae5;
  padding-top: 0.65rem;
  color: #3a5568;
  font-size: 0.92rem;
}

.proof-case--featured {
  background: linear-gradient(155deg, #ffffff 0%, #edf5fb 95%);
}

.proof-case--featured::before {
  background: linear-gradient(180deg, #5f8ca9, #376f91);
}

.proof-case--anonymised {
  background: linear-gradient(155deg, #ffffff 0%, #f5f9fb 100%);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: #fff;
}

table {
  border-collapse: collapse;
  width: 100%;
  min-width: 560px;
}

th,
td {
  text-align: left;
  padding: 0.75rem;
  border-bottom: 1px solid #e3ebf0;
}

th {
  color: #23465c;
  font-weight: 620;
  background: #f2f7fb;
}

.form {
  display: grid;
  gap: 0.9rem;
  max-width: 760px;
}

.form__row {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

label {
  font-weight: 560;
  font-size: 0.92rem;
  display: block;
  margin-bottom: 0.3rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #bccdda;
  border-radius: var(--radius-s);
  background: #fff;
  padding: 0.6rem 0.7rem;
  font: inherit;
  color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(17, 97, 73, 0.2);
  border-color: var(--accent);
}

textarea {
  resize: vertical;
  min-height: 130px;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  font-weight: 560;
  font-size: 0.92rem;
  margin-bottom: 0.3rem;
}

fieldset label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-right: 0.85rem;
  font-weight: 400;
}

fieldset input[type="radio"] {
  width: auto;
}

.form-status {
  border-radius: var(--radius-s);
  padding: 0.75rem;
  background: #fff9e4;
  border: 1px solid #e7d9a1;
  color: #6d5314;
}

.form-status--success {
  background: #eaf7ef;
  border-color: #b7ddc4;
  color: #1d6f3b;
}

.form + .form-status {
  margin-top: 0.9rem;
}

.is-hidden {
  display: none;
}

.block-spaced {
  margin-top: 1rem;
}

.contact-layout {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.55fr 1fr;
  align-items: start;
}

.contact-main {
  min-width: 0;
}

.contact-form {
  max-width: none;
}

.contact-side {
  display: grid;
  gap: 0.8rem;
}

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

.site-footer {
  border-top: 1px solid #d5e0e8;
  background: #edf3f7;
  margin-top: 2.3rem;
}

.site-footer__inner {
  padding: 0.95rem 0 1.15rem;
  font-size: 0.78rem;
  color: #5f7383;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 0.4rem 0;
  padding: 0;
  list-style: none;
}

.footer-meta {
  margin: 0.3rem 0;
}

.reveal {
  animation: riseIn 550ms ease both;
}

.reveal:nth-child(2) {
  animation-delay: 90ms;
}

.reveal:nth-child(3) {
  animation-delay: 170ms;
}

.reveal:nth-child(4) {
  animation-delay: 230ms;
}

@keyframes riseIn {
  from {
    transform: translateY(12px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (min-width: 1024px) {
  .page-standard .hero {
    padding: 1.72rem 0 0.6rem;
  }

  .page-standard .hero__panel {
    padding: 1.05rem 1.35rem;
  }

  .page-standard .section {
    padding: 1.28rem 0;
  }

  .page-standard .section--tight {
    padding-top: 0.22rem;
    padding-bottom: 0.82rem;
  }

  .page-standard .grid {
    gap: 0.82rem;
  }

  .page-standard .callout {
    padding: 0.9rem 1rem;
  }

  .page-standard .site-footer {
    margin-top: 1.08rem;
  }

  .page-services .hero {
    padding: 1.55rem 0 0.45rem;
  }

  .page-services .hero__panel {
    padding: 1rem 1.4rem;
  }

  .page-services .section {
    padding: 1.15rem 0;
  }

  .page-services .section--tight {
    padding-top: 0.15rem;
    padding-bottom: 0.8rem;
  }

  .page-services .section-services-cards {
    padding-top: 0.75rem;
  }

  .page-services .section-pricing {
    padding-top: 0.8rem;
    padding-bottom: 0.95rem;
  }

  .page-services .grid {
    gap: 0.72rem;
  }

  .page-services .card {
    padding: 0.9rem;
  }

  .page-services .price-signal {
    padding: 0.52rem 0.72rem;
    margin: 0;
  }

  .page-services .pricing-block {
    padding: 0.85rem 0.9rem;
  }

  .page-services .site-footer {
    margin-top: 0.95rem;
  }

  .page-service-detail .hero {
    padding-bottom: 0.4rem;
  }

  .page-service-detail .section {
    padding: 1rem 0;
  }

  .page-service-detail .fit-grid {
    gap: 0.72rem;
  }

  .page-service-detail .table-wrap {
    margin-top: 0.25rem;
  }

  .page-service-detail .section-pricing {
    padding-top: 0.78rem;
    padding-bottom: 0.9rem;
  }

  .page-service-detail .pricing-block {
    padding: 0.82rem 0.88rem;
  }

  .page-service-detail .section--band {
    padding-top: 0.82rem;
    padding-bottom: 0.92rem;
  }

  .page-projects .hero {
    padding-bottom: 0.42rem;
  }

  .page-projects .section {
    padding: 1.05rem 0;
  }

  .page-projects .section-project-feature {
    padding-top: 0.62rem;
    padding-bottom: 0.86rem;
  }

  .page-projects .proof-stack {
    gap: 0.8rem;
  }
}

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

  .hero-side {
    border-left: 0;
    border-top: 1px solid #c9dae5;
    padding-left: 0;
    padding-top: 0.9rem;
  }

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

  .proof-case__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .proof-case__header .btn {
    white-space: normal;
  }

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

  .site-nav__toggle {
    display: inline-flex;
  }

  .site-nav__list {
    position: absolute;
    top: 74px;
    right: 1.2rem;
    left: 1.2rem;
    flex-direction: column;
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-m);
    padding: 0.8rem;
    box-shadow: var(--shadow-soft);
    display: none;
  }

  .site-nav__list--open {
    display: flex;
  }

  .site-nav__list a {
    width: 100%;
    padding: 0.35rem 0;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 0.98rem;
  }

  .container {
    width: min(100% - 1.35rem, var(--container));
  }
}
