:root {
  --bg: #050608;
  --bg-alt: #101218;
  --text: #f5f5f5;
  --muted: #c3c6d1;
  --accent: #e07920;
  --accent-soft: rgba(224, 121, 32, 0.15);
  --border-subtle: #252736;
  --radius: 12px;
}

/* Basic reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #141726, #050608 55%);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1100px, 100% - 2.5rem);
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 6, 8, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 12px 30px rgba(0, 0, 0, 0.6);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.brand-subtitle {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Navigation */

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.main-nav a {
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--accent);
}

/* Hero */

.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-inner {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  line-height: 1.1;
  margin: 0 0 1.25rem;
}

.hero-moniker {
  font-size: 1.2rem;
  font-weight: 600;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 0.55rem 1rem;
  border-radius: 12px;
  margin: 0 0 1.5rem;
  display: inline-block;
}

.hero-subtext {
  max-width: 38rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), #ffb45c);
  color: #111;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.btn.primary:hover {
  filter: brightness(1.03);
}

.btn.secondary {
  background: #1a1d27;
  color: var(--text);
  border-color: var(--border-subtle);
}

.btn.ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-subtle);
}

.btn.ghost:hover,
.btn.secondary:hover {
  border-color: var(--accent);
}

.btn.full-width {
  width: 100%;
}

/* Sections */

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section h2 {
  font-size: 1.8rem;
  margin-top: 0;
}

.section-intro {
  max-width: 34rem;
  color: var(--muted);
}

/* Layout helpers */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: flex-start;
}

/* Lists */

.bullet-list {
  padding-left: 1.2rem;
  color: var(--muted);
}

.highlight-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  color: var(--muted);
}

.highlight-list li {
  padding: 0.45rem 0.8rem;
  margin-bottom: 0.3rem;
  border-radius: var(--radius);
  background: rgba(16, 18, 24, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.about-cta {
  margin-top: 0.5rem;
  color: var(--muted);
}

/* Cards / Services */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: #161927;
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

/* Contact */

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.contact-list a {
  color: var(--text);
}

.contact-list a:hover {
  color: var(--accent);
}

.contact-form {
  background: #161927;
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

.field {
  margin-bottom: 0.9rem;
}

.field label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.55rem 0.6rem;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  background: #0d0f16;
  color: var(--text);
  font: inherit;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(224, 121, 32, 0.6);
}

.small-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

/* Footer */

.site-footer {
  padding: 1.7rem 0 2.2rem;
  border-top: 1px solid var(--border-subtle);
  background: #050608;
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
  text-align: center;
  color: var(--muted);
}

.footer-tagline {
  color: var(--accent);
}

/* Responsive */

@media (max-width: 800px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav ul {
    gap: 0.9rem;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-inner {
    flex-direction: column;
  }

  .split {
    grid-template-columns: 1fr;
  }
}
/* Contact form status message */
.form-status {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.3;
  display: none;
}

.form-status.show {
  display: block;
}

.form-status.success {
  border-color: rgba(34, 197, 94, 0.5);
}

.form-status.error {
  border-color: rgba(239, 68, 68, 0.5);
}

.form-status.sending {
  opacity: 0.9;
}
