﻿:root {
  --bg: #101827;          /* slightly lighter base */
  --bg-alt: #141c2b;      /* section alt background */
  --accent: #ff6b1a;
  --accent-soft: #ff8a3a1f;
  --text: #f9fafb;        /* brighter text */
  --muted: #cbd3e2;       /* lighter muted text */
  --border: #2a3648;      /* softer border */
  --card-bg: #182234;     /* lighter cards */
  --radius-lg: 16px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.4);
}


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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #141c2b 0, #020617 60%);
  color: var(--text);
  line-height: 1.5;
}


/* Layout */

.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  padding: 4rem 0;
  background: var(--bg-alt);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(5, 7, 11, 0.92),
    rgba(5, 7, 11, 0.75),
    transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
}

.logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #ffe6d5, #ff6b1a);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #080707;
  box-shadow: 0 0 0 1px #000, 0 14px 30px rgba(0, 0, 0, 0.7);
}

.logo-text {
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #e5ecff;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.main-nav a {
  color: var(--muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 0.15rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #ff6b1a, #ffb347);
  transition: width 0.18s ease-out;
}

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

.main-nav a:hover::after {
  width: 100%;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  background: linear-gradient(135deg, #ff6b1a, #ffb347);
  color: #0a0a0a;
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
}

.btn:hover {
  filter: brightness(1.05);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.04);
}

.btn-small {
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn-light {
  background: #f7f8ff;
  color: #060710;
}

.btn-outline-light {
  background: transparent;
  color: #f7f8ff;
  border: 1px solid rgba(247, 248, 255, 0.8);
}

/* Hero */

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}

.hero-copy p {
  margin: 0 0 1.3rem;
  color: var(--muted);
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.3rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-panel {
  position: relative;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.hero-card {
  background: radial-gradient(circle at top left, #1f2937, #020617);
  border-radius: 24px;
  padding: 1.8rem 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-soft);
}

.hero-card h2 {
  margin: 0 0 0.8rem;
  font-size: 1.2rem;
}

.hero-card ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Cards / services */

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.3rem 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.card h3 {
  margin-top: 0;
}

.card p {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.card-list {
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Steps */

.steps {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.3rem;
}

.steps h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* CTA */

.section-accent {
  background: radial-gradient(circle at top left, #ff6b1a22, #020617);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta p {
  margin: 0.4rem 0 0;
  color: var(--muted);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Footer */

.site-footer {
  padding: 1.8rem 0 2.2rem;
  background: #020612;
  border-top: 1px solid rgba(15, 23, 42, 0.9);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-note {
  font-style: italic;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .cards-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Logo image sizing */
.logo-img {
  height: 40px;
  width: auto;
  max-width: 180px;
  display: block;
}


/* Hero background image */
.hero {
  background: url('/hero.jpg') center/cover no-repeat;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(5,7,11,0.75), rgba(5,7,11,0.9));
  pointer-events: none;
}


/* Hero parallax enhancement */
.hero {
  overflow: hidden;
  background-attachment: fixed;
}


/* Hero parallax strengthen */
.hero {
  background-size: 110%;
  transform: translateZ(0);
}


/* Hero overlay: strengthen contrast */
.hero::before {
  background: linear-gradient(rgba(5,7,11,0.82), rgba(5,7,11,0.6) 35%, rgba(5,7,11,0.2));
}


 /* === Brightening overrides 2026-01-19 === */

:root {
  --bg: #101827;
  --bg-alt: #141c2b;
  --text: #f9fafb;
  --muted: #cbd3e2;
  --border: #2a3648;
  --card-bg: #182234;
}

body {
  background: radial-gradient(circle at top, #141c2b 0, #020617 60%);
  color: var(--text);
}

/* Hero layout & overlay tweaks */
.hero {
  position: relative;
  padding: 4.5rem 0 3rem;
  background: url('/hero.jpg') center/cover no-repeat;
  background-size: 105%;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(3, 7, 18, 0.80) 0%,
      rgba(3, 7, 18, 0.55) 35%,
      rgba(3, 7, 18, 0.25) 70%,
      rgba(3, 7, 18, 0.10) 100%
    );
  pointer-events: none;
  z-index: 0;
}

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

/* Cards & sections */
.card {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(203, 213, 225, 0.30);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.section-alt {
  background: linear-gradient(180deg, #141c2b 0%, #101827 100%);
}

/* Footer */
.site-footer {
  background: #050812;
  border-top: 1px solid rgba(148, 163, 184, 0.5);
}

/* Buttons */
.btn-secondary {
  background: rgba(15, 23, 42, 0.9);
  color: var(--text);
  border: 1px solid rgba(249, 250, 251, 0.4);
  box-shadow: none;
}

.btn-secondary:hover {
  background: rgba(249, 250, 251, 0.08);
}

.btn-outline-light {
  background: transparent;
  color: #f9fafb;
  border: 1px solid rgba(249, 250, 251, 0.7);
}

.btn-outline-light:hover {
  background: rgba(249, 250, 251, 0.12);
}

 /* Logo text wordmark */
.logo-wordmark {
  margin-left: 0.45rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f9fafb;
  white-space: nowrap;
}
