/* ===========================
   STRUCK — CSS THEME
   =========================== */

:root {
  --bg: #0f1117;
  --surface: #161820;
  --surface-2: #1e1f2a;
  --border: rgba(255,255,255,0.06);
  --fg: #f0ede8;
  --fg-muted: rgba(240,237,232,0.45);
  --accent: #c8ff00;
  --accent-dim: rgba(200,255,0,0.12);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(15,17,23,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: 0.18em;
  color: var(--fg);
  text-decoration: none;
}
.logo--footer { color: var(--fg); }
.nav-tag {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 32px;
  position: relative;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  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-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  position: relative;
}
.headline-accent {
  color: var(--accent);
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 56px;
  position: relative;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  position: relative;
}
.meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.meta-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}
.meta-value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--fg);
}

/* ── SERVICES ── */
.services {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 64px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.service-card {
  background: var(--surface);
  padding: 36px 32px;
  transition: background 0.2s ease;
}
.service-card:hover {
  background: var(--surface-2);
}
.service-icon {
  color: var(--accent);
  margin-bottom: 20px;
  width: 28px; height: 28px;
}
.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── SCOPE ── */
.scope {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.scope-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.scope-copy .section-heading {
  margin-bottom: 24px;
}
.scope-body {
  color: var(--fg-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 36px;
}
.scope-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.scope-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--fg);
}
.check-mark { flex-shrink: 0; margin-top: 1px; }

.scope-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}
.scope-card-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.scope-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.scope-row--add { color: var(--fg-muted); }
.freq {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 500;
}

/* ── PROOF ── */
.proof {
  padding: 100px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-header {
  max-width: 1200px;
  margin: 0 auto 64px;
}
.proof-heading {
  margin-bottom: 0;
}
.proof-steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.proof-step {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: var(--accent-dim);
  line-height: 1;
}
.step-body h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  margin-bottom: 10px;
}
.step-body p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── STATS ── */
.stats {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.stat-item {
  background: var(--surface);
  padding: 40px 36px;
  text-align: center;
}
.stat-value {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* ── CLOSING ── */
.closing {
  padding: 120px 48px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: var(--accent-dim);
  filter: blur(120px);
  pointer-events: none;
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.closing-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 32px;
}
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  max-width: 700px;
}
.closing-sub {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.75;
}

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 64px 48px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.footer-brand .logo {
  display: inline-block;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.7;
}
.footer-meta p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.7;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(240,237,232,0.25);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .site-header { padding: 0 24px; }
  .hero { padding: 100px 24px 60px; }
  .services { padding: 80px 24px; }
  .scope { padding: 80px 24px; }
  .scope-inner { grid-template-columns: 1fr; gap: 48px; }
  .proof { padding: 80px 24px; }
  .proof-steps { grid-template-columns: 1fr; gap: 40px; }
  .stats { padding: 80px 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .closing { padding: 80px 24px; }
  .site-footer { padding: 48px 24px 32px; }
  .footer-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero-meta { gap: 24px; }
  .hero-headline { font-size: 2.5rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .nav-tag { display: none; }
}