@charset "UTF-8";
:root {
  --bg: #0a0a09;
  --bg-elevated: #121210;
  --bg-card: #161614;
  --bg-card-hover:#1c1c19;
  --fg: #f0ebe3;
  --fg-muted: rgba(240, 235, 227, 0.62);
  --fg-subtle: rgba(240, 235, 227, 0.38);
  --acc: #ef9f27;
  --acc-hover: #fac775;
  --acc-muted: rgba(239, 159, 39, 0.12);
  --acc-glow: rgba(239, 159, 39, 0.22);
  --border: rgba(255, 255, 255, 0.07);
  --border-strong:rgba(255, 255, 255, 0.12);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 60px rgba(239, 159, 39, 0.08);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-full: 999px;
  --container: 1120px;
  --section-y: clamp(4rem, 8vw, 6.5rem);
  --nav-h: 64px;
  --bg2: var(--bg-elevated);
  --bg3: var(--bg-card);
  --fg2: var(--fg-muted);
  --fg3: var(--fg-subtle);
  --acc2: var(--acc-hover);
  --brd: var(--border);
  --brd2: var(--border-strong);
  --tag-bg: rgba(255, 255, 255, 0.04);
}

[data-theme=light] {
  --bg: #f8f6f1;
  --bg-elevated: #f0ece4;
  --bg-card: #ffffff;
  --bg-card-hover:#faf8f4;
  --fg: #141412;
  --fg-muted: rgba(20, 20, 18, 0.65);
  --fg-subtle: rgba(20, 20, 18, 0.42);
  --acc: #b8720f;
  --acc-hover: #d4891a;
  --acc-muted: rgba(184, 114, 15, 0.1);
  --acc-glow: rgba(184, 114, 15, 0.15);
  --border: rgba(0, 0, 0, 0.08);
  --border-strong:rgba(0, 0, 0, 0.14);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 48px rgba(184, 114, 15, 0.06);
  --tag-bg: rgba(0, 0, 0, 0.04);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 1rem);
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  overflow-x: hidden;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

::selection {
  background: var(--acc-muted);
  color: var(--fg);
}

:focus-visible {
  outline: 2px solid var(--acc);
  outline-offset: 2px;
}

.section-label,
.section-tag {
  display: inline-flex;
  align-items: center;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-label {
  color: var(--fg-subtle);
}

.section-tag {
  color: var(--acc);
  padding: 0.35rem 0.75rem;
  background: var(--acc-muted);
  border: 1px solid rgba(239, 159, 39, 0.2);
  border-radius: var(--radius-full);
}

.section-head {
  margin-bottom: 2.5rem;
  max-width: 36rem;
}
.section-head .section-title {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
.section-head .section-desc {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(1.25rem, 4vw, 2rem);
  padding-right: clamp(1.25rem, 4vw, 2rem);
}

.section {
  position: relative;
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  border-bottom: 1px solid var(--border);
}
.section:last-child {
  border-bottom: none;
}

.hero {
  position: relative;
  isolation: isolate;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: min(560px, 80vw);
  height: min(560px, 80vw);
  background: radial-gradient(circle, var(--acc-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
}
.hero-title {
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 22ch;
  margin-bottom: 1.25rem;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--acc) 0%, var(--acc-hover) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 40rem;
  margin-bottom: 2rem;
}
.hero-offers {
  margin-bottom: 2rem;
}
.hero-offers .hero-offer:hover {
  transform: none;
  box-shadow: none;
}
.hero-offers .service-card__title {
  font-size: 1rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-meta > div {
  min-width: 100px;
}
.hero-meta dt {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: 0.25rem;
}
.hero-meta dd {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
}

.page-hero {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.page-hero-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0.5rem 0 0.75rem;
}
.page-hero-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 32rem;
  line-height: 1.65;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), background 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav.is-scrolled {
  box-shadow: var(--shadow-sm);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--fg-muted);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1), background 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links a:hover {
  color: var(--fg);
  background: var(--tag-bg);
}
.nav-links a.nav-cta {
  color: var(--bg);
  background: var(--acc);
  margin-left: 0.25rem;
}
.nav-links a.nav-cta:hover {
  background: var(--acc-hover);
  color: var(--bg);
}
.nav-controls {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem;
  background: var(--tag-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
}

.logo {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--acc);
  transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.logo:hover {
  opacity: 0.85;
}

.theme-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  font-size: 1rem;
  color: var(--fg-muted);
  transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.theme-btn:hover {
  background: var(--bg-card);
  color: var(--fg);
}

.lang-switch {
  display: flex;
  padding: 2px;
  gap: 2px;
}

.lang-btn {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--fg-subtle);
  padding: 0.35rem 0.55rem;
  border-radius: var(--radius-full);
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1), background 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.lang-btn:hover {
  color: var(--fg-muted);
}
.lang-btn.active {
  color: var(--fg);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--fg);
  font-size: 1.25rem;
  line-height: 1;
}

.footer {
  padding: 2rem clamp(1.25rem, 4vw, 2rem);
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}
.footer .footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-brand {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--acc);
}
.footer-copy, .footer-remote {
  font-size: 0.75rem;
  color: var(--fg-subtle);
  letter-spacing: 0.04em;
}
.footer-links {
  display: flex;
  gap: 1.25rem;
}
.footer-links a {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-links a:hover {
  color: var(--acc);
}

.stack-section .stack-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .cases-grid {
    gap: 1.5rem;
  }
}

.app-section .app-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .app-section .app-inner {
    grid-template-columns: 1fr auto;
    gap: 3rem;
  }
}
.app-section .app-visual {
  position: relative;
  background: linear-gradient(145deg, var(--acc-muted) 0%, transparent 60%);
  border: 1px solid rgba(239, 159, 39, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  min-width: 200px;
}
.app-section .app-visual::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(239, 159, 39, 0.25);
  border-radius: calc(var(--radius-lg) - 4px);
  pointer-events: none;
}
.app-section .app-visual-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  border-radius: var(--radius);
  background: var(--acc-muted);
  border: 1px solid rgba(239, 159, 39, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-section .app-visual-icon::after {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--acc), var(--acc-hover));
}
.app-section .app-visual-label {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--fg-subtle);
}

.app-text .app-title {
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.app-text .app-desc {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 28rem;
}
.app-text .app-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--acc);
  transition: gap 0.22s cubic-bezier(0.4, 0, 0.2, 1), color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.app-text .app-link:hover {
  gap: 0.55rem;
  color: var(--acc-hover);
}

.cta-section {
  text-align: center;
}
.cta-section .cta-inner {
  max-width: 40rem;
  margin: 0 auto;
}
.cta-section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.cta-section-sub {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  margin-bottom: 2rem;
  line-height: 1.65;
}

.case-card--empty {
  border-style: dashed;
  background: transparent;
  opacity: 0.65;
}
.case-card--empty:hover {
  opacity: 1;
  background: var(--bg-card);
}

.services-preview-section .services-grid--preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) {
  .services-preview-section .services-grid--preview {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .services-preview-section .services-grid--preview {
    grid-template-columns: repeat(3, 1fr);
  }
}
.services-preview-section .services-grid--preview .service-card__title {
  font-size: 1rem;
}

.why-section .why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) {
  .why-section .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .why-section .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.why-section .why-card {
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.why-section .why-card:hover {
  border-color: rgba(239, 159, 39, 0.35);
}
.why-section .why-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.why-section .why-card__desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin: 0;
}

.section-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 1.75rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0a0a09;
  background: var(--acc);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15) inset, var(--shadow-sm);
  transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary:hover {
  background: var(--acc-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md), 0 0 24px var(--acc-glow);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), color 0.22s cubic-bezier(0.4, 0, 0.2, 1), background 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-ghost:hover {
  color: var(--fg);
  border-color: var(--acc);
  background: var(--bg-card-hover);
}

.tg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), background 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.tg-btn::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2aabee;
}
.tg-btn:hover {
  border-color: #2aabee;
  background: var(--bg-card-hover);
}

.btn-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--acc);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-text:hover {
  gap: 0.55rem;
}

.stack-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.stack-tag.accent {
  color: var(--acc);
  background: var(--acc-muted);
  border-color: rgba(239, 159, 39, 0.25);
}
.stack-tag:hover {
  border-color: var(--border-strong);
}

.case-tag {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  padding: 0.25rem 0.5rem;
  background: var(--tag-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.app-badge {
  display: inline-flex;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--acc);
  padding: 0.35rem 0.65rem;
  margin-bottom: 1rem;
  background: var(--acc-muted);
  border: 1px solid rgba(239, 159, 39, 0.22);
  border-radius: var(--radius-sm);
}

.case-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), background 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.case-card:hover {
  border-color: rgba(239, 159, 39, 0.35);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.case-card-num {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  font-weight: 500;
  color: var(--acc);
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}
.case-card-title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}
.case-card-desc {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  line-height: 1.65;
  flex-grow: 1;
}
.case-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 1rem;
}
.case-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--acc);
  letter-spacing: 0.04em;
  transition: gap 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.case-card-link:hover {
  gap: 0.45rem;
}

.contact-form-wrap {
  text-align: left;
}

.contact-card {
  padding: clamp(1.5rem, 4vw, 2rem);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-field--full {
  grid-column: 1/-1;
}
.form-field label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--fg-subtle);
  letter-spacing: 0.02em;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--fg);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.form-field input::placeholder,
.form-field select::placeholder,
.form-field textarea::placeholder {
  color: var(--fg-subtle);
}
.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: var(--border-strong);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--acc);
  box-shadow: 0 0 0 3px var(--acc-muted);
}
.form-field textarea {
  resize: vertical;
  min-height: 128px;
  line-height: 1.6;
}
.form-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
}

.form-error {
  font-size: 0.75rem;
  color: #e85d5d;
}

.form-alert {
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}
.form-alert--success {
  background: var(--acc-muted);
  border: 1px solid rgba(239, 159, 39, 0.3);
  color: var(--acc);
}
.form-alert--error {
  background: rgba(232, 93, 93, 0.08);
  border: 1px solid rgba(232, 93, 93, 0.25);
  color: #e85d5d;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0.25rem;
}

.blog-section .blog-section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.blog-preview-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.35rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-preview-card:hover {
  border-color: rgba(239, 159, 39, 0.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.blog-preview-title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0.5rem 0 0.4rem;
  line-height: 1.35;
}
.blog-preview-title a {
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-preview-title a:hover {
  color: var(--acc);
}

.blog-preview-intro {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  line-height: 1.6;
  flex-grow: 1;
}

.blog-card-date {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--fg-subtle);
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 42rem;
}

.blog-card {
  padding: 1.5rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-card:hover {
  border-color: rgba(239, 159, 39, 0.3);
  box-shadow: var(--shadow-sm);
}
.blog-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0.5rem 0 0.4rem;
}
.blog-card-title a:hover {
  color: var(--acc);
}
.blog-card-intro {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.blog-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}
.blog-card-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--acc);
}

.blog-article {
  max-width: 42rem;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 2rem) 4rem;
}
.blog-article-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.blog-article-date {
  display: block;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--fg-subtle);
  margin: 1rem 0;
}
.blog-article-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.blog-article-intro {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  line-height: 1.65;
}
.blog-article-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--fg-muted);
}
.blog-article-body h2, .blog-article-body h3 {
  color: var(--fg);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 2em 0 0.65em;
}
.blog-article-body h2 {
  font-size: 1.375rem;
}
.blog-article-body h3 {
  font-size: 1.125rem;
}
.blog-article-body p {
  margin-bottom: 1.15em;
}
.blog-article-body ul, .blog-article-body ol {
  margin: 0 0 1.15em 1.25em;
}
.blog-article-body li {
  margin-bottom: 0.35em;
}
.blog-article-body a {
  color: var(--acc);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(239, 159, 39, 0.4);
}
.blog-article-body a:hover {
  text-decoration-color: var(--acc);
}
.blog-article-body hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5em 0;
}
.blog-article-body strong {
  color: var(--fg);
  font-weight: 600;
}
.blog-article-body code {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.875em;
  padding: 0.15em 0.4em;
  background: var(--bg-card);
  border-radius: 4px;
  border: 1px solid var(--border);
}
.blog-article-footer {
  margin-top: 3rem;
  padding: 2rem;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.blog-article-footer p {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  margin-bottom: 1.25rem;
}

.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--fg-subtle);
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1), gap 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-back:hover {
  color: var(--acc);
  gap: 0.5rem;
}

.about-hero {
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.about-hero-title {
  max-width: 18ch;
}
.about-hero-sub {
  max-width: 42rem;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  line-height: 1.65;
}
.about-hero-actions {
  margin-top: 1.75rem;
}

.about-section--alt {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.about-studio-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .about-studio-grid {
    grid-template-columns: 1fr minmax(240px, 320px);
    gap: 3rem;
    align-items: start;
  }
}

.about-prose {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--fg-muted);
}
.about-prose p {
  margin-bottom: 1.15em;
}
.about-prose p:last-child {
  margin-bottom: 0;
}
.about-prose strong {
  color: var(--fg);
  font-weight: 600;
}
.about-prose--compact {
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 0;
}
@media (min-width: 900px) {
  .about-metrics {
    grid-template-columns: 1fr;
  }
}

.about-metric {
  padding: 1.25rem 1.35rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
}
@media (min-width: 900px) {
  .about-metric {
    text-align: left;
  }
}
.about-metric__value {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--acc);
  margin-bottom: 0.35rem;
}
.about-metric__label {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  line-height: 1.4;
  margin: 0;
}

.about-leader {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 768px) {
  .about-leader {
    grid-template-columns: minmax(200px, 280px) 1fr;
    gap: 2.5rem;
  }
}
.about-leader__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: var(--bg-card);
  max-width: 280px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .about-leader__photo {
    margin-inline: 0;
  }
}
.about-leader__photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2/3;
  object-fit: cover;
  object-position: center top;
}
.about-leader__name {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}
.about-leader__role {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: 1.25rem;
}

.about-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.about-skill-chip {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.35rem 0.7rem;
  background: var(--tag-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  color: var(--fg-muted);
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-skill-chip:hover {
  border-color: rgba(239, 159, 39, 0.35);
  color: var(--fg);
}

.about-competencies-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .about-competencies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .about-competencies-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-competency-card {
  padding: 1.35rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-competency-card:hover {
  border-color: rgba(239, 159, 39, 0.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.about-competency-card__icon {
  font-size: 1.5rem;
  line-height: 1;
  display: block;
  margin-bottom: 0.75rem;
}
.about-competency-card__title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}
.about-competency-card__desc {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin: 0;
}

.about-tech-groups {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .about-tech-groups {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-tech-group {
  padding: 1.35rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.about-tech-group__name {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: 1rem;
}
.about-tech-group__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.about-approach-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  counter-reset: approach;
}
@media (min-width: 768px) {
  .about-approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .about-approach-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-approach-step {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 1.35rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--acc);
}
.about-approach-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--acc);
  background: var(--acc-muted);
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
}
.about-approach-step__title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.45rem;
}
.about-approach-step__desc {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin: 0;
}

.about-why-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 600px) {
  .about-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .about-why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-why-card {
  padding: 1.35rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-why-card:hover {
  border-color: rgba(239, 159, 39, 0.25);
}
.about-why-card__title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  padding-left: 0.85rem;
  border-left: 2px solid var(--acc);
}
.about-why-card__desc {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin: 0;
}

.about-cta .about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.cases-grid--full {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .cases-grid--full {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .cases-grid--full {
    grid-template-columns: repeat(2, 1fr);
  }
}
.cases-grid--full .case-card-title {
  font-size: 1.125rem;
}

.cases-list-section .cases-grid,
.case-related-section .cases-grid,
.related-section .cases-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .cases-list-section .cases-grid,
  .case-related-section .cases-grid,
  .related-section .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .cases-list-section .cases-grid,
  .case-related-section .cases-grid,
  .related-section .cases-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .cases-list-section .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.case-page-hero {
  padding-top: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.case-page-hero .blog-back {
  margin-bottom: 1.25rem;
}
.case-page-hero__num {
  display: block;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--acc);
  margin-bottom: 0.75rem;
}
.case-page-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: 20ch;
}
.case-page-hero__desc {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 42rem;
  margin-bottom: 1.25rem;
}
.case-page-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.case-page-hero__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--acc);
}

.case-meta {
  display: grid;
  gap: 1rem;
  margin: 0;
}
@media (min-width: 640px) {
  .case-meta {
    grid-template-columns: repeat(3, 1fr);
  }
}
.case-meta__item {
  padding: 1.25rem 1.35rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.case-meta__item dt {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: 0.35rem;
}
.case-meta__item dd {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--fg);
  margin: 0;
}

.case-blocks {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .case-blocks {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.case-block__body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--fg-muted);
  margin-top: 0.75rem;
}
.case-block__body p {
  margin-bottom: 1em;
}
.case-block__body p:last-child {
  margin-bottom: 0;
}

.case-results {
  display: grid;
  gap: 1rem;
  margin: 0;
}
@media (min-width: 640px) {
  .case-results {
    grid-template-columns: repeat(3, 1fr);
  }
}
.case-results__card {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
}
.case-results__value {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--acc);
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}
.case-results__label {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  margin: 0;
  line-height: 1.4;
}

.case-content {
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--fg-muted);
}
.case-content p {
  margin-bottom: 1.15em;
}

.case-related-section .case-card-title a:hover {
  color: var(--acc);
}

.services-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem 1.6rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover {
  border-color: rgba(239, 159, 39, 0.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.service-card__icon {
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 0.85rem;
}
.service-card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}
.service-card__title a:hover {
  color: var(--acc);
}
.service-card__summary {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1rem;
}
.service-card__link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--acc);
}

.service-page-hero__icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.service-intro {
  max-width: 42rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--fg-muted);
}
.service-intro p {
  margin-bottom: 1.15em;
}
.service-intro p:last-child {
  margin-bottom: 0;
}

.service-details {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .service-details {
    grid-template-columns: 1fr 1fr;
  }
}

.service-list {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.65;
}
.service-list li {
  margin-bottom: 0.5em;
}
.service-list li::marker {
  color: var(--acc);
}

.service-faq {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 42rem;
}
.service-faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-faq__item[open] {
  border-color: rgba(239, 159, 39, 0.25);
}
.service-faq__question {
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.service-faq__question::-webkit-details-marker {
  display: none;
}
.service-faq__answer {
  padding: 0 1.25rem 1rem;
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin: 0;
}

.support-intro {
  max-width: 42rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--fg-muted);
}
.support-intro p {
  margin-bottom: 1.15em;
}
.support-intro p:last-child {
  margin-bottom: 0;
}
.support-intro strong {
  color: var(--fg);
}

.support-tiers {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}
@media (min-width: 900px) {
  .support-tiers {
    grid-template-columns: repeat(3, 1fr);
  }
}

.support-tier {
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.support-tier--highlighted {
  border-color: rgba(239, 159, 39, 0.45);
  box-shadow: var(--shadow-glow);
  position: relative;
}
@media (min-width: 900px) {
  .support-tier--highlighted {
    transform: scale(1.02);
    z-index: 1;
  }
}
.support-tier__name {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.support-tier__summary {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
  flex-grow: 0;
}
.support-tier__price {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--acc);
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.support-tier__features {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  flex-grow: 1;
  font-size: 0.8125rem;
  color: var(--fg-muted);
  line-height: 1.55;
}
.support-tier__features li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.55em;
}
.support-tier__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--acc);
  font-size: 0.75rem;
}
.support-tier__cta {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

.support-includes {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .support-includes {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .support-includes {
    grid-template-columns: repeat(3, 1fr);
  }
}

.support-include-card {
  padding: 1.35rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.support-include-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}
.support-include-card__desc {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin: 0;
}

.monitoring-bonus {
  padding: 1.75rem 2rem;
  background: linear-gradient(135deg, rgba(239, 159, 39, 0.12), rgba(239, 159, 39, 0.04));
  border: 1px solid rgba(239, 159, 39, 0.35);
  border-radius: var(--radius-lg);
}
.monitoring-bonus__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.monitoring-bonus__body {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--fg-muted);
}
.monitoring-bonus__body p {
  margin-bottom: 0.75em;
}
.monitoring-bonus__body p:last-child {
  margin-bottom: 0;
}
.monitoring-bonus__body strong {
  color: var(--fg);
}
.monitoring-bonus__body a {
  color: var(--acc);
}

.monitoring-roadmap {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .monitoring-roadmap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .monitoring-roadmap {
    grid-template-columns: repeat(3, 1fr);
  }
}
.monitoring-roadmap__item {
  padding: 1.25rem 1.35rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.monitoring-roadmap__item--live {
  border-color: rgba(34, 197, 94, 0.35);
}
.monitoring-roadmap__item--soon {
  opacity: 0.92;
}
.monitoring-roadmap__status {
  display: inline-block;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: 0.5rem;
}
.monitoring-roadmap__item--live .monitoring-roadmap__status {
  color: #22c55e;
}
.monitoring-roadmap__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.monitoring-roadmap__desc {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  line-height: 1.55;
  margin: 0;
}

.breadcrumbs {
  margin-bottom: 1rem;
}
.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.8125rem;
  color: var(--fg-subtle);
}
.breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.breadcrumbs__item:not(:last-child)::after {
  content: "/";
  opacity: 0.5;
}
.breadcrumbs__item a {
  color: var(--fg-muted);
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.breadcrumbs__item a:hover {
  color: var(--acc);
}
.breadcrumbs__item span[aria-current=page] {
  color: var(--fg);
}

.related-section .related-cta-card {
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
}
.related-section .related-cta-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.related-section .related-cta-card__desc {
  color: var(--fg-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.pagination__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--acc);
}
.pagination__link:hover {
  color: var(--acc-hover);
}
.pagination__status {
  font-size: 0.8125rem;
  color: var(--fg-subtle);
}

@media (max-width: 900px) {
  .nav {
    flex-wrap: wrap;
    height: auto;
    min-height: var(--nav-h);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  .nav-toggle {
    display: flex;
    margin-left: auto;
  }
  .nav-right {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem 0 0.5rem;
    border-top: 1px solid var(--border);
  }
  .nav-right.is-open {
    display: flex;
  }
  .nav-links {
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links a {
    padding: 0.65rem 0.75rem;
  }
  .nav-links a.nav-cta {
    text-align: center;
    margin-left: 0;
  }
  .nav-controls {
    align-self: flex-start;
  }
  .cases-grid {
    grid-template-columns: 1fr;
  }
  .blog-preview-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
  .footer .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .hero-meta {
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .hero-actions,
  .contact-form-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost,
  .hero-actions .tg-btn,
  .contact-form-actions .btn-primary,
  .contact-form-actions .btn-ghost,
  .contact-form-actions .tg-btn {
    width: 100%;
  }
}
