@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=IBM+Plex+Sans:wght@300;400;500;600&family=IBM+Plex+Mono:wght@300;400;500;600&display=swap');

:root {
  --wt-bg-global: #FAFBFC;
  --wt-bg-secondary: #F1F3F5;
  --wt-bg-wireframe: #E2E8F0;
  --wt-bg-card: #FFFFFF;
  --wt-text-primary: #1E293B;
  --wt-text-secondary: #64748B;
  --wt-accent-blue: #2563EB;
  --wt-accent-orange: #F97316;
  --wt-line-wireframe: #94A3B8;
  --wt-line-structure: #334155;
  --wt-deco-cyan: #06B6D4;
  --wt-deco-lime: #84CC16;
  --wt-overlay-blue: rgba(37, 99, 235, 0.08);
  --wt-shadow-blue: 0 4px 16px rgba(37, 99, 235, 0.15);
  --wt-shadow-soft: 0 2px 8px rgba(30, 41, 59, 0.06);
  --wt-shadow-medium: 0 2px 8px rgba(37, 99, 235, 0.1);
  --wt-font-head: 'Space Grotesk', sans-serif;
  --wt-font-body: 'IBM Plex Sans', sans-serif;
  --wt-font-mono: 'IBM Plex Mono', monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(37, 99, 235, 0.4) transparent;
}

html::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  background: rgba(37, 99, 235, 0.4);
  border-radius: 0;
}

body {
  font-family: var(--wt-font-body);
  background: var(--wt-bg-global);
  color: var(--wt-text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-size: 16px;
}

strong, p, span, b {
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--wt-font-head);
  color: var(--wt-text-primary);
  margin-top: 0;
}

a {
  color: var(--wt-accent-blue);
  text-decoration: none;
  transition: color 0.2s linear;
}

a:hover {
  color: var(--wt-accent-orange);
}

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

.wt-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.wt-mono {
  font-family: var(--wt-font-mono);
}

.wt-head {
  font-family: var(--wt-font-head);
}

.wt-section {
  padding: 100px 0;
  position: relative;
}

.wt-section-sm {
  padding: 60px 0;
  position: relative;
}

.wt-divider {
  height: 3px;
  background: var(--wt-accent-blue);
  width: 100%;
  position: relative;
}

.wt-divider::before,
.wt-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--wt-accent-blue);
  border-radius: 0;
  transform: translateY(-50%);
}

.wt-divider::before {
  left: 20px;
}

.wt-divider::after {
  right: 20px;
}

.wt-section-tag {
  font-family: var(--wt-font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--wt-accent-blue);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid var(--wt-accent-blue);
}

.wt-h1 {
  font-family: var(--wt-font-head);
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--wt-text-primary);
  margin: 0 0 18px;
}

.wt-h2 {
  font-family: var(--wt-font-head);
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--wt-text-primary);
  margin: 0 0 18px;
}

.wt-h3 {
  font-family: var(--wt-font-body);
  font-size: 22px;
  font-weight: 600;
  color: var(--wt-text-primary);
  margin: 0 0 12px;
}

.wt-text-tech {
  font-family: var(--wt-font-mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--wt-accent-blue);
  text-transform: uppercase;
}

.wt-text-sub {
  font-family: var(--wt-font-mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--wt-text-secondary);
}

.wt-btn {
  font-family: var(--wt-font-head);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: 2px;
  border: 2px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s linear;
  min-height: 48px;
}

.wt-btn-primary {
  background: var(--wt-accent-blue);
  color: #FFFFFF;
  border-color: var(--wt-accent-blue);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.wt-btn-primary:hover {
  background: #1D4ED8;
  color: #FFFFFF;
  border-color: #1D4ED8;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
  transform: translateY(-2px);
}

.wt-btn-outline {
  background: transparent;
  color: var(--wt-accent-blue);
  border-color: var(--wt-accent-blue);
}

.wt-btn-outline:hover {
  background: var(--wt-accent-blue);
  color: #FFFFFF;
}

.wt-btn-ghost {
  background: transparent;
  color: var(--wt-text-primary);
  border-color: var(--wt-text-primary);
}

.wt-btn-ghost:hover {
  background: var(--wt-text-primary);
  color: #FFFFFF;
}

.wt-btn-lg {
  padding: 18px 40px;
  font-size: 16px;
  min-height: 56px;
}

.wt-topbar {
  background: rgba(250, 251, 252, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--wt-bg-wireframe);
  position: sticky;
  top: 0;
  z-index: 1020;
}

.wt-topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  border-bottom: 1px solid var(--wt-bg-wireframe);
  padding: 0 24px;
  font-family: var(--wt-font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--wt-text-secondary);
  text-transform: uppercase;
}

.wt-topbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--wt-text-primary);
}

.wt-topbar-mark {
  width: 28px;
  height: 28px;
  border: 2px solid var(--wt-accent-blue);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wt-accent-blue);
  font-family: var(--wt-font-mono);
  font-size: 12px;
  font-weight: 600;
}

.wt-topbar-domain {
  color: var(--wt-text-secondary);
  font-weight: 500;
}

.wt-topbar-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--wt-text-primary);
  flex-wrap: wrap;
  overflow-x: auto;
  max-width: 100%;
}

.wt-topbar-contact a {
  color: var(--wt-text-primary);
  font-weight: 500;
}

.wt-topbar-contact a:hover {
  color: var(--wt-accent-blue);
}

.wt-navbar {
  background: rgba(250, 251, 252, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--wt-bg-wireframe);
  box-shadow: 0 1px 8px rgba(30, 41, 59, 0.04);
}

.wt-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.wt-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--wt-text-primary);
}

.wt-brand-mark {
  width: 44px;
  height: 44px;
  border: 2px solid var(--wt-line-wireframe);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wt-brand-mark svg {
  width: 26px;
  height: 26px;
  stroke: var(--wt-accent-blue);
  fill: none;
  stroke-width: 2;
}

.wt-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.wt-brand-domain {
  font-family: var(--wt-font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--wt-text-secondary);
  text-transform: lowercase;
}

.wt-brand-name {
  font-family: var(--wt-font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--wt-text-primary);
  text-transform: uppercase;
}

.wt-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.wt-nav a {
  font-family: var(--wt-font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--wt-text-primary);
  padding: 8px 14px;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: all 0.2s linear;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.wt-nav a:hover,
.wt-nav a.active {
  background: transparent;
  border-color: var(--wt-accent-blue);
  color: var(--wt-accent-blue);
}

.wt-nav-cta {
  margin-left: 14px;
}

.wt-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--wt-accent-blue);
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 2px;
  padding: 0;
}

.wt-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--wt-accent-blue);
  transition: all 0.3s ease;
}

.wt-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

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

.wt-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.wt-mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90vh;
  background: var(--wt-bg-global);
  z-index: 9999;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 100px 24px 40px;
  border-bottom: 3px solid var(--wt-accent-blue);
}

.wt-mobile-drawer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(to right, var(--wt-bg-wireframe) 1px, transparent 1px),
    linear-gradient(to bottom, var(--wt-bg-wireframe) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
  pointer-events: none;
}

.wt-mobile-drawer.open {
  transform: translateY(0);
}

.wt-mobile-drawer .wt-nav {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  position: relative;
  z-index: 1;
}

.wt-mobile-drawer .wt-nav a {
  font-family: var(--wt-font-head);
  font-size: 18px;
  font-weight: 500;
  padding: 18px 0;
  border: none;
  border-bottom: 1px solid var(--wt-bg-wireframe);
  border-radius: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.wt-mobile-drawer .wt-nav a::before {
  content: attr(data-num);
  font-family: var(--wt-font-mono);
  font-size: 12px;
  color: var(--wt-accent-blue);
  font-weight: 500;
}

.wt-mobile-drawer .wt-nav a:hover {
  background: transparent;
  color: var(--wt-accent-blue);
  padding-left: 8px;
}

.wt-mobile-drawer .wt-btn {
  margin-top: 24px;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.wt-drawer-close {
  position: absolute;
  top: 60px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--wt-accent-blue);
  color: var(--wt-accent-blue);
  cursor: pointer;
  z-index: 2;
  font-size: 22px;
  font-family: var(--wt-font-mono);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 2px;
}

.wt-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
  overflow: hidden;
  background: var(--wt-bg-global);
}

.wt-hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(to right, var(--wt-bg-wireframe) 1px, transparent 1px),
    linear-gradient(to bottom, var(--wt-bg-wireframe) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.6;
  pointer-events: none;
}

.wt-hero-frame-tr {
  position: absolute;
  top: 80px;
  right: 5%;
  width: 400px;
  height: 300px;
  border: 2px dashed var(--wt-accent-blue);
  opacity: 0.18;
  pointer-events: none;
}

.wt-hero-frame-bl {
  position: absolute;
  bottom: 80px;
  left: 5%;
  width: 300px;
  height: 200px;
  border: 1px dashed var(--wt-accent-orange);
  opacity: 0.18;
  pointer-events: none;
}

.wt-hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.wt-hero-particle {
  position: absolute;
  border: 2px solid var(--wt-accent-blue);
  background: transparent;
  animation: wtFloat 18s ease-in-out infinite;
}

.wt-hero-particle.p1 {
  width: 16px; height: 16px; top: 15%; left: 12%; border-color: var(--wt-accent-blue);
}
.wt-hero-particle.p2 {
  width: 22px; height: 22px; top: 35%; right: 18%; border-color: var(--wt-deco-cyan); animation-delay: -3s;
  transform: rotate(45deg);
}
.wt-hero-particle.p3 {
  width: 14px; height: 14px; bottom: 30%; left: 30%; border-color: var(--wt-accent-orange); animation-delay: -6s;
  border-radius: 50%;
}
.wt-hero-particle.p4 {
  width: 26px; height: 26px; bottom: 20%; right: 30%; border-color: var(--wt-accent-blue); animation-delay: -9s;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.wt-hero-particle.p5 {
  width: 12px; height: 12px; top: 60%; left: 70%; border-color: var(--wt-deco-cyan); animation-delay: -12s;
}
.wt-hero-particle.p6 {
  width: 18px; height: 18px; top: 80%; left: 50%; border-color: var(--wt-accent-orange); animation-delay: -15s;
  border-radius: 50%;
}

@keyframes wtFloat {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  25% { transform: translate(20px, -15px) rotate(45deg); }
  50% { transform: translate(-15px, 20px) rotate(90deg); }
  75% { transform: translate(15px, 10px) rotate(135deg); }
}

.wt-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.wt-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--wt-font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--wt-accent-blue);
  text-transform: uppercase;
  margin-bottom: 22px;
  padding: 6px 12px;
  border: 1px solid var(--wt-accent-blue);
  background: rgba(37, 99, 235, 0.04);
}

.wt-hero-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--wt-accent-blue);
  border-radius: 0;
  animation: wtPulse 1.5s ease-in-out infinite;
}

@keyframes wtPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.wt-hero-title {
  font-family: var(--wt-font-head);
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--wt-text-primary);
  margin: 0 0 18px;
}

.wt-hero-techline {
  font-family: var(--wt-font-mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--wt-accent-blue);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.wt-hero-techline span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--wt-accent-blue);
}

.wt-hero-techline span::before {
  content: '▸';
  color: var(--wt-accent-orange);
}

.wt-hero-sub {
  font-family: var(--wt-font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--wt-text-secondary);
  line-height: 1.7;
  margin: 0 0 26px;
  max-width: 560px;
}

.wt-hero-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0;
}

.wt-hero-divider .dot {
  width: 6px;
  height: 6px;
  background: var(--wt-accent-blue);
}

.wt-hero-divider .line {
  flex: 1;
  height: 1px;
  background: var(--wt-bg-wireframe);
}

.wt-hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.wt-hero-image-wrap {
  position: relative;
  border: 1px solid var(--wt-bg-wireframe);
  background: var(--wt-bg-card);
  padding: 12px;
  box-shadow: var(--wt-shadow-soft);
}

.wt-hero-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.wt-hero-image-wrap::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  width: 60px;
  height: 60px;
  border-top: 2px solid var(--wt-accent-blue);
  border-left: 2px solid var(--wt-accent-blue);
  pointer-events: none;
}

.wt-hero-image-wrap::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 60px;
  height: 60px;
  border-bottom: 2px solid var(--wt-accent-blue);
  border-right: 2px solid var(--wt-accent-blue);
  pointer-events: none;
}

.wt-hero-image-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(250, 251, 252, 0.95);
  border: 1px solid var(--wt-accent-blue);
  padding: 10px 16px;
  font-family: var(--wt-font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--wt-accent-blue);
  text-transform: uppercase;
}

.wt-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 0;
  border: 1px solid var(--wt-bg-wireframe);
  background: var(--wt-bg-wireframe);
  position: relative;
}

.wt-bento-cell {
  background: var(--wt-bg-card);
  padding: 28px;
  border: 1px solid var(--wt-bg-wireframe);
  position: relative;
  transition: all 0.2s linear;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  overflow: hidden;
}

.wt-bento-cell:hover {
  z-index: 15;
  transform: scale(1.02);
  border-color: var(--wt-accent-blue);
  border-width: 2px;
  background: var(--wt-bg-secondary);
  box-shadow: var(--wt-shadow-blue);
}

.wt-bento-cell.large {
  grid-column: span 2;
  grid-row: span 2;
}

.wt-bento-cell.wide {
  grid-column: span 2;
}
.wt-bento-cell.wide > div[style*="grid-template-columns"] {
  grid-template-columns: 1fr !important;
  gap: 16px !important;
}

.wt-bento-custom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
@media (max-width: 768px) {
  .wt-bento-custom-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .wt-bento-custom-grid .wt-bento-img-wrap {
    height: 140px !important;
  }
}

.wt-bento-cell.tall {
  grid-row: span 2;
}

.wt-bento-num {
  font-family: var(--wt-font-mono);
  font-size: 12px;
  color: var(--wt-accent-blue);
  letter-spacing: 0.08em;
}

.wt-bento-icon {
  width: 48px;
  height: 48px;
  border: 2px solid var(--wt-accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--wt-accent-blue);
}

.wt-bento-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.wt-bento-cell h3 {
  font-family: var(--wt-font-head);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--wt-text-primary);
}

.wt-bento-cell p {
  font-family: var(--wt-font-body);
  font-size: 14px;
  color: var(--wt-text-secondary);
  margin: 0;
  line-height: 1.55;
}

.wt-bento-meta {
  font-family: var(--wt-font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--wt-text-secondary);
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--wt-bg-wireframe);
}

.wt-bento-cell.featured {
  background: var(--wt-accent-blue);
  border-color: var(--wt-accent-blue);
  color: #FFFFFF;
}

.wt-bento-cell.featured h3,
.wt-bento-cell.featured p,
.wt-bento-cell.featured .wt-bento-num,
.wt-bento-cell.featured .wt-bento-meta {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.3);
}

.wt-bento-cell.featured:hover {
  background: #1D4ED8;
  border-color: #1D4ED8;
}

.wt-bento-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  opacity: 0.92;
}

.wt-bento-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid var(--wt-bg-wireframe);
}

.wt-node-graph {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

.wt-node-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 50px;
  position: relative;
}

.wt-node-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 60px;
  left: 40px;
  width: 1.5px;
  height: calc(100% + 30px);
  border-left: 1.5px dashed var(--wt-accent-blue);
  opacity: 0.4;
}

.wt-node {
  width: 80px;
  height: 80px;
  border: 2px solid var(--wt-accent-blue);
  background: var(--wt-bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 2;
  transition: all 0.2s linear;
  font-family: var(--wt-font-mono);
  color: var(--wt-accent-blue);
}

.wt-node svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.wt-node-num {
  font-size: 11px;
  font-weight: 500;
  margin-top: 4px;
}

.wt-node-step:hover .wt-node {
  transform: scale(1.1);
  background: var(--wt-bg-secondary);
  border-width: 2px;
  box-shadow: var(--wt-shadow-blue);
}

.wt-node-card {
  background: var(--wt-bg-card);
  border: 1px solid var(--wt-bg-wireframe);
  padding: 24px 28px;
  position: relative;
  transition: all 0.2s linear;
}

.wt-node-card:hover {
  z-index: 10;
  border-color: var(--wt-accent-blue);
  border-width: 2px;
  background: var(--wt-bg-secondary);
  box-shadow: var(--wt-shadow-blue);
}

.wt-node-card h3 {
  font-family: var(--wt-font-head);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--wt-text-primary);
}

.wt-node-card .wt-node-meta {
  font-family: var(--wt-font-mono);
  font-size: 11px;
  color: var(--wt-accent-blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.wt-node-card p {
  margin: 0;
  font-size: 14px;
  color: var(--wt-text-secondary);
  line-height: 1.65;
}

.wt-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
}

.wt-masonry-item {
  background: var(--wt-bg-card);
  border: 1px solid var(--wt-bg-wireframe);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s linear;
}

.wt-masonry-item:hover {
  z-index: 15;
  transform: scale(1.03);
  border-color: var(--wt-accent-blue);
  border-width: 2px;
  background: var(--wt-bg-secondary);
  box-shadow: var(--wt-shadow-blue);
}

.wt-masonry-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.wt-masonry-tag {
  padding: 16px 18px;
  border-top: 1px solid var(--wt-bg-wireframe);
}

.wt-masonry-tag h4 {
  font-family: var(--wt-font-head);
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--wt-text-primary);
}

.wt-masonry-tag .wt-tag-meta {
  font-family: var(--wt-font-mono);
  font-size: 11px;
  color: var(--wt-accent-blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wt-masonry-item.tall .wt-masonry-img {
  height: 380px;
}

.wt-masonry-item.wide {
  grid-column: span 2;
}

.wt-sticky {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.wt-sticky-image {
  position: sticky;
  top: 130px;
  border: 1px solid var(--wt-bg-wireframe);
  background: var(--wt-bg-card);
  padding: 10px;
}

.wt-sticky-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.wt-sticky-image::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  width: 40px;
  height: 40px;
  border-top: 2px solid var(--wt-accent-orange);
  border-left: 2px solid var(--wt-accent-orange);
}

.wt-sticky-image::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 40px;
  height: 40px;
  border-bottom: 2px solid var(--wt-accent-orange);
  border-right: 2px solid var(--wt-accent-orange);
}

.wt-fact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.wt-fact {
  border: 1px solid var(--wt-accent-blue);
  padding: 18px 20px;
  background: var(--wt-bg-card);
  transition: all 0.2s linear;
  position: relative;
  z-index: 1;
}

.wt-fact:hover {
  z-index: 10;
  background: var(--wt-bg-secondary);
  border-width: 2px;
  box-shadow: var(--wt-shadow-blue);
}

.wt-fact-num {
  font-family: var(--wt-font-mono);
  font-size: 28px;
  font-weight: 600;
  color: var(--wt-accent-blue);
  margin: 0 0 4px;
  line-height: 1;
}

.wt-fact-label {
  font-family: var(--wt-font-mono);
  font-size: 11px;
  color: var(--wt-text-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wt-coverflow {
  position: relative;
  perspective: 1200px;
  padding: 40px 0;
}

.wt-coverflow-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 30px 20px;
  scrollbar-width: none;
}

.wt-coverflow-track::-webkit-scrollbar {
  display: none;
}

.wt-coverflow-card {
  flex: 0 0 320px;
  height: 380px;
  background: var(--wt-bg-card);
  border: 1px solid var(--wt-bg-wireframe);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  scroll-snap-align: center;
  transition: all 0.2s linear;
  position: relative;
  cursor: pointer;
}

.wt-coverflow-card:hover,
.wt-coverflow-card.active {
  z-index: 20;
  transform: scale(1.04);
  border-color: var(--wt-accent-blue);
  border-width: 2px;
  background: var(--wt-bg-secondary);
  box-shadow: var(--wt-shadow-blue);
}

.wt-coverflow-num {
  font-family: var(--wt-font-head);
  font-size: 56px;
  font-weight: 700;
  color: var(--wt-accent-blue);
  line-height: 1;
  margin-bottom: 16px;
}

.wt-coverflow-card h3 {
  font-family: var(--wt-font-head);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--wt-text-primary);
}

.wt-coverflow-card p {
  font-size: 13px;
  color: var(--wt-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.wt-coverflow-nav {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  justify-content: flex-end;
}

.wt-coverflow-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid var(--wt-accent-blue);
  background: transparent;
  color: var(--wt-accent-blue);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wt-font-mono);
  font-size: 18px;
  padding: 0;
  border-radius: 0;
  transition: all 0.2s linear;
}

.wt-coverflow-arrow:hover {
  background: var(--wt-accent-blue);
  color: #FFFFFF;
}

.wt-team {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.wt-team-list {
  border-top: 1px solid var(--wt-bg-wireframe);
}

.wt-team-row {
  padding: 22px 0;
  border-bottom: 1px solid var(--wt-bg-wireframe);
  cursor: pointer;
  transition: all 0.2s linear;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  padding-left: 16px;
}

.wt-team-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: transparent;
  transition: all 0.2s linear;
}

.wt-team-row:hover,
.wt-team-row.active {
  background: var(--wt-bg-secondary);
  padding-left: 22px;
  border-color: var(--wt-bg-wireframe);
  z-index: 5;
}

.wt-team-row:hover::before,
.wt-team-row.active::before {
  background: var(--wt-accent-blue);
}

.wt-team-name {
  font-family: var(--wt-font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--wt-text-primary);
}

.wt-team-role {
  font-family: var(--wt-font-mono);
  font-size: 11px;
  color: var(--wt-accent-blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wt-team-preview {
  position: sticky;
  top: 140px;
  min-height: 420px;
  background: var(--wt-bg-card);
  border: 1px solid var(--wt-bg-wireframe);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 1;
  transition: all 0.3s ease;
}

.wt-team-preview img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border: 2px solid var(--wt-bg-wireframe);
}

.wt-team-preview h4 {
  font-family: var(--wt-font-head);
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  color: var(--wt-text-primary);
}

.wt-team-preview-role {
  font-family: var(--wt-font-mono);
  font-size: 11px;
  color: var(--wt-accent-blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

.wt-team-preview p {
  font-size: 13px;
  color: var(--wt-text-secondary);
  line-height: 1.65;
  margin: 0;
}

.wt-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.wt-review {
  background: var(--wt-bg-card);
  border: 1px solid var(--wt-bg-wireframe);
  padding: 26px;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.wt-review:hover {
  z-index: 20;
  transform: scale(1.04);
  border-color: var(--wt-accent-blue);
  border-width: 2px;
  background: var(--wt-bg-secondary);
  box-shadow: var(--wt-shadow-blue);
}

.wt-review-stars {
  color: var(--wt-accent-blue);
  font-family: var(--wt-font-mono);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.wt-review-text {
  font-size: 13px;
  color: var(--wt-text-primary);
  line-height: 1.7;
  margin: 0 0 18px;
}

.wt-review-meta {
  font-family: var(--wt-font-mono);
  font-size: 11px;
  color: var(--wt-text-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-top: 14px;
  border-top: 1px solid var(--wt-bg-wireframe);
}

.wt-accordion {
  max-width: 880px;
  margin: 0 auto;
}

.wt-acc-item {
  border: 1px solid var(--wt-bg-wireframe);
  background: var(--wt-bg-card);
  margin-bottom: 10px;
  transition: all 0.2s linear;
  position: relative;
}

.wt-acc-item:hover {
  border-color: var(--wt-accent-blue);
  background: var(--wt-bg-secondary);
}

.wt-acc-item.open {
  z-index: 10;
  border-color: var(--wt-accent-blue);
  border-width: 2px;
}

.wt-acc-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--wt-font-head);
  font-size: 16px;
  font-weight: 500;
  color: var(--wt-text-primary);
  text-align: left;
}

.wt-acc-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--wt-accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--wt-font-mono);
  font-size: 16px;
  color: var(--wt-accent-blue);
  transition: all 0.3s ease;
  font-weight: 400;
}

.wt-acc-item.open .wt-acc-icon {
  background: var(--wt-accent-blue);
  color: #FFFFFF;
  transform: rotate(45deg);
}

.wt-acc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
}

.wt-acc-content-inner {
  padding: 0 24px 24px;
  font-size: 14px;
  color: var(--wt-text-secondary);
  line-height: 1.75;
}

.wt-contact-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  position: relative;
}

.wt-contact-split::before {
  content: '';
  position: absolute;
  top: 0;
  left: 55%;
  width: 4px;
  height: 100%;
  background: var(--wt-accent-blue);
  transform: translateX(-50%);
  z-index: 1;
}

.wt-contact-form {
  background: var(--wt-bg-card);
  padding: 56px;
  border: 1px solid var(--wt-bg-wireframe);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
}

.wt-form-row {
  margin-bottom: 22px;
}

.wt-form-label {
  font-family: var(--wt-font-mono);
  font-size: 11px;
  color: var(--wt-text-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.wt-form-input,
.wt-form-select,
.wt-form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--wt-bg-wireframe);
  padding: 10px 0;
  font-family: var(--wt-font-body);
  font-size: 15px;
  color: var(--wt-text-primary);
  transition: border-color 0.3s ease;
  outline: none;
}

.wt-form-input::placeholder,
.wt-form-textarea::placeholder {
  color: var(--wt-text-secondary);
}

.wt-form-input:focus,
.wt-form-select:focus,
.wt-form-textarea:focus {
  border-bottom-color: var(--wt-accent-blue);
  border-bottom-width: 2px;
}

.wt-form-textarea {
  resize: vertical;
  min-height: 100px;
}

.wt-contact-info {
  background: var(--wt-text-primary);
  color: #FFFFFF;
  padding: 56px;
}

.wt-contact-info h2 {
  color: #FFFFFF;
  font-family: var(--wt-font-head);
  font-size: 40px;
  font-weight: 600;
  margin: 0 0 24px;
}

.wt-contact-info .wt-phone-big {
  font-family: var(--wt-font-head);
  font-size: 36px;
  color: var(--wt-accent-orange);
  display: block;
  margin-bottom: 24px;
  font-weight: 600;
}

.wt-contact-info .wt-email-mono {
  font-family: var(--wt-font-mono);
  font-size: 14px;
  color: var(--wt-deco-cyan);
  display: block;
  margin-bottom: 30px;
}

.wt-contact-row {
  margin-bottom: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.wt-contact-row .wt-row-label {
  font-family: var(--wt-font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.wt-contact-row .wt-row-value {
  font-family: var(--wt-font-body);
  font-size: 15px;
  color: #FFFFFF;
}

.wt-contact-row .wt-row-value a {
  color: #FFFFFF;
}

.wt-contact-row .wt-row-value a:hover {
  color: var(--wt-accent-blue);
}

.wt-footer {
  background: var(--wt-text-primary);
  color: #FFFFFF;
  padding: 80px 0 30px;
  position: relative;
  border-top: 3px solid var(--wt-accent-blue);
  overflow: hidden;
}

.wt-footer::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background-image: radial-gradient(circle, var(--wt-accent-blue) 2px, transparent 2px);
  background-size: 30px 3px;
}

.wt-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.wt-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wt-footer-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wt-footer-brand-mark {
  width: 36px;
  height: 36px;
  border: 2px solid var(--wt-accent-blue);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wt-accent-blue);
  font-family: var(--wt-font-mono);
  font-size: 14px;
  font-weight: 600;
}

.wt-footer-brand-domain {
  font-family: var(--wt-font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: lowercase;
}

.wt-footer-brand-name {
  font-family: var(--wt-font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #FFFFFF;
  text-transform: uppercase;
}

.wt-footer-about {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 14px 0 0;
}

.wt-footer-col h5 {
  font-family: var(--wt-font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--wt-accent-blue);
  text-transform: uppercase;
  margin: 0 0 18px;
  font-weight: 500;
}

.wt-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wt-footer-col ul li {
  margin-bottom: 10px;
}

.wt-footer-col ul li a {
  font-family: var(--wt-font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s linear;
}

.wt-footer-col ul li a:hover {
  color: var(--wt-accent-blue);
}

.wt-footer-bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--wt-font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
}

.wt-footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
  margin-left: 18px;
}

.wt-footer-bottom a:hover {
  color: var(--wt-accent-blue);
}

.wt-cookie-banner {
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  width: auto;
  max-width: 380px;
  margin: 0 auto;
  background: var(--wt-bg-card);
  border: 1px solid var(--wt-accent-blue);
  box-shadow: 0 4px 20px rgba(30, 41, 59, 0.15);
  padding: 22px;
  z-index: 9998;
  font-family: var(--wt-font-body);
  color: var(--wt-text-primary);
}

.wt-cookie-banner h6 {
  font-family: var(--wt-font-head);
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--wt-text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.wt-cookie-banner h6::before {
  content: '◼';
  color: var(--wt-accent-blue);
  font-size: 10px;
}

.wt-cookie-banner p {
  font-size: 12px;
  color: var(--wt-text-secondary);
  line-height: 1.6;
  margin: 0 0 14px;
}

.wt-cookie-banner .wt-cookie-meta {
  font-family: var(--wt-font-mono);
  font-size: 10px;
  color: var(--wt-accent-blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.wt-cookie-btns {
  display: flex;
  gap: 8px;
}

.wt-cookie-btns .wt-btn {
  padding: 8px 14px;
  font-size: 12px;
  flex: 1;
  justify-content: center;
  min-height: 36px;
}

.wt-cookie-btns .wt-cookie-link {
  font-family: var(--wt-font-body);
  font-size: 11px;
  color: var(--wt-accent-blue);
  text-decoration: underline;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  flex: 0 0 auto;
}

.wt-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.wt-reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.wt-page-hero {
  padding: 80px 0 50px;
  background: var(--wt-bg-global);
  border-bottom: 1px solid var(--wt-bg-wireframe);
  position: relative;
}

.wt-page-hero::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--wt-accent-blue);
}

.wt-page-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wt-breadcrumb {
  font-family: var(--wt-font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--wt-text-secondary);
  text-transform: uppercase;
}

.wt-breadcrumb a {
  color: var(--wt-text-secondary);
}

.wt-breadcrumb a:hover {
  color: var(--wt-accent-blue);
}

.wt-breadcrumb span {
  color: var(--wt-accent-blue);
  margin: 0 6px;
}

.wt-price-tag {
  font-family: var(--wt-font-mono);
  font-size: 12px;
  color: var(--wt-accent-blue);
  letter-spacing: 0.04em;
}

.wt-thanks {
  text-align: center;
  padding: 120px 24px;
  max-width: 720px;
  margin: 0 auto;
}

.wt-thanks-icon {
  width: 88px;
  height: 88px;
  border: 2px solid var(--wt-accent-blue);
  background: var(--wt-bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-family: var(--wt-font-mono);
  font-size: 40px;
  color: var(--wt-accent-blue);
  font-weight: 600;
}

.wt-legal {
  max-width: 880px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.wt-legal h1 {
  font-family: var(--wt-font-head);
  font-size: 40px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--wt-text-primary);
}

.wt-legal h2 {
  font-family: var(--wt-font-head);
  font-size: 22px;
  font-weight: 600;
  margin: 32px 0 12px;
  color: var(--wt-text-primary);
}

.wt-legal p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--wt-text-secondary);
  margin: 0 0 14px;
}

.wt-legal .wt-legal-meta {
  font-family: var(--wt-font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--wt-accent-blue);
  text-transform: uppercase;
  margin: 0 0 30px;
}

.wt-detail-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0 80px;
}

.wt-detail-hero-image {
  border: 1px solid var(--wt-bg-wireframe);
  background: var(--wt-bg-card);
  padding: 10px;
}

.wt-detail-hero-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.wt-price-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding: 20px;
  background: var(--wt-bg-secondary);
  border-left: 3px solid var(--wt-accent-blue);
}

.wt-price-row .price-block {
  flex: 1;
  min-width: 140px;
}

.wt-price-row .price-label {
  font-family: var(--wt-font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--wt-text-secondary);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.wt-price-row .price-value {
  font-family: var(--wt-font-head);
  font-size: 22px;
  font-weight: 600;
  color: var(--wt-accent-blue);
}

.wt-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.wt-feature {
  border: 1px solid var(--wt-bg-wireframe);
  padding: 22px;
  background: var(--wt-bg-card);
  transition: all 0.2s linear;
}

.wt-feature:hover {
  border-color: var(--wt-accent-blue);
  background: var(--wt-bg-secondary);
  z-index: 5;
  position: relative;
}

.wt-feature h4 {
  font-family: var(--wt-font-head);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--wt-text-primary);
}

.wt-feature p {
  font-size: 13px;
  color: var(--wt-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.wt-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.wt-related {
  border: 1px solid var(--wt-bg-wireframe);
  background: var(--wt-bg-card);
  padding: 22px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s linear;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wt-related:hover {
  border-color: var(--wt-accent-blue);
  border-width: 2px;
  background: var(--wt-bg-secondary);
  color: inherit;
  z-index: 5;
  position: relative;
}

.wt-related h4 {
  font-family: var(--wt-font-head);
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: var(--wt-text-primary);
}

.wt-related .wt-related-meta {
  font-family: var(--wt-font-mono);
  font-size: 11px;
  color: var(--wt-accent-blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wt-related p {
  font-size: 13px;
  color: var(--wt-text-secondary);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1100px) {
  .wt-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .wt-hero-image-wrap {
    max-width: 540px;
  }
  .wt-hero-title {
    font-size: 52px;
  }
  .wt-h1 {
    font-size: 56px;
  }
  .wt-h2 {
    font-size: 36px;
  }
  .wt-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .wt-bento-cell.large,
  .wt-bento-cell.wide {
    grid-column: span 2;
  }
  .wt-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
  .wt-masonry-item.wide {
    grid-column: span 2;
  }
  .wt-sticky {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .wt-sticky-image {
    position: static;
  }
  .wt-team {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .wt-team-preview {
    position: static;
  }
  .wt-reviews {
    grid-template-columns: repeat(2, 1fr);
  }
  .wt-contact-split {
    grid-template-columns: 1fr;
  }
  .wt-contact-split::before {
    display: none;
  }
  .wt-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .wt-detail-hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .wt-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .wt-section {
    padding: 70px 0;
  }
  .wt-navbar .wt-nav {
    display: none;
  }
  .wt-nav-cta {
    display: none;
  }
  .wt-burger {
    display: flex;
  }
  .wt-topbar-contact span:nth-child(2),
  .wt-topbar-contact span:nth-child(3) {
    display: none;
  }
  .wt-hero {
    min-height: auto;
    padding: 40px 0 60px;
  }
  .wt-hero-title {
    font-size: 40px;
  }
  .wt-h1 {
    font-size: 40px;
  }
  .wt-h2 {
    font-size: 30px;
  }
  .wt-h3 {
    font-size: 18px;
  }
  .wt-bento {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .wt-bento-cell {
    min-height: 200px;
  }
  .wt-bento-cell.large,
  .wt-bento-cell.wide,
  .wt-bento-cell.tall {
    grid-column: span 1;
    grid-row: span 1;
  }
  .wt-masonry {
    grid-template-columns: 1fr;
  }
  .wt-masonry-item,
  .wt-masonry-item.wide,
  .wt-masonry-item.tall {
    grid-column: span 1;
  }
  .wt-masonry-img,
  .wt-masonry-item.tall .wt-masonry-img {
    height: 240px;
  }
  .wt-reviews {
    grid-template-columns: 1fr;
  }
  .wt-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .wt-contact-form,
  .wt-contact-info {
    padding: 32px 24px;
  }
  .wt-feature-grid {
    grid-template-columns: 1fr;
  }
  .wt-related-grid {
    grid-template-columns: 1fr;
  }
  .wt-hero-frame-tr,
  .wt-hero-frame-bl {
    display: none;
  }
  .wt-node-step {
    grid-template-columns: 60px 1fr;
    gap: 16px;
  }
  .wt-node {
    width: 60px;
    height: 60px;
  }
  .wt-node-step:not(:last-child)::after {
    left: 30px;
    top: 50px;
  }
  .wt-coverflow-card {
    flex: 0 0 280px;
  }
  .wt-fact-cards {
    grid-template-columns: 1fr;
  }
  .wt-thanks {
    padding: 60px 24px;
  }
  .wt-legal h1 {
    font-size: 30px;
  }
  .wt-cookie-banner {
    bottom: 12px;
    left: 12px;
    right: 12px;
    width: auto;
    max-width: none;
  }
  .wt-page-hero {
    padding: 50px 0 36px;
  }
  .wt-detail-hero {
    padding: 40px 0 60px;
  }
  .wt-detail-hero-image img {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .wt-hero-title {
    font-size: 32px;
  }
  .wt-topbar-row {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }
  .wt-topbar-contact {
    justify-content: center;
    width: 100%;
    gap: 10px;
  }
  .wt-topbar-contact span:first-child {
    display: none;
  }

  .wt-h1 {
    font-size: 32px;
  }
  .wt-hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .wt-hero-cta .wt-btn {
    justify-content: center;
  }
  .wt-btn-lg {
    padding: 16px 24px;
    font-size: 14px;
  }
}