/* GLOBAL */
body {
  margin: 0;
  background: radial-gradient(circle at top, #1c3b74 0%, #081828 45%, #040915 100%);
  font-family: 'Inter', sans-serif;
  color: #f3f7ff;
  line-height: 1.75;
}

/* ACCESSIBILITY‑SAFE INVISIBLE TEXT */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* HERO SECTION — FULL-WIDTH IMAGE WITH CONTENT BELOW */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 0 40px;
  background: radial-gradient(circle at top, #1c3b74 0%, #081828 45%, #040915 100%);
}

.hero__image {
  position: relative;
  width: 100%;
  min-height: 420px;
  background-image: url("assets/Tier CRE.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 17, 42, 0) 60%, rgba(7, 17, 42, 0.95) 100%);
}

.hero__content {
  position: relative;
  background: transparent;
  padding: 64px 60px;
  display: flex;
  justify-content: center;
}

.hero__text {
  max-width: 900px;
  width: 100%;
  padding: 40px 42px;
  border-radius: 24px;
  background: rgba(7, 17, 42, 0.9);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero::before {
  display: none;
}

.hero__left {
  display: none;
}

.hero__right {
  display: none;
}

.hero__image-wrapper {
  display: none;
}

.hero__eyebrow {
  margin: 0 0 16px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(228, 234, 255, 0.88);
}

.hero__headline {
  margin: 0 0 24px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 3.2vw, 3.6rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.8px;
  color: white;
}

.hero__copy {
  margin: 0 0 32px;
  font-size: 1.08rem;
  line-height: 1.92;
  color: rgba(241, 246, 255, 0.94);
}

.hero__features {
  margin: 28px 0 0;
  padding: 0 0 0 18px;
  list-style: none;
}

.hero__features li {
  margin: 0 0 14px;
  padding: 0 0 0 24px;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(228, 234, 255, 0.90);
  position: relative;
}

.hero__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #64b5f6;
  font-weight: bold;
}

@media (max-width: 1024px) {
  .hero__image {
    min-height: 320px;
  }

  .hero__content {
    padding: 48px 40px;
  }

  .hero__headline {
    font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  }
}

@media (max-width: 640px) {
  .hero__image {
    min-height: 240px;
  }

  .hero__content {
    padding: 32px 20px;
  }

  .hero__headline {
    font-size: clamp(1.6rem, 2vw, 2rem);
  }

  .hero__copy {
    font-size: 1rem;
  }
}

/* CONTENT PANEL */
.container {
  max-width: 1200px;
  margin: 40px auto 100px;
  padding: 56px 42px;
  background: #f7f8fb;
  border-radius: 28px;
  box-shadow: 0 38px 110px rgba(17, 28, 56, 0.12);
  border: 1px solid rgba(20, 35, 70, 0.08);
  color: #1d2f55;
}

/* Prevent first section header from being pushed down */
.container h2:first-of-type {
  margin-top: 0;
}

section {
  margin-top: 52px;
}

/* HEADINGS */
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 2.7vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.6px;
  margin-top: 0;
  margin-bottom: 18px;
  color: #0f2240;
}

/* PARAGRAPHS */
.container p {
  margin-bottom: 28px;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: #34426a;
}

/* LISTS */
ul {
  padding-left: 18px;
  margin: 18px 0;
}

ul li {
  margin-bottom: 14px;
  font-size: 1rem;
  color: #34426a;
}

ul li::marker {
  color: #0f2240;
}

/* CONTACT SECTION */
.contact {
  text-align: center;
  margin-top: 80px;
}

.contact h2 {
  margin-bottom: 18px;
}

.button {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 36px;
  background: white;
  color: #0f2240;
  text-decoration: none;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  border: 1px solid rgba(15, 34, 64, 0.16);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  background: #f0f4ff;
  border-color: rgba(15, 34, 64, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(17, 28, 56, 0.14);
}

/* FOOTER */
footer {
  text-align: center;
  margin-top: 40px;
  padding: 24px 0 0;
  font-size: 14px;
  color: #7c8cb3;
}

/* LINKS */
a {
  color: #0f2240;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
