﻿:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: #0d0d10;
  --text: #f7f7f0;
  --muted: rgba(247, 247, 240, 0.7);
  --accent: #ccff7b;
  --stroke: rgba(255, 255, 255, 0.1);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --font-display: 'Space Grotesk', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', 'Space Grotesk', system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  display: block;
  max-width: 100%;
}

:focus-visible {
  outline: 3px solid rgba(204, 255, 123, 0.7);
  outline-offset: 4px;
}

.page {
  background:
    radial-gradient(circle at 15% 0%, rgba(204, 255, 123, 0.22), transparent 48%) no-repeat,
    linear-gradient(180deg, #060606, #050507);
  min-height: 100vh;
}

.wrap {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #050505;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: top 200ms ease;
  z-index: 30;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(5, 5, 5, 0.85);
  border-bottom: 1px solid var(--stroke);
  backdrop-filter: blur(18px);
  z-index: 20;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-block: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-name {
  margin: 0;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.brand-role {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.nav a {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  color: var(--muted);
  transition: background 150ms ease, color 150ms ease;
}

.nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  background: var(--accent);
  color: #050505;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(204, 255, 123, 0.3);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--text);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.btn.full {
  width: 100%;
}

.section {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.section.services {
  background: rgba(255, 255, 255, 0.02);
  border-block: 1px solid var(--stroke);
}

.hero {
  padding-top: clamp(3rem, 10vw, 5.5rem);
  padding-bottom: clamp(2.5rem, 7vw, 4rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 4vw, 2.2rem);
}

.card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.stack {
  display: flex;
  flex-direction: column;
}

.stack.gap-md {
  gap: 1.2rem;
}

.stack.gap-sm {
  gap: 0.8rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
}

.lead {
  margin: 0;
  color: var(--muted);
  max-width: 36rem;
}

.hero-bullets {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  color: var(--muted);
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-bullets li::before {
  content: '•';
  color: var(--accent);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background: var(--panel);
  padding: clamp(1.5rem, 4vw, 2.2rem);
  box-shadow: var(--shadow);
}

.panel h2 {
  margin-top: 0;
  font-size: 1.3rem;
  font-family: var(--font-display);
}

.text-muted {
  color: var(--muted);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.3);
  color: var(--text);
  padding: 0.75rem 0.9rem;
  font-size: 1rem;
  font-family: inherit;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
  outline: none;
}

.form-note {
  font-size: 0.8rem;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-family: var(--font-display);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.service-grid .card {
  border-radius: var(--radius-md);
  padding: 1.3rem 1.4rem;
  box-shadow: none;
  gap: 0.6rem;
  display: flex;
  flex-direction: column;
}

.service-grid .card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.card ul li::before {
  content: '– ';
  color: var(--accent);
}

.contact-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  padding: clamp(1.8rem, 4vw, 2.4rem);
  display: grid;
  gap: 1.3rem;
  background: rgba(255, 255, 255, 0.04);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.contact-list {
  display: grid;
  gap: 0.6rem;
}

.contact-list dt {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-list dd {
  margin: 0;
}

.site-footer {
  padding: 1.5rem 0;
  border-top: 1px solid var(--stroke);
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.link-quiet {
  font-size: 0.92rem;
  color: var(--muted);
}

.link-quiet:hover {
  color: var(--text);
  text-decoration: underline;
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bullet-list li::before {
  content: '• ';
  color: var(--accent);
}

@media (max-width: 720px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    justify-content: flex-start;
  }

  .cta-row,
  .contact-actions {
    flex-direction: column;
  }

  .btn,
  .btn.full {
    width: 100%;
  }
}

.field-hint {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}
