/*
Theme Name: FingerNic
Theme URI: https://fingernicstudio.com
Author: FingerNic
Author URI: https://fingernicstudio.com
Description: A full-cycle game and app development theme for showcasing games, mobile apps, services, portfolio, and case studies.
Version: 1.0.0
Requires at least: 6.2
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fingernic-studio
Domain Path: /languages
Tags: custom-colors, custom-logo, full-width-template, theme-options, two-columns, three-columns, custom-menu, featured-images, sticky-post, translation-ready
*/

/* ── Design Tokens ─────────────────────────────────────────────────────────── */
:root {
  --bg:          #080a0d;
  --bg-2:        #101419;
  --bg-card:     rgba(18, 22, 28, 0.78);
  --border:      rgba(242,239,231,0.09);
  --border-glow: rgba(64,196,175,0.32);
  --primary:     #40c4af;
  --primary-2:   #1f9d8c;
  --secondary:   #7c6df0;
  --accent:      #d6a84f;
  --text:        #b6bec8;
  --text-2:      #788390;
  --white:       #ffffff;
  --cream:       #f4efe5;
  --ink:         #06070a;
  --gradient:    linear-gradient(135deg, #40c4af 0%, #7c6df0 100%);
  --gradient-h:  linear-gradient(90deg,  #40c4af 0%, #7c6df0 100%);
  --glow-primary:0 0 60px rgba(64,196,175,0.2);
  --glow-card:   0 0 42px rgba(64,196,175,0.1);
  --radius-sm:   12px;
  --radius:      20px;
  --radius-lg:   28px;
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset & Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Manrope, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
main, section, article, aside, header, footer,
.container,
.grid-2, .grid-3, .grid-4,
.hero-inner,
.page-hero-inner,
.services-grid,
.projects-grid,
.stats-grid,
.testimonials-grid,
.process-grid,
.contact-form-wrap,
.contact-layout,
.single-layout,
.games-grid,
.genre-grid,
.platform-cards,
.tech-stack-cards,
.features-2col,
.why-grid,
.footer-top,
.footer-links,
.portfolio-meta-inner,
.hp-hero-inner,
.hp-svc-grid,
.hp-work-grid,
.hp-why-grid,
.hp-testi-grid {
  min-width: 0;
}
h1, h2, h3, h4, h5, p, a, span, strong, li {
  overflow-wrap: anywhere;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #1e2d4f; border-radius: 3px; }

/* ── Skip link ─────────────────────────────────────────────────────────────── */
.skip-link { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; z-index: 999; }
.skip-link:focus { position: fixed; top: 16px; left: 50%; transform: translateX(-50%); width: auto; height: auto; padding: 12px 24px; background: var(--primary); color: #fff; font-weight: 600; border-radius: 8px; text-decoration: none; }

/* ── Typography ────────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: "Space Grotesk", sans-serif; color: var(--white); line-height: 1.1; letter-spacing: -0.02em; }
h1 { font-size: clamp(38px, 5.5vw, 72px); font-weight: 700; }
h2 { font-size: clamp(28px, 4vw, 52px); font-weight: 700; }
h3 { font-size: clamp(18px, 2vw, 24px); font-weight: 600; }
h4 { font-size: 16px; font-weight: 600; }
p  { color: var(--text); }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent); font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em;
}
.kicker::before { content: ""; width: 20px; height: 2px; background: var(--accent); border-radius: 2px; }
.section-header { margin-bottom: 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 56ch; color: var(--text); font-size: 17px; }
.section-header--center {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.section-header--center p { margin-left: auto; margin-right: auto; }

/* ── Layout ────────────────────────────────────────────────────────────────── */
.container { width: min(1200px, 92%); margin: 0 auto; }
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.section-dark { background: var(--bg-2); }
.section-alt { background: linear-gradient(180deg, var(--bg) 0%, #060d20 100%); }
.section,
.section-sm,
.hp-section {
  position: relative;
}
.section + .section,
.hp-section + .hp-section {
  border-top: 1px solid rgba(242,239,231,0.045);
}
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px; font-weight: 600;
  transition: var(--transition); border: none;
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn::after {
  content: ""; position: absolute; inset: 0; border-radius: 999px;
  background: rgba(255,255,255,0); transition: background var(--transition);
}
.btn:hover::after { background: rgba(255,255,255,0.08); }
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(59,130,246,0);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59,130,246,0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.35); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn svg { width: 16px; height: 16px; transition: transform var(--transition); }
.btn:hover svg { transform: translateX(3px); }
.btn-full { width: 100%; justify-content: center; }

/* ── Site Header ───────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
.site-header.scrolled {
  background: rgba(3, 6, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; gap: 32px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: "Space Grotesk", sans-serif; font-weight: 700;
  font-size: 18px; color: var(--white);
  flex-shrink: 0;
}
.logo img { height: 36px; width: auto; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  color: var(--text); font-size: 14px; font-weight: 500;
  padding: 7px 14px; border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.nav .nav-cta {
  background: var(--gradient); color: #fff;
  padding: 10px 20px; border-radius: 999px;
  font-weight: 600; font-size: 14px;
  box-shadow: 0 0 0 0 rgba(59,130,246,0);
  transition: var(--transition);
}
.nav .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(64,196,175,0.35); }
.menu-btn {
  display: none; background: transparent;
  border: 1px solid var(--border); color: var(--white);
  border-radius: 8px; padding: 8px 12px; font-size: 14px;
}
body.menu-open {
  overflow: hidden;
}

/* ── Hero Section ──────────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  padding: 110px 0 100px; min-height: 90vh;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.hero-bg::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--bg);
}
/* Gradient orbs */
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.5;
}
.hero-orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(59,130,246,0.25), transparent 70%); top: -200px; left: -150px; animation: orb-float 12s ease-in-out infinite; }
.hero-orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(139,92,246,0.2), transparent 70%); bottom: -100px; right: 10%; animation: orb-float 15s ease-in-out infinite reverse; }
.hero-orb-3 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(6,182,212,0.15), transparent 70%); top: 30%; right: 30%; animation: orb-float 10s ease-in-out infinite 3s; }
@keyframes orb-float { 0%, 100% { transform: translate(0, 0); } 33% { transform: translate(30px, -20px); } 66% { transform: translate(-20px, 15px); } }

.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr 1fr; gap: 60px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(6,182,212,0.3); border-radius: 999px;
  padding: 6px 14px; font-size: 13px; color: var(--accent);
  margin-bottom: 28px; background: rgba(6,182,212,0.05);
}
.hero-badge-dot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
.hero-title { margin-bottom: 20px; }
.hero-lead { font-size: 18px; color: var(--text); max-width: 50ch; margin-bottom: 36px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-platforms { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero-platforms-label { font-size: 12px; color: var(--text-2); text-transform: uppercase; letter-spacing: .1em; }
.platform-chip {
  font-size: 12px; color: var(--text); font-weight: 500;
  border: 1px solid var(--border); border-radius: 999px;
  padding: 5px 12px; background: rgba(255,255,255,0.03);
  transition: var(--transition);
}
.platform-chip:hover { border-color: var(--border-glow); color: var(--white); }

/* Launch Card */
.launch-card {
  background: linear-gradient(145deg, rgba(15,25,55,0.9), rgba(10,16,35,0.95));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 32px;
  backdrop-filter: blur(12px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative; overflow: hidden;
}
.launch-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient);
}
.launch-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.launch-card-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(59,130,246,0.3);
  flex-shrink: 0;
}
.launch-card-icon svg { width: 24px; height: 24px; color: #fff; }
.launch-card-title { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 18px; color: var(--white); }
.launch-card-sub { font-size: 13px; color: var(--text-2); margin-top: 2px; }
.launch-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.launch-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  transition: var(--transition);
}
.launch-item:hover { background: rgba(59,130,246,0.08); border-color: var(--border-glow); transform: translateX(4px); }
.launch-item-icon {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.launch-item-icon svg { width: 18px; height: 18px; }
.launch-item-text { font-size: 14px; font-weight: 500; color: var(--white); }
.launch-item-sub { font-size: 12px; color: var(--text-2); margin-top: 1px; }
.launch-card-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  padding-top: 20px; border-top: 1px solid var(--border);
}
.launch-stat-val { font-family: "Space Grotesk", sans-serif; font-size: 22px; font-weight: 700; color: var(--white); }
.launch-stat-label { font-size: 12px; color: var(--text-2); margin-top: 2px; }

/* Floating chips near hero card */
.float-chips { position: relative; }
.float-chip {
  position: absolute; background: rgba(10,16,35,0.9);
  border: 1px solid var(--border-glow); border-radius: 999px;
  padding: 7px 16px; font-size: 12px; font-weight: 600; color: var(--white);
  backdrop-filter: blur(8px); white-space: nowrap;
  animation: float-gentle 4s ease-in-out infinite;
}
.float-chip--1 { top: -20px; left: -30px; animation-delay: 0s; }
.float-chip--2 { bottom: 60px; right: -20px; animation-delay: 1.5s; }
.float-chip--3 { bottom: -10px; left: 20px; animation-delay: 0.8s; }
@keyframes float-gentle { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ── Marquee ───────────────────────────────────────────────────────────────── */
.marquee-section { padding: 28px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.01); overflow: hidden; }
.marquee-track { display: flex; gap: 0; white-space: nowrap; }
.marquee-inner { display: flex; gap: 0; animation: marquee-scroll 25s linear infinite; flex-shrink: 0; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-100%); } }
.marquee-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 40px; font-size: 14px; font-weight: 600;
  color: var(--text-2); letter-spacing: .05em;
}
.marquee-item svg { width: 18px; height: 18px; opacity: 0.5; }
.marquee-dot { width: 4px; height: 4px; background: var(--border-glow); border-radius: 50%; margin: 0 20px; }

/* ── Services ──────────────────────────────────────────────────────────────── */
.service-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative; overflow: hidden;
  group: true;
}
.service-card::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius);
  background: radial-gradient(circle at 50% 0%, rgba(59,130,246,0.08), transparent 60%);
  opacity: 0; transition: opacity var(--transition);
}
.service-card:hover { transform: translateY(-6px); border-color: var(--border-glow); box-shadow: var(--glow-card); }
.service-card:hover::after { opacity: 1; }
.service-icon {
  width: 56px; height: 56px; border-radius: 16px; margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.service-icon svg { width: 26px; height: 26px; }
.service-icon--blue  { background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(59,130,246,0.05)); border: 1px solid rgba(59,130,246,0.2); color: #3b82f6; }
.service-icon--purple{ background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(139,92,246,0.05)); border: 1px solid rgba(139,92,246,0.2); color: #8b5cf6; }
.service-icon--cyan  { background: linear-gradient(135deg, rgba(6,182,212,0.2), rgba(6,182,212,0.05)); border: 1px solid rgba(6,182,212,0.2); color: #06b6d4; }
.service-icon--green { background: linear-gradient(135deg, rgba(34,197,94,0.2), rgba(34,197,94,0.05)); border: 1px solid rgba(34,197,94,0.2); color: #22c55e; }
.service-icon--orange{ background: linear-gradient(135deg, rgba(249,115,22,0.2), rgba(249,115,22,0.05)); border: 1px solid rgba(249,115,22,0.2); color: #f97316; }
.service-icon--pink  { background: linear-gradient(135deg, rgba(236,72,153,0.2), rgba(236,72,153,0.05)); border: 1px solid rgba(236,72,153,0.2); color: #ec4899; }
.service-card h3 { color: var(--white); margin-bottom: 10px; position: relative; z-index: 1; }
.service-card p { font-size: 14px; color: var(--text); line-height: 1.7; position: relative; z-index: 1; }
.service-card-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--card-accent, var(--primary));
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary); font-size: 13px; font-weight: 600;
  margin-top: 20px; transition: gap var(--transition); position: relative; z-index: 1;
}
.service-link:hover { gap: 10px; }
.service-link svg { width: 14px; height: 14px; }

/* ── Process ───────────────────────────────────────────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-grid::before {
  content: ""; position: absolute; top: 28px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glow), var(--border-glow), transparent);
}
.process-step { text-align: center; padding: 0 16px; position: relative; }
.process-num {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 20px;
  background: var(--bg-2); border: 1px solid var(--border-glow);
  display: flex; align-items: center; justify-content: center;
  font-family: "Space Grotesk", sans-serif; font-size: 18px; font-weight: 700; color: var(--primary);
  position: relative; z-index: 1;
  box-shadow: 0 0 20px rgba(59,130,246,0.15);
}
.process-step h4 { color: var(--white); margin-bottom: 8px; font-size: 15px; }
.process-step p { font-size: 13px; color: var(--text-2); }

/* ── Stats ─────────────────────────────────────────────────────────────────── */
.stat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 28px; text-align: center;
  backdrop-filter: blur(10px); transition: var(--transition);
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 2px; background: var(--gradient); border-radius: 2px;
}
.stat-card:hover { transform: translateY(-4px); border-color: var(--border-glow); }
.stat-num { font-family: "Space Grotesk", sans-serif; font-size: 52px; font-weight: 800; line-height: 1; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-suffix { font-family: "Space Grotesk", sans-serif; font-size: 32px; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 14px; color: var(--text-2); margin-top: 10px; font-weight: 500; }

/* ── Portfolio / Project Cards ─────────────────────────────────────────────── */
.project-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.project-card:hover { transform: translateY(-6px); border-color: var(--border-glow); box-shadow: var(--glow-card); }
.project-thumb {
  height: 200px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--bg-2), #0c1635);
  display: flex; align-items: center; justify-content: center;
}
.project-thumb-graphic { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.project-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.project-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.tag {
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em;
  padding: 4px 10px; border-radius: 999px;
  border: 1px solid var(--border);
}
.tag--blue   { color: #3b82f6; border-color: rgba(59,130,246,0.3); background: rgba(59,130,246,0.06); }
.tag--purple { color: #8b5cf6; border-color: rgba(139,92,246,0.3); background: rgba(139,92,246,0.06); }
.tag--cyan   { color: #06b6d4; border-color: rgba(6,182,212,0.3); background: rgba(6,182,212,0.06); }
.tag--green  { color: #22c55e; border-color: rgba(34,197,94,0.3); background: rgba(34,197,94,0.06); }
.project-body h3 { color: var(--white); margin-bottom: 8px; font-size: 18px; }
.project-body p { font-size: 14px; color: var(--text); flex: 1; }
.project-link { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-size: 13px; font-weight: 600; margin-top: 20px; transition: gap var(--transition); }
.project-link:hover { gap: 10px; }
.project-link svg { width: 14px; height: 14px; }

/* ── Testimonials ──────────────────────────────────────────────────────────── */
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  backdrop-filter: blur(10px); position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--border-glow); transform: translateY(-4px); }
.testimonial-quote { font-size: 40px; line-height: 1; color: var(--primary); font-family: Georgia, serif; margin-bottom: 16px; opacity: 0.6; }
.testimonial-text { font-size: 15px; color: var(--text); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: "Space Grotesk", sans-serif; font-size: 15px; font-weight: 700; color: #fff;
}
.testimonial-name { font-size: 14px; font-weight: 600; color: var(--white); }
.testimonial-role { font-size: 13px; color: var(--text-2); margin-top: 2px; }
.stars { display: flex; gap: 2px; margin-bottom: 16px; }
.stars svg { width: 14px; height: 14px; color: #fbbf24; fill: #fbbf24; }

/* ── CTA Band ──────────────────────────────────────────────────────────────── */
.cta-section {
  padding: 100px 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(59,130,246,0.08) 0%, rgba(139,92,246,0.08) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.cta-section::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(59,130,246,0.12) 0%, transparent 70%);
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-inner h2 { margin-bottom: 16px; }
.cta-inner p { max-width: 50ch; margin: 0 auto 36px; font-size: 18px; color: var(--text); }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Card (generic) ────────────────────────────────────────────────────────── */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.card:hover { border-color: var(--border-glow); }

/* ── Footer ────────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
.footer-brand p { font-size: 14px; color: var(--text-2); margin-top: 14px; max-width: 28ch; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social-link {
  width: 36px; height: 36px; border-radius: 10px;
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  color: var(--text-2); transition: var(--transition);
}
.footer-social-link:hover { border-color: var(--border-glow); color: var(--white); background: rgba(59,130,246,0.1); }
.footer-social-link svg { width: 16px; height: 16px; }
.footer-col h5 { color: var(--white); font-size: 13px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 20px; font-weight: 600; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: var(--text-2); transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; border-top: 1px solid var(--border);
  font-size: 13px; color: var(--text-2); flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: var(--text-2); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }

/* ── Archive pages ─────────────────────────────────────────────────────────── */
.archive-header { padding: 80px 0 40px; }
.archive-filter { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; align-items: flex-end; }
.archive-filter input, .archive-filter select {
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--white); border-radius: var(--radius-sm); padding: 12px 16px;
  font-family: inherit; font-size: 14px; outline: none; min-width: 180px;
  transition: border-color var(--transition);
}
.archive-filter input:focus, .archive-filter select:focus { border-color: var(--border-glow); }
.archive-filter select option { background: var(--bg-2); }
.archive-filter label { font-size: 13px; color: var(--text-2); display: flex; flex-direction: column; gap: 6px; }

/* ── Single posts ──────────────────────────────────────────────────────────── */
.single-header { padding: 80px 0 40px; }
.post-thumbnail { border-radius: var(--radius); overflow: hidden; margin-bottom: 32px; }
.post-thumbnail img { width: 100%; object-fit: cover; }
.meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.meta-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px 20px; }
.meta-item strong { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--text-2); margin-bottom: 4px; }
.meta-item span { font-size: 14px; color: var(--white); font-weight: 500; }
.screenshots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 12px; }
.screenshots-grid img { border-radius: var(--radius-sm); border: 1px solid var(--border); }
.terms-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 16px 0; }
.term-link {
  display: inline-block; padding: 5px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 600; color: var(--accent);
  border: 1px solid rgba(6,182,212,0.3); background: rgba(6,182,212,0.06);
  transition: var(--transition);
}
.term-link:hover { background: rgba(6,182,212,0.15); }
.post-content { max-width: 72ch; }
.post-content h2, .post-content h3 { color: var(--white); margin: 28px 0 12px; }
.post-content p { color: var(--text); margin-bottom: 16px; }
.post-content ul, .post-content ol { color: var(--text); padding-left: 1.5em; margin-bottom: 16px; }
.post-content li { margin-bottom: 8px; }
.post-content a { color: var(--primary); text-decoration: underline; }

/* ── Contact form ──────────────────────────────────────────────────────────── */
.contact-form-wrap { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 13px; color: var(--text); font-weight: 500; }
.form-group input, .form-group select, .form-group textarea {
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--white); border-radius: var(--radius-sm); padding: 14px 16px;
  font-family: inherit; font-size: 14px; outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--border-glow); }
.form-group textarea { resize: vertical; min-height: 140px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-info-icon { width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-icon--teal { color: var(--primary); background: rgba(64,196,175,.12); border: 1px solid rgba(64,196,175,.22); }
.contact-info-icon--violet { color: var(--secondary); background: rgba(124,109,240,.12); border: 1px solid rgba(124,109,240,.22); }
.contact-info-icon--gold { color: var(--accent); background: rgba(214,168,79,.12); border: 1px solid rgba(214,168,79,.22); }
.contact-info-label { font-size: 12px; color: var(--text-2); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 4px; }
.contact-info-value { font-size: 15px; color: var(--white); font-weight: 500; }

/* ── Search & 404 ──────────────────────────────────────────────────────────── */
.error-section { padding: 140px 0; text-align: center; }
.error-copy { max-width: 48ch; margin: 0 auto 32px; }
.error-search { margin-top: 48px; }
.actions-center { justify-content: center; }
.error-code { font-family: "Space Grotesk", sans-serif; font-size: 140px; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 16px; }
.archive-hero-inner { position: relative; z-index: 1; padding-top: 80px; padding-bottom: 60px; }
.archive-hero-copy { max-width: 52ch; margin-top: 16px; }
.grid-span-all { grid-column: 1 / -1; }
.search-results-grid,
.search-empty-card { margin-top: 32px; }
.search-empty-card { text-align: center; }

/* ── Pagination ─────────────────────────────────────────────────────────────── */
.pagination-wrap { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 48px; }
.pagination-wrap .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid var(--border); color: var(--text);
  font-size: 14px; font-weight: 500; transition: var(--transition);
}
.pagination-wrap .page-numbers:hover { border-color: var(--border-glow); color: var(--white); }
.pagination-wrap .current { background: var(--gradient); color: #fff; border: none; }
.pagination-wrap .prev, .pagination-wrap .next { width: auto; padding: 0 16px; }

/* ── Search form ────────────────────────────────────────────────────────────── */
.search-form { display: flex; gap: 0; max-width: 480px; margin: 0 auto; }
.search-form input {
  flex: 1; background: var(--bg-card); border: 1px solid var(--border);
  border-right: none; color: var(--white); border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  padding: 14px 18px; font-family: inherit; font-size: 14px; outline: none;
  transition: border-color var(--transition);
}
.search-form input:focus { border-color: var(--border-glow); }
.search-form button {
  background: var(--gradient); color: #fff; border: none;
  padding: 14px 22px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 600; font-size: 14px;
}

/* ── Scroll reveal animations ───────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-32px); transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1); }
.reveal-right { opacity: 0; transform: translateX(32px);  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1); }
.reveal-left.revealed, .reveal-right.revealed { opacity: 1; transform: translateX(0); }
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.12s; }
.stagger-3 { transition-delay: 0.19s; }
.stagger-4 { transition-delay: 0.26s; }
.stagger-5 { transition-delay: 0.33s; }
.stagger-6 { transition-delay: 0.40s; }

/* ── Gutenberg block compatibility ─────────────────────────────────────────── */
.wp-block-columns.hero-grid { display: grid !important; grid-template-columns: 1.15fr 1fr; gap: 60px; align-items: center; flex-wrap: unset !important; }
.wp-block-columns.hero-grid > .wp-block-column { flex-grow: 0 !important; flex-basis: auto !important; min-width: 0; }
.wp-block-group { color: inherit; }
.wp-block-heading { color: var(--white); }
.wp-block-list { color: var(--text); padding-left: 1.4em; }
.wp-block-list li { margin-bottom: 8px; }
.wp-block-group.card, .wp-block-group.hero-card, .wp-block-group.cta-band { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; backdrop-filter: blur(10px); }
.wp-block-group.hero-card { background: linear-gradient(145deg, rgba(15,25,55,0.9), rgba(10,16,35,0.95)); border-radius: var(--radius-lg); }
.wp-block-group.section { padding-top: 80px; padding-bottom: 80px; }
.wp-block-group.hero-section { padding-top: 90px; padding-bottom: 90px; }
.legal-page-section {
  padding: 88px 0 104px;
}
.legal-page-shell {
  max-width: 900px;
}
.legal-page-title {
  margin: 0 0 18px;
  font-size: clamp(40px, 6vw, 66px);
  line-height: 1.05;
}
.legal-page-card {
  background: linear-gradient(145deg, rgba(18,22,28,0.82), rgba(8,10,14,0.94));
  border: 1px solid rgba(244,239,229,0.10);
  border-radius: 24px;
  padding: clamp(24px, 5vw, 46px);
  box-shadow: 0 30px 84px rgba(0,0,0,0.34);
}
.legal-content {
  max-width: 840px;
  margin: 0 auto;
  line-height: 1.82;
  font-size: 16px;
}
.legal-content .legal-updated {
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: -4px 0 28px;
}
.legal-content p {
  margin-bottom: 18px;
}
.legal-content h2 {
  margin-top: 42px;
  margin-bottom: 14px;
  padding-top: 4px;
  font-size: clamp(23px, 2.2vw, 30px);
  line-height: 1.25;
}
.legal-content h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.35;
}
.legal-content ul,
.legal-content ol {
  margin: 12px 0 22px;
  padding-left: 22px;
}
.legal-content li + li {
  margin-top: 8px;
}
.legal-content a {
  color: var(--primary);
  text-decoration: none;
  overflow-wrap: anywhere;
}
.legal-content a:hover {
  color: var(--white);
}
.legal-toc {
  margin: 30px 0 34px;
  padding: 22px 24px;
  border: 1px solid rgba(244,239,229,0.09);
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
}
.legal-toc strong {
  display: block;
  margin-bottom: 14px;
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
}
.legal-toc ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 22px;
  margin: 0;
  padding-left: 20px;
}
.legal-toc li {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
}
.legal-partner-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 26px;
  padding: 0;
  list-style: none;
}
.legal-partner-list li {
  margin: 0;
}
.legal-partner-list a {
  display: block;
  min-height: 44px;
  padding: 11px 14px;
  border: 1px solid rgba(244,239,229,0.09);
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  color: var(--cream);
  font-weight: 700;
  line-height: 1.35;
}
.legal-partner-list a:hover {
  border-color: var(--border-glow);
  color: var(--white);
}
.wp-block-buttons.actions { gap: 14px; }
p.kicker { color: var(--accent); text-transform: uppercase; letter-spacing: .12em; font-size: 12px; }
.wp-block-button__link { border-radius: 999px !important; font-weight: 600 !important; }
.wp-element-button { transition: var(--transition) !important; }
.wp-block-button.is-style-outline .wp-block-button__link { border: 1px solid rgba(255,255,255,0.15) !important; color: var(--white) !important; background: transparent !important; }

/* ── Hero Section (PHP template) ───────────────────────────────────────────── */
.hero-section {
  position: relative; overflow: hidden;
  padding: 110px 0 100px; min-height: 90vh;
  display: flex; align-items: center;
}
.hero-bg-canvas {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.hero-dot-grid {
  position: absolute; inset: 0;
  background: var(--bg);
}
.hero-content { position: relative; z-index: 1; }
.hero-content h1 { margin: 16px 0 20px; }
.hero-trust { display: flex; align-items: center; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.trust-label { font-size: 12px; color: var(--text-2); text-transform: uppercase; letter-spacing: .1em; white-space: nowrap; }
.trust-logos { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.trust-logo {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--text-2);
  border: 1px solid var(--border); border-radius: 999px;
  padding: 5px 12px; background: rgba(255,255,255,0.03);
  transition: var(--transition);
}
.trust-logo svg { opacity: 0.6; }
.trust-logo:hover { color: var(--white); border-color: var(--border-glow); }

/* ── Launch card extras ─────────────────────────────────────────────────────── */
.badge {
  margin-left: auto; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--accent); border: 1px solid rgba(6,182,212,0.35);
  border-radius: 999px; padding: 3px 10px;
  background: rgba(6,182,212,0.07);
}
.launch-card h3 { font-size: 18px; color: var(--white); }
.launch-icon { width: 32px; height: 32px; flex-shrink: 0; color: var(--primary); display: flex; align-items: center; justify-content: center; }
.launch-item { color: var(--white); font-size: 14px; font-weight: 500; }
.launch-check { margin-left: auto; color: var(--accent); font-weight: 700; }
.launch-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding-top: 20px; border-top: 1px solid var(--border);
  position: relative;
}
.float-chip {
  display: inline-flex; align-items: center;
  background: rgba(10,16,35,0.9); border: 1px solid var(--border-glow);
  border-radius: 999px; padding: 6px 14px;
  font-size: 12px; font-weight: 600; color: var(--white);
  backdrop-filter: blur(8px); white-space: nowrap;
  animation: float-gentle 4s ease-in-out infinite;
  position: static;
}
@keyframes float-gentle { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* ── Marquee (PHP template) ─────────────────────────────────────────────────── */
.marquee-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: marquee-half 30s linear infinite;
  will-change: transform;
}
.marquee-track span {
  display: inline-flex; align-items: center;
  padding: 0 24px; font-size: 13px; font-weight: 600;
  color: var(--text-2); letter-spacing: .06em; flex-shrink: 0;
}
.marquee-track span[aria-hidden] { padding: 0 4px; color: var(--border-glow); font-size: 8px; }
@keyframes marquee-half { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Services Hero ──────────────────────────────────────────────────────────── */
.svc-hero { padding: 80px 0 90px; }
.svc-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.svc-hero-text h1 { margin: 16px 0 20px; font-size: clamp(36px, 4.5vw, 58px); }
.svc-hero-text p  { font-size: 17px; line-height: 1.75; color: var(--text); max-width: 48ch; margin-bottom: 32px; }
.svc-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.svc-hero-stats {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  padding: 18px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
  width: fit-content;
}
.svc-stat {
  display: grid;
  gap: 5px;
  min-width: 90px;
}
.svc-stat strong { display: block; font-size: 22px; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 4px; }
.svc-stat span   { display: block; font-size: 12px; color: var(--text-2); text-transform: uppercase; letter-spacing: .08em; line-height: 1.35; }
.svc-stat-divider { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }

/* Services Hero Panel */
.svc-hero-panel {
  background: linear-gradient(145deg, rgba(20,26,38,0.95), rgba(10,14,24,0.98));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.45);
  position: relative;
  overflow: hidden;
}
.svc-hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(64,196,175,0.1), transparent 55%),
              radial-gradient(ellipse at 20% 80%, rgba(124,109,240,0.1), transparent 50%);
  pointer-events: none;
}
.svc-panel-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.svc-panel-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.035);
  transition: background var(--transition), border-color var(--transition);
}
.svc-panel-card:hover { background: rgba(255,255,255,0.06); }
.svc-panel-card span { font-size: 13px; font-weight: 600; color: var(--white); line-height: 1.3; }
.svc-panel-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.svc-panel-icon svg { width: 18px; height: 18px; }
.svc-panel-card--blue   .svc-panel-icon { background: rgba(59,130,246,0.15);  border: 1px solid rgba(59,130,246,0.25);  color: #3b82f6; }
.svc-panel-card--purple .svc-panel-icon { background: rgba(139,92,246,0.15);  border: 1px solid rgba(139,92,246,0.25);  color: #8b5cf6; }
.svc-panel-card--cyan   .svc-panel-icon { background: rgba(6,182,212,0.15);   border: 1px solid rgba(6,182,212,0.25);   color: #06b6d4; }
.svc-panel-card--green  .svc-panel-icon { background: rgba(16,185,129,0.15);  border: 1px solid rgba(16,185,129,0.25);  color: #10b981; }
.svc-panel-card--orange .svc-panel-icon { background: rgba(249,115,22,0.15);  border: 1px solid rgba(249,115,22,0.25);  color: #f97316; }
.svc-panel-card--pink   .svc-panel-icon { background: rgba(236,72,153,0.15);  border: 1px solid rgba(236,72,153,0.25);  color: #ec4899; }
.svc-panel-card--blue   { border-left: 2px solid rgba(59,130,246,0.4); }
.svc-panel-card--purple { border-left: 2px solid rgba(139,92,246,0.4); }
.svc-panel-card--cyan   { border-left: 2px solid rgba(6,182,212,0.4); }
.svc-panel-card--green  { border-left: 2px solid rgba(16,185,129,0.4); }
.svc-panel-card--orange { border-left: 2px solid rgba(249,115,22,0.4); }
.svc-panel-card--pink   { border-left: 2px solid rgba(236,72,153,0.4); }
.svc-panel-badge {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--primary); font-weight: 600;
  letter-spacing: .06em;
  border: 1px solid rgba(64,196,175,0.25);
  border-radius: 999px;
  padding: 7px 16px;
  background: rgba(64,196,175,0.06);
}

/* ── Services grid (PHP template) ──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card-blue  { --card-accent: #3b82f6; }
.service-card-purple{ --card-accent: #8b5cf6; }
.service-card-cyan  { --card-accent: #06b6d4; }
.service-card-green { --card-accent: #10b981; }
.service-card-orange{ --card-accent: #f59e0b; }
.service-card-pink  { --card-accent: #ec4899; }
.service-card-blue:hover,
.service-card-purple:hover,
.service-card-cyan:hover,
.service-card-green:hover,
.service-card-orange:hover,
.service-card-pink:hover { border-color: var(--card-accent, var(--border-glow)); }
.service-icon { width: 56px; height: 56px; border-radius: 16px; margin-bottom: 20px; overflow: hidden; flex-shrink: 0; }
.service-icon svg { width: 56px; height: 56px; }
.service-tags {
  display: flex; gap: 6px; flex-wrap: wrap;
  list-style: none; margin-top: 16px; padding: 0;
}
.service-tags li {
  font-size: 11px; font-weight: 600; color: var(--text-2);
  border: 1px solid var(--border); border-radius: 999px;
  padding: 3px 10px; background: rgba(255,255,255,0.02);
}

/* ── Services Page — Journey Groups ─────────────────────────────── */
.svc-services-section {
  padding: 120px 0;
}
.svc-journey-group {
  margin-bottom: 56px;
}
.svc-journey-group:last-child {
  margin-bottom: 0;
}
.svc-journey-label {
  margin-bottom: 24px;
}
.svc-journey-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid;
}
.svc-journey-badge svg { flex-shrink: 0; }
.svc-journey-badge--build {
  color: #3b82f6;
  border-color: rgba(59,130,246,0.3);
  background: rgba(59,130,246,0.08);
}
.svc-journey-badge--launch {
  color: #06b6d4;
  border-color: rgba(6,182,212,0.3);
  background: rgba(6,182,212,0.08);
}
.svc-journey-badge--grow {
  color: #10b981;
  border-color: rgba(16,185,129,0.3);
  background: rgba(16,185,129,0.08);
}
.svc-journey-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Service Detail Cards */
.svc-detail-card {
  border: 1px solid rgba(244,239,229,0.09);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(244,239,229,0.055), rgba(244,239,229,0.015));
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.svc-detail-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  opacity: 0.7;
}
.svc-detail-card--blue::before   { background: linear-gradient(180deg, #3b82f6, #8b5cf6); }
.svc-detail-card--purple::before { background: linear-gradient(180deg, #8b5cf6, #ec4899); }
.svc-detail-card--cyan::before   { background: linear-gradient(180deg, #06b6d4, #3b82f6); }
.svc-detail-card--green::before  { background: linear-gradient(180deg, #10b981, #06b6d4); }
.svc-detail-card--orange::before { background: linear-gradient(180deg, #f59e0b, #ef4444); }
.svc-detail-card--pink::before   { background: linear-gradient(180deg, #ec4899, #8b5cf6); }
.svc-detail-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35), var(--glow-card);
}
.svc-detail-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc-detail-icon--blue   { color: #3b82f6; background: linear-gradient(135deg, rgba(59,130,246,0.18), rgba(59,130,246,0.05)); border: 1px solid rgba(59,130,246,0.25); }
.svc-detail-icon--purple { color: #8b5cf6; background: linear-gradient(135deg, rgba(139,92,246,0.18), rgba(139,92,246,0.05)); border: 1px solid rgba(139,92,246,0.25); }
.svc-detail-icon--cyan   { color: #06b6d4; background: linear-gradient(135deg, rgba(6,182,212,0.18), rgba(6,182,212,0.05)); border: 1px solid rgba(6,182,212,0.25); }
.svc-detail-icon--green  { color: #10b981; background: linear-gradient(135deg, rgba(16,185,129,0.18), rgba(16,185,129,0.05)); border: 1px solid rgba(16,185,129,0.25); }
.svc-detail-icon--orange { color: #f97316; background: linear-gradient(135deg, rgba(249,115,22,0.18), rgba(249,115,22,0.05)); border: 1px solid rgba(249,115,22,0.25); }
.svc-detail-icon--pink   { color: #ec4899; background: linear-gradient(135deg, rgba(236,72,153,0.18), rgba(236,72,153,0.05)); border: 1px solid rgba(236,72,153,0.25); }

.svc-detail-body {
  flex: 1;
  min-width: 0;
}
.svc-detail-body h3 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 10px;
}
.svc-detail-body > p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 18px;
}
.svc-detail-deliverables {
  margin-bottom: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(244,239,229,0.07);
  border-bottom: 1px solid rgba(244,239,229,0.07);
}
.svc-detail-deliverables strong {
  display: block;
  font-size: 12px;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 10px;
}
.svc-detail-deliverables ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.svc-detail-deliverables li {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 12px;
  background: rgba(255,255,255,0.02);
  transition: var(--transition);
}
.svc-detail-deliverables li:hover {
  color: var(--white);
  border-color: var(--border-glow);
}
.svc-detail-bestfor {
  display: block;
  font-size: 13px;
  color: var(--text-2);
  font-style: italic;
  margin-bottom: 18px;
}
.svc-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: gap var(--transition), color var(--transition);
}
.svc-detail-link:hover {
  gap: 10px;
  color: var(--white);
}
.svc-detail-link svg { transition: transform var(--transition); }
.svc-detail-link:hover svg { transform: translateX(3px); }

/* Why section proof + platforms */
.why-proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
}
.why-proof::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(64,196,175,0.15);
  flex-shrink: 0;
}
.why-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.why-platforms span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(255,255,255,0.02);
  transition: var(--transition);
}
.why-platforms span:hover {
  color: var(--white);
  border-color: var(--border-glow);
}

/* Tech Stack — Categorized */
.svc-tech-section {
  padding: 120px 0;
}
.svc-tech-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-tech-category {
  border: 1px solid rgba(244,239,229,0.09);
  border-radius: 20px;
  background: rgba(244,239,229,0.035);
  padding: 28px;
  transition: var(--transition);
}
.svc-tech-category:hover {
  border-color: var(--border-glow);
  box-shadow: var(--glow-card);
}
.svc-tech-category h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(244,239,229,0.07);
}
.svc-tech-category h4 svg {
  color: var(--primary);
  flex-shrink: 0;
}
.svc-tech-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tech-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Stats grid (PHP template) ──────────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: 52px; font-weight: 800; line-height: 1;
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 10px;
}
.stat-label { font-size: 14px; color: var(--text-2); font-weight: 500; }

/* ── Process body ───────────────────────────────────────────────────────────── */
.process-body { padding: 0 12px; }
.process-body h4 { color: var(--white); margin-bottom: 8px; font-size: 15px; }
.process-body p { font-size: 13px; color: var(--text-2); }

/* ── Projects grid ──────────────────────────────────────────────────────────── */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.project-thumb-placeholder svg { width: 100%; height: 100%; }
.project-thumb-overlay {
  position: absolute; inset: 0;
  background: rgba(3,6,15,0.75); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.project-card:hover .project-thumb-overlay { opacity: 1; }
.project-thumb img { width: 100%; height: 100%; object-fit: cover; }
.section-cta { text-align: center; margin-top: 48px; }

/* ── Testimonials grid ──────────────────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.t-stars { color: #fbbf24; font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.t-quote { font-size: 15px; line-height: 1.8; color: var(--text); font-style: italic; margin-bottom: 24px; }
.t-author { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--border); padding-top: 20px; }
.t-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  font-family: "Space Grotesk", sans-serif; font-size: 14px; font-weight: 700; color: #fff;
}
.t-name { display: block; font-size: 14px; font-weight: 600; color: var(--white); font-style: normal; }
.t-role { font-size: 12px; color: var(--text-2); margin-top: 2px; }

/* ── CTA Band (PHP template) ────────────────────────────────────────────────── */
.cta-band {
  padding: 100px 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(59,130,246,0.07) 0%, rgba(139,92,246,0.07) 100%);
  border-top: 1px solid var(--border);
}
.cta-band-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-orb { position: absolute; border-radius: 50%; filter: blur(80px); }
.cta-orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(59,130,246,0.2), transparent 70%); top: -200px; left: -100px; }
.cta-orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(139,92,246,0.15), transparent 70%); bottom: -150px; right: 0; }
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-text h2 { margin-bottom: 16px; }
.cta-text p { max-width: 50ch; margin: 0 auto 36px; font-size: 18px; color: var(--text); }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-lg { padding: 17px 36px; font-size: 16px; }

/* ── Footer (updated) ───────────────────────────────────────────────────────── */
.footer-top { display: grid; grid-template-columns: 1.6fr 2.4fr; gap: 48px; margin-bottom: 56px; }
.footer-brand { display: flex; flex-direction: column; }
.footer-logo { display: inline-flex; align-items: center; margin-bottom: 16px; }
.footer-logo img { height: 36px; width: auto; }
.footer-logo .brand-mark { height: 34px; width: auto; display: block; }
.footer-tagline { font-size: 14px; color: var(--text-2); line-height: 1.7; max-width: 28ch; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 10px;
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  color: var(--text-2); transition: var(--transition);
}
.footer-social a:hover { border-color: var(--border-glow); color: var(--white); background: rgba(59,130,246,0.1); }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.footer-col h5 { color: var(--white); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 20px; font-weight: 600; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: var(--text-2); transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; border-top: 1px solid var(--border);
  font-size: 13px; color: var(--text-2); flex-wrap: wrap; gap: 12px;
}
.footer-built span { color: var(--text); }
.footer-copy { color: var(--text-2); }

/* ── Page Hero (inner pages) ────────────────────────────────────────────────── */
.page-hero {
  position: relative; overflow: hidden;
  padding: 80px 0 60px;
}
.page-hero-sm { padding: 70px 0 50px; }
/* `section.` qualifier beats the later "Sitewide spacing calibration" block's
   plain `.page-hero` rule (equal specificity, but that one is further down
   the file) so the compact "_sm" hero variant actually stays compact. */
section.page-hero-sm {
  padding-top: 88px;
  padding-bottom: 56px;
}
@media (max-width: 1024px) {
  section.page-hero-sm {
    padding-top: 72px;
    padding-bottom: 48px;
  }
}
@media (max-width: 768px) {
  section.page-hero-sm {
    padding-top: 56px !important;
    padding-bottom: 40px !important;
  }
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.page-hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 56px; align-items: center;
}
.page-hero-inner--text-only {
  display: block; max-width: 900px;
}
.page-hero-text h1 { margin: 14px 0 18px; max-width: 12ch; }
.page-hero-inner--text-only .page-hero-text h1 { max-width: 14ch; }
.page-hero-text p { max-width: 56ch; font-size: 18px; line-height: 1.75; margin-bottom: 28px; }
.page-hero-visual { min-width: 0; }

/* Service detail hero system */
.service-detail-hero {
  padding: 92px 0 72px;
}
.service-detail-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 44px;
  align-items: center;
}
.service-detail-copy h1 {
  margin: 16px 0 18px;
  font-size: clamp(42px, 6vw, 76px);
  max-width: 11ch;
}
.service-detail-copy p {
  max-width: 58ch;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
}
.service-detail-copy .service-detail-lead {
  color: var(--white);
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 14px;
}
.service-detail-visual {
  position: relative;
  border: 1px solid rgba(244,239,231,0.12);
  border-radius: 26px;
  overflow: hidden;
  background: rgba(16, 20, 29, 0.72);
  box-shadow: 0 34px 90px rgba(0,0,0,0.46);
}
.service-detail-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transform: scale(1.01);
}
.service-detail-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,8,14,0) 52%, rgba(5,8,14,0.62));
  pointer-events: none;
}
.service-visual-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  gap: 2px;
  min-width: 190px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background: rgba(8, 10, 13, 0.76);
  backdrop-filter: blur(16px);
}
.service-visual-badge span {
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.service-visual-badge strong {
  color: var(--white);
  font-size: 15px;
}
.service-proof-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 2px;
}
.service-proof-card {
  min-height: 142px;
  padding: 22px 24px;
  border: 1px solid rgba(244,239,231,0.10);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.service-proof-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.service-proof-card strong {
  display: block;
  color: var(--cream);
  font-size: 16px;
  line-height: 1.55;
}
.contact-hero-center {
  /* vertical spacing comes from the .page-hero-sm wrapper above, not here --
     this used to double up its own 80px/60px padding on top of that */
  position: relative; z-index: 1; text-align: center;
}
.contact-hero-center .kicker { justify-content: center; }
.contact-hero-lead {
  max-width: 52ch; margin: 16px auto 0; font-size: 18px; line-height: 1.75;
}

/* ── Hero illustration + metrics ────────────────────────────────────────────── */
.hero-illustration { width: 100%; height: auto; display: block; }
.hero-metrics { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 32px; }
.hero-metric { display: flex; flex-direction: column; gap: 4px; }
.hero-metric-val {
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px; font-weight: 800; color: var(--white);
}
.hero-metric > span { font-size: 12px; color: var(--text-2); text-transform: uppercase; letter-spacing: .08em; }

/* ── Why / Advantage cards ───────────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.why-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  backdrop-filter: blur(10px); transition: var(--transition);
  display: flex; gap: 20px; align-items: flex-start;
}
.why-card:hover { border-color: var(--border-glow); transform: translateY(-4px); }
.why-icon {
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(139,92,246,0.1));
  border: 1px solid rgba(59,130,246,0.15);
}
.why-icon svg { width: 22px; height: 22px; color: var(--primary); }
.why-card h4 { color: var(--white); margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--text); }

/* ── Tech badges ─────────────────────────────────────────────────────────────── */
.tech-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.tech-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 10px 18px;
  font-size: 14px; font-weight: 600; color: var(--white);
  backdrop-filter: blur(8px); transition: var(--transition);
}
.tech-badge:hover { border-color: var(--border-glow); background: rgba(59,130,246,0.07); }
.tech-badge svg { width: 18px; height: 18px; opacity: 0.8; }

/* ── Tech Stack Cards ────────────────────────────────────────────────────────── */
.tech-stack-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tech-stack-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px; text-align: center;
  backdrop-filter: blur(10px); transition: var(--transition);
}
.tech-stack-card:hover { border-color: var(--border-glow); transform: translateY(-4px); }
.tech-stack-icon { width: 56px; height: 56px; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; }
.tech-stack-icon svg { width: 56px; height: 56px; }
.tech-stack-card h4 { color: var(--white); margin-bottom: 8px; }
.tech-stack-card p { font-size: 13px; color: var(--text); }

/* ── Genre cards ─────────────────────────────────────────────────────────────── */
.genre-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.genre-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  backdrop-filter: blur(10px); transition: var(--transition);
  display: flex; flex-direction: column; gap: 14px;
}
.genre-card:hover { border-color: var(--border-glow); transform: translateY(-4px); }
.genre-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.genre-icon svg { width: 26px; height: 26px; }
.genre-card h4 { color: var(--white); }
.genre-card p { font-size: 13px; color: var(--text); }

/* ── Platform cards ──────────────────────────────────────────────────────────── */
.platform-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.platform-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 20px;
  backdrop-filter: blur(10px); transition: var(--transition);
  display: flex; align-items: flex-start; gap: 14px;
}
.platform-card:hover { border-color: var(--border-glow); transform: translateY(-4px); }
.platform-card-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 4px; }
.platform-card h4 { color: var(--white); margin-bottom: 6px; }
.platform-card p { font-size: 13px; color: var(--text); }

/* ── Features 2-col list ─────────────────────────────────────────────────────── */
.features-2col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.feature-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 16px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  transition: var(--transition);
}
.feature-row:hover { border-color: var(--border-glow); }
.feature-check {
  width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(16,185,129,0.05));
  border: 1px solid rgba(16,185,129,0.25);
  display: flex; align-items: center; justify-content: center;
  color: #10b981;
}
.feature-check svg { width: 14px; height: 14px; }
.feature-row h4 { color: var(--white); font-size: 14px; margin-bottom: 4px; }
.feature-row p { font-size: 13px; color: var(--text); }

/* ── Games Hero ──────────────────────────────────────────────────────────────── */
.games-hero { padding: 80px 0 90px; }
.games-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative; z-index: 1;
}
.games-hero-text h1 { margin: 16px 0 20px; font-size: clamp(36px, 4.5vw, 58px); }
.games-hero-text p  { font-size: 17px; line-height: 1.75; color: var(--text); max-width: 46ch; margin-bottom: 32px; }
.games-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.games-hero-stats {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  padding: 18px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
  width: fit-content;
}
.gh-stat strong { display: block; font-size: 22px; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 4px; }
.gh-stat span   { font-size: 12px; color: var(--text-2); text-transform: uppercase; letter-spacing: .08em; }
.gh-stat-divider { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }

/* Games Hero Panel */
.games-hero-panel {
  background: linear-gradient(145deg, rgba(16,20,30,0.97), rgba(8,10,18,0.99));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 36px 90px rgba(0,0,0,0.5);
}
.ghp-header {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.025);
}
.ghp-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.ghp-dot--red    { background: #ff5f57; }
.ghp-dot--yellow { background: #febc2e; }
.ghp-dot--green  { background: #28c840; }
.ghp-title { font-size: 12px; font-weight: 700; color: var(--text-2); letter-spacing: .08em; text-transform: uppercase; margin-left: 4px; flex: 1; }
.ghp-live {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; color: #10b981; letter-spacing: .06em; text-transform: uppercase;
}
.ghp-pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #10b981;
  animation: ghp-blink 1.6s ease-in-out infinite;
}
@keyframes ghp-blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.ghp-genres {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  padding: 18px;
}
.ghp-genre-card {
  display: flex; flex-direction: column; gap: 8px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 2px solid var(--gc-color);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
  transition: background var(--transition);
}
.ghp-genre-card:hover { background: rgba(255,255,255,0.06); }
.ghp-genre-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  color: var(--gc-color);
}
.ghp-genre-icon svg { width: 16px; height: 16px; }
.ghp-genre-card span { font-size: 13px; font-weight: 600; color: var(--white); }
.ghp-genre-bar { height: 3px; border-radius: 99px; background: rgba(255,255,255,0.08); overflow: hidden; }
.ghp-genre-bar-fill { height: 100%; border-radius: 99px; background: var(--gc-color); opacity: 0.7; }

.ghp-footer {
  padding: 12px 18px;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
}
.ghp-platform-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.ghp-platform-row > span:first-child { font-size: 11px; color: var(--text-2); text-transform: uppercase; letter-spacing: .08em; }
.ghp-plat {
  font-size: 11px; font-weight: 600; color: var(--text);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 10px;
  background: rgba(255,255,255,0.03);
}

/* ── Games / Apps grid ───────────────────────────────────────────────────────── */
.games-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.game-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: var(--transition); display: flex; flex-direction: column;
}
.game-card:hover { transform: translateY(-6px); border-color: var(--border-glow); box-shadow: var(--glow-card); }
.game-card-thumb {
  height: 180px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--bg-2), #0c1635);
  display: flex; align-items: center; justify-content: center;
}
.game-card-thumb img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.game-thumb-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.game-thumb-placeholder svg { width: 100%; height: 100%; }
.game-card-body { padding: 20px 24px; flex: 1; display: flex; flex-direction: column; }
.game-card-body h3 { color: var(--white); margin-bottom: 8px; font-size: 17px; }
.game-card-body p { font-size: 13px; color: var(--text); flex: 1; }
.game-store-links { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.fingernic-logo { display:inline-flex; align-items:center; }
.fingernic-logo .brand-mark { height: 38px; width: auto; display: block; }
.fingernic-logo .brand-mark text { font-family: Manrope, system-ui, sans-serif; }

/* ── Games page: discovery and production ─────────────────────────────────── */
.games-discovery { padding: 104px 0 88px; background: radial-gradient(circle at 80% 20%, rgba(6,182,212,.10), transparent 26%), var(--bg-2); border-bottom: 1px solid var(--border); }
.games-discovery__intro { max-width: 650px; margin-bottom: 38px; }
.games-discovery__intro h2, .games-production h2 { color: var(--white); max-width: 14ch; margin: 10px 0 16px; }
.games-discovery__intro p, .games-production__copy p { max-width: 58ch; color: var(--text); font-size: 16px; line-height: 1.75; }
.games-discovery__genres { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.games-discovery__genre { position: relative; min-height: 172px; display: flex; flex-direction: column; justify-content: space-between; padding: 22px; border: 1px solid var(--border); border-radius: 16px; background: linear-gradient(145deg, rgba(19,31,53,.9), rgba(9,14,28,.9)); overflow: hidden; transition: .25s ease; }
.games-discovery__genre::after { content: ""; position: absolute; right: -24px; bottom: -35px; width: 115px; height: 115px; border-radius: 50%; background: rgba(6,182,212,.1); transition: .25s ease; }
.games-discovery__genre:hover { transform: translateY(-5px); border-color: var(--accent); }
.games-discovery__genre:hover::after { transform: scale(1.45); background: rgba(6,182,212,.17); }
.games-discovery__number { position: relative; z-index: 1; color: var(--accent); font: 600 12px/1 "Space Grotesk",sans-serif; letter-spacing: .12em; }
.games-discovery__genre strong { position: relative; z-index: 1; color: var(--white); font: 600 22px/1.1 "Space Grotesk",sans-serif; }
.games-discovery__genre span:last-child { position: relative; z-index: 1; color: var(--text-2); font-size: 13px; }.games-discovery__genre b { color: var(--accent); margin-left: 8px; }
.games-production { padding: 104px 0; background: linear-gradient(120deg, rgba(19,31,53,.55), transparent 52%); }
.games-production__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.games-production__steps { display: grid; gap: 1px; overflow: hidden; border: 1px solid var(--border); border-radius: 18px; background: var(--border); }
.games-production__steps > div { display: grid; grid-template-columns: 72px 1fr 1.25fr; align-items: center; gap: 18px; padding: 25px 26px; background: var(--bg-card); }.games-production__steps span { color: var(--accent); font: 600 13px "Space Grotesk",sans-serif; }.games-production__steps h3 { color: var(--white); margin: 0; font-size: 17px; }.games-production__steps p { margin: 0; color: var(--text-2); font-size: 13px; line-height: 1.6; }

/* ── Store buttons ───────────────────────────────────────────────────────────── */
.store-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px; border-radius: 10px;
  font-size: 13px; font-weight: 600;
  transition: var(--transition); white-space: nowrap; text-decoration: none;
}
.store-btn-play {
  background: linear-gradient(135deg, #1a73e8, #0d47a1);
  color: #fff; border: none;
  box-shadow: 0 4px 12px rgba(26,115,232,0.3);
}
.store-btn-play:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(26,115,232,0.45); }
.store-btn-apple {
  background: linear-gradient(135deg, #1c1c2e, #2e2e45);
  color: #fff; border: 1px solid rgba(255,255,255,0.1);
}
.store-btn-apple:hover { transform: translateY(-2px); background: linear-gradient(135deg, #2e2e45, #3e3e5a); }
.store-btn svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── No results message ──────────────────────────────────────────────────────── */
.no-results-msg { text-align: center; padding: 60px 20px; color: var(--text-2); font-size: 16px; }

/* ── Stats bar (portfolio) ───────────────────────────────────────────────────── */
.stats-bar { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 32px 0; }
.stats-bar-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.stats-bar-item { display: flex; flex-direction: column; align-items: center; padding: 12px 48px; text-align: center; }
.stats-bar-item .stat-number { font-size: 36px; margin-bottom: 4px; }
.stats-bar-item .stat-label { font-size: 13px; }
.stats-bar-sep { width: 1px; height: 44px; background: var(--border); flex-shrink: 0; }

/* ── About page ─────────────────────────────────────────────────── */
.about-hero {
  padding-bottom: 92px;
}
.about-hero-inner {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
}
.about-hero .page-hero-text h1 {
  max-width: 16ch;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero panel */
.about-hero-panel {
  position: relative;
  overflow: visible;
  border: 1px solid rgba(244,239,229,0.1);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(244,239,229,0.07), rgba(244,239,229,0.024)),
    radial-gradient(circle at 76% 4%, rgba(64,196,175,0.1), transparent 30%),
    #0f141b;
  box-shadow: 0 32px 90px rgba(0,0,0,0.36);
  padding: 36px 40px 46px;
  margin-top: 10px;
}
.about-hero-panel::before {
  display: none;
}
.about-panel-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}
.about-panel-header span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.about-panel-header strong {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.95;
}

/* Launch Grid (2×2) — replaces old timeline */
.about-launch-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 22px;
}
.about-launch-card {
  min-height: 132px;
  padding: 24px 26px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background: rgba(6,7,10,0.54);
  box-shadow: 0 10px 26px rgba(0,0,0,0.2);
  backdrop-filter: blur(16px);
  transition: var(--transition);
}
.about-launch-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.32);
}
.about-launch-num {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(64,196,175,0.12);
  border: 1px solid rgba(64,196,175,0.24);
  color: var(--primary);
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 14px;
}
.about-launch-card h3 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 6px;
}
.about-launch-card p {
  color: var(--text);
  font-size: 13px;
  line-height: 1.55;
}
.about-launch-summary-label {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  color: var(--text-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.about-launch-summary-label::before,
.about-launch-summary-label::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(255,255,255,0.06);
}

/* Launch status pills */
.about-launch-status {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 14px;
  padding-top: 0;
  border-top: 0;
}
.about-launch-status div {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(6,7,10,0.54);
  padding: 22px 24px 24px;
}
.about-launch-status span {
  display: block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.about-launch-status strong {
  color: var(--white);
  font-size: 22px;
}

/* ── Who We Are — Intro + Benefit Cards ─────────────────────────── */
.about-intro-section {
  padding: 120px 0;
}
.about-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.about-benefit-card {
  border: 1px solid rgba(244,239,229,0.09);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(244,239,229,0.055), rgba(244,239,229,0.02));
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.about-benefit-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(circle at 50% 0%, rgba(64,196,175,0.08), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.about-benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: var(--glow-card);
}
.about-benefit-card:hover::after { opacity: 1; }
.about-benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.about-benefit-icon--teal {
  color: var(--primary);
  background: linear-gradient(135deg, rgba(64,196,175,0.18), rgba(64,196,175,0.05));
  border: 1px solid rgba(64,196,175,0.25);
}
.about-benefit-icon--violet {
  color: var(--secondary);
  background: linear-gradient(135deg, rgba(124,109,240,0.18), rgba(124,109,240,0.05));
  border: 1px solid rgba(124,109,240,0.25);
}
.about-benefit-icon--gold {
  color: var(--accent);
  background: linear-gradient(135deg, rgba(214,168,79,0.18), rgba(214,168,79,0.05));
  border: 1px solid rgba(214,168,79,0.25);
}
.about-benefit-card h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.about-benefit-card p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

/* ── Stats Section (card grid) ──────────────────────────────────── */
.about-stats-section {
  padding: 72px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.about-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px;
  border: 1px solid rgba(244,239,229,0.09);
  border-radius: 18px;
  background: rgba(244,239,229,0.035);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.about-stat-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}
.about-stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: var(--glow-card);
}
.about-stat-card--link {
  cursor: pointer;
}
.about-stat-card--link::after {
  content: "View proof";
  margin-top: 12px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.about-stat-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}
.about-stat-label {
  font-size: 14px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 8px;
}
.about-stat-cred {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.5;
}
.about-stats-proof {
  max-width: 860px;
  margin: 28px auto 0;
  text-align: center;
  color: var(--cream);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.75;
  padding: 18px 24px;
  border: 1px solid rgba(64,196,175,0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(64,196,175,0.09), rgba(124,109,240,0.07));
  box-shadow: 0 18px 42px rgba(0,0,0,0.18);
}
.about-platform-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.about-platform-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  border: 1px solid rgba(244,239,229,0.1);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255,255,255,0.035);
  font-size: 12px;
  font-weight: 800;
}

/* ── How We Work — Process (with deliverables) ──────────────────── */
.about-model-section {
  padding: 120px 0;
  background: linear-gradient(180deg, rgba(244,239,229,0.018), rgba(6,7,10,0));
}
.about-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.about-process-note {
  max-width: 760px;
  margin: 12px auto 0;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}
.about-process-card {
  border: 1px solid rgba(244,239,229,0.09);
  border-radius: 16px;
  background: rgba(244,239,229,0.035);
  padding: 26px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.about-process-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: var(--glow-card);
}
.about-process-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(64,196,175,0.12);
  border: 1px solid rgba(64,196,175,0.24);
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 22px;
  flex-shrink: 0;
}
.about-process-card h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 10px;
}
.about-process-card p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-process-deliverables {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid rgba(244,239,229,0.07);
}
.about-process-deliverables li {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(255,255,255,0.02);
  transition: var(--transition);
}
.about-process-deliverables li:hover {
  color: var(--white);
  border-color: var(--border-glow);
}

/* ── Capabilities (with icons + tags) ───────────────────────────── */
.about-capabilities-section {
  padding: 120px 0;
}
.about-capabilities {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 60px;
  align-items: start;
}
.about-capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.about-capability-grid article {
  border: 1px solid rgba(244,239,229,0.09);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(244,239,229,0.06), rgba(244,239,229,0.025));
  padding: 26px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.about-capability-grid article:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: var(--glow-card);
}
.about-capability-grid article:nth-child(2) { border-color: rgba(124,109,240,0.22); }
.about-capability-grid article:nth-child(3) { border-color: rgba(214,168,79,0.22); }
.about-capability-grid article:nth-child(4) { border-color: rgba(64,196,175,0.22); }
.about-capability-grid h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 10px;
}
.about-capability-grid p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-cap-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.about-cap-icon--blue {
  color: #3b82f6;
  background: linear-gradient(135deg, rgba(59,130,246,0.18), rgba(59,130,246,0.05));
  border: 1px solid rgba(59,130,246,0.25);
}
.about-cap-icon--purple {
  color: #8b5cf6;
  background: linear-gradient(135deg, rgba(139,92,246,0.18), rgba(139,92,246,0.05));
  border: 1px solid rgba(139,92,246,0.25);
}
.about-cap-icon--gold {
  color: var(--accent);
  background: linear-gradient(135deg, rgba(214,168,79,0.18), rgba(214,168,79,0.05));
  border: 1px solid rgba(214,168,79,0.25);
}
.about-cap-icon--green {
  color: #22c55e;
  background: linear-gradient(135deg, rgba(34,197,94,0.18), rgba(34,197,94,0.05));
  border: 1px solid rgba(34,197,94,0.25);
}
.about-cap-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(244,239,229,0.07);
}
.about-cap-tags span {
  font-size: 11px;
  font-weight: 800;
  color: var(--cream);
  border: 1px solid rgba(64,196,175,0.28);
  border-radius: 999px;
  padding: 7px 12px;
  background:
    linear-gradient(135deg, rgba(64,196,175,0.13), rgba(124,109,240,0.08)),
    rgba(255,255,255,0.025);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  transition: var(--transition);
}
.about-cap-tags span:hover {
  color: var(--white);
  border-color: var(--border-glow);
  background: rgba(64,196,175,0.14);
}
.about-cap-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 18px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
.about-cap-link::after {
  content: "->";
  transition: transform var(--transition);
}
.about-cap-link:hover {
  color: var(--white);
}
.about-cap-link:hover::after {
  transform: translateX(4px);
}

#game-development,
#mobile-app-development,
#game-publishing,
#aso-optimization,
#growth-marketing,
#liveops-monetization {
  scroll-margin-top: 110px;
}

/* ── Trust Section ──────────────────────────────────────────────── */
.about-trust-section {
  padding: 120px 0;
  background:
    linear-gradient(180deg, rgba(244,239,229,0.02), rgba(6,7,10,0)),
    radial-gradient(circle at 80% 20%, rgba(64,196,175,0.06), transparent 28%),
    radial-gradient(circle at 20% 80%, rgba(124,109,240,0.06), transparent 28%);
}
.about-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.about-trust-card {
  border: 1px solid rgba(244,239,229,0.1);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(244,239,229,0.06), rgba(244,239,229,0.02));
  padding: 30px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.about-trust-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity var(--transition);
}
.about-trust-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35), var(--glow-card);
}
.about-trust-card:hover::before { opacity: 1; }
.about-trust-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.about-trust-icon--teal {
  color: var(--primary);
  background: linear-gradient(135deg, rgba(64,196,175,0.18), rgba(64,196,175,0.05));
  border: 1px solid rgba(64,196,175,0.25);
}
.about-trust-icon--violet {
  color: var(--secondary);
  background: linear-gradient(135deg, rgba(124,109,240,0.18), rgba(124,109,240,0.05));
  border: 1px solid rgba(124,109,240,0.25);
}
.about-trust-icon--gold {
  color: var(--accent);
  background: linear-gradient(135deg, rgba(214,168,79,0.18), rgba(214,168,79,0.05));
  border: 1px solid rgba(214,168,79,0.25);
}
.about-trust-icon--blue {
  color: #3b82f6;
  background: linear-gradient(135deg, rgba(59,130,246,0.18), rgba(59,130,246,0.05));
  border: 1px solid rgba(59,130,246,0.25);
}
.about-trust-card h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 12px;
}
.about-trust-card p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 20px;
  flex: 1;
}
.about-trust-proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-size: 12px;
  font-weight: 900;
  color: var(--cream);
  padding: 8px 11px;
  border: 1px solid rgba(64,196,175,0.2);
  border-radius: 999px;
  background: rgba(64,196,175,0.08);
}
.about-trust-proof::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(64,196,175,0.15);
  flex-shrink: 0;
}

/* ── CTA enhancements ───────────────────────────────────────────── */
.about-cta .kicker {
  margin-bottom: 14px;
}
.cta-support {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-2);
  text-align: center;
}

/* ── Contact layout ──────────────────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
.contact-form-col, .contact-info-col { display: flex; flex-direction: column; gap: 24px; }
.contact-form-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px; backdrop-filter: blur(10px);
}
.contact-form-card h3 { color: var(--white); margin-bottom: 24px; }
.contact-info-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  backdrop-filter: blur(10px); display: flex; align-items: flex-start; gap: 18px;
}
.contact-info-card .contact-info-icon { border-style: solid; }

/* ── FAQ accordion ───────────────────────────────────────────────────────────── */
.faq-list {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; backdrop-filter: blur(10px);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; background: transparent; border: none; color: var(--white);
  font-family: "Space Grotesk", sans-serif; font-size: 15px; font-weight: 600;
  text-align: left; padding: 20px 24px; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transition: color var(--transition);
}
details summary { list-style: none; }
details summary::-webkit-details-marker { display: none; }
details[open] > summary.faq-question { color: var(--primary); }
.faq-title { color: var(--white); margin-bottom: 20px; }
.faq-answer { padding: 0 24px 20px; font-size: 14px; color: var(--text); line-height: 1.75; }

/* ── Single post two-column layout ──────────────────────────────────────────── */
.single-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.single-main { min-width: 0; }
.single-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 92px; }
.single-featured-img { border-radius: var(--radius); overflow: hidden; margin-bottom: 32px; }
.single-featured-img img { width: 100%; height: auto; display: block; object-fit: cover; }
.single-content { color: var(--text); line-height: 1.8; }
.single-content h2, .single-content h3, .single-content h4 { color: var(--white); margin: 28px 0 12px; }
.single-content p { color: var(--text); margin-bottom: 16px; }
.single-content ul, .single-content ol { color: var(--text); padding-left: 1.5em; margin-bottom: 16px; }
.single-content li { margin-bottom: 8px; }
.single-content a { color: var(--primary); text-decoration: underline; }
.single-content img { border-radius: var(--radius-sm); margin: 16px 0; }

/* ── Single sidebar cards ────────────────────────────────────────────────────── */
.single-meta-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; backdrop-filter: blur(10px);
}
.single-meta-card h4 { color: var(--white); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.meta-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.meta-row:last-of-type { border-bottom: none; padding-bottom: 0; }
.meta-label { font-size: 12px; color: var(--text-2); text-transform: uppercase; letter-spacing: .08em; flex-shrink: 0; }
.meta-value { font-size: 13px; color: var(--white); font-weight: 500; text-align: right; }
.single-cta-card {
  background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(139,92,246,0.08));
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: var(--radius); padding: 28px; backdrop-filter: blur(10px);
}
.single-cta-card h4 { color: var(--white); margin-bottom: 10px; }
.single-cta-card p { font-size: 14px; color: var(--text); margin-bottom: 20px; }

/* ── Screenshots ─────────────────────────────────────────────────────────────── */
.screenshots-gallery { margin-top: 48px; padding: 28px; background: linear-gradient(145deg, rgba(15, 23, 42, .88), rgba(8, 13, 28, .98)); border: 1px solid var(--border); border-radius: var(--radius); }
.screenshots-gallery__heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.screenshots-gallery__heading .kicker { display: block; margin-bottom: 8px; }
.screenshots-gallery h3 { color: var(--white); margin: 0; }
.screenshots-gallery__heading p { margin: 0; font-size: 13px; color: var(--text-2); }
.screenshots-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.screenshot-card { position: relative; display: block; width: 100%; min-height: 190px; padding: 0; overflow: hidden; border: 1px solid var(--border); border-radius: 14px; background: #0c1324; cursor: zoom-in; isolation: isolate; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.screenshot-card img { display: block; width: 100%; height: 100%; min-height: 190px; object-fit: cover; transition: transform .45s ease; }
.screenshot-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(3, 6, 15, .66)); opacity: .5; transition: opacity .25s ease; }
.screenshot-card__zoom { position: absolute; right: 12px; bottom: 12px; z-index: 1; display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; color: #fff; background: rgba(6, 182, 212, .92); box-shadow: 0 8px 24px rgba(0, 0, 0, .28); opacity: 0; transform: translateY(8px); transition: opacity .25s ease, transform .25s ease; }
.screenshot-card__zoom svg { width: 20px; height: 20px; }
.screenshot-card:hover, .screenshot-card:focus-visible { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 18px 30px rgba(0, 0, 0, .28); outline: none; }
.screenshot-card:hover img, .screenshot-card:focus-visible img { transform: scale(1.055); }
.screenshot-card:hover::after, .screenshot-card:focus-visible::after { opacity: .85; }
.screenshot-card:hover .screenshot-card__zoom, .screenshot-card:focus-visible .screenshot-card__zoom { opacity: 1; transform: translateY(0); }
.screenshot-lightbox { position: fixed; z-index: 9999; inset: 0; display: grid; place-items: center; padding: 32px; }
.screenshot-lightbox[hidden] { display: none; }
.screenshot-lightbox__backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(2, 6, 18, .9); backdrop-filter: blur(12px); cursor: zoom-out; }
.screenshot-lightbox__dialog { position: relative; z-index: 1; display: grid; max-width: min(1100px, 92vw); max-height: 88vh; padding: 10px; border: 1px solid rgba(255, 255, 255, .16); border-radius: 18px; background: #0b1220; box-shadow: 0 32px 90px rgba(0, 0, 0, .6); }
.screenshot-lightbox__dialog img { display: block; max-width: 100%; max-height: calc(88vh - 20px); border-radius: 10px; object-fit: contain; }
.screenshot-lightbox__close { position: absolute; z-index: 2; top: -15px; right: -15px; display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(255, 255, 255, .25); border-radius: 50%; color: #fff; background: #15223b; font-size: 28px; line-height: 1; cursor: pointer; }
.screenshot-lightbox__close:hover, .screenshot-lightbox__close:focus-visible { background: var(--accent); outline: none; }

/* ── Video embed ─────────────────────────────────────────────────────────────── */
.video-embed { border-radius: var(--radius); overflow: hidden; margin-bottom: 32px; aspect-ratio: 16/9; }
.video-embed iframe, .video-embed > * { width: 100%; height: 100%; border: none; display: block; }

/* ── Portfolio hero full-bleed image ─────────────────────────────────────────── */
.portfolio-hero-img { position: relative; width: 100%; height: 60vh; min-height: 380px; overflow: hidden; }
.portfolio-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.portfolio-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(3,6,15,0.92) 0%, rgba(3,6,15,0.45) 55%, transparent 100%);
  display: flex; align-items: flex-end; padding-bottom: 48px;
}
.portfolio-hero-overlay .container { position: relative; z-index: 1; }

/* ── Portfolio meta bar ──────────────────────────────────────────────────────── */
.portfolio-meta-bar { background: var(--bg-2); border-bottom: 1px solid var(--border); padding: 0; }
.portfolio-meta-inner { display: flex; align-items: stretch; flex-wrap: wrap; }
.portfolio-meta-item {
  display: flex; flex-direction: column; justify-content: center; gap: 3px;
  padding: 16px 32px; border-right: 1px solid var(--border);
}
.portfolio-meta-item:last-child { border-right: none; }
.portfolio-meta-item > span { font-size: 11px; color: var(--text-2); text-transform: uppercase; letter-spacing: .08em; }
.portfolio-meta-item > strong { font-size: 14px; color: var(--white); font-weight: 600; }
.portfolio-meta-links { flex-direction: row; align-items: center; gap: 10px; flex-wrap: wrap; }

/* ── Case study blocks ───────────────────────────────────────────────────────── */
.case-block {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  backdrop-filter: blur(10px); margin-bottom: 24px;
}
.case-block:last-child { margin-bottom: 0; }
.case-block-kicker {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: 14px;
}
.case-block-kicker svg { flex-shrink: 0; }
.case-block p { font-size: 15px; color: var(--text); line-height: 1.8; }
.case-results {
  background: linear-gradient(135deg, rgba(16,185,129,0.07), rgba(16,185,129,0.02));
  border-color: rgba(16,185,129,0.2);
}

/* Premium media and editable content sections */
.media-story-section {
  background:
    linear-gradient(180deg, rgba(244,239,229,0.025), rgba(244,239,229,0)),
    radial-gradient(circle at 12% 0%, rgba(64,196,175,0.08), transparent 32%);
  padding-top: 72px;
}
.media-story {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 52px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(244,239,229,0.09);
  border-radius: 28px;
  background:
    radial-gradient(circle at 24% 18%, rgba(64,196,175,0.08), transparent 34%),
    linear-gradient(145deg, rgba(18,22,30,0.78), rgba(7,9,13,0.94));
  box-shadow: 0 32px 90px rgba(0,0,0,0.32);
}
.media-story-image {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(244,239,229,0.12);
  background: #11161d;
  box-shadow: 0 36px 90px rgba(0,0,0,0.42);
}
.media-story-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(6,7,10,0.34));
  pointer-events: none;
}
.media-story-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transform: scale(1.01);
}
.media-story-copy {
  padding: 10px 0;
}
.media-story-copy h2 {
  font-size: clamp(34px, 4vw, 54px);
  max-width: 13ch;
  margin: 14px 0 18px;
}
.media-story-copy p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  max-width: 58ch;
}
.media-story-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  list-style: none;
  padding: 0;
}
.media-story-list li {
  position: relative;
  padding: 16px 18px 16px 46px;
  border: 1px solid rgba(244,239,229,0.09);
  border-radius: 14px;
  background: rgba(244,239,229,0.035);
  color: var(--cream);
  font-weight: 600;
}
.media-story-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(64,196,175,0.12);
}
.contact-fit-section {
  background:
    linear-gradient(180deg, rgba(6,7,10,0.2), rgba(244,239,229,0.018)),
    radial-gradient(circle at 82% 12%, rgba(214,168,79,0.1), transparent 28%),
    radial-gradient(circle at 16% 72%, rgba(64,196,175,0.08), transparent 30%);
}
.contact-fit-story {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 64px;
}
.contact-fit-story .media-story-image {
  border-radius: 18px;
  min-height: 360px;
}
.contact-fit-story .media-story-image img {
  aspect-ratio: 5 / 4;
  height: 100%;
}
.contact-fit-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.contact-fit-overlay span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(244,239,229,0.14);
  border-radius: 10px;
  background: rgba(6,7,10,0.72);
  color: var(--cream);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(14px);
}
.contact-fit-story .media-story-copy {
  max-width: 620px;
}
.contact-fit-story .media-story-copy h2 {
  max-width: 100%;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  margin-bottom: 20px;
}
.contact-fit-story .media-story-copy p {
  max-width: 48ch;
}
.contact-fit-story .media-story-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}
.contact-fit-story .media-story-list li {
  min-height: 128px;
  padding: 54px 16px 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(244,239,229,0.07), rgba(244,239,229,0.025));
}
.contact-fit-story .media-story-list li::before {
  left: 18px;
  top: 18px;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 0 0 7px rgba(64,196,175,0.1);
}
@media (max-width: 600px) {
  .contact-fit-story .media-story-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .contact-fit-story .media-story-list li {
    min-height: 0;
    padding: 16px 18px 16px 46px;
  }
  .contact-fit-story .media-story-list li::before {
    left: 16px;
    top: 20px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
  }
}
.editable-content-section {
  padding-top: 72px;
  background: rgba(244,239,229,0.018);
}
.editable-content {
  max-width: 980px;
  margin: 0 auto;
  color: var(--text);
}
.editable-content > * + * {
  margin-top: 18px;
}
.editable-content h2,
.editable-content h3 {
  color: var(--white);
}
.editable-content img {
  border-radius: 18px;
  border: 1px solid var(--border);
}

/* ── Media queries ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 42px; }
  .hero-section { min-height: auto; padding: 90px 0 80px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-grid::before { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-hero-inner,
  .about-capabilities { grid-template-columns: 1fr; }
  .svc-hero-inner { grid-template-columns: 1fr; }
  .games-hero-inner { grid-template-columns: 1fr; }
  .games-hero-panel { display: none; }
  .svc-hero-panel { display: none; }
  .about-process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-benefit-grid { grid-template-columns: repeat(3, 1fr); }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .about-intro-section,
  .about-model-section,
  .about-capabilities-section,
  .about-trust-section { padding: 88px 0; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form-wrap { grid-template-columns: 1fr; }
  /* New components */
  .single-layout { grid-template-columns: 1fr; }
  .single-sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .genre-grid { grid-template-columns: repeat(2, 1fr); }
  .platform-cards { grid-template-columns: repeat(2, 1fr); }
  .tech-stack-cards { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar-item { padding: 12px 28px; }
  .portfolio-meta-item { padding: 12px 20px; }
  .svc-services-section,
  .svc-tech-section { padding: 88px 0; }
  .svc-tech-categories { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  h1 { font-size: clamp(32px, 8vw, 52px); }
  h2 { font-size: clamp(24px, 6vw, 40px); }
  .section { padding: 72px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .wp-block-columns.hero-grid { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .menu-btn { display: inline-block; }
  .nav-wrap { gap: 16px; }
  .nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(7, 13, 18, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: none;
    border-radius: 0;
    z-index: 9999;
    padding: 24px 24px 32px;
    overflow-y: auto;
  }
  .nav.open { display: flex; }
  .nav a {
    width: 100%;
    padding: 14px 4px;
    font-size: 16px;
    line-height: 1.4;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav .nav-cta {
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }
  .hero { padding: 80px 0; min-height: auto; }
  .page-hero, .page-hero-sm { padding: 64px 0 44px; }
  .page-hero-visual { max-width: 420px; margin: 0 auto; }
  .page-hero-text { text-align: left; }
  .hero-section { padding: 80px 0 64px; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-hero-panel { min-height: auto; }
  .about-panel-header { margin-bottom: 22px; align-items: flex-start; flex-direction: column; gap: 8px; }
  .about-launch-grid { gap: 16px; }
  .about-process-grid,
  .about-capability-grid { grid-template-columns: 1fr; }
  .about-benefit-grid { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-trust-grid { grid-template-columns: 1fr; }
  .about-stat-number { font-size: 36px; }
  .about-intro-section,
  .about-model-section,
  .about-capabilities-section,
  .about-trust-section { padding: 72px 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .meta-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; width: 100%; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 42px; }
  .stat-number { font-size: 42px; }
  .screenshots-grid { grid-template-columns: 1fr 1fr; }
  /* New components */
  .games-grid { grid-template-columns: 1fr; }
  .genre-grid { grid-template-columns: 1fr; }
  .platform-cards { grid-template-columns: 1fr; }
  .tech-stack-cards { grid-template-columns: 1fr; }
  .features-2col { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-metrics { gap: 16px; }
  .hero-metric-val { font-size: 22px; }
  .portfolio-hero-img { height: 45vh; min-height: 280px; }
  .portfolio-meta-inner { flex-direction: column; }
  .portfolio-meta-item { border-right: none; border-bottom: 1px solid var(--border); }
  .portfolio-meta-item:last-child { border-bottom: none; }
  .portfolio-meta-links { align-items: stretch; }
  .portfolio-meta-links .store-btn { justify-content: center; }
  .stats-bar-inner { gap: 0; }
  .stats-bar-sep { display: none; }
  .stats-bar-item { padding: 16px 24px; width: 50%; }
  .screenshots-row { grid-template-columns: 1fr 1fr; }
  .contact-form-card { padding: 24px; }
  .single-cta-card { padding: 24px; }
  .single-cta-card .btn { width: 100%; justify-content: center; }
  .case-block { padding: 20px; }
  .svc-journey-cards { grid-template-columns: 1fr; }
  .svc-detail-card { padding: 24px; }
  .svc-tech-categories { grid-template-columns: 1fr; }
  .svc-services-section,
  .svc-tech-section { padding: 72px 0; }
}
@media (max-width: 480px) {
  .svc-journey-cards { grid-template-columns: 1fr; }
  .svc-detail-card { flex-direction: column; gap: 16px; padding: 24px; }
  .svc-tech-categories { grid-template-columns: 1fr; }
  .svc-services-section,
  .svc-tech-section { padding: 56px 0; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .screenshots-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-col ul { display: grid; gap: 8px; }
  .about-hero-panel { padding: 24px 18px 32px; border-radius: 22px; margin-top: 0; }
  .about-hero-panel::before { display: none; }
  .about-launch-grid,
  .about-launch-status { grid-template-columns: 1fr; }
  .about-launch-grid { gap: 16px; }
  .about-launch-card { padding: 22px 20px; min-height: auto; }
  .about-launch-summary-label { margin-top: 22px; }
  .about-launch-summary-label::before { display: none; }
  .about-launch-status { margin-top: 12px; gap: 12px; }
  .about-launch-status div { padding: 20px 18px; }
  .about-stats-grid { grid-template-columns: 1fr; }
  .about-capabilities { gap: 34px; }
  .launch-chips { display: flex; }
  .screenshots-row { grid-template-columns: 1fr; }
  .stats-bar-item { width: 100%; }
  .hero-metrics { flex-direction: column; gap: 12px; }
  .page-hero, .page-hero-sm { padding: 52px 0 36px; }
  .page-hero-visual { display: none; }
  .why-card,
  .platform-card,
  .contact-info-card,
  .feature-row {
    flex-direction: column;
  }
  .meta-row { flex-direction: column; gap: 4px; }
  .meta-value { text-align: left; }
  .search-form { flex-direction: column; gap: 10px; }
  .search-form input,
  .search-form button { width: 100%; border-radius: var(--radius-sm); }
}

/* ╔══════════════════════════════════════════════════════════════╗
   ║  HOMEPAGE — front-page.php specific styles                  ║
   ╚══════════════════════════════════════════════════════════════╝ */

/* ── HP Hero ──────────────────────────────────────────────────── */
.hp-hero {
  position: relative; overflow: hidden;
  padding: 112px 0 92px; min-height: calc(100vh - 72px);
  display: flex; align-items: center;
  background:
    linear-gradient(135deg, rgba(3,6,15,0.2), rgba(8,13,28,0.88)),
    radial-gradient(circle at 70% 18%, rgba(16,185,129,0.12), transparent 28%);
}
.hp-hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.hp-grid {
  display: none;
}
.hp-orb {
  position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none;
}
.hp-orb-1 { width: 700px; height: 700px; background: radial-gradient(circle, rgba(59,130,246,0.22) 0%, transparent 70%); top: -200px; left: -200px; animation: orb-float 14s ease-in-out infinite; }
.hp-orb-2 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(139,92,246,0.16) 0%, transparent 70%); bottom: -120px; right: -40px; animation: orb-float 18s ease-in-out infinite reverse; }
.hp-orb-3 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(16,185,129,0.14) 0%, transparent 70%); top: 32%; right: 35%; animation: orb-float 11s ease-in-out infinite 2s; }

.hp-hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr); gap: 76px; align-items: center;
}
.hp-badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(16,185,129,0.36); border-radius: 999px;
  padding: 8px 18px; font-size: 13px; font-weight: 600; color: var(--accent);
  background: rgba(16,185,129,0.08); margin-bottom: 28px; width: fit-content;
}
.hp-badge-dot {
  width: 8px; height: 8px; background: #10b981; border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
.hp-title {
  font-size: clamp(42px, 4.6vw, 64px); font-weight: 800;
  line-height: 1.04; letter-spacing: 0; margin-bottom: 26px;
  max-width: 13ch;
}
.hp-title-grad {
  background: linear-gradient(90deg, #38bdf8, #8b5cf6 48%, #10b981);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hp-lead { font-size: 18px; color: #b5c0d2; line-height: 1.75; max-width: 54ch; margin-bottom: 34px; }
.hp-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hp-hero-stats {
  display: flex; align-items: center; gap: 0;
  border: 1px solid rgba(255,255,255,0.09); border-radius: var(--radius-sm);
  background: rgba(8,13,28,0.62); padding: 16px 0;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.22);
}
.hp-hs { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; flex: 1; min-width: 116px; padding: 0 18px; text-align: center; }
.hp-hs-val {
  display: block;
  font-family: "Space Grotesk", sans-serif; font-size: 32px; font-weight: 800; line-height: 1.1;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  white-space: nowrap;
}
.hp-hs-lbl { display: block; max-width: 13ch; font-size: 11px; line-height: 1.35; color: var(--text-2); text-transform: uppercase; letter-spacing: .08em; }
.hp-hs-sep { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }

.hp-hero-visual { display: flex; align-items: center; justify-content: center; min-width: 0; }
.hp-hero-media {
  position: relative;
  width: min(100%, 620px);
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(244,239,229,0.13);
  background: #11161d;
  box-shadow: 0 42px 110px rgba(0,0,0,0.48);
}
.hp-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,7,10,0.02), rgba(6,7,10,0.42));
  z-index: 1;
  pointer-events: none;
}
.hp-hero-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.hp-hero-media-card {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(244,239,229,0.16);
  background: rgba(6,7,10,0.72);
  backdrop-filter: blur(16px);
}
.hp-hero-media-card span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hp-hero-media-card strong {
  color: var(--cream);
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
}
.hp-studio-board {
  position: relative; width: min(100%, 520px); aspect-ratio: 1 / 1.04;
  border: 1px solid rgba(255,255,255,0.11); border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(13,23,49,0.94), rgba(5,10,24,0.98)),
    radial-gradient(circle at 25% 20%, rgba(59,130,246,0.16), transparent 34%);
  box-shadow: 0 42px 110px rgba(0,0,0,0.48), inset 0 1px 0 rgba(255,255,255,0.08);
  overflow: hidden; isolation: isolate;
}
.hp-studio-board::before {
  content: ""; position: absolute; inset: 16px; border-radius: 22px;
  background: var(--bg-2); opacity: 0.55; z-index: -1;
}
.hp-board-top {
  position: absolute; top: 24px; left: 24px; right: 24px;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--text-2); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.hp-board-top strong {
  color: #10b981; background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.32);
  border-radius: 999px; padding: 5px 10px; font-size: 11px;
}
.hp-device {
  position: absolute; left: 50%; top: 54%; transform: translate(-50%, -50%) rotate(-3deg);
  width: 210px; aspect-ratio: 0.62; border-radius: 30px; padding: 12px;
  background: linear-gradient(160deg, rgba(255,255,255,0.14), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.16); box-shadow: 0 30px 90px rgba(0,0,0,0.42);
}
.hp-device-screen {
  height: 100%; border-radius: 22px; background: #071024; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08); padding: 14px;
}
.hp-game-preview {
  position: relative; height: 56%; border-radius: 16px; overflow: hidden;
  background: linear-gradient(180deg, #38bdf8 0%, #2563eb 52%, #111827 53%, #1f2937 100%);
}
.hp-game-sun { position: absolute; width: 34px; height: 34px; border-radius: 50%; right: 18px; top: 18px; background: #facc15; box-shadow: 0 0 28px rgba(250,204,21,0.55); }
.hp-game-block { position: absolute; bottom: 22px; border-radius: 5px; background: rgba(255,255,255,0.88); }
.hp-game-block-1 { left: 24px; width: 26px; height: 44px; background: #10b981; }
.hp-game-block-2 { left: 58px; width: 34px; height: 70px; background: #8b5cf6; }
.hp-game-block-3 { left: 102px; width: 24px; height: 52px; background: #f97316; }
.hp-device-lines { display: grid; gap: 10px; margin-top: 18px; }
.hp-device-lines span { display: block; height: 10px; border-radius: 999px; background: rgba(255,255,255,0.09); }
.hp-device-lines span:nth-child(1) { width: 78%; }
.hp-device-lines span:nth-child(2) { width: 58%; }
.hp-device-lines span:nth-child(3) { width: 88%; background: linear-gradient(90deg, rgba(59,130,246,0.7), rgba(16,185,129,0.7)); }
.hp-pipeline {
  position: absolute; left: 28px; right: 28px; bottom: 28px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.hp-pipeline div {
  min-width: 0; padding: 12px 8px; border-radius: 12px;
  background: rgba(255,255,255,0.055); border: 1px solid rgba(255,255,255,0.08);
  color: var(--white); text-align: center; font-size: 12px; font-weight: 700;
}
.hp-pipeline span { display: block; color: var(--text-2); font-size: 10px; margin-bottom: 2px; }
.hp-rank-card, .hp-stack-card, .hp-rating-card {
  position: absolute; border: 1px solid rgba(255,255,255,0.12); border-radius: 16px;
  background: rgba(5,10,24,0.9); box-shadow: 0 18px 50px rgba(0,0,0,0.35);
  backdrop-filter: blur(14px);
}
.hp-rank-card { left: 22px; top: 104px; padding: 16px 18px; }
.hp-rank-card span, .hp-rating-card span { display: block; color: var(--text-2); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.hp-rank-card strong { display: block; color: var(--white); font-size: 34px; line-height: 1.05; margin-top: 4px; }
.hp-stack-card { right: 20px; top: 128px; display: grid; gap: 8px; padding: 12px; }
.hp-stack-card span { color: var(--white); font-size: 12px; font-weight: 700; border-radius: 999px; padding: 6px 10px; background: rgba(59,130,246,0.14); }
.hp-rating-card { right: 42px; bottom: 116px; display: flex; align-items: center; gap: 10px; padding: 14px 16px; }
.hp-rating-card strong { color: #fbbf24; font-size: 28px; line-height: 1; }

/* Homepage hero redesign */
.brand-mark {
  display: block;
  width: 150px;
  height: auto;
}
.fingernic-logo small {
  display: none;
}
.hp-hero {
  background:
    radial-gradient(circle at 72% 20%, rgba(64,196,175,0.14), transparent 27%),
    radial-gradient(circle at 16% 20%, rgba(124,109,240,0.13), transparent 32%),
    linear-gradient(135deg, #06090f 0%, #09111d 46%, #05070c 100%);
}
.hp-hero-inner {
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
}
.hp-title {
  max-width: 13ch;
}
.hp-title::after {
  content: "";
  display: block;
  width: 160px;
  height: 6px;
  margin-top: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f7c948, #40c4af, #7c6df0);
}
.hp-launch-console {
  position: relative;
  width: min(100%, 620px);
  min-height: 590px;
  padding: 28px 28px 46px;
  border: 1px solid rgba(244,239,229,0.12);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(244,239,229,0.08), rgba(244,239,229,0.025)),
    radial-gradient(circle at 50% 42%, rgba(64,196,175,0.09), transparent 32%),
    #0b1018;
  box-shadow: 0 46px 120px rgba(0,0,0,0.48);
  overflow: hidden;
}
.hp-launch-console::before {
  content: "";
  position: absolute;
  inset: 82px 28px 138px;
  border-radius: 24px;
  background: rgba(244,239,229,0.018);
}
.hp-console-top,
.hp-console-bottom {
  position: relative;
  z-index: 2;
}
.hp-console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hp-console-top span,
.hp-console-bottom span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hp-console-top strong {
  color: var(--accent);
  border: 0;
  border-radius: 0;
  padding: 0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: transparent;
}
.hp-console-orbit {
  position: relative;
  height: 370px;
  z-index: 1;
}
.hp-orbit-ring {
  position: absolute;
  inset: 50%;
  border: 1px solid rgba(244,239,229,0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.hp-orbit-ring-1 { width: 300px; height: 300px; }
.hp-orbit-ring-2 { display: none; }
.hp-core-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150px;
  min-height: 86px;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 24px;
  border: 1px solid rgba(64,196,175,0.22);
  background: linear-gradient(135deg, rgba(64,196,175,0.15), rgba(124,109,240,0.1)), rgba(6,7,10,0.72);
  box-shadow: 0 20px 52px rgba(0,0,0,0.28);
  filter: none;
}
.hp-core-mark span {
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 900;
}
.hp-core-mark small {
  color: var(--text-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hp-node {
  position: absolute;
  width: 164px;
  padding: 13px 14px 14px;
  border: 1px solid rgba(244,239,229,0.13);
  border-radius: 16px;
  background: rgba(6,7,10,0.78);
  color: var(--cream);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 18px 46px rgba(0,0,0,0.32);
  backdrop-filter: blur(14px);
}
.hp-node span {
  display: block;
  color: var(--primary);
  font-size: 11px;
  margin-bottom: 4px;
}
.hp-node strong {
  display: block;
  color: var(--cream);
  font-size: 14px;
  margin-bottom: 4px;
}
.hp-node small {
  display: block;
  color: var(--text-2);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
}
.hp-node-1 { left: 20px; top: 56px; }
.hp-node-2 { right: 20px; top: 56px; }
.hp-node-3 { left: 20px; bottom: 52px; }
.hp-node-4 { right: 20px; bottom: 52px; }
.hp-console-bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 34px;
}
.hp-console-bottom div {
  min-width: 0;
  padding: 16px 12px;
  border: 1px solid rgba(244,239,229,0.1);
  border-radius: 14px;
  background: rgba(244,239,229,0.045);
  text-align: center;
}
.hp-console-bottom strong {
  display: block;
  color: var(--white);
  font-size: 24px;
  margin-bottom: 6px;
}
.hp-console-bottom span {
  display: block;
  color: var(--text-2);
  font-size: 10px;
  letter-spacing: .08em;
  line-height: 1.35;
}

/* floating animation for SVG badge groups */
.hp-float-1 { animation: float-gentle 5s ease-in-out infinite; }
.hp-float-2 { animation: float-gentle 6s ease-in-out infinite 1.5s; }
.hp-float-3 { animation: float-gentle 4.5s ease-in-out infinite 0.8s; }

/* ── HP Ticker ────────────────────────────────────────────────── */
.hp-ticker {
  overflow: hidden; padding: 18px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.01);
}
.hp-ticker-track {
  display: flex; white-space: nowrap; gap: 0;
  animation: marquee-half 55s linear infinite;
  will-change: transform;
}
.hp-ticker-track span {
  display: inline-flex; align-items: center;
  padding: 0 40px; font-size: 13px; font-weight: 600;
  color: var(--text-2); letter-spacing: .04em; flex-shrink: 0;
}
.hp-ticker-item {
  display: inline-flex !important; align-items: center; gap: 7px;
}
.hp-ticker-item svg { opacity: 0.7; color: var(--primary); flex-shrink: 0; }
.hp-dot { color: var(--primary) !important; font-size: 10px !important; padding: 0 4px !important; opacity: 0.5; }

/* ── HP generic section ───────────────────────────────────────── */
.hp-section { padding: 80px 0; }
.hp-section--alt { background: var(--bg-2); }

.hp-sh { margin-bottom: 40px; }
.hp-sh h2 { margin-top: 12px; margin-bottom: 16px; }
.hp-sh p { max-width: 56ch; color: var(--text); font-size: 17px; }
.hp-sh--center { text-align: center; }
.hp-sh--center p { margin: 0 auto; }
.hp-sh--between { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.hp-sh--between > div h2 { margin-top: 10px; margin-bottom: 0; }

/* ── HP Services grid ─────────────────────────────────────────── */
.hp-svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hp-svc {
  position: relative; padding: 32px 28px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); backdrop-filter: blur(12px);
  transition: var(--transition); overflow: hidden;
}
.hp-svc::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  border-radius: var(--radius) var(--radius) 0 0; opacity: 0.8;
}
.hp-svc--blue::before  { background: linear-gradient(90deg, #3b82f6, #8b5cf6); }
.hp-svc--purple::before{ background: linear-gradient(90deg, #8b5cf6, #ec4899); }
.hp-svc--cyan::before  { background: linear-gradient(90deg, #06b6d4, #3b82f6); }
.hp-svc--green::before { background: linear-gradient(90deg, #10b981, #06b6d4); }
.hp-svc--orange::before{ background: linear-gradient(90deg, #f59e0b, #ef4444); }
.hp-svc--pink::before  { background: linear-gradient(90deg, #ec4899, #8b5cf6); }
.hp-svc:hover { transform: translateY(-6px); border-color: var(--border-glow); box-shadow: 0 24px 48px rgba(0,0,0,0.4), var(--glow-card); }
.hp-svc-icon { width: 72px; height: 72px; margin-bottom: 20px; }
.hp-svc-icon svg { width: 72px; height: 72px; border-radius: 20px; display: block; }
.hp-svc-num {
  font-family: "Space Grotesk", sans-serif; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; color: var(--text-2);
  margin-bottom: 10px;
}
.hp-svc h3 { color: var(--white); font-size: 20px; margin-bottom: 12px; }
.hp-svc p { font-size: 14px; color: var(--text); line-height: 1.75; margin-bottom: 18px; }
.hp-svc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.hp-svc-tags span {
  font-size: 11px; font-weight: 600; color: var(--text-2);
  border: 1px solid var(--border); border-radius: 999px;
  padding: 4px 10px; background: rgba(255,255,255,0.02);
}
.hp-svc-link { font-size: 13px; font-weight: 600; color: var(--primary); transition: gap var(--transition); display: inline-flex; gap: 4px; }
.hp-svc-link:hover { gap: 8px; }

/* ── HP Impact band ───────────────────────────────────────────── */
.hp-impact {
  position: relative; overflow: hidden; padding: 72px 0;
  background: linear-gradient(135deg, rgba(59,130,246,0.1) 0%, rgba(139,92,246,0.08) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.hp-impact-bg { position: absolute; inset: 0; pointer-events: none; }
.hp-impact-orb { position: absolute; border-radius: 50%; filter: blur(80px); }
.hp-impact-orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(59,130,246,0.2), transparent 70%); top: -200px; left: -100px; }
.hp-impact-orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(139,92,246,0.15), transparent 70%); bottom: -150px; right: 0; }
.hp-impact-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
}
.hp-impact-stat { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 0 56px; text-align: center; text-decoration: none; }
.hp-impact-stat--link {
  position: relative;
  border-radius: 18px;
  transition: transform var(--transition), background-color var(--transition);
}
.hp-impact-stat--link:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.035);
}
.hp-impact-stat--link::after {
  content: "View proof";
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hp-impact-val {
  font-family: "Space Grotesk", sans-serif; font-size: clamp(48px, 6vw, 80px);
  font-weight: 900; line-height: 1;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hp-impact-lbl { font-size: 14px; color: var(--text-2); font-weight: 500; max-width: 16ch; text-align: center; }
.hp-impact-div { width: 1px; height: 60px; background: var(--border); flex-shrink: 0; }

/* ── HP Work grid ─────────────────────────────────────────────── */
.hp-work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.hp-work-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: var(--transition); display: flex; flex-direction: column;
}
.hp-work-card:hover { transform: translateY(-8px); border-color: var(--border-glow); box-shadow: 0 32px 64px rgba(0,0,0,0.5), var(--glow-card); }
.hp-work-thumb {
  height: 220px; position: relative; overflow: hidden;
  background: var(--bg-2);
}
.hp-work-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.hp-work-card:hover .hp-work-thumb img { transform: scale(1.06); }
.hp-work-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.hp-work-placeholder--atlas { background: linear-gradient(135deg, rgba(64,196,175,0.14), rgba(124,109,240,0.08)); }
.hp-work-placeholder--pulse { background: linear-gradient(135deg, rgba(124,109,240,0.12), rgba(214,168,79,0.08)); }
.hp-work-placeholder--neon { background: linear-gradient(135deg, rgba(64,196,175,0.12), rgba(214,168,79,0.08)); }
.hp-work-placeholder svg { width: 100%; height: 100%; }
.hp-work-overlay {
  position: absolute; inset: 0;
  background: rgba(3,6,15,0.7); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.hp-work-card:hover .hp-work-overlay { opacity: 1; }
.hp-work-body { padding: 24px 28px; flex: 1; display: flex; flex-direction: column; }
.hp-work-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.hp-work-type {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--primary); border: 1px solid rgba(59,130,246,0.3);
  border-radius: 999px; padding: 4px 10px; background: rgba(59,130,246,0.06);
}
.hp-work-plat {
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em;
  color: var(--text-2); border: 1px solid var(--border);
  border-radius: 999px; padding: 4px 10px;
}
.hp-work-body h3 { color: var(--white); font-size: 20px; margin-bottom: 10px; }
.hp-work-body h3 a { color: inherit; }
.hp-work-body h3 a:hover { color: var(--primary); }
.hp-work-body p { font-size: 14px; color: var(--text); line-height: 1.75; flex: 1; }
.hp-work-link { display: inline-flex; gap: 6px; color: var(--primary); font-size: 13px; font-weight: 600; margin-top: 20px; transition: gap var(--transition); }
.hp-work-link:hover { gap: 10px; }

/* ── HP Why grid ──────────────────────────────────────────────── */
.hp-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.hp-why {
  padding: 32px 24px; border: 1px solid var(--border);
  border-radius: var(--radius); background: var(--bg-card);
  backdrop-filter: blur(10px); transition: var(--transition); text-align: center;
}
.hp-why:hover { border-color: var(--border-glow); transform: translateY(-4px); }
.hp-why-icon {
  width: 64px; height: 64px; border-radius: 20px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
}
.hp-why-icon--blue   { background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(59,130,246,0.05)); border: 1px solid rgba(59,130,246,0.25); color: #3b82f6; }
.hp-why-icon--purple { background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(139,92,246,0.05)); border: 1px solid rgba(139,92,246,0.25); color: #8b5cf6; }
.hp-why-icon--cyan   { background: linear-gradient(135deg, rgba(6,182,212,0.2), rgba(6,182,212,0.05)); border: 1px solid rgba(6,182,212,0.25); color: #06b6d4; }
.hp-why-icon--green  { background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(16,185,129,0.05)); border: 1px solid rgba(16,185,129,0.25); color: #10b981; }
.hp-why h4 { color: var(--white); font-size: 16px; margin-bottom: 10px; }
.hp-why p { font-size: 14px; color: var(--text); line-height: 1.7; }

/* hp-svc-grid/hp-work-grid/hp-why-grid responsive columns must live AFTER
   their base rule above (this file applies cascade strictly by source
   order for equal-specificity selectors, regardless of media query) */
@media (max-width: 1024px) {
  .hp-svc-grid,
  .hp-work-grid,
  .hp-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .hp-svc-grid,
  .hp-work-grid,
  .hp-why-grid { grid-template-columns: 1fr; }
}

/* ── HP Hero stat star ────────────────────────────────────────── */
.hp-hs-star { font-size: 0.7em; color: #fbbf24; vertical-align: super; margin-left: 1px; -webkit-text-fill-color: #fbbf24; }

/* ── HP Work proof strip ──────────────────────────────────────── */
.hp-work-proof {
  display: flex; gap: 16px; flex-wrap: wrap;
  padding: 10px 0; margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

/* ── Games & Blog — Catalog & Filter Pills ────────────────────────── */
.catalog-filters-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding: 14px 20px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-pill {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 99px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.02);
  transition: var(--transition);
}
.filter-pill:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}
.filter-pill.active {
  color: var(--white);
  background: rgba(64, 196, 175, 0.12);
  border-color: var(--border-glow);
  box-shadow: 0 0 16px rgba(64, 196, 175, 0.15);
}
.filter-more-dropdown select.more-genres-select {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: #0d1217;
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 8px 16px;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}
.filter-more-dropdown select.more-genres-select:hover,
.filter-more-dropdown select.more-genres-select:focus {
  border-color: var(--border-glow);
  color: var(--white);
}

/* ── Featured Games Section ────────────────────────────────────────── */
.games-featured-section {
  background: radial-gradient(circle at 10% 20%, rgba(124, 109, 240, 0.08), transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(64, 196, 175, 0.08), transparent 45%);
  padding-bottom: 40px;
}
.games-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.game-featured-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: var(--transition);
}
.game-featured-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: var(--glow-card);
}
.game-featured-thumb {
  height: 200px;
  position: relative;
  overflow: hidden;
  background: #0f1520;
}
.game-featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.game-featured-card:hover .game-featured-thumb img {
  transform: scale(1.05);
}
.game-featured-body {
  padding: 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.game-featured-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.game-badge {
  display: inline-flex;
  align-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: 99px;
  border: 1px solid;
}
.game-badge--featured {
  color: var(--accent);
  border-color: rgba(214, 168, 79, 0.3);
  background: rgba(214, 168, 79, 0.08);
}
.game-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-2);
}
.star-icon {
  color: #fbbf24;
  margin-right: 2px;
}
.game-featured-body h3 {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 8px;
}
.game-featured-body h3 a {
  color: inherit;
  text-decoration: none;
}
.game-featured-body h3 a:hover {
  color: var(--primary);
}
.game-featured-body p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}
.game-featured-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.game-badge-platforms,
.game-card-platforms {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.plat-tag {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-2);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 99px;
}

/* ── Games Catalog Card Enhancements ──────────────────────────────── */
.game-card-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.game-card-genre {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: .08em;
}
.game-card-stats {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-2);
}
.game-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.game-card-arrow-link {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.game-card-arrow-link:hover {
  color: var(--white);
}
.game-card-arrow-link .arrow {
  transition: transform var(--transition);
}
.game-card-arrow-link:hover .arrow {
  transform: translateX(4px);
}
.no-results-msg-box {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
}
.no-results-msg {
  font-size: 16px;
  color: var(--text-2);
  margin-bottom: 24px;
}

/* ── Pre-footer CTA bands ────────────────────────────────────────── */
.games-prefooter-cta,
.blog-prefooter-cta,
.blog-post-prefooter-cta {
  margin-top: 56px;
}

/* ── Single Game Details Layout ──────────────────────────────────── */
/* `section.` qualifier (not just `.game-details-hero`) raises specificity
   above the later "Sitewide spacing calibration" block's `.page-hero`/
   `.section` rules (incl. its `!important` mobile variant), so this wins
   regardless of where either block sits in the file. */
section.game-details-hero {
  padding-top: 100px !important;
  padding-bottom: 64px !important;
  min-height: auto !important;
}
.game-details-hero-inner > *:last-child {
  /* stop the last child's margin-bottom collapsing through the unpadded
     container and stacking on top of the hero's own padding-bottom */
  margin-bottom: 0;
}
.game-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-2);
  margin-bottom: 28px;
  font-weight: 500;
}
.game-breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}
.game-breadcrumb a:hover {
  color: var(--primary);
}
.game-breadcrumb .sep {
  opacity: 0.5;
}
.game-breadcrumb .current {
  color: var(--white);
}
.game-hero-title-row {
  margin-bottom: 24px;
}
.game-subtitle {
  font-size: 18px;
  color: var(--text-2);
  margin-top: 14px;
}
section.game-details-layout-section {
  /* .section's 100px top padding would double up with the hero's
     padding-bottom above; bottom padding stays for the related-games gap */
  padding-top: 0 !important;
  margin-top: 0 !important;
}
@media (max-width: 768px) {
  section.game-details-hero {
    padding-top: 70px !important;
    padding-bottom: 36px !important;
  }
  .game-breadcrumb {
    margin-bottom: 20px;
  }
  .game-subtitle {
    margin-top: 12px;
  }
}
.game-meta-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}
.game-meta-table .meta-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 10px;
}
.game-meta-table .meta-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.single-delivered-card h4 {
  color: var(--white);
  margin-bottom: 16px;
}
.delivered-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.delivered-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
}
.delivered-list li svg.check-icon {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Gameplay Screenshots Layout */
.game-screenshots-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}
.game-screenshot-featured {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.game-screenshot-featured .screenshot-card {
  min-height: 380px;
}
.game-screenshot-featured .screenshot-card img {
  min-height: 380px;
}
.screenshot-caption {
  font-size: 11px;
  color: var(--text-2);
  font-style: italic;
}
.screenshot-card-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ── Blog Landing Styles ─────────────────────────────────────────── */
.blog-featured-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 56px;
  align-items: center;
}
.blog-featured-thumb {
  height: 340px;
  border-radius: 16px;
  overflow: hidden;
}
.blog-featured-thumb img,
.blog-placeholder-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-placeholder-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-placeholder-thumb svg {
  width: 48px;
  height: 48px;
}
.blog-featured-body {
  display: flex;
  flex-direction: column;
}
.blog-featured-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.blog-featured-tag {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(214, 168, 79, 0.3);
  background: rgba(214, 168, 79, 0.08);
  padding: 4px 12px;
  border-radius: 99px;
}
.blog-read-time {
  font-size: 12px;
  color: var(--text-2);
}
.blog-featured-body h2 {
  font-size: 28px;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 12px;
}
.blog-featured-body h2 a {
  color: inherit;
  text-decoration: none;
}
.blog-featured-body h2 a:hover {
  color: var(--primary);
}
.blog-featured-body p.excerpt {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
}
.blog-featured-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 24px;
}
.blog-featured-meta .sep {
  opacity: 0.4;
}

.blog-section-title {
  font-size: 24px;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: var(--glow-card);
}
.blog-card-thumb {
  height: 190px;
  overflow: hidden;
}
.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-thumb img {
  transform: scale(1.04);
}
.blog-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-meta-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.blog-category {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
}
.blog-card h4 {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card h4 a {
  color: inherit;
  text-decoration: none;
}
.blog-card h4 a:hover {
  color: var(--primary);
}
.blog-card p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.blog-card-footer .date {
  font-size: 12px;
  color: var(--text-2);
}
.blog-card-arrow-link {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.blog-card-arrow-link:hover {
  color: var(--white);
}
.blog-card-arrow-link .arrow {
  transition: transform var(--transition);
}
.blog-card-arrow-link:hover .arrow {
  transform: translateX(4px);
}

/* ── Single Blog Post Styles ────────────────────────────────────── */
.blog-single-hero {
  padding-bottom: 40px;
}
.blog-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-2);
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.blog-breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.blog-breadcrumb a:hover {
  color: var(--primary);
}
.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-2);
  margin-top: 14px;
}
.blog-post-meta .sep {
  opacity: 0.4;
}
.container--readable {
  max-width: 760px;
  margin: 0 auto;
}
.blog-post-featured-img {
  margin-bottom: 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
}
.blog-post-featured-img img {
  width: 100%;
  height: auto;
  display: block;
}
.blog-post-content {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
}
.blog-post-content p {
  margin-bottom: 24px;
}
.blog-post-content h2,
.blog-post-content h3 {
  color: var(--white);
  margin-top: 40px;
  margin-bottom: 16px;
}

/* ── Contact Form Elements & Alerts ────────────────────────────── */
.form-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 8px;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.checkbox-label:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(64, 196, 175, 0.3);
}
.checkbox-label input[type="checkbox"] {
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.contact-success-msg {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 24px;
  color: #10b981;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}
.contact-error-msg {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 24px;
  color: #ef4444;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}
.contact-error-msg a {
  color: inherit;
  text-decoration: underline;
}

/* ── Media queries for responsiveness ────────────────────────────── */
@media (max-width: 1024px) {
  .service-detail-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .service-detail-copy h1 {
    max-width: 13ch;
  }
  .service-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .media-story {
    grid-template-columns: 1fr;
    padding: 32px;
  }
  .games-featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-featured-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .blog-featured-thumb {
    height: 280px;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-checkbox-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .legal-page-section {
    padding: 58px 0 72px;
  }
  .legal-page-card {
    border-radius: 18px;
  }
  .legal-content {
    font-size: 15.5px;
    line-height: 1.78;
  }
  .legal-toc ol,
  .legal-partner-list {
    grid-template-columns: 1fr;
  }
  .legal-toc {
    padding: 18px;
  }
  .service-detail-hero {
    padding: 64px 0 52px;
  }
  .service-detail-copy h1 {
    font-size: clamp(38px, 11vw, 54px);
  }
  .service-proof-grid {
    grid-template-columns: 1fr;
  }
  .service-proof-card {
    min-height: auto;
  }
  .service-visual-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
    min-width: 0;
  }
  .media-story-section {
    padding-top: 52px;
  }
  .media-story {
    padding: 22px;
    border-radius: 22px;
    gap: 28px;
  }
  .media-story-copy h2 {
    max-width: 14ch;
  }
  .section, .section-dark, .section-alt, .hp-section, .cta-section, .cta-band,
  .about-intro-section, .about-model-section, .about-capabilities-section, .about-trust-section,
  .svc-services-section, .svc-tech-section, .games-catalog-section, .games-featured-section,
  .games-discovery, .games-production, .blog-catalog-section, .blog-related-section {
    padding: 64px 0 !important;
  }
  .section-sm {
    padding: 48px 0 !important;
  }
  .catalog-filters-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .filter-more-dropdown select.more-genres-select {
    width: 100%;
  }
  .games-featured-grid {
    grid-template-columns: 1fr;
  }
  .game-featured-thumb {
    height: 180px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .form-checkbox-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .game-screenshot-featured .screenshot-card {
    min-height: 240px;
  }
  .game-screenshot-featured .screenshot-card img {
    min-height: 240px;
  }
}

@media (max-width: 480px) {
  .form-checkbox-grid {
    grid-template-columns: 1fr;
  }
  .filter-pills {
    justify-content: center;
  }
  .blog-featured-meta {
    flex-wrap: wrap;
    gap: 4px;
  }
  .game-screenshots-layout {
    gap: 12px;
  }
  .game-screenshot-featured .screenshot-card {
    min-height: 180px;
  }
  .game-screenshot-featured .screenshot-card img {
    min-height: 180px;
  }
}

/* ── HP Impact Proof ─────────────────────────────────────────── */
.hp-impact-proof {
  text-align: center;
  margin-top: 36px;
  font-size: 15px;
  color: var(--text-2);
  opacity: 0.88;
}
.hp-platform-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.hp-platform-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  border: 1px solid rgba(244,239,229,0.1);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255,255,255,0.035);
  font-size: 12px;
  font-weight: 800;
}

/* ── HP Testimonials ─────────────────────────────────────────── */
.hp-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hp-testi {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  backdrop-filter: blur(12px);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hp-testi:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: var(--glow-card);
}
.hp-testi-quote {
  font-size: 36px;
  line-height: 1;
  color: var(--primary);
  opacity: 0.38;
  margin-bottom: 12px;
}
.hp-testi p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 28px;
  font-style: italic;
  flex: 1;
}
.hp-testi footer {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hp-testi-author-info {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hp-testi-rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fbbf24;
  background: rgba(251,191,36,0.08);
  border: 1px solid rgba(251,191,36,0.22);
  font-size: 13px;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.hp-testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.hp-testi-avatar--teal {
  background: linear-gradient(135deg, #0d9488, #0f766e);
}
.hp-testi-avatar--violet {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
}
.hp-testi-avatar--gold {
  background: linear-gradient(135deg, #d97706, #b45309);
}
.hp-testi-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  font-style: normal;
}
.hp-testi-role {
  display: block;
  font-size: 12px;
  color: var(--text-2);
  margin-top: 2px;
}
.hp-testi-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.hp-testi-stars {
  color: #fbbf24;
  font-size: 14px;
  letter-spacing: 2px;
}
.hp-testi-trust {
  font-size: 11px;
  color: var(--text-2);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 4px 10px;
}

/* ── HP CTA Section ───────────────────────────────────────────── */
.hp-cta,
.site-cta {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(64,196,175,0.08), transparent 60%),
    linear-gradient(135deg, rgba(8,13,28,0.95), rgba(3,6,15,0.98));
  border-top: 1px solid var(--border);
  text-align: center;
}
.hp-cta-bg,
.site-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hp-cta-orb,
.site-cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
}
.hp-cta-orb-1,
.site-cta-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(64,196,175,0.22), transparent 70%);
  top: -200px;
  left: 10%;
}
.hp-cta-orb-2,
.site-cta-orb-2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(124,109,240,0.18), transparent 70%);
  bottom: -200px;
  right: 10%;
}
.hp-cta-inner,
.site-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.hp-cta-inner h2,
.site-cta-inner h2 {
  margin-top: 16px;
  margin-bottom: 20px;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
}
.hp-cta-inner p,
.site-cta-inner p {
  font-size: 18px;
  color: #b5c0d2;
  line-height: 1.75;
  margin-bottom: 38px;
  max-width: 58ch;
  margin-left: auto;
  margin-right: auto;
}
.hp-cta-btns,
.site-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hp-cta-trust,
.site-cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-2);
}
.hp-cta-trust span,
.site-cta-trust span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.site-cta-check {
  color: var(--primary);
  font-weight: 900;
}

/* Footer elements */
.footer-cta-btn {
  display: inline-flex;
  margin-top: 16px;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  transition: color var(--transition);
}
.footer-cta-btn:hover {
  color: var(--white);
}
.footer-global-note {
  font-size: 12px;
  color: var(--text-2);
  margin-bottom: 16px;
}
.footer-trust-signal {
  font-size: 14px;
  color: var(--primary);
  font-weight: 500;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .hp-console-bottom {
    grid-template-columns: repeat(2, 1fr);
  }
  .hp-testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hp-ticker {
    display: none;
  }
  .hp-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 18px;
    padding: 18px;
  }
  .hp-hs {
    min-width: 0;
    padding: 0;
  }
  .hp-hs-sep {
    display: none;
  }
  .hp-testi-grid {
    grid-template-columns: 1fr;
  }
  .hp-launch-console {
    min-height: auto;
    padding: 24px 18px 28px;
  }
  .hp-launch-console::before,
  .hp-orbit-ring,
  .hp-core-mark {
    display: none;
  }
  .hp-console-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
  }
  .hp-console-orbit {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    height: auto;
  }
  .hp-node,
  .hp-node-1,
  .hp-node-2,
  .hp-node-3,
  .hp-node-4 {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
  }
  .hp-console-bottom {
    margin-top: 24px;
  }
  .hp-cta,
  .site-cta {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .hp-console-bottom {
    grid-template-columns: 1fr;
  }
  .hp-cta-btns,
  .site-cta-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .hp-cta-btns .btn,
  .site-cta-btns .btn {
    justify-content: center;
    width: 100%;
  }
}

/* ── HP Process Strip ────────────────────────────────────────── */
.hp-process-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 56px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 14px 28px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  transition: border-color var(--transition), background-color var(--transition);
}
.hp-process-strip:hover {
  border-color: var(--border-glow);
  background: rgba(255, 255, 255, 0.04);
}
.hp-process-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-2);
  transition: color var(--transition), transform var(--transition);
  cursor: default;
  white-space: nowrap;
}
.hp-process-step:hover {
  color: var(--white);
  transform: translateY(-1px);
}
.hp-ps-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-2);
  opacity: 0.5;
  transition: background var(--transition), opacity var(--transition), box-shadow var(--transition);
}
.hp-process-step:hover .hp-ps-dot {
  background: var(--primary);
  opacity: 1;
  box-shadow: 0 0 8px var(--primary);
}
.hp-process-step--active {
  color: var(--primary);
}
.hp-process-step--active .hp-ps-dot {
  background: var(--primary);
  opacity: 1;
  box-shadow: 0 0 10px rgba(64, 196, 175, 0.5);
}
.hp-process-step--active:hover {
  color: var(--primary);
}
.hp-process-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  opacity: 0.5;
  font-weight: 700;
  transition: color var(--transition), opacity var(--transition);
}
.hp-process-strip:hover .hp-process-arrow {
  color: var(--primary);
  opacity: 0.7;
}

@media (max-width: 768px) {
  .hp-process-strip {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 8px;
    border-radius: 16px;
    padding: 14px 20px;
    width: 100%;
    max-width: 480px;
  }
  .hp-process-arrow {
    font-size: 12px;
    opacity: 0.3;
  }
}

/* Sitewide spacing calibration */
:root {
  --space-section-y: 100px;
  --space-hero-y: 108px;
  --space-cta-y: 94px;
  --space-card: 30px;
  --space-grid: 28px;
  --space-heading-content: 48px;
  --space-column-gap: 64px;
}

.section,
.hp-section {
  padding-top: var(--space-section-y);
  padding-bottom: var(--space-section-y);
}

.page-hero,
.hero,
.hero-section,
.service-detail-hero {
  padding-top: var(--space-hero-y);
  padding-bottom: calc(var(--space-hero-y) - 12px);
}

.hp-hero {
  padding-top: 112px;
  padding-bottom: 96px;
}

.hp-cta,
.site-cta,
.cta-band,
.cta-section,
.games-prefooter-cta,
.blog-prefooter-cta,
.blog-post-prefooter-cta {
  padding-top: var(--space-cta-y);
  padding-bottom: var(--space-cta-y);
}

.section-header,
.hp-sh {
  margin-bottom: var(--space-heading-content);
}

.section-header h2,
.hp-sh h2,
.cta-inner h2,
.site-cta-inner h2 {
  margin-bottom: 18px;
}

.section-header p,
.hp-sh p,
.page-hero-text p,
.service-detail-copy p,
.media-story-copy p {
  line-height: 1.78;
}

.section-header--center {
  max-width: 960px;
}

.section-header--center h2 {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.14;
}

.section-header--center p {
  max-width: 850px;
  margin-top: 22px;
  line-height: 1.82;
}

.section-header--center p + p {
  margin-top: 12px;
}

.section-header .kicker {
  margin-bottom: 14px;
}

.about-intro-section .section-header {
  max-width: 960px;
  margin-bottom: 58px;
}

.about-intro-section .section-header h2 {
  max-width: 920px;
}

.about-intro-section .section-header p {
  max-width: 850px;
}


.hero-actions,
.hp-cta-row,
.svc-hero-actions,
.cta-actions,
.site-cta-btns,
.hp-cta-btns {
  gap: 16px;
}

.grid-2,
.grid-3,
.grid-4,
.services-grid,
.projects-grid,
.testimonials-grid,
.stats-grid,
.genre-grid,
.platform-cards,
.tech-stack-cards,
.why-grid,
.games-grid,
.hp-svc-grid,
.hp-work-grid,
.hp-why-grid,
.hp-testi-grid,
.blog-grid,
.svc-journey-cards,
.svc-tech-categories,
.about-benefit-grid,
.about-stats-grid,
.about-process-grid,
.about-trust-grid,
.games-featured-grid {
  gap: var(--space-grid);
}

.card,
.wp-block-group.card,
.service-card,
.stat-card,
.project-card,
.testimonial-card,
.why-card,
.tech-stack-card,
.genre-card,
.platform-card,
.svc-detail-card,
.about-benefit-card,
.about-stat-card,
.about-process-card,
.about-trust-card,
.blog-card-body,
.contact-form-card,
.contact-info-card,
.single-meta-card,
.single-cta-card,
.case-block {
  padding: var(--space-card);
}

.hp-svc,
.hp-why,
.hp-testi,
.game-featured-card,
.blog-featured-card {
  padding: clamp(24px, 2.5vw, 34px);
}

.hp-hero-inner,
.hero-inner,
.page-hero-inner,
.service-detail-hero-inner,
.svc-hero-inner,
.media-story,
.contact-layout,
.contact-form-wrap,
.about-capabilities {
  gap: var(--space-column-gap);
}

.hp-hero-stats,
.svc-hero-stats {
  gap: 0;
}

.hp-hs,
.svc-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-align: center;
}

.hp-hs-val,
.svc-stat strong {
  display: block;
  line-height: 1;
  margin: 0;
}

.hp-hs-lbl,
.svc-stat span {
  display: block;
  line-height: 1.35;
  max-width: 15ch;
}

.hp-process-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hp-process-step,
.hp-process-arrow {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.hp-launch-console {
  padding: 34px 34px 48px;
}

.hp-console-orbit {
  margin-top: 12px;
}

.hp-console-bottom {
  margin-top: 36px;
  gap: 18px;
}

.about-hero-panel {
  padding: 38px 40px 42px;
}

.about-launch-grid {
  gap: 22px;
}

.about-launch-status {
  margin-top: 28px;
  gap: 18px;
}

.service-detail-hero-inner {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
}

.service-detail-copy h1 {
  margin-bottom: 20px;
}

.service-detail-copy .service-detail-lead {
  margin-bottom: 16px;
}

.service-detail-copy .hero-actions {
  margin-top: 30px;
}

.service-proof-grid {
  gap: 20px;
  margin-top: 4px;
}

.service-proof-card {
  min-height: 150px;
  padding: 24px 26px;
}

.media-story {
  padding: 44px;
}

.media-story-list {
  margin-top: 30px;
  gap: 14px;
}

.blog-featured-card {
  gap: 36px;
  margin-bottom: 52px;
}

.blog-card-thumb {
  height: 198px;
}

.blog-card-body {
  gap: 0;
}

.blog-card h4 {
  margin-bottom: 12px;
}

.blog-card p {
  line-height: 1.7;
}

.blog-post-content p {
  margin-bottom: 24px;
}

.blog-post-content h2,
.blog-post-content h3 {
  margin-top: 44px;
  margin-bottom: 18px;
}

.legal-page-section {
  padding-top: 92px;
  padding-bottom: 104px;
}

.legal-content h2 {
  margin-top: 44px;
  margin-bottom: 16px;
}

.legal-content p {
  margin-bottom: 19px;
}

.contact-layout {
  align-items: start;
}

.contact-form {
  gap: 18px;
}

.form-row {
  gap: 18px;
}

.contact-info-col,
.contact-form-col {
  gap: 28px;
}

.faq-title {
  margin-bottom: 24px;
}

.site-footer {
  padding-top: 80px;
  padding-bottom: 34px;
}

.footer-top {
  gap: 56px;
  margin-bottom: 54px;
}

.footer-links {
  gap: 28px;
}

.footer-col ul {
  gap: 12px;
}

@media (max-width: 1024px) {
  :root {
    --space-section-y: 84px;
    --space-hero-y: 86px;
    --space-cta-y: 82px;
    --space-card: 28px;
    --space-grid: 24px;
    --space-heading-content: 42px;
    --space-column-gap: 42px;
  }

  .service-detail-hero-inner,
  .media-story {
    grid-template-columns: 1fr;
  }

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

  .hp-hero-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --space-section-y: 62px;
    --space-hero-y: 64px;
    --space-cta-y: 68px;
    --space-card: 24px;
    --space-grid: 18px;
    --space-heading-content: 34px;
    --space-column-gap: 30px;
  }

  .section,
  .section-dark,
  .section-alt,
  .hp-section,
  .page-hero,
  .hero,
  .hero-section,
  .service-detail-hero {
    padding-top: var(--space-section-y) !important;
    padding-bottom: var(--space-section-y) !important;
  }

  .hp-hero {
    padding-top: 70px !important;
    padding-bottom: 64px !important;
    min-height: auto;
  }

  .hp-cta,
  .site-cta,
  .cta-band,
  .cta-section,
  .games-prefooter-cta,
  .blog-prefooter-cta,
  .blog-post-prefooter-cta {
    padding-top: var(--space-cta-y) !important;
    padding-bottom: var(--space-cta-y) !important;
  }

  .section-header,
  .hp-sh {
    margin-bottom: var(--space-heading-content);
  }

  .hero-actions,
  .hp-cta-row,
  .svc-hero-actions,
  .cta-actions,
  .site-cta-btns,
  .hp-cta-btns {
    gap: 12px;
  }

  .card,
  .wp-block-group.card,
  .service-card,
  .stat-card,
  .project-card,
  .testimonial-card,
  .why-card,
  .tech-stack-card,
  .genre-card,
  .platform-card,
  .svc-detail-card,
  .about-benefit-card,
  .about-stat-card,
  .about-process-card,
  .about-trust-card,
  .contact-form-card,
  .contact-info-card,
  .single-meta-card,
  .single-cta-card,
  .case-block {
    padding: var(--space-card);
  }

  .hp-hero-stats,
  .svc-hero-stats {
    width: 100%;
  }

  .hp-hs,
  .svc-stat {
    gap: 7px;
  }

  .hp-process-strip {
    gap: 12px 8px;
    width: 100%;
  }

  .hp-launch-console,
  .about-hero-panel,
  .media-story {
    padding: 24px 20px 28px;
  }

  .hp-console-bottom,
  .about-launch-status,
  .service-proof-grid,
  .legal-toc ol,
  .legal-partner-list {
    grid-template-columns: 1fr;
  }

  .service-proof-card {
    min-height: auto;
    padding: 22px 20px;
  }

  .media-story-list {
    gap: 12px;
  }

  .blog-featured-card {
    gap: 26px;
    margin-bottom: 40px;
  }

  .blog-card-thumb {
    height: 210px;
  }

  .legal-page-section {
    padding-top: 58px !important;
    padding-bottom: 72px !important;
  }

  .site-footer {
    padding-top: 62px;
  }

  .footer-top {
    gap: 36px;
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .hp-hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hp-hs-lbl,
  .svc-stat span {
    max-width: 13ch;
  }

  .blog-card-thumb {
    height: 190px;
  }

  .screenshots-row,
  .screenshots-grid {
    grid-template-columns: 1fr;
  }
}
