@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;0,900;1,400;1,700&display=swap");

:root {
  --bg: #0a0a0f;
  --bg2: #0f0f18;
  --bg3: #13131e;
  --card: #16161f;
  --border: rgba(255, 255, 255, 0.07);
  --border2: rgba(255, 255, 255, 0.12);
  --green: #00d084;
  --green2: #00ff9d;
  --green-dim: rgba(0, 208, 132, 0.1);
  --green-border: rgba(0, 208, 132, 0.22);
  --text: #e4e4f0;
  --muted: #6b6b80;
  --muted2: #3a3a50;
  --font-h: "Playfair Display", serif;
  --font-b: "Outfit", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.018;
  pointer-events: none;
  z-index: 9999;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: all 0.3s var(--ease);
}
nav.stuck {
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 7px;
  transition: all 0.18s;
}
.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}
.nav-cta {
  padding: 9px 20px;
  background: var(--green);
  color: #0a0a0f;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s var(--ease);
}
.nav-cta:hover {
  background: var(--green2);
  transform: translateY(-1px);
}
.mob-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mob-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.mob-menu {
  display: none;
  position: fixed;
  top: 66px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 15, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  gap: 4px;
  padding: 14px 20px 20px;
  z-index: 799;
}
.mob-menu.open {
  display: flex;
}
.mob-menu a {
  color: var(--muted);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.18s;
}
.mob-menu a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}
.mob-menu a:last-child {
  margin-top: 6px;
  background: var(--green);
  color: #0a0a0f;
  font-weight: 700;
  text-align: center;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 40px 60px;
  max-width: 1260px;
  margin: 0 auto;
  gap: 60px;
  position: relative;
}
.hero-glow {
  position: fixed;
  top: -300px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(0, 208, 132, 0.055) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: -1;
  animation: blobFloat 14s ease-in-out infinite;
}
@keyframes blobFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(50px) scale(1.06);
  }
}
.hero-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(0, 208, 132, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 208, 132, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero-left {
  flex: 1;
  max-width: 600px;
}
.hero-niche {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.hero-niche-sep {
  color: var(--muted2);
}
.hero-niche strong {
  color: var(--green);
}
.hero-title {
  font-family: var(--font-h);
  font-size: clamp(48px, 6.5vw, 84px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: #fff;
}
.hero-title em {
  font-style: italic;
  font-weight: 700;
  color: var(--green);
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .line-inner {
  display: block;
}
.hero-desc {
  font-size: 16.5px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-desc strong {
  color: var(--text);
  font-weight: 500;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 26px;
  background: var(--green);
  color: #0a0a0f;
  font-size: 14.5px;
  font-weight: 700;
  font-family: var(--font-b);
  text-decoration: none;
  border-radius: 9px;
  transition: all 0.25s var(--ease);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--green2);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 208, 132, 0.3);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 24px;
  background: transparent;
  color: var(--text);
  font-size: 14.5px;
  font-weight: 600;
  font-family: var(--font-b);
  text-decoration: none;
  border-radius: 9px;
  border: 1px solid var(--border2);
  transition: all 0.22s;
  cursor: pointer;
}
.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green);
}
.hero-facts {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.015);
  width: fit-content;
}
.hf {
  padding: 16px 28px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.hf:last-child {
  border-right: none;
}
.hf-n {
  font-family: var(--font-h);
  font-size: 28px;
  font-weight: 900;
  color: var(--green);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}
.hf-l {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
}
.hero-right {
  flex-shrink: 0;
  width: 400px;
}
.hero-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}
.hp-strip {
  background: var(--bg3);
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hp-dots {
  display: flex;
  gap: 7px;
}
.hp-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border2);
}
.hp-dots span:nth-child(1) {
  background: #ff5f56;
}
.hp-dots span:nth-child(2) {
  background: #ffbd2e;
}
.hp-dots span:nth-child(3) {
  background: var(--green);
}
.hp-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}
.hp-body {
  padding: 30px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ava-wrap {
  position: relative;
  margin-bottom: 22px;
}
.ava-svg {
  width: 200px;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 40px rgba(0, 208, 132, 0.12));
  animation: avaFloat 4s ease-in-out infinite;
}
@keyframes avaFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.hp-cards {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hp-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hpc-icon {
  font-size: 18px;
  width: 36px;
  height: 36px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hpc-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.hpc-text span {
  font-size: 11.5px;
  color: var(--muted);
}
.hpc-arr {
  margin-left: auto;
  color: var(--muted2);
  font-size: 14px;
}

section {
  padding: 100px 40px;
}
.s-wrap {
  max-width: 1260px;
  margin: 0 auto;
}
.s-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.s-eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--green);
}
.s-title {
  font-family: var(--font-h);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  letter-spacing: -1.5px;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 14px;
}
.s-title em {
  font-style: italic;
  color: var(--green);
}
.s-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
}
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
}

/* WORK */
.work-section {
  background: var(--bg2);
}
.work-head {
  margin-bottom: 52px;
}
.work-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.wtab {
  padding: 7px 18px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 30px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-b);
  cursor: pointer;
  transition: all 0.2s;
}
.wtab:hover,
.wtab.on {
  background: var(--green-dim);
  border-color: var(--green-border);
  color: var(--green);
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}
.wcard {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--card);
  border: 1px solid var(--border);
  transition: all 0.38s var(--ease);
}
.wcard.span2 {
  grid-column: span 2;
}
.wcard:hover {
  border-color: var(--border2);
  transform: translateY(-5px);
  box-shadow:
    0 20px 55px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(0, 208, 132, 0.08);
}
.wcard-img {
  position: absolute;
  inset: 0;
}
.wcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: brightness(0.7) saturate(0.85);
  transition: all 0.6s var(--ease);
}
.wcard:hover .wcard-img img {
  filter: brightness(0.35) saturate(1.1);
  transform: scale(1.04);
}
.wcard-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 25%,
    rgba(10, 10, 15, 0.94) 100%
  );
}
.wcard-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}
.wcard:hover .wcard-overlay {
  opacity: 1;
}
.wcard-open {
  padding: 10px 22px;
  background: var(--green);
  color: #0a0a0f;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  transform: translateY(8px);
  transition: transform 0.28s var(--ease);
}
.wcard:hover .wcard-open {
  transform: translateY(0);
}
.wcard-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 18px 20px;
}
.wcard-tag {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 7px;
  background: rgba(0, 208, 132, 0.18);
  border: 1px solid rgba(0, 208, 132, 0.3);
  color: var(--green);
}
.wcard-tag.t-food {
  background: rgba(255, 120, 50, 0.18);
  border-color: rgba(255, 120, 50, 0.35);
  color: #ff9060;
}
.wcard-tag.t-esports {
  background: rgba(168, 85, 247, 0.18);
  border-color: rgba(168, 85, 247, 0.3);
  color: #c084fc;
}
.wcard-tag.t-dev {
  background: rgba(59, 130, 246, 0.18);
  border-color: rgba(59, 130, 246, 0.3);
  color: #7eb8f7;
}
.wcard-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.wcard-info p {
  font-size: 12px;
  color: var(--muted);
}

/* MODAL */
.pov {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
.pov.show {
  opacity: 1;
  pointer-events: all;
}
.pbox {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.92) translateY(18px);
  transition: transform 0.36s var(--ease);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
  position: relative;
}
.pov.show .pbox {
  transform: scale(1) translateY(0);
}
.pbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border2);
  color: #aaa;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.18s;
}
.pbox-close:hover {
  background: var(--green);
  color: #0a0a0f;
  border-color: var(--green);
}
.pbox-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top;
  border-radius: 18px 18px 0 0;
  display: block;
}
.pbox-body {
  padding: 24px 28px 30px;
}
.pbox-body h2 {
  font-family: var(--font-h);
  font-size: 23px;
  font-weight: 900;
  color: #fff;
  margin: 10px 0 10px;
  letter-spacing: -0.5px;
}
.pbox-body p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 18px;
}
.pbox-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 20px;
}
.pbox-tags span {
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 11.5px;
  color: var(--muted);
}
.pbox-btns {
  display: flex;
  gap: 10px;
}

/* ABOUT */
.about-section {
  background: var(--bg3);
}
.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.about-text .s-title {
  margin-bottom: 22px;
}
.about-text p {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 18px;
}
.about-text p:last-of-type {
  margin-bottom: 0;
}
.about-text strong {
  color: var(--text);
  font-weight: 500;
}
.about-link {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 208, 132, 0.3);
  transition: border-color 0.2s;
}
.about-link:hover {
  border-color: var(--green);
}
.skill-block {
  margin-bottom: 36px;
}
.skill-block-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 18px;
}
.sk {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.sk-name {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  min-width: 145px;
  flex-shrink: 0;
}
.sk-bar {
  flex: 1;
  height: 5px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.sk-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--green2));
  border-radius: 3px;
  width: 0;
  transition: width 1.3s var(--ease);
}
.sk-pct {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--green);
  min-width: 34px;
  text-align: right;
}
.tools-wrap {
  margin-top: 4px;
}
.tools-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 14px;
}
.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.tool {
  padding: 5px 13px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  transition: all 0.2s;
  cursor: default;
}
.tool:hover {
  border-color: var(--green-border);
  color: var(--green);
  background: var(--green-dim);
  transform: translateY(-2px);
}

/* SERVICES */
.services-section {
  background: var(--bg2);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.36s var(--ease);
}
.svc::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  transform: scaleX(0);
  transition: transform 0.36s var(--ease);
}
.svc:hover {
  border-color: var(--border2);
  transform: translateY(-7px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(0, 208, 132, 0.07);
}
.svc:hover::after {
  transform: scaleX(1);
}
.svc.pop {
  border-color: var(--green-border);
  background: linear-gradient(
    135deg,
    var(--card) 0%,
    rgba(0, 208, 132, 0.04) 100%
  );
}
.svc-popular {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--green);
  color: #0a0a0f;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 11px;
  border-radius: 20px;
}
.svc-ico {
  font-size: 34px;
  margin-bottom: 16px;
  display: block;
}
.svc h3 {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}
.svc-price {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 12px;
}
.svc-price span {
  color: var(--green);
  font-weight: 700;
  font-size: 14.5px;
}
.svc > p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.7;
  margin-bottom: 18px;
}
.svc-list {
  list-style: none;
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.svc-list li {
  font-size: 13px;
  color: #555570;
  padding-left: 16px;
  position: relative;
}
.svc-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 11px;
  line-height: 1.8;
}
.svc-btn {
  display: block;
  text-align: center;
  padding: 11px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  border-radius: 9px;
  color: var(--green);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.22s;
}
.svc-btn:hover {
  background: rgba(0, 208, 132, 0.2);
  border-color: var(--green);
}
.svc.pop .svc-btn {
  background: var(--green);
  color: #0a0a0f;
  border-color: var(--green);
}
.svc.pop .svc-btn:hover {
  background: var(--green2);
}

/* TESTIMONIALS */
.testi-section {
  background: var(--bg);
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
}
.testi-section .s-wrap {
  padding: 0 40px;
}
.testi-head {
  margin-bottom: 48px;
}
.track-wrap {
  position: relative;
  overflow: hidden;
}
.track-wrap::before,
.track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 5;
  pointer-events: none;
}
.track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}
.track-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg), transparent);
}
.track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: slide 30s linear infinite;
  padding: 6px 0 16px;
}
.track:hover {
  animation-play-state: paused;
}
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.tcard {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 24px;
  width: 300px;
  flex-shrink: 0;
  transition: all 0.25s;
}
.tcard:hover {
  border-color: var(--green-border);
  transform: translateY(-4px);
}
.tcard-stars {
  color: var(--green);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.tcard p {
  color: #666688;
  font-size: 13.5px;
  line-height: 1.72;
  margin-bottom: 18px;
  font-style: italic;
}
.tcard-author {
  display: flex;
  align-items: center;
  gap: 11px;
}
.tcard-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--green);
  flex-shrink: 0;
}
.tcard-author strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.tcard-author span {
  font-size: 11.5px;
  color: var(--muted);
}

/* CONTACT */
.contact-section {
  background: var(--bg3);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.contact-left .s-title {
  font-size: clamp(34px, 5vw, 54px);
  margin-bottom: 14px;
}
.contact-left > p {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 30px;
}
.clinks {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}
.cl {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 11px;
  text-decoration: none;
  transition: all 0.22s;
}
.cl:hover {
  border-color: var(--green-border);
  background: var(--green-dim);
}
.cl-ico {
  font-size: 20px;
  width: 40px;
  height: 40px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cl strong {
  display: block;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 1px;
}
.cl span {
  font-size: 12.5px;
  color: var(--muted);
}
.cform {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 34px;
  position: relative;
  overflow: hidden;
}
.cform::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 208, 132, 0.4),
    transparent
  );
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.cf-g {
  margin-bottom: 14px;
}
.cf-g label {
  display: block;
  color: var(--muted2);
  font-size: 11.5px;
  font-weight: 700;
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.cf-g input,
.cf-g select,
.cf-g textarea {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  font-family: var(--font-b);
  outline: none;
  transition: all 0.2s;
}
.cf-g input:focus,
.cf-g select:focus,
.cf-g textarea:focus {
  border-color: var(--green);
  background: var(--green-dim);
  box-shadow: 0 0 0 3px rgba(0, 208, 132, 0.07);
}
.cf-g input::placeholder,
.cf-g textarea::placeholder {
  color: var(--muted2);
}
.cf-g select option {
  background: #1a1a2e;
}
.cf-g textarea {
  resize: vertical;
  min-height: 115px;
}
.cf-submit {
  width: 100%;
  padding: 14px;
  font-size: 14.5px;
}

/* FOOTER */
footer {
  background: #040408;
  border-top: 1px solid var(--border);
  padding: 44px 40px 28px;
}
.footer-in {
  max-width: 1260px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}
.f-brand {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.f-name {
  font-family: var(--font-b);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.f-sub {
  font-size: 12px;
  color: var(--muted);
}
.footer-links {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--muted);
  font-size: 13.5px;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.18s;
}
.footer-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}
.footer-copy {
  font-size: 12px;
  color: var(--muted2);
  border-top: 1px solid var(--border);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy a {
  color: var(--green);
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .svc-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
  .about-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wcard.span2 {
    grid-column: span 2;
  }
}
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    padding: 90px 24px 60px;
    gap: 44px;
  }
  .hero-right {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  nav {
    padding: 0 24px;
  }
  section {
    padding: 80px 24px;
  }
  footer {
    padding: 36px 24px 22px;
  }
}
@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .mob-btn {
    display: flex;
  }
  .work-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .wcard.span2 {
    grid-column: span 1;
  }
  .hero-facts {
    width: 100%;
  }
  .hf {
    padding: 13px 18px;
  }
  .cform {
    padding: 22px;
  }
  .cf-row {
    grid-template-columns: 1fr;
  }
  .footer-top {
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 44px;
    letter-spacing: -1.5px;
  }
  .s-title {
    font-size: 30px;
  }
  .tcard {
    width: 262px;
  }
}


/* ===== ESPORTS SECTION ===== */
.esports-section {
  background: #0c0c14;
  position: relative;
  overflow: hidden;
}
.esports-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(168, 85, 247, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(168, 85, 247, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.esports-section .s-eyebrow {
  color: #c084fc;
}
.esports-section .s-eyebrow::before {
  background: #c084fc;
}
.esports-section .s-title em {
  color: #c084fc;
}
.esports-section .wcard:hover {
  box-shadow:
    0 20px 55px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(168, 85, 247, 0.15);
}

/* ===== SECTION HEADER (both sections) ===== */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}