:root {
  --ink: #0b1220;
  --ink-soft: #334155;
  --muted: #64748b;
  --surface: #ffffff;
  --surface-alt: #f5f7fb;
  --surface-blue: #eef4ff;
  --brand: #2563eb;
  --brand-dark: #1d4ed8;
  --brand-soft: #dbeafe;
  --accent: #0f9f91;
  --accent-soft: #ccfbf1;
  --amber: #d97706;
  --line: #dbe3ef;
  --line-dark: rgba(255, 255, 255, 0.14);
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 20px 60px rgba(15, 23, 42, 0.12);
  --shadow-blue: 0 28px 80px rgba(37, 99, 235, 0.2);
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Space Grotesk", "Inter", sans-serif;
  --container: 1200px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --header-height: 76px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

ul,
ol {
  padding: 0;
}

::selection {
  color: #fff;
  background: var(--brand);
}

:focus-visible {
  outline: 3px solid #1d4ed8;
  outline-offset: 4px;
}

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

.section {
  padding: 112px 0;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-intro h2,
.split-intro h2,
.process-copy h2,
.contact-copy h2 {
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.07;
  letter-spacing: -0.045em;
}

.section-intro > p:last-child,
.split-intro > p,
.process-copy > p,
.contact-copy > p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: end;
  max-width: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--brand-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.eyebrow.light {
  color: #93c5fd;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 180ms var(--ease),
    box-shadow 180ms var(--ease),
    background-color 180ms var(--ease),
    border-color 180ms var(--ease);
}

.button svg,
.project-link svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--brand-dark);
  box-shadow: 0 12px 28px rgba(29, 78, 216, 0.22);
}

.button-primary:hover {
  background: #153fb3;
  box-shadow: 0 16px 36px rgba(29, 78, 216, 0.3);
}

.button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.button-secondary:hover {
  border-color: #94a3b8;
  background: #fff;
}

.button-light {
  color: var(--ink);
  background: #fff;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 11px 16px;
  color: #fff;
  border-radius: 8px;
  background: var(--brand-dark);
  transform: translateY(-160%);
  transition: transform 150ms ease;
}

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

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

/* Header and navigation */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition:
    background-color 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.site-header.scrolled {
  border-color: rgba(219, 227, 239, 0.82);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-size: 1.26rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--brand-dark), #3b82f6);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.24);
}

.brand-name > span {
  color: var(--brand);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  list-style: none;
}

.nav-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: var(--ink-soft);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 160ms ease, background-color 160ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-dark);
  background: var(--surface-blue);
}

.nav-link.nav-cta {
  min-height: 44px;
  margin-left: 8px;
  padding-inline: 20px;
  color: #fff;
  background: var(--ink);
}

.nav-link.nav-cta:hover,
.nav-link.nav-cta.active {
  color: #fff;
  background: var(--brand-dark);
}

.nav-toggle {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle span {
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 80px) 0 90px;
  background:
    linear-gradient(180deg, #f8fbff 0%, #fff 74%),
    #fff;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.1) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: linear-gradient(to right, #000, transparent 70%);
  mask-image: linear-gradient(to right, #000, transparent 70%);
}

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

.hero-orb-one {
  width: 520px;
  height: 520px;
  top: -200px;
  right: -170px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.17), rgba(37, 99, 235, 0));
}

.hero-orb-two {
  width: 400px;
  height: 400px;
  bottom: -190px;
  left: 18%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.12), rgba(20, 184, 166, 0));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, 0.96fr);
  gap: clamp(54px, 7vw, 100px);
  align-items: center;
}

.hero-copy h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 6.8vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.hero-copy h1 > span {
  display: block;
  color: var(--brand-dark);
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 1.5vw, 1.22rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-trust span {
  position: relative;
  padding-left: 16px;
}

.hero-trust span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

.hero-showcase {
  position: relative;
}

.showcase-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-blue);
  transform: rotate(1.5deg);
}

.window-bar,
.project-browser-bar {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
}

.window-bar > span,
.project-browser-bar > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cbd5e1;
}

.window-bar > span:first-child,
.project-browser-bar > span:first-child {
  background: #fb7185;
}

.window-bar > span:nth-child(2),
.project-browser-bar > span:nth-child(2) {
  background: #fbbf24;
}

.window-bar > span:nth-child(3),
.project-browser-bar > span:nth-child(3) {
  background: #34d399;
}

.window-bar p,
.project-browser-bar p {
  margin: 0 auto;
  padding-right: 36px;
  color: #94a3b8;
  font-size: 0.7rem;
  font-weight: 600;
}

.window-body {
  padding: 28px;
}

.delivery-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.delivery-heading p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.delivery-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: -0.04em;
}

.live-badge,
.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #047857;
  font-size: 0.72rem;
  font-weight: 700;
}

.live-badge {
  padding: 7px 10px;
  border-radius: 999px;
  background: #ecfdf5;
}

.live-badge i,
.live-dot i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.delivery-track {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: start;
  margin: 42px 0 38px;
}

.track-item {
  text-align: center;
}

.track-item span {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  margin: 0 auto 8px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  font-size: 0.68rem;
  font-weight: 700;
}

.track-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
}

.track-item.complete span {
  color: #047857;
  border-color: #a7f3d0;
  background: #ecfdf5;
}

.track-item.active span {
  color: #fff;
  border-color: var(--brand);
  background: var(--brand);
  box-shadow: 0 0 0 5px var(--brand-soft);
}

.track-item.active p {
  color: var(--brand-dark);
}

.track-line {
  height: 2px;
  margin-top: 18px;
  background: var(--line);
}

.track-line.complete {
  background: #6ee7b7;
}

.track-line.active {
  background: linear-gradient(to right, #6ee7b7, var(--brand));
}

.showcase-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.showcase-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.showcase-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
}

.showcase-icon.blue {
  color: var(--brand-dark);
  background: var(--brand-soft);
}

.showcase-icon.mint {
  color: #047857;
  background: var(--accent-soft);
}

.showcase-icon svg,
.service-icon svg,
.contact-icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.showcase-card strong {
  display: block;
  font-size: 0.8rem;
}

.showcase-card p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.35;
}

.floating-note {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--ink-soft);
  border: 1px solid rgba(219, 227, 239, 0.8);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
  font-size: 0.75rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.floating-note span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 10px;
  background: var(--brand);
  font-family: var(--font-display);
  font-size: 1rem;
}

.note-one {
  right: -38px;
  bottom: 86px;
}

.note-two {
  bottom: -36px;
  left: -38px;
}

/* Proof */
.proof-strip {
  border-block: 1px solid var(--line);
  background: #fff;
}

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

.proof-grid > div {
  min-height: 128px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

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

.proof-grid strong {
  color: var(--brand-dark);
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: -0.05em;
}

.proof-grid span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.45;
}

/* About */
.about {
  background: var(--surface);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.principle-card {
  min-height: 330px;
  padding: 36px;
  border-right: 1px solid var(--line);
  background: #fff;
  transition: background-color 220ms ease, transform 220ms var(--ease);
}

.principle-card:last-child {
  border-right: 0;
}

.principle-card:hover {
  background: var(--surface-alt);
}

.principle-card > span {
  display: block;
  margin-bottom: 74px;
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
}

.principle-card h3 {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.principle-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Services */
.services {
  background: var(--surface-alt);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 390px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms ease;
}

.service-card:hover {
  border-color: #b9c9df;
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.service-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 54px;
}

.service-number {
  color: #94a3b8;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--brand-dark);
  border-radius: 16px;
  background: var(--surface-blue);
}

.service-icon svg {
  width: 25px;
}

.service-card h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: -0.04em;
}

.service-card > p {
  max-width: 540px;
  margin-bottom: 24px;
  color: var(--muted);
}

.service-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* Portfolio */
.portfolio {
  color: #fff;
  background: var(--ink);
}

.portfolio .section-intro > p,
.portfolio .split-intro > p {
  color: #a8b3c5;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.project-card {
  overflow: hidden;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}

.project-card:hover {
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  transform: translateY(-6px);
}

.project-featured {
  grid-column: span 2;
}

.project-compact {
  grid-column: span 2;
}

.project-visual {
  padding: 28px 28px 0;
  background: #dceaff;
}

.project-chamber .project-visual {
  background: #d9f7ef;
}

.project-browser {
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 16px 16px 0 0;
  background: #fff;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.15);
}

.project-browser-bar {
  height: 36px;
  padding-inline: 13px;
}

.project-browser-bar > span {
  width: 7px;
  height: 7px;
}

.project-browser-bar p {
  padding-right: 28px;
  font-size: 0.58rem;
}

.project-screen {
  position: relative;
  height: 255px;
  overflow: hidden;
}

.restaurant-screen {
  display: grid;
  grid-template-columns: 52px 1fr;
  background: #f8fafc;
}

.screen-sidebar {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 17px;
  padding: 16px 10px;
  color: #fff;
  background: #172554;
}

.screen-sidebar strong {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  border-radius: 8px;
  background: #2563eb;
  font-family: var(--font-display);
  font-size: 0.75rem;
}

.screen-sidebar i {
  width: 19px;
  height: 5px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.25);
}

.screen-content {
  padding: 24px;
}

.screen-content > span,
.chamber-screen > span {
  color: var(--brand);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.screen-content h3,
.chamber-screen h3 {
  margin: 7px 0 18px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.screen-chart {
  height: 74px;
  border-radius: 10px;
  background:
    linear-gradient(150deg, transparent 46%, rgba(37, 99, 235, 0.85) 47%, rgba(37, 99, 235, 0.85) 50%, transparent 51%),
    linear-gradient(25deg, transparent 38%, rgba(15, 159, 145, 0.55) 39%, rgba(15, 159, 145, 0.55) 42%, transparent 43%),
    repeating-linear-gradient(to bottom, #eef2f7, #eef2f7 1px, transparent 1px, transparent 24px);
}

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

.screen-stats i {
  height: 35px;
  border-radius: 8px;
  background: #e2e8f0;
}

.screen-stats i:first-child {
  background: #dbeafe;
}

.screen-stats i:nth-child(2) {
  background: #ccfbf1;
}

.chamber-screen {
  padding: 25px 30px;
  background: linear-gradient(145deg, #f0fdfa, #fff);
}

.medical-mark {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 12px;
  background: var(--accent);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.chamber-screen > span {
  color: #047857;
}

.appointment-row {
  display: grid;
  grid-template-columns: 30px 1fr 42px;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid #d8eee8;
  border-radius: 10px;
  background: #fff;
}

.appointment-row > i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ccfbf1;
}

.appointment-row div {
  display: grid;
  gap: 5px;
}

.appointment-row b,
.appointment-row small {
  height: 5px;
  display: block;
  border-radius: 4px;
  background: #94a3b8;
}

.appointment-row small {
  width: 65%;
  background: #dbe3ef;
}

.appointment-row em {
  height: 19px;
  border-radius: 999px;
  background: #d1fae5;
}

.project-copy {
  padding: 28px;
}

.project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-copy > h3 {
  margin-bottom: 11px;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.project-copy > p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.project-tags,
.team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.project-tags {
  margin-bottom: 24px;
}

.project-tags span,
.team-skills span {
  padding: 6px 10px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-alt);
  font-size: 0.68rem;
  font-weight: 600;
}

.project-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brand-dark);
  font-size: 0.86rem;
  font-weight: 700;
}

.project-link svg {
  transition: transform 160ms ease;
}

.project-link:hover svg {
  transform: translate(3px, -3px);
}

.compact-visual {
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}

.bites-visual {
  color: #431407;
  background:
    radial-gradient(circle at 22% 25%, rgba(255, 255, 255, 0.85) 0 7%, transparent 8%),
    radial-gradient(circle at 78% 70%, rgba(255, 255, 255, 0.55) 0 9%, transparent 10%),
    linear-gradient(145deg, #fed7aa, #fde68a);
}

.bites-visual span,
.bites-visual strong {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 0.85;
  letter-spacing: -0.08em;
}

.bites-visual strong {
  color: #c2410c;
}

.bites-visual i {
  margin-top: 20px;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.car-visual {
  color: #fff;
  background:
    linear-gradient(rgba(15, 23, 42, 0.25), rgba(15, 23, 42, 0.25)),
    linear-gradient(145deg, #334155, #0f172a);
}

.car-shape {
  position: relative;
  width: 150px;
  height: 50px;
  margin-bottom: 24px;
  border-radius: 28px 38px 12px 12px;
  background: linear-gradient(135deg, #60a5fa, #1d4ed8);
  transform: skewX(-5deg);
}

.car-shape::before {
  content: "";
  position: absolute;
  top: -27px;
  left: 38px;
  width: 75px;
  height: 34px;
  border-radius: 30px 36px 0 0;
  background: #3b82f6;
  clip-path: polygon(22% 0, 76% 0, 100% 100%, 0 100%);
}

.car-shape b {
  position: absolute;
  bottom: -11px;
  width: 25px;
  height: 25px;
  border: 6px solid #94a3b8;
  border-radius: 50%;
  background: #0f172a;
}

.car-shape b:first-of-type {
  left: 24px;
}

.car-shape b:last-of-type {
  right: 24px;
}

.car-visual > strong,
.mobile-visual strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.car-visual > span,
.mobile-visual span {
  margin-top: 4px;
  color: #cbd5e1;
  font-size: 0.68rem;
  font-weight: 600;
}

.mobile-visual {
  display: grid;
  grid-template-columns: auto auto;
  gap: 22px;
  color: #fff;
  background: linear-gradient(145deg, #2563eb, #172554);
}

.eib-visual {
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 20%, rgba(147, 197, 253, 0.42), transparent 30%),
    linear-gradient(145deg, #0f766e, #0f172a);
}

.eib-mark {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.3);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.eib-visual > strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: -0.05em;
}

.eib-visual > span {
  margin-top: 4px;
  color: #cbd5e1;
  font-size: 0.68rem;
  font-weight: 600;
}

.phone-shape {
  position: relative;
  width: 68px;
  height: 126px;
  padding: 7px;
  border: 4px solid #dbeafe;
  border-radius: 17px;
  transform: rotate(-7deg);
}

.phone-shape > span {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  border-radius: 9px;
  background: linear-gradient(160deg, #99f6e4, #60a5fa);
}

.project-compact .project-copy {
  padding: 24px;
}

.project-compact .project-copy > h3 {
  font-size: 1.65rem;
}

/* Team */
.team {
  background: #fff;
}

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

.team-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.team-avatar {
  position: relative;
  height: 250px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.team-avatar::before,
.team-avatar::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.team-avatar::before {
  width: 230px;
  height: 230px;
  right: -80px;
  bottom: -95px;
  border: 34px solid rgba(255, 255, 255, 0.25);
}

.team-avatar::after {
  width: 100px;
  height: 100px;
  top: 24px;
  left: 30px;
  border: 18px solid rgba(255, 255, 255, 0.18);
}

.avatar-blue {
  background: linear-gradient(145deg, #bfdbfe, #60a5fa);
}

.avatar-mint {
  background: linear-gradient(145deg, #ccfbf1, #5eead4);
}

.avatar-amber {
  background: linear-gradient(145deg, #fef3c7, #fbbf24);
}

.team-avatar > span {
  position: relative;
  z-index: 1;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 36px;
  background: rgba(11, 18, 32, 0.86);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.24);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  transform: rotate(-3deg);
}

.team-copy {
  padding: 28px;
}

.team-index {
  margin-bottom: 18px;
  color: var(--brand-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-copy h3 {
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.team-role {
  margin-bottom: 17px;
  color: var(--brand-dark);
  font-size: 0.86rem;
  font-weight: 700;
}

.team-bio {
  margin-bottom: 21px;
  color: var(--muted);
  font-size: 0.88rem;
}

/* Process */
.process {
  color: #fff;
  background: var(--ink);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: start;
}

.process-copy {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.process-copy > p {
  color: #a8b3c5;
}

.process-copy .button {
  margin-top: 12px;
}

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

.process-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-top: 1px solid var(--line-dark);
}

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

.process-list li > span {
  color: #93c5fd;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
}

.process-list h3 {
  margin-bottom: 7px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.process-list p {
  margin: 0;
  color: #a8b3c5;
  font-size: 0.9rem;
}

/* Contact */
.contact {
  padding: 100px 0;
  background: var(--surface-alt);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(48px, 7vw, 90px);
  padding: clamp(38px, 6vw, 74px);
  color: #fff;
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 14%, rgba(37, 99, 235, 0.28), transparent 31%),
    var(--ink);
  box-shadow: var(--shadow-md);
}

.contact-copy > p {
  color: #a8b3c5;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin: 34px 0 30px;
  font-style: normal;
}

.contact-details > a,
.contact-details > div {
  min-height: 60px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #e2e8f0;
}

.contact-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #bfdbfe;
  border: 1px solid var(--line-dark);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-details small {
  display: block;
  color: #94a3b8;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.5;
  text-transform: uppercase;
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.contact-socials a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.contact-socials a:hover {
  border-color: rgba(147, 197, 253, 0.45);
  background: rgba(37, 99, 235, 0.2);
}

.contact-form-card {
  padding: clamp(26px, 4vw, 40px);
  color: var(--ink);
  border-radius: 24px;
  background: #fff;
}

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

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

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  color: var(--ink);
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

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

.form-field textarea {
  min-height: 138px;
  padding: 13px 14px;
  line-height: 1.55;
  resize: vertical;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: #94a3b8;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--brand);
  outline: 0;
  box-shadow: 0 0 0 4px var(--brand-soft);
}

.form-field textarea::placeholder {
  color: #94a3b8;
}

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

.form-note,
.form-status {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 0.71rem;
  line-height: 1.45;
  text-align: center;
}

.form-status {
  min-height: 1.2em;
  color: var(--brand-dark);
  font-weight: 700;
}

/* Footer */
.footer {
  color: #dbe3ef;
  background: #070c16;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 0.8fr);
  gap: 60px;
  padding-block: 72px;
}

.footer .brand-name {
  color: #fff;
}

.footer-brand > p {
  max-width: 330px;
  margin: 20px 0 0;
  color: #8f9bad;
  font-size: 0.88rem;
}

.footer-nav {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
}

.footer-nav h2 {
  margin-bottom: 10px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.footer-nav a,
.footer-nav p {
  margin: 0;
  color: #8f9bad;
  font-size: 0.8rem;
  line-height: 1.8;
  transition: color 150ms ease;
}

.footer-nav a {
  min-height: 30px;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-bottom {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line-dark);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: #718096;
  font-size: 0.75rem;
}

.footer-bottom a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

/* Reveal */
.has-js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 600ms var(--ease),
    transform 600ms var(--ease);
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
    gap: 48px;
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 7vw, 5.4rem);
  }

  .note-one {
    right: -14px;
  }

  .note-two {
    left: -14px;
  }

  .footer-grid {
    gap: 36px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 70px;
  }

  .section {
    padding: 88px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    right: 24px;
    left: 24px;
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      visibility 180ms ease,
      transform 180ms ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-link,
  .nav-link.nav-cta {
    width: 100%;
    min-height: 48px;
    justify-content: flex-start;
    margin: 0;
    padding-inline: 16px;
    border-radius: 12px;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 70px) 0 100px;
  }

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

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

  .hero-showcase {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-grid > div:nth-child(2) {
    border-right: 0;
  }

  .proof-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .split-intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .principle-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principle-card:last-child {
    border-bottom: 0;
  }

  .principle-card > span {
    margin-bottom: 40px;
  }

  .project-featured {
    grid-column: span 6;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  }

  .project-featured .project-visual {
    display: flex;
    align-items: center;
    padding: 24px 0 24px 24px;
  }

  .project-featured .project-browser {
    width: 100%;
    border-radius: 16px;
  }

  .project-compact {
    grid-column: span 3;
  }

  .project-compact:last-child {
    grid-column: span 3;
  }

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

  .team-card:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) 1.2fr;
  }

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

  .process-copy {
    position: static;
    max-width: 700px;
  }

  .contact-shell {
    gap: 54px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }

  .footer-contact {
    grid-column: 2;
  }
}

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

  .section {
    padding: 72px 0;
  }

  .section-intro {
    margin-bottom: 36px;
  }

  .section-intro h2,
  .split-intro h2,
  .process-copy h2,
  .contact-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero {
    padding: calc(var(--header-height) + 48px) 0 78px;
  }

  .hero::before {
    -webkit-mask-image: linear-gradient(to bottom, #000, transparent 72%);
    mask-image: linear-gradient(to bottom, #000, transparent 72%);
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

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

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

  .hero-trust {
    display: grid;
    gap: 9px;
  }

  .showcase-window {
    transform: none;
  }

  .window-body {
    padding: 20px;
  }

  .delivery-track {
    margin: 32px 0;
  }

  .track-item p {
    display: none;
  }

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

  .floating-note {
    position: static;
    width: max-content;
    max-width: 100%;
    margin-top: 12px;
  }

  .note-two {
    margin-left: auto;
  }

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

  .proof-grid > div {
    min-height: 96px;
    padding: 22px 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-grid > div:last-child {
    border-bottom: 0;
  }

  .principle-card,
  .service-card {
    padding: 26px;
  }

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

  .service-card {
    min-height: auto;
  }

  .service-top {
    margin-bottom: 38px;
  }

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

  .project-featured,
  .project-compact,
  .project-compact:last-child {
    grid-column: 1;
    display: block;
  }

  .project-featured .project-visual {
    display: block;
    padding: 18px 18px 0;
  }

  .project-featured .project-browser {
    border-radius: 14px 14px 0 0;
  }

  .project-screen {
    height: 220px;
  }

  .compact-visual {
    height: 210px;
  }

  .project-copy {
    padding: 24px;
  }

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

  .team-card:last-child {
    grid-column: auto;
    display: block;
  }

  .team-avatar {
    height: 220px;
  }

  .process-grid {
    gap: 44px;
  }

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

  .contact {
    padding: 48px 0;
  }

  .contact-shell {
    width: calc(100% - 20px);
    padding: 30px 20px 20px;
    border-radius: 26px;
  }

  .contact-details > a,
  .contact-details > div {
    align-items: flex-start;
  }

  .contact-form-card {
    padding: 24px 18px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
    padding-block: 56px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    min-height: 100px;
  }
}

@media (max-width: 420px) {
  .nav-menu {
    right: 16px;
    left: 16px;
  }

  .hero-copy h1 {
    font-size: 2.85rem;
  }

  .delivery-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .contact-socials a {
    justify-content: center;
  }
}

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

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

  .has-js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (forced-colors: active) {
  .button,
  .nav-link,
  .project-card,
  .team-card,
  .service-card {
    border: 1px solid CanvasText;
  }

  .live-badge i,
  .live-dot i,
  .hero-trust span::before {
    forced-color-adjust: none;
  }
}

.portfolio :focus-visible,
.process :focus-visible,
.contact-shell :focus-visible,
.footer :focus-visible {
  outline-color: #ffffff;
}
