/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* Background image */
  background-image: url('Assets/bg_ultra_4x.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;

  /* background-attachment: fixed; */

  color: #e8e8e8;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  pointer-events: none;
  z-index: 0;
}
/*@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  body {
    background-image: url('Assets/bg_sharp_2x.png');
  }
}*/

/* Layout width */
:root {
  --content-max: 1200px;
  --content-padding: 3rem;
}

/* Shared alignment */
.header,
.container {
  position: relative;
  z-index: 1;
  max-width: var(--content-max);
  margin: 0 auto;
  padding-left: var(--content-padding);
  padding-right: var(--content-padding);
}

/* Header */
.header {
  padding-top: 1.5rem;
}

.logo img {
  max-width: 140px; /* adjust as needed */
  height: auto;
  margin-left: -35px;
  display: block;
}

/* Hero */
.hero {
  padding-top: 2.25rem;
  max-width: 760px;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 620;
  line-height: 1.14;
  color: #f9fafb;
  letter-spacing: -0.035em;
}

.hero h1 span {
  display: block;
  font-weight: 400;
  color: #cbd5f5;
}

.lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #9ca3af;
  max-width: 560px;
  margin-top: 1.4rem;
}

/* Hero spacing dividers */
.container .divider:first-of-type {
  height: 0;
  margin: 15rem 0;
  visibility: hidden;
}

.container .divider:nth-of-type(2) {
  height: 0;
  margin: 6rem 0;
  visibility: hidden;
}

/* ======================= */
/* STATEMENT */
/* ======================= */

.statement {
  text-align: center;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--content-padding);
  margin-top: 0.5rem;
  margin-bottom: 10px; /* FIXED: added px unit */
  
}

.statement p {
  font-size: 1.5rem;
  font-weight: 400;
  color: #f3f4f6;
  line-height: 1.45;
  max-width: 560px;
  margin: 0 auto;
}

/* shrink the divider space */
.container .divider:nth-of-type(2) {
  margin: 2rem 0;
}

/* reduce contact top padding */
.contact {
  padding: 1rem var(--content-padding);
}

/* ======================= */
/* CONTACT */
/* ======================= */

.contact {
  position: relative;
  text-align: center;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 1rem var(--content-padding); /* reduced */
}

/* Sleek lines */
.contact::before,
.contact::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 62%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(148, 163, 184, 0.45),
    transparent
  );
}

.contact::before {
  top: 0;
}

.contact::after {
  bottom: 0;
}

.contact p {
  font-size: 1rem;
  color: #9ca3af;
  margin-bottom: 0.1rem;
}

.contact .email {
  font-size: 1.05rem;
  font-weight: 500;
  color: #60a5fa;
  border-bottom: 1px solid rgba(96, 165, 250, 0.4);
  text-decoration: none;
}

/* ======================= */
/* FOOTER */
/* ======================= */

.footer {
  text-align: center;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0.75rem var(--content-padding) 1rem; /* reduced */
  font-size: 0.85rem;
  color: #6b7280;
}

/* ======================= */
/* MOBILE */
/* ======================= */

@media (max-width: 768px) {
  :root {
    --content-padding: 1.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .statement p {
    font-size: 1.25rem;
  }

  .container .divider:first-of-type {
    margin: 3rem 0;
  }

  .contact {
    padding: 1rem var(--content-padding);
  }

  .contact::before,
  .contact::after {
    width: 90%;
  }

  .logo img {
    max-width: 140px;
    display: block;
  }
}
