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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", Arial, sans-serif;
  background-color: #050505;
  color: #f5f5f5;
  line-height: 1.6;
  opacity: 0;
  transition: opacity 0.4s ease-out;
}

body.page-loaded {
  opacity: 1;
}

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

.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 120px 20px 80px;
}

/* NAV */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(5,5,5,0.98);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-box {
  display: inline-block;
  padding: 10px 32px;
  background: #a8aaad;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 2px;
  font-size: 20px;
}

.logo-box.large {
  font-size: 32px;
  padding: 14px 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-links a {
  opacity: 0.8;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: #f5f5f5;
  display: block;
}

/* HERO */

.hero {
  padding-top: 120px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
  gap: 56px;
  align-items: center;
}

.hero-tagline {
  margin-top: 28px;
  font-size: 18px;
  max-width: 520px;
}

.hero-text {
  margin-top: 16px;
  font-size: 16px;
  max-width: 520px;
  color: #d5d5d5;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* METRICS */

.metric-card {
  border: 1px solid rgba(255,255,255,0.12);
  padding: 24px 22px;
  border-radius: 4px;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 60%);
}

.metric-label {
  font-size: 11px;
  color: #c0c0c0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.metric-value {
  font-size: 30px;
  font-weight: 600;
}

.metric-row {
  margin-top: 24px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.metric-item {
  flex: 1;
  min-width: 120px;
}

.metric-small {
  font-size: 20px;
  font-weight: 600;
}

.metric-small-label {
  margin-top: 4px;
  font-size: 12px;
  color: #b0b0b0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* SECTIONS */

.section {
  margin-top: 96px;
}

.section-header {
  max-width: 720px;
  margin-bottom: 32px;
}

.section-header h1,
.section-header h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.section-header p {
  color: #d0d0d0;
  font-size: 15px;
}

/* CARDS & GRIDS */

.cards.three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.card {
  border: 1px solid rgba(255,255,255,0.08);
  padding: 24px 22px;
  border-radius: 4px;
  background: #0b0b0c;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: #d0d0d0;
}

.grid.four {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.grid-item h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.grid-item p {
  font-size: 14px;
  color: #d0d0d0;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 48px;
  align-items: flex-start;
}

.list {
  list-style: disc;
  padding-left: 18px;
  font-size: 14px;
  color: #d0d0d0;
}

.list li + li {
  margin-top: 4px;
}

.note {
  margin-top: 16px;
  font-size: 14px;
  color: #b8b8b8;
}

/* CTA */

.cta {
  text-align: center;
}

.cta .btn {
  margin-top: 18px;
}

/* FORM */

.form {
  max-width: 720px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.form-field {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field.full {
  flex-basis: 100%;
}

label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #cfcfcf;
}

input,
select,
textarea {
  background: #101012;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  padding: 10px 12px;
  color: #f5f5f5;
  font-size: 14px;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #ffffff;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 2px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid rgba(255,255,255,0.8);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.btn.primary {
  background: #ffffff;
  color: #050505;
  border-color: #ffffff;
}

.btn.primary:hover {
  background: #dcdcdc;
  border-color: #dcdcdc;
}

.btn.ghost {
  background: transparent;
  color: #ffffff;
}

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

/* HOVER LIFT */

.hover-lift {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.35);
  border-color: rgba(255,255,255,0.18);
}

/* FOOTER */

.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 20px 32px;
  margin-top: 80px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  font-size: 13px;
  color: #b0b0b0;
}

.footer-sub {
  margin-top: 4px;
  color: #8c8c8c;
}

/* SCROLL REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* PARALLAX (HERO RIGHT) */

.parallax.parallax-active {
  will-change: transform;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .cards.three {
    grid-template-columns: minmax(0, 1fr);
  }
  .grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }
  .nav-links {
    position: fixed;
    top: 60px;
    right: 0;
    left: 0;
    background: #050505;
    flex-direction: column;
    padding: 16px 20px 24px;
    display: none;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 600px) {
  .grid.four {
    grid-template-columns: minmax(0, 1fr);
  }
  .page {
    padding-top: 100px;
  }
  .logo-box.large {
    font-size: 26px;
    padding: 10px 28px;
  }
}


.hero-title {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #ffffff;
}
