:root {
  --bg: #0b0e14;
  --bg-alt: #111521;
  --card: #161b29;
  --border: #232a3d;
  --text: #e7eaf3;
  --muted: #8b93a7;
  --accent: #37e2c4;
  --accent-2: #7c5cff;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  scroll-behavior: smooth;
}

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

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

header.site {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11, 14, 20, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.logo span {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

nav.main a {
  color: var(--muted);
  margin-left: 28px;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}

nav.main a:hover,
nav.main a.active {
  color: var(--text);
}

main { min-height: 60vh; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 70px;
  text-align: center;
}

#matrix-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.hero .wrap {
  position: relative;
  z-index: 1;
}

.hero-art {
  margin: 56px auto 0;
  max-width: 640px;
}

.hero-art img {
  width: 100%;
  height: auto;
  display: block;
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.15;
  margin: 0 0 18px;
  font-weight: 700;
}

.hero h1 .grad {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto 34px;
  line-height: 1.6;
}

.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.12s ease, border-color 0.12s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn.primary {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #06090f;
}

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

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

section.strip {
  border-top: 1px solid var(--border);
  padding: 64px 0;
}

section.strip h2 {
  font-size: 1.6rem;
  margin: 0 0 8px;
}

section.strip p.sub {
  color: var(--muted);
  margin: 0 0 36px;
  max-width: 560px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.card .status {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.status.live { background: rgba(55, 226, 196, 0.12); color: var(--accent); }
.status.progress { background: rgba(124, 92, 255, 0.15); color: var(--accent-2); }

.card h3 { margin: 0 0 8px; font-size: 1.15rem; }

.card p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
  margin: 0;
}

.about-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 8px;
}

.about-list div h4 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: var(--accent);
}

.about-list div p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.contact-card h1 { margin: 0 0 12px; font-size: 2rem; }

.contact-card p.sub {
  color: var(--muted);
  margin: 0 0 30px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.contact-methods a.method {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-weight: 600;
  transition: border-color 0.12s ease, background 0.12s ease;
}

.contact-methods a.method:hover {
  border-color: var(--accent);
  background: rgba(55, 226, 196, 0.06);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}

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

.contact-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.12s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .submit-btn {
  align-self: center;
  border: none;
  cursor: pointer;
  margin-top: 8px;
}

.direct-email {
  margin: 22px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.direct-email a {
  color: var(--accent);
  font-weight: 600;
}

.contact-grid {
  margin-top: 8px;
}

.contact-person {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--accent);
  margin-bottom: 12px;
}

.avatar-brand {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #06090f;
  border-color: transparent;
}

.contact-person h3 {
  margin: 0;
  font-size: 1.05rem;
}

.contact-person p.role {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.contact-person .email-link {
  margin-top: 14px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.92rem;
}

.contact-person .email-link:hover {
  text-decoration: underline;
}

.office-note {
  margin: 40px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
}

footer.site {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}
