﻿:root {
  --header-h: 5.25rem;
  --ink: #f7fbff;
  --muted: rgba(232, 238, 246, 0.64);
  --soft: rgba(232, 238, 246, 0.42);
  --cyan: #28f1dc;
  --cyan-deep: #08a9ba;
  --violet: #c83cf4;
  --violet-deep: #6f3ff2;
  --panel: rgba(5, 8, 17, 0.76);
  --panel-soft: rgba(255, 255, 255, 0.045);
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.42);
  --content-max: 1160px;
  --page-bg-overlay: linear-gradient(rgba(3, 6, 12, 0.84), rgba(3, 6, 12, 0.88));
  --page-bg-cyan-glow: radial-gradient(circle at 72% 12%, rgba(32, 231, 208, 0.12), transparent 24rem);
  --page-bg-violet-glow: radial-gradient(circle at 92% 20%, rgba(189, 53, 245, 0.14), transparent 28rem);
  --page-bg-teal-wash: linear-gradient(120deg, rgba(2, 23, 26, 0.62), transparent 34rem);
  --page-bg-violet-wash: linear-gradient(300deg, rgba(31, 3, 42, 0.55), transparent 40rem);
}

html {
  box-sizing: border-box;
  background: #03060c;
  scrollbar-gutter: stable;
  scroll-padding-top: var(--header-h);
}

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

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background:
    var(--page-bg-overlay),
    var(--page-bg-cyan-glow),
    var(--page-bg-violet-glow),
    var(--page-bg-teal-wash),
    var(--page-bg-violet-wash),
    url("../img/site-bg.webp"),
    #03060c;
  background-attachment: fixed, fixed, fixed, fixed, fixed, fixed, fixed;
  background-position: center top, center top, center top, center top, center top, center center, center top;
  background-repeat: no-repeat;
  background-size: cover, auto, auto, auto, auto, cover, auto;
  color: var(--ink);
  font-family: "Exo 2", "Segoe UI", Arial, sans-serif;
}

.home-page {
  --page-bg-overlay: linear-gradient(rgba(3, 6, 12, 0.78), rgba(3, 6, 12, 0.83));
  --page-bg-cyan-glow: radial-gradient(circle at 72% 12%, rgba(32, 231, 208, 0.14), transparent 24rem);
  --page-bg-violet-glow: radial-gradient(circle at 92% 20%, rgba(189, 53, 245, 0.16), transparent 28rem);
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 2000;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(40, 241, 220, 0.55);
  border-radius: 999px;
  background: rgba(5, 8, 17, 0.96);
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 0 3px rgba(200, 60, 244, 0.18);
  transform: translateY(-170%);
  transition: transform 160ms ease-out;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
  box-shadow: 0 0 0 4px rgba(200, 60, 244, 0.18);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-h);
  border-bottom: 0;
  background: rgba(1, 3, 8, 0.74);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(100%, 1280px);
  min-height: var(--header-h);
  margin: 0 auto;
  padding: 0.7rem clamp(1.4rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) auto minmax(12rem, 1fr);
  align-items: center;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand picture,
.brand .logo {
  display: block;
}

.brand .logo {
  width: clamp(10rem, 18vw, 14.5rem);
  height: auto;
  filter: drop-shadow(0 0 14px rgba(32, 231, 208, 0.18));
}

.main-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.35rem, 1.6vw, 1.35rem);
  padding: 0;
  margin: 0;
  list-style: none;
}

.main-nav li {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
}

.main-nav a,
.footer-nav a {
  text-decoration: none;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.35rem 0.45rem;
  color: rgba(247, 251, 255, 0.76);
  font-size: 0.86rem;
  line-height: 1;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0.45rem;
  right: 0.45rem;
  bottom: 0.1rem;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  transition: transform 0.18s ease;
}

.main-nav a:hover,
.main-nav a:focus,
.main-nav a.active,
.main-nav a[aria-current="page"] {
  color: var(--ink);
  outline: none;
}

.main-nav a:hover::after,
.main-nav a:focus::after,
.main-nav a.active::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(rgba(1, 3, 8, 0.9), rgba(1, 3, 8, 0.9)) padding-box,
    linear-gradient(100deg, var(--cyan), var(--violet)) border-box;
  gap: 0.22rem;
}

.menu-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
}

.lang-switch button,
.btn,
button {
  font: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-weight: 500;
  text-decoration: none;
  line-height: 1;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.lang-switch button {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.75rem;
  min-height: 2.75rem;
  padding: 0 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--ink);
  line-height: 1;
  background:
    linear-gradient(rgba(1, 3, 8, 0.9), rgba(1, 3, 8, 0.9)) padding-box,
    linear-gradient(100deg, var(--cyan), var(--violet)) border-box;
  cursor: pointer;
  vertical-align: middle;
  appearance: none;
}

.lang-switch button {
  min-width: 5.1rem;
}

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

.page {
  flex: 1;
  width: 100%;
}

main:not(.index) {
  width: min(100% - 2rem, 960px);
  margin: 0 auto;
  padding: clamp(2.8rem, 6vw, 5.25rem) 0;
}

html.page-transition-pending main {
  opacity: 0;
  transform: translateY(0.22rem);
}

html.page-transition-ready main {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 340ms ease-out,
    transform 340ms ease-out;
}

main.page-leaving {
  opacity: 0;
  transform: translateY(0.18rem);
  pointer-events: none;
  transition:
    opacity 240ms ease-out,
    transform 240ms ease-out;
}

main:not(.index) h1,
main:not(.index) h2,
main:not(.index) h3 {
  line-height: 1.12;
}

main:not(.index) > h1 {
  max-width: 18ch;
  margin: 0 0 1rem;
  font-size: clamp(2.1rem, 4.4vw, 3.35rem);
  font-weight: 600;
  letter-spacing: 0;
}

main:not(.index) > p,
.form-subtitle {
  max-width: min(82ch, 100%);
  margin: 0 0 clamp(1.5rem, 3vw, 2.2rem);
  color: rgba(232, 238, 246, 0.74);
  font-size: clamp(1rem, 1.25vw, 1.08rem);
  line-height: 1.7;
}

main:not(.index) p,
main:not(.index) li {
  color: var(--muted);
  line-height: 1.75;
}

main:not(.index) section,
.contact-note {
  margin-block: 1rem;
  padding: clamp(1.1rem, 2.8vw, 1.6rem);
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 0%, rgba(200, 60, 244, 0.08), transparent 15rem) padding-box,
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)) padding-box,
    linear-gradient(#050811, #050811) padding-box,
    linear-gradient(135deg, rgba(40, 241, 220, 0.24), rgba(200, 60, 244, 0.24)) border-box;
}

.contact-note strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--ink);
  font-weight: 600;
}

.legal-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.2rem);
}

.legal-subnav a {
  padding: 0.45rem 1rem;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  background:
    linear-gradient(#050811, #050811) padding-box,
    linear-gradient(135deg, rgba(40, 241, 220, 0.15), rgba(200, 60, 244, 0.15)) border-box;
}

.legal-subnav a:hover {
  color: var(--ink);
  background:
    linear-gradient(#050811, #050811) padding-box,
    linear-gradient(135deg, rgba(40, 241, 220, 0.38), rgba(200, 60, 244, 0.38)) border-box;
}

.legal-subnav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
  background:
    linear-gradient(#050811, #050811) padding-box,
    linear-gradient(135deg, var(--cyan), var(--violet)) border-box;
}

main:not(.index) section h2,
main:not(.index) section h3 {
  margin: 0 0 0.75rem;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0;
}

main:not(.index) section p {
  margin: 0;
}

main:not(.index) section p + p {
  margin-top: 0.9rem;
}

main:not(.index) > div[data-i18n$="_content"] {
  color: var(--muted);
}

main:not(.index) > div[data-i18n$="_content"] h2 {
  margin: 1.7rem 0 0.7rem;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 600;
}

main:not(.index) > div[data-i18n$="_content"] p {
  margin: 0 0 1rem;
  line-height: 1.45;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphenate-limit-chars: 6 3 3;
  overflow-wrap: break-word;
  word-break: normal;
}

main:not(.index) button,
main:not(.index) .btn-primary,
main:not(.index) .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  justify-self: center;
  min-height: 2.45rem;
  margin-top: 1rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 500;
  line-height: 1;
}

.faq details,
.profile-item {
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(rgba(3, 6, 12, 0.82), rgba(3, 6, 12, 0.82)) padding-box,
    linear-gradient(135deg, rgba(40, 241, 220, 0.26), rgba(200, 60, 244, 0.22)) border-box;
}

.faq details:hover,
.profile-item:hover {
  background:
    linear-gradient(rgba(3, 6, 12, 0.78), rgba(3, 6, 12, 0.78)) padding-box,
    linear-gradient(135deg, rgba(40, 241, 220, 0.42), rgba(200, 60, 244, 0.34)) border-box;
}

.faq details + details {
  margin-top: 0.85rem;
}

.faq summary {
  cursor: pointer;
  padding: 1rem 1.1rem;
  color: var(--ink);
  font-weight: 600;
}

.faq details p {
  padding: 0 1.1rem 1rem;
  line-height: 1.32;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphenate-limit-chars: 6 3 3;
  overflow-wrap: break-word;
  word-break: normal;
}

.faq-contact-card {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  text-align: center;
}

.faq-contact-card h2 {
  margin: 0;
  text-align: center;
}

.faq-contact-card h2::before {
  display: none;
}

.faq-contact-card h2::after {
  content: "";
  display: block;
  width: 2.25rem;
  height: 2px;
  margin: 0.68rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}

.faq-contact-card p {
  max-width: 42rem;
  margin: 0;
  text-align: center;
  text-align-last: center;
}

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.profile-item {
  padding: 1.2rem;
  text-align: center;
}

.profile-logo {
  width: 2.4rem;
  height: 2.4rem;
  object-fit: contain;
}

.profile-logo-wide {
  width: 5rem;
}

.profile-name {
  display: block;
  margin-top: 0.75rem;
  color: var(--ink);
  font-weight: 600;
}

.profile-desc {
  margin-top: 0.55rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field-group {
  display: grid;
  gap: 0.4rem;
}

.field-group label {
  color: var(--ink);
  font-weight: 600;
  line-height: 1.2;
}

.error {
  min-height: 1rem;
  color: #ff8fd4;
  font-size: 0.82rem;
  line-height: 1.2;
}

.error:empty {
  display: none;
}

.error-input {
  background:
    linear-gradient(rgba(3, 6, 12, 0.84), rgba(3, 6, 12, 0.84)) padding-box,
    linear-gradient(135deg, rgba(255, 143, 212, 0.68), rgba(200, 60, 244, 0.58)) border-box;
  box-shadow: 0 0 0 3px rgba(255, 143, 212, 0.09);
}

.services,
.about,
.process,
.projects,
.pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-content: start;
}

.services > h1,
.services > p,
.about > h1,
.about > p,
.about > .breadcrumbs,
.studio-hub,
.process > h1,
.process > p,
.projects > h1,
.projects > p,
.pricing > h1,
.pricing > p,
.pricing-note {
  grid-column: 1 / -1;
}

.services > p,
.about > p,
.process > p,
.projects > p,
.pricing > p {
  margin-bottom: 0.75rem;
  line-height: 1.45;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphenate-limit-chars: 6 3 3;
  overflow-wrap: break-word;
  word-break: normal;
}

.pricing {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.25rem);
}

.pricing-card,
.pricing-note {
  display: flex;
  flex-direction: column;
  gap: 0.68rem;
  text-align: center;
}

.pricing-card h2,
.pricing-note h2 {
  margin-bottom: 0;
  text-align: center;
}

.pricing-card h2::after,
.pricing-note h2::after {
  content: "";
  display: block;
  width: 2.25rem;
  height: 2px;
  margin: 0.68rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}

.pricing-kicker {
  align-self: center;
  padding: 0.2rem 0.7rem;
  border: 1px solid rgba(40, 241, 220, 0.38);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.pricing .pricing-card .price {
  display: inline-grid;
  justify-content: center;
  justify-items: center;
  gap: 0.16rem;
  margin: 0.72rem auto 0.42rem;
  width: 100%;
  max-width: 24rem;
  text-align: center;
  line-height: 1.1;
}

.pricing .pricing-card .price.price-status {
  display: inline-grid;
  justify-content: center;
  justify-items: center;
  gap: 0.16rem;
  margin: 0.72rem auto 0.42rem;
  width: 100%;
  max-width: 24rem;
  text-align: center;
}

.pricing .pricing-card .price-label,
.pricing .pricing-card .price-amount {
  white-space: nowrap;
}

.pricing .pricing-card .price-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-align: center;
}

.pricing .pricing-card .price-amount {
  color: var(--ink);
  font-size: clamp(1.18rem, 1.7vw, 1.34rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-align: center;
}

.pricing .pricing-card .price-status .price-amount {
  font-size: clamp(1.18rem, 1.7vw, 1.34rem);
}

.pricing .pricing-card .price-disclaimer {
  margin: 0 auto 0.72rem;
  max-width: 15.5rem;
  font-size: 0.78rem;
  line-height: 1.25;
  font-style: italic;
  color: var(--muted);
  text-align: center;
  text-align-last: center;
}

.pricing .pricing-card > p:not(.price):not(.price-disclaimer) {
  line-height: 1.28;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphenate-limit-chars: 6 3 3;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
  word-spacing: normal;
}

.pricing .pricing-card ul {
  text-align: left;
}

.pricing-card ul {
  display: grid;
  gap: 0.38rem;
  padding-left: 1.15rem;
  margin: 0.08rem 0 0;
  text-align: left;
}

.pricing-card-featured {
  background:
    radial-gradient(circle at 92% 0%, rgba(200, 60, 244, 0.14), transparent 15rem) padding-box,
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.024)) padding-box,
    linear-gradient(#050811, #050811) padding-box,
    linear-gradient(135deg, rgba(40, 241, 220, 0.42), rgba(200, 60, 244, 0.44)) border-box;
}

.pricing-design-note {
  margin-top: 0.15rem;
}

.pricing-design-note p {
  max-width: 58rem;
  margin-inline: auto;
  text-align: center;
  text-align-last: center;
}

.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.3rem;
}

.services section {
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
  text-align: center;
}

.services section h2 {
  margin-bottom: 0;
  text-align: center;
}

.services.services section h2::before {
  display: none;
}

.services.services section h2::after {
  content: "";
  display: block;
  width: 2.25rem;
  height: 2px;
  margin: 0.68rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}

.services section p {
  line-height: 1.24;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphenate-limit-chars: 6 3 3;
  overflow-wrap: break-word;
  word-break: normal;
}

.services section .btn-primary,
.services section .btn-secondary {
  align-self: center;
  margin-top: auto;
}

.studio-hub {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: -0.15rem;
}

.studio-hub .studio-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: center;
  padding-bottom: 30px;
  text-align: center;
}

.studio-hub .studio-card .btn {
  align-self: center;
  margin-top: auto;
}

.studio-card-icon {
  display: block;
  width: auto;
  max-width: 6.875rem;
  height: 3.25rem;
  object-fit: contain;
  margin: 0 auto 0.1rem;
  filter: drop-shadow(0 0 18px rgba(40, 241, 220, 0.18));
}

.studio-card h2 {
  margin: 0;
  text-align: center;
}

.about .studio-card h2::before {
  display: none;
}

.about .studio-card h2::after {
  content: "";
  display: block;
  width: 2.25rem;
  height: 2px;
  margin: 0.68rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}

.studio-hub .studio-card p {
  width: 100%;
  line-height: 1.2;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphenate-limit-chars: 6 3 3;
  overflow-wrap: break-word;
  word-break: normal;
}

.studio-cta {
  grid-column: 1 / -1;
  display: grid;
  justify-items: center;
  margin-top: clamp(0.5rem, 2vw, 1rem);
  text-align: center;
}

.studio-cta h2 {
  text-align: center;
}

.studio-cta h2::before {
  display: none;
}

.studio-cta h2::after {
  content: "";
  display: block;
  width: 2.25rem;
  height: 2px;
  margin: 0.68rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}

.studio-cta p {
  max-width: 62rem;
  line-height: 1.26;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphenate-limit-chars: 6 3 3;
  overflow-wrap: break-word;
  word-break: normal;
}

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

.lynkore-detail section h2 {
  margin-bottom: 0.75rem;
  text-align: center;
}

.about.lynkore-detail section h2::before {
  display: none;
}

.about.lynkore-detail section h2::after {
  content: "";
  display: block;
  width: 2.25rem;
  height: 2px;
  margin: 0.68rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}

.lynkore-detail section p {
  line-height: 1.24;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphenate-limit-chars: 6 3 3;
  overflow-wrap: break-word;
  word-break: normal;
}

.services section,
.about section,
.process section,
.projects section {
  position: relative;
  min-height: 12rem;
  margin: 0;
  overflow: hidden;
}

.services section::after,
.about section::after,
.process section::after,
.projects section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(40, 241, 220, 0.7), rgba(200, 60, 244, 0.55));
  opacity: 0.45;
}

.services section:hover,
.about section:hover,
.process section:hover,
.projects section:hover {
  background:
    radial-gradient(circle at 92% 0%, rgba(200, 60, 244, 0.11), transparent 15rem) padding-box,
    linear-gradient(145deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.022)) padding-box,
    linear-gradient(#050811, #050811) padding-box,
    linear-gradient(135deg, rgba(40, 241, 220, 0.38), rgba(200, 60, 244, 0.36)) border-box;
}

.services section h2::before,
.about section h2::before,
.projects section h2::before {
  content: "";
  display: block;
  width: 2.25rem;
  height: 2px;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}

.projects .external-profiles h2::before {
  display: none;
}

.projects .external-profiles h2::after {
  content: "";
  display: block;
  width: 2.25rem;
  height: 2px;
  margin-top: 0.62rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}

.about .studio-cta h2::before {
  display: none;
}

.process {
  counter-reset: process-step;
}

.process section {
  counter-increment: process-step;
  padding-left: clamp(1.25rem, 2.8vw, 1.7rem);
}

.process section p {
  line-height: 1.25;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphenate-limit-chars: 6 3 3;
  overflow-wrap: break-word;
  word-break: normal;
}

.process section h2 {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.75rem;
}

.process section h2::before {
  content: counter(process-step, decimal-leading-zero);
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(rgba(3, 6, 12, 0.9), rgba(3, 6, 12, 0.9)) padding-box,
    linear-gradient(135deg, rgba(40, 241, 220, 0.68), rgba(200, 60, 244, 0.62)) border-box;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1;
}

.breadcrumbs {
  grid-column: 1 / -1;
  width: 100%;
  margin: 0 0 1.4rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 0.45rem;
  color: var(--soft);
}

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

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--cyan);
  text-decoration: underline;
}

.breadcrumbs [aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}

.projects > p,
.projects > .breadcrumbs,
.projects-featured,
.projects-selected,
.external-profiles {
  grid-column: 1 / -1;
}

.projects > p {
  max-width: 48rem;
}

.projects-featured,
.projects-selected {
  display: grid;
  gap: 0.95rem;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.projects-section-heading {
  width: fit-content;
  margin: 0.25rem 0 0.6rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.projects-section-heading::before {
  display: none;
}

.projects-section-heading::after {
  content: "";
  display: block;
  width: 2.35rem;
  height: 2px;
  margin-top: 0.65rem;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}

.projects-selected {
  margin-top: 0.7rem;
}

.project-showcase {
  display: grid;
  grid-template-columns: minmax(18rem, 1.12fr) minmax(18rem, 0.88fr);
  gap: clamp(1.45rem, 3vw, 2.25rem);
  align-items: center;
  padding: clamp(1.35rem, 2.7vw, 1.8rem);
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(8, 12, 24, 0.9), rgba(26, 16, 38, 0.84)) padding-box,
    linear-gradient(135deg, rgba(40, 241, 220, 0.34), rgba(200, 60, 244, 0.36)) border-box;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
}

.project-showcase--featured {
  grid-template-columns: minmax(21rem, 1.1fr) minmax(19rem, 0.9fr);
}

.project-visual {
  display: grid;
  align-self: center;
  overflow: visible;
}

.project-media-actions {
  display: grid;
  justify-content: center;
  justify-items: center;
  gap: 0.38rem;
  margin-top: 1.15rem;
  padding: 0;
  background: transparent;
  text-align: center;
}

.project-media-actions--external {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.project-media-actions .btn {
  margin-top: 0;
}

.project-media-actions .project-note {
  margin: 0;
}

.project-action-heading {
  margin: 0;
  color: rgba(189, 198, 210, 0.9);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.35;
}

.project-media-button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.project-media {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(40, 241, 220, 0.26);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: rgba(3, 6, 12, 0.72);
  cursor: zoom-in;
  text-decoration: none;
}

.project-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 34rem;
  object-fit: contain;
  background: rgba(2, 4, 10, 0.7);
  transition: transform 0.22s ease, filter 0.22s ease;
}

.project-media:hover img,
.project-media:focus-visible img {
  transform: scale(1.015);
  filter: brightness(1.05);
}

.lightbox-open {
  overflow: hidden;
}

.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 72% 18%, rgba(200, 60, 244, 0.16), transparent 24rem),
    radial-gradient(circle at 25% 28%, rgba(40, 241, 220, 0.12), transparent 24rem),
    rgba(1, 3, 8, 0.84);
  opacity: 0;
  backdrop-filter: blur(12px);
  transition: opacity 0.18s ease-out;
}

.project-lightbox.is-open {
  opacity: 1;
}

.project-lightbox[hidden] {
  display: none;
}

.project-lightbox-frame {
  position: relative;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  width: min(1120px, 92vw);
  height: min(780px, 82vh);
  padding: clamp(0.45rem, 1vw, 0.7rem);
  border: 1px solid transparent;
  border-radius: 10px;
  background:
    linear-gradient(rgba(3, 6, 12, 0.92), rgba(3, 6, 12, 0.92)) padding-box,
    linear-gradient(135deg, rgba(40, 241, 220, 0.58), rgba(200, 60, 244, 0.5)) border-box;
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.62);
}

.project-lightbox-image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
}

.project-lightbox-close {
  position: fixed;
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  min-height: 2.65rem;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(rgba(3, 6, 12, 0.92), rgba(3, 6, 12, 0.92)) padding-box,
    linear-gradient(135deg, var(--cyan), var(--violet)) border-box;
  color: var(--ink);
  font-size: 1.55rem;
  line-height: 1;
  box-shadow: 0 0 24px rgba(40, 241, 220, 0.16);
}

.project-lightbox-close:hover,
.project-lightbox-close:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(40, 241, 220, 0.12),
    0 0 30px rgba(200, 60, 244, 0.22);
}

.project-copy {
  display: grid;
  align-content: center;
  gap: 0.64rem;
}

.project-copy h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 600;
  line-height: 1;
}

.projects .project-showcase h2::before {
  display: none;
}

.project-copy h2::after {
  content: "";
  display: block;
  width: 2.35rem;
  height: 2px;
  margin-top: 0.62rem;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}

.project-copy p {
  margin: 0;
}

.project-copy > p:not(.project-subtitle):not(.project-note) {
  line-height: 1.2;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphenate-limit-chars: 6 3 3;
  overflow-wrap: break-word;
  word-break: normal;
}

.project-visual-label,
.project-tag-group h3,
.project-facts dt {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-visual-label {
  margin: 0;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(40, 241, 220, 0.26);
  border-top-color: rgba(40, 241, 220, 0.14);
  border-radius: 0 0 8px 8px;
  background: rgba(2, 4, 10, 0.74);
  color: var(--muted);
  text-align: center;
}

.project-subtitle {
  color: rgba(247, 251, 255, 0.72);
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.45;
}

.project-facts {
  display: grid;
  gap: 0.38rem;
  margin: 0.08rem 0 0;
}

.project-facts div {
  display: grid;
  grid-template-columns: 5.4rem minmax(0, 1fr);
  column-gap: 0.75rem;
  align-items: start;
}

.project-facts dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.3;
}

.project-facts dt {
  min-width: 0;
  line-height: 1.3;
}

.project-tag-group {
  display: grid;
  gap: 0.28rem;
  margin-top: 0.32rem;
}

.project-tag-group + .project-tag-group {
  margin-top: 0.92rem;
}

.projects .project-tag-group h3 {
  margin: 0;
  color: rgba(232, 238, 246, 0.48);
}

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

.project-tags li {
  display: inline-flex;
  align-items: center;
  min-height: 1.85rem;
  padding: 0.3rem 0.62rem;
  border: 1px solid rgba(40, 241, 220, 0.26);
  border-radius: 999px;
  background: rgba(40, 241, 220, 0.06);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.1;
}

.project-stack-icons li {
  padding: 0;
  border: 0;
  background: transparent;
}

.stack-icon-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 1.85rem;
  border: 1px solid rgba(40, 241, 220, 0.28);
  border-radius: 999px;
  background: rgba(40, 241, 220, 0.06);
  color: var(--ink);
  cursor: help;
}

.stack-icon-chip img {
  display: block;
  width: auto;
  max-width: 1.08rem;
  height: 1rem;
  object-fit: contain;
}

.stack-icon-chip::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.45rem);
  z-index: 5;
  width: max-content;
  max-width: 10rem;
  padding: 0.32rem 0.48rem;
  border: 1px solid rgba(40, 241, 220, 0.38);
  border-radius: 6px;
  background: rgba(3, 6, 12, 0.96);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0.18rem);
  transition: opacity 140ms ease-out, transform 140ms ease-out;
}

.stack-icon-chip:hover,
.stack-icon-chip:focus-visible {
  border-color: rgba(40, 241, 220, 0.56);
  background: rgba(40, 241, 220, 0.1);
}

.stack-icon-chip:hover::after,
.stack-icon-chip:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.project-tag-group--focus .project-tags li {
  border-color: rgba(200, 60, 244, 0.42);
  background: rgba(200, 60, 244, 0.1);
  color: rgba(239, 223, 250, 0.78);
}

.project-note {
  max-width: 28rem;
  color: rgba(189, 198, 210, 0.7);
  font-size: 0.8rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
}

.project-actions {
  display: grid;
  justify-items: center;
  gap: 0.42rem;
  margin-top: 0.15rem;
  text-align: center;
}

.project-actions > .btn {
  margin-top: 0;
}

.project-showcase--featured .project-media-actions {
  gap: 0.22rem;
  margin-top: 1rem;
}

.project-showcase--featured .project-media-button-row {
  margin-top: -0.05rem;
}

.project-cta-inline {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  margin-top: 0.9rem;
}

.project-cta-inline span {
  color: rgba(189, 198, 210, 0.88);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.35;
}

.project-cta-inline .btn {
  margin-top: 0;
}

.external-profiles > p {
  margin-top: -0.2rem;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(rgba(3, 6, 12, 0.88), rgba(3, 6, 12, 0.88)) padding-box,
    linear-gradient(135deg, rgba(40, 241, 220, 0.34), rgba(200, 60, 244, 0.28)) border-box;
  color: var(--ink);
  outline: none;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(232, 238, 246, 0.42);
}

select {
  appearance: auto;
}

select option {
  background: #050811;
  color: var(--ink);
}

select option:disabled {
  color: rgba(232, 238, 246, 0.46);
}

input:hover,
select:hover,
textarea:hover {
  background:
    linear-gradient(rgba(3, 6, 12, 0.82), rgba(3, 6, 12, 0.82)) padding-box,
    linear-gradient(135deg, rgba(40, 241, 220, 0.48), rgba(200, 60, 244, 0.4)) border-box;
}

input:focus,
select:focus,
textarea:focus {
  background:
    linear-gradient(rgba(3, 6, 12, 0.78), rgba(3, 6, 12, 0.78)) padding-box,
    linear-gradient(135deg, rgba(40, 241, 220, 0.78), rgba(200, 60, 244, 0.68)) border-box;
  box-shadow: 0 0 0 3px rgba(40, 241, 220, 0.1);
}

textarea {
  min-height: 9rem;
  resize: vertical;
}

button {
  border: 0;
  cursor: pointer;
}

.home-shell {
  width: min(100% - 2rem, var(--content-max));
  margin-inline: auto;
}

.home-hero {
  position: relative;
  isolation: isolate;
  padding: clamp(1.6rem, 3vw, 2.8rem) 0 clamp(1rem, 2vw, 1.8rem);
  overflow: hidden;
}

.home-hero::after {
  content: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(300px, 1.25fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.hero-copy {
  position: relative;
  max-width: 620px;
  isolation: isolate;
}

.hero-kicker,
.section-kicker {
  width: fit-content;
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--cyan);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.35rem, 5vw, 4.35rem);
  font-weight: 500;
  line-height: 1;
}

.hero-title span {
  display: inline;
}

.hero-title .accent {
  display: block;
  width: fit-content;
  background: linear-gradient(90deg, var(--cyan), #6fb7ff, var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  max-width: 25rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  line-height: 1.7;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphenate-limit-chars: 6 3 3;
  overflow-wrap: break-word;
  word-break: normal;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.4rem;
}

.btn-primary {
  border: 0;
  background: linear-gradient(100deg, rgba(8, 110, 126, 0.96), rgba(70, 72, 160, 0.96), rgba(132, 31, 166, 0.96));
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(32, 231, 208, 0.1);
}

.btn-secondary {
  border: 1px solid transparent;
  background:
    linear-gradient(rgba(3, 6, 12, 0.94), rgba(3, 6, 12, 0.94)) padding-box,
    linear-gradient(100deg, var(--cyan), var(--violet)) border-box;
  color: var(--ink);
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-art::before {
  content: none;
}

.hero-art::after {
  content: none;
}

.hero-art-image {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 100%;
  overflow: hidden;
  mask-image:
    linear-gradient(to right, transparent 0, black 9%, black 91%, transparent 100%),
    linear-gradient(to bottom, transparent 0, black 8%, black 78%, transparent 100%);
  mask-composite: intersect;
}

.hero-art-image picture {
  display: block;
}

.hero-art-image::before {
  content: none;
}

.hero-art-image::after {
  content: none;
}

.hero-symbol {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: min(100%, 860px);
  height: auto;
  display: block;
  filter: none;
}

.video-band,
.feature-strip,
.solutions-section,
.stats-band {
  position: relative;
  padding-block: clamp(1.45rem, 3.4vw, 2.6rem);
}

.video-heading {
  width: min(100%, 680px);
  margin: 0 auto clamp(1.4rem, 3vw, 2rem);
  text-align: center;
}

.video-heading .section-kicker {
  margin-inline: auto;
}

.video-heading h2,
.section-heading h2 {
  margin: 0;
  max-width: none;
  font-size: clamp(1.8rem, 3.1vw, 2.75rem);
  line-height: 1.12;
  text-align: center;
}

.video-heading h2 {
  font-weight: 600;
}

.video-heading p:not(.section-kicker) {
  max-width: 42rem;
  margin-inline: auto;
  color: var(--muted);
  line-height: 1.72;
  text-align: center;
}

.video-frame {
  position: relative;
  overflow: hidden;
  max-width: 920px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(32, 231, 208, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(32, 231, 208, 0.11), transparent 48%, rgba(189, 53, 245, 0.13)),
    rgba(0, 0, 0, 0.32);
  box-shadow: var(--shadow);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-consent-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(0.7rem, 2.2vw, 1.1rem);
  background:
    radial-gradient(circle at 50% 0%, rgba(40, 241, 220, 0.12), transparent 16rem),
    linear-gradient(145deg, rgba(3, 6, 12, 0.9), rgba(12, 8, 24, 0.92));
  text-align: center;
}

.video-consent-placeholder[hidden] {
  display: none;
}

.video-consent-inner {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  max-width: 28rem;
}

.video-consent-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.video-consent-actions .btn {
  min-width: 0;
  min-height: 2.2rem;
  margin-top: 0;
  padding: 0.55rem 0.85rem;
  font-size: 0.88rem;
}

.video-consent-inner h3,
.video-consent-inner p {
  margin: 0;
}

.video-consent-inner h3 {
  color: var(--ink);
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 600;
}

.video-consent-inner p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.3;
}

.feature-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(100deg, rgba(4, 13, 24, 0.92), rgba(5, 6, 15, 0.95), rgba(28, 4, 37, 0.92)) padding-box,
    linear-gradient(#030609, #030609) padding-box,
    linear-gradient(135deg, rgba(32, 231, 208, 0.3), rgba(189, 53, 245, 0.3)) border-box;
  box-shadow: var(--shadow);
}

.feature-panel article {
  min-height: 11rem;
  padding: clamp(0.5rem, 1.2vw, 0.75rem) clamp(1.1rem, 2.6vw, 1.65rem);
  text-align: center;
}

.feature-panel article + article {
  border-left: 0;
}

.feature-icon {
  display: block;
  width: 10rem;
  height: 10rem;
  margin: -2rem auto -1.5rem;
  object-fit: contain;
}

.feature-panel h3,
.solution-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.05rem;
}

.feature-panel p,
.solution-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.section-heading {
  margin-bottom: clamp(1.4rem, 3vw, 2.25rem);
  text-align: center;
}

.section-heading .section-kicker {
  margin-inline: auto;
}

.section-heading h2 {
  margin-inline: auto;
  max-width: none;
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  font-weight: 700;
}

.text-cyan {
  color: var(--cyan);
}

.text-violet {
  color: var(--violet);
}

.stats-panel {
  display: grid;
  grid-template-columns: minmax(210px, 0.62fr) minmax(0, 1.55fr);
  gap: clamp(2rem, 4.4vw, 3.6rem);
  align-items: stretch;
  padding: clamp(1rem, 2vw, 1.45rem) clamp(1.5rem, 3.2vw, 2.1rem);
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    radial-gradient(circle at 6% 12%, rgba(40, 241, 220, 0.25), transparent 18rem) padding-box,
    radial-gradient(circle at 92% 24%, rgba(200, 60, 244, 0.24), transparent 20rem) padding-box,
    linear-gradient(100deg, rgba(5, 39, 48, 0.96), rgba(8, 11, 27, 0.98), rgba(52, 7, 69, 0.96)) padding-box,
    linear-gradient(100deg, rgba(40, 241, 220, 0.6), rgba(200, 60, 244, 0.6)) border-box;
  box-shadow: var(--shadow);
}

.stats-copy h2 {
  max-width: 14ch;
  margin: 0 0 0.65rem;
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  font-weight: 600;
  line-height: 1.12;
}

.stats-copy p:not(.section-kicker) {
  max-width: 24rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphenate-limit-chars: 6 3 3;
  overflow-wrap: break-word;
  word-break: normal;
}

.stats-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1.15rem;
  min-height: 100%;
}

.stats-right .btn {
  margin-top: 0;
  margin-bottom: 0.3rem;
}

.stats-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: auto 5.55rem auto;
  column-gap: 0.5rem;
  row-gap: 0.55rem;
}

.stats-grid article {
  grid-row: span 3;
  display: grid;
  grid-template-rows: subgrid;
  justify-items: center;
  text-align: center;
  color: var(--muted);
}

.stat-icon {
  color: var(--cyan);
  font-size: 1.75rem;
  text-shadow: 0 0 18px rgba(32, 241, 220, 0.45);
  width: auto;
  max-width: 100%;
  height: 5rem;
  object-fit: contain;
  align-self: end;
}

.stats-grid article h3 {
  margin: 0;
  color: var(--cyan);
  font-size: clamp(1rem, 1.55vw, 1.12rem);
  line-height: 1.1;
  white-space: nowrap;
  text-shadow: 0 0 18px rgba(32, 241, 220, 0.45);
  align-self: end;
}

.stats-grid article p {
  margin: 0;
  line-height: 1.25;
  transform: translateY(0.2rem);
}

.stats-grid strong {
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
  font-weight: 500;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.solution-card {
  min-height: 19rem;
  padding: 1.4rem;
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 12%, rgba(189, 53, 245, 0.08), transparent 8rem) padding-box,
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)) padding-box,
    linear-gradient(#080b18, #080b18) padding-box,
    linear-gradient(135deg, rgba(32, 231, 208, 0.4), rgba(189, 53, 245, 0.4)) border-box;
  transition: transform 0.18s ease, background 0.18s ease;
  text-align: center;
}

.solution-card:hover {
  transform: translateY(-3px);
  background:
    linear-gradient(160deg, rgba(32, 231, 208, 0.07), rgba(189, 53, 245, 0.045)) padding-box,
    linear-gradient(#080b18, #080b18) padding-box,
    linear-gradient(135deg, rgba(32, 231, 208, 0.55), rgba(189, 53, 245, 0.55)) border-box;
}

.solution-visual {
  height: 7.6rem;
  margin-bottom: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.solution-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(40, 241, 220, 0.16));
}

.solution-card a {
  display: inline-flex;
  margin-top: 1.1rem;
  color: var(--cyan);
  font-weight: 700;
  text-decoration: none;
}

.solution-card a:hover,
.solution-card a:focus {
  color: #ffffff;
  outline: none;
}

.site-footer {
  border-top: 0;
  background: rgba(0, 0, 0, 0.1);
  color: var(--muted);
}

.footer-inner {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0.65rem clamp(1.4rem, 5vw, 4rem);
}

.footer-slim {
  display: grid;
  grid-template-columns: minmax(17rem, 1fr) minmax(24rem, auto) minmax(17rem, 1fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 5rem);
}

.footer-logo {
  width: 10.5rem;
  height: auto;
  display: block;
}

.footer-brand-block,
.footer-signoff {
  display: flex;
  flex-direction: column;
  min-height: 3.65rem;
}

.footer-brand-block {
  align-items: flex-start;
  justify-content: space-between;
}

.footer-brand-block span {
  color: var(--soft);
  font-size: 0.82rem;
}

.footer-signoff {
  align-items: flex-end;
  justify-content: flex-end;
  gap: 0.35rem;
}

.footer-main {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  line-height: 1;
}

.footer-socials a {
  display: inline-grid;
  place-items: center;
}

.footer-socials img {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
  opacity: 0.68;
  transition: opacity 0.18s ease, filter 0.18s ease;
}

.footer-socials a:hover img,
.footer-socials a:focus img {
  opacity: 1;
  filter: brightness(1.25);
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  text-align: center;
  align-self: end;
  min-height: 1.1rem;
}

.footer-meta nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.footer-meta a,
.footer-email {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  padding-inline: 1rem;
  transition: color 0.18s ease;
}

.footer-meta a + a::before,
.footer-email + a::before {
  content: "|";
  position: absolute;
  left: 0;
  color: rgba(232, 238, 246, 0.26);
}

.footer-meta a:hover,
.footer-meta a:focus {
  color: var(--cyan);
  outline: none;
}

.footer-tagline {
  display: block;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(0.72rem, 1vw, 0.9rem);
  letter-spacing: 0.16em;
  line-height: 1;
  white-space: nowrap;
  transform: translateY(0.08rem);
}

.back-to-top {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 900;
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--ink);
  background:
    linear-gradient(rgba(5, 8, 17, 0.88), rgba(5, 8, 17, 0.88)) padding-box,
    linear-gradient(135deg, var(--cyan), var(--violet)) border-box;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.32);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.5rem);
  transition:
    opacity 180ms ease-out,
    transform 180ms ease-out,
    filter 180ms ease-out;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  filter: brightness(1.16);
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  html.page-transition-pending main,
  html.page-transition-ready main,
  main.page-leaving,
  .back-to-top {
    transition: none;
    transform: none;
  }
}

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

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

  .hero-art {
    min-height: 20rem;
  }

  .feature-panel,
  .solution-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-panel article:nth-child(3) {
    border-left: 0;
    border-top: 0;
  }

  .feature-panel article:nth-child(4) {
    border-top: 0;
  }

  .stats-panel {
    grid-template-columns: 1fr;
  }

  .stats-right {
    justify-content: center;
    padding-top: 0;
  }

  .stats-right .btn {
    margin-top: 0;
  }

  .footer-slim {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-brand-block,
  .footer-signoff {
    align-items: center;
  }

  .project-showcase,
  .project-showcase--featured {
    grid-template-columns: 1fr;
  }

  .studio-hub {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 1120px) {
  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.75rem;
    padding-block: 1rem;
  }

  .brand .logo {
    width: 3.1rem;
  }

  .menu-toggle {
    display: flex;
    justify-self: end;
    grid-column: 3;
    grid-row: 1;
  }

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
  }

  .site-header.nav-open .main-nav {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    overflow: visible;
    padding-bottom: 0;
  }

  .main-nav a {
    min-height: 1.9rem;
    padding: 0.35rem 0.25rem;
    font-size: 0.86rem;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    width: auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .lang-switch button {
    height: 2.5rem;
    min-height: 2.5rem;
  }

  .lang-switch button {
    min-width: 4.25rem;
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: auto;
  }

  html.page-transition-pending main,
  html.page-transition-ready main,
  main.page-leaving {
    transform: none;
  }

  html.page-transition-ready main {
    transition: opacity 220ms ease-out;
  }

  main.page-leaving {
    transition: opacity 180ms ease-out;
  }

  .home-hero {
    padding-top: 2rem;
  }

  .hero-grid {
    gap: 1.25rem;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-title {
    max-width: 8.8ch;
    font-size: clamp(2.8rem, 15vw, 4.15rem);
  }

  .hero-subtitle {
    max-width: none;
    font-size: 1rem;
  }

  .hero-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.55rem;
    margin-top: 1.25rem;
  }

  .btn {
    width: auto;
    min-width: 10rem;
    min-height: 2.55rem;
  }

  .hero-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    min-height: 2.35rem;
    padding: 0.62rem 0.7rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .hero-art {
    min-height: 0;
  }

  .hero-art-image {
    width: auto;
    mask-image: none;
  }

  .hero-symbol {
    width: min(62vw, 18rem);
    max-width: 100%;
  }

  .video-heading {
    margin-bottom: 1.2rem;
  }

  .video-heading h2,
  .section-heading h2 {
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .video-heading p:not(.section-kicker) {
    font-size: 0.95rem;
  }

  .video-frame {
    aspect-ratio: 16 / 10;
  }

  .video-consent-placeholder {
    padding: 0.45rem 0.65rem 0.55rem;
  }

  .video-consent-inner {
    gap: 0.28rem;
    max-width: 17rem;
  }

  .video-consent-inner h3 {
    font-size: 1rem;
    line-height: 1.12;
  }

  .video-consent-inner p {
    font-size: 0.78rem;
    line-height: 1.18;
  }

  .video-consent-actions {
    gap: 0.3rem;
  }

  .video-consent-actions .btn {
    min-height: 2rem;
    padding: 0.48rem 0.68rem;
    font-size: 0.78rem;
  }

  .feature-panel,
  .solution-grid,
  .stats-grid,
  .services,
  .about,
  .process,
  .projects,
  .pricing,
  .studio-hub,
  .form-row,
  .profiles-grid,
  .footer-meta {
    grid-template-columns: 1fr;
    align-items: center;
    gap: 0.8rem;
  }

  .feature-panel article {
    min-height: auto;
  }

  .stats-panel {
    padding: 1.25rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    width: 100%;
    column-gap: 0.25rem;
    row-gap: 0.72rem;
  }

  .stats-grid article {
    grid-row: auto;
    display: grid;
    grid-template-rows: auto auto auto;
    min-width: 0;
    row-gap: 0.32rem;
  }

  .stats-grid article h3 {
    max-width: 100%;
    min-height: 2.15rem;
    align-self: end;
    font-size: clamp(0.72rem, 3.65vw, 0.86rem);
    line-height: 1.08;
    white-space: normal;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .stat-icon {
    height: clamp(2.75rem, 15vw, 3.65rem);
    align-self: center;
  }

  .stats-grid article p {
    max-width: 13ch;
    margin-inline: auto;
    font-size: 0.8rem;
    line-height: 1.18;
    transform: none;
    overflow-wrap: break-word;
  }

  .footer-main,
  .footer-meta {
    align-items: stretch;
    flex-direction: column;
  }

  .feature-panel article + article,
  .feature-panel article:nth-child(3),
  .feature-panel article:nth-child(4) {
    border-left: 0;
    border-top: 0;
  }

  .breadcrumbs {
    margin-bottom: 1rem;
    font-size: 0.84rem;
  }

  .project-showcase {
    padding: 1rem;
  }

  .project-copy h2 {
    font-size: clamp(1.75rem, 10vw, 2.35rem);
  }

  .project-facts div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .project-showcase--featured .project-tag-group--focus .project-tags {
    display: flex;
  }

  .project-tag-group--focus .project-tags {
    gap: 0.36rem;
  }

  .project-tag-group--focus .project-tags li {
    padding: 0.26rem 0.5rem;
    font-size: 0.72rem;
  }

  .project-stack-icons {
    gap: 0.32rem;
  }

  .stack-icon-chip {
    width: 1.92rem;
    height: 1.72rem;
  }

  .stack-icon-chip img {
    max-width: 0.98rem;
    height: 0.92rem;
  }

  .project-showcase--cupidhex .project-tag-group--focus .project-tags {
    gap: 0.3rem;
  }

  .project-showcase--cupidhex .project-tag-group--focus .project-tags li {
    padding: 0.24rem 0.42rem;
    font-size: 0.68rem;
  }

  .project-subtitle {
    text-align: left;
    text-align-last: auto;
    hyphens: none;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
  }

  main:not(.index) section p,
  main:not(.index) > p,
  main:not(.index) > div[data-i18n$="_content"] p,
  .project-copy > p,
  .studio-card p,
  .pricing-card p,
  .service-card p,
  .contact-note p,
  .profile-desc {
    text-align: justify;
    text-align-last: left;
    text-justify: inter-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphenate-limit-chars: 6 3 3;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .project-subtitle {
    text-align: left;
    text-align-last: auto;
    text-justify: auto;
    hyphens: none;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    word-spacing: normal;
  }

  .project-copy > p:not(.project-subtitle):not(.project-note) {
    line-height: 1.18;
    word-spacing: -0.035em;
  }

  .faq-contact-card p {
    text-align: center;
    text-align-last: center;
    hyphens: none;
  }

  .project-actions,
  .project-cta-inline {
    align-items: center;
    justify-items: center;
  }
}

/* ============================================================
   PRIVACY BANNER
   ============================================================ */
.privacy-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(3, 6, 12, 0.97);
  border-top: 1px solid rgba(40, 241, 220, 0.2);
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1rem, 3vw, 2rem);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
}

.privacy-banner-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.privacy-banner-text {
  flex: 1;
  min-width: 220px;
}

.privacy-banner-text strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.privacy-banner-text > p {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0 0 0.3rem;
  line-height: 1.55;
}

.privacy-banner-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0;
}

.privacy-banner-links a {
  font-size: 0.75rem;
  color: var(--cyan-deep);
  text-decoration: underline;
}

.privacy-banner-links a:hover {
  color: var(--cyan);
}

.privacy-banner-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.privacy-banner-actions .btn {
  padding: 0.5rem 1rem;
  min-height: 2.1rem;
  font-size: 0.78rem;
}

/* ============================================================
   CONTACT FORM — SUBMIT NOTICE & PRIVACY NOTICE
   ============================================================ */
.form-submit-notice {
  min-height: 1.4em;
  margin-top: 0.6rem;
  font-size: 0.85rem;
  line-height: 1.5;
}

.form-submit-notice--ok {
  color: var(--cyan);
}

.form-submit-notice--err {
  color: #ff6b6b;
}

.form-privacy-notice {
  margin-top: 0.5rem;
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.5;
}

.form-privacy-notice a {
  color: var(--cyan-deep);
  text-decoration: underline;
}

.form-privacy-notice a:hover {
  color: var(--cyan);
}

/* ============================================================
   CONTACT FORM — PRIVACY CHECKBOX
   ============================================================ */
.field-group--checkbox {
  margin-top: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.18em;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  accent-color: var(--cyan);
  cursor: pointer;
}

.checkbox-label a {
  color: var(--cyan-deep);
  text-decoration: underline;
}

.checkbox-label a:hover {
  color: var(--cyan);
}
