:root {
  --navy: #172540;
  --navy-soft: #20375d;
  --orange: #ff7a18;
  --orange-light: #ffb15d;
  --paper: #ffffff;
  --muted: #66758a;
  --line: rgba(23, 37, 64, .1);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--navy);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 122, 24, .13), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(23, 37, 64, .11), transparent 30%),
    linear-gradient(135deg, #f8fafc 0%, #edf4fb 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 24px 28px;
  overflow: hidden;
}

.ambient,
.ambient-grid {
  position: absolute;
  pointer-events: none;
}

.ambient {
  border-radius: 999px;
  filter: blur(2px);
  opacity: .72;
}

.ambient-one {
  left: -140px;
  top: -90px;
  width: 360px;
  height: 360px;
  border: 48px solid rgba(255, 122, 24, .09);
}

.ambient-two {
  right: -120px;
  bottom: -130px;
  width: 380px;
  height: 380px;
  background: linear-gradient(135deg, rgba(23, 37, 64, .12), rgba(255, 122, 24, .12));
}

.ambient-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 37, 64, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 37, 64, .035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 70%);
  opacity: .5;
}

.construction-card {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 34px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 34px 90px rgba(23, 37, 64, .14);
  backdrop-filter: blur(18px);
}

.brand-panel {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, .55), transparent 35%),
    linear-gradient(145deg, #172540 0%, #213a64 58%, #ff7a18 160%);
}

.brand-panel:before,
.brand-panel:after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.brand-panel:before {
  width: 330px;
  height: 330px;
  border: 42px solid rgba(255, 255, 255, .08);
  left: -150px;
  top: 48px;
}

.brand-panel:after {
  right: -90px;
  bottom: -80px;
  width: 270px;
  height: 270px;
  background: rgba(255, 122, 24, .22);
}

.brand-logo {
  position: relative;
  z-index: 2;
  width: min(360px, 100%);
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .18);
}

.content-panel {
  padding: clamp(34px, 5vw, 68px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.eyebrow:before {
  content: "";
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
}

h1 {
  max-width: 620px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 64px);
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 950;
}

.lead {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 650;
}

.status-box {
  margin: 34px 0 28px;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 122, 24, .1), rgba(23, 37, 64, .04));
  border: 1px solid rgba(255, 122, 24, .14);
}

.status-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.status-copy strong {
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
}

.status-copy span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.progress {
  height: 8px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(23, 37, 64, .1);
}

.progress span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  animation: breathe 2.8s ease-in-out infinite;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 14px 16px;
  border-radius: 20px;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line);
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(23, 37, 64, .07);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.contact-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 122, 24, .35);
  box-shadow: 0 18px 38px rgba(23, 37, 64, .11);
}

.contact-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  font-size: 18px;
  font-weight: 900;
}

.contact-icon.whatsapp {
  color: #10b761;
  background: rgba(16, 183, 97, .12);
}

.contact-item small {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.contact-item strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
  font-weight: 950;
}

.address {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  font-style: normal;
  font-weight: 700;
}

.page-footer {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  margin: 22px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(23, 37, 64, .62);
  font-size: 13px;
  font-weight: 750;
}

@keyframes breathe {
  0%,
  100% {
    width: 62%;
  }

  50% {
    width: 78%;
  }
}

@media (max-width: 900px) {
  .page-shell {
    padding: 22px 14px;
  }

  .construction-card {
    grid-template-columns: 1fr;
    border-radius: 26px;
  }

  .brand-panel {
    min-height: 260px;
    padding: 34px;
  }

  .brand-logo {
    width: min(320px, 92%);
    padding: 22px;
  }

  .content-panel {
    padding: 32px 22px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .page-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 36px;
  }

  .lead {
    font-size: 16px;
  }

  .eyebrow {
    font-size: 11px;
  }
}
