:root {
  --bg: #f6f5ef;
  --ink: #161714;
  --muted: #6c7068;
  --line: rgba(22, 23, 20, 0.12);
  --surface: #ebe9df;
  --dark: #101210;
  --accent: #28e0a9;
  --accent-2: #94b9ff;
  --header-bg: rgba(23, 24, 22, 0.72);
  --radius: 8px;
  --font: "Google Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

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

img,
canvas {
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 32px;
  pointer-events: none;
}

.brand,
.nav-pill {
  pointer-events: auto;
}

.brand img {
  width: 158px;
  height: auto;
  transition: opacity 180ms ease;
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: var(--header-bg);
  color: white;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.nav-pill a,
.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 999px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.78;
  cursor: pointer;
  transition: opacity 180ms ease, background 180ms ease;
}

.nav-pill a:hover,
.menu-button:hover,
.nav-pill a.active {
  opacity: 1;
  background: rgba(255, 255, 255, 0.11);
}

.menu-button {
  gap: 9px;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 15px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 440ms cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 200ms ease,
    background 180ms ease;
}

[data-menu-label] {
  display: inline-block;
  transition: opacity 160ms ease, transform 160ms ease;
}

[data-menu-label].is-swapping {
  opacity: 0;
  transform: translateY(-7px);
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: 0;
  transform: translateY(-5px);
}

.menu-icon::after {
  top: 0;
  transform: translateY(5px);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin: 0 2px 0 6px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.lang-switch button {
  min-width: 34px;
  min-height: 30px;
  padding: 0 9px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0.6;
  cursor: pointer;
  transition: opacity 180ms ease, background 180ms ease;
}

.lang-switch button:hover {
  opacity: 1;
}

.lang-switch button.active {
  opacity: 1;
  background: rgba(40, 224, 169, 0.22);
  color: #eafff7;
}

.hero {
  position: relative;
  min-height: 780px;
  height: 100vh;
  overflow: hidden;
  background: var(--dark);
  color: white;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 44%, rgba(40, 224, 169, 0.2), transparent 26%),
    radial-gradient(circle at 86% 18%, rgba(148, 185, 255, 0.16), transparent 22%),
    linear-gradient(90deg, rgba(3, 4, 4, 0.94), rgba(3, 4, 4, 0.74) 43%, rgba(3, 4, 4, 0.22)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.76), transparent 58%);
}

.hero-showcase {
  position: absolute;
  z-index: 1;
  top: 13vh;
  right: clamp(12px, 3vw, 72px);
  width: min(470px, 37vw);
  height: min(620px, 72vh);
  min-width: 390px;
  pointer-events: none;
}

.showcase-glow {
  position: absolute;
  inset: 9% -4% 5% 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 58% 45%, rgba(40, 224, 169, 0.28), transparent 32%),
    radial-gradient(circle at 68% 30%, rgba(148, 185, 255, 0.16), transparent 28%);
  filter: blur(18px);
}

.showcase-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  transform: rotate(-18deg);
}

.ring-one {
  inset: 12% 4% 16% 0;
}

.ring-two {
  inset: 4% 18% 26% 11%;
  border-color: rgba(40, 224, 169, 0.18);
  transform: rotate(24deg);
}

.glass-panel {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(22px);
}

.glass-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0 36%, rgba(255, 255, 255, 0.08) 48%, transparent 58%),
    radial-gradient(circle at 78% 18%, rgba(40, 224, 169, 0.16), transparent 32%);
  pointer-events: none;
}

.panel-desktop {
  left: 4%;
  top: 13%;
  width: 76%;
  height: 48%;
  transform: perspective(1000px) rotateY(-12deg) rotateX(5deg);
}

.panel-bar {
  display: flex;
  gap: 7px;
  padding: 18px 20px;
}

.panel-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.36);
}

.panel-bar span:nth-child(2) {
  background: rgba(40, 224, 169, 0.75);
}

.panel-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 12px;
  padding: 0 20px;
}

.panel-grid span {
  min-height: 34px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.panel-grid span:nth-child(1) {
  grid-row: span 3;
  min-height: 158px;
  background:
    linear-gradient(135deg, rgba(40, 224, 169, 0.24), rgba(148, 185, 255, 0.08)),
    rgba(255, 255, 255, 0.08);
}

.panel-grid span:nth-child(4),
.panel-grid span:nth-child(7) {
  background: rgba(40, 224, 169, 0.18);
}

.panel-chart {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 22px;
  display: flex;
  align-items: end;
  gap: 9px;
  height: 50px;
}

.panel-chart i {
  flex: 1;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, rgba(40, 224, 169, 0.82), rgba(40, 224, 169, 0.1));
}

.panel-chart i:nth-child(1) { height: 42%; }
.panel-chart i:nth-child(2) { height: 72%; }
.panel-chart i:nth-child(3) { height: 100%; background: linear-gradient(180deg, rgba(148, 185, 255, 0.72), rgba(148, 185, 255, 0.08)); }

.panel-phone {
  right: 0;
  bottom: 8%;
  width: 30%;
  height: 55%;
  border-radius: 24px;
  transform: perspective(900px) rotateY(-18deg) rotateZ(4deg);
}

.phone-notch {
  width: 48px;
  height: 7px;
  margin: 18px auto 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.panel-phone span {
  display: block;
  width: calc(100% - 34px);
  height: 26%;
  margin: 12px auto;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.panel-phone span:nth-child(2) {
  background: linear-gradient(145deg, rgba(40, 224, 169, 0.28), rgba(148, 185, 255, 0.1));
}

.panel-flow {
  left: 12%;
  bottom: 2%;
  width: 52%;
  height: 32%;
  transform: perspective(900px) rotateX(58deg) rotateZ(-10deg);
}

.flow-node,
.flow-line {
  position: absolute;
}

.flow-node {
  z-index: 2;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 28px rgba(40, 224, 169, 0.78), 0 0 0 10px rgba(40, 224, 169, 0.1);
}

.n1 { left: 18%; top: 26%; }
.n2 { right: 20%; top: 18%; background: var(--accent-2); }
.n3 { left: 34%; bottom: 20%; }
.n4 { right: 26%; bottom: 28%; background: rgba(255, 255, 255, 0.74); }

.flow-line {
  height: 1px;
  background: linear-gradient(90deg, rgba(40, 224, 169, 0), rgba(40, 224, 169, 0.78), rgba(148, 185, 255, 0));
  transform-origin: left center;
}

.l1 { left: 22%; top: 32%; width: 58%; transform: rotate(-7deg); }
.l2 { left: 36%; bottom: 30%; width: 46%; transform: rotate(-2deg); }
.l3 { left: 22%; top: 34%; width: 40%; transform: rotate(43deg); }

.showcase-rail {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(40, 224, 169, 0.7), transparent);
  transform-origin: center;
}

.rail-one {
  left: -6%;
  right: 5%;
  top: 48%;
  transform: rotate(-23deg);
}

.rail-two {
  left: 18%;
  right: -12%;
  top: 62%;
  background: linear-gradient(90deg, transparent, rgba(148, 185, 255, 0.54), transparent);
  transform: rotate(18deg);
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 48px 64px;
}

.hero-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.eyebrow {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--muted);
}

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

h1 {
  max-width: 960px;
  margin-bottom: 20px;
  font-size: clamp(44px, 6.6vw, 100px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  font-weight: 560;
}

.hero-lede {
  max-width: 820px;
  margin-bottom: 22px;
  color: white;
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.02;
  font-weight: 560;
  letter-spacing: 0;
}

.hero-text {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.45;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  width: fit-content;
  flex-shrink: 0;
  margin-top: 30px;
  padding-bottom: 0;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  background: white;
  color: var(--ink);
  padding: 8px 8px 8px 24px;
  font-weight: 650;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.primary-button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.9);
}

.primary-button span[aria-hidden] {
  display: grid;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: white;
}

.ghost-link {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 650;
}

.hero-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-footer strong {
  color: white;
  font-weight: 600;
}

.intro-section,
.services-section,
.reference-section,
.process-section,
.contact-section {
  padding: 128px 48px;
}

.section-kicker {
  display: flex;
  gap: 92px;
  margin-bottom: 54px;
  padding-left: min(22vw, 336px);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 80px;
  padding-left: min(22vw, 336px);
}

.intro-grid h2,
.services-top h2,
.process-heading h2,
.contact-panel h2 {
  margin-bottom: 0;
  font-size: clamp(44px, 5vw, 82px);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 560;
}

.intro-grid p,
.section-copy {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.services-section {
  background: var(--surface);
}

.services-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}

.service-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.78);
}

.service-card {
  min-height: 620px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 38px;
  border-right: 1px solid rgba(255, 255, 255, 0.78);
}

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

.service-card.reverse .service-visual {
  order: -1;
}

.service-number {
  color: var(--muted);
  font-size: 12px;
}

.service-card h3 {
  margin-bottom: 0;
  font-size: 28px;
  line-height: 1.08;
  font-weight: 560;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.service-visual {
  position: relative;
  min-height: 270px;
  margin-top: auto;
  overflow: hidden;
  border-radius: var(--radius);
  background: #141612;
  isolation: isolate;
}

.service-visual img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 9, 8, 0.08), rgba(8, 9, 8, 0.28)),
    radial-gradient(circle at 70% 22%, rgba(40, 224, 169, 0.16), transparent 32%);
  pointer-events: none;
}

.service-card:hover .service-visual img {
  transform: scale(1.07);
}

.reference-section {
  background: var(--bg);
}

.reference-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}

.reference-top h2 {
  max-width: 900px;
  margin-bottom: 0;
  font-size: clamp(44px, 5vw, 82px);
  line-height: 1.02;
  font-weight: 560;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.reference-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 8%, rgba(40, 224, 169, 0.1), transparent 36%),
    var(--bg);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    background 240ms ease;
}

.reference-card:hover {
  transform: translateY(-4px);
  background:
    radial-gradient(circle at 76% 8%, rgba(40, 224, 169, 0.16), transparent 40%),
    #f9f8f2;
}

.reference-shot {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0c100d;
  border-bottom: 1px solid var(--line);
}

.reference-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reference-card:hover .reference-shot img {
  transform: scale(1.045);
}

.reference-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 22px 26px 28px;
}

.reference-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.reference-index {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.2em;
}

.reference-card h3 {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 560;
}

.reference-domain {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.01em;
}

.reference-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.reference-card svg {
  width: 22px;
  height: 22px;
  color: var(--muted);
  transition: transform 240ms ease, color 240ms ease;
}

.reference-card:hover svg {
  color: var(--ink);
  transform: translate(3px, -3px);
}

.process-section {
  background: var(--bg);
}

.process-heading {
  max-width: 900px;
  margin-bottom: 70px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.process-item {
  position: relative;
  padding: 34px 34px 0 0;
}

.process-icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid rgba(22, 23, 20, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 70% 20%, rgba(40, 224, 169, 0.2), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.24));
  color: var(--ink);
  box-shadow: 0 18px 46px rgba(22, 23, 20, 0.08);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 240ms ease,
    background 240ms ease;
}

.process-icon svg {
  width: 36px;
  height: 36px;
}

.process-item:hover .process-icon {
  transform: translateY(-4px);
  border-color: rgba(40, 224, 169, 0.34);
  background:
    radial-gradient(circle at 70% 20%, rgba(40, 224, 169, 0.32), transparent 40%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.34));
}

.process-item span {
  display: block;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.2em;
}

.process-item h3 {
  margin-bottom: 16px;
  font-size: 28px;
  font-weight: 560;
}

.process-item p {
  max-width: 300px;
  color: var(--muted);
  line-height: 1.6;
}

.contact-section {
  background: var(--dark);
  color: white;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 80px;
  align-items: start;
  max-width: 1380px;
  margin: 0 auto;
}

.contact-panel h2 {
  margin-bottom: 28px;
}

.contact-panel p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.65;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: white;
  padding: 15px 16px;
  outline: 0;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(40, 224, 169, 0.58);
}

.dark-button {
  justify-self: start;
  margin-top: 6px;
  background: var(--accent);
}

.dark-button:hover {
  background: #5de8be;
}

.site-footer {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 110px;
  padding: 86px 48px 34px;
  background:
    linear-gradient(180deg, #090a09, #050605),
    var(--dark);
  color: white;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 2;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(40, 224, 169, 0.55),
    rgba(148, 185, 255, 0.4),
    transparent
  );
}

.site-footer img {
  width: 178px;
}

.footer-glow {
  position: absolute;
  top: -180px;
  right: 8%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(40, 224, 169, 0.16), transparent 62%),
    radial-gradient(circle at 72% 30%, rgba(148, 185, 255, 0.1), transparent 44%);
  filter: blur(12px);
}

.footer-top,
.footer-main,
.footer-bottom {
  position: relative;
  z-index: 1;
  max-width: 1380px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 72px;
  align-items: center;
  padding-bottom: 76px;
}

.footer-brand p {
  max-width: 620px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(20px, 2.3vw, 34px);
  line-height: 1.18;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 62px;
  padding: 9px 9px 9px 26px;
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-weight: 700;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease;
}

.footer-cta:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.9);
}

.footer-cta span[aria-hidden] {
  display: grid;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 40px;
  padding: 42px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-main div {
  display: grid;
  gap: 14px;
  align-content: start;
}

.footer-label {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-main a,
.footer-main div > span:not(.footer-label) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
}

.footer-main a {
  transition: color 180ms ease, transform 180ms ease;
}

.footer-main a:hover {
  color: white;
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 30px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(10px);
  transition: opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

body.menu-open .nav-pill {
  border-radius: 22px;
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .hero-showcase {
    right: -110px;
    top: 118px;
    width: 470px;
    height: 500px;
    min-width: 0;
    opacity: 0.52;
  }

  .hero-row,
  .services-top,
  .reference-top,
  .intro-grid,
  .contact-panel,
  .footer-top {
    grid-template-columns: 1fr;
    display: grid;
    gap: 36px;
  }

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

  .hero-actions {
    justify-content: flex-start;
  }

  .section-kicker,
  .intro-grid {
    padding-left: 0;
  }

  .service-grid,
  .reference-grid,
  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 14px;
    padding: 0 16px;
  }

  .brand img {
    width: 126px;
  }

  .nav-pill {
    position: fixed;
    top: 14px;
    right: 16px;
    width: 108px;
    min-height: 54px;
    overflow: hidden;
    padding: 7px;
    border-radius: 999px;
    background:
      radial-gradient(circle at 80% 12%, rgba(40, 224, 169, 0.22), transparent 32%),
      rgba(20, 21, 19, 0.88);
    transition:
      inset 640ms cubic-bezier(0.22, 1, 0.36, 1),
      width 640ms cubic-bezier(0.22, 1, 0.36, 1),
      min-height 640ms cubic-bezier(0.22, 1, 0.36, 1),
      border-radius 640ms cubic-bezier(0.22, 1, 0.36, 1),
      background 360ms ease,
      box-shadow 360ms ease;
  }

  .menu-button {
    display: inline-flex;
  }

  .lang-switch {
    display: none;
  }

  body.menu-open .lang-switch {
    display: inline-flex;
    margin: 30px 0 0;
    background: rgba(255, 255, 255, 0.08);
  }

  body.menu-open .lang-switch button {
    min-width: 48px;
    min-height: 40px;
    font-size: 15px;
  }

  .nav-pill a {
    display: none;
  }

  body.menu-open .nav-pill a {
    display: flex;
    position: static;
    width: 100%;
    min-height: auto;
    justify-content: flex-start;
    padding: 13px 0;
    border-radius: 0;
    background: transparent;
    color: white;
    font-size: clamp(38px, 13vw, 58px);
    line-height: 0.96;
    font-weight: 560;
    letter-spacing: 0;
    opacity: 0;
    transform: translateY(18px);
    animation: mobileLinkIn 620ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  body.menu-open .nav-pill a:nth-child(1) { animation-delay: 120ms; }
  body.menu-open .nav-pill a:nth-child(2) { animation-delay: 180ms; }
  body.menu-open .nav-pill a:nth-child(3) { animation-delay: 240ms; }
  body.menu-open .nav-pill a:nth-child(4) { animation-delay: 300ms; }
  body.menu-open .nav-pill a:nth-child(5) { animation-delay: 360ms; }

  body.menu-open .nav-pill {
    inset: 0;
    width: 100vw;
    min-height: 100dvh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 110px 28px 48px;
    border-radius: 0;
    background:
      radial-gradient(circle at 82% 18%, rgba(40, 224, 169, 0.24), transparent 30%),
      radial-gradient(circle at 12% 82%, rgba(148, 185, 255, 0.12), transparent 32%),
      linear-gradient(180deg, rgba(13, 16, 14, 0.98), rgba(5, 6, 5, 0.99));
    box-shadow: none;
  }

  body.menu-open .nav-pill::before {
    content: "VTR Tech";
    position: absolute;
    left: 28px;
    top: 30px;
    color: rgba(255, 255, 255, 0.46);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
  }

  body.menu-open .nav-pill::after {
    content: "Web • Mobile • n8n • Marketing";
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  body.menu-open .menu-button {
    position: absolute;
    top: 14px;
    right: 16px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.08);
  }

  body.menu-open .menu-icon {
    background: transparent;
    transform: rotate(180deg);
  }

  body.menu-open .menu-icon::before {
    transform: translateY(0) rotate(45deg);
  }

  body.menu-open .menu-icon::after {
    transform: translateY(0) rotate(-45deg);
  }

  .hero {
    min-height: 900px;
  }

  .hero-showcase {
    display: none;
  }

  .hero-content {
    padding: 0 20px 32px;
  }

  h1 {
    font-size: clamp(38px, 10.5vw, 60px);
  }

  .hero-row {
    gap: 28px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 36px;
  }

  .intro-section,
  .services-section,
  .reference-section,
  .process-section,
  .contact-section {
    padding: 86px 20px;
  }

  .section-kicker {
    gap: 34px;
  }

  .intro-grid h2,
  .services-top h2,
  .process-heading h2,
  .contact-panel h2 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .service-grid,
  .reference-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .reference-card {
    min-height: 310px;
    padding: 28px;
  }

  .service-card,
  .service-card:nth-child(2) {
    min-height: 560px;
    padding: 28px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.78);
  }

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

  .process-item {
    padding-right: 0;
  }

  .site-footer {
    padding: 72px 20px 30px;
  }

  .site-footer img {
    width: 166px;
  }

  .footer-top {
    padding-bottom: 54px;
  }

  .footer-brand p {
    margin-top: 28px;
  }

  .footer-cta {
    justify-self: start;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 36px 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@keyframes mobileLinkIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}
