/* ═══════════════════════════════════════════════════════════════
   RESET & CUSTOM PROPERTIES
═══════════════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:           #050b18;
  --bg-mid:       #070d1e;
  --bg-surface:   rgba(255,255,255,0.04);
  --bg-surface-hover: rgba(255,255,255,0.07);
  --cyan:         #00d4ff;
  --cyan-dim:     rgba(0, 212, 255, 0.15);
  --cyan-glow:    rgba(0, 212, 255, 0.25);
  --purple:       #7c3aed;
  --purple-dim:   rgba(124, 58, 237, 0.18);
  --purple-glow:  rgba(124, 58, 237, 0.3);
  --indigo:       #1e1b4b;
  --text:         #e2e8f0;
  --text-muted:   #8892a4;
  --text-faint:   #4a5568;
  --border:       rgba(255,255,255,0.08);
  --border-bright: rgba(255,255,255,0.14);
  --radius-sm:    8px;
  --radius:       12px;
  --radius-lg:    16px;
  --radius-xl:    24px;
  --grad-main:    linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
  --grad-text:    linear-gradient(135deg, #00d4ff 0%, #a78bfa 55%, #7c3aed 100%);
  --font-head:    'IBM Plex Mono', monospace;
  --font-body:    'IBM Plex Sans', sans-serif;
  --nav-h:        68px;
  --container:    1160px;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── Noise texture overlay ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 1;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Scroll offset for fixed nav ─── */
#overview, #about, #services {
  scroll-margin-top: calc(var(--nav-h) + 16px);
}

/* ─── Gradient text utility ─── */
.grad-text {
  color: inherit;
}

/* ─── Section label ─── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--cyan);
  border-radius: 2px;
}

/* ─── Reveal animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(5, 11, 24, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.35);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo img {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links li a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.nav-links li a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}

.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
  color: #fff !important;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 999px;
  transition: opacity 0.2s, box-shadow 0.2s, transform 0.2s;
}

.nav-links .nav-cta:hover {
  opacity: 0.88;
  box-shadow: 0 0 24px var(--cyan-glow), 0 0 40px var(--purple-glow);
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 40%, rgba(124, 58, 237, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(0, 212, 255, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 60% 85%, rgba(124, 58, 237, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 30% 70%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
    var(--bg);
  z-index: 0;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.hero-blob-cyan {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.18) 0%, transparent 70%);
  top: -120px;
  right: -80px;
  animation: floatBlob 12s ease-in-out infinite;
}
.hero-blob-purple {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
  bottom: -60px;
  left: -100px;
  animation: floatBlob 15s ease-in-out infinite reverse;
}

@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -30px) scale(1.04); }
  66%       { transform: translate(-15px, 20px) scale(0.97); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 80%);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 100px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 28px;
  padding: 6px 14px 6px 10px;
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 999px;
  background: rgba(0, 212, 255, 0.06);
  backdrop-filter: blur(8px);
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse-dot 2.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(42px, 6.5vw, 88px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 28px;
  max-width: 860px;
}

.hero-title .grad {
  color: #fff;
}

.hero-desc {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.btn-gradient {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--cyan) 0%, #5b8dfe 50%, var(--purple) 100%);
  background-size: 200% 200%;
  animation: gradShift 4s ease infinite;
  box-shadow: 0 0 0 0 var(--cyan-glow);
  transition: box-shadow 0.3s, transform 0.2s;
  border: none;
  cursor: pointer;
}
.btn-gradient:hover {
  box-shadow: 0 0 32px var(--cyan-glow), 0 0 60px rgba(0,212,255,0.12);
  transform: translateY(-2px);
  animation-play-state: paused;
}
@keyframes gradShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--border-bright);
  background: transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(0, 212, 255, 0.4);
  background: rgba(0, 212, 255, 0.04);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: border-color 0.2s, background 0.2s;
}
.stat-pill:hover {
  border-color: rgba(0, 212, 255, 0.25);
  background: rgba(0, 212, 255, 0.04);
}
.stat-pill-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-dim), var(--purple-dim));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cyan);
}
.stat-pill strong {
  color: #fff;
  font-weight: 700;
}

/* ── Threat Radar ── */
.hero-radar {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(700px, 90vmin);
  height: min(700px, 90vmin);
  z-index: 0;
  pointer-events: none;
  opacity: 0.2;
}

.radar-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.radar-ring-1 {
  transform-origin: 100px 100px;
  animation: radarCW 12s linear infinite;
}
.radar-ring-2 {
  transform-origin: 100px 100px;
  animation: radarCCW 8s linear infinite;
}
.radar-ring-3 {
  transform-origin: 100px 100px;
  animation: radarPulse 3s ease-in-out infinite;
}

@keyframes radarCW  { to { transform: rotate(360deg); } }
@keyframes radarCCW { to { transform: rotate(-360deg); } }
@keyframes radarPulse {
  0%, 100% { opacity: 0.25; }
  50%       { opacity: 0.85; }
}

.radar-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radar-label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--cyan);
  text-align: center;
  transition: opacity 0.5s ease;
  text-shadow: 0 0 14px rgba(0, 212, 255, 0.6);
}

/* ═══════════════════════════════════════════════════════════════
   PORTFOLIO STRIP
═══════════════════════════════════════════════════════════════ */
.portfolio {
  position: relative;
  padding: 28px 0;
  overflow: hidden;
}
.portfolio::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.portfolio .container {
  position: relative;
  z-index: 1;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.portfolio-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
}

.portfolio-item + .portfolio-item {
  border-left: 1px solid var(--border);
}

.checkmark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-dim), rgba(0,212,255,0.08));
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: var(--cyan);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.15);
}

.portfolio-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}
.portfolio-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════════ */
.about {
  padding: 120px 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-head);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.about-panel {
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  position: relative;
  overflow: hidden;
}

.about-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0,212,255,0.06) 0%, rgba(124,58,237,0.06) 100%);
  pointer-events: none;
}

.about-stat {
  padding: 28px 24px;
  position: relative;
  z-index: 1;
}

.about-stat:nth-child(1),
.about-stat:nth-child(2) {
  border-bottom: 1px solid var(--border);
}
.about-stat:nth-child(1),
.about-stat:nth-child(3) {
  border-right: 1px solid var(--border);
}

.about-stat-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--cyan);
}

.about-stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════════════ */
.services {
  padding: 100px 0 120px;
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-header h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s, transform 0.3s;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
  transition: opacity 0.3s;
  pointer-events: none;
}

.service-card:hover {
  border-color: rgba(0, 212, 255, 0.35);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.1), 0 4px 32px rgba(0,0,0,0.4);
  background: rgba(255,255,255,0.055);
  transform: translateY(-3px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--cyan-dim), var(--purple-dim));
  border: 1px solid rgba(0, 212, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.service-card:hover .service-icon-wrap {
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  border-color: rgba(0, 212, 255, 0.5);
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  position: relative;
  z-index: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--cyan);
  margin-top: 4px;
  position: relative;
  z-index: 1;
  transition: gap 0.2s, opacity 0.2s;
}
.card-link:hover {
  gap: 10px;
  opacity: 0.8;
}
.card-link::after {
  content: '→';
}

/* ═══════════════════════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════════════════════ */
.cta-section {
  padding: 80px 0 100px;
}

.cta-box-outer {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 2px;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
}

.cta-box-inner {
  border-radius: calc(var(--radius-xl) - 2px);
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(124,58,237,0.12) 0%, transparent 70%),
    rgba(5, 9, 20, 0.92);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  padding: 72px 64px;
  text-align: center;
}

.cta-box-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 16px;
}

.cta-box-inner p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.footer {
  padding: 48px 0 36px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.3) 30%, rgba(124,58,237,0.3) 70%, transparent 100%);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.footer-logo img {
  height: 28px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.footer-logo:hover img {
  opacity: 1;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.footer-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.footer-nav a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 4px;
}
.footer-legal a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.footer-legal a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}

.footer-copy {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
}
.footer-copy p {
  font-size: 13px;
  color: var(--text-faint);
}

/* ═══════════════════════════════════════════════════════════════
   INNER PAGES (Impressum, Datenschutz)
═══════════════════════════════════════════════════════════════ */
.inner-page {
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 120px;
  min-height: 80vh;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 48px;
  padding: 8px 0;
  transition: color 0.2s, gap 0.2s;
}
.back-link:hover {
  color: var(--cyan);
  gap: 10px;
}

.prose {
  max-width: 720px;
}

.prose .label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.prose .label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--cyan);
  border-radius: 2px;
}

.prose h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 12px;
}

.prose .stand {
  font-size: 14px;
  color: var(--text-faint);
  margin-bottom: 48px;
}

.prose h2 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-top: 40px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.prose p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.prose ul {
  list-style: none;
  margin: 0 0 16px 0;
}

.prose ul li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  padding: 4px 0 4px 20px;
  position: relative;
}

.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.5;
}

.prose a {
  color: var(--cyan);
  text-decoration: underline;
  text-decoration-color: rgba(0, 212, 255, 0.35);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s, opacity 0.2s;
}
.prose a:hover {
  text-decoration-color: var(--cyan);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(5, 11, 24, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.3s ease;
    z-index: 99;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links li a {
    display: block;
    padding: 12px 16px;
    font-size: 16px;
  }

  .nav-links .nav-cta {
    text-align: center;
    margin-top: 8px;
    padding: 12px 20px;
  }

  .hero-title {
    font-size: clamp(34px, 9vw, 54px);
  }

  .hero-stats {
    gap: 8px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .portfolio-item + .portfolio-item {
    border-left: none;
    border-top: 1px solid var(--border);
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-panel {
    padding: 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .cta-box-inner {
    padding: 48px 28px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-nav,
  .footer-legal {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions a {
    text-align: center;
    justify-content: center;
  }
  .stat-pill {
    font-size: 12px;
    padding: 8px 14px;
  }
}
