/*
Theme Name: VICTIM Corporate
Theme URI: https://victim.example
Author: VICTIM Lab
Description: Marketing site theme for the VICTIM shared-services WordPress lab foothold.
Version: 1.0.0
Text Domain: victim
*/

:root {
  --ink: #0c1219;
  --ink-soft: #1a2430;
  --mist: #eef2f6;
  --paper: #f7f9fb;
  --muted: #5c6b7a;
  --line: #d5dde6;
  --accent: #0d9488;
  --accent-deep: #0f766e;
  --glow: #5eead4;
  --font-display: "Syne", "Avenir Next", sans-serif;
  --font-body: "Sora", "Helvetica Neue", sans-serif;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent-deep);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.35rem 1.5rem;
}

.brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: #fff;
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 0.92rem;
}

.site-nav a:hover {
  color: #fff;
}

/* —— Hero: one composition, brand-led —— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background: var(--ink);
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 18, 25, 0.35) 0%, rgba(12, 18, 25, 0.72) 55%, rgba(12, 18, 25, 0.92) 100%),
    url("assets/hero.jpg") center / cover no-repeat;
  transform: scale(1.04);
  animation: hero-drift 18s var(--ease) infinite alternate;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 7.5rem 1.5rem 4.5rem;
}

.hero__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.4rem, 9vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 0.04em;
  margin: 0 0 1.25rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.1s forwards;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.25;
  max-width: 18ch;
  margin: 0 0 0.85rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.25s forwards;
}

.hero__lede {
  max-width: 34ch;
  margin: 0 0 1.75rem;
  color: rgba(255, 255, 255, 0.82);
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.4s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.55s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  color: inherit;
}

.btn--primary {
  background: var(--accent);
  color: #042f2e;
}

.btn--primary:hover {
  background: var(--glow);
  color: #042f2e;
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  background: transparent;
}

.btn--ghost:hover {
  border-color: #fff;
  color: #fff;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.section .lede {
  color: var(--muted);
  max-width: 42ch;
  margin: 0 0 2rem;
}

.section--band {
  background:
    radial-gradient(ellipse at top right, rgba(13, 148, 136, 0.12), transparent 45%),
    linear-gradient(180deg, var(--mist), var(--paper));
}

.split {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 860px) {
  .split {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: end;
  }
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.service-list li {
  display: grid;
  gap: 0.35rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.service-list strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.service-list span {
  color: var(--muted);
}

.stat-row {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 700px) {
  .stat-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat dt {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--accent-deep);
  margin: 0;
}

.stat dd {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 3rem 1.5rem;
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-footer .brand {
  color: #fff;
  display: block;
  margin-bottom: 0.35rem;
}

.site-footer p {
  margin: 0;
  max-width: 28ch;
}

.content-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 7rem 1.5rem 4rem;
}

.content-wrap h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1rem;
}

.page-banner {
  background: linear-gradient(135deg, var(--ink), var(--ink-soft));
  color: #fff;
  padding: 6.5rem 1.5rem 2.5rem;
}

.page-banner h1 {
  max-width: var(--max);
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__media,
  .hero__brand,
  .hero__headline,
  .hero__lede,
  .hero__actions {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
