/* =============================================
   PRECISION STRIKE SOLUTIONS
   Aesthetic: Tactical Elegance — Defense Edition
   ============================================= */

:root {
  --black: #050505;
  --bg: #0a0a0a;
  --surface: #101010;
  --surface-2: #181818;
  --surface-3: #1e1e1e;
  --border: #1f1f1f;
  --border-light: #2a2a2a;
  --text: #e2ded9;
  --text-muted: #7e7a75;
  --text-dim: #4a4640;
  --accent: #b89a4a;
  --accent-light: #d4b96a;
  --accent-dim: rgba(184, 154, 74, 0.12);
  --accent-glow: rgba(184, 154, 74, 0.05);
  --white: #f0ece6;
  --red: #c44;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 106px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Grain overlay */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
}

a { color: inherit; }

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

/* =====================
   ANNOUNCEMENT BANNER
   ===================== */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: 36px;
  background: var(--accent);
  overflow: hidden;
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

.announcement-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

.announcement-text {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--black);
  padding: 0 24px;
}

.announcement-sep {
  color: rgba(5, 5, 5, 0.3);
  font-size: 0.6rem;
  padding: 0 8px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.announcement-bar:hover .announcement-track {
  animation-play-state: paused;
}

/* =====================
   NAVIGATION
   ===================== */
.nav {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.14em;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-mark {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nav-logo-mark::before {
  content: '';
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
}

.nav-logo-mark::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 1px;
  background: var(--accent);
}

.nav-logo:hover {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  position: absolute;
  left: 0;
  transition: all 0.3s var(--ease);
}

.nav-toggle span:first-child { top: 6px; }
.nav-toggle span:last-child { bottom: 6px; }

.nav-toggle.active span:first-child {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.nav-toggle.active span:last-child {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--black);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
  filter: grayscale(100%) contrast(1.1);
}

/* Animated grid pattern for hero */
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(var(--accent) 1px, transparent 1px),
    linear-gradient(90deg, var(--accent) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 70%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(184, 154, 74, 0.03) 0%, transparent 60%),
    linear-gradient(180deg,
      rgba(10, 10, 10, 0.45) 0%,
      rgba(10, 10, 10, 0.25) 30%,
      rgba(10, 10, 10, 0.4) 60%,
      rgba(10, 10, 10, 0.97) 100%
    ),
    linear-gradient(90deg,
      rgba(10, 10, 10, 0.6) 0%,
      transparent 50%,
      rgba(10, 10, 10, 0.3) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--accent);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.hero-title {
  font-size: clamp(3.2rem, 10vw, 7.5rem);
  color: var(--white);
  line-height: 0.92;
  margin-bottom: 32px;
  letter-spacing: 0.05em;
  max-width: 800px;
}

.hero-title span {
  display: block;
}

.hero-title .title-accent {
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: var(--text-muted);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 16px 40px;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
  z-index: -1;
}

.btn:hover {
  color: var(--black);
}

.btn:hover::before {
  transform: scaleX(1);
}

.btn-ghost {
  border-color: var(--border-light);
  color: var(--text-muted);
}

.btn-ghost::before {
  background: var(--surface-2);
}

.btn-ghost:hover {
  color: var(--white);
  border-color: var(--border-light);
}

.btn-flights {
  border-color: var(--accent);
  color: var(--black);
  background: var(--accent);
  font-weight: 600;
}

.btn-flights::before {
  background: var(--white);
}

.btn-flights:hover {
  color: var(--black);
  border-color: var(--white);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-scroll span {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--text-dim);
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s var(--ease) infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* =====================
   SECTIONS (shared)
   ===================== */
.section {
  padding: 120px 0;
  position: relative;
}

.section-header {
  margin-bottom: 72px;
}

.section-label {
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  color: var(--white);
  letter-spacing: 0.05em;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 580px;
  margin-top: 20px;
  line-height: 1.75;
}

/* Divider line */
.section-divider {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 20px 0 0;
  opacity: 0.4;
}

/* =====================
   CAPABILITIES / SERVICES
   ===================== */
.capabilities {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.cap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
}

.cap-card {
  background: var(--surface);
  padding: 48px 36px;
  position: relative;
  transition: background 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cap-card:hover {
  background: var(--surface-2);
}

.cap-card:hover .cap-number {
  color: var(--accent);
}

.cap-card:hover .cap-icon {
  border-color: var(--accent);
}

.cap-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.cap-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--border-light);
  line-height: 1;
  transition: color 0.4s var(--ease);
}

.cap-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.4s var(--ease);
}

.cap-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
  opacity: 0.8;
}

.cap-title {
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.04em;
}

.cap-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

.cap-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
}

.cap-tag {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  border: 1px solid var(--border);
  padding: 5px 12px;
}

/* =====================
   DOMAINS / FOCUS AREAS
   ===================== */
.domains {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.domain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.domain-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.domain-marker {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.domain-marker::before {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--accent);
  opacity: 0.6;
}

.domain-content {
  flex: 1;
}

.domain-title {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.domain-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

/* =====================
   STATS STRIP
   ===================== */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  padding: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.stat-item {
  padding: 48px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.stat-item:last-child {
  border-bottom: none;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-dim);
}

/* =====================
   APPROACH
   ===================== */
.approach {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.approach-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

.approach-text .section-subtitle {
  margin-top: 24px;
}

.approach-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.approach-step {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.approach-step:first-child {
  padding-top: 0;
}

.approach-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  flex-shrink: 0;
  width: 40px;
  line-height: 1;
  opacity: 0.7;
}

.step-content h4 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.step-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}

/* =====================
   CLIENTS BAR
   ===================== */
.clients {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0;
}

.clients-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.clients-label {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-dim);
}

.clients-logos {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.client-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.client-logo:hover {
  opacity: 0.8;
}

/* =====================
   CONTACT
   ===================== */
.contact {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-detail-label {
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-dim);
}

.contact-detail-value {
  font-size: 1rem;
  color: var(--text);
  font-weight: 300;
  text-decoration: none;
  transition: color 0.3s;
}

a.contact-detail-value:hover {
  color: var(--accent);
}

.contact-form {
  max-width: 680px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.required {
  color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: var(--surface-2);
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237e7a75' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group:last-of-type {
  margin-bottom: 28px;
}

.btn-submit {
  width: 100%;
  text-align: center;
}

.btn-submit .btn-loading { display: none; }
.btn-submit.loading .btn-text { display: none; }
.btn-submit.loading .btn-loading { display: inline; }
.btn-submit.loading { pointer-events: none; opacity: 0.6; }

.form-feedback {
  margin-top: 20px;
  font-size: 0.9rem;
  font-weight: 400;
  padding: 0;
  transition: all 0.3s var(--ease);
}

.form-feedback.success {
  color: #6abf69;
  padding: 16px 20px;
  background: rgba(106, 191, 105, 0.08);
  border: 1px solid rgba(106, 191, 105, 0.2);
}

.form-feedback.error {
  color: #d4564e;
  padding: 16px 20px;
  background: rgba(212, 86, 78, 0.08);
  border: 1px solid rgba(212, 86, 78, 0.2);
}

/* =====================
   FOOTER
   ===================== */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  background: var(--black);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: 0.1em;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--text-dim);
  font-weight: 300;
  margin-top: 6px;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--text-dim);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.68rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--text-muted);
}

/* =====================
   REVEAL ANIMATIONS
   ===================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.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; }

/* =====================
   DESKTOP (768px+)
   ===================== */
@media (min-width: 768px) {
  .container {
    padding: 0 48px;
  }

  .section {
    padding: 160px 0;
  }

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

  .cap-card {
    padding: 52px 40px;
  }

  .domain-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 64px;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat-item {
    border-bottom: none;
    border-right: 1px solid var(--border);
    padding: 56px 32px;
  }

  .stat-item:last-child {
    border-right: none;
  }

  .approach-layout {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .contact-layout {
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
  }

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

  .btn-submit {
    width: auto;
  }

  .footer-inner {
    gap: 32px;
  }

  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* Large desktop */
@media (min-width: 1024px) {
  .container {
    padding: 0 64px;
  }
}

/* =====================
   MOBILE (<768px)
   ===================== */
@media (max-width: 767px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
    z-index: 999;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    font-size: 1rem;
    letter-spacing: 0.25em;
  }

  .hero-scroll {
    display: none;
  }

  .hero-content {
    padding-top: 100px;
  }

  .section {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .cap-card {
    padding: 36px 28px;
  }

  .domain-item {
    gap: 20px;
  }

  .domain-marker {
    width: 44px;
    height: 44px;
  }

  .hero-title {
    letter-spacing: 0.03em;
  }

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

/* Touch fix */
@media (hover: none) {
  .btn:hover::before { transform: scaleX(0); }
  .btn:active::before { transform: scaleX(1); }
  .btn:active { color: var(--black); }
}
