:root {
  --bg: #050505;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --text: #f4f4f4;
  --muted: #a9a9a9;
  --line: rgba(255, 255, 255, 0.14);
  --accent: #ffffff;
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.55);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.08), transparent 34rem),
    linear-gradient(180deg, #090909 0%, #030303 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

body > * { position: relative; z-index: 1; }


/* Sophisticated sword blade parallax background */
.sword-parallax {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.sword-blade {
  position: absolute;
  top: -16vh;
  left: 50%;
  width: clamp(150px, 13vw, 230px);
  height: 185vh;
  transform: translate3d(-50%, 0, 0);
  opacity: 0.18;
  background:
    linear-gradient(90deg,
      transparent 0%,
      rgba(255,255,255,0.04) 12%,
      rgba(255,255,255,0.16) 24%,
      rgba(255,255,255,0.32) 42%,
      rgba(255,255,255,0.62) 50%,
      rgba(255,255,255,0.30) 58%,
      rgba(255,255,255,0.13) 76%,
      rgba(255,255,255,0.04) 88%,
      transparent 100%),
    linear-gradient(180deg,
      rgba(255,255,255,0.30) 0%,
      rgba(255,255,255,0.10) 32%,
      rgba(255,255,255,0.22) 68%,
      rgba(255,255,255,0.05) 100%);
  clip-path: polygon(35% 0%, 65% 0%, 72% 82%, 50% 100%, 28% 82%);
  filter: drop-shadow(0 0 70px rgba(255,255,255,0.16));
  mix-blend-mode: screen;
  will-change: transform;
}

.sword-blade::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 7%;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg,
    rgba(255,255,255,0.80),
    rgba(255,255,255,0.18),
    rgba(255,255,255,0.55));
  opacity: 0.65;
}

.sword-blade::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      transparent 0%,
      transparent 31%,
      rgba(255,255,255,0.32) 33%,
      transparent 36%,
      transparent 64%,
      rgba(255,255,255,0.28) 67%,
      transparent 70%,
      transparent 100%);
  opacity: 0.38;
}

.sword-shine {
  position: absolute;
  top: -74vh;
  left: 50%;
  width: clamp(260px, 22vw, 390px);
  height: 270vh;
  transform: translate3d(-50%, 0, 0) rotate(13deg);
  opacity: 0.20;
  background: linear-gradient(180deg,
    transparent 0%,
    transparent 38%,
    rgba(255,255,255,0.05) 44%,
    rgba(255,255,255,0.34) 50%,
    rgba(255,255,255,0.06) 56%,
    transparent 64%,
    transparent 100%);
  mix-blend-mode: screen;
  animation: swordShineMove 8s ease-in-out infinite;
  will-change: transform, opacity;
}

@keyframes swordShineMove {
  0% { opacity: 0.06; }
  45% { opacity: 0.24; }
  100% { opacity: 0.07; }
}

.site-header,
main,
footer {
  position: relative;
  z-index: 2;
}

.noise {
  z-index: 1;
}

@media (max-width: 850px) {
  .sword-blade {
    width: 118px;
    opacity: 0.16;
  }

  .sword-shine {
    width: 230px;
    opacity: 0.16;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sword-shine { animation: none; }
}


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

.site-header {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 999px;
  border: 1px solid var(--line);
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

nav a:hover { color: var(--text); }

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0;
}

.hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding-top: 60px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 800;
}

h1, h2 {
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.018em;
  line-height: 1.12;
}

h1 {
  font-size: clamp(48px, 7.1vw, 98px);
  max-width: 760px;
}

h2 {
  font-size: clamp(34px, 4.4vw, 62px);
  max-width: 920px;
}

h3 { margin: 0 0 10px; }

.hero-text, .services p, .contact p {
  color: #d0d0d0;
  font-size: 18px;
  line-height: 1.65;
  max-width: 680px;
  margin: 24px 0 0;
}

.hero-actions, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 800;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn.primary {
  background: var(--accent);
  color: #050505;
}
.btn.secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255,255,255,0.03);
}

.hero-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  box-shadow: var(--shadow);
  padding: 34px;
  overflow: hidden;
}

.hero-logo {
  width: 100%;
  max-height: 440px;
  object-fit: contain;
  filter: drop-shadow(0 30px 80px rgba(255,255,255,0.08));
}

.metric-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric-grid div, .stats article, .steps div {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 20px;
  padding: 20px;
}

.metric-grid strong {
  display: block;
  font-family: Anton, Impact, sans-serif;
  font-size: 32px;
  font-weight: 400;
}

.metric-grid span, .stats p, .steps p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.stats, .steps {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stats article span, .steps span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 800;
}

.services {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  align-items: start;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.service-list div {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel-strong);
  padding: 18px;
  font-weight: 800;
}

.contact {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025));
  border-radius: 34px;
  padding: 48px;
  box-shadow: var(--shadow);
  margin-bottom: 80px;
}

footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 36px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

footer span {
  letter-spacing: 0.28em;
  font-weight: 800;
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .12s; }

@media (max-width: 850px) {
  nav { display: none; }
  .hero, .services { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
  .hero { padding-top: 32px; gap: 34px; }
  h1 { font-size: clamp(42px, 13vw, 62px); line-height: 1.14; }
  h2 { font-size: clamp(30px, 10vw, 46px); line-height: 1.16; }
  .metric-grid, .stats, .steps, .service-list { grid-template-columns: 1fr; }
  .contact { padding: 30px 20px; border-radius: 26px; }
  footer { flex-direction: column; }
}

.about {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 46px;
  align-items: center;
}

.about-image-wrap {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  padding: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 22px;
  filter: saturate(0.9) contrast(1.05);
}

.about-copy p {
  color: #d0d0d0;
  font-size: 18px;
  line-height: 1.65;
  max-width: 720px;
  margin: 24px 0 0;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.inline-links a {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 800;
  color: var(--text);
}

.inline-links a:hover {
  border-color: rgba(255,255,255,0.35);
}

@media (max-width: 850px) {
  .about { grid-template-columns: 1fr; }
  .about-image-wrap { max-width: 420px; }
}
