:root {
  --ink: #101521;
  --muted: #5f6b7b;
  --paper: #f6f8fb;
  --panel: #ffffff;
  --line: #dfe6ee;
  --blue: #1b8df0;
  --cyan: #26c9e8;
  --green: #27b681;
  --rose: #c45175;
  --shadow: 0 22px 70px rgba(20, 31, 48, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 12%, rgba(38, 201, 232, 0.16), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 48%, #eef4f8 100%);
  color: var(--ink);
  font-family:
    "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.header-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.mobile-menu {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 760;
  letter-spacing: 0;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(223, 230, 238, 0.86);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 8px 30px rgba(16, 21, 33, 0.07);
}

.site-nav a,
.site-nav summary {
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #334155;
  font-size: 0.92rem;
  font-weight: 670;
}

.site-nav summary {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

.site-nav summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 20;
  display: grid;
  min-width: 260px;
  padding: 8px;
  border: 1px solid rgba(223, 230, 238, 0.94);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 44px rgba(16, 21, 33, 0.14);
}

.nav-dropdown:not([open]) .nav-dropdown-menu {
  display: none;
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 6px;
  background: transparent;
  color: #334155;
  white-space: nowrap;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.nav-dropdown-menu .nav-dropdown-all {
  margin-top: 6px;
  border-top: 1px solid var(--line);
  border-radius: 0 0 6px 6px;
  color: var(--blue);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible,
.nav-dropdown-menu a:active {
  background: #101521;
  color: #ffffff;
  outline: none;
  transform: translateX(2px);
}

.nav-dropdown-menu .nav-dropdown-all:hover,
.nav-dropdown-menu .nav-dropdown-all:focus-visible,
.nav-dropdown-menu .nav-dropdown-all:active {
  background: var(--blue);
  color: #ffffff;
}

.action-dropdown {
  align-self: flex-start;
  display: inline-flex;
}

.action-dropdown summary {
  list-style: none;
}

.action-dropdown summary::-webkit-details-marker {
  display: none;
}

.action-dropdown .nav-dropdown-menu {
  min-width: 300px;
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.site-nav > .nav-dropdown > summary:hover,
.site-nav > .nav-dropdown > summary:focus-visible {
  background: #101521;
  color: #ffffff;
  outline: none;
}

.language-switcher {
  position: relative;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(196, 208, 222, 0.9);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 253, 0.86));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 28px rgba(16, 21, 33, 0.08);
}

.language-switcher a,
.language-switcher button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 34px;
  padding: 7px 11px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #334155;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.language-switcher a[aria-pressed="true"],
.language-switcher button[aria-pressed="true"] {
  background: linear-gradient(135deg, var(--ink), #263244);
  color: #ffffff;
  box-shadow: 0 7px 16px rgba(16, 21, 33, 0.2);
}

.language-switcher a:hover,
.language-switcher button:hover {
  color: var(--ink);
}

.language-switcher a[aria-pressed="true"]:hover,
.language-switcher button[aria-pressed="true"]:hover {
  color: #ffffff;
}

.language-switcher a:focus-visible,
.language-switcher button:focus-visible {
  outline: 2px solid rgba(27, 141, 240, 0.55);
  outline-offset: 2px;
}

main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  align-items: center;
  gap: clamp(22px, 4.2vw, 58px);
  min-height: calc(76svh - 90px);
  padding: 8px 0 24px;
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4.15vw, 3.65rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 720;
  cursor: pointer;
}

.button.primary {
  background: var(--ink);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(16, 21, 33, 0.2);
}

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

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

.hero-mark {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(48vw, 520px);
}

.hero-mark::before {
  position: absolute;
  inset: 8%;
  content: "";
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(27, 141, 240, 0.14), rgba(39, 182, 129, 0.14)),
    #ffffff;
  box-shadow: var(--shadow);
}

.hero-mark img {
  position: relative;
  width: min(88%, 430px);
  height: auto;
  filter: drop-shadow(0 24px 38px rgba(16, 21, 33, 0.18));
}

.hero-mark picture {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
}

.businesses {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  padding: 10px 0 80px;
}

.clients-heading {
  margin-bottom: -10px;
  padding-top: 42px;
}

.clients-heading h2 {
  margin: 0;
  color: #101521;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.business-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  min-height: 520px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(223, 230, 238, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 60px rgba(20, 31, 48, 0.09);
}

.business-panel.development {
  border-top: 5px solid var(--blue);
}

.business-panel.music {
  min-height: auto;
  border-top: 0;
  border-left: 5px solid var(--rose);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 34px rgba(20, 31, 48, 0.06);
}

.business-panel.founder-panel {
  min-height: auto;
  border-top: 5px solid var(--green);
}

.music-brand-block {
  display: flex;
  align-items: stretch;
}

.business-panel h2 {
  margin-bottom: 24px;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1;
  letter-spacing: 0;
}

.business-content {
  display: grid;
  gap: 0;
}

.business-panel p:not(.section-kicker) {
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.08rem;
}

.panel-services {
  display: grid;
  gap: 8px;
}

.panel-services article {
  padding: 0 0 0 14px;
  border-left: 3px solid rgba(27, 141, 240, 0.34);
}

.panel-services h3 {
  margin: 0 0 3px;
  color: #182234;
  font-size: 0.98rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.panel-services p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.tech-stack {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.tech-stack h3 {
  margin: 0;
  color: #172033;
  font-size: 1.08rem;
}

.tech-stack > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.tech-stack article {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(223, 230, 238, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.tech-stack-icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-right: 8px;
  border: 1px solid rgba(27, 141, 240, 0.16);
  border-radius: 8px;
  background: #eef7ff;
  color: var(--blue);
}

.tech-stack-icon.backend {
  border-color: rgba(39, 182, 129, 0.18);
  background: #eefaf5;
  color: var(--green);
}

.tech-stack-icon.devops {
  border-color: rgba(196, 81, 117, 0.18);
  background: #fff1f5;
  color: var(--rose);
}

.tech-stack-icon.ai {
  border-color: rgba(138, 74, 5, 0.16);
  background: #fff7df;
  color: #a16207;
}

.tech-stack-icon.databases {
  border-color: rgba(51, 65, 85, 0.16);
  background: #f1f5f9;
  color: #334155;
}

.tech-stack-icon.architecture {
  border-color: rgba(79, 70, 229, 0.16);
  background: #eef2ff;
  color: #4f46e5;
}

.tech-stack-icon.web3 {
  border-color: rgba(124, 58, 237, 0.16);
  background: #f3e8ff;
  color: #7c3aed;
}

.tech-stack-icon.testing {
  border-color: rgba(22, 163, 74, 0.16);
  background: #ecfdf3;
  color: #16a34a;
}

.tech-stack-icon.observability {
  border-color: rgba(14, 116, 144, 0.16);
  background: #ecfeff;
  color: #0e7490;
}

.tech-stack-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tech-stack article > span:last-child {
  display: grid;
  gap: 4px;
}

.tech-stack strong {
  color: #172033;
  font-size: 0.9rem;
}

.tech-stack em {
  color: var(--muted);
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.4;
}

.tech-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tech-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 4px 8px 4px 5px;
  border: 1px solid rgba(203, 213, 225, 0.9);
  border-radius: 999px;
  background: rgba(248, 251, 253, 0.86);
  color: #334155;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
}

.tech-chip i {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0;
}

.tech-stack-full {
  margin-top: 2px;
}

.tech-stack-full summary {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(203, 213, 225, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: #182234;
  font-size: 0.88rem;
  font-weight: 760;
  cursor: pointer;
}

.tech-stack-full-list {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.tech-stack-full-list article {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
}

.tech-stack-full-list span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.panel-link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: #182234;
  font: inherit;
  font-weight: 740;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(20, 31, 48, 0.08);
}

.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.music-brand-block .business-content {
  max-width: 900px;
}

.music-brand-block h2 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.music-brand-block p:not(.section-kicker) {
  max-width: 780px;
  margin-bottom: 22px;
}

.music-brand-block .panel-services article {
  border-left-color: rgba(196, 81, 117, 0.34);
}

.music-brand-block .panel-link {
  align-self: flex-start;
}

.founder-highlights article {
  border-left-color: rgba(39, 182, 129, 0.38);
}

.founder-mini-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
}

.founder-mini-profile img,
.founder-photo {
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(20, 31, 48, 0.16);
}

.founder-mini-profile img {
  flex: 0 0 auto;
  width: 78px;
  height: 78px;
}

.founder-mini-profile strong,
.founder-mini-profile span {
  display: block;
}

.founder-mini-profile strong {
  color: #172033;
  font-size: 1.05rem;
}

.founder-mini-profile span {
  color: var(--muted);
  font-weight: 650;
}

.founder-page {
  display: grid;
  gap: 34px;
  padding: 38px 0 86px;
}

.founder-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: stretch;
  gap: 24px;
}

.founder-hero > div {
  display: grid;
  align-content: center;
}

.founder-hero h1 {
  margin-bottom: 16px;
}

.founder-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.founder-card {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 10px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(223, 230, 238, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 60px rgba(20, 31, 48, 0.09);
}

.founder-avatar {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ink), #263244);
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 800;
}

.founder-photo {
  width: 148px;
  height: 148px;
}

.founder-card h2 {
  margin: 8px 0 0;
  font-size: 1.45rem;
}

.founder-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.panel-link:hover,
.panel-link:focus-visible {
  border-color: #b9c8d8;
  transform: translateY(-1px);
  outline: none;
}

body.modal-open {
  overflow: hidden;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  overflow-y: auto;
  padding: 16px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 21, 33, 0.58);
  backdrop-filter: blur(10px);
}

.feedback-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  overflow: visible;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(223, 230, 238, 0.92);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.feedback-dialog h2 {
  margin-bottom: 16px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.08;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: #263244;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover,
.modal-close:focus-visible {
  border-color: #b9c8d8;
  outline: none;
}

.feedback-form {
  display: grid;
  gap: 12px;
}

.feedback-form label {
  display: grid;
  gap: 5px;
  color: #263244;
  font-weight: 700;
}

.feedback-form input,
.feedback-form textarea {
  width: 100%;
  border: 1px solid #ccd7e3;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
}

.feedback-form input {
  min-height: 42px;
  padding: 10px 12px;
}

.feedback-form textarea {
  min-height: 112px;
  padding: 12px;
  resize: vertical;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(27, 141, 240, 0.12);
  outline: none;
}

.form-trap {
  position: absolute;
  left: -10000px;
}

.turnstile-field {
  display: flex;
  min-height: 64px;
}

.turnstile-field .cf-turnstile {
  width: min(100%, 300px);
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 0;
}

.form-actions .button {
  cursor: pointer;
}

.form-actions .button:disabled {
  cursor: wait;
  opacity: 0.64;
  transform: none;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer a {
  color: #263244;
  font-weight: 650;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--blue);
  outline: none;
}

.legal-page {
  max-width: 860px;
  padding: 38px 0 80px;
}

.back-link {
  justify-self: start;
  display: inline-flex;
  width: fit-content;
  margin-bottom: 26px;
  color: #263244;
  font-weight: 700;
}

.back-link::before {
  content: "←";
  margin-right: 8px;
}

.back-link:hover,
.back-link:focus-visible {
  color: var(--blue);
  outline: none;
}

.legal-page h1 {
  margin-bottom: 10px;
}

.legal-updated {
  margin-bottom: 36px;
  color: var(--muted);
  font-weight: 650;
}

.legal-content {
  display: grid;
  gap: 28px;
}

.legal-content h2 {
  margin-bottom: 10px;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
}

.legal-content p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 1.04rem;
}

.pricing-page {
  padding: 38px 0 86px;
}

.pricing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 22px;
}

.pricing-hero h1 {
  margin-bottom: 14px;
}

.pricing-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.pricing-note {
  max-width: 980px;
  margin-bottom: 34px;
  padding: 16px 18px;
  border: 1px solid rgba(27, 141, 240, 0.2);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: #334155;
}

.pricing-note strong {
  color: var(--ink);
}

.pricing-sections,
.pricing-page {
  display: grid;
  gap: 30px;
}

.pricing-block {
  display: grid;
  gap: 14px;
}

.pricing-block h2,
.pricing-card-list h2,
.pricing-advantages h2 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 2.5vw, 2.3rem);
  line-height: 1.08;
}

.pricing-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.pricing-heading-row p {
  max-width: 780px;
  margin: 8px 0 0;
  color: var(--muted);
}

.pricing-section-note {
  max-width: 980px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(223, 230, 238, 0.94);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 44px rgba(20, 31, 48, 0.07);
}

.pricing-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 0.96rem;
}

.pricing-table th,
.pricing-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.pricing-table th {
  background: #f1f6fb;
  color: #1c2a3a;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-table tr:last-child td {
  border-bottom: 0;
}

.pricing-table td:first-child {
  width: 58%;
}

.pricing-table.compact td:first-child {
  width: 44%;
}

.pricing-readiness-table td:first-child {
  width: 24%;
}

.pricing-readiness-table td:nth-child(2) {
  width: 52%;
  color: var(--muted);
}

.pricing-table strong {
  display: block;
  margin-bottom: 5px;
  color: #172033;
}

.pricing-table small {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.pricing-scope-details {
  margin-top: 12px;
}

.pricing-scope-details summary {
  cursor: pointer;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 800;
}

.pricing-scope-details > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.pricing-scope-details h3 {
  margin: 0 0 6px;
  color: #172033;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.pricing-scope-details ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.pricing-price {
  color: #172033;
  font-weight: 800;
  white-space: nowrap;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-badge.fixed {
  background: #e8f8ef;
  color: #166534;
}

.pricing-badge.tm {
  background: #e7f3fe;
  color: #075985;
}

.pricing-badge.ai {
  background: #fff4d6;
  color: #8a4a05;
}

.pricing-estimate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(27, 141, 240, 0.22);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 44px rgba(20, 31, 48, 0.07);
}

.pricing-estimate h2 {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.pricing-estimate p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
}

.pricing-card-list,
.pricing-advantages {
  display: grid;
  gap: 16px;
}

.pricing-card-list > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pricing-card-list article {
  padding: 20px;
  border: 1px solid rgba(223, 230, 238, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 34px rgba(20, 31, 48, 0.06);
}

.pricing-card-list h3 {
  margin: 0 0 9px;
  color: #172033;
  font-size: 1rem;
}

.pricing-card-list h3 span {
  display: block;
  margin-top: 5px;
  color: var(--blue);
  font-size: 0.95rem;
}

.pricing-card-list p {
  margin: 0;
  color: var(--muted);
}

.pricing-advantages ul {
  display: block;
  margin: 0;
  padding-left: 22px;
  list-style: disc;
}

.pricing-advantages li {
  padding: 0;
  color: #263244;
  font-weight: 650;
}

.pricing-advantages li + li {
  margin-top: 10px;
}

.service-page {
  display: grid;
  gap: 34px;
  padding: 38px 0 86px;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: stretch;
  gap: 24px;
}

.service-hero h1 {
  margin-bottom: 16px;
}

.service-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.service-price-card,
.service-panel,
.service-card-grid article {
  border: 1px solid rgba(223, 230, 238, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 44px rgba(20, 31, 48, 0.07);
}

.service-price-card {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 12px;
  padding: clamp(22px, 3vw, 30px);
  border-left: 4px solid var(--blue);
}

.service-price-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-price-card strong {
  color: #172033;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1;
}

.service-two-column,
.service-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-panel,
.service-card-grid article {
  padding: 22px;
}

.service-panel h2,
.service-section h2 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.08;
}

.service-pricing > h2 {
  margin-bottom: 0;
}

.service-pricing .pricing-block > h3,
.service-pricing .pricing-card-list > h3 {
  margin: 0;
  color: #172033;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.12;
}

.service-panel p:not(.section-kicker),
.service-card-grid p,
.service-process p {
  margin: 0;
  color: var(--muted);
}

.service-section {
  display: grid;
  gap: 16px;
}

.service-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card-grid.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card-grid h3 {
  margin: 0 0 8px;
  color: #172033;
  font-size: 1.02rem;
}

.service-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  counter-reset: service-step;
  list-style: none;
}

.service-process li {
  counter-increment: service-step;
  padding: 20px;
  border: 1px solid rgba(223, 230, 238, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.service-process li::before {
  content: counter(service-step, decimal-leading-zero);
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-weight: 800;
}

.service-process h3 {
  margin: 0 0 8px;
  color: #172033;
  font-size: 1rem;
}

.service-cta {
  margin-top: 6px;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    width: min(100% - 28px, 1180px);
  }

  .header-controls {
    width: 100%;
    justify-content: space-between;
  }

  main,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 18px;
    padding: 8px 0 24px;
  }

  .hero-copy {
    order: 1;
  }

  .hero-mark {
    order: 2;
    min-height: 190px;
  }

  .hero-mark img {
    width: min(54vw, 220px);
  }

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

  .business-panel {
    min-height: 420px;
  }

  .business-panel.music {
    min-height: auto;
  }

  .pricing-hero,
  .pricing-heading-row,
  .pricing-estimate,
  .founder-hero,
  .service-hero {
    align-items: flex-start;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .pricing-scope-details > div {
    grid-template-columns: 1fr;
  }

  .pricing-card-list > div,
  .service-two-column,
  .service-card-grid,
  .service-card-grid.compact,
  .service-process,
  .tech-stack > div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brand {
    gap: 10px;
    font-size: 0.98rem;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .header-controls {
    position: relative;
    align-items: center;
    flex-direction: row;
    gap: 8px;
  }

  .site-nav {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
    flex: 0 0 auto;
  }

  .mobile-menu summary {
    display: grid;
    place-items: center;
    width: 44px;
    height: 40px;
    border: 1px solid rgba(223, 230, 238, 0.9);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: #182234;
    cursor: pointer;
    list-style: none;
    box-shadow: 0 8px 24px rgba(16, 21, 33, 0.06);
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span,
  .mobile-menu summary span::before,
  .mobile-menu summary span::after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    content: "";
  }

  .mobile-menu summary span {
    position: relative;
  }

  .mobile-menu summary span::before,
  .mobile-menu summary span::after {
    position: absolute;
    left: 0;
  }

  .mobile-menu summary span::before {
    top: -6px;
  }

  .mobile-menu summary span::after {
    top: 6px;
  }

  .mobile-menu-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 50;
    display: grid;
    width: min(320px, calc(100vw - 28px));
    padding: 8px;
    border: 1px solid rgba(223, 230, 238, 0.94);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 44px rgba(16, 21, 33, 0.14);
  }

  .mobile-menu:not([open]) .mobile-menu-panel {
    display: none;
  }

  .mobile-menu-panel p {
    margin: 0;
    padding: 10px 12px 8px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .mobile-menu-panel a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 6px;
    color: #334155;
    font-weight: 720;
  }

  .mobile-menu-panel a:hover,
  .mobile-menu-panel a:focus-visible,
  .mobile-menu-panel a:active {
    background: #101521;
    color: #ffffff;
    outline: none;
  }

  .mobile-menu-panel .mobile-menu-all {
    margin: 6px 0;
    border-top: 1px solid var(--line);
    border-radius: 0 0 6px 6px;
    color: var(--blue);
  }

  .language-switcher {
    flex: 1 1 auto;
    width: auto;
    padding: 3px;
  }

  .language-switcher a,
  .language-switcher button {
    flex: 1;
    min-width: 0;
    min-height: 30px;
    padding: 5px 9px;
    font-size: 0.74rem;
  }

  h1 {
    font-size: clamp(1.82rem, 7.65vw, 2.28rem);
  }

  .hero {
    gap: 16px;
    padding-top: 4px;
  }

  .hero-copy > p:not(.eyebrow) {
    margin-bottom: 18px;
    font-size: 1.03rem;
  }

  .hero-mark {
    display: none;
  }

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

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .button.secondary {
    min-height: 42px;
    padding: 10px 14px;
    border-color: rgba(203, 213, 225, 0.72);
    background: rgba(255, 255, 255, 0.56);
    color: #334155;
    box-shadow: none;
    font-size: 0.94rem;
  }

  .panel-link {
    width: 100%;
  }

  .action-dropdown {
    width: 100%;
  }

  .action-dropdown summary {
    width: 100%;
  }

  .action-dropdown .nav-dropdown-menu {
    width: 100%;
    min-width: 0;
    padding: 8px;
    gap: 2px;
  }

  .action-dropdown .nav-dropdown-menu a {
    min-height: 48px;
    padding: 12px 16px;
    font-size: 0.96rem;
    line-height: 1.25;
    white-space: normal;
  }

  .panel-actions {
    width: 100%;
  }

  .businesses {
    gap: 16px;
    padding-bottom: 56px;
  }

  .business-panel {
    gap: 22px;
    min-height: auto;
    padding: 22px;
  }

  .form-actions {
    flex-direction: column-reverse;
  }

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